avg.wxss 1.8 KB

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