index.wxss 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. .content.data-v-c0232ef0 {
  2. display: flex;
  3. flex-direction: column;
  4. height: 100vh;
  5. background-color: #f7f9fa;
  6. box-sizing: border-box;
  7. }
  8. .search-container.data-v-c0232ef0 {
  9. width: 100%;
  10. padding: 20rpx 30rpx;
  11. background-color: #fff;
  12. box-sizing: border-box;
  13. }
  14. .search-container .search-box.data-v-c0232ef0 {
  15. width: 100%;
  16. height: 80rpx;
  17. background-color: #f5f5f5;
  18. border-radius: 40rpx;
  19. display: flex;
  20. align-items: center;
  21. padding: 0 30rpx;
  22. box-sizing: border-box;
  23. }
  24. .search-container .search-box .search-icon.data-v-c0232ef0 {
  25. width: 34rpx;
  26. height: 34rpx;
  27. margin-right: 16rpx;
  28. }
  29. .search-container .search-box .search-input.data-v-c0232ef0 {
  30. flex: 1;
  31. font-size: 28rpx;
  32. color: #333;
  33. background: transparent;
  34. border: none;
  35. }
  36. .tabs.data-v-c0232ef0 {
  37. display: flex;
  38. background-color: #fff;
  39. border-bottom: 1rpx solid #f0f0f0;
  40. padding: 0 30rpx;
  41. }
  42. .tabs .tab-item.data-v-c0232ef0 {
  43. flex: 1;
  44. height: 88rpx;
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. font-size: 27rpx;
  49. color: #AAAAAA;
  50. font-weight: bold;
  51. position: relative;
  52. transition: color 0.3s;
  53. }
  54. .tabs .tab-item.active.data-v-c0232ef0 {
  55. font-size: 27rpx;
  56. color: #151515;
  57. font-weight: bold;
  58. }
  59. .tabs .tab-item.active.data-v-c0232ef0::after {
  60. content: "";
  61. position: absolute;
  62. bottom: 0;
  63. left: 50%;
  64. transform: translateX(-50%);
  65. width: 40rpx;
  66. height: 8rpx;
  67. background-color: #FF6B35;
  68. border-radius: 5rpx;
  69. }
  70. .order-list.data-v-c0232ef0 {
  71. flex: 1;
  72. padding: 20rpx 30rpx;
  73. box-sizing: border-box;
  74. }
  75. .order-card.data-v-c0232ef0 {
  76. width: 100%;
  77. background-color: #fff;
  78. border-radius: 20rpx;
  79. padding: 30rpx;
  80. margin-bottom: 20rpx;
  81. box-shadow: 0rpx 0rpx 11rpx 0rpx rgba(0, 0, 0, 0.06);
  82. box-sizing: border-box;
  83. }
  84. .order-card .order-header.data-v-c0232ef0 {
  85. display: flex;
  86. justify-content: space-between;
  87. align-items: center;
  88. margin-bottom: 20rpx;
  89. }
  90. .order-card .order-header .order-number.data-v-c0232ef0 {
  91. font-size: 28rpx;
  92. color: #151515;
  93. font-weight: 500;
  94. }
  95. .order-card .store-info.data-v-c0232ef0 {
  96. display: flex;
  97. align-items: center;
  98. justify-content: space-between;
  99. margin-bottom: 12rpx;
  100. }
  101. .order-card .store-info .order-status.data-v-c0232ef0 {
  102. font-size: 28rpx;
  103. font-weight: 500;
  104. }
  105. .order-card .store-info .order-status.status-active.data-v-c0232ef0 {
  106. font-size: 23rpx;
  107. color: #008844;
  108. }
  109. .order-card .store-info .order-status.status-completed.data-v-c0232ef0 {
  110. color: #999;
  111. }
  112. .order-card .store-info .order-status.status-cancelled.data-v-c0232ef0 {
  113. color: #FF3B30;
  114. }
  115. .order-card .store-info .store-name.data-v-c0232ef0 {
  116. font-size: 27rpx;
  117. color: #151515;
  118. font-weight: bold;
  119. }
  120. .order-card .store-info .store-arrow.data-v-c0232ef0 {
  121. font-size: 36rpx;
  122. color: #999;
  123. margin-left: 10rpx;
  124. }
  125. .order-card .order-time.data-v-c0232ef0 {
  126. font-size: 23rpx;
  127. color: #AAAAAA;
  128. margin-bottom: 20rpx;
  129. }
  130. .order-card .order-goods.data-v-c0232ef0 {
  131. display: flex;
  132. align-items: center;
  133. margin-bottom: 30rpx;
  134. }
  135. .order-card .order-goods .goods-images.data-v-c0232ef0 {
  136. display: flex;
  137. gap: 12rpx;
  138. margin-right: 20rpx;
  139. }
  140. .order-card .order-goods .goods-images .goods-image.data-v-c0232ef0 {
  141. width: 100rpx;
  142. height: 100rpx;
  143. border-radius: 8rpx;
  144. background-color: #f5f5f5;
  145. }
  146. .order-card .order-goods .goods-info.data-v-c0232ef0 {
  147. flex: 1;
  148. display: flex;
  149. flex-direction: column;
  150. align-items: flex-end;
  151. }
  152. .order-card .order-goods .goods-info .goods-price.data-v-c0232ef0 {
  153. font-weight: bold;
  154. font-size: 27rpx;
  155. color: #151515;
  156. margin-bottom: 8rpx;
  157. }
  158. .order-card .order-goods .goods-info .goods-count.data-v-c0232ef0 {
  159. font-size: 23rpx;
  160. color: #666666;
  161. }
  162. .order-card .order-actions.data-v-c0232ef0 {
  163. display: flex;
  164. gap: 20rpx;
  165. padding-top: 20rpx;
  166. border-top: 1rpx solid #f0f0f0;
  167. justify-content: flex-end;
  168. }
  169. .order-card .order-actions .action-btn.data-v-c0232ef0 {
  170. height: 68rpx;
  171. display: flex;
  172. align-items: center;
  173. justify-content: center;
  174. border-radius: 34rpx;
  175. font-size: 28rpx;
  176. font-weight: 500;
  177. transition: all 0.3s;
  178. }
  179. .order-card .order-actions .action-btn.outline.data-v-c0232ef0 {
  180. border: 2rpx solid #FF6B35;
  181. color: #FF6B35;
  182. background-color: transparent;
  183. text-align: center;
  184. width: 172rpx;
  185. height: 73rpx;
  186. box-shadow: 0rpx -11rpx 46rpx 0rpx rgba(86, 125, 244, 0.05);
  187. border-radius: 19rpx 19rpx 19rpx 19rpx;
  188. border: 2rpx solid #F47D1F;
  189. }
  190. .order-card .order-actions .action-btn.outline.data-v-c0232ef0:active {
  191. background-color: #fff4e6;
  192. }
  193. .order-card .order-actions .action-btn.primary.data-v-c0232ef0 {
  194. background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  195. color: #fff;
  196. width: 172rpx;
  197. height: 73rpx;
  198. background: linear-gradient(0deg, #FCB73F 0%, #FC733D 100%);
  199. box-shadow: 0rpx -11rpx 46rpx 0rpx rgba(86, 125, 244, 0.05);
  200. border-radius: 19rpx 19rpx 19rpx 19rpx;
  201. }
  202. .order-card .order-actions .action-btn.primary.data-v-c0232ef0:active {
  203. opacity: 0.8;
  204. }
  205. .empty-state.data-v-c0232ef0 {
  206. width: 100%;
  207. padding: 100rpx 0;
  208. display: flex;
  209. justify-content: center;
  210. align-items: center;
  211. }
  212. .empty-state .empty-text.data-v-c0232ef0 {
  213. font-size: 28rpx;
  214. color: #999;
  215. }