order.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. .nav-wrap {
  2. position: fixed;
  3. left: 0;
  4. top: 0;
  5. z-index: 10;
  6. width: 100%;
  7. }
  8. .nav-wrap .nav {
  9. width: 100%;
  10. background: rgba(255, 255, 255, 1);
  11. font-size: 0;
  12. }
  13. .nav-wrap .nav-item {
  14. display: inline-block;
  15. width: 150rpx;
  16. text-align: center;
  17. }
  18. .nav-wrap text {
  19. position: relative;
  20. left: 0;
  21. top: 0;
  22. display: inline-block;
  23. height: 94rpx;
  24. line-height: 94rpx;
  25. color: #999999;
  26. font-size: 30rpx;
  27. }
  28. .nav-wrap text.active {
  29. font-weight: 500;
  30. color: #4A6A96;
  31. }
  32. .nav-wrap text.active:after {
  33. position: absolute;
  34. left: 0;
  35. right: 0;
  36. bottom: 0;
  37. content: '';
  38. height: 4rpx;
  39. border-radius: 32px;
  40. background: #4A6A96;
  41. }
  42. .main {
  43. position: absolute;
  44. left: 0;
  45. top: 102rpx;
  46. right: 0;
  47. bottom: 0;
  48. width: 100%;
  49. background: #F6F6F6;
  50. }
  51. .pulldown-wrapper,
  52. .pullup-wrapper {
  53. display: flex;
  54. justify-content: center;
  55. align-items: center;
  56. width: 100%;
  57. height: 60px;
  58. }
  59. .van-loading__text {
  60. color: #969799;
  61. font-size: 14px;
  62. line-height: 20px;
  63. }
  64. .list {
  65. width: 718rpx;
  66. border-radius: 24rpx;
  67. overflow: hidden;
  68. padding: 0 32rpx;
  69. margin: 20rpx auto 0;
  70. background: rgba(255, 255, 255, 1);
  71. }
  72. .list .top {
  73. display: flex;
  74. justify-content: space-between;
  75. align-items: center;
  76. padding: 32rpx 0;
  77. }
  78. .list .add-time {
  79. color: #666666;
  80. font-size: 28rpx;
  81. line-height: 34rpx;
  82. }
  83. .list .status-text {
  84. color: #666666;
  85. font-size: 28rpx;
  86. line-height: 34rpx;
  87. }
  88. .list .status-text.active {
  89. color: #FD6600;
  90. }
  91. .list .middle {
  92. padding-bottom: 40rpx;
  93. }
  94. .list .middle view {
  95. display: flex;
  96. justify-content: space-between;
  97. align-items: center;
  98. }
  99. .list .middle .end {
  100. margin-top: 30rpx;
  101. }
  102. .list .middle .label {
  103. width: 32rpx;
  104. height: 32rpx;
  105. border-radius: 50%;
  106. line-height: 32rpx;
  107. color: #FFFFFF;
  108. font-size: 20rpx;
  109. font-weight: 500;
  110. text-align: center;
  111. }
  112. .list .middle .start .label {
  113. background: #333333;
  114. }
  115. .list .middle .end .label {
  116. background: #FD6600;
  117. }
  118. .list .middle .value {
  119. width: 590rpx;
  120. color: #333333;
  121. font-size: 28rpx;
  122. font-weight: 500;
  123. line-height: 34rpx;
  124. white-space: nowrap;
  125. overflow: hidden;
  126. text-overflow: ellipsis;
  127. }
  128. .list .bottom {
  129. position: relative;
  130. left: 0;
  131. top: 0;
  132. display: flex;
  133. justify-content: flex-end;
  134. align-items: center;
  135. padding: 24rpx 0;
  136. }
  137. .list .bottom button {
  138. margin-left: 24rpx;
  139. }
  140. .list .bottom button:nth-of-type(1) {
  141. margin-left: 0;
  142. }
  143. .list .bottom:before {
  144. position: absolute;
  145. left: 8rpx;
  146. right: 8rpx;
  147. top: 0;
  148. content: '';
  149. border-bottom: 1px solid #EEEEEE;
  150. }
  151. .list .bottom button[type='primary'] {
  152. min-width: 119rpx;
  153. height: 64rpx;
  154. padding: 0 12rpx;
  155. border-radius: 12rpx;
  156. border: 1px solid #E9E9E9;
  157. background-color: #FFFFFF;
  158. color: #333333;
  159. font-size: 24rpx;
  160. }
  161. .list .bottom button.diff-price {
  162. min-width: 96rpx;
  163. border-color: #FD6600;
  164. color: #FD6600;
  165. }