1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /* 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: #666;
- font-size: 14px;
- }
- 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;
- }
|