SimulateDetail.less 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. .box {
  2. display: flex;
  3. }
  4. .title {
  5. padding-left: 20px;
  6. height: 56px;
  7. width: 100%;
  8. font-size: 24px;
  9. // color: #fff;
  10. line-height: 56px;
  11. // background: url('@/assets/newUI/theadBg.png') no-repeat center;
  12. background-size: 100% 100%;
  13. }
  14. .listBox {
  15. width: 33%;
  16. height: 100%;
  17. margin-right: 40px;
  18. display: flex;
  19. flex-direction: column;
  20. max-width: 220px;
  21. :global {
  22. .ant-empty {
  23. margin-left: -30px;
  24. }
  25. }
  26. }
  27. .list {
  28. flex: 1;
  29. overflow-y: auto;
  30. }
  31. .listItem {
  32. display: block !important;
  33. text-align: center;
  34. margin-bottom: 5px;
  35. // color: #fff;
  36. font-size: 20px;
  37. cursor: pointer;
  38. border-bottom: 1px solid rgba(153, 231, 255, 0.4);
  39. }
  40. .listItemActive {
  41. .listItem;
  42. background: #40a9ff !important;
  43. }
  44. .tabs {
  45. display: flex;
  46. width: 72%;
  47. align-items: center;
  48. .item {
  49. padding: 4px 20px;
  50. border: 1px solid #02a7f0;
  51. border-left: none;
  52. font-size: 20px;
  53. cursor: pointer;
  54. max-height: 40px;
  55. width: 100%;
  56. white-space: nowrap;
  57. &:nth-child(1) {
  58. border-left: 1px solid #02a7f0;
  59. }
  60. &.active {
  61. background-color: #02a7f0;
  62. }
  63. }
  64. .left {
  65. // background: url('@/assets/newUI/left.png') no-repeat center;
  66. background-size: 100% 100%;
  67. width: 31px;
  68. height: 32px;
  69. margin-right: 12px;
  70. cursor: pointer;
  71. }
  72. .right {
  73. // background: url('@/assets/newUI/right.png') no-repeat center;
  74. background-size: 100% 100%;
  75. width: 31px;
  76. height: 32px;
  77. margin-left: 12px;
  78. cursor: pointer;
  79. }
  80. .content {
  81. display: flex;
  82. width: 90%;
  83. overflow-x: hidden;
  84. }
  85. }
  86. .chartBox {
  87. width: 100%;
  88. height: 100%;
  89. padding: 28px 32px;
  90. :global {
  91. .ant-select-selection-item {
  92. line-height: 60px !important;
  93. font-size: 30px !important;
  94. }
  95. .ant-select-selector {
  96. height: 60px !important;
  97. }
  98. }
  99. }
  100. .chartBoxTop {
  101. display: flex;
  102. justify-content: space-between;
  103. align-items: center;
  104. margin-bottom: 30px;
  105. }
  106. .dateTabs {
  107. display: flex;
  108. border: 1px solid #d5d5d5;
  109. height: 60px;
  110. .dateTabsItem {
  111. width: 128px;
  112. text-align: center;
  113. cursor: pointer;
  114. border-right: 1px solid #d5d5d5;
  115. line-height: 60px;
  116. font-size: 24px;
  117. font-weight: 400;
  118. color: #4a4a4a;
  119. &:last-child {
  120. border-right: none;
  121. }
  122. &.active {
  123. background: #4a90e2;
  124. color: #fff;
  125. }
  126. }
  127. }
  128. .optimization {
  129. background-color: rgba(245, 166, 35, 0.08);
  130. padding: 20px 30px;
  131. margin-top: 24px;
  132. .title1 {
  133. font-size: 28px;
  134. font-weight: 400;
  135. color: #4a4a4a;
  136. line-height: 38px;
  137. margin-bottom: 20px;
  138. }
  139. .title2 {
  140. padding: 6px 20px;
  141. background: rgba(245, 166, 35, 0.35);
  142. font-size: 28px;
  143. font-weight: 400;
  144. color: #4a4a4a;
  145. line-height: 38px;
  146. margin-bottom: 12px;
  147. }
  148. .content {
  149. font-size: 28px;
  150. font-weight: 400;
  151. color: #4a4a4a;
  152. line-height: 38px;
  153. padding-left: 20px;
  154. margin-bottom: 10px;
  155. }
  156. }