index.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. page {
  2. height: 100vh;
  3. overflow: hidden;
  4. }
  5. .count {
  6. box-sizing: border-box;
  7. padding: 10rpx;
  8. display: flex;
  9. justify-content: center;
  10. width: 750rpx;
  11. background: #FFEFD9;
  12. font-family: PingFang SC, PingFang SC;
  13. font-weight: 600;
  14. font-size: 28rpx;
  15. color: #FA8C16;
  16. text-align: center;
  17. font-style: normal;
  18. text-transform: none;
  19. }
  20. .order-card {
  21. background: #ffffff;
  22. border-radius: 8rpx;
  23. padding: 16rpx 20rpx 20rpx;
  24. box-sizing: border-box;
  25. margin-bottom: 20rpx;
  26. .card-header {
  27. display: flex;
  28. justify-content: space-between;
  29. align-items: center;
  30. width: 100%;
  31. padding-bottom: 18rpx;
  32. margin-bottom: 16rpx;
  33. border-bottom: 2rpx solid #dddddd;
  34. .order-no {
  35. font-family: PingFang SC, PingFang SC;
  36. font-weight: 400;
  37. font-size: 28rpx;
  38. color: #333333;
  39. text-align: left;
  40. font-style: normal;
  41. text-transform: none;
  42. }
  43. .order-status {
  44. font-family: PingFang SC, PingFang SC;
  45. font-weight: 400;
  46. font-size: 28rpx;
  47. text-align: right;
  48. font-style: normal;
  49. text-transform: none;
  50. }
  51. }
  52. .product-list {
  53. .product-item {
  54. display: flex;
  55. align-items: center;
  56. padding: 12rpx 0;
  57. border-bottom: 2rpx solid #dddddd;
  58. .product-img {
  59. flex-shrink: 0;
  60. }
  61. .product-info {
  62. flex: 1;
  63. margin-left: 20rpx;
  64. display: flex;
  65. flex-direction: column;
  66. justify-content: space-between;
  67. min-height: 120rpx;
  68. padding: 4rpx 0;
  69. .product-name {
  70. font-size: 28rpx;
  71. color: #333;
  72. line-height: 1.4;
  73. display: -webkit-box;
  74. -webkit-box-orient: vertical;
  75. -webkit-line-clamp: 2;
  76. overflow: hidden;
  77. }
  78. .product-meta {
  79. display: flex;
  80. justify-content: space-between;
  81. align-items: center;
  82. margin-top: 12rpx;
  83. .product-points {
  84. font-size: 28rpx;
  85. color: #E3041F;
  86. font-weight: bold;
  87. }
  88. .product-qty {
  89. font-size: 24rpx;
  90. color: #999;
  91. }
  92. }
  93. }
  94. }
  95. }
  96. .card-footer {
  97. display: flex;
  98. justify-content: space-between;
  99. align-items: center;
  100. padding-top: 16rpx;
  101. margin-top: 12rpx;
  102. .total-points {
  103. font-size: 24rpx;
  104. color: #999;
  105. .points-num {
  106. font-size: 32rpx;
  107. color: #E3041F;
  108. font-weight: bold;
  109. }
  110. }
  111. .order-date {
  112. font-size: 24rpx;
  113. color: #999;
  114. }
  115. }
  116. }