Home.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871
  1. <template>
  2. <div class="home">
  3. <Row type="flex">
  4. <Col :span="6">
  5. <Row type="flex">
  6. <Col :span="24">
  7. <com-panel
  8. title="银川"
  9. sub-title="AM 10:52 实况"
  10. icon="fa fa-map-marker"
  11. >
  12. <weather />
  13. </com-panel>
  14. </Col>
  15. </Row>
  16. <Row type="flex">
  17. <Col :span="24">
  18. <com-panel title="预测电量" sub-title="(单位:万KWh)">
  19. <list-bar-chart :list="ForecastPower" height="16.6667vh" />
  20. </com-panel>
  21. </Col>
  22. </Row>
  23. <Row type="flex">
  24. <Col :span="24">
  25. <com-panel title="功率复核" sub-title="(单位:万KW)">
  26. <power-review />
  27. </com-panel>
  28. </Col>
  29. </Row>
  30. </Col>
  31. <Col :span="12">
  32. <Map></Map>
  33. </Col>
  34. <Col :span="6">
  35. <Row type="flex">
  36. <Col :span="24">
  37. <com-panel title="电量分析" sub-title="(单位:万KWh)">
  38. <coulometric-analysis />
  39. </com-panel>
  40. </Col>
  41. </Row>
  42. <Row type="flex">
  43. <Col :span="24">
  44. <com-panel title="计划电量完成情况" sub-title="(单位:万KWh)">
  45. <power-plan />
  46. </com-panel>
  47. </Col>
  48. </Row>
  49. </Col>
  50. </Row>
  51. <Row type="flex">
  52. <Col :span="12">
  53. <toolbar-panel title="日发电量">
  54. <template v-slot:tools>
  55. <div class="tools">
  56. <div class="tool-block">
  57. <div class="legend bg-green"></div>
  58. <div class="legend-text">日发电量(单位:万KWh)</div>
  59. </div>
  60. <div class="tool-block">
  61. <div class="legend bg-purple"></div>
  62. <div class="legend-text">上网电量(单位:万KWh)</div>
  63. </div>
  64. <div class="tool-block">
  65. <div class="legend bg-orange"></div>
  66. <div class="legend-text">购网电量(单位:万KWh)</div>
  67. </div>
  68. <div class="tool-block">
  69. <div class="legend bg-yellow"></div>
  70. <div class="legend-text">风速</div>
  71. </div>
  72. </div>
  73. </template>
  74. <template v-slot:default>
  75. <!-- 日发电量 -->
  76. <multiple-bar-chart
  77. :list="DayPower.value"
  78. :units="DayPower.units"
  79. height="12.963vh"
  80. />
  81. </template>
  82. </toolbar-panel>
  83. </Col>
  84. <Col :span="12">
  85. <toolbar-panel title="72小时功率趋势图">
  86. <template v-slot:tools>
  87. <div class="tools">
  88. <div class="tools">
  89. <div class="tool-block">
  90. <div class="legend long bg-green"></div>
  91. <div class="legend-text">平均风速</div>
  92. </div>
  93. <div class="tool-block">
  94. <div class="legend long bg-yellow"></div>
  95. <div class="legend-text">应发功率</div>
  96. </div>
  97. <div class="tool-block">
  98. <div class="legend long bg-purple"></div>
  99. <div class="legend-text">实际功率</div>
  100. </div>
  101. </div>
  102. </div>
  103. </template>
  104. <template v-slot:default>
  105. <multiple-line-chart
  106. :list="Powertrend.value"
  107. :units="Powertrend.units"
  108. height="12.963vh"
  109. />
  110. </template>
  111. </toolbar-panel>
  112. </Col>
  113. </Row>
  114. <Row type="flex">
  115. <!-- 下方 table -->
  116. <Col :span="16">
  117. <row>
  118. <Col>
  119. <com-panel>
  120. <table class="table-card">
  121. <tr class="">
  122. <td class="text gray">装机容量</td>
  123. <td class="value green">361033.3</td>
  124. <td class="unit gray">MW</td>
  125. </tr>
  126. <tr class="">
  127. <td class="text gray">上网电量(日)</td>
  128. <td class="value green">361033.3</td>
  129. <td class="unit gray">MW</td>
  130. </tr>
  131. <tr class="">
  132. <td class="text gray">减排二氧化硫</td>
  133. <td class="value green">361033.3</td>
  134. <td class="unit gray">MW</td>
  135. </tr>
  136. <tr class="">
  137. <td class="text gray">减排二氧化碳</td>
  138. <td class="value green">361033.3</td>
  139. <td class="unit gray gray">MW</td>
  140. </tr>
  141. <tr class="">
  142. <td class="text gray">节约用水</td>
  143. <td class="value green">361033.3</td>
  144. <td class="unit gray">MW</td>
  145. </tr>
  146. <tr class="">
  147. <td class="text gray">节约用煤</td>
  148. <td class="value green">361033.3</td>
  149. <td class="unit gray">MW</td>
  150. </tr>
  151. </table>
  152. </com-panel>
  153. </Col>
  154. <Col>
  155. <com-panel>
  156. <table class="table-card">
  157. <tr class="">
  158. <td class="text gray">装机容量</td>
  159. <td class="value green">361033.3</td>
  160. <td class="unit gray">MW</td>
  161. </tr>
  162. <tr class="">
  163. <td class="text gray">上网电量(日)</td>
  164. <td class="value green">361033.3</td>
  165. <td class="unit gray">MW</td>
  166. </tr>
  167. <tr class="">
  168. <td class="text gray">减排二氧化硫</td>
  169. <td class="value green">361033.3</td>
  170. <td class="unit gray">MW</td>
  171. </tr>
  172. <tr class="">
  173. <td class="text gray">减排二氧化碳</td>
  174. <td class="value green">361033.3</td>
  175. <td class="unit gray gray">MW</td>
  176. </tr>
  177. <tr class="">
  178. <td class="text gray">节约用水</td>
  179. <td class="value green">361033.3</td>
  180. <td class="unit gray">MW</td>
  181. </tr>
  182. <tr class="">
  183. <td class="text gray">节约用煤</td>
  184. <td class="value green">361033.3</td>
  185. <td class="unit gray">MW</td>
  186. </tr>
  187. </table>
  188. </com-panel>
  189. </Col>
  190. <Col>
  191. <com-panel>
  192. <table class="table-card">
  193. <tr class="">
  194. <td class="text gray">装机容量</td>
  195. <td class="value green">361033.3</td>
  196. <td class="unit gray">MW</td>
  197. </tr>
  198. <tr class="">
  199. <td class="text gray">上网电量(日)</td>
  200. <td class="value green">361033.3</td>
  201. <td class="unit gray">MW</td>
  202. </tr>
  203. <tr class="">
  204. <td class="text gray">减排二氧化硫</td>
  205. <td class="value green">361033.3</td>
  206. <td class="unit gray">MW</td>
  207. </tr>
  208. <tr class="">
  209. <td class="text gray">减排二氧化碳</td>
  210. <td class="value green">361033.3</td>
  211. <td class="unit gray gray">MW</td>
  212. </tr>
  213. <tr class="">
  214. <td class="text gray">节约用水</td>
  215. <td class="value green">361033.3</td>
  216. <td class="unit gray">MW</td>
  217. </tr>
  218. <tr class="">
  219. <td class="text gray">节约用煤</td>
  220. <td class="value green">361033.3</td>
  221. <td class="unit gray">MW</td>
  222. </tr>
  223. </table>
  224. </com-panel>
  225. </Col>
  226. <Col>
  227. <com-panel>
  228. <table class="table-card">
  229. <tr class="">
  230. <td class="text gray">装机容量</td>
  231. <td class="value green">361033.3</td>
  232. <td class="unit gray">MW</td>
  233. </tr>
  234. <tr class="">
  235. <td class="text gray">上网电量(日)</td>
  236. <td class="value green">361033.3</td>
  237. <td class="unit gray">MW</td>
  238. </tr>
  239. <tr class="">
  240. <td class="text gray">减排二氧化硫</td>
  241. <td class="value green">361033.3</td>
  242. <td class="unit gray">MW</td>
  243. </tr>
  244. <tr class="">
  245. <td class="text gray">减排二氧化碳</td>
  246. <td class="value green">361033.3</td>
  247. <td class="unit gray gray">MW</td>
  248. </tr>
  249. <tr class="">
  250. <td class="text gray">节约用水</td>
  251. <td class="value green">361033.3</td>
  252. <td class="unit gray">MW</td>
  253. </tr>
  254. <tr class="">
  255. <td class="text gray">节约用煤</td>
  256. <td class="value green">361033.3</td>
  257. <td class="unit gray">MW</td>
  258. </tr>
  259. </table>
  260. </com-panel>
  261. </Col>
  262. <Col>
  263. <com-panel>
  264. <table class="table-card">
  265. <tr class="">
  266. <td class="text gray">装机容量</td>
  267. <td class="value green">361033.3</td>
  268. <td class="unit gray">MW</td>
  269. </tr>
  270. <tr class="">
  271. <td class="text gray">上网电量(日)</td>
  272. <td class="value green">361033.3</td>
  273. <td class="unit gray">MW</td>
  274. </tr>
  275. <tr class="">
  276. <td class="text gray">减排二氧化硫</td>
  277. <td class="value green">361033.3</td>
  278. <td class="unit gray">MW</td>
  279. </tr>
  280. <tr class="">
  281. <td class="text gray">减排二氧化碳</td>
  282. <td class="value green">361033.3</td>
  283. <td class="unit gray gray">MW</td>
  284. </tr>
  285. <tr class="">
  286. <td class="text gray">节约用水</td>
  287. <td class="value green">361033.3</td>
  288. <td class="unit gray">MW</td>
  289. </tr>
  290. <tr class="">
  291. <td class="text gray">节约用煤</td>
  292. <td class="value green">361033.3</td>
  293. <td class="unit gray">MW</td>
  294. </tr>
  295. </table>
  296. </com-panel>
  297. </Col>
  298. </row>
  299. </Col>
  300. <!-- 右下角 panel -->
  301. <Col :span="8">
  302. <panel-3 class="situation">
  303. <div class="situation-body">
  304. <row align="middle">
  305. <div class="situation-item fengji">
  306. <div class="icon fengji-icon svg-icon svg-icon-white">
  307. <svg-icon class="" svgid="svg-风机" />
  308. </div>
  309. <div class="info">
  310. <div class="title green">接入风机</div>
  311. <div class="value">30</div>
  312. </div>
  313. </div>
  314. <div class="situation-item">
  315. <div class="icon svg-icon svg-icon-purple">
  316. <svg-icon class="" svgid="svg-待机图标" />
  317. </div>
  318. <div class="info">
  319. <div class="title green">待机</div>
  320. <div class="value">
  321. <span class="text gray">手动停机</span>
  322. <span>123 </span>
  323. </div>
  324. <div class="value">
  325. <span class="text gray">手动停机</span>
  326. <span>123</span>
  327. </div>
  328. </div>
  329. </div>
  330. <div class="situation-item">
  331. <div class="icon svg-icon svg-icon-green">
  332. <svg-icon class="" svgid="svg-运行图标" />
  333. </div>
  334. <div class="info">
  335. <div class="title green">运行</div>
  336. <div class="value">
  337. <span class="text gray">手动停机</span>
  338. <span>123 </span>
  339. </div>
  340. <div class="value">
  341. <span class="text gray">手动停机</span>
  342. <span>123</span>
  343. </div>
  344. </div>
  345. </div>
  346. <div class="situation-item">
  347. <div class="icon svg-icon svg-icon-yellow">
  348. <svg-icon class="" svgid="svg-限电图标" />
  349. </div>
  350. <div class="info">
  351. <div class="title green">待机</div>
  352. <div class="value">
  353. <span class="text gray">手动停机</span>
  354. <span>123 </span>
  355. </div>
  356. <div class="value">
  357. <span class="text gray">手动停机</span>
  358. <span>123</span>
  359. </div>
  360. </div>
  361. </div>
  362. </row>
  363. <row align="middle">
  364. <div class="situation-item">
  365. <div class="icon svg-icon svg-icon-red">
  366. <svg-icon class="" svgid="svg-故障图标" />
  367. </div>
  368. <div class="info">
  369. <div class="title green">待机</div>
  370. <div class="value">
  371. <span class="text gray">手动停机</span>
  372. <span>123 </span>
  373. </div>
  374. <div class="value">
  375. <span class="text gray">手动停机</span>
  376. <span>123</span>
  377. </div>
  378. </div>
  379. </div>
  380. <div class="situation-item">
  381. <div class="icon svg-icon svg-icon-orange">
  382. <svg-icon class="" svgid="svg-检修图标" />
  383. </div>
  384. <div class="info">
  385. <div class="title green">待机</div>
  386. <div class="value">
  387. <span class="text gray">手动停机</span>
  388. <span>123 </span>
  389. </div>
  390. <div class="value">
  391. <span class="text gray">手动停机</span>
  392. <span>123</span>
  393. </div>
  394. </div>
  395. </div>
  396. <div class="situation-item">
  397. <div class="icon svg-icon svg-icon-gray">
  398. <svg-icon class="" svgid="svg-离线图标" />
  399. </div>
  400. <div class="info">
  401. <div class="title green">待机</div>
  402. <div class="value">
  403. <span class="text gray">手动停机</span>
  404. <span>123 </span>
  405. </div>
  406. <div class="value">
  407. <span class="text gray">手动停机</span>
  408. <span>123</span>
  409. </div>
  410. </div>
  411. </div>
  412. <div class="situation-item">
  413. <div class="icon svg-icon svg-icon-blue">
  414. <svg-icon class="" svgid="svg-受累图标" />
  415. </div>
  416. <div class="info">
  417. <div class="title green">待机</div>
  418. <div class="value">
  419. <span class="text gray">手动停机</span>
  420. <span>123 </span>
  421. </div>
  422. <div class="value">
  423. <span class="text gray">手动停机</span>
  424. <span>123</span>
  425. </div>
  426. </div>
  427. </div>
  428. </row>
  429. </div>
  430. </panel-3>
  431. </Col>
  432. </Row>
  433. </div>
  434. </template>
  435. <script>
  436. // @ is an alias to /src
  437. import Row from "../../components/coms/grid/row.vue";
  438. import Col from "../../components/coms/grid/col.vue";
  439. import ComPanel from "../../components/coms/panel/panel";
  440. import ListBarChart from "../../components/chart/bar/list-bar-chart.vue";
  441. import ToolbarPanel from "../../components/coms/panel/toolbar-panel.vue";
  442. import MultipleBarChart from "../../components/chart/bar/multiple-bar-chart.vue";
  443. import MultipleLineChart from "../../components/chart/line/multiple-line-chart.vue";
  444. import Panel3 from "../../components/coms/panel/panel3.vue";
  445. import SvgIcon from "../../components/coms/icon/svg-icon.vue";
  446. import CoulometricAnalysis from "./components/coulometric-analysis.vue";
  447. import Weather from "./components/weather.vue";
  448. import PowerReview from "./components/power-review.vue";
  449. import PowerPlan from "./components/power-plan.vue";
  450. import Map from "./components/map.vue";
  451. export default {
  452. name: "Home",
  453. components: {
  454. Row,
  455. Col,
  456. ComPanel,
  457. Weather,
  458. CoulometricAnalysis,
  459. ListBarChart,
  460. PowerReview,
  461. ToolbarPanel,
  462. PowerPlan,
  463. MultipleBarChart,
  464. MultipleLineChart,
  465. Panel3,
  466. SvgIcon,
  467. Map,
  468. },
  469. data() {
  470. return {
  471. // 预测电量
  472. ForecastPower: [
  473. {
  474. name: "当日预测电量",
  475. value: 103.62,
  476. },
  477. {
  478. name: "实际发电量",
  479. value: 98.62,
  480. },
  481. {
  482. name: "当月预测电量",
  483. value: 113.27,
  484. },
  485. {
  486. name: "实际发电量",
  487. value: 136.72,
  488. },
  489. ],
  490. // 日发电量
  491. DayPower: {
  492. // 图表所用单位
  493. units: ["(万KWh)", "(风速)"],
  494. value: [
  495. {
  496. title: "日发电量",
  497. yAxisIndex: 0, // 使用单位
  498. value: [
  499. {
  500. text: "1日",
  501. value: 1,
  502. },
  503. {
  504. text: "2日",
  505. value: 1,
  506. },
  507. {
  508. text: "3日",
  509. value: 1,
  510. },
  511. {
  512. text: "4日",
  513. value: 1,
  514. },
  515. {
  516. text: "5日",
  517. value: 1,
  518. },
  519. {
  520. text: "6日",
  521. value: 1,
  522. },
  523. {
  524. text: "7日",
  525. value: 1,
  526. },
  527. ],
  528. },
  529. {
  530. title: "上网电量",
  531. yAxisIndex: 0,
  532. value: [
  533. {
  534. text: "1日",
  535. value: 2,
  536. },
  537. {
  538. text: "2日",
  539. value: 2,
  540. },
  541. {
  542. text: "3日",
  543. value: 2,
  544. },
  545. {
  546. text: "4日",
  547. value: 2,
  548. },
  549. {
  550. text: "5日",
  551. value: 2,
  552. },
  553. {
  554. text: "6日",
  555. value: 2,
  556. },
  557. {
  558. text: "7日",
  559. value: 2,
  560. },
  561. ],
  562. },
  563. {
  564. title: "购网电量",
  565. yAxisIndex: 0,
  566. value: [
  567. {
  568. text: "1日",
  569. value: 3,
  570. },
  571. {
  572. text: "2日",
  573. value: 3,
  574. },
  575. {
  576. text: "3日",
  577. value: 3,
  578. },
  579. {
  580. text: "4日",
  581. value: 3,
  582. },
  583. {
  584. text: "5日",
  585. value: 3,
  586. },
  587. {
  588. text: "6日",
  589. value: 3,
  590. },
  591. {
  592. text: "7日",
  593. value: 3,
  594. },
  595. ],
  596. },
  597. {
  598. title: "风速",
  599. yAxisIndex: 1,
  600. value: [
  601. {
  602. text: "1日",
  603. value: 4,
  604. },
  605. {
  606. text: "2日",
  607. value: 4,
  608. },
  609. {
  610. text: "3日",
  611. value: 4,
  612. },
  613. {
  614. text: "4日",
  615. value: 4,
  616. },
  617. {
  618. text: "5日",
  619. value: 4,
  620. },
  621. {
  622. text: "6日",
  623. value: 4,
  624. },
  625. {
  626. text: "7日",
  627. value: 4,
  628. },
  629. ],
  630. },
  631. ],
  632. },
  633. // 72小时功率趋势图
  634. Powertrend: {
  635. // 图表所用单位
  636. units: ["(万KWh)", "(风速)"],
  637. value: [
  638. {
  639. title: "平均风速",
  640. yAxisIndex: 1, // 使用单位
  641. value: [
  642. {
  643. text: "1日",
  644. value: 0,
  645. },
  646. {
  647. text: "2日",
  648. value: 1,
  649. },
  650. {
  651. text: "3日",
  652. value: 0,
  653. },
  654. {
  655. text: "4日",
  656. value: 1,
  657. },
  658. {
  659. text: "5日",
  660. value: 0,
  661. },
  662. {
  663. text: "6日",
  664. value: 1,
  665. },
  666. {
  667. text: "7日",
  668. value: 0,
  669. },
  670. ],
  671. },
  672. {
  673. title: "应发功率",
  674. yAxisIndex: 0,
  675. value: [
  676. {
  677. text: "1日",
  678. value: 4,
  679. },
  680. {
  681. text: "2日",
  682. value: 2,
  683. },
  684. {
  685. text: "3日",
  686. value: 4,
  687. },
  688. {
  689. text: "4日",
  690. value: 2,
  691. },
  692. {
  693. text: "5日",
  694. value: 4,
  695. },
  696. {
  697. text: "6日",
  698. value: 2,
  699. },
  700. {
  701. text: "7日",
  702. value: 4,
  703. },
  704. ],
  705. },
  706. {
  707. title: "实际功率",
  708. yAxisIndex: 0,
  709. value: [
  710. {
  711. text: "1日",
  712. value: 1,
  713. },
  714. {
  715. text: "2日",
  716. value: 3,
  717. },
  718. {
  719. text: "3日",
  720. value: 1,
  721. },
  722. {
  723. text: "4日",
  724. value: 3,
  725. },
  726. {
  727. text: "5日",
  728. value: 1,
  729. },
  730. {
  731. text: "6日",
  732. value: 3,
  733. },
  734. {
  735. text: "7日",
  736. value: 1,
  737. },
  738. ],
  739. },
  740. ],
  741. },
  742. };
  743. },
  744. };
  745. </script>
  746. <style lang="less" scoped>
  747. .grid-content {
  748. background: #333;
  749. height: 1.111vh;
  750. }
  751. .table-card {
  752. background: rgba(255, 255, 255, 0.1);
  753. border-collapse: collapse;
  754. width: 100%;
  755. tr {
  756. font-size: @fontsize-s;
  757. td {
  758. border: 0.093vh solid @darkgray;
  759. padding: 0.556vh 0.741vh;
  760. &.text {
  761. }
  762. &.value {
  763. text-align: right;
  764. }
  765. &.unit {
  766. }
  767. }
  768. }
  769. }
  770. .tools {
  771. display: flex;
  772. .tool-block {
  773. display: flex;
  774. align-items: center;
  775. margin-left: 0.741vh;
  776. .legend {
  777. flex: auto;
  778. width: 0.741vh;
  779. height: 0.741vh;
  780. margin-right: 0.741vh;
  781. &.long {
  782. width: 2.963vh;
  783. height: 0.37vh;
  784. }
  785. }
  786. .legend-text {
  787. color: #ffffff4d;
  788. }
  789. }
  790. }
  791. .situation {
  792. width: 100%;
  793. height: 100%;
  794. .situation-body {
  795. display: flex;
  796. flex-direction: column;
  797. justify-content: center;
  798. height: 100%;
  799. .situation-item {
  800. display: flex;
  801. align-content: center;
  802. flex: 1 1 auto;
  803. align-items: center;
  804. .icon {
  805. svg {
  806. width: 4.167vh;
  807. height: 4.167vh;
  808. }
  809. }
  810. &.fengji {
  811. flex: 0 1 7.3737vw;
  812. .info .value {
  813. font-size: 1.852vh;
  814. }
  815. }
  816. .fengji-icon {
  817. padding: 1.111vh;
  818. border: 0.093vh solid #05bb4c;
  819. border-radius: 50%;
  820. border-right-color: transparent;
  821. border-top-color: transparent;
  822. margin-right: -0.741vh;
  823. svg {
  824. width: 2.593vh;
  825. height: 2.593vh;
  826. }
  827. }
  828. .info {
  829. display: flex;
  830. flex-direction: column;
  831. justify-content: center;
  832. margin-left: 0.741vh;
  833. .title {
  834. font-size: @fontsize;
  835. margin-bottom: 0.741vh;
  836. }
  837. .text {
  838. margin-right: 0.741vh;
  839. }
  840. .value {
  841. text-align: right;
  842. font-size: @fontsize-s;
  843. }
  844. }
  845. }
  846. }
  847. }
  848. </style>