储能智慧云平台web端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.scss 7.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. // /* */
  2. .title {
  3. margin-bottom: 20px;
  4. :deep(.el-select__wrapper) {
  5. .el-select__prefix {
  6. color: #000000 !important;
  7. }
  8. .el-select__selected-item {
  9. font-size: 22px;
  10. }
  11. background-color: rgb(0 0 0 / 0%);
  12. box-shadow: 0 0 0 0 !important;
  13. --el-input-transparent-border: 0 0 0 0px;
  14. --el-input-hover-border: 0px !important;
  15. --el-input-border: 0px;
  16. // background-color:
  17. }
  18. :deep(.el-select .el-input__wrapper.is-focus) {
  19. box-shadow: 0 0 0 0 !important;
  20. }
  21. :deep(.el-select .el-input.is-focus .el-input__wrapper) {
  22. box-shadow: 0 0 0 0 !important;
  23. }
  24. // 自定义el-select的下拉箭头
  25. :deep(.el-select__caret) {
  26. /* 为下拉小箭头留出一点位置,避免被文字覆盖 */
  27. padding-right: 14px;
  28. /* 很关键:将默认的select选择框样式清除 */
  29. appearance: none;
  30. /* 自定义图片 */
  31. background: url("http://ourjs.github.io/static/2015/arrow.png") no-repeat scroll right center transparent;
  32. /* 自定义图片的大小 */
  33. background-size: 14px 12px;
  34. }
  35. /* 将小箭头的样式去去掉 */
  36. :deep(.el-select__suffix .el-icon svg) {
  37. width: 0;
  38. }
  39. :deep(.el-icon-arrow-up::before) {
  40. content: "";
  41. }
  42. :deep(.el-select--large .el-select__wrapper) {
  43. font-size: 24px;
  44. }
  45. }
  46. .el-row {
  47. margin-bottom: 20px;
  48. }
  49. .el-row:last-child {
  50. margin-bottom: 0;
  51. }
  52. .el-col {
  53. border-radius: 4px;
  54. }
  55. .grid_div {
  56. position: relative;
  57. display: flex;
  58. // align-items: center;
  59. justify-content: space-between;
  60. }
  61. .demo-tabs {
  62. flex: 1;
  63. .grid_div1 {
  64. display: flex;
  65. width: 100%;
  66. }
  67. #income {
  68. flex: 1;
  69. }
  70. }
  71. .grid_divright {
  72. position: absolute;
  73. top: 0;
  74. right: 20px;
  75. display: flex;
  76. align-items: center;
  77. height: 38px;
  78. // padding-top: 10px;
  79. border-bottom: 2px solid #e4e7ed;
  80. }
  81. #baroption {
  82. width: 100%;
  83. height: 460px;
  84. // background-color: #222222;
  85. }
  86. .grid_divright_1 {
  87. margin-right: 20px;
  88. color: #00a9ff;
  89. cursor: pointer;
  90. }
  91. .grid_divright_2 {
  92. margin-right: 20px;
  93. color: #cccccc;
  94. cursor: pointer;
  95. }
  96. .grid_divright_3 {
  97. margin-right: 20px;
  98. color: #cccccc;
  99. }
  100. .grid-content {
  101. min-height: 36px;
  102. padding: 20px;
  103. margin-top: 20px;
  104. // background-color: #ffffff;
  105. border-radius: 8px;
  106. .overview_title1 {
  107. width: 100%;
  108. height: 40px;
  109. }
  110. .overview_title {
  111. display: flex;
  112. justify-content: space-between;
  113. width: 100%;
  114. height: 80px;
  115. .overview_title_name {
  116. font-size: 14px;
  117. font-weight: 500;
  118. }
  119. .overview_img {
  120. box-sizing: border-box;
  121. display: flex;
  122. align-items: center;
  123. justify-content: center;
  124. width: 80px;
  125. height: 80px;
  126. padding-bottom: 10px;
  127. overflow: hidden;
  128. background-color: #edffe6;
  129. border-radius: 100%;
  130. img {
  131. width: 50px;
  132. height: 50px;
  133. }
  134. }
  135. .overview_img1 {
  136. display: flex;
  137. align-items: center;
  138. justify-content: center;
  139. width: 80px;
  140. height: 80px;
  141. overflow: hidden;
  142. background-color: #f6e6ff;
  143. border-radius: 100%;
  144. img {
  145. width: 50px;
  146. height: 50px;
  147. }
  148. }
  149. .overview_img2 {
  150. display: flex;
  151. align-items: center;
  152. justify-content: center;
  153. width: 80px;
  154. height: 80px;
  155. overflow: hidden;
  156. background-color: #d8efff;
  157. border-radius: 100%;
  158. img {
  159. width: 50px;
  160. height: 50px;
  161. }
  162. }
  163. .overview_img3 {
  164. display: flex;
  165. align-items: center;
  166. justify-content: center;
  167. width: 80px;
  168. height: 80px;
  169. overflow: hidden;
  170. background-color: #fff1e6;
  171. border-radius: 100%;
  172. img {
  173. width: 50px;
  174. height: 50px;
  175. }
  176. }
  177. .overview_titlename {
  178. font-size: 32px;
  179. font-weight: 700;
  180. .overview_unit {
  181. font-size: 14px;
  182. font-weight: 500;
  183. color: #cccccc;
  184. }
  185. }
  186. }
  187. .overview_line {
  188. font-size: 14px;
  189. }
  190. }
  191. .grid_right {
  192. display: flex;
  193. align-items: center;
  194. justify-content: space-between;
  195. width: 100%;
  196. height: 40px;
  197. font-size: 16px;
  198. border-bottom: 1px solid #e8e8e8;
  199. .grid_right1 {
  200. font-size: 12px;
  201. cursor: pointer;
  202. }
  203. }
  204. .gridpiechart {
  205. width: 100%;
  206. height: 280px;
  207. margin-top: 30px;
  208. overflow: hidden;
  209. }
  210. .gridpiechartimg {
  211. width: 100%;
  212. }
  213. .gridpiechartname {
  214. margin-top: 20px;
  215. margin-bottom: 10px;
  216. font-size: 18px;
  217. font-weight: 600;
  218. }
  219. .gridpiechartdiv {
  220. display: flex;
  221. align-items: center;
  222. justify-content: space-between;
  223. margin-top: 10px;
  224. }
  225. .gridpiechartnameright {
  226. font-size: 14px;
  227. color: #8b8b8b;
  228. }
  229. .gridpiechartnameleft {
  230. display: flex;
  231. align-items: center;
  232. font-size: 14px;
  233. }
  234. .gridpiechartnameleft1 {
  235. display: flex;
  236. align-items: center;
  237. width: 200px; /* 内容宽度超过容器 */
  238. overflow: hidden; /* 隐藏溢出内容 */
  239. font-size: 14px;
  240. white-space: nowrap; /* 不换行 */
  241. }
  242. .home {
  243. display: flex;
  244. align-items: center;
  245. justify-content: center;
  246. width: 100%;
  247. height: 100%;
  248. .home-bg {
  249. width: 70%;
  250. max-width: 1200px;
  251. margin-bottom: 20px;
  252. }
  253. }
  254. /* stylelint-disable-next-line no-duplicate-selectors */
  255. .title {
  256. display: flex;
  257. align-items: center;
  258. font-size: 18px;
  259. }
  260. .title_time {
  261. margin-left: 10px;
  262. font-size: 16px;
  263. }
  264. .demo-tabs > .el-tabs__content {
  265. padding: 32px;
  266. font-size: 32px;
  267. font-weight: 600;
  268. color: #6b778c;
  269. }
  270. .example_block {
  271. display: flex;
  272. justify-content: right;
  273. width: 100%;
  274. margin-top: 20px;
  275. }
  276. .cardtable {
  277. display: flex;
  278. align-items: center;
  279. margin-bottom: 20px;
  280. }
  281. .card-header {
  282. font-weight: 600;
  283. }
  284. .middle {
  285. display: flex;
  286. justify-content: space-between;
  287. width: 100%;
  288. margin-bottom: 20px;
  289. overflow: hidden;
  290. border-radius: 8px;
  291. }
  292. .middleleft {
  293. width: 100%;
  294. height: 665px;
  295. // background-color: #ffffff;
  296. }
  297. .middleright {
  298. width: 100%;
  299. height: 665px;
  300. // background-color: #ffffff;
  301. }
  302. .middlelefttop {
  303. box-sizing: border-box;
  304. display: flex;
  305. align-items: center;
  306. justify-content: space-between;
  307. width: 100%;
  308. height: 65px;
  309. padding: 0;
  310. border-bottom: 1px solid #e8e8e8;
  311. }
  312. .middleleftchart {
  313. box-sizing: border-box;
  314. width: 100%;
  315. height: 600px;
  316. padding-left: 20px;
  317. margin-top: 20px;
  318. }
  319. .middle_divright {
  320. display: flex;
  321. align-items: center;
  322. height: 38px;
  323. }
  324. .middle_divright_1 {
  325. margin-right: 20px;
  326. color: #00a9ff;
  327. }
  328. .middle_divright_2 {
  329. margin-right: 20px;
  330. color: #cccccc;
  331. }
  332. .dialog {
  333. display: flex;
  334. margin-top: 20px;
  335. }
  336. .information {
  337. display: flex;
  338. align-items: center;
  339. justify-content: center;
  340. width: 88px;
  341. height: 30px;
  342. font-weight: 600;
  343. color: #0c7aec;
  344. background: #f2f3f5;
  345. border: none;
  346. /* stylelint-disable-next-line number-max-precision */
  347. border-radius: 0.20833333vw;
  348. }
  349. .more {
  350. display: flex;
  351. align-items: center;
  352. justify-content: center;
  353. width: 88px;
  354. height: 30px;
  355. /* stylelint-disable-next-line number-max-precision */
  356. border-radius: 0.20833333vw;
  357. }
  358. .more_img {
  359. display: flex;
  360. margin-top: 20px;
  361. }
  362. .dialogimg {
  363. width: 300px;
  364. height: 150px;
  365. }
  366. .dialog_title {
  367. display: flex;
  368. margin-top: 20px;
  369. }
  370. .more_name {
  371. color: #777777;
  372. }
  373. .more_theme {
  374. color: #000000;
  375. }
  376. .dialog_footer {
  377. display: flex;
  378. align-items: center;
  379. justify-content: center;
  380. width: 100%;
  381. margin-top: 20px;
  382. margin-bottom: 20px;
  383. }
  384. .dialog_name {
  385. border-right: 1px solid rgb(0 0 0 / 5%);
  386. }
  387. // 日期 尖 峰 平 股