index.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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: 0px 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. }
  90. .leveSt {
  91. padding-top: 40px;
  92. color: #140050;
  93. font-weight: 500;
  94. line-height: 12px;
  95. }
  96. .ruleBox {
  97. display: flex;
  98. justify-content: center;
  99. padding: 20px 0;
  100. .ruleImg {
  101. width: 305px;
  102. height: 96px;
  103. }
  104. }
  105. .noNum {
  106. color: #c4c4c4;
  107. line-height: 220px;
  108. text-align: center;
  109. }
  110. }