enter.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /* pages/sorting/enter/enter.wxss */
  2. page {
  3. width: 750rpx;
  4. min-height: 100vh;
  5. background: #F6F6F6;
  6. }
  7. .contioner {
  8. padding: 24rpx;
  9. background: #ffffff;
  10. }
  11. .contioner .title {
  12. font-size: 28rpx;
  13. font-weight: 600;
  14. color: #333333;
  15. }
  16. .contioner .message {
  17. width: 316rpx;
  18. height: 65rpx;
  19. font-size: 24rpx;
  20. color: #999999;
  21. }
  22. .contioner .box {
  23. width: 146rpx;
  24. height: 112rpx;
  25. background: #F8F8F8;
  26. border-radius: 8rpx;
  27. flex-direction: column;
  28. }
  29. .contioner .box .num text {
  30. color: #F23131;
  31. }
  32. .contioner .box .num {
  33. font-size: 36rpx;
  34. font-weight: 600;
  35. color: #333;
  36. }
  37. .contioner .box .tips {
  38. font-size: 24rpx;
  39. color: #999999;
  40. }
  41. .contioner .icon {
  42. width: 28rpx;
  43. height: 28rpx;
  44. margin-right: 8rpx;
  45. }
  46. .contioner .les {
  47. font-size: 24rpx;
  48. color: #52A1FF;
  49. }
  50. .contioner .lrs {
  51. font-size: 24rpx;
  52. color: #F23131;
  53. }
  54. .contioner .left .tit {
  55. font-size: 24rpx;
  56. font-weight: 600;
  57. color: #333333;
  58. }
  59. .contioner .left .content {
  60. font-size: 24rpx;
  61. color: #666666;
  62. }
  63. .contioner .right {
  64. font-size: 24rpx;
  65. color: #F23131;
  66. }
  67. .list {
  68. padding: 24rpx;
  69. }
  70. .list .item {
  71. width: 702rpx;
  72. background: #FFFFFF;
  73. border-radius: 16rpx;
  74. }
  75. .list .item .title {
  76. padding: 32rpx 24rpx;
  77. }
  78. .list .item .title .tit {
  79. font-size: 28rpx;
  80. font-weight: 500;
  81. color: #0F8800;
  82. }
  83. .list .item .title .color {
  84. width: 26rpx;
  85. height: 26rpx;
  86. background: #E4E4E4;
  87. }
  88. .list .item .title .col {
  89. font-size: 26rpx;
  90. color: #999999;
  91. }
  92. .list .item .title .lr {
  93. font-size: 24rpx;
  94. color: #666666;
  95. }
  96. .list .item .boxs {
  97. padding: 24rpx;
  98. font-size: 24rpx;
  99. color: #666666;
  100. position: relative;
  101. }
  102. .list .item .boxs .le {
  103. font-size: 24rpx;
  104. font-weight: 600;
  105. color: #333333;
  106. }
  107. .list .item .boxs .rightTips {
  108. width: 136rpx;
  109. height: 48rpx;
  110. background: #FFE1E1;
  111. border-radius: 24rpx 0px 0px 24rpx;
  112. position: absolute;
  113. right: 0;
  114. top: 50%;
  115. transform: translate(0%, -50%);
  116. }
  117. .list .item .boxs .rightTips .icon {
  118. width: 24rpx;
  119. height: 24rpx;
  120. }
  121. .list .item .footerBox {
  122. padding: 24rpx 0rpx;
  123. }
  124. .list .item .footerBox .foots {
  125. width: 175rpx;
  126. }
  127. .blue {
  128. font-size: 24rpx;
  129. color: #52A1FF;
  130. }
  131. .red {
  132. font-size: 24rpx;
  133. color: #F23131;
  134. }
  135. .list .item .footerBox .icon {
  136. width: 32rpx;
  137. height: 32rpx;
  138. margin-right: 5rpx;
  139. }
  140. .list .item .footerBox .line {
  141. width: 1rpx;
  142. height: 32rpx;
  143. background: #EDEDED;
  144. }
  145. .error {
  146. font-size: 24rpx;
  147. color: #F23131;
  148. }
  149. .footer {
  150. width: 750rpx;
  151. height: 148rpx;
  152. background: #FFFFFF;
  153. border-radius: 24rpx 24rpx 0px 0px;
  154. position: fixed;
  155. left: 0;
  156. bottom: 0;
  157. padding: 30rpx;
  158. }
  159. .footer .btn {
  160. padding: 0rpx 52rpx;
  161. border-radius: 8rpx;
  162. line-height: 88rpx;
  163. font-size: 30rpx;
  164. height: 88rpx;
  165. }
  166. .footer .icon {
  167. width: 32rpx;
  168. height: 32rpx;
  169. }
  170. .btn-border {
  171. border: 1rpx solid #52A1FF;
  172. color: #52A1FF;
  173. }