statistics.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /* pages/statistics/statistics.wxss */
  2. page {
  3. background: #f4f4f4;
  4. }
  5. .date {
  6. width: 90%;
  7. margin: 20rpx auto;
  8. background: #fff;
  9. padding: 20rpx 10rpx;
  10. box-sizing: border-box;
  11. border-radius: 10rpx;
  12. position: relative;
  13. }
  14. .date text {
  15. font-size: 26rpx;
  16. }
  17. .dates {
  18. background: linear-gradient(-86deg, rgba(24, 213, 185, 1) 0%, rgba(89, 240, 202, 1) 100%);
  19. border-radius: 26rpx 0px 0px 26rpx;
  20. position:absolute;
  21. top:0rpx;
  22. right:0rpx;
  23. color:#fff;
  24. font-size:26rpx;
  25. padding:7rpx 20rpx;
  26. }
  27. .search {
  28. text-align: center;
  29. }
  30. .search text {
  31. font-size: 26rpx;
  32. color: #fff;
  33. background: #18d5b9;
  34. padding: 8rpx 20rpx;
  35. border-radius: 10rpx;
  36. }
  37. .list {
  38. margin: 20rpx auto;
  39. width: 90%;
  40. }
  41. .income, .bike {
  42. border: 1rpx solid #efefef;
  43. font-size: 28rpx;
  44. border-radius: 10rpx;
  45. padding: 20rpx;
  46. margin-top: 15rpx;
  47. background: #fff;
  48. position: relative;
  49. }
  50. .bike>view {
  51. display: flex;
  52. justify-content: space-between;
  53. align-items: center;
  54. }
  55. .income .title text {
  56. font-size: 28rpx;
  57. margin-bottom: 20rpx;
  58. }
  59. /* .income view{
  60. font-size:26rpx;
  61. margin-bottom:10rpx;
  62. } */
  63. .flex {
  64. display: flex;
  65. }
  66. .flex text {
  67. width: 50%;
  68. font-size: 26rpx;
  69. margin-bottom: 10rpx;
  70. color: #808080;
  71. }
  72. /* 日历 */
  73. .calendar {
  74. color: #666;
  75. position: absolute;
  76. top: 50%;
  77. left: 50%;
  78. transform: translate(-50%, -50%);
  79. width: 90%;
  80. margin: 0 auto;
  81. z-index: 9999;
  82. border: 2rpx solid #38acff;
  83. -webkit-box-shadow: 0 0 10rpx #38acff;
  84. -moz-box-shadow: 0 0 10rpx #38acff;
  85. box-shadow: 0 0 10rpx #38acff;
  86. border-radius: 15rpx;
  87. box-sizing: border-box;
  88. padding: 20rpx 30rpx;
  89. background: #fff;
  90. }
  91. .title {
  92. padding: 20rpx 0;
  93. align-items: center;
  94. justify-content: space-between;
  95. }
  96. .week {
  97. padding: 20rpx 0;
  98. border-radius: 20rpx 20rpx 0 0;
  99. }
  100. .weekday {
  101. margin-right: 1%;
  102. width: 13.28%;
  103. text-align: center;
  104. }
  105. .days {
  106. padding: 10rpx 0;
  107. flex-wrap: wrap;
  108. }
  109. .day {
  110. position: relative;
  111. margin: 0;
  112. padding: 0;
  113. height: 90rpx;
  114. width: 14.28%;
  115. text-align: center;
  116. border-radius: 10rpx;
  117. background: #fff;
  118. cursor: pointer;
  119. }
  120. .circle {
  121. margin: 0 auto;
  122. width: 100%;
  123. height: 90rpx;
  124. line-height: 90rpx;
  125. font-size: 26rpx;
  126. }
  127. .sign {
  128. color: #fff;
  129. background: #18d5b9;
  130. border-radius: 50%;
  131. }
  132. .now {
  133. color: #fff;
  134. background: #708eff;
  135. border-radius: 50%;
  136. }
  137. .flex-box {
  138. display: flex;
  139. }
  140. .state {
  141. position: absolute;
  142. top: 0rpx;
  143. right: 0rpx;
  144. background: linear-gradient(163deg, rgba(24, 213, 185, 1) 0%, rgba(89, 240, 202, 1) 100%);
  145. box-shadow: 0px 0px 6rpx 0px rgba(24, 213, 185, 1);
  146. border-radius: 0px 2rpx 0px 20rpx;
  147. padding: 5rpx 30rpx;
  148. color: #fff;
  149. }