12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* pages/addProduct/addProduct.wxss */
- /**index.wxss**/
- .page{
- background: #eee;
- padding: 10px 0;
- }
- .card{
- background: #fff;
- padding: 15px;
- margin-bottom: 10px;
- }
- .card_img{
- display: flex;
- justify-content: space-between;
- }
- .food_img{
- width: 280px;
- height: 100px;
- }
- .card .tit{
- width: 100%;
- }
- .card .line{
- width: 100%;
- height: 1px;
- background: #eee;
- margin: 10px 0;
- }
- .desc{
- color: #666;
- font-size: 14px;
- }
- .card_price{
- display: flex;
- background: #fff;
- padding: 15px;
- margin-bottom: 10px;
- justify-content: space-between;
- }
- .price{
- color: red;
- }
- textarea{
- border: 1px solid #ccc;
- border-radius: 5px;
- padding: 5px;
- box-sizing: border-box;
- width: 99%;
- color: #666;
- font-size: 14px;
- }
- .btn_wrap{
- padding: 15px;
- display: flex;
- justify-content: space-between;
- }
- .btn{
- width: 48%;
- height: 40px;
- line-height: 40px;
- text-align: center;
- background-color: #afafaf;
- color: #fff;
- border-radius: 30px;
- }
- .btn2{
- background-color: #ff8e0a;
- }
|