avg.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /* pages/avg/avg.wxss */
  2. .title{
  3. margin-left: 20rpx;
  4. margin-top: 20rpx;
  5. font-size: 34rpx;
  6. }
  7. .title_1{
  8. margin-left: 20rpx;
  9. margin-top: 20rpx;
  10. font-size: 30rpx;
  11. }
  12. .info{
  13. margin-top: 5rpx;
  14. margin-left: 20rpx;
  15. font-size: 26rpx;
  16. color: rgb(128, 128, 128);
  17. }
  18. .tab{
  19. background: #fff;
  20. margin-top: 16rpx;
  21. /* padding:0 10rpx; */
  22. margin-left: 20rpx;
  23. display: flex;
  24. border-bottom: 1px solid #f2f2f2;
  25. }
  26. .tab view{
  27. font-size: 30rpx;
  28. color: #333;
  29. line-height: 80rpx;
  30. transition: all .1s linear;
  31. margin-right:20rpx;
  32. }
  33. .tab .act{
  34. color: #FF583D;
  35. border-bottom: 2px solid #FF583D;
  36. font-size: 32rpx;
  37. }
  38. .content{
  39. font-size: 30rpx;
  40. font-weight: 500;
  41. }
  42. .container {
  43. position: relative;
  44. display: flex;
  45. flex-direction: column;
  46. align-items: center;
  47. justify-content: space-between;
  48. box-sizing: border-box;
  49. height: 50vh;
  50. background: #fff;
  51. z-index: 9;
  52. }
  53. ec-canvas {
  54. width: 100%;
  55. height: 100%;
  56. position: relative;
  57. z-index: 99;
  58. }
  59. .imgs,.content{
  60. margin-bottom: 20rpx;
  61. background: #fff;
  62. padding: 30rpx;
  63. position: relative;
  64. }
  65. .month{
  66. text-align: right;
  67. position: absolute;
  68. right: 30rpx;
  69. top: 30rpx;
  70. }
  71. .month>image{
  72. height: 40rpx;
  73. display: inline-block;
  74. vertical-align: middle;
  75. }
  76. picker{
  77. display: inline-block;
  78. vertical-align: middle;
  79. margin: 0 20rpx;
  80. }
  81. .date-picker{
  82. font-size: 36rpx;
  83. font-weight: 500;
  84. }
  85. .date-picker image{
  86. height: 24rpx;
  87. }
  88. .day{
  89. display: flex;
  90. justify-content: space-between;
  91. padding: 10rpx;
  92. background: #f5f5f5;
  93. margin: 20rpx 0;
  94. }
  95. .day text{
  96. color: #999;
  97. width: 14%;
  98. text-align: center;
  99. }
  100. .days{
  101. display: flex;
  102. flex-wrap: wrap;
  103. /* justify-content: space-between; */
  104. }
  105. .days view{
  106. width: 14%;
  107. text-align: center;
  108. font-weight: 500;
  109. height: 96rpx;
  110. /* margin-bottom: 10rpx; */
  111. }
  112. .days text{
  113. display: block;
  114. color: #666;
  115. font-size: 20rpx;
  116. position: relative;
  117. top: -5rpx;
  118. font-weight: 400;
  119. }
  120. .days view view{
  121. width: 100% !important;
  122. }
  123. .days view view text{
  124. color: #fff;
  125. }
  126. .down1{
  127. background: #07B20B;
  128. color: #fff;
  129. }
  130. .up1{
  131. background: #E90001;
  132. color: #fff;
  133. }
  134. .week_view{
  135. padding-top: 50rpx;
  136. /* padding: 20rpx; */
  137. padding-left: 20rpx;
  138. padding-bottom: 200rpx;
  139. }
  140. .yk{
  141. display: flex;
  142. justify-content: space-between;
  143. font-size: 24rpx;
  144. }
  145. .week_name{
  146. width: 15%;
  147. padding: 12px 0;
  148. font-size: 26rpx;
  149. }
  150. .week_total{
  151. width: 15%;
  152. text-align: center;
  153. padding: 10rpx 0;
  154. }
  155. .week_incom{
  156. width: 70%;
  157. display: flex;
  158. }
  159. .week_incom>view{
  160. padding: 10rpx 0;
  161. width: 100rpx;
  162. text-align: center;
  163. /* border: 1px solid red; */
  164. }
  165. .week_incom text{
  166. display: block;
  167. color: #fff;
  168. }
  169. .week_incom .down{
  170. background-color: #07B20B;
  171. color: #fff !important;
  172. }
  173. .week_incom .up{
  174. background-color: #E90001;
  175. color: #fff !important;
  176. }
  177. .week_incom .none{
  178. background-color: #a3a3a3;
  179. /* color: #fff !important; */
  180. }