lightMatrix.vue 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641
  1. <template>
  2. <headerNav @typeFlag="typeFlag" :isAll="true"/>
  3. <div
  4. :class="$store.state.themeName === 'dark' ? 'dark-matrix' : 'light-matrix'"
  5. >
  6. <el-header>
  7. <el-row>
  8. <el-col :span="12" v-if="activeTab == 'all' || activeTab == 'fc'">
  9. <div class="fd-header1">
  10. <el-col class="fd-img">
  11. <div class="imgs">
  12. <img src="@assets/imgs/downF.png" />
  13. <img
  14. width="30"
  15. height="26"
  16. src="@assets/imgs/windup.png"
  17. class="qty_imgs"
  18. />
  19. </div>
  20. <div class="titles">
  21. <div>接入风机</div>
  22. <p
  23. @click="changeShow('all')"
  24. style="text-align: center; cursor: pointer"
  25. >
  26. {{ sourceMap.jrts || "0" }}
  27. </p>
  28. </div>
  29. </el-col>
  30. <el-col @click="changeShow(0)" style="cursor: pointer">
  31. <div class="active-b" :class="{ active_bor: fillFjzt == 0 }">
  32. <p class="left_p"></p>
  33. <p class="right_p"></p>
  34. <div class="yuan">
  35. <p><span class="circle"></span></p>
  36. <p>待机</p>
  37. </div>
  38. <div>
  39. {{ sourceMap.djts || "0" }}
  40. </div>
  41. </div>
  42. </el-col>
  43. <el-col @click="changeShow(1)" style="cursor: pointer">
  44. <div class="active-b" :class="{ active_bor: fillFjzt == 1 }">
  45. <p class="left_p"></p>
  46. <p class="right_p"></p>
  47. <div class="yuan">
  48. <p><span class="circle"></span></p>
  49. <p>并网</p>
  50. </div>
  51. <div>
  52. {{ sourceMap.bwts || "0" }}
  53. </div>
  54. </div>
  55. </el-col>
  56. <el-col @click="changeShow(2)" style="cursor: pointer">
  57. <div class="active-b" :class="{ active_bor: fillFjzt == 2 }">
  58. <p class="left_p"></p>
  59. <p class="right_p"></p>
  60. <div class="yuan">
  61. <p><span class="circle"></span></p>
  62. <p>故障</p>
  63. </div>
  64. <div>
  65. {{ sourceMap.gzts || "0" }}
  66. </div>
  67. </div>
  68. </el-col>
  69. <el-col @click="changeShow(3)" style="cursor: pointer">
  70. <div class="active-b" :class="{ active_bor: fillFjzt == 3 }">
  71. <p class="left_p"></p>
  72. <p class="right_p"></p>
  73. <div class="yuan">
  74. <p><span class="circle"></span></p>
  75. <p>检修</p>
  76. </div>
  77. <div>
  78. {{ sourceMap.jxts || "0" }}
  79. </div>
  80. </div>
  81. </el-col>
  82. <el-col @click="changeShow(4)" style="cursor: pointer">
  83. <div class="active-b" :class="{ active_bor: fillFjzt == 4 }">
  84. <p class="left_p"></p>
  85. <p class="right_p"></p>
  86. <div class="yuan">
  87. <p><span class="circle"></span></p>
  88. <p>限电</p>
  89. </div>
  90. <div>
  91. {{ sourceMap.xdts || "0" }}
  92. </div>
  93. </div>
  94. </el-col>
  95. <el-col @click="changeShow(5)" style="cursor: pointer">
  96. <div class="active-b" :class="{ active_bor: fillFjzt == 5 }">
  97. <p class="left_p"></p>
  98. <p class="right_p"></p>
  99. <div class="yuan">
  100. <p><span class="circle"></span></p>
  101. <p>受累</p>
  102. </div>
  103. <div>
  104. {{ sourceMap.slts || "0" }}
  105. </div>
  106. </div>
  107. </el-col>
  108. <el-col @click="changeShow(6)" style="cursor: pointer">
  109. <div class="active-b" :class="{ active_bor: fillFjzt == 6 }">
  110. <p class="left_p"></p>
  111. <p class="right_p"></p>
  112. <div class="yuan">
  113. <p><span class="circle"></span></p>
  114. <p>离线</p>
  115. </div>
  116. <div>
  117. {{ sourceMap.lxts || "0" }}
  118. </div>
  119. </div>
  120. </el-col>
  121. </div>
  122. </el-col>
  123. <el-col :span="12" v-if="activeTab == 'all' || activeTab == 'gf'">
  124. <div class="fd-header2">
  125. <el-col class="gf-img">
  126. <div class="imgs">
  127. <img src="@assets/imgs/downg.png" />
  128. <img src="@assets/imgs/ptyup.png" class="qty_img" />
  129. </div>
  130. <div class="titles">
  131. <div>接入光伏</div>
  132. <p
  133. style="text-align: center; cursor: pointer"
  134. @click="changeShow('all')"
  135. >
  136. {{ sourceMap.gfjrts || "0" }}
  137. </p>
  138. </div>
  139. </el-col>
  140. <el-col @click="changeShow(0)" style="cursor: pointer">
  141. <div class="active-b" :class="{ active_bor: fillFjzt == 0 }">
  142. <p class="left_p"></p>
  143. <p class="right_p"></p>
  144. <div class="yuan">
  145. <p><span class="circle"></span></p>
  146. <p>待机</p>
  147. </div>
  148. <div>
  149. {{ sourceMap.gfdjts || "0" }}
  150. </div>
  151. </div>
  152. </el-col>
  153. <el-col @click="changeShow(1)" style="cursor: pointer">
  154. <div class="active-b" :class="{ active_bor: fillFjzt == 1 }">
  155. <p class="left_p"></p>
  156. <p class="right_p"></p>
  157. <div class="yuan">
  158. <p><span class="circle"></span></p>
  159. <p>并网</p>
  160. </div>
  161. <div>
  162. {{ sourceMap.gfbwts || "0" }}
  163. </div>
  164. </div>
  165. </el-col>
  166. <el-col @click="changeShow(2)" style="cursor: pointer">
  167. <div class="active-b" :class="{ active_bor: fillFjzt == 2 }">
  168. <p class="left_p"></p>
  169. <p class="right_p"></p>
  170. <div class="yuan">
  171. <p><span class="circle"></span></p>
  172. <p>故障</p>
  173. </div>
  174. <div>
  175. {{ sourceMap.gfgzts || "0" }}
  176. </div>
  177. </div>
  178. </el-col>
  179. <el-col @click="changeShow(3)" style="cursor: pointer">
  180. <div class="active-b" :class="{ active_bor: fillFjzt == 3 }">
  181. <p class="left_p"></p>
  182. <p class="right_p"></p>
  183. <div class="yuan">
  184. <p><span class="circle"></span></p>
  185. <p>检修</p>
  186. </div>
  187. <div>
  188. {{ sourceMap.gfwhts || "0" }}
  189. </div>
  190. </div>
  191. </el-col>
  192. <el-col @click="changeShow(4)" style="cursor: pointer">
  193. <div class="active-b" :class="{ active_bor: fillFjzt == 4 }">
  194. <p class="left_p"></p>
  195. <p class="right_p"></p>
  196. <div class="yuan">
  197. <p><span class="circle"></span></p>
  198. <p>限电</p>
  199. </div>
  200. <div>
  201. {{ sourceMap.gfxdts || "0" }}
  202. </div>
  203. </div>
  204. </el-col>
  205. <el-col @click="changeShow(5)" style="cursor: pointer">
  206. <div class="active-b" :class="{ active_bor: fillFjzt == 5 }">
  207. <p class="left_p"></p>
  208. <p class="right_p"></p>
  209. <div class="yuan">
  210. <p><span class="circle"></span></p>
  211. <p>受累</p>
  212. </div>
  213. <div>
  214. {{ sourceMap.gfslts || "0" }}
  215. </div>
  216. </div>
  217. </el-col>
  218. <el-col @click="changeShow(6)" style="cursor: pointer">
  219. <div class="active-b" :class="{ active_bor: fillFjzt == 6 }">
  220. <p class="left_p"></p>
  221. <p class="right_p"></p>
  222. <div class="yuan">
  223. <p><span class="circle"></span></p>
  224. <p>离线</p>
  225. </div>
  226. <div>
  227. {{ sourceMap.gflxts || "0" }}
  228. </div>
  229. </div>
  230. </el-col>
  231. </div>
  232. </el-col>
  233. </el-row>
  234. </el-header>
  235. <el-scrollbar
  236. v-loading="loading"
  237. element-loading-background="rgba(4, 12, 11, 0.8)"
  238. element-loading-text="加载中..."
  239. >
  240. <div
  241. class="wind_power_plant"
  242. v-for="(item, index) in showMatrixList"
  243. :key="index"
  244. >
  245. <el-row class="data_statistics">
  246. <el-col>
  247. <i
  248. v-if="item.czlx == -1"
  249. class="svg-icon svg-icon-sm svg-icon-green"
  250. >
  251. <SvgIcon svgid="svg-wind-site"></SvgIcon>
  252. </i>
  253. <i v-else class="svg-icon svg-icon-sm svg-icon-orange">
  254. <SvgIcon svgid="svg-photovoltaic"></SvgIcon>
  255. </i>
  256. <span
  257. class="station-name"
  258. :style="item.czlx == -1 ? '' : 'color:#ff8100'"
  259. >{{ item.wpname }}</span
  260. >
  261. </el-col>
  262. <el-col>
  263. 接入台数<span>{{
  264. item.jrts ? item.jrts.toFixed(0) : "0"
  265. }}</span></el-col
  266. >
  267. <el-col>
  268. 待机台数<span>{{
  269. item.djts ? item.djts.toFixed(0) : "0"
  270. }}</span></el-col
  271. >
  272. <el-col>
  273. 并网台数<span>{{
  274. item.bwts ? item.bwts.toFixed(0) : "0"
  275. }}</span></el-col
  276. >
  277. <el-col>
  278. 故障台数<span>{{
  279. item.gzts ? item.gzts.toFixed(0) : "0"
  280. }}</span></el-col
  281. >
  282. <el-col>
  283. 检修台数<span>{{
  284. item.jxts ? item.jxts.toFixed(0) : "0"
  285. }}</span></el-col
  286. >
  287. <el-col>
  288. 限电台数<span>{{
  289. item.xdts ? item.xdts.toFixed(0) : "0"
  290. }}</span></el-col
  291. >
  292. <el-col>
  293. 受累台数<span>{{
  294. item.slts ? item.slts.toFixed(0) : "0"
  295. }}</span></el-col
  296. >
  297. <el-col>
  298. 离线台数<span>{{
  299. item.lxts ? item.lxts.toFixed(0) : "0"
  300. }}</span></el-col
  301. >
  302. <el-col
  303. style="cursor: pointer"
  304. v-if="item.czlx == -1"
  305. @click="handleIndicatorClick(item.czlx, item.wpid)"
  306. >
  307. 风速<span>{{ item.spped ? item.spped.toFixed(2) : "0.00" }}</span>
  308. </el-col>
  309. <el-col
  310. style="cursor: pointer"
  311. v-else
  312. @click="handleIndicatorClick(item.czlx, item.wpid)"
  313. >
  314. 光照强度<span>{{
  315. item.spped ? item.spped.toFixed(2) : "0.00"
  316. }}</span></el-col
  317. >
  318. <el-col
  319. style="cursor: pointer"
  320. @click="handleIndicatorClick(item.czlx, item.wpid)"
  321. >
  322. 预测功率<span>{{
  323. item.ycgl ? (item.ycgl / 1000).toFixed(2) : "0.00"
  324. }}</span></el-col
  325. >
  326. <el-col
  327. style="cursor: pointer"
  328. @click="handleIndicatorClick(item.czlx, item.wpid)"
  329. >
  330. 保证功率<span>{{
  331. item.bzgl ? (item.bzgl / 1000).toFixed(2) : "0.00"
  332. }}</span></el-col
  333. >
  334. <el-col
  335. style="cursor: pointer"
  336. @click="handleIndicatorClick(item.czlx, item.wpid)"
  337. >
  338. 理论功率<span>{{
  339. item.llgl ? (item.llgl / 1000).toFixed(2) : "0.00"
  340. }}</span></el-col
  341. >
  342. <el-col
  343. style="cursor: pointer"
  344. @click="handleIndicatorClick(item.czlx, item.wpid)"
  345. >
  346. 实际功率<span>{{
  347. item.sjgl ? (item.sjgl / 1000).toFixed(2) : "0.00"
  348. }}</span></el-col
  349. >
  350. <el-col>
  351. AGC指令<span>{{
  352. item.agc ? item.agc.toFixed(2) : "0.00"
  353. }}</span></el-col
  354. >
  355. <el-col>
  356. 出线功率<span>{{
  357. item.cxgl ? (item.cxgl / 1000).toFixed(2) : "0.00"
  358. }}</span></el-col
  359. >
  360. </el-row>
  361. <div
  362. class="data_views"
  363. :class="{ active_vie: item.wtlist.length == 0 }"
  364. >
  365. <span
  366. v-for="(subItem, index) in item.wtlist"
  367. :class="getColor(subItem?.status)"
  368. :key="index"
  369. @click="goDetails(subItem, item.czlx)"
  370. >{{ subItem.wtname }}</span
  371. >
  372. </div>
  373. </div>
  374. </el-scrollbar>
  375. </div>
  376. <el-dialog
  377. class="dialogs"
  378. width="90%"
  379. top="40px"
  380. v-model="displayMatrix"
  381. :show-close="true"
  382. destroy-on-close
  383. >
  384. <template #title>
  385. <div class="dialog-title">
  386. <img class="dialog-title-img" src="@assets/imgs/dialog-title.png" />
  387. <div class="title">设备详情</div>
  388. </div>
  389. </template>
  390. <div class="dialog-body" style="height: 77vh">
  391. <img class="dialog-img" src="@assets/imgs/dialog.png" />
  392. <windDetail
  393. v-show="wtType == -1"
  394. :wind="wind"
  395. :wtType="wtType"
  396. :flag="flag"
  397. showHeight="77vh"
  398. ></windDetail>
  399. <lightDetail
  400. v-show="wtType == -2"
  401. :wind="wind"
  402. :wtType="wtType"
  403. :flag="flag"
  404. showHeight="77vh"
  405. ></lightDetail>
  406. </div>
  407. </el-dialog>
  408. <qushi-dialog ref="child" :chartName="chartName"></qushi-dialog>
  409. </template>
  410. <script>
  411. import qushiDialog from "@/components/qushi/qushiDialog.vue";
  412. import windDetail from "@/components/windDetail/index";
  413. import lightDetail from "@/components/lightDetial/index.vue";
  414. import { deepClone } from "@/utills/func.js";
  415. import SvgIcon from "@com/coms/icon/svg-icon.vue";
  416. import api from "@api/cockpit/matrix/index.js";
  417. import { setInterval, clearInterval } from "timers";
  418. import HeaderNav from "@/components/headerNav/index.vue";
  419. export default {
  420. // 名称
  421. name: "LightMatrix", //基础矩阵
  422. // 使用组件
  423. components: {
  424. HeaderNav,
  425. qushiDialog,
  426. SvgIcon,
  427. windDetail,
  428. lightDetail,
  429. },
  430. // 数据
  431. data() {
  432. return {
  433. loading: false,
  434. timmer: null, // 计时器
  435. sourceMap: {}, // 核心数据
  436. showMatrixList: [],
  437. fillCategory: null, // 过滤条件
  438. fillFjzt: "all", // 过滤条件
  439. displayMatrix: false, //风机详情
  440. wind: {},
  441. wtType: -1,
  442. flag: false,
  443. gfdetialDisplay: false,
  444. stationId: "",
  445. windId: "",
  446. contrastDisplay: false,
  447. chooseList: [],
  448. activeTab: "all", //全部 风电 光伏
  449. enterpriseIndex: "all",
  450. tabIndex: 0,
  451. // wp指标
  452. stse: [
  453. {
  454. statiomName: "风速",
  455. stse: "",
  456. sts: "SSPJFS",
  457. },
  458. {
  459. statiomName: "预测功率",
  460. stse: "",
  461. sts: "FCFGDQDT0001",
  462. },
  463. {
  464. statiomName: "保证功率",
  465. stse: "",
  466. sts: "SSZBZGL",
  467. },
  468. {
  469. statiomName: "理论功率",
  470. stse: "",
  471. sts: "SSZNHGLZS",
  472. },
  473. {
  474. statiomName: "实际功率",
  475. stse: "",
  476. sts: "SSZGL",
  477. },
  478. ],
  479. chartName: "对比曲线",
  480. };
  481. },
  482. // 函数
  483. methods: {
  484. deepClone,
  485. typeFlag(activeTab, enterpriseIndex) {
  486. this.activeTab = activeTab;
  487. this.tabIndex = activeTab == "all" ? 0 : activeTab == "fc" ? -1 : -2;
  488. this.enterpriseIndex = enterpriseIndex;
  489. },
  490. // 根据风机状态码返回对应 class
  491. getColor(fjzt) {
  492. switch (fjzt) {
  493. case 0:
  494. return "blue";
  495. case 1:
  496. return "green";
  497. case 2:
  498. return "red";
  499. case 3:
  500. return "orange";
  501. case 4:
  502. return "pink";
  503. case 5:
  504. return "write";
  505. case 6:
  506. return "gray";
  507. }
  508. },
  509. // 切换显示种类
  510. changeShow(fjzt) {
  511. // 风机状态
  512. this.fillFjzt = fjzt;
  513. let showMatrixList = this.deepClone(this.sourceMap.powerVos);
  514. if (fjzt !== "all") {
  515. // 展示数据过滤
  516. this.showMatrixList = showMatrixList?.map(function (item) {
  517. item.wtlist = item.wtlist.filter(function (y) {
  518. return y.status === fjzt;
  519. });
  520. return item;
  521. });
  522. } else {
  523. this.showMatrixList = showMatrixList;
  524. }
  525. },
  526. // 请求服务
  527. requestData() {
  528. api
  529. .matrixPush({
  530. company:
  531. this.enterpriseIndex == "all"
  532. ? "0"
  533. : this.enterpriseIndex.toString(),
  534. type: this.tabIndex.toString(),
  535. })
  536. .then((res) => {
  537. this.loading = false;
  538. if (Object.values(res.data.data).length) {
  539. this.sourceMap = res.data.data;
  540. if (this.fillFjzt) {
  541. this.changeShow(this.fillFjzt);
  542. }
  543. } else {
  544. this.sourceMap = {};
  545. this.showMatrixList = [];
  546. }
  547. });
  548. },
  549. // 展示对比曲线
  550. handleIndicatorClick(czlx, wpid) {
  551. let y = this.deepClone(this.stse);
  552. if (czlx == "-2") {
  553. y[0].statiomName = "光照强度";
  554. y[0].sts = "SSPJGZD";
  555. }
  556. this.$refs.child.openCurvDatas(y, 1, wpid);
  557. },
  558. // 查看风机详情
  559. goDetails(wt, type) {
  560. this.displayMatrix = true;
  561. this.wtType = type;
  562. this.$nextTick(() => {
  563. this.wind = { ...wt, wtType: type };
  564. this.flag = true;
  565. });
  566. },
  567. selectList(val) {
  568. val.forEach((item) => {
  569. this.handleChoose(item.id);
  570. });
  571. },
  572. handleChoose(value) {
  573. this.sourceMap.fjmap.forEach((val) => {
  574. val.forEach((item) => {
  575. if (item.wtId === value) {
  576. if (item.active) {
  577. let showIndex = null;
  578. this.chooseList.forEach((res, index) => {
  579. if (res.wtId === item.wtId) {
  580. showIndex = index;
  581. }
  582. });
  583. this.chooseList.splice(showIndex, 1);
  584. } else {
  585. this.chooseList.push(item);
  586. }
  587. item.active = !item.active;
  588. }
  589. });
  590. });
  591. },
  592. handleClick() {
  593. this.contrastDisplay = true;
  594. this.$refs.contrast.handleSearch(this.chooseList);
  595. },
  596. },
  597. created() {
  598. let that = this;
  599. that.$nextTick(() => {
  600. this.loading = true;
  601. that.requestData();
  602. that.timmer = setInterval(() => {
  603. that.requestData();
  604. }, 5000);
  605. });
  606. },
  607. unmounted() {
  608. clearInterval(this.timmer);
  609. this.timmer = null;
  610. },
  611. };
  612. </script>
  613. <style lang="less" scoped>
  614. .light-matrix {
  615. height: calc(100vh - 59px - 67px);
  616. display: flex;
  617. flex-direction: column;
  618. padding: 0 16px;
  619. p {
  620. margin: 0;
  621. }
  622. .el-header {
  623. height: 78px;
  624. // margin-top: 10px;
  625. background-color: #fff;
  626. border-radius: 5px 5px 0 0;
  627. .el-row {
  628. align-items: center;
  629. height: 100%;
  630. .el-col {
  631. width: 40px;
  632. div {
  633. text-align: center;
  634. }
  635. .fd-header1,
  636. .fd-header2 {
  637. display: flex;
  638. position: relative;
  639. .el-col {
  640. flex: 1;
  641. display: flex;
  642. align-items: center;
  643. .active-b {
  644. border: 1px solid transparent;
  645. padding: 4px 10px;
  646. position: relative;
  647. .left_p {
  648. width: 12px;
  649. height: 12px;
  650. position: absolute;
  651. left: -1px;
  652. top: -1px;
  653. }
  654. .right_p {
  655. width: 12px;
  656. height: 12px;
  657. position: absolute;
  658. left: 61px;
  659. top: 35px;
  660. }
  661. .yuan {
  662. font-family: AgencyFB-Reg;
  663. line-height: 20px;
  664. display: flex;
  665. > p:first-of-type {
  666. width: 13px;
  667. height: 13px;
  668. border: 1px solid transparent;
  669. position: absolute;
  670. top: 9px;
  671. left: 10px;
  672. }
  673. > p:last-of-type {
  674. margin-left: 20px;
  675. }
  676. .circle {
  677. display: inline-block;
  678. width: 4px;
  679. height: 4px;
  680. vertical-align: middle;
  681. margin-right: 10px;
  682. position: absolute;
  683. top: 3.5px;
  684. left: 3px;
  685. }
  686. }
  687. }
  688. }
  689. .el-col.fd-img,
  690. .el-col.gf-img {
  691. flex: 1.5 0 auto;
  692. display: flex;
  693. color: #b3b3b3;
  694. align-items: none;
  695. // border: 0;
  696. // padding: 0;
  697. .imgs {
  698. margin-right: 20px;
  699. }
  700. .titles {
  701. display: flex;
  702. flex-direction: column;
  703. justify-content: center;
  704. align-items: center;
  705. font-size: 14px;
  706. color: #0d1e1c;
  707. font-weight: bold;
  708. p {
  709. font-size: 16px;
  710. margin-top: 5px;
  711. }
  712. }
  713. }
  714. .el-col.fd-img {
  715. .qty_imgs {
  716. position: absolute;
  717. left: 11px;
  718. top: 12px;
  719. animation: move 1s infinite linear;
  720. }
  721. @keyframes move {
  722. 0% {
  723. top: 12px;
  724. }
  725. 20% {
  726. top: 11px;
  727. }
  728. 40% {
  729. top: 10px;
  730. }
  731. 80% {
  732. top: 11px;
  733. }
  734. 100% {
  735. top: 12px;
  736. }
  737. }
  738. }
  739. // 待机
  740. .el-col:nth-child(2) {
  741. color: #1c99ff;
  742. .active_bor {
  743. border: 1px solid #1c99ff;
  744. .left_p {
  745. border-left: 1.5px solid #ffffff;
  746. border-top: 1.5px solid #ffffff;
  747. }
  748. .right_p {
  749. border-right: 1.5px solid #ffffff;
  750. border-bottom: 1.5px solid #ffffff;
  751. }
  752. div {
  753. > p:first-of-type {
  754. border: 1px solid #1c99ff !important;
  755. }
  756. }
  757. }
  758. .circle {
  759. background-color: #1c99ff;
  760. }
  761. }
  762. //并网
  763. .el-col:nth-child(3) {
  764. color: #05bb4c;
  765. .active_bor {
  766. border: 1px solid #05bb4c;
  767. .left_p {
  768. border-left: 1.5px solid #ffffff;
  769. border-top: 1.5px solid #ffffff;
  770. }
  771. .right_p {
  772. border-right: 1.5px solid #ffffff;
  773. border-bottom: 1.5px solid #ffffff;
  774. }
  775. div {
  776. > p:first-of-type {
  777. border: 1px solid #05bb4c !important;
  778. }
  779. }
  780. }
  781. .circle {
  782. background-color: #05bb4c;
  783. }
  784. }
  785. // 故障
  786. .el-col:nth-child(4) {
  787. color: #ba3237;
  788. .active_bor {
  789. border: 1px solid #ba3237;
  790. .left_p {
  791. border-left: 1.5px solid #ffffff;
  792. border-top: 1.5px solid #ffffff;
  793. }
  794. .right_p {
  795. border-right: 1.5px solid #ffffff;
  796. border-bottom: 1.5px solid #ffffff;
  797. }
  798. div {
  799. > p:first-of-type {
  800. border: 1px solid #ba3237 !important;
  801. }
  802. }
  803. }
  804. .circle {
  805. background-color: #ba3237;
  806. }
  807. }
  808. // 检修
  809. .el-col:nth-child(5) {
  810. color: #e17d24;
  811. .active_bor {
  812. border: 1px solid #e17d24;
  813. .left_p {
  814. border-left: 1.5px solid #ffffff;
  815. border-top: 1.5px solid #ffffff;
  816. }
  817. .right_p {
  818. border-right: 1.5px solid #ffffff;
  819. border-bottom: 1.5px solid #ffffff;
  820. }
  821. div {
  822. > p:first-of-type {
  823. border: 1px solid #e17d24 !important;
  824. }
  825. }
  826. }
  827. .circle {
  828. background-color: #e17d24;
  829. }
  830. }
  831. // 限电
  832. .el-col:nth-child(6) {
  833. color: #c530c8;
  834. .active_bor {
  835. border: 1px solid #c530c8;
  836. .left_p {
  837. border-left: 1.5px solid #ffffff;
  838. border-top: 1.5px solid #ffffff;
  839. }
  840. .right_p {
  841. border-right: 1.5px solid #ffffff;
  842. border-bottom: 1.5px solid #ffffff;
  843. }
  844. div {
  845. > p:first-of-type {
  846. border: 1px solid #c530c8 !important;
  847. }
  848. }
  849. }
  850. .circle {
  851. background-color: #c530c8;
  852. }
  853. }
  854. // 受累
  855. .el-col:nth-child(7) {
  856. color: #0d1e1c;
  857. .active_bor {
  858. border: 1px solid #0d1e1c;
  859. .left_p {
  860. border-left: 1.5px solid #ffffff;
  861. border-top: 1.5px solid #ffffff;
  862. }
  863. .right_p {
  864. border-right: 1.5px solid #ffffff;
  865. border-bottom: 1.5px solid #ffffff;
  866. }
  867. div {
  868. > p:first-of-type {
  869. border: 1px solid #0d1e1c !important;
  870. }
  871. }
  872. }
  873. .circle {
  874. background-color: #0d1e1c;
  875. }
  876. }
  877. // 离线
  878. .el-col:nth-child(8) {
  879. color: #929ca3;
  880. .active_bor {
  881. border: 1px solid #929ca3;
  882. .left_p {
  883. border-left: 1.5px solid #ffffff;
  884. border-top: 1.5px solid #ffffff;
  885. }
  886. .right_p {
  887. border-right: 1.5px solid #ffffff;
  888. border-bottom: 1.5px solid #ffffff;
  889. }
  890. div {
  891. > p:first-of-type {
  892. border: 1px solid #929ca3 !important;
  893. }
  894. }
  895. }
  896. .circle {
  897. background-color: #929ca3;
  898. }
  899. }
  900. }
  901. .fd-header2 {
  902. .el-col.gf-img {
  903. .qty_img {
  904. position: absolute;
  905. left: 11px;
  906. top: 18px;
  907. animation: moves 1s infinite linear;
  908. }
  909. @keyframes moves {
  910. 0% {
  911. top: 18px;
  912. }
  913. 20% {
  914. top: 17px;
  915. }
  916. 40% {
  917. top: 16px;
  918. }
  919. 80% {
  920. top: 17px;
  921. }
  922. 100% {
  923. top: 18px;
  924. }
  925. }
  926. }
  927. }
  928. }
  929. }
  930. }
  931. .data_statistics {
  932. width: 100%;
  933. height: 32px;
  934. line-height: 32px;
  935. // background-color: rgba(0, 24, 68, 0.8);
  936. background-color: rgba(96, 103, 105, 0.4);
  937. padding: 0 12px;
  938. .icon-photovoltaic {
  939. color: #ff8100;
  940. }
  941. .el-col {
  942. height: 32px;
  943. }
  944. .el-col + .el-col {
  945. padding-left: 0;
  946. }
  947. .el-col:first-child {
  948. flex: 0 0 auto;
  949. margin-right: 10px;
  950. font-family: AgencyFB-Reg;
  951. color: #05bb4c;
  952. font-size: 14px;
  953. i {
  954. margin-right: 5px;
  955. font-size: 15px;
  956. position: relative;
  957. top: 3px;
  958. }
  959. }
  960. .el-col:not(:first-child) {
  961. flex: 1 0 auto;
  962. color: #b3b3b3;
  963. display: flex;
  964. align-items: center;
  965. span {
  966. font-family: Arial;
  967. color: #9ca5a8;
  968. font-size: 12px;
  969. // display: inline-block;
  970. width: 45px;
  971. text-align: left;
  972. margin-left: 5px;
  973. vertical-align: middle;
  974. }
  975. }
  976. .el-col:nth-child(2) {
  977. span {
  978. color: #fff;
  979. }
  980. }
  981. .el-col:nth-child(3) {
  982. span {
  983. color: #1c99ff;
  984. }
  985. }
  986. .el-col:nth-child(4) {
  987. span {
  988. color: #05bb4c;
  989. }
  990. }
  991. .el-col:nth-child(5) {
  992. span {
  993. color: #ba3237;
  994. }
  995. }
  996. .el-col:nth-child(6) {
  997. span {
  998. color: #e17d24;
  999. }
  1000. }
  1001. .el-col:nth-child(7) {
  1002. span {
  1003. color: #c530c8;
  1004. }
  1005. }
  1006. .el-col:nth-child(8) {
  1007. span {
  1008. color: #ffffff;
  1009. }
  1010. }
  1011. .el-col:nth-child(9) {
  1012. span {
  1013. color: #606769;
  1014. }
  1015. }
  1016. }
  1017. .data_views {
  1018. padding: 5px 0;
  1019. display: grid;
  1020. justify-content: space-between;
  1021. grid-template-columns: repeat(auto-fill, 44px);
  1022. span {
  1023. cursor: pointer;
  1024. display: inline-block;
  1025. min-width: 44px;
  1026. height: 22px;
  1027. line-height: 22px;
  1028. text-align: center;
  1029. border-radius: 2px;
  1030. margin-bottom: 3px;
  1031. margin-right: 4px;
  1032. font-size: 13px;
  1033. }
  1034. .card_hover {
  1035. background: #1a7ccd;
  1036. }
  1037. // 待机
  1038. .blue {
  1039. color: #1c99ff;
  1040. border-color: #1c99ff;
  1041. }
  1042. // 并网
  1043. .green {
  1044. color: #05bb4c;
  1045. border-color: #05bb4c;
  1046. }
  1047. // 限电
  1048. .pink {
  1049. color: #c530c8;
  1050. border-color: #c530c8;
  1051. }
  1052. // 故障
  1053. .red {
  1054. color: #fff;
  1055. border-color: #ba3237;
  1056. background-color: #ba3237;
  1057. }
  1058. // 检修
  1059. .orange {
  1060. color: #e17d24;
  1061. border-color: #e17d24;
  1062. }
  1063. // 受累
  1064. .write {
  1065. color: #ffffff;
  1066. border-color: rgba(255, 255, 255, 1);
  1067. }
  1068. // 离线
  1069. .gray {
  1070. color: #a7a7a7;
  1071. border-color: #606769;
  1072. background-color: rgba(96, 103, 105, 0.2);
  1073. }
  1074. .line_ll {
  1075. color: #ffffff !important;
  1076. border-color: #606701 !important;
  1077. background-color: #606239 !important;
  1078. }
  1079. }
  1080. }
  1081. // ---------------------------------------------------------------------------
  1082. .dark-matrix {
  1083. height: calc(100vh - 59px - 67px);
  1084. padding: 0 16px;
  1085. display: flex;
  1086. flex-direction: column;
  1087. p {
  1088. margin: 0;
  1089. }
  1090. .el-header {
  1091. height: 78px;
  1092. // margin-top: 10px;
  1093. background-color: rgba(0, 0, 0, 0.45);
  1094. border-radius: 5px 5px 0 0;
  1095. .el-row {
  1096. align-items: center;
  1097. height: 100%;
  1098. .el-col {
  1099. width: 40px;
  1100. div {
  1101. text-align: center;
  1102. }
  1103. .fd-header1,
  1104. .fd-header2 {
  1105. display: flex;
  1106. position: relative;
  1107. .el-col {
  1108. flex: 1;
  1109. display: flex;
  1110. align-items: center;
  1111. .active-b {
  1112. border: 1px solid transparent;
  1113. padding: 4px 10px;
  1114. position: relative;
  1115. .left_p {
  1116. width: 12px;
  1117. height: 12px;
  1118. position: absolute;
  1119. left: -1px;
  1120. top: -1px;
  1121. }
  1122. .right_p {
  1123. width: 12px;
  1124. height: 12px;
  1125. position: absolute;
  1126. left: 61px;
  1127. top: 45px;
  1128. }
  1129. .yuan {
  1130. font-family: AgencyFB-Reg;
  1131. line-height: 30px;
  1132. display: flex;
  1133. > p:first-of-type {
  1134. width: 13px;
  1135. height: 13px;
  1136. border: 1px solid transparent;
  1137. position: absolute;
  1138. top: 9px;
  1139. left: 10px;
  1140. }
  1141. > p:last-of-type {
  1142. margin-left: 20px;
  1143. }
  1144. .circle {
  1145. display: inline-block;
  1146. width: 4px;
  1147. height: 4px;
  1148. vertical-align: middle;
  1149. margin-right: 10px;
  1150. position: absolute;
  1151. top: 3.5px;
  1152. left: 3px;
  1153. }
  1154. }
  1155. }
  1156. }
  1157. .el-col.fd-img,
  1158. .el-col.gf-img {
  1159. flex: 1.5 0 auto;
  1160. display: flex;
  1161. color: #b3b3b3;
  1162. align-items: none;
  1163. // border: 0;
  1164. // padding: 0;
  1165. .imgs {
  1166. margin-right: 20px;
  1167. }
  1168. .titles {
  1169. display: flex;
  1170. flex-direction: column;
  1171. justify-content: center;
  1172. align-items: center;
  1173. font-size: 14px;
  1174. p {
  1175. font-size: 16px;
  1176. margin-top: 5px;
  1177. }
  1178. }
  1179. }
  1180. .el-col.fd-img {
  1181. .qty_imgs {
  1182. position: absolute;
  1183. left: 11px;
  1184. top: 12px;
  1185. animation: move 1s infinite linear;
  1186. }
  1187. @keyframes move {
  1188. 0% {
  1189. top: 12px;
  1190. }
  1191. 20% {
  1192. top: 11px;
  1193. }
  1194. 40% {
  1195. top: 10px;
  1196. }
  1197. 80% {
  1198. top: 11px;
  1199. }
  1200. 100% {
  1201. top: 12px;
  1202. }
  1203. }
  1204. }
  1205. // 待机
  1206. .el-col:nth-child(2) {
  1207. color: #1c99ff;
  1208. .active_bor {
  1209. border: 1px solid #1c99ff;
  1210. .left_p {
  1211. border-left: 1.5px solid #ffffff;
  1212. border-top: 1.5px solid #ffffff;
  1213. }
  1214. .right_p {
  1215. border-right: 1.5px solid #ffffff;
  1216. border-bottom: 1.5px solid #ffffff;
  1217. }
  1218. div {
  1219. > p:first-of-type {
  1220. border: 1px solid #1c99ff !important;
  1221. }
  1222. }
  1223. }
  1224. .circle {
  1225. background-color: #1c99ff;
  1226. }
  1227. }
  1228. //并网
  1229. .el-col:nth-child(3) {
  1230. color: #05bb4c;
  1231. .active_bor {
  1232. border: 1px solid #05bb4c;
  1233. .left_p {
  1234. border-left: 1.5px solid #ffffff;
  1235. border-top: 1.5px solid #ffffff;
  1236. }
  1237. .right_p {
  1238. border-right: 1.5px solid #ffffff;
  1239. border-bottom: 1.5px solid #ffffff;
  1240. }
  1241. div {
  1242. > p:first-of-type {
  1243. border: 1px solid #05bb4c !important;
  1244. }
  1245. }
  1246. }
  1247. .circle {
  1248. background-color: #05bb4c;
  1249. }
  1250. }
  1251. // 故障
  1252. .el-col:nth-child(4) {
  1253. color: #ba3237;
  1254. .active_bor {
  1255. border: 1px solid #ba3237;
  1256. .left_p {
  1257. border-left: 1.5px solid #ffffff;
  1258. border-top: 1.5px solid #ffffff;
  1259. }
  1260. .right_p {
  1261. border-right: 1.5px solid #ffffff;
  1262. border-bottom: 1.5px solid #ffffff;
  1263. }
  1264. div {
  1265. > p:first-of-type {
  1266. border: 1px solid #ba3237 !important;
  1267. }
  1268. }
  1269. }
  1270. .circle {
  1271. background-color: #ba3237;
  1272. }
  1273. }
  1274. // 检修
  1275. .el-col:nth-child(5) {
  1276. color: #e17d24;
  1277. .active_bor {
  1278. border: 1px solid #e17d24;
  1279. .left_p {
  1280. border-left: 1.5px solid #ffffff;
  1281. border-top: 1.5px solid #ffffff;
  1282. }
  1283. .right_p {
  1284. border-right: 1.5px solid #ffffff;
  1285. border-bottom: 1.5px solid #ffffff;
  1286. }
  1287. div {
  1288. > p:first-of-type {
  1289. border: 1px solid #e17d24 !important;
  1290. }
  1291. }
  1292. }
  1293. .circle {
  1294. background-color: #e17d24;
  1295. }
  1296. }
  1297. // 限电
  1298. .el-col:nth-child(6) {
  1299. color: #c530c8;
  1300. .active_bor {
  1301. border: 1px solid #c530c8;
  1302. .left_p {
  1303. border-left: 1.5px solid #ffffff;
  1304. border-top: 1.5px solid #ffffff;
  1305. }
  1306. .right_p {
  1307. border-right: 1.5px solid #ffffff;
  1308. border-bottom: 1.5px solid #ffffff;
  1309. }
  1310. div {
  1311. > p:first-of-type {
  1312. border: 1px solid #c530c8 !important;
  1313. }
  1314. }
  1315. }
  1316. .circle {
  1317. background-color: #c530c8;
  1318. }
  1319. }
  1320. // 受累
  1321. .el-col:nth-child(7) {
  1322. color: rgba(255, 255, 255, 1);
  1323. .active_bor {
  1324. border: 1px solid rgba(255, 255, 255, 1);
  1325. .left_p {
  1326. border-left: 1.5px solid #ffffff;
  1327. border-top: 1.5px solid #ffffff;
  1328. }
  1329. .right_p {
  1330. border-right: 1.5px solid #ffffff;
  1331. border-bottom: 1.5px solid #ffffff;
  1332. }
  1333. div {
  1334. > p:first-of-type {
  1335. border: 1px solid rgba(255, 255, 255, 1) !important;
  1336. }
  1337. }
  1338. }
  1339. .circle {
  1340. background-color: rgba(255, 255, 255, 1);
  1341. }
  1342. }
  1343. // 离线
  1344. .el-col:nth-child(8) {
  1345. color: #606769;
  1346. .active_bor {
  1347. border: 1px solid #606769;
  1348. .left_p {
  1349. border-left: 1.5px solid #ffffff;
  1350. border-top: 1.5px solid #ffffff;
  1351. }
  1352. .right_p {
  1353. border-right: 1.5px solid #ffffff;
  1354. border-bottom: 1.5px solid #ffffff;
  1355. }
  1356. div {
  1357. > p:first-of-type {
  1358. border: 1px solid #606769 !important;
  1359. }
  1360. }
  1361. }
  1362. .circle {
  1363. background-color: #606769;
  1364. }
  1365. }
  1366. }
  1367. .fd-header2 {
  1368. .el-col.gf-img {
  1369. .qty_img {
  1370. position: absolute;
  1371. left: 11px;
  1372. top: 18px;
  1373. animation: moves 1s infinite linear;
  1374. }
  1375. @keyframes moves {
  1376. 0% {
  1377. top: 18px;
  1378. }
  1379. 20% {
  1380. top: 17px;
  1381. }
  1382. 40% {
  1383. top: 16px;
  1384. }
  1385. 80% {
  1386. top: 17px;
  1387. }
  1388. 100% {
  1389. top: 18px;
  1390. }
  1391. }
  1392. }
  1393. }
  1394. }
  1395. }
  1396. }
  1397. .data_statistics {
  1398. width: 100%;
  1399. height: 32px;
  1400. line-height: 32px;
  1401. // background-color: rgba(0, 24, 68, 0.8);
  1402. background-color: rgba(96, 103, 105, 0.4);
  1403. padding: 0 12px;
  1404. .icon-photovoltaic {
  1405. color: #ff8100;
  1406. }
  1407. .el-col {
  1408. height: 32px;
  1409. }
  1410. .el-col + .el-col {
  1411. padding-left: 0;
  1412. }
  1413. .el-col:first-child {
  1414. flex: 0 0 auto;
  1415. margin-right: 10px;
  1416. font-family: AgencyFB-Reg;
  1417. color: #05bb4c;
  1418. font-size: 14px;
  1419. i {
  1420. margin-right: 5px;
  1421. font-size: 15px;
  1422. position: relative;
  1423. top: 3px;
  1424. }
  1425. }
  1426. .el-col:not(:first-child) {
  1427. flex: 1 0 auto;
  1428. color: #b3b3b3;
  1429. display: flex;
  1430. align-items: center;
  1431. span {
  1432. font-family: Arial;
  1433. color: #9ca5a8;
  1434. font-size: 12px;
  1435. // display: inline-block;
  1436. width: 45px;
  1437. text-align: left;
  1438. margin-left: 5px;
  1439. vertical-align: middle;
  1440. }
  1441. }
  1442. .el-col:nth-child(2) {
  1443. span {
  1444. color: #fff;
  1445. }
  1446. }
  1447. .el-col:nth-child(3) {
  1448. span {
  1449. color: #1c99ff;
  1450. }
  1451. }
  1452. .el-col:nth-child(4) {
  1453. span {
  1454. color: #05bb4c;
  1455. }
  1456. }
  1457. .el-col:nth-child(5) {
  1458. span {
  1459. color: #ba3237;
  1460. }
  1461. }
  1462. .el-col:nth-child(6) {
  1463. span {
  1464. color: #e17d24;
  1465. }
  1466. }
  1467. .el-col:nth-child(7) {
  1468. span {
  1469. color: #c530c8;
  1470. }
  1471. }
  1472. .el-col:nth-child(8) {
  1473. span {
  1474. color: #ffffff;
  1475. }
  1476. }
  1477. .el-col:nth-child(9) {
  1478. span {
  1479. color: #606769;
  1480. }
  1481. }
  1482. }
  1483. .data_views {
  1484. padding: 5px 0;
  1485. display: grid;
  1486. justify-content: space-between;
  1487. grid-template-columns: repeat(auto-fill, 44px);
  1488. span {
  1489. cursor: pointer;
  1490. display: inline-block;
  1491. min-width: 44px;
  1492. height: 22px;
  1493. line-height: 22px;
  1494. text-align: center;
  1495. border: 1px solid #4b55ae;
  1496. color: #4b55ae;
  1497. border-radius: 2px;
  1498. margin-bottom: 3px;
  1499. margin-right: 4px;
  1500. font-size: 13px;
  1501. }
  1502. .card_hover {
  1503. background: #1a7ccd;
  1504. }
  1505. // 待机
  1506. .blue {
  1507. color: #1c99ff;
  1508. border-color: #1c99ff;
  1509. }
  1510. // 并网
  1511. .green {
  1512. color: #05bb4c;
  1513. border-color: #05bb4c;
  1514. }
  1515. // 限电
  1516. .pink {
  1517. color: #c530c8;
  1518. border-color: #c530c8;
  1519. }
  1520. // 故障
  1521. .red {
  1522. color: #fff;
  1523. border-color: #ba3237;
  1524. background-color: #ba3237;
  1525. }
  1526. // 检修
  1527. .orange {
  1528. color: #e17d24;
  1529. border-color: #e17d24;
  1530. }
  1531. // 受累
  1532. .write {
  1533. color: #ffffff;
  1534. border-color: rgba(255, 255, 255, 1);
  1535. }
  1536. // 离线
  1537. .gray {
  1538. color: #a7a7a7;
  1539. border-color: #606769;
  1540. background-color: rgba(96, 103, 105, 0.2);
  1541. }
  1542. .line_ll {
  1543. color: #ffffff !important;
  1544. border-color: #606701 !important;
  1545. background-color: #606239 !important;
  1546. }
  1547. }
  1548. }
  1549. </style>