pass.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. .date-show{
  2. position: relative;
  3. /* width: 250rpx; */
  4. font-family: PingFang-SC-Regular;
  5. font-size: 40rpx;
  6. color: #282828;
  7. height: 60rpx;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. }
  12. .lt-arrow,.rt-arrow{
  13. position: absolute;
  14. top: 1rpx;
  15. width: 60rpx;
  16. height: 60rpx;
  17. padding-right: 0.6rem;
  18. }
  19. .date-show image{
  20. width: 40rpx;
  21. height: 40rpx;
  22. margin: 0 40rpx;
  23. }
  24. .lt-arrow{
  25. /* left: -110rpx; */
  26. /* transform: rotate(180deg); */
  27. }
  28. .rt-arrow{
  29. right: -100rpx;
  30. }
  31. .header{
  32. font-size: 0;
  33. padding: 0 24rpx;
  34. }
  35. .header>view{
  36. display: inline-block;
  37. width: 14.285%;
  38. color: #333;
  39. font-size: 30rpx;
  40. text-align: center;
  41. border-bottom: 1px solid #D0D0D0;
  42. padding: 39rpx 0;
  43. }
  44. .weekMark{
  45. position: relative;
  46. }
  47. .weekMark view{
  48. position: absolute;
  49. bottom: 0;
  50. left: 0;
  51. width: 100%;
  52. border-bottom: 1px solid #22A7F6;
  53. }
  54. .date-box{
  55. font-size: 0;
  56. padding: 10rpx 0;
  57. }
  58. .date-box>view{
  59. position: relative;
  60. display: inline-block;
  61. width: 14.285%;
  62. color: #020202;
  63. font-size: 40rpx;
  64. text-align: center;
  65. vertical-align: middle;
  66. margin: 15rpx 0;
  67. }
  68. .date-head{
  69. height: 60rpx;
  70. line-height: 60rpx;
  71. font-size: 26rpx;
  72. }
  73. .nowDay .date-head{
  74. width: 60rpx;
  75. border-radius: 50%;
  76. text-align: center;
  77. color: #fff;
  78. background-color: #6282f4;
  79. margin: 0 auto;
  80. }
  81. .date-weight{
  82. font-size: 22rpx;
  83. padding: 15rpx 0;
  84. }
  85. .nowDay .date-weight{
  86. color: #22A7F6;
  87. }
  88. .one{
  89. position: absolute;
  90. bottom: 0;
  91. right: 5rpx;
  92. width: 20rpx;
  93. height: 20rpx;
  94. border-radius: 50%;
  95. background-color: red;
  96. }
  97. .two{
  98. position: absolute;
  99. bottom: 30rpx;
  100. right: 5rpx;
  101. width: 20rpx;
  102. height: 20rpx;
  103. border-radius: 50%;
  104. background-color: blue;
  105. }
  106. /* 列表 */
  107. .list{
  108. background: #f5f5f5;
  109. width: 100%;
  110. padding: 20rpx 0rpx;
  111. }
  112. .line{
  113. width: 690rpx;
  114. height: 166rpx;
  115. margin: 0 auto;
  116. border-radius: 10rpx;
  117. background: #fff;
  118. display: flex;
  119. flex-direction: column;
  120. margin-top: 20rpx;
  121. }
  122. .line-top{
  123. display: flex;
  124. margin-top: 40rpx;
  125. height: 50rpx;
  126. align-items: center;
  127. }
  128. .line-ps{
  129. width: 12rpx;
  130. height: 12rpx;
  131. border-radius: 50%;
  132. margin-left: 30rpx;
  133. }
  134. .line-data{
  135. font-size: 36rpx;
  136. color: #333;
  137. margin-left: 20rpx;
  138. }
  139. .line-title{
  140. color: #6282f4;
  141. font-size: 30rpx;
  142. margin-left: 30rpx;
  143. }
  144. .line-bottom{
  145. display: flex;
  146. height: 40rpx;
  147. margin-top: 20rpx;
  148. align-items: center;
  149. }
  150. .line-bottom image{
  151. width: 25rpx;
  152. height: 28rpx;
  153. margin-left: 60rpx;
  154. }
  155. .line-bottom view{
  156. font-size: 30rpx;
  157. color: #666;
  158. margin-left: 10rpx;
  159. }
  160. .nodata{
  161. text-align: center;
  162. margin: 30rpx 0rpx;
  163. }