avg.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /* pages/avg/avg.wxss */
  2. .title{
  3. margin-left: 20rpx;
  4. margin-top: 20rpx;
  5. font-size: 34rpx;
  6. }
  7. .info{
  8. margin-top: 5rpx;
  9. margin-left: 20rpx;
  10. font-size: 28rpx;
  11. color: rgb(128, 128, 128);
  12. }
  13. .tab{
  14. background: #fff;
  15. margin-top: 16rpx;
  16. padding:0 20rpx;
  17. display: flex;
  18. border-bottom: 1px solid #f2f2f2;
  19. }
  20. .tab view{
  21. font-size: 28rpx;
  22. color: #333;
  23. line-height: 80rpx;
  24. transition: all .1s linear;
  25. margin-right: 30rpx;
  26. }
  27. .tab .act{
  28. color: #FF583D;
  29. border-bottom: 2px solid #FF583D;
  30. font-size: 32rpx;
  31. }
  32. .content{
  33. font-size: 30rpx;
  34. font-weight: 500;
  35. }
  36. .container {
  37. position: relative;
  38. display: flex;
  39. flex-direction: column;
  40. align-items: center;
  41. justify-content: space-between;
  42. box-sizing: border-box;
  43. height: 50vh;
  44. background: #fff;
  45. z-index: 9;
  46. }
  47. ec-canvas {
  48. width: 100%;
  49. height: 100%;
  50. position: relative;
  51. z-index: 99;
  52. }
  53. .imgs,.content{
  54. margin-bottom: 20rpx;
  55. background: #fff;
  56. padding: 30rpx;
  57. position: relative;
  58. }
  59. .month{
  60. text-align: right;
  61. position: absolute;
  62. right: 30rpx;
  63. top: 30rpx;
  64. }
  65. .month>image{
  66. height: 40rpx;
  67. display: inline-block;
  68. vertical-align: middle;
  69. }
  70. picker{
  71. display: inline-block;
  72. vertical-align: middle;
  73. margin: 0 20rpx;
  74. }
  75. .date-picker{
  76. font-size: 36rpx;
  77. font-weight: 500;
  78. }
  79. .date-picker image{
  80. height: 24rpx;
  81. }
  82. .day{
  83. display: flex;
  84. justify-content: space-between;
  85. padding: 10rpx;
  86. background: #f5f5f5;
  87. margin: 20rpx 0;
  88. }
  89. .day text{
  90. color: #999;
  91. width: 14%;
  92. text-align: center;
  93. }
  94. .days{
  95. display: flex;
  96. flex-wrap: wrap;
  97. /* justify-content: space-between; */
  98. }
  99. .days view{
  100. width: 14%;
  101. text-align: center;
  102. font-weight: 500;
  103. height: 96rpx;
  104. /* margin-bottom: 10rpx; */
  105. }
  106. .days text{
  107. display: block;
  108. color: #666;
  109. font-size: 20rpx;
  110. position: relative;
  111. top: -5rpx;
  112. font-weight: 400;
  113. }
  114. .days view view{
  115. width: 100% !important;
  116. }
  117. .days view view text{
  118. color: #fff;
  119. }
  120. .down1{
  121. background: #07B20B;
  122. color: #fff;
  123. }
  124. .up1{
  125. background: #E90001;
  126. color: #fff;
  127. }