index.scss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. .order {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background-color: rgb(247, 247, 247);
  5. .fixed-box{
  6. width: 100%;
  7. position: sticky;
  8. top: 0;
  9. left: 0;
  10. }
  11. .order-box {
  12. width: 100%;
  13. height: 100%;
  14. @include flex(center);
  15. }
  16. .order-top {
  17. width: 100%;
  18. padding: 28rpx 32rpx 0rpx;
  19. box-sizing: border-box;
  20. background-color: #ffffff;
  21. .search-box {
  22. width: auto;
  23. height: 80rpx;
  24. border-radius: 300rpx;
  25. background-color: #f1f1f1;
  26. line-height: 80rpx;
  27. padding-left: 84rpx;
  28. box-sizing: border-box;
  29. color: #999999;
  30. position: relative;
  31. font-size: 28rpx;
  32. .search-icon {
  33. position: absolute;
  34. top: 50%;
  35. transform: translateY(-50%);
  36. left: 36rpx;
  37. }
  38. }
  39. .order-state {
  40. margin-top: 54rpx;
  41. .scroll-X {
  42. white-space: nowrap;
  43. .scroll-item {
  44. display: inline-block;
  45. padding-bottom: 16rpx;
  46. margin-left: 36rpx;
  47. font-size: 28rpx;
  48. color: #999999;
  49. &:first-of-type {
  50. margin-left: 0;
  51. }
  52. }
  53. .act {
  54. color: $primary-color;
  55. position: relative;
  56. &::after {
  57. content: "";
  58. position: absolute;
  59. left: 0;
  60. bottom: 0;
  61. width: 100%;
  62. height: 4rpx;
  63. background-color: $primary-color;
  64. border-radius: 20rpx;
  65. }
  66. }
  67. }
  68. }
  69. }
  70. .order-container {
  71. padding: 0 32rpx 32rpx;
  72. .order-list {
  73. .order-item {
  74. width: auto;
  75. margin-top: 32rpx;
  76. padding: 32rpx;
  77. box-sizing: border-box;
  78. background-color: #ffffff;
  79. border-radius: 16rpx;
  80. display: flex;
  81. justify-content: center;
  82. gap: 24rpx;
  83. flex-direction: column;
  84. .order-number {
  85. width: 100%;
  86. @include flex(space-between);
  87. .number {
  88. font-size: 32rpx;
  89. font-weight: 700;
  90. }
  91. .number-icon {
  92. color: #999999;
  93. @include flex(center);
  94. font-size: 28rpx;
  95. text {
  96. padding-bottom: 2rpx;
  97. }
  98. }
  99. }
  100. .text-info {
  101. font-size: 28rpx;
  102. color: #999999;
  103. }
  104. .commodity-list {
  105. width: 100%;
  106. display: flex;
  107. justify-content: center;
  108. gap: 12rpx;
  109. flex-direction: column;
  110. .commodity-item {
  111. display: flex;
  112. justify-content: space-between;
  113. .item-left {
  114. display: flex;
  115. gap: 12rpx;
  116. .left-image {
  117. width: 124rpx;
  118. height: 124rpx;
  119. image {
  120. width: 100%;
  121. height: 100%;
  122. border-radius: 12rpx;
  123. }
  124. }
  125. .left-text {
  126. flex: 1;
  127. display: flex;
  128. flex-direction: column;
  129. gap: 6rpx;
  130. .text-title {
  131. color: #333333;
  132. font-size: 28rpx;
  133. }
  134. .text-price {
  135. font-size: 24rpx;
  136. color: #999999;
  137. }
  138. }
  139. }
  140. .item-right {
  141. color: #333333;
  142. font-size: 28rpx;
  143. }
  144. }
  145. }
  146. .gifts {
  147. @include flex(space-between);
  148. font-size: 28rpx;
  149. color: #333333;
  150. .gifs-right {
  151. color: #ea1717;
  152. }
  153. }
  154. .all-price {
  155. color: #333333;
  156. font-size: 28rpx;
  157. }
  158. .border-box {
  159. width: 100%;
  160. height: 2rpx;
  161. background-color: #d8d8d8;
  162. }
  163. .order-state {
  164. text-align: end;
  165. color: #999999;
  166. font-size: 28rpx;
  167. margin-top: 3rpx;
  168. }
  169. }
  170. }
  171. }
  172. .order-empty{
  173. position: fixed;
  174. top: 41%;
  175. left: 50%;
  176. transform: translate(-50%);
  177. @include flex(center,column,32rpx);
  178. font-size: 32rpx;
  179. image{
  180. width: 320rpx;
  181. height: 320rpx;
  182. }
  183. .empty-title{
  184. font-size: 28rpx;
  185. // color: #666666;
  186. color: #999999;
  187. }
  188. .empty-info{
  189. font-size: 28rpx;
  190. color: #999999;
  191. }
  192. }
  193. }