bsrl.wxss 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. /* pages/minePages/bsrl/bsrl.wxss */
  2. page {
  3. width: 100%;
  4. height: 100vh;
  5. background: linear-gradient(to bottom, #4794FF 260rpx, #F6F9FD 260rpx);
  6. }
  7. .link-box {
  8. position: absolute;
  9. top: 0;
  10. left: 0;
  11. z-index: 5;
  12. padding: 0 184rpx;
  13. width: 100%;
  14. height: 72rpx;
  15. box-sizing: border-box;
  16. display: flex;
  17. justify-content: space-between;
  18. }
  19. .link {
  20. width: 22rpx;
  21. height: 100%;
  22. border-radius: 11rpx;
  23. border: 1px solid #4794ff;
  24. background: #ffffff;
  25. box-sizing: border-box;
  26. }
  27. .bsrl-container {
  28. margin: 50rpx 32rpx;
  29. width: calc(100% - 64rpx);
  30. height: calc(100% - 100rpx);
  31. background: #ffffff;
  32. border-radius: 30rpx;
  33. box-shadow: 0px 0px 28rpx 0px rgba(0, 0, 0, 0.12);
  34. }
  35. .date-box {
  36. padding-top: 52rpx;
  37. padding-bottom: 30rpx;
  38. margin: 0 25rpx;
  39. width: calc(100% - 50rpx);
  40. border-bottom: 1px solid #c8c8c8;
  41. }
  42. .date-title {
  43. padding: 0 20rpx;
  44. width: 100%;
  45. height: 45rpx;
  46. display: flex;
  47. justify-content: space-between;
  48. box-sizing: border-box;
  49. }
  50. .date-title-left,
  51. .date-title-right {
  52. width: 45rpx;
  53. height: 45rpx;
  54. border-radius: 50%;
  55. display: flex;
  56. align-items: center;
  57. justify-content: center;
  58. }
  59. .date-title-left>image,
  60. .date-title-right>image {
  61. width: 100%;
  62. height: auto;
  63. }
  64. .date-title-left>image {
  65. rotate: 180deg;
  66. }
  67. .date-title-center {
  68. position: relative;
  69. width: 0;
  70. flex: 1;
  71. height: 100%;
  72. }
  73. .date-title-center-text {
  74. width: 100%;
  75. height: 100%;
  76. font-size: 32rpx;
  77. line-height: 45rpx;
  78. font-family: "苹方M";
  79. color: #3B3B3B;
  80. display: flex;
  81. align-items: center;
  82. justify-content: center;
  83. }
  84. .date-title-center-back {
  85. position: absolute;
  86. top: 2.5rpx;
  87. z-index: 5;
  88. right: 50rpx;
  89. width: 100rpx;
  90. height: 40rpx;
  91. font-size: 20rpx;
  92. font-family: "苹方R";
  93. color: #989898;
  94. display: flex;
  95. align-items: center;
  96. justify-content: center;
  97. border-radius: 20rpx;
  98. border: 0.7px solid #989898;
  99. }
  100. .date-title-hover {
  101. opacity: 0.6;
  102. }
  103. .date-week {
  104. padding: 0 10rpx;
  105. margin: 10rpx 0;
  106. width: 100%;
  107. height: 70rpx;
  108. display: flex;
  109. align-items: center;
  110. justify-content: space-between;
  111. box-sizing: border-box;
  112. }
  113. .week {
  114. min-width: 70rpx;
  115. max-width: 70rpx;
  116. height: 70rpx;
  117. line-height: 70rpx;
  118. font-size: 26rpx;
  119. color: #8E99A4;
  120. font-family: "苹方R";
  121. text-align: center;
  122. }
  123. .date-day {
  124. padding: 0 10rpx;
  125. margin: 10rpx 0;
  126. width: 100%;
  127. height: 70rpx;
  128. display: flex;
  129. align-items: center;
  130. justify-content: space-between;
  131. box-sizing: border-box;
  132. }
  133. .day {
  134. min-width: 70rpx;
  135. max-width: 70rpx;
  136. height: 70rpx;
  137. font-size: 26rpx;
  138. color: #3B3B3B;
  139. font-family: "苹方M";
  140. border-radius: 50%;
  141. box-sizing: border-box;
  142. transition: all 0.35s;
  143. border: 2px solid #ffffff00;
  144. display: flex;
  145. align-items: center;
  146. justify-content: center;
  147. }
  148. .day-not {
  149. color: #C8C8C8;
  150. }
  151. .day-selected {
  152. color: #4794FF;
  153. border: 2px solid #4794FF;
  154. box-shadow: 0px 6rpx 12rpx 0px #b8d6ff;
  155. }
  156. .day-now {
  157. position: relative;
  158. color: #FFFFFF;
  159. background: #4794FF;
  160. }
  161. .day-now::before {
  162. content: "";
  163. position: absolute;
  164. bottom: 2rpx;
  165. left: calc(50% - 6rpx);
  166. width: 12rpx;
  167. height: 12rpx;
  168. background: #00EF9E;
  169. border-radius: 50%;
  170. }
  171. .tabbar {
  172. margin: 0 40rpx;
  173. padding-top: 20rpx;
  174. padding-bottom: 16rpx;
  175. width: calc(100% - 80rpx);
  176. height: 48rpx;
  177. display: flex;
  178. align-items: center;
  179. justify-content: space-between;
  180. }
  181. .tab {
  182. position: relative;
  183. width: 40%;
  184. height: 100%;
  185. font-size: 26rpx;
  186. color: #8E99A4;
  187. font-family: "苹方M";
  188. display: flex;
  189. align-items: center;
  190. justify-content: center;
  191. transition: 0.35s;
  192. }
  193. .tab-active::before {
  194. content: "";
  195. position: absolute;
  196. bottom: 0;
  197. left: calc(50% - 13rpx);
  198. width: 26rpx;
  199. height: 6rpx;
  200. border-radius: 3rpx;
  201. background: #336FE900;
  202. transition: 0.35s;
  203. }
  204. .tab-active {
  205. color: #336FE9;
  206. }
  207. .tab-active::before {
  208. background: #336FE9;
  209. }
  210. .detail {
  211. margin: 0 25rpx;
  212. width: calc(100% - 50rpx);
  213. height: calc(100% - 791rpx);
  214. background: #f4f7ff;
  215. border-radius: 30rpx;
  216. }
  217. .dayDetail-box,
  218. .monthDetail-box {
  219. padding: 30rpx 50rpx;
  220. box-sizing: border-box;
  221. }
  222. .dayDetail {
  223. position: relative;
  224. padding-left: 20rpx;
  225. font-size: 26rpx;
  226. color: #3B3B3B;
  227. font-family: "苹方R";
  228. line-height: 39rpx;
  229. box-sizing: border-box;
  230. }
  231. .dayDetail::before {
  232. position: absolute;
  233. left: 0;
  234. top: 14.5rpx;
  235. content: "";
  236. width: 10rpx;
  237. height: 10rpx;
  238. border-radius: 50%;
  239. background: #4794FF;
  240. }
  241. .monthDetail {
  242. display: flex;
  243. align-items: flex-start;
  244. }
  245. .monthDetail-date {
  246. width: 150rpx;
  247. font-size: 26rpx;
  248. line-height: 39rpx;
  249. text-align: left;
  250. color: #3B3B3B;
  251. font-family: "苹方R";
  252. }
  253. .monthDetail-content {
  254. position: relative;
  255. padding-left: 30rpx;
  256. width: 0;
  257. flex: 1;
  258. font-size: 26rpx;
  259. line-height: 39rpx;
  260. color: #3B3B3B;
  261. font-family: "苹方R";
  262. border-left: 1px solid #4794ff;
  263. }
  264. .monthDetail-content::before {
  265. position: absolute;
  266. left: -6.5rpx;
  267. top: 13.5rpx;
  268. content: "";
  269. width: 12rpx;
  270. height: 12rpx;
  271. border-radius: 50%;
  272. background: #4794FF;
  273. }