deposit.wxss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. /* pages/order/deposit/deposit.wxss */
  2. page {
  3. width: 750rpx;
  4. min-height: 100vh;
  5. background: #F6F6F6;
  6. }
  7. .topBox {
  8. width: 750rpx;
  9. height: 174rpx;
  10. background: #FFFFFF;
  11. padding: 32rpx;
  12. }
  13. .topBox .tit {
  14. font-size: 30rpx;
  15. font-weight: bold;
  16. color: #191C27;
  17. }
  18. .topBox .adr {
  19. font-size: 24rpx;
  20. color: #666666;
  21. width: 473rpx;
  22. }
  23. .topBox .lr {
  24. font-size: 24rpx;
  25. color: #191C27;
  26. text-align: center;
  27. border-left: 1rpx solid #E4E4E4;
  28. padding-left: 32rpx;
  29. }
  30. .topBox .lr .icon {
  31. width: 40rpx;
  32. height: 40rpx;
  33. }
  34. .itemBoxs {
  35. width: 702rpx;
  36. background: #FFFFFF;
  37. border-radius: 12rpx;
  38. margin: 24rpx auto;
  39. }
  40. .itemBoxs .titBoxs {
  41. padding: 25rpx;
  42. }
  43. .itemBoxs .titBoxs .le {
  44. font-size: 26rpx;
  45. color: #999999;
  46. }
  47. .itemBoxs .contioner {
  48. padding: 24rpx;
  49. }
  50. .itemBoxs .messageBoxs .tips {
  51. font-size: 28rpx;
  52. font-weight: 500;
  53. color: #191C27;
  54. }
  55. .itemBoxs .messageBoxs .time {
  56. font-size: 24rpx;
  57. color: #999999;
  58. }
  59. .itemBoxs .centerBoxs {
  60. white-space: nowrap;
  61. margin: 30rpx 0;
  62. }
  63. .itemBoxs .centerBoxs scroll-view {
  64. width: 85%;
  65. }
  66. .itemBoxs .centerBoxs .clothes {
  67. width: 120rpx;
  68. height: 120rpx;
  69. }
  70. .itemBoxs .centerBoxs .name {
  71. font-size: 28rpx;
  72. color: #191C27;
  73. margin-left: 25rpx;
  74. }
  75. .itemBoxs .centerBoxs .lr {
  76. text-align: right;
  77. line-height: 60rpx;
  78. height: 120rpx;
  79. }
  80. .itemBoxs .centerBoxs .showModel {
  81. position: relative;
  82. }
  83. .itemBoxs .centerBoxs .showModel::before {
  84. position: absolute;
  85. left: -30rpx;
  86. top: 0;
  87. display: block;
  88. content: '';
  89. width: 10rpx;
  90. height: 100%;
  91. background: #F6F6F6;
  92. filter: blur(6rpx);
  93. /* border: 1px solid red; */
  94. }
  95. .itemBoxs .centerBoxs .price {
  96. font-size: 36rpx;
  97. font-family: HelveticaNeue-BoldCond, HelveticaNeue;
  98. font-weight: bold;
  99. color: #191C27;
  100. letter-spacing: 1rpx;
  101. }
  102. .itemBoxs .centerBoxs .small {
  103. font-size: 24rpx;
  104. }
  105. .itemBoxs .centerBoxs .num {
  106. font-size: 28rpx;
  107. color: #999999;
  108. }
  109. .itemBoxs .footerBoxs .btn {
  110. width: 152rpx;
  111. height: 60rpx;
  112. border-radius: 30rpx;
  113. text-align: center;
  114. line-height: 60rpx;
  115. font-size: 28rpx;
  116. margin-left: 25rpx;
  117. }
  118. .imgBoxs {
  119. position: relative;
  120. margin-right: 25rpx;
  121. }
  122. .imgBoxs .nums {
  123. position: absolute;
  124. left: 0;
  125. bottom: 0;
  126. width: 100%;
  127. height: 30rpx;
  128. background: rgba(25, 28, 39, 0.5);
  129. border-radius: 0px 0px 4rpx 4rpx;
  130. font-size: 22rpx;
  131. color: #FFFFFF;
  132. line-height: 30rpx;
  133. text-align: center;
  134. }
  135. .bg {
  136. background: linear-gradient(270deg, #467FFF 0%, #4699FF 100%);
  137. color: #FFFFFF;
  138. }
  139. .border {
  140. color: #999999;
  141. border: 1rpx solid #CCCCCC;
  142. }
  143. .footerBoxs .tips {
  144. font-size: 26rpx;
  145. color: #999999;
  146. }
  147. .card {
  148. width: 702rpx;
  149. background: #FFFFFF;
  150. border-radius: 12rpx;
  151. margin: 25rpx auto;
  152. padding: 48rpx 32rpx;
  153. }
  154. .card .tit {
  155. font-size: 30rpx;
  156. font-weight: 500;
  157. color: #191C27;
  158. }
  159. .card .tips {
  160. font-size: 26rpx;
  161. color: #999999;
  162. margin: 15rpx 0;
  163. }
  164. .card .mes {
  165. font-size: 30rpx;
  166. font-weight: 500;
  167. color: #191C27;
  168. }
  169. .card .num {
  170. font-size: 72rpx;
  171. font-weight: 500;
  172. color: #191C27;
  173. }
  174. .card .lr {
  175. width: 152rpx;
  176. height: 60rpx;
  177. border-radius: 30rpx;
  178. font-size: 28rpx;
  179. color: #FFFFFF;
  180. line-height: 60rpx;
  181. }
  182. .card .lr image {
  183. width: 80rpx;
  184. height: 80rpx;
  185. }
  186. .footer {
  187. position: absolute;
  188. left: 50%;
  189. bottom: 5%;
  190. transform: translate(-50%, 0);
  191. font-size: 26rpx;
  192. color: #666666;
  193. }
  194. .content {
  195. width: 750rpx;
  196. min-height: 368rpx;
  197. padding: 50rpx;
  198. }
  199. .content .tit {
  200. font-size: 36rpx;
  201. font-weight: 500;
  202. color: #191C27;
  203. text-align: center;
  204. margin-bottom: 70rpx;
  205. }
  206. .content .state {
  207. width: 80rpx;
  208. height: 80rpx;
  209. display: block;
  210. margin: auto;
  211. }
  212. .content2 {
  213. padding: 50rpx 0;
  214. }
  215. .content .tips {
  216. font-size: 28rpx;
  217. color: #191C27;
  218. text-align: center;
  219. }
  220. .content .btnBox {
  221. margin: 70rpx auto;
  222. padding: 0 57rpx;
  223. }
  224. .content .btn {
  225. height: 76rpx;
  226. line-height: 76rpx;
  227. border-radius: 38rpx;
  228. font-size: 28rpx;
  229. padding: 0rpx 32rpx;
  230. margin-right: auto;
  231. }
  232. .content2 .line {
  233. width: 750rpx;
  234. height: 16rpx;
  235. background: #F6F6F6;
  236. }
  237. .content2 .rule {
  238. padding: 32rpx 48rpx;
  239. }
  240. .content2 .rule .title {
  241. font-size: 28rpx;
  242. font-weight: 500;
  243. color: #191C27;
  244. text-align: center;
  245. }
  246. .content2 .rule .items {
  247. font-size: 28rpx;
  248. color: #666666;
  249. }