ModifyProduct.wxss 1012 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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: red;
  42. }
  43. textarea{
  44. border: 1px solid #ccc;
  45. border-radius: 5px;
  46. padding: 5px;
  47. box-sizing: border-box;
  48. width: 99%;
  49. color: #666;
  50. font-size: 14px;
  51. }
  52. .btn_wrap{
  53. padding: 15px;
  54. display: flex;
  55. justify-content: space-between;
  56. }
  57. .btn{
  58. width: 48%;
  59. height: 40px;
  60. line-height: 40px;
  61. text-align: center;
  62. background-color: #afafaf;
  63. color: #fff;
  64. border-radius: 30px;
  65. }
  66. .btn2{
  67. background-color: #ff8e0a;
  68. }