储能智慧云平台web端
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. /* 去除边框 */
  2. .title {
  3. display: flex;
  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. .title_ {
  47. border-right: 2px solid #e7e7e7;
  48. }
  49. .realtime {
  50. margin-top: 20px;
  51. }
  52. .real_time {
  53. display: flex;
  54. justify-content: space-between;
  55. width: 100%;
  56. }
  57. .real_timediv {
  58. box-sizing: border-box;
  59. width: 18.5%;
  60. height: 124px;
  61. // padding: 20px;
  62. // background: #f8f9fb;
  63. // border: 1px solid #e7e7e7;
  64. }
  65. .real_timename {
  66. font-size: 14px;
  67. color: #8b8b8b;
  68. }
  69. .real_timeunit {
  70. margin-top: 20px;
  71. font-size: 28px;
  72. font-weight: 600;
  73. }
  74. .real_timeunitcss {
  75. font-size: 14px;
  76. font-weight: 400;
  77. }
  78. .trend {
  79. display: flex;
  80. width: 100%;
  81. margin-top: 40px;
  82. }
  83. .trend_left {
  84. width: 40%;
  85. }
  86. .trend_leftname {
  87. margin-bottom: 100px;
  88. font-size: 14px;
  89. font-weight: 600;
  90. }
  91. .trend_leftline {
  92. display: flex;
  93. justify-content: center;
  94. width: 100%;
  95. }
  96. .trend_imgdw {
  97. z-index: 9;
  98. margin-right: -20px;
  99. }
  100. .trend_household {
  101. z-index: 9;
  102. margin-left: -20px;
  103. }
  104. .trend_line1 {
  105. width: 6.25vw;
  106. height: 2px;
  107. margin-top: 80px;
  108. background-color: rgb(95 138 255 / 20%);
  109. }
  110. .trend_linec {
  111. width: 6.25vw;
  112. height: 2px;
  113. background: linear-gradient(90deg, transparent 50%, #5f8aff 0) repeat-x;
  114. background-position: 0 0;
  115. background-size: 2.08333333vw 2px;
  116. transform: translateX(0);
  117. animation: move2 4s linear infinite;
  118. }
  119. .trend_line2 {
  120. width: 6.25vw;
  121. height: 2px;
  122. background: linear-gradient(90deg, transparent 50%, #222222 0) repeat-x;
  123. background-position: 0 0;
  124. background-size: 2.08333333vw 2px;
  125. transform: translateX(0);
  126. animation: move2 4s linear infinite;
  127. }
  128. @keyframes move2 {
  129. 100% {
  130. background-position: 6.25vw 0;
  131. }
  132. }
  133. .trend_right {
  134. width: 60%;
  135. }
  136. .trend_chart {
  137. width: 100%;
  138. height: 470px;
  139. }
  140. .trend_Dots {
  141. width: 16px;
  142. height: 16px;
  143. margin-top: 72px;
  144. background-color: #ffffff;
  145. border: 1px solid rgb(0 0 0 / 20%);
  146. border-radius: 50%;
  147. }
  148. .trend_between {
  149. display: flex;
  150. flex-direction: column;
  151. align-items: center;
  152. justify-content: center;
  153. width: 100%;
  154. margin-top: -22px;
  155. }
  156. .trend_electricbox {
  157. margin-top: -20px;
  158. }
  159. .trend_middle {
  160. display: flex;
  161. flex-direction: column;
  162. justify-content: space-between;
  163. width: 2px;
  164. height: 5.72916667vw;
  165. background-color: rgb(8 197 178 / 20%);
  166. }
  167. .trend_middley {
  168. width: 2px;
  169. height: 6.25vw;
  170. background: linear-gradient(180deg, transparent 50%, #08c5b2 0) repeat-y;
  171. background-position: 0 0;
  172. background-size: 2px 2.08333333vw;
  173. transform: translateY(0);
  174. animation: move3 4s linear infinite;
  175. }
  176. @keyframes move3 {
  177. 100% {
  178. background-position: 0 -6.25vw;
  179. }
  180. }
  181. .Boxdiv {
  182. width: 100%;
  183. height: 674px;
  184. overflow: auto;
  185. border: 1px solid #e7e7e7;
  186. }
  187. .Boxdiv_ {
  188. display: flex;
  189. }
  190. .Boxdiv_left {
  191. width: 50%;
  192. border-right: 1px solid #e7e7e7;
  193. }
  194. .Boxdiv_right {
  195. width: 50%;
  196. }
  197. .Boxdiv_bottom {
  198. box-sizing: border-box;
  199. display: flex;
  200. align-items: center;
  201. width: 100%;
  202. height: 48px;
  203. padding-left: 20px;
  204. border-bottom: 1px solid #e7e7e7;
  205. }
  206. .Boxdivradius {
  207. width: 8px;
  208. height: 8px;
  209. margin-right: 8px;
  210. background-color: #00a870;
  211. border-radius: 50%;
  212. }
  213. .realoperation {
  214. width: 100%;
  215. margin-top: 20px;
  216. }
  217. .card-header {
  218. display: flex;
  219. align-items: center;
  220. justify-content: space-between;
  221. }
  222. .grid_divright {
  223. display: flex;
  224. align-items: center;
  225. height: 38px;
  226. }
  227. .grid_divright_1 {
  228. margin-right: 20px;
  229. color: #00a9ff;
  230. cursor: pointer;
  231. }
  232. .grid_divright_2 {
  233. margin-right: 20px;
  234. color: #cccccc;
  235. cursor: pointer;
  236. }
  237. .realoperationdiv {
  238. display: flex;
  239. align-items: center;
  240. }
  241. .realoperationdiv1 {
  242. font-size: 14px;
  243. }
  244. .realoperationdiv2 {
  245. display: flex;
  246. flex: 1;
  247. justify-content: space-around;
  248. padding-right: 20px;
  249. }
  250. .realopscreen1 {
  251. width: 32%;
  252. height: 120px;
  253. border: 1px solid #e7e7e7;
  254. }
  255. .realopscreen1_top {
  256. box-sizing: border-box;
  257. display: flex;
  258. align-items: center;
  259. justify-content: space-around;
  260. width: 100%;
  261. height: 60px;
  262. padding: 0 20px;
  263. background-color: #f1f2f5;
  264. }
  265. .realopscreen1_bottom {
  266. display: flex;
  267. align-items: center;
  268. width: 100%;
  269. height: 60px;
  270. padding-left: 20px;
  271. }
  272. // .el-checkbox__input.is-checked > .el-checkbox__label {
  273. // color: #222222;
  274. // }
  275. :deep(.el-checkbox__label) {
  276. // color: #222222 !important;
  277. }
  278. .gcurve_chart {
  279. box-sizing: border-box;
  280. width: 100%;
  281. height: 470px;
  282. padding: 0 20px;
  283. }
  284. .gcurve_title {
  285. display: flex;
  286. align-items: center;
  287. justify-content: center;
  288. width: 100%;
  289. margin-top: 40px;
  290. }
  291. .gcurve_tip {
  292. width: 14px;
  293. height: 4px;
  294. margin-right: 10px;
  295. background: #f9efee;
  296. border: 1px solid #f4cac6;
  297. }
  298. .gcurve_peak {
  299. width: 14px;
  300. height: 4px;
  301. margin-right: 10px;
  302. margin-left: 20px;
  303. background: #fdfbf9;
  304. border: 1px solid #fbdfc3;
  305. }
  306. .gcurve_flat {
  307. width: 14px;
  308. height: 4px;
  309. margin-right: 10px;
  310. margin-left: 20px;
  311. background: #f6fcff;
  312. border: 1px solid #b5e6ff;
  313. }
  314. .gcurve_valley {
  315. width: 14px;
  316. height: 4px;
  317. margin-right: 10px;
  318. margin-left: 20px;
  319. background: #f8fef9;
  320. border: 1px solid #bee9c5;
  321. }
  322. .income {
  323. width: 100%;
  324. margin-top: 20px;
  325. }
  326. .income_div {
  327. width: 100%;
  328. margin-top: 20px;
  329. font-size: 14px;
  330. border: 1px solid #e7e7e7;
  331. }
  332. .income_title {
  333. box-sizing: border-box;
  334. display: flex;
  335. }
  336. .income_title1 {
  337. display: flex;
  338. align-items: center;
  339. justify-content: center;
  340. width: 120px;
  341. height: 96px;
  342. font-size: 14px;
  343. font-weight: 600;
  344. // color: rgb(44 44 44);
  345. text-align: center;
  346. // background: rgb(241 242 245);
  347. border-right: 1px solid #e7e7e7;
  348. border-bottom: 1px solid #e7e7e7;
  349. }
  350. .income_title2 {
  351. flex: 1;
  352. height: 96px;
  353. // background: #f7faf8 !important;
  354. }
  355. .income_title3 {
  356. flex: 1;
  357. height: 96px;
  358. // background: #f3f6fd !important;
  359. }
  360. .income_title4 {
  361. display: flex;
  362. align-items: center;
  363. justify-content: center;
  364. width: 189px;
  365. height: 96px;
  366. font-size: 14px;
  367. font-weight: 600;
  368. // color: rgb(44 44 44);
  369. text-align: center;
  370. // background: rgb(241 242 245);
  371. border-bottom: 1px solid #e7e7e7;
  372. }
  373. .income_title2_ {
  374. display: flex;
  375. flex: 1;
  376. align-items: center;
  377. justify-content: center;
  378. height: 48px;
  379. border-right: 1px solid #e7e7e7;
  380. }
  381. .income_title2_1 {
  382. display: flex;
  383. width: 100%;
  384. height: 48px;
  385. }
  386. .income_title2_11 {
  387. display: flex;
  388. flex: 1;
  389. align-items: center;
  390. justify-content: center;
  391. border-top: 1px solid #e7e7e7;
  392. border-right: 1px solid #e7e7e7;
  393. }
  394. .income_ul {
  395. display: flex;
  396. width: 100%;
  397. height: 48px;
  398. }
  399. .income_ul_left {
  400. display: flex;
  401. align-items: center;
  402. justify-content: center;
  403. width: 120px;
  404. height: 48px;
  405. border-right: 1px solid #e7e7e7;
  406. border-bottom: 1px solid #e7e7e7;
  407. }
  408. .income_ul_right {
  409. display: flex;
  410. align-items: center;
  411. justify-content: center;
  412. width: 189px;
  413. height: 48px;
  414. border-bottom: 1px solid #e7e7e7;
  415. }
  416. .income_li1 {
  417. flex: 1;
  418. height: 48px;
  419. // background: #f7faf8 !important;
  420. }
  421. .income_li2 {
  422. flex: 1;
  423. height: 48px;
  424. // background: #f3f6fd !important;
  425. }
  426. .Equipmentright {
  427. display: flex;
  428. flex: 1;
  429. align-items: center;
  430. // justify-content: space-around;
  431. justify-content: space-between;
  432. margin-right: 300px;
  433. // position: relative;
  434. // left: 720px;
  435. }
  436. .Equipmenttpye {
  437. box-sizing: border-box;
  438. display: flex;
  439. align-items: center;
  440. width: 100px;
  441. padding: 4px;
  442. font-size: 22px;
  443. color: #40dc1d;
  444. }
  445. .Equipmenttpyes {
  446. box-sizing: border-box;
  447. display: flex;
  448. align-items: center;
  449. width: 100px;
  450. padding: 4px;
  451. font-size: 22px;
  452. color: red;
  453. }
  454. .equipmentborder {
  455. width: 10px;
  456. height: 10px;
  457. margin-right: 8px;
  458. background: #40dc1d;
  459. border-radius: 100px;
  460. animation: twinkle 2s ease-in-out infinite; /* 光点闪烁动画 */
  461. }
  462. .equipmentborderif {
  463. width: 10px;
  464. height: 10px;
  465. margin-right: 8px;
  466. background: red;
  467. border-radius: 100px;
  468. animation: twinkle 2s ease-in-out infinite; /* 光点闪烁动画 */
  469. }
  470. @keyframes twinkle {
  471. 0%,
  472. 100% {
  473. opacity: 0; /* 初始和结束时完全可见 */
  474. transform: scale(1); /* 初始和结束时的大小 */
  475. }
  476. 50% {
  477. opacity: 1; /* 中间状态时不可见 */
  478. transform: scale(1); /* 中间状态时扩散的大小 */
  479. }
  480. }
  481. .equipment {
  482. display: flex;
  483. align-items: center;
  484. }
  485. .Space_content1 {
  486. width: 270px;
  487. }