order-result.less 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. /* pages/orders/order-detail.wxss */
  2. page {
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. background: #F5F6F7;
  7. }
  8. .scroll-container {
  9. padding-bottom: 174rpx;
  10. }
  11. .order-status {
  12. margin: 24rpx 26rpx 0;
  13. background-color: #FFFFFF;
  14. border-radius: 20rpx;
  15. padding: 24rpx 32rpx;
  16. .status {
  17. display: flex;
  18. image {
  19. width: 48rpx;
  20. height: 48rpx;
  21. margin-right: 16rpx;
  22. }
  23. text {
  24. font-weight: 600;
  25. font-size: 36rpx;
  26. color: #131415;
  27. line-height: 48rpx;
  28. }
  29. }
  30. .tips {
  31. padding-top: 24rpx;
  32. font-size: 28rpx;
  33. color: #777777;
  34. line-height: 40rpx;
  35. }
  36. }
  37. .order-content {
  38. margin: 24rpx 26rpx 0;
  39. border-radius: 20rpx;
  40. padding: 28rpx 24rpx;
  41. display: flex;
  42. flex-direction: column;
  43. background-color: #FFFFFF;
  44. }
  45. .item-content {
  46. display: flex;
  47. width: 100%;
  48. .goods-icon {
  49. width: 160rpx;
  50. height: 160rpx;
  51. margin-right: 24rpx;
  52. flex-shrink: 0;
  53. border-radius: 6px;
  54. overflow: hidden;
  55. }
  56. .goods-desc {
  57. flex: 1 auto;
  58. display: flex;
  59. flex-direction: column;
  60. }
  61. .goodsInfo {
  62. display: flex;
  63. justify-content: space-between;
  64. padding-top: 4rpx;
  65. .goods-name {
  66. flex: 1 auto;
  67. white-space: nowrap;
  68. overflow: hidden;
  69. font-weight: 600;
  70. font-size: 28rpx;
  71. text-overflow: ellipsis;
  72. max-width: 310rpx;
  73. }
  74. .goods-price {
  75. flex-shrink: 0;
  76. font-family: DINAlternate, DINAlternate;
  77. font-weight: bold;
  78. font-size: 28rpx;
  79. color: #131415;
  80. line-height: 48rpx;
  81. }
  82. }
  83. .goods-type {
  84. display: flex;
  85. justify-content: space-between;
  86. align-items: center;
  87. padding-top: 12rpx;
  88. .goods-card {
  89. background: #FEEDF0;
  90. border-radius: 6rpx;
  91. font-size: 26rpx;
  92. color: #FE2451;
  93. line-height: 40rpx;
  94. padding: 0 12rpx;
  95. }
  96. .goods-num {
  97. font-size: 28rpx;
  98. color: #777777;
  99. line-height: 36rpx;
  100. }
  101. }
  102. }
  103. /* HTML: <div class="loader"></div> */
  104. .loader {
  105. position: absolute;
  106. top: 50%;
  107. left: 50%;
  108. right: 0;
  109. bottom: 0;
  110. margin-top: -50rpx;
  111. margin-left: -50rpx;
  112. z-index: 9;
  113. width: 100rpx;
  114. aspect-ratio: 1;
  115. border-radius: 50%;
  116. background:
  117. radial-gradient(farthest-side,#E8E8E8 94%,#0000) top/8px 8px no-repeat,
  118. conic-gradient(#0000 30%,#E8E8E8);
  119. -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  120. animation: tempLoading 1s infinite linear;
  121. }
  122. @keyframes tempLoading{
  123. 100%{transform: rotate(1turn)}
  124. }
  125. .only_canvas {
  126. position: absolute;
  127. left: -300rpx;
  128. top: 0;
  129. width: 262rpx;
  130. height: 262rpx;
  131. }
  132. .qrcode-section {
  133. margin-top: 28rpx;
  134. border-top: 2rpx solid #F0F0F0;
  135. padding-top: 60rpx;
  136. padding-bottom: 32rpx;
  137. text-align: center;
  138. .qrcode-wrap {
  139. position: relative;
  140. margin: 0 auto;
  141. border: 3rpx solid #EDEDED;
  142. padding: 10rpx;
  143. display: inline-block;
  144. font-size: 0;
  145. }
  146. .my_draw_canvas {
  147. width: 262rpx;
  148. height: 262rpx;
  149. }
  150. .qrcode-text {
  151. padding-top: 32rpx;
  152. font-size: 28rpx;
  153. color: #131415;
  154. line-height: 40rpx;
  155. &.used {
  156. color: #AAAAAA;
  157. }
  158. }
  159. }
  160. .order-time {
  161. margin: 24rpx 26rpx 0;
  162. border-radius: 20rpx;
  163. padding: 36rpx 24rpx;
  164. background-color: #FFFFFF;
  165. .order-item {
  166. display: flex;
  167. justify-content: space-between;
  168. padding-bottom: 36rpx;
  169. &:last-child {
  170. padding-bottom: 0;
  171. }
  172. .title {
  173. font-size: 28rpx;
  174. color: #131415;
  175. line-height: 40rpx;
  176. }
  177. .value {
  178. font-size: 30rpx;
  179. color: #777777;
  180. line-height: 42rpx;
  181. display: flex;
  182. &.red {
  183. color: #FE2451;
  184. }
  185. .copy {
  186. font-size: 30rpx;
  187. color: #FE2451;
  188. line-height: 42rpx;
  189. display: flex;
  190. align-items: center;
  191. padding-left: 16rpx;
  192. }
  193. }
  194. }
  195. }
  196. .btn-refound {
  197. padding-top: 40rpx;
  198. text-align: center;
  199. font-size: 28rpx;
  200. color: #A7ABAF;
  201. line-height: 40rpx;
  202. }
  203. .order-btn {
  204. position: fixed;
  205. bottom: 0;
  206. left: 0;
  207. width: 100%;
  208. background-color: #FFFFFF;
  209. padding: 20rpx 32rpx 58rpx 40rpx;
  210. display: flex;
  211. justify-content: space-between;
  212. box-sizing: border-box;
  213. .orders {
  214. display: flex;
  215. flex-direction: column;
  216. margin-right: 40rpx;
  217. image {
  218. width: 48rpx;
  219. height: 48rpx;
  220. }
  221. text {
  222. font-weight: 500;
  223. font-size: 22rpx;
  224. color: #131415;
  225. line-height: 32rpx;
  226. text-align: center;
  227. }
  228. }
  229. .price {
  230. display: flex;
  231. align-items: center;
  232. .desc {
  233. font-weight: 500;
  234. font-size: 28rpx;
  235. color: #131415;
  236. line-height: 40rpx;
  237. }
  238. .currentPrice {
  239. font-weight: bold;
  240. color: #FE2451;
  241. font-family: DINAlternate, DINAlternate;
  242. .stuff {
  243. font-size: 32rpx;
  244. }
  245. .priceZ {
  246. font-size: 56rpx;
  247. }
  248. .priceF {
  249. font-size: 32rpx;
  250. }
  251. }
  252. }
  253. button {
  254. margin: 0;
  255. width: 100%;
  256. background: linear-gradient( 270deg, #FF204B 0%, #FE5B71 100%);
  257. border-radius: 78rpx;
  258. padding: 22rpx 84rpx;
  259. font-weight: 500;
  260. font-size: 32rpx;
  261. color: #FFFFFF;
  262. line-height: 44rpx;
  263. &[disabled][type=primary] {
  264. color: #fff;
  265. background: linear-gradient( 270deg, #FF204B 0%, #FE5B71 100%);
  266. opacity: 0.7;
  267. }
  268. }
  269. }