addProduct.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* pages/addProduct/addProduct.wxss */
  2. /**index.wxss**/
  3. .page{
  4. background: #eee;
  5. padding: 10px 0;
  6. }
  7. .card{
  8. background: #fff;
  9. padding: 15px;
  10. margin-bottom: 10px;
  11. }
  12. .card_img{
  13. display: flex;
  14. justify-content: space-between;
  15. }
  16. .food_img{
  17. width: 280px;
  18. height: 100px;
  19. }
  20. .card .tit{
  21. width: 100%;
  22. }
  23. .card .line{
  24. width: 100%;
  25. height: 1px;
  26. background: #eee;
  27. margin: 10px 0;
  28. }
  29. .desc{
  30. color: #666;
  31. font-size: 14px;
  32. }
  33. .card_price{
  34. display: flex;
  35. background: #fff;
  36. padding: 15px;
  37. margin-bottom: 10px;
  38. justify-content: space-between;
  39. }
  40. .price{
  41. color: #666;
  42. font-size: 14px;
  43. }
  44. textarea{
  45. border: 1px solid #ccc;
  46. border-radius: 5px;
  47. padding: 5px;
  48. box-sizing: border-box;
  49. width: 99%;
  50. color: #666;
  51. font-size: 14px;
  52. }
  53. .btn_wrap{
  54. padding: 15px;
  55. display: flex;
  56. justify-content: space-between;
  57. }
  58. .btn{
  59. width: 48%;
  60. height: 40px;
  61. line-height: 40px;
  62. text-align: center;
  63. background-color: #afafaf;
  64. color: #fff;
  65. border-radius: 30px;
  66. }
  67. .btn2{
  68. background-color: #ff8e0a;
  69. }