index.less 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. .main {
  2. // height: 680px;
  3. background-color: #fff;
  4. border-radius: 20px;
  5. .header {
  6. position: relative;
  7. z-index: 1;
  8. display: flex;
  9. align-items: center;
  10. height: 90px;
  11. padding: 0 40px;
  12. background: #f3f3f3;
  13. border-radius: 20px 20px 0 0;
  14. }
  15. .close {
  16. position: absolute;
  17. top: 15px;
  18. right: 15px;
  19. z-index: 2;
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. width: 36px;
  24. height: 36px;
  25. color: #c4c4c4;
  26. font-size: 20px;
  27. border-radius: 100%;
  28. cursor: pointer;
  29. transition: background-color 0.1s cubic-bezier(0.075, 0.82, 0.165, 1);
  30. &:hover {
  31. background-color: #fff;
  32. }
  33. }
  34. .title {
  35. color: #000;
  36. font-weight: 600;
  37. font-size: 20px;
  38. }
  39. .content {
  40. padding: 0 50px;
  41. .navigator {
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. height: 110px;
  46. .nitem {
  47. width: 80px;
  48. height: 40px;
  49. margin: 0 6px;
  50. color: #c4c4c4;
  51. font-size: 18px;
  52. line-height: 40px;
  53. text-align: center;
  54. cursor: pointer;
  55. &.sel {
  56. color: #fff;
  57. background-color: #00dc23;
  58. }
  59. }
  60. }
  61. .chart {
  62. height: 220px;
  63. }
  64. }
  65. .foot {
  66. display: flex;
  67. margin-top: 47px;
  68. .l {
  69. width: 65px;
  70. height: 86px;
  71. color: #000;
  72. font-size: 18px;
  73. line-height: 86px;
  74. text-align: center;
  75. background: rgba(0, 220, 35, 0.2);
  76. border-radius: 5px;
  77. }
  78. .r {
  79. flex: 1;
  80. padding-left: 22px;
  81. color: #4d5262;
  82. line-height: 22px;
  83. text-align: justify;
  84. }
  85. }
  86. .chartText {
  87. padding: 10px 0;
  88. color: #c4c4c4;
  89. text-align: center;
  90. }
  91. .leveSt {
  92. padding-top: 40px;
  93. color: #140050;
  94. font-weight: 500;
  95. line-height: 12px;
  96. }
  97. .ruleBox {
  98. display: flex;
  99. justify-content: center;
  100. padding: 20px 0;
  101. .ruleImg {
  102. width: 305px;
  103. height: 96px;
  104. }
  105. }
  106. .noNum {
  107. color: #c4c4c4;
  108. line-height: 220px;
  109. text-align: center;
  110. }
  111. .legend {
  112. position: absolute;
  113. left: 50%;
  114. display: flex;
  115. justify-content: center;
  116. transform: translateX(-50%);
  117. }
  118. .itemLegend {
  119. display: flex;
  120. align-items: center;
  121. margin-right: 20px;
  122. }
  123. .linebox {
  124. display: inline-block;
  125. box-sizing: border-box;
  126. width: 10px;
  127. height: 1px;
  128. margin-right: 10px;
  129. border-top: 2px solid #5ad8a6;
  130. }
  131. .lineTdb {
  132. border-top: 2px solid #5b8ff9;
  133. }
  134. }