orders.less 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /* pages/orders/orders.wxss */
  2. page {
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. background: #F5F6F7;
  7. &::before {
  8. content: '';
  9. position: absolute;
  10. top: 0;
  11. width: 100%;
  12. height: 334rpx;
  13. background: url('https://oss.dayaedu.com/ktyq/1732098006493.png') no-repeat top center;
  14. background-size: contain;
  15. }
  16. }
  17. .container {
  18. display: flex;
  19. flex-direction: column;
  20. }
  21. .record-content {
  22. display: flex;
  23. flex-direction: column;
  24. width: 100%;
  25. flex: 1;
  26. overflow-y: auto;
  27. }
  28. .record-tab {
  29. display: flex;
  30. align-items: center;
  31. justify-content: space-between;
  32. padding: 28rpx 30rpx 16rpx;
  33. >view {
  34. font-size: 32rpx;
  35. font-family: PingFangSC-Regular, PingFang SC;
  36. font-weight: 500;
  37. color: rgba(0, 0, 0, 0.4);
  38. &.active {
  39. font-size: 32rpx;
  40. font-family: PingFangSC-Semibold, PingFang SC;
  41. font-weight: 600;
  42. color: #131415;
  43. position: relative;
  44. z-index: 2;
  45. &::before {
  46. content: "";
  47. position: absolute;
  48. left: 50%;
  49. margin-left: -32rpx;
  50. bottom: -1rpx;
  51. z-index: -1;
  52. width: 64rpx;
  53. height: 14rpx;
  54. background: linear-gradient( 90deg, #FF902B 0%, #FFDD84 100%);
  55. }
  56. }
  57. }
  58. }
  59. .record-list {
  60. flex: 1;
  61. overflow-y: scroll;
  62. box-sizing: border-box;
  63. }
  64. .list-item-group {
  65. padding-bottom: 88rpx;
  66. }
  67. .list-item {
  68. background: #FFFFFF;
  69. border-radius: 20rpx;
  70. margin: 24rpx 26rpx 0;
  71. padding: 28rpx 24rpx 32rpx;
  72. .item-top {
  73. display: flex;
  74. justify-content: space-between;
  75. font-size: 28rpx;
  76. line-height: 48rpx;
  77. padding-bottom: 24rpx;
  78. .item-mid {
  79. color: #131415;
  80. }
  81. > text {
  82. color: #777777;
  83. }
  84. .red {
  85. color: #FE2451;
  86. }
  87. }
  88. .item-content {
  89. display: flex;
  90. .goods-icon {
  91. width: 160rpx;
  92. height: 160rpx;
  93. margin-right: 24rpx;
  94. flex-shrink: 0;
  95. border-radius: 6px;
  96. overflow: hidden;
  97. }
  98. .goods-desc {
  99. flex: 1 auto;
  100. display: flex;
  101. flex-direction: column;
  102. }
  103. .goodsInfo {
  104. display: flex;
  105. justify-content: space-between;
  106. padding-top: 4rpx;
  107. .goods-name {
  108. flex: 1 auto;
  109. white-space: nowrap;
  110. overflow: hidden;
  111. font-weight: 600;
  112. font-size: 28rpx;
  113. text-overflow: ellipsis;
  114. max-width: 310rpx;
  115. }
  116. .goods-price {
  117. flex-shrink: 0;
  118. font-family: DINAlternate, DINAlternate;
  119. font-weight: bold;
  120. font-size: 28rpx;
  121. color: #131415;
  122. line-height: 48rpx;
  123. }
  124. }
  125. .goods-type {
  126. display: flex;
  127. justify-content: space-between;
  128. align-items: center;
  129. padding-top: 12rpx;
  130. .goods-card {
  131. // background: #FEEDF0;
  132. border-radius: 6rpx;
  133. font-size: 26rpx;
  134. color: #131415;
  135. line-height: 40rpx;
  136. // padding: 0 12rpx;
  137. }
  138. .goods-num {
  139. font-size: 28rpx;
  140. color: #777777;
  141. line-height: 36rpx;
  142. }
  143. }
  144. }
  145. .item-footer {
  146. padding-top: 8rpx;
  147. display: flex;
  148. justify-content: space-between;
  149. align-items: center;
  150. .order-price {
  151. font-size: 28rpx;
  152. color: #999999;
  153. line-height: 48rpx;
  154. .price-first {
  155. font-weight: bold;
  156. color: #FE2451;
  157. font-size: 28rpx;
  158. }
  159. .price {
  160. font-family: DINAlternate, DINAlternate;
  161. font-weight: bold;
  162. font-size: 36rpx;
  163. color: #FE2451;
  164. line-height: 48rpx;
  165. }
  166. }
  167. button {
  168. margin: 0;
  169. border-radius: 12rpx;
  170. background: #F2F2F2;
  171. font-weight: 500;
  172. font-size: 28rpx;
  173. color: #333333;
  174. width: auto;
  175. padding: 14rpx 32rpx;
  176. line-height: 40rpx;
  177. }
  178. .sure {
  179. background: linear-gradient( 315deg, #FF4A00 0%, #FE8C00 100%);
  180. color: #FFFFFF;
  181. }
  182. }
  183. }
  184. .empty-box {
  185. position: absolute;
  186. left: 50%;
  187. top: 50%;
  188. transform: translate(-50%, -80%);
  189. font-size: 32rpx;
  190. font-family: PingFangSC-Regular, PingFang SC;
  191. font-weight: 400;
  192. color: #999999;
  193. image {
  194. width: 436rpx;
  195. height: 364rpx;
  196. }
  197. .empty-text {
  198. font-size: 28rpx;
  199. color: #777777;
  200. line-height: 40rpx;
  201. text-align: center;
  202. padding-top: 24rpx;
  203. }
  204. }