serviceSupply.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. page {
  2. background: #F3F3F3;
  3. color: #333;
  4. box-sizing: border-box;
  5. width:750rpx;
  6. padding:14rpx 0 400rpx;
  7. }
  8. text,view{
  9. color:#333;
  10. font-size:32rpx;
  11. box-sizing: border-box;
  12. }
  13. .row-type,.row-num{
  14. width: 750rpx;
  15. height: 96rpx;
  16. background: #FFFFFF;
  17. display: flex;
  18. align-items: center;
  19. justify-content: space-between;
  20. padding:0 24rpx 0 16rpx;
  21. border-bottom: 1rpx solid #EEEEEE;
  22. }
  23. .type-title,.num-title{
  24. color: #666666;
  25. font-size: 34rpx;
  26. }
  27. .type-title text,.num-title text{
  28. color: #FF3141;
  29. font-size: 30rpx;
  30. }
  31. .type-content{
  32. flex:1;
  33. color: #323232;
  34. font-size: 34rpx;
  35. margin-left:24rpx;
  36. }
  37. .num-block{
  38. display: flex;
  39. align-items: center;
  40. }
  41. .minus-btn{
  42. width: 56rpx;
  43. height: 56rpx;
  44. background: #F5F5F5;
  45. border-radius: 4rpx 0rpx 0rpx 4rpx;
  46. color:#1677FF;
  47. font-size: 48rpx;
  48. line-height: 50rpx;
  49. text-align: center;
  50. }
  51. .current-num{
  52. width: 88rpx;
  53. height: 56rpx;
  54. background: #F5F5F5;
  55. color: #333333;
  56. font-size: 30rpx;
  57. line-height: 56rpx;
  58. text-align: center;
  59. margin:0 4rpx;
  60. }
  61. .add-btn{
  62. width: 56rpx;
  63. height: 56rpx;
  64. background: #F5F5F5;
  65. border-radius: 0 4rpx 4rpx 0;
  66. color:#1677FF;
  67. font-size: 36rpx;
  68. line-height: 56rpx;
  69. text-align: center;
  70. }
  71. .row-amount{
  72. width: 750rpx;
  73. height: 96rpx;
  74. background: #FFFFFF;
  75. display: flex;
  76. justify-content: space-between;
  77. align-items: center;
  78. padding:0 24rpx 0 34rpx;
  79. }
  80. .add-item{
  81. width: 198rpx;
  82. height: 58rpx;
  83. line-height: 58rpx;
  84. background: #1677FF;
  85. border-radius: 8rpx;
  86. text-align: center;
  87. margin:30rpx auto;
  88. font-size: 30rpx;
  89. color: #fff;
  90. }
  91. .supply-bottom{
  92. position: fixed;
  93. bottom:0;
  94. left:0;
  95. right:0;
  96. padding-bottom: constant(safe-area-inset-bottom);
  97. padding-bottom: env(safe-area-inset-bottom);
  98. display: flex;
  99. flex-direction: column;
  100. align-items: center;
  101. background: #fff;
  102. }
  103. .total-amount{
  104. border-bottom:8rpx solid #F3F3F3;
  105. display: flex;
  106. height: 96rpx;
  107. padding:0 24rpx 8rpx 34rpx;
  108. justify-content: space-between;
  109. align-items: center;
  110. width:750rpx;
  111. }
  112. .total-amount text{
  113. font-weight:bold;
  114. }
  115. .del-item{
  116. width: 198rpx;
  117. height: 58rpx;
  118. background: #FF9F18;
  119. border-radius: 8rpx;
  120. font-size: 30rpx;
  121. text-align: center;
  122. line-height: 58rpx;
  123. color: #fff;
  124. margin:30rpx auto;
  125. }
  126. .item-operate-special{
  127. display: flex;
  128. align-items: center;
  129. justify-content: center;
  130. padding:30rpx 0;
  131. }
  132. .disable-item{
  133. width: 198rpx;
  134. height: 58rpx;
  135. background: #B7B7B7;
  136. border-radius: 8rpx;
  137. font-size: 30rpx;
  138. text-align: center;
  139. line-height: 58rpx;
  140. color: #fff;
  141. margin-right:90rpx;
  142. }
  143. .item-operate-special .add-item{
  144. margin:0;
  145. }
  146. .order-button{
  147. width: 702rpx;
  148. height: 98rpx;
  149. line-height: 98rpx;
  150. background: #1677FF;
  151. color: #FFFFFF;
  152. font-size: 36rpx;
  153. margin:24rpx 24rpx 0;
  154. text-align: center;
  155. font-weight: 400;
  156. border-radius: 8rpx;
  157. }