number.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /* pages/number/number.wxss */
  2. page{
  3. padding: 0;
  4. background: #F1F4F6;
  5. }
  6. .top{
  7. display: flex;
  8. padding: 40rpx;
  9. background: -webkit-linear-gradient(bottom, #F1F4F6, #73BFFF);
  10. }
  11. .top>image{
  12. width: 30%;
  13. margin-right: 30rpx;
  14. }
  15. .name{
  16. color: #fff;
  17. font-size: 36rpx;
  18. height: 120rpx;
  19. }
  20. .code{
  21. color: #fff;
  22. font-size: 30rpx;
  23. }
  24. .tab{
  25. margin-top: 50rpx;
  26. display: flex;
  27. /* justify-content: space-between; */
  28. padding: 0 20rpx;
  29. }
  30. .tab text{
  31. color: #666;
  32. font-size: 36rpx;
  33. margin-right: 40rpx;
  34. }
  35. .tab .active{
  36. color: #3780CD;
  37. border-bottom: 2px solid #3780CD;
  38. padding-bottom: 20rpx;
  39. }
  40. .today{
  41. width: 90%;
  42. margin: 20rpx auto;
  43. background: #fff;
  44. border-radius: 20rpx;
  45. padding: 0 20rpx;
  46. display: flex;
  47. justify-content: space-between;
  48. box-shadow: 0 0 15px rgba(0, 0, 0, .2)
  49. }
  50. .today view{
  51. font-size: 30rpx;
  52. color: #333;
  53. font-weight: bold;
  54. line-height: 100rpx;
  55. }
  56. .today text{
  57. font-size: 24rpx;
  58. color: #666;
  59. line-height: 100rpx;
  60. }
  61. .tab1{
  62. text-align: center;
  63. border-bottom: 1px solid #DBDBDB;
  64. }
  65. .tab1 view{
  66. display: inline-block;
  67. margin: 0 40rpx;
  68. line-height: 100rpx;
  69. }
  70. .tab1 .active{
  71. color: #3780CD;
  72. border-bottom: 2px solid #3780CD;
  73. }
  74. .content{
  75. padding: 20rpx;
  76. }
  77. .content view{
  78. line-height: 56rpx;
  79. color: #666;
  80. }
  81. .container {
  82. position: relative;
  83. display: flex;
  84. flex-direction: column;
  85. align-items: center;
  86. justify-content: space-between;
  87. box-sizing: border-box;
  88. background: #fff;
  89. margin-bottom: 16rpx;
  90. }
  91. ec-canvas {
  92. width: 100%;
  93. height: 400rpx;
  94. }
  95. swiper{
  96. height: 70vh;
  97. overflow: auto;
  98. }
  99. .today1{
  100. width: 100%;
  101. margin: 20rpx auto;
  102. background: #fff;
  103. border-radius: 20rpx;
  104. padding:30rpx 20rpx 20rpx;
  105. display: flex;
  106. justify-content: space-between;
  107. box-shadow: 0 0 15px rgba(0, 0, 0, .2);
  108. text-align: center;
  109. }
  110. .today1 view text{
  111. display: block;
  112. }
  113. .title{
  114. margin: 50rpx 0 0;
  115. font-size: 36rpx;
  116. font-weight: bold;
  117. }
  118. .nums{
  119. display: flex;
  120. justify-content: space-between;
  121. text-align: center;
  122. margin: 40rpx 0;
  123. }
  124. .nums>view{
  125. padding: 20rpx;
  126. width: 31%;
  127. border-radius: 8rpx;
  128. }
  129. .nums .active{
  130. background: #C5E1FF;
  131. }
  132. .nums view view{
  133. font-size: 50rpx;
  134. font-weight: bold;
  135. margin: 10rpx 0;
  136. }
  137. .nums view text{
  138. font-size: 28rpx;
  139. color: #4795FF;
  140. }
  141. .today image{
  142. width: 20rpx;
  143. height: 20rpx;
  144. }
  145. .today1 image{
  146. width: 20rpx;
  147. height: 20rpx;
  148. }