cheap.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. html,
  2. body {
  3. height: 100%;
  4. font-family: PingFangSC-Regular;
  5. color: #333333;
  6. background: #ffffff;
  7. overflow-x: hidden;
  8. }
  9. .tab {
  10. width: 100%;
  11. box-sizing: border-box;
  12. padding: 28rpx 120rpx 0;
  13. background: #ffffff;
  14. font-size: 32rpx;
  15. color: #666666;
  16. text-align: center;
  17. position: fixed;
  18. top: 0;
  19. z-index: 999;
  20. }
  21. .tab > view:first-child {
  22. width: 100%;
  23. display: flex;
  24. justify-content: space-between;
  25. }
  26. .tab > view:first-child > view {
  27. padding: 0 12rpx 28rpx;
  28. }
  29. .tab .selected {
  30. color: #3296fb;
  31. }
  32. .tab .blueLine {
  33. width: 120rpx;
  34. height: 4rpx;
  35. border-radius: 2rpx;
  36. background: #3296fb;
  37. position: absolute;
  38. transition: all 1s;
  39. }
  40. .tips {
  41. width: 100%;
  42. background: #F1F8FF;
  43. box-sizing: border-box;
  44. padding-left: 30rpx;
  45. line-height: 100rpx;
  46. font-size: 24rpx;
  47. color: #666666;
  48. display: flex;
  49. }
  50. .tips .red {
  51. color: #FF5E5E;
  52. }
  53. .card {
  54. width: 200%;
  55. height: 100%;
  56. overflow-x: hidden;
  57. display: flex;
  58. box-sizing: border-box;
  59. padding-top: 100rpx;
  60. }
  61. .col {
  62. width: 750rpx;
  63. display: flex;
  64. justify-content: space-between;
  65. }
  66. .contentNull{
  67. width: 100%;
  68. height: 100%;
  69. position: relative;
  70. }
  71. .contentNull>view{
  72. position: absolute;
  73. top: 332rpx;
  74. left: 222rpx;
  75. display:flex;
  76. flex-direction:column;
  77. }
  78. .contentNull image{
  79. width: 308rpx;
  80. height: 308rpx;
  81. }
  82. .contentNull>view>text{
  83. color: #9197A3;
  84. font-size: 28rpx;
  85. text-align: center;
  86. }
  87. .cItem {
  88. padding: 30rpx 30rpx 0;
  89. }
  90. .cItem > .cardItem {
  91. width: 690rpx;
  92. height: 200rpx;
  93. margin-bottom: 28rpx;
  94. display: flex;
  95. }
  96. .cItem > .cardItem > .left {
  97. width: 220rpx;
  98. height: 200rpx;
  99. background-image: linear-gradient(-179deg, #21bfd5 3%, #2c8fd8 100%);
  100. color: #ffffff;
  101. display: flex;
  102. flex-direction: column;
  103. align-items: center;
  104. border-bottom-left-radius: 4rpx;
  105. border-top-left-radius: 4rpx;
  106. }
  107. .unuse > .cardItem > .left {
  108. background-image: linear-gradient(-180deg, #d2d2d2 0%, #b4b4b4 100%);
  109. }
  110. .cItem > .cardItem > .left > view {
  111. margin-top: 34rpx;
  112. }
  113. .cItem > .cardItem > .left > view > text:first-child {
  114. font-family: DINAlternate-Bold;
  115. font-size: 17px;
  116. }
  117. .cItem > .cardItem > .left > view > text:last-child {
  118. font-family: DINAlternate-Bold;
  119. font-size: 80rpx;
  120. }
  121. .cItem > .cardItem > .left > text {
  122. font-size: 20rpx;
  123. }
  124. .cItem > .cardItem > .right {
  125. flex: 1;
  126. box-sizing: border-box;
  127. padding: 30rpx 32rpx;
  128. display: flex;
  129. justify-content: space-between;
  130. align-items: center;
  131. box-shadow: 2rpx 4rpx 16rpx #dedede;
  132. border-bottom-right-radius: 4rpx;
  133. border-top-right-radius: 4rpx;
  134. }
  135. .cItem > .cardItem > .right image {
  136. width: 48rpx;
  137. height: 48rpx;
  138. }
  139. .cItem > .cardItem > .right > view {
  140. display: flex;
  141. flex-direction: column;
  142. justify-content: space-between;
  143. font-family: SFProText-Regular;
  144. font-size: 24rpx;
  145. color: #999999;
  146. }
  147. .cItem > .cardItem > .right > view > text {
  148. margin-bottom: 10rpx;
  149. }
  150. .cItem > .cardItem > .right > view > text:first-child {
  151. font-size: 30rpx;
  152. color: #666666;
  153. }
  154. .btnBox,
  155. .btnBox-X {
  156. width: 100%;
  157. height: 100rpx;
  158. background: #ffffff;
  159. box-sizing: border-box;
  160. padding: 0 32rpx;
  161. position: fixed;
  162. bottom: 0;
  163. z-index: 100;
  164. }
  165. .btnBox-X {
  166. height: 168rpx;
  167. }
  168. .btn {
  169. height: 90rpx;
  170. background: #3296fb;
  171. border-radius: 45rpx;
  172. color: #ffffff;
  173. font-family: PingFangSC-Medium;
  174. font-size: 32rpx;
  175. text-align: center;
  176. line-height: 90rpx;
  177. }
  178. .empty {
  179. height: 90rpx;
  180. }
  181. .empty-X {
  182. height: 158rpx;
  183. }