order-result.less 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /* pages/orders/order-detail.wxss */
  2. page {
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. background: #F5F6F7;
  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. padding-bottom: 24rpx;
  16. image {
  17. width: 48rpx;
  18. height: 48rpx;
  19. margin-right: 16rpx;
  20. }
  21. text {
  22. font-weight: 600;
  23. font-size: 36rpx;
  24. color: #131415;
  25. line-height: 48rpx;
  26. }
  27. }
  28. .tips {
  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. padding: 28rpx 24rpx;
  38. display: flex;
  39. background-color: #FFFFFF;
  40. }
  41. .item-content {
  42. display: flex;
  43. width: 100%;
  44. .goods-icon {
  45. width: 160rpx;
  46. height: 160rpx;
  47. margin-right: 24rpx;
  48. flex-shrink: 0;
  49. }
  50. .goods-desc {
  51. flex: 1 auto;
  52. display: flex;
  53. flex-direction: column;
  54. }
  55. .goodsInfo {
  56. display: flex;
  57. justify-content: space-between;
  58. padding-top: 4rpx;
  59. .goods-name {
  60. flex: 1 auto;
  61. white-space: nowrap;
  62. overflow: hidden;
  63. font-weight: 600;
  64. font-size: 28rpx;
  65. text-overflow: ellipsis;
  66. max-width: 310rpx;
  67. }
  68. .goods-price {
  69. flex-shrink: 0;
  70. font-family: DINAlternate, DINAlternate;
  71. font-weight: bold;
  72. font-size: 28rpx;
  73. color: #131415;
  74. line-height: 48rpx;
  75. }
  76. }
  77. .goods-type {
  78. display: flex;
  79. justify-content: space-between;
  80. padding-top: 12rpx;
  81. .goods-card {
  82. height: 40rpx;
  83. background: #FEEDF0;
  84. border-radius: 6rpx;
  85. font-size: 26rpx;
  86. color: #FE2451;
  87. line-height: 36rpx;
  88. padding: 0 12rpx;
  89. }
  90. .goods-num {
  91. font-size: 28rpx;
  92. color: #777777;
  93. line-height: 36rpx;
  94. }
  95. }
  96. }
  97. .order-time {
  98. margin: 24rpx 26rpx 0;
  99. border-radius: 20rpx;
  100. padding: 36rpx 24rpx;
  101. background-color: #FFFFFF;
  102. .order-item {
  103. display: flex;
  104. justify-content: space-between;
  105. padding-bottom: 36rpx;
  106. &:last-child {
  107. padding-bottom: 0;
  108. }
  109. .title {
  110. font-size: 28rpx;
  111. color: #131415;
  112. line-height: 40rpx;
  113. }
  114. .value {
  115. font-size: 28rpx;
  116. color: #777777;
  117. line-height: 40rpx;
  118. }
  119. }
  120. }
  121. .order-btn {
  122. position: fixed;
  123. bottom: 0;
  124. left: 0;
  125. width: 100%;
  126. background-color: #FFFFFF;
  127. padding: 20rpx 32rpx 58rpx 40rpx;
  128. display: flex;
  129. justify-content: space-between;
  130. box-sizing: border-box;
  131. .price {
  132. display: flex;
  133. align-items: center;
  134. .desc {
  135. font-weight: 500;
  136. font-size: 28rpx;
  137. color: #131415;
  138. line-height: 40rpx;
  139. }
  140. .currentPrice {
  141. font-weight: bold;
  142. color: #FE2451;
  143. font-family: DINAlternate, DINAlternate;
  144. .stuff {
  145. font-size: 32rpx;
  146. }
  147. .priceZ {
  148. font-size: 56rpx;
  149. }
  150. .priceF {
  151. font-size: 32rpx;
  152. }
  153. }
  154. }
  155. button {
  156. margin: 0;
  157. width: auto;
  158. background: linear-gradient( 270deg, #FF204B 0%, #FE5B71 100%);
  159. border-radius: 78rpx;
  160. padding: 22rpx 84rpx;
  161. font-weight: 500;
  162. font-size: 32rpx;
  163. color: #FFFFFF;
  164. line-height: 44rpx;
  165. }
  166. }