order_addcart.wxss 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. .shoppingCart .labelNav {
  2. height: 76rpx;
  3. padding: 0 30rpx;
  4. font-size: 22rpx;
  5. color: #8c8c8c;
  6. position: fixed;
  7. left: 0;
  8. width: 100%;
  9. box-sizing: border-box;
  10. background-color: #f5f5f5;
  11. z-index: 5;
  12. }
  13. .shoppingCart .labelNav .item .iconfont {
  14. font-size: 25rpx;
  15. margin-right: 10rpx;
  16. }
  17. .shoppingCart .nav {
  18. width: 100%;
  19. height: 80rpx;
  20. background-color: #fff;
  21. padding: 0 30rpx;
  22. box-sizing: border-box;
  23. font-size: 28rpx;
  24. color: #282828;
  25. position: fixed;
  26. top: 137rpx;
  27. left: 0;
  28. z-index: 5;
  29. }
  30. .shoppingCart .nav .administrate {
  31. font-size: 26rpx;
  32. color: #282828;
  33. width: 110rpx;
  34. height: 46rpx;
  35. border-radius: 6rpx;
  36. border: 1px solid #868686;
  37. }
  38. .shoppingCart .noCart {
  39. margin-top: 171rpx;
  40. /* background-color: #fff; */
  41. padding-top: 0.1rpx;
  42. text-align: center;
  43. }
  44. .shoppingCart .noCart .pictrue {
  45. width: 292rpx;
  46. height: 292rpx;
  47. margin: 78rpx auto 56rpx auto;
  48. }
  49. .shoppingCart .noCart .pictrue image {
  50. width: 100%;
  51. height: 100%;
  52. }
  53. .noCart_p{
  54. margin-top: 60rpx;
  55. font-size: 30rpx;
  56. font-family: PingFang SC, PingFang SC-Regular;
  57. font-weight: 400;
  58. color: #333333;
  59. }
  60. .shoppingCart .list {
  61. margin-top: 88rpx;
  62. }
  63. .shoppingCart .list .item {
  64. padding: 25rpx 30rpx;
  65. background-color: #fff;
  66. margin-bottom: 15rpx;
  67. }
  68. .shoppingCart .list .item .picTxt {
  69. width: 627rpx;
  70. position: relative;
  71. }
  72. .shoppingCart .list .item .picTxt .pictrue {
  73. width: 160rpx;
  74. height: 160rpx;
  75. }
  76. .shoppingCart .list .item .picTxt .pictrue image {
  77. width: 100%;
  78. height: 100%;
  79. border-radius: 6rpx;
  80. }
  81. .shoppingCart .list .item .picTxt .text {
  82. width: 444rpx;
  83. font-size: 28rpx;
  84. color: #282828;
  85. }
  86. .shoppingCart .list .item .picTxt .text .infor {
  87. font-size: 24rpx;
  88. color: #868686;
  89. margin-top: 16rpx;
  90. }
  91. .shoppingCart .list .item .picTxt .text .money {
  92. font-size: 32rpx;
  93. color: #282828;
  94. margin-top: 28rpx;
  95. }
  96. .shoppingCart .list .item .picTxt .carnum {
  97. height: 47rpx;
  98. position: absolute;
  99. bottom: 7rpx;
  100. right: 0;
  101. }
  102. .shoppingCart .list .item .picTxt .carnum view {
  103. /* border: 1rpx solid #a4a4a4; */
  104. /* background-color: #DFDFDF; */
  105. width: 60rpx;
  106. text-align: center;
  107. height: 100%;
  108. line-height: 40rpx;
  109. font-size: 28rpx;
  110. color: #a4a4a4;
  111. border-radius: 4rpx;
  112. }
  113. .fontcolor{
  114. color: #D70615;
  115. font-size: 32rpx;
  116. }
  117. .shoppingCart .list .item .picTxt .carnum .reduce {
  118. border-right: 0;
  119. border-radius: 3rpx 0 0 3rpx;
  120. background-color: #DFDFDF;
  121. }
  122. .shoppingCart .list .item .picTxt .carnum .reduce.on {
  123. border-color: #F8F8F8;
  124. color: #DEDEDE;
  125. background-color: #F8F8F8;
  126. }
  127. .shoppingCart .list .item .picTxt .carnum .plus {
  128. border-left: 0;
  129. border-radius: 0 3rpx 3rpx 0;
  130. background-color: #DFDFDF;
  131. }
  132. .shoppingCart .list .item .picTxt .carnum .num {
  133. color: #282828;
  134. }
  135. .shoppingCart .invalidGoods {
  136. background-color: #fff;
  137. }
  138. .shoppingCart .invalidGoods .goodsNav {
  139. width: 100%;
  140. height: 66rpx;
  141. padding: 0 30rpx;
  142. box-sizing: border-box;
  143. font-size: 28rpx;
  144. color: #282828;
  145. }
  146. .shoppingCart .invalidGoods .goodsNav .iconfont {
  147. color: #424242;
  148. font-size: 28rpx;
  149. margin-right: 17rpx;
  150. }
  151. .shoppingCart .invalidGoods .goodsNav .del {
  152. font-size: 26rpx;
  153. color: #999;
  154. }
  155. .shoppingCart .invalidGoods .goodsNav .del .icon-shanchu1 {
  156. color: #999;
  157. font-size: 33rpx;
  158. vertical-align: -2rpx;
  159. margin-right: 8rpx;
  160. }
  161. .shoppingCart .invalidGoods .goodsList .item {
  162. padding: 20rpx 30rpx;
  163. border-top: 1rpx solid #f5f5f5;
  164. }
  165. .shoppingCart .invalidGoods .goodsList .item .invalid {
  166. font-size: 22rpx;
  167. color: #fff;
  168. width: 70rpx;
  169. height: 36rpx;
  170. background-color: #aaa;
  171. border-radius: 3rpx;
  172. text-align: center;
  173. line-height: 36rpx;
  174. }
  175. .shoppingCart .invalidGoods .goodsList .item .pictrue {
  176. width: 140rpx;
  177. height: 140rpx;
  178. }
  179. .shoppingCart .invalidGoods .goodsList .item .pictrue image {
  180. width: 100%;
  181. height: 100%;
  182. border-radius: 6rpx;
  183. }
  184. .shoppingCart .invalidGoods .goodsList .item .text {
  185. width: 433rpx;
  186. font-size: 28rpx;
  187. color: #999;
  188. height: 140rpx;
  189. }
  190. .shoppingCart .invalidGoods .goodsList .item .text .infor {
  191. font-size: 24rpx;
  192. }
  193. .shoppingCart .invalidGoods .goodsList .item .text .end {
  194. font-size: 26rpx;
  195. color: #bbb;
  196. }
  197. .shoppingCart .footer {
  198. width: 100%;
  199. height: 96rpx;
  200. background-color: #fafafa;
  201. position: fixed;
  202. bottom: 0;
  203. padding: 0 30rpx;
  204. box-sizing: border-box;
  205. border-top: 1rpx solid #eee;
  206. }
  207. .shoppingCart .footer .checkAll {
  208. font-size: 28rpx;
  209. color: #282828;
  210. margin-left: 16rpx;
  211. }
  212. .shoppingCart .footer checkbox .wx-checkbox-input {
  213. background-color: #fafafa;
  214. }
  215. .shoppingCart .footer .money {
  216. font-size: 30rpx;
  217. }
  218. .shoppingCart .footer .placeOrder {
  219. color: #fff;
  220. font-size: 30rpx;
  221. width: 226rpx;
  222. height: 70rpx;
  223. border-radius: 50rpx;
  224. text-align: center;
  225. line-height: 70rpx;
  226. margin-left: 22rpx;
  227. }
  228. .shoppingCart .footer .button .bnt {
  229. font-size: 28rpx;
  230. color: #999;
  231. border-radius: 50rpx;
  232. border: 1px solid #999;
  233. width: 160rpx;
  234. height: 60rpx;
  235. text-align: center;
  236. line-height: 60rpx;
  237. }
  238. .shoppingCart .footer .button form~form {
  239. margin-left: 17rpx;
  240. }