statistics_A.acss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .top {
  2. width: 100%;
  3. height: 140rpx;
  4. background-color: #26A2FF;
  5. margin-bottom: 70rpx;
  6. color: #fff;
  7. text-align: center;
  8. }
  9. .top image{
  10. width: 36rpx;
  11. height: 36rpx;
  12. margin-right: 10rpx;
  13. position: relative;
  14. top: 6rpx;
  15. }
  16. .dates{
  17. width: 200rpx;
  18. margin: 0 auto;
  19. text-align: center;
  20. }
  21. .head{
  22. position: absolute;
  23. top: 70rpx;
  24. left: 32rpx;
  25. right: 32rpx;
  26. border-radius: 20rpx;
  27. background-color: #fff;
  28. box-shadow: 0 0.04rem 0.12rem 0 rgba(0,0,0,.05);
  29. height: 140rpx;
  30. text-align: center;
  31. }
  32. .head .flex-1 view:nth-child(1){
  33. color: #26A2FF;
  34. font-weight: 600;
  35. margin-bottom: 10rpx;
  36. font-size: 44rpx;
  37. }
  38. .head .flex-1 view:nth-child(2){
  39. color: #C0C4CC;
  40. margin-bottom: 5rpx;
  41. font-size: 28rpx;
  42. }
  43. .headed{
  44. background-color: #fff;
  45. }
  46. .headed-box{
  47. padding:28rpx;
  48. color: #303133;
  49. }
  50. .title{
  51. color: #222;
  52. position: relative;
  53. padding: 0rpx 16rpx 28rpx 16rpx;
  54. font-size: 32rpx;
  55. }
  56. .title::before{
  57. position: absolute;
  58. content: "";
  59. height: 24rpx;
  60. left: 0;
  61. top: 5rpx;
  62. width: 6rpx;
  63. background-color: #26A2FF;
  64. border-radius: 50rpx;
  65. }
  66. .f2-chart {
  67. width: 100%;
  68. height: 400rpx;
  69. }
  70. /* 底部 */
  71. .main{
  72. padding: 28rpx;
  73. background-color: #fff;
  74. }
  75. .list{
  76. padding: 28rpx 0;
  77. border-top: 1px solid #f1f1f1;
  78. }
  79. .text{
  80. margin-right: 10rpx;
  81. color: #303133;
  82. font-size: 32rpx;
  83. }
  84. .main .gengduo image{
  85. width: 24rpx;
  86. height: 24rpx;
  87. position: relative;
  88. top: 4rpx;
  89. }
  90. .gengduo{
  91. color: #303133;
  92. font-size: 32rpx;
  93. }
  94. .num{
  95. font-size: 40rpx;
  96. }
  97. .dates text::after{
  98. position: absolute;
  99. /* position: relative; */
  100. top: 50%;
  101. right: -20rpx;
  102. margin-top: -0.1rem;
  103. border: 0.06rem solid;
  104. border-color: transparent transparent #fff #fff;
  105. -webkit-transform: rotate(-45deg);
  106. transform: rotate(-45deg);
  107. opacity: .8;
  108. content: '';
  109. }
  110. .dates .activeView::after {
  111. margin-top: -0.02rem;
  112. -webkit-transform: rotate(135deg);
  113. transform: rotate(135deg);
  114. border-color: transparent transparent #fff #fff;
  115. }