index.vue 22 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183
  1. <template>
  2. <div :class="$store.state.themeName === 'light' ? 'home_light' : 'home'">
  3. <div class="top-mid-panel">
  4. <Map ref="map"></Map>
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. import Map from "./components/map.vue";
  10. export default {
  11. name: "Home",
  12. data() {
  13. return {};
  14. },
  15. components: {
  16. Map,
  17. },
  18. };
  19. </script>
  20. <style lang="less">
  21. .top-distance {
  22. // top: 97px !important;
  23. }
  24. .el-col + .el-col {
  25. padding-left: 0;
  26. }
  27. .home {
  28. width: 100%;
  29. height: 100%;
  30. background: url('~@/assets/newHome_h.png');
  31. background-repeat: round;
  32. .date {
  33. display: flex;
  34. flex-direction: row;
  35. align-items: center;
  36. font-size: 12px;
  37. font-family: Microsoft YaHei;
  38. font-weight: 400;
  39. color: #b3b3b3;
  40. position: absolute;
  41. right: 0;
  42. top: -20px;
  43. .day {
  44. display: flex;
  45. align-items: center;
  46. justify-content: center;
  47. width: 30px;
  48. height: 22px;
  49. border: 1px solid #0f5e30;
  50. border-radius: 11px 0px 0px 11px;
  51. background: rgba(67, 81, 107, 0.2);
  52. &.active {
  53. background: rgba(5, 187, 76, 0.4);
  54. color: #ffffff;
  55. }
  56. }
  57. .mouth {
  58. display: flex;
  59. align-items: center;
  60. justify-content: center;
  61. width: 30px;
  62. height: 22px;
  63. border-top: 1px solid #0f5e30;
  64. border-bottom: 1px solid #0f5e30;
  65. background: rgba(67, 81, 107, 0.2);
  66. &.active {
  67. background: rgba(5, 187, 76, 0.4);
  68. color: #ffffff;
  69. }
  70. }
  71. .year {
  72. display: flex;
  73. align-items: center;
  74. justify-content: center;
  75. width: 30px;
  76. height: 22px;
  77. border: 1px solid #0f5e30;
  78. border-radius: 0px 11px 11px 0px;
  79. background: rgba(67, 81, 107, 0.2);
  80. &.active {
  81. background: rgba(5, 187, 76, 0.4);
  82. color: #ffffff;
  83. }
  84. }
  85. }
  86. @keyframes safe_power {
  87. 0% {
  88. transform: translateX(-100px);
  89. }
  90. 100% {
  91. transform: translateX(0);
  92. }
  93. }
  94. .safe_power {
  95. animation: safe_power 1.5s linear;
  96. }
  97. .sx-left-box {
  98. padding-left: 30px;
  99. position: relative;
  100. // z-index: 6;
  101. max-width: 650px;
  102. }
  103. .security-days {
  104. // position: absolute;
  105. // top: 65px;
  106. // left: 37px;
  107. // font-weight: 400;
  108. // z-index: 4;
  109. .text {
  110. font-size: 20px;
  111. font-family: Microsoft YaHei;
  112. margin-bottom: 12px;
  113. color: #ffffff;
  114. }
  115. .num {
  116. font-size: 35px;
  117. font-family: Bicubik;
  118. color: #05bb4c;
  119. .unit {
  120. font-size: 12px;
  121. font-family: Microsoft YaHei;
  122. margin-left: 5px;
  123. }
  124. }
  125. .security {
  126. margin-top: 15px;
  127. .unit-t {
  128. font-size: 14px;
  129. font-family: Adobe Heiti Std;
  130. color: #05bb4c;
  131. margin-left: 5px;
  132. }
  133. }
  134. .lineBox {
  135. .fd-rl,
  136. .gf-rl {
  137. font-size: 14px;
  138. font-family: Microsoft YaHei;
  139. color: #ffffff;
  140. .font-num {
  141. font-size: 16px;
  142. font-family: Bicubik;
  143. color: #05bb4c;
  144. margin: 0 5px;
  145. }
  146. .unit {
  147. font-size: 12px;
  148. color: #5e6269;
  149. }
  150. }
  151. .gf-rl {
  152. margin-top: 12px;
  153. .font-num {
  154. color: #ff8300;
  155. }
  156. }
  157. }
  158. }
  159. .qjny-info {
  160. // width: 406px;
  161. background: rgba(0, 0, 0, 0.3);
  162. border-radius: 8px;
  163. margin-top: 20px;
  164. position: relative;
  165. padding: 20px 10px;
  166. z-index: 5;
  167. // left: 37px;
  168. .qty_img {
  169. position: relative;
  170. left: -39px;
  171. top: -16px;
  172. animation: move 1s infinite linear;
  173. }
  174. .qty_content {
  175. margin-top: -25px;
  176. }
  177. ul {
  178. display: flex;
  179. li {
  180. width: 170px;
  181. height: 170px;
  182. margin-left: 20px;
  183. line-height: 30px;
  184. }
  185. .line {
  186. border-right: 1px dashed #252e43;
  187. width: 1px;
  188. margin-left: 0;
  189. margin-right: 5px;
  190. }
  191. }
  192. .qty_tit {
  193. font-size: 14px;
  194. position: relative;
  195. left: 75px;
  196. bottom: 50px;
  197. color: #999999;
  198. .qty_u {
  199. position: relative;
  200. top: 23px;
  201. left: -38px;
  202. }
  203. }
  204. .qty_value {
  205. font-size: 14px;
  206. position: relative;
  207. top: 26px;
  208. left: -54px;
  209. color: #05bb4c;
  210. font-family: "AgencyFB-Reg";
  211. font-weight: bold;
  212. .qty_u {
  213. font-size: 12px;
  214. color: #999999;
  215. margin-left: 20px;
  216. }
  217. }
  218. .qty_imag {
  219. font-size: 14px;
  220. color: #999999;
  221. .qty_val {
  222. font-family: "AgencyFB-Reg";
  223. font-weight: bold;
  224. color: #ffffff;
  225. margin: 0 20px;
  226. }
  227. .qty_unit {
  228. font-size: 12px;
  229. color: #999999;
  230. }
  231. }
  232. .qty_imag:first-of-type {
  233. margin-top: 10px;
  234. }
  235. }
  236. .switch-jrqk {
  237. position: absolute;
  238. top: 40%;
  239. left: 80%;
  240. backdrop-filter: blur(5px);
  241. z-index: 5;
  242. font-size: 16px;
  243. color: #fff;
  244. background: rgba(0, 0, 0, 0.3);
  245. border-radius: 8px;
  246. padding: 20px 10px;
  247. border: 1px solid #05bb4c;
  248. > div {
  249. margin-bottom: 10px;
  250. > img {
  251. display: inline-block;
  252. margin-right: 10px;
  253. vertical-align: -4%;
  254. }
  255. }
  256. }
  257. .ecoName {
  258. width: 406px;
  259. height: 138px;
  260. margin-top: 30px;
  261. background: rgba(0, 0, 0, 0.3);
  262. border-radius: 8px;
  263. // top: 570px;
  264. // position: absolute;
  265. z-index: 4;
  266. // left: 37px;
  267. .ecoTitle {
  268. width: 350px;
  269. height: 45px;
  270. border-bottom: 1px solid #252e43;
  271. margin: 0 auto;
  272. font-size: 16px;
  273. font-weight: 400;
  274. color: #ffffff;
  275. line-height: 45px;
  276. position: relative;
  277. span {
  278. position: absolute;
  279. right: 0;
  280. font-size: 12px;
  281. font-family: Source Han Sans SC;
  282. color: #b1b1b1;
  283. }
  284. }
  285. ul {
  286. display: flex;
  287. text-align: center;
  288. width: 350px;
  289. height: 92px;
  290. margin: 0 auto;
  291. justify-content: space-between;
  292. align-items: center;
  293. .eco_count {
  294. line-height: 23px;
  295. width: 25%;
  296. .kind {
  297. height: 23px;
  298. text-align: center;
  299. svg {
  300. width: 40px;
  301. height: 40px;
  302. margin-top: -10px;
  303. }
  304. }
  305. .eco_val {
  306. font-size: 14px;
  307. font-family: SourceHanSansCN;
  308. color: #ffffff;
  309. &.text-ellipsis {
  310. overflow: hidden;
  311. white-space: nowrap;
  312. text-overflow: ellipsis;
  313. -o-text-overflow: ellipsis;
  314. }
  315. }
  316. .eco_name {
  317. font-size: 12px;
  318. color: #b3b3b3;
  319. }
  320. }
  321. }
  322. }
  323. .my_echarts {
  324. width: 600px;
  325. height: 250px;
  326. margin-top: 30px;
  327. background: rgba(0, 0, 0, 0.3);
  328. border-radius: 6px;
  329. // position: absolute;
  330. // top: 730px;
  331. // left: 37px;
  332. z-index: 4;
  333. }
  334. @keyframes card {
  335. 0% {
  336. right: -100px;
  337. }
  338. 100% {
  339. right: 37px;
  340. }
  341. }
  342. .sx-right-box {
  343. position: absolute;
  344. right: 37px;
  345. width: 434px;
  346. top: 67px;
  347. z-index: 5;
  348. animation: card 1.5s linear;
  349. }
  350. .card {
  351. background: rgba(0, 0, 0, 0.3);
  352. padding: 25px;
  353. }
  354. .wind_card {
  355. z-index: 5;
  356. height: 158px;
  357. margin-bottom: 30px;
  358. .el-col {
  359. flex: 1;
  360. position: relative;
  361. }
  362. .grid-content {
  363. text-align: center;
  364. cursor: pointer;
  365. font-size: 14px;
  366. .img {
  367. position: relative;
  368. width: 84px;
  369. height: 84px;
  370. background: url("~@/assets/imgs/instrumentPanel.png") no-repeat;
  371. img {
  372. position: absolute;
  373. top: 50%;
  374. left: 50%;
  375. transform: rotateZ(360deg);
  376. transform-origin: left top;
  377. }
  378. .information {
  379. font-size: 14px;
  380. color: #2b99ff;
  381. font-family: "Arial";
  382. position: absolute;
  383. width: 100%;
  384. top: 32px;
  385. }
  386. > .unit {
  387. width: 100%;
  388. color: #7d838c;
  389. text-align: center;
  390. position: absolute;
  391. top: 65px;
  392. }
  393. p {
  394. position: absolute;
  395. left: 50%;
  396. bottom: -27%;
  397. white-space: nowrap;
  398. transform: translateX(-50%);
  399. }
  400. }
  401. }
  402. }
  403. .electric_card {
  404. height: 320px;
  405. position: relative;
  406. margin-bottom: 30px;
  407. .el-row.fdl-wrapper {
  408. align-items: center;
  409. .power-div {
  410. width: 100%;
  411. .power-name {
  412. color: #999999;
  413. }
  414. }
  415. .el-col:first-child {
  416. text-align: right;
  417. margin-right: 10px;
  418. color: #b3b3b3;
  419. }
  420. .el-col:last-child {
  421. text-align: left;
  422. margin-left: 10px;
  423. font-size: 14px;
  424. font-family: "Arial";
  425. }
  426. }
  427. .el-row:nth-child(2) {
  428. .electric {
  429. .progress_bar {
  430. background: linear-gradient(90deg, #561f00, #853000, #f78712);
  431. .img {
  432. background: url("~@/assets/imgs/generatingCapacityDay.png")
  433. no-repeat;
  434. }
  435. }
  436. .count {
  437. color: #ff8300;
  438. }
  439. }
  440. }
  441. .el-header {
  442. display: flex;
  443. height: 30px;
  444. justify-content: flex-end;
  445. .title {
  446. font-size: 16px;
  447. font-family: "SourceHanSansSC-Regular";
  448. }
  449. .unit {
  450. color: #b1b1b1;
  451. }
  452. }
  453. .summarize {
  454. position: absolute;
  455. bottom: 0;
  456. margin-bottom: 0;
  457. margin-left: -25px;
  458. width: 100%;
  459. height: 80px;
  460. background-color: rgba(0, 0, 0, 0.2);
  461. border-bottom-left-radius: 8px;
  462. border-bottom-right-radius: 8px;
  463. color: #b3b3b3;
  464. padding: 0 35px;
  465. justify-content: space-between;
  466. align-items: center;
  467. .summarize-left {
  468. text-align: left !important;
  469. cursor: pointer;
  470. }
  471. .summarize-right {
  472. text-align: left !important;
  473. cursor: pointer;
  474. }
  475. p:last-child {
  476. margin-top: 8px;
  477. span:first-child {
  478. font-size: 18px;
  479. color: #ffffff;
  480. display: inline-block;
  481. width: 110px;
  482. text-align: left;
  483. font-family: "Arial";
  484. }
  485. }
  486. .line {
  487. width: 1px;
  488. height: 48px;
  489. background: #252e43;
  490. }
  491. }
  492. }
  493. .station_card {
  494. height: 302px;
  495. top: 557px;
  496. right: 37px;
  497. padding: 24px 14px;
  498. color: #7d838c;
  499. z-index: 5;
  500. > .card_header {
  501. line-height: 48px;
  502. .el-col:first-child {
  503. img {
  504. margin-right: 30px;
  505. vertical-align: -10%;
  506. }
  507. span {
  508. font-size: 20px;
  509. color: #05bb4c;
  510. display: inline-block;
  511. width: 70px;
  512. font-family: Arial;
  513. line-height: 33px;
  514. }
  515. }
  516. .el-col:last-child {
  517. text-align: right;
  518. span {
  519. padding: 0 6px;
  520. font-size: 20px;
  521. text-align: center;
  522. font-family: AgencyFB-Reg-Light;
  523. color: #ffffff;
  524. line-height: 33px;
  525. }
  526. }
  527. }
  528. > .el-row:last-child {
  529. border: none;
  530. margin-bottom: 0;
  531. }
  532. }
  533. .infos-echarts {
  534. padding: 10px;
  535. background-color: rgba(3, 5, 9, 0.5);
  536. }
  537. .model-bg-new-right {
  538. width: 100%;
  539. min-height: 135px;
  540. background-color: rgba(3, 5, 9, 0.5);
  541. border-radius: 6px;
  542. display: flex;
  543. flex-direction: column;
  544. // padding: 1% 5%;
  545. .power-charts {
  546. display: flex;
  547. flex-direction: row;
  548. align-items: flex-end;
  549. width: 100%;
  550. margin-top: 10px;
  551. .power-name-old {
  552. width: 80px;
  553. margin-bottom: 10px;
  554. color: #999999;
  555. }
  556. .power-name {
  557. width: 80px;
  558. margin-bottom: 20px;
  559. color: #999999;
  560. }
  561. .power-item {
  562. display: flex;
  563. flex-direction: column;
  564. width: 360px;
  565. .power-value-old {
  566. display: flex;
  567. flex-direction: row;
  568. align-items: center;
  569. justify-content: space-between;
  570. margin-bottom: -12px;
  571. padding: 0 15px;
  572. .green-value {
  573. color: #05bb4c;
  574. }
  575. .purple-value {
  576. color: #4b55ae;
  577. }
  578. }
  579. .power-value {
  580. font-size: 12px;
  581. margin-bottom: -31px;
  582. font-family: Bicubik;
  583. margin-left: 255px;
  584. span:nth-child(1) {
  585. width: 5px;
  586. height: 5px;
  587. border-radius: 5px;
  588. display: inline-block;
  589. background-color: #fff;
  590. margin-right: 5px;
  591. }
  592. .green-value {
  593. color: #05bb4c;
  594. }
  595. .purple-value {
  596. color: #4b55ae;
  597. }
  598. }
  599. }
  600. }
  601. .infos {
  602. display: flex;
  603. flex-direction: column;
  604. width: 50%;
  605. height: 100%;
  606. width: 100%;
  607. .titles {
  608. display: flex;
  609. flex-direction: row;
  610. align-items: center;
  611. justify-content: space-between;
  612. // padding: 0 15px;
  613. height: 50%;
  614. .amount {
  615. display: flex;
  616. flex-direction: row;
  617. align-items: center;
  618. .amount-image {
  619. margin-left: -42px;
  620. }
  621. .amount-nums {
  622. font-size: 12px;
  623. color: #7d838c;
  624. margin-left: 10px;
  625. display: flex;
  626. flex-direction: row;
  627. align-items: baseline;
  628. .num-item {
  629. font-size: 20px;
  630. color: #ffffff;
  631. margin-right: 5px;
  632. }
  633. }
  634. }
  635. .info-nums {
  636. display: flex;
  637. align-items: baseline;
  638. font-size: 14px;
  639. color: #7d838c;
  640. .nums {
  641. font-size: 20px;
  642. color: #ffffff;
  643. margin: 0 5px;
  644. }
  645. }
  646. }
  647. .tabSwitchover {
  648. // height: 23px;
  649. margin-top: 5px;
  650. .tabSwitchover-item {
  651. width: 42px;
  652. line-height: 23px;
  653. text-align: center;
  654. color: #b3b3b3;
  655. float: left;
  656. cursor: pointer;
  657. }
  658. .tab-active {
  659. border-bottom: 1px solid rgb(39, 219, 54);
  660. background: linear-gradient(
  661. to top,
  662. rgba(5, 187, 76, 0.5),
  663. rgba(5, 187, 76, 0)
  664. );
  665. }
  666. .unit {
  667. text-align: right;
  668. color: #b1b1b1;
  669. font-size: 12px;
  670. // float: right;
  671. }
  672. }
  673. .types {
  674. display: flex;
  675. flex-direction: row;
  676. align-items: center;
  677. height: 50%;
  678. width: 100%;
  679. margin-top: 15px;
  680. padding-bottom: 10px;
  681. border-bottom: 1px solid #302c2c;
  682. .type-model {
  683. display: flex;
  684. flex-direction: column;
  685. justify-content: space-between;
  686. align-items: center;
  687. width: 16%;
  688. // height: 75%;
  689. font-size: 16px;
  690. .type-name {
  691. font-size: 14px;
  692. font-family: Agency FB;
  693. margin-bottom: 10px;
  694. }
  695. .type-num {
  696. height: 15px;
  697. }
  698. }
  699. }
  700. }
  701. }
  702. .base-info {
  703. height: 186px;
  704. background: rgba(3, 5, 9, 0.5);
  705. position: absolute;
  706. bottom: 4%;
  707. left: 43px;
  708. display: flex;
  709. flex-direction: row;
  710. border-radius: 6px;
  711. .charts {
  712. width: 100%;
  713. height: 100%;
  714. position: relative;
  715. margin-left: 1%;
  716. .energy-title {
  717. // margin-left: 2%;
  718. margin-top: 1%;
  719. font-size: 16px;
  720. color: #fff;
  721. }
  722. .dots {
  723. width: 0.185vh;
  724. height: 0.185vh;
  725. border-radius: 50%;
  726. background-color: @write;
  727. position: absolute;
  728. &.left {
  729. left: 0.37vh;
  730. }
  731. &.top {
  732. top: 0.37vh;
  733. }
  734. }
  735. .charts-item {
  736. // margin-left: 5%;
  737. margin-top: 10px;
  738. }
  739. }
  740. }
  741. .model-bg-new {
  742. width: 100%;
  743. min-height: 135px;
  744. background-color: rgba(3, 5, 9, 0.5);
  745. border-radius: 6px;
  746. display: flex;
  747. flex-direction: column;
  748. padding: 10px;
  749. .titles {
  750. height: 45px;
  751. border-bottom: 1px solid #333333;
  752. display: flex;
  753. flex-direction: row;
  754. align-items: center;
  755. justify-content: space-between;
  756. .name {
  757. font-size: 16px;
  758. color: #ffffff;
  759. }
  760. .unit {
  761. font-size: 12px;
  762. color: #b1b1b1;
  763. }
  764. }
  765. .save {
  766. display: flex;
  767. flex-direction: row;
  768. align-items: center;
  769. width: 100%;
  770. margin: 17px 0;
  771. .save-item {
  772. width: 25%;
  773. display: flex;
  774. flex-direction: column;
  775. align-items: center;
  776. .kind {
  777. width: 20px;
  778. height: 22px;
  779. .kind-img {
  780. width: 100%;
  781. height: 100%;
  782. }
  783. }
  784. .save-value {
  785. font-size: 16px;
  786. color: #ffffff;
  787. margin: 10px 0;
  788. }
  789. .save-name {
  790. font-size: 12px;
  791. color: #b3b3b3;
  792. }
  793. }
  794. }
  795. }
  796. .model-bg {
  797. width: 100%;
  798. min-height: 135px;
  799. // background-color: rgba(3, 5, 9, 0.5);
  800. border-radius: 6px;
  801. display: flex;
  802. flex-direction: column;
  803. padding: 1% 5%;
  804. .titles {
  805. height: 45px;
  806. border-bottom: 1px solid #333333;
  807. display: flex;
  808. flex-direction: row;
  809. align-items: center;
  810. justify-content: space-between;
  811. .name {
  812. font-size: 16px;
  813. color: #ffffff;
  814. }
  815. .unit {
  816. font-size: 12px;
  817. color: #b1b1b1;
  818. }
  819. }
  820. .save {
  821. display: flex;
  822. flex-direction: row;
  823. align-items: center;
  824. width: 100%;
  825. margin: 17px 0;
  826. .save-item {
  827. width: 25%;
  828. display: flex;
  829. flex-direction: column;
  830. align-items: center;
  831. .kind {
  832. width: 20px;
  833. height: 22px;
  834. .kind-img {
  835. width: 100%;
  836. height: 100%;
  837. }
  838. }
  839. .save-value {
  840. font-size: 16px;
  841. color: #ffffff;
  842. margin: 10px 0;
  843. }
  844. .save-name {
  845. font-size: 12px;
  846. color: #b3b3b3;
  847. }
  848. }
  849. }
  850. }
  851. }
  852. .right {
  853. width: 450px;
  854. // height: 100px;
  855. position: absolute;
  856. right: 25px;
  857. top: 73px;
  858. z-index: 2;
  859. }
  860. .com-panel {
  861. height: 100%;
  862. .panel-body {
  863. height: calc(100% - 32px);
  864. }
  865. }
  866. .top-mid-panel {
  867. flex: 1 1 auto;
  868. height: 100%;
  869. }
  870. .model-item {
  871. display: flex;
  872. flex-direction: row;
  873. justify-content: space-between;
  874. align-items: center;
  875. }
  876. .infos {
  877. display: flex;
  878. flex-direction: column;
  879. width: 50%;
  880. height: 100%;
  881. width: 370px;
  882. padding: 10px;
  883. .titles {
  884. display: flex;
  885. flex-direction: row;
  886. align-items: center;
  887. justify-content: space-between;
  888. padding: 0 15px;
  889. height: 50%;
  890. .amount {
  891. display: flex;
  892. flex-direction: row;
  893. align-items: center;
  894. .amount-image {
  895. margin-left: -42px;
  896. }
  897. .amount-nums {
  898. font-size: 12px;
  899. color: #7d838c;
  900. margin-left: 10px;
  901. display: flex;
  902. flex-direction: row;
  903. align-items: baseline;
  904. .num-item {
  905. font-size: 20px;
  906. color: #ffffff;
  907. margin-right: 5px;
  908. }
  909. }
  910. }
  911. .info-nums {
  912. display: flex;
  913. align-items: baseline;
  914. font-size: 14px;
  915. color: #7d838c;
  916. .nums {
  917. font-size: 20px;
  918. color: #ffffff;
  919. margin: 0 5px;
  920. }
  921. }
  922. }
  923. .types {
  924. display: flex;
  925. flex-direction: row;
  926. align-items: center;
  927. height: 50%;
  928. width: 100%;
  929. .type-model {
  930. display: flex;
  931. flex-direction: column;
  932. justify-content: space-between;
  933. align-items: center;
  934. width: 14%;
  935. height: 75%;
  936. font-size: 16px;
  937. .type-name {
  938. font-size: 14px;
  939. }
  940. }
  941. }
  942. }
  943. .fengji-icon {
  944. border-radius: 50%;
  945. width: 49px;
  946. height: 49px;
  947. box-shadow: inset 1.5px -1px 1px 0px @green;
  948. animation: fadenum 5s linear infinite;
  949. @keyframes fadenum {
  950. 100% {
  951. transform: rotate(360deg);
  952. }
  953. }
  954. svg {
  955. width: 25px;
  956. height: 22px;
  957. }
  958. }
  959. .jnjp-icon {
  960. svg {
  961. width: 25px;
  962. height: 25px;
  963. }
  964. }
  965. .jnjp-icon1 {
  966. margin-top: -10px;
  967. svg {
  968. width: 40px;
  969. height: 40px;
  970. }
  971. }
  972. .power-charts {
  973. display: flex;
  974. flex-direction: row;
  975. align-items: flex-end;
  976. width: 100%;
  977. margin-top: 10px;
  978. .power-name-old {
  979. width: 80px;
  980. margin-bottom: 10px;
  981. color: #7a8385;
  982. }
  983. .power-name {
  984. width: 80px;
  985. margin-bottom: 20px;
  986. color: #000;
  987. }
  988. .power-item {
  989. display: flex;
  990. flex-direction: column;
  991. width: 360px;
  992. .power-value-old {
  993. display: flex;
  994. flex-direction: row;
  995. align-items: center;
  996. justify-content: space-between;
  997. margin-bottom: -12px;
  998. padding: 0 15px;
  999. .green-value {
  1000. color: #05bb4c;
  1001. }
  1002. .purple-value {
  1003. color: #4b55ae;
  1004. }
  1005. }
  1006. .power-value {
  1007. font-size: 12px;
  1008. margin-bottom: -31px;
  1009. font-family: Bicubik;
  1010. margin-left: 255px;
  1011. span:nth-child(1) {
  1012. width: 5px;
  1013. height: 5px;
  1014. border-radius: 5px;
  1015. display: inline-block;
  1016. background-color: #fff;
  1017. margin-right: 5px;
  1018. }
  1019. .green-value {
  1020. color: #05bb4c;
  1021. }
  1022. .purple-value {
  1023. color: #4b55ae;
  1024. }
  1025. }
  1026. }
  1027. }
  1028. // .power-charts {
  1029. // display: flex;
  1030. // flex-direction: row;
  1031. // align-items: flex-end;
  1032. // width: 100%;
  1033. // margin-top: 10px;
  1034. // .power-name {
  1035. // width: 80px;
  1036. // margin-bottom: 20px;
  1037. // color: #7a8385;
  1038. // }
  1039. // .power-item {
  1040. // display: flex;
  1041. // flex-direction: column;
  1042. // width: 300px;
  1043. // .power-value-old {
  1044. // display: flex;
  1045. // flex-direction: row;
  1046. // align-items: center;
  1047. // justify-content: space-between;
  1048. // margin-bottom: -12px;
  1049. // padding: 0 15px;
  1050. // .green-value {
  1051. // color: #05BB4C;
  1052. // }
  1053. // .purple-value {
  1054. // color: #4B55AE;
  1055. // }
  1056. // }
  1057. // .power-value {
  1058. // font-size: 12px;
  1059. // margin-bottom: -31px;
  1060. // font-family: Bicubik;
  1061. // margin-left: 255px;
  1062. // span:nth-child(1) {
  1063. // width: 5px;
  1064. // height: 5px;
  1065. // border-radius: 5px;
  1066. // display: inline-block;
  1067. // background-color: #fff;
  1068. // margin-right: 5px;
  1069. // }
  1070. // .green-value {
  1071. // color: #05BB4C;
  1072. // }
  1073. // .purple-value {
  1074. // color: #4B55AE;
  1075. // }
  1076. // }
  1077. // }
  1078. // }
  1079. </style>