order-result.less 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. /* pages/orders/order-detail.wxss */
  2. page {
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. background: #F4F4F4;
  7. }
  8. .order-status {
  9. margin: 24rpx 26rpx 0;
  10. background-color: #FFFFFF;
  11. border-radius: 20rpx;
  12. padding: 24rpx 32rpx;
  13. .status {
  14. display: flex;
  15. image {
  16. width: 48rpx;
  17. height: 48rpx;
  18. margin-right: 16rpx;
  19. }
  20. text {
  21. font-weight: 600;
  22. font-size: 36rpx;
  23. color: #131415;
  24. line-height: 48rpx;
  25. }
  26. }
  27. .tips {
  28. padding-top: 24rpx;
  29. font-size: 28rpx;
  30. color: #777777;
  31. line-height: 40rpx;
  32. }
  33. }
  34. .order-content {
  35. margin: 24rpx 26rpx 0;
  36. border-radius: 20rpx;
  37. display: flex;
  38. flex-direction: column;
  39. background-color: #FFFFFF;
  40. }
  41. .goods-content {
  42. margin: 24rpx 26rpx 0;
  43. border-radius: 20rpx;
  44. padding: 28rpx 24rpx;
  45. display: flex;
  46. flex-direction: column;
  47. background-color: #FFFFFF;
  48. }
  49. .item-content {
  50. display: flex;
  51. width: 100%;
  52. .goods-icon {
  53. width: 140rpx;
  54. height: 140rpx;
  55. margin-right: 24rpx;
  56. flex-shrink: 0;
  57. border-radius: 6px;
  58. overflow: hidden;
  59. }
  60. .goods-desc {
  61. flex: 1 auto;
  62. display: flex;
  63. flex-direction: column;
  64. }
  65. .goodsInfo {
  66. display: flex;
  67. justify-content: space-between;
  68. padding-top: 4rpx;
  69. .goods-name {
  70. flex: 1 auto;
  71. white-space: nowrap;
  72. overflow: hidden;
  73. font-weight: 600;
  74. font-size: 30rpx;
  75. color: #131415;
  76. text-overflow: ellipsis;
  77. max-width: 380rpx;
  78. }
  79. .goods-price {
  80. flex-shrink: 0;
  81. font-family: DINAlternate, DINAlternate;
  82. font-weight: bold;
  83. font-size: 28rpx;
  84. color: #131415;
  85. line-height: 48rpx;
  86. }
  87. }
  88. .goods-type {
  89. display: flex;
  90. justify-content: space-between;
  91. align-items: center;
  92. padding-top: 12rpx;
  93. .goods-card {
  94. background: #FDF2E2;
  95. border-radius: 6rpx;
  96. font-size: 26rpx;
  97. color: #502F00;
  98. line-height: 36rpx;
  99. padding: 0 12rpx;
  100. }
  101. .goods-num {
  102. font-size: 28rpx;
  103. color: #777777;
  104. line-height: 36rpx;
  105. }
  106. }
  107. }
  108. .qrcode-title {
  109. padding: 40rpx 24rpx;
  110. font-weight: 600;
  111. font-size: 30rpx;
  112. color: #131415;
  113. line-height: 42rpx;
  114. }
  115. .qrcode-line {
  116. position: relative;
  117. background: linear-gradient(to right, transparent 50%, rgba(219, 219, 219, 1) 50%) repeat-x; // 设置水平方向的线性渐变,透明与半透明色交替,模拟虚线线段
  118. background-size: 10px 1px; // 设置背景大小,控制虚线的线段长度和粗细,这里线段长度为10px,粗细为1px
  119. height: 2rpx; // 元素高度,可根据实际需求调整,用于展示虚线效果的高度范围
  120. margin: 0 24rpx;
  121. &::before, &::after {
  122. content: '';
  123. position: absolute;
  124. top: -20rpx;
  125. display: block;
  126. width: 40rpx;
  127. height: 40rpx;
  128. background-color: #F4F4F4;
  129. border-radius: 50%;
  130. }
  131. &::before {
  132. left: -44rpx;
  133. }
  134. &::after {
  135. right: -44rpx;
  136. }
  137. }
  138. .qrcode-section {
  139. margin-top: 20rpx;
  140. padding-bottom: 32rpx;
  141. padding: 0 24rpx 28rpx;
  142. .qrcode-block {
  143. display: flex;
  144. margin-top: 20rpx;
  145. background: #FBF5EE;
  146. border-radius: 20rpx;
  147. overflow: hidden;
  148. .left-text {
  149. padding: 0 18rpx 0 22rpx;
  150. background: linear-gradient( 180deg, #544F4A 0%, #302F2B 100%);
  151. display: flex;
  152. align-items: center;
  153. justify-content: center;
  154. writing-mode: vertical-lr;
  155. font-weight: 600;
  156. font-size: 26rpx;
  157. color: #FBEAC9;
  158. line-height: 36rpx;
  159. letter-spacing: 10rpx;
  160. }
  161. }
  162. .qrcode-wrap {
  163. margin: 32rpx auto;
  164. border: 2rpx solid #EDEDED;
  165. padding: 6rpx;
  166. border-radius: 8rpx;
  167. display: inline-block;
  168. }
  169. .my_draw_canvas {
  170. width: 202rpx;
  171. height: 202rpx;
  172. }
  173. .qrcode-text {
  174. font-size: 28rpx;
  175. color: #131415;
  176. line-height: 40rpx;
  177. border-radius: 12rpx;
  178. border: 2rpx solid #F2F2F2;
  179. padding: 16rpx 24rpx;
  180. text-align: left;
  181. text {
  182. color: #DDA64C;
  183. font-weight: bold;
  184. }
  185. &.used {
  186. color: #AAAAAA;
  187. }
  188. }
  189. }
  190. .order-time {
  191. margin: 24rpx 26rpx 0;
  192. border-radius: 20rpx;
  193. // padding: 36rpx 24rpx;
  194. background-color: #FFFFFF;
  195. .order-item {
  196. display: flex;
  197. justify-content: space-between;
  198. // padding-bottom: 36rpx;
  199. padding: 36rpx 0;
  200. margin: 0 24rpx;
  201. border-bottom: 2rpx solid #F0F0F0;
  202. &:last-child {
  203. border-bottom: none;
  204. }
  205. .title {
  206. font-weight: 500;
  207. font-size: 30rpx;
  208. color: #131415;
  209. line-height: 42rpx;
  210. }
  211. .value {
  212. font-size: 30rpx;
  213. color: #777777;
  214. line-height: 42rpx;
  215. display: flex;
  216. &.red {
  217. color: #FE2451;
  218. }
  219. .copy {
  220. font-size: 30rpx;
  221. color: #131415;
  222. line-height: 42rpx;
  223. display: flex;
  224. align-items: center;
  225. &::before {
  226. content: '';
  227. display: block;
  228. width: 2rpx;
  229. height: 22rpx;
  230. background: #DCDCDC;
  231. margin: 0 16rpx;
  232. }
  233. }
  234. }
  235. }
  236. }
  237. .order-btn {
  238. position: fixed;
  239. bottom: 0;
  240. left: 0;
  241. width: 100%;
  242. background-color: #FFFFFF;
  243. padding: 20rpx 32rpx 58rpx 40rpx;
  244. display: flex;
  245. justify-content: space-between;
  246. box-sizing: border-box;
  247. .orders {
  248. display: flex;
  249. flex-direction: column;
  250. margin-right: 40rpx;
  251. image {
  252. width: 48rpx;
  253. height: 48rpx;
  254. }
  255. text {
  256. font-weight: 500;
  257. font-size: 22rpx;
  258. color: #131415;
  259. line-height: 32rpx;
  260. text-align: center;
  261. }
  262. }
  263. .price {
  264. display: flex;
  265. align-items: center;
  266. .desc {
  267. font-weight: 500;
  268. font-size: 28rpx;
  269. color: #131415;
  270. line-height: 40rpx;
  271. }
  272. .currentPrice {
  273. font-weight: bold;
  274. color: #FE2451;
  275. font-family: DINAlternate, DINAlternate;
  276. .stuff {
  277. font-size: 32rpx;
  278. }
  279. .priceZ {
  280. font-size: 56rpx;
  281. }
  282. .priceF {
  283. font-size: 32rpx;
  284. }
  285. }
  286. }
  287. button {
  288. margin: 0;
  289. width: 100%;
  290. background: linear-gradient( 90deg, #544F4A 0%, #302F2B 100%);
  291. border-radius: 78rpx;
  292. padding: 22rpx 84rpx;
  293. font-weight: 500;
  294. font-size: 32rpx;
  295. color: #FBEAC9;
  296. line-height: 44rpx;
  297. }
  298. }
  299. .useRefound-pop {
  300. position: fixed;
  301. top: 0;
  302. left: 0;
  303. right: 0;
  304. bottom: 0;
  305. .useRefound-mask {
  306. position: absolute;
  307. top: 0;
  308. left: 0;
  309. right: 0;
  310. bottom: 0;
  311. background-color: rgba(0, 0, 0, 0.6);
  312. }
  313. .useRefound-container {
  314. position: absolute;
  315. left: 0;
  316. right: 0;
  317. bottom: 0;
  318. width: 100%;
  319. background: #F8F8F8;
  320. border-radius: 32rpx 32rpx 0rpx 0rpx;
  321. .icon-close {
  322. position: absolute;
  323. width: 38rpx;
  324. height: 38rpx;
  325. top: 40rpx;
  326. right: 40rpx;
  327. }
  328. .use-title {
  329. font-weight: 600;
  330. font-size: 36rpx;
  331. color: #000000;
  332. line-height: 50rpx;
  333. padding-top: 34rpx;
  334. padding-bottom: 30rpx;
  335. text-align: center;
  336. }
  337. .use-form {
  338. margin: 0 40rpx 0;
  339. background: #FFFFFF;
  340. border-radius: 20rpx;
  341. padding: 22rpx 24rpx 24rpx 30rpx;
  342. textarea {
  343. height: 140rpx;
  344. font-size: 30rpx;
  345. width: 100%;
  346. &::placeholder {
  347. color: #AAAAAA;
  348. }
  349. }
  350. .num {
  351. text-align: right;
  352. font-size: 28rpx;
  353. color: #AAAAAA;
  354. line-height: 40rpx;
  355. }
  356. }
  357. .use-form__input {
  358. margin: 20rpx 40rpx 0;
  359. background: #FFFFFF;
  360. border-radius: 20rpx;
  361. padding: 24rpx;
  362. margin-bottom: 180rpx;
  363. display: flex;
  364. justify-content: space-between;
  365. .title {
  366. display: inline;
  367. font-size: 30rpx;
  368. color: #131415;
  369. .red {
  370. color: #F44541;
  371. }
  372. .sencd {
  373. color: #AAAAAA;
  374. }
  375. }
  376. input {
  377. text-align: right;
  378. font-size: 30rpx;
  379. &::placeholder {
  380. color: #AAAAAA;
  381. }
  382. }
  383. }
  384. .btnSection {
  385. padding: 0 32rpx 58rpx;
  386. button {
  387. margin: 0;
  388. width: 100%;
  389. background: linear-gradient( 90deg, #544F4A 0%, #302F2B 100%);
  390. border-radius: 78rpx;
  391. padding: 22rpx 84rpx;
  392. font-weight: 500;
  393. font-size: 32rpx;
  394. color: #FBEAC9;
  395. line-height: 44rpx;
  396. }
  397. }
  398. }
  399. }