matrixBlock.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934
  1. <template>
  2. <div>
  3. <div
  4. class="box"
  5. style="display: flex; flex-direction: row; flex-wrap: wrap"
  6. >
  7. <div
  8. :class="
  9. item.active
  10. ? 'box-' + item.status
  11. : item.flashing && item.status === 5
  12. ? 'unbox-flashing-' + item.status
  13. : 'unbox-' + item.status
  14. "
  15. :id="item.windturbineId"
  16. v-for="(item, index) in dataList"
  17. :key="index"
  18. @click="onSelectHandler(item)"
  19. @dblclick="sendMsg(item)"
  20. style="margin-right: 8px"
  21. >
  22. <div
  23. :class="item.active ? 'left-' + item.status : 'unleft-' + item.status"
  24. >
  25. <!-- <div>{{ getName(item, 'top') }}</div>
  26. <div>{{ getName(item, 'bot') }}</div> -->
  27. <div>{{ item.code }}</div>
  28. </div>
  29. <div
  30. :class="
  31. item.active ? 'right-' + item.status : 'unright-' + item.status
  32. "
  33. >
  34. <div class="rightrow">{{ item.windSpeed.toFixed(2) }} m/s</div>
  35. <div class="rightrow">{{ item.power.toFixed(2) }} kw</div>
  36. <div class="rightrow">
  37. {{
  38. item.modelId.indexOf("105") >= 0
  39. ? (item.rollSpeed).toFixed(2)
  40. : item.rollSpeed.toFixed(2)
  41. }}
  42. rpm
  43. </div>
  44. </div>
  45. <div class="duration">
  46. <el-popover
  47. placement="bottom-start"
  48. :width="200"
  49. trigger="hover"
  50. class="durationPopover"
  51. :show-arrow="false"
  52. @show="handleDeal(item.ts)"
  53. >
  54. <template #reference>
  55. <img
  56. :class="item.lockValue > 0 ? 'durationImgs' : 'durationImg'"
  57. src="../assets/img/type/duration.png"
  58. alt=""
  59. />
  60. </template>
  61. <input
  62. class="lock_inputs"
  63. type="text"
  64. placeholder=""
  65. :value="showVlaues"
  66. disabled
  67. />
  68. </el-popover>
  69. </div>
  70. <div class="locks" v-if="item.lockValue > 0">
  71. <el-popover
  72. placement="bottom-start"
  73. :width="150"
  74. trigger="hover"
  75. class="popoverBack"
  76. :show-arrow="false"
  77. >
  78. <template #reference>
  79. <img class="lock" src="../assets/img/type/lock.png" alt="" />
  80. </template>
  81. <input
  82. class="lock_input"
  83. type="text"
  84. placeholder=""
  85. :value="
  86. item.lockValue === 9 ? item.lockValues : options[item.lockValue]
  87. "
  88. disabled
  89. />
  90. </el-popover>
  91. </div>
  92. <div class="locks" v-if="item.reasonType">
  93. <img
  94. class="lock"
  95. src="../assets/img/type/electricityRestrictions.png"
  96. alt=""
  97. />
  98. </div>
  99. </div>
  100. </div>
  101. <WindturbineDetailPages
  102. v-model="dialogVisible"
  103. :showSvg="showSvg"
  104. @close="handleClose"
  105. :windturbine="currentWindturbine"
  106. ></WindturbineDetailPages>
  107. </div>
  108. </template>
  109. <script>
  110. import WindturbineDetailPages from "./WindturbineDetailPages.vue";
  111. import api from "api/index";
  112. import dayjs from "dayjs";
  113. export default {
  114. components: {
  115. WindturbineDetailPages,
  116. },
  117. props: {
  118. dataList: {
  119. type: Array,
  120. default: () => {
  121. return [];
  122. },
  123. },
  124. area: String,
  125. },
  126. mounted() {
  127. // this.getWindturbineFdc();
  128. },
  129. updated() {},
  130. methods: {
  131. getName(item, type) {
  132. // debugger
  133. let name = ''
  134. if (type === 'top') {
  135. if (item.windturbineId) {
  136. name = item.windturbineId.slice(0, 2)
  137. }
  138. } else {
  139. if (item.windturbineId) {
  140. name = item.windturbineId.slice(item.windturbineId.indexOf('_')+1)
  141. }
  142. }
  143. return name
  144. },
  145. handleDeal(val) {
  146. let data = dayjs(val).format("YYYY-MM-DD HH:mm:ss");
  147. this.showVlaues = this.timeFn(data);
  148. // return `该状态共持续:`
  149. },
  150. timeFn(d1) {
  151. //di作为一个变量传进来
  152. //如果时间格式是正确的,那下面这一步转化时间格式就可以不用了
  153. var dateBegin = new Date(d1.replace(/-/g, "/")); //将-转化为/,使用new Date
  154. var dateEnd = new Date(); //获取当前时间
  155. var dateDiff = dateEnd.getTime() - dateBegin.getTime(); //时间差的毫秒数
  156. var dayDiff = Math.floor(dateDiff / (24 * 3600 * 1000)); //计算出相差天数
  157. var leave1 = dateDiff % (24 * 3600 * 1000); //计算天数后剩余的毫秒数
  158. var hours = Math.floor(leave1 / (3600 * 1000)); //计算出小时数
  159. //计算相差分钟数
  160. var leave2 = leave1 % (3600 * 1000); //计算小时数后剩余的毫秒数
  161. var minutes = Math.floor(leave2 / (60 * 1000)); //计算相差分钟数
  162. //计算相差秒数
  163. var leave3 = leave2 % (60 * 1000); //计算分钟数后剩余的毫秒数
  164. var seconds = Math.round(leave3 / 1000);
  165. return `持续时长:${dayDiff !== 0 ? dayDiff + "天" : ""}${
  166. hours !== 0 ? hours + "小时" : ""
  167. }${minutes !== 0 ? minutes + "分钟" : ""}${
  168. seconds !== 0 ? seconds + "秒" : ""
  169. }`;
  170. },
  171. // getWindturbineFdc() {
  172. // api.getWindturbineFdc().then((res) => {
  173. // this.station = res.data;
  174. // });
  175. // },
  176. onSelectHandler(values) {
  177. if (this.area === "problem") {
  178. this.$emit("problem-click", values);
  179. } else {
  180. this.$emit("choose-click", values);
  181. }
  182. },
  183. sendMsg: function (itm) {
  184. // this.dialogVisible = true;
  185. this.$emit("on-click", itm);
  186. // this.currentWindturbine = itm;
  187. },
  188. handleClose() {
  189. this.dialogVisible = false;
  190. this.showSvg = false;
  191. },
  192. },
  193. data() {
  194. return {
  195. dialogVisible: false,
  196. showSvg: false,
  197. currentWindturbine: {},
  198. showVlaues: "",
  199. // station: [],
  200. options: {
  201. 8: "检修",
  202. 7: "故障维修",
  203. 2: "场内受累检修",
  204. 3: "场内受累故障",
  205. 4: "场外受累电网",
  206. 5: "场外受累天气",
  207. },
  208. };
  209. },
  210. };
  211. </script>
  212. <style scoped>
  213. .lock {
  214. width: 10px;
  215. height: 10px;
  216. position: relative;
  217. right: 2px;
  218. top: -15px;
  219. }
  220. .durationImg {
  221. width: 15px;
  222. height: 15px;
  223. position: relative;
  224. right: 5px;
  225. top: -15px;
  226. }
  227. .durationImgs {
  228. width: 15px;
  229. height: 15px;
  230. position: relative;
  231. right: 5px;
  232. top: -15px;
  233. }
  234. .lock-on {
  235. width: 0px;
  236. height: 0px;
  237. opacity: 0;
  238. }
  239. .locks:hover .lock-on {
  240. position: fixed;
  241. display: flex;
  242. align-items: center;
  243. width: 80px;
  244. height: 30px;
  245. border: 1px solid #999999;
  246. background-color: #999999;
  247. opacity: 1;
  248. color: #ffffff;
  249. z-index: 999;
  250. }
  251. .duration {
  252. width: 15px;
  253. height: 15px;
  254. position: relative;
  255. visibility: hidden;
  256. }
  257. .unbox-1:hover .duration {
  258. visibility: visible;
  259. }
  260. .unbox-2:hover .duration {
  261. visibility: visible;
  262. }
  263. .unbox-3:hover .duration {
  264. visibility: visible;
  265. }
  266. .unbox-4:hover .duration {
  267. visibility: visible;
  268. }
  269. .unbox-5:hover .duration {
  270. visibility: visible;
  271. }
  272. .unbox-6:hover .duration {
  273. visibility: visible;
  274. }
  275. .unbox-7:hover .duration {
  276. visibility: visible;
  277. }
  278. .lock_input {
  279. width: 140px;
  280. background-color: #292929;
  281. height: 40px;
  282. color: #ffffff;
  283. }
  284. .lock_inputs {
  285. width: 200px;
  286. background-color: #292929;
  287. height: 40px;
  288. color: #ffffff;
  289. }
  290. .box-0 {
  291. width: 135px;
  292. height: 50px;
  293. color: #ffffff;
  294. border: 1px solid rgba(255, 255, 255, 1);
  295. background-color: rgba(255, 255, 255, 0.05);
  296. display: flex;
  297. flex-direction: row;
  298. align-items: center;
  299. margin-right: 5px;
  300. margin-top: 10px;
  301. box-shadow: 0px 0px 6px #ffffff;
  302. }
  303. .unbox-0 {
  304. width: 135px;
  305. height: 50px;
  306. color: #ffffff;
  307. border: 1px solid rgba(255, 255, 255, 1);
  308. background-color: rgba(255, 255, 255, 0.2);
  309. display: flex;
  310. flex-direction: row;
  311. align-items: center;
  312. margin-right: 5px;
  313. margin-top: 10px;
  314. }
  315. .left-0 {
  316. width: 35%;
  317. height: 100%;
  318. font-size: 12px;
  319. color: rgba(255, 255, 255, 1);
  320. font-weight: 600;
  321. line-height: 20px;
  322. display: flex;
  323. flex-direction: column;
  324. justify-content: center;
  325. align-items: center;
  326. }
  327. .unleft-0 {
  328. width: 35%;
  329. height: 100%;
  330. font-size: 12px;
  331. color: rgba(255, 255, 255, 1);
  332. font-weight: 600;
  333. line-height: 20px;
  334. display: flex;
  335. flex-direction: column;
  336. justify-content: center;
  337. align-items: center;
  338. }
  339. .right-0 {
  340. width: 69%;
  341. height: 100%;
  342. font-size: 12px;
  343. color: rgba(255, 255, 255, 1);
  344. line-height: 15px;
  345. display: flex;
  346. flex-direction: column;
  347. justify-content: center;
  348. }
  349. .unright-0 {
  350. width: 69%;
  351. height: 100%;
  352. font-size: 12px;
  353. color: rgba(255, 255, 255, 1);
  354. line-height: 15px;
  355. display: flex;
  356. flex-direction: column;
  357. justify-content: center;
  358. }
  359. .box-1 {
  360. width: 135px;
  361. height: 50px;
  362. color: #ffffff;
  363. border: 1px solid rgba(197, 48, 200, 1);
  364. background-color: rgba(197, 48, 200, 0.05);
  365. display: flex;
  366. flex-direction: row;
  367. align-items: center;
  368. margin-right: 5px;
  369. margin-top: 10px;
  370. box-shadow: 0px 0px 6px #ef3af2;
  371. }
  372. .unbox-1 {
  373. width: 135px;
  374. height: 50px;
  375. color: #ffffff;
  376. border: 1px solid rgba(197, 48, 200, 1);
  377. background-color: rgba(197, 48, 200, 0.2);
  378. display: flex;
  379. flex-direction: row;
  380. align-items: center;
  381. margin-right: 5px;
  382. margin-top: 10px;
  383. }
  384. .left-1 {
  385. width: 35%;
  386. height: 100%;
  387. font-size: 12px;
  388. color: rgba(197, 48, 200, 1);
  389. font-weight: 600;
  390. line-height: 20px;
  391. display: flex;
  392. flex-direction: column;
  393. justify-content: center;
  394. align-items: center;
  395. }
  396. .unleft-1 {
  397. width: 35%;
  398. height: 100%;
  399. font-size: 12px;
  400. color: rgba(197, 48, 200, 1);
  401. font-weight: 600;
  402. line-height: 20px;
  403. display: flex;
  404. flex-direction: column;
  405. justify-content: center;
  406. align-items: center;
  407. }
  408. .right-1 {
  409. width: 69%;
  410. height: 100%;
  411. font-size: 12px;
  412. color: rgba(197, 48, 200, 1);
  413. line-height: 15px;
  414. display: flex;
  415. flex-direction: column;
  416. justify-content: center;
  417. }
  418. .unright-1 {
  419. width: 69%;
  420. height: 100%;
  421. font-size: 12px;
  422. color: rgba(197, 48, 200, 1);
  423. line-height: 15px;
  424. display: flex;
  425. flex-direction: column;
  426. justify-content: center;
  427. }
  428. .box-2 {
  429. width: 135px;
  430. height: 50px;
  431. color: #ffffff;
  432. border: 1px solid rgba(05, 187, 76, 1);
  433. background-color: rgba(05, 187, 76, 0.05);
  434. display: flex;
  435. flex-direction: row;
  436. align-items: center;
  437. margin-right: 5px;
  438. margin-top: 10px;
  439. box-shadow: 0px 0px 6px #09e45e;
  440. }
  441. .unbox-2 {
  442. width: 135px;
  443. height: 50px;
  444. color: #ffffff;
  445. border: 1px solid rgba(05, 187, 76, 1);
  446. background-color: rgba(05, 187, 76, 0.2);
  447. display: flex;
  448. flex-direction: row;
  449. align-items: center;
  450. margin-right: 5px;
  451. margin-top: 10px;
  452. }
  453. .left-2 {
  454. width: 35%;
  455. height: 100%;
  456. font-size: 12px;
  457. color: rgba(05, 187, 76, 1);
  458. font-weight: 600;
  459. line-height: 20px;
  460. display: flex;
  461. flex-direction: column;
  462. justify-content: center;
  463. align-items: center;
  464. }
  465. .unleft-2 {
  466. width: 35%;
  467. height: 100%;
  468. font-size: 12px;
  469. color: rgba(05, 187, 76, 1);
  470. font-weight: 600;
  471. line-height: 20px;
  472. display: flex;
  473. flex-direction: column;
  474. justify-content: center;
  475. align-items: center;
  476. }
  477. .right-2 {
  478. width: 69%;
  479. height: 100%;
  480. font-size: 12px;
  481. color: rgba(05, 187, 76, 1);
  482. line-height: 15px;
  483. display: flex;
  484. flex-direction: column;
  485. justify-content: center;
  486. }
  487. .unright-2 {
  488. width: 69%;
  489. height: 100%;
  490. font-size: 12px;
  491. color: rgba(05, 187, 76, 1);
  492. line-height: 15px;
  493. display: flex;
  494. flex-direction: column;
  495. justify-content: center;
  496. }
  497. .box-3 {
  498. width: 135px;
  499. height: 50px;
  500. color: #ffffff;
  501. border: 1px solid rgba(05, 187, 76, 1);
  502. background-color: rgba(05, 187, 76, 0.05);
  503. display: flex;
  504. flex-direction: row;
  505. align-items: center;
  506. margin-right: 5px;
  507. margin-top: 10px;
  508. box-shadow: 0px 0px 6px #09e45e;
  509. }
  510. .unbox-3 {
  511. width: 135px;
  512. height: 50px;
  513. color: #ffffff;
  514. border: 1px solid rgba(05, 187, 76, 1);
  515. background-color: rgba(05, 187, 76, 0.2);
  516. display: flex;
  517. flex-direction: row;
  518. align-items: center;
  519. margin-right: 5px;
  520. margin-top: 10px;
  521. }
  522. .left-3 {
  523. width: 35%;
  524. height: 100%;
  525. font-size: 12px;
  526. color: rgba(05, 187, 76, 1);
  527. font-weight: 600;
  528. line-height: 20px;
  529. display: flex;
  530. flex-direction: column;
  531. justify-content: center;
  532. align-items: center;
  533. }
  534. .unleft-3 {
  535. width: 35%;
  536. height: 100%;
  537. font-size: 12px;
  538. color: rgba(05, 187, 76, 1);
  539. font-weight: 600;
  540. line-height: 20px;
  541. display: flex;
  542. flex-direction: column;
  543. justify-content: center;
  544. align-items: center;
  545. }
  546. .right-3 {
  547. width: 69%;
  548. height: 100%;
  549. font-size: 12px;
  550. color: rgba(05, 187, 76, 1);
  551. line-height: 15px;
  552. display: flex;
  553. flex-direction: column;
  554. justify-content: center;
  555. }
  556. .unright-3 {
  557. width: 69%;
  558. height: 100%;
  559. font-size: 12px;
  560. color: rgba(05, 187, 76, 1);
  561. line-height: 15px;
  562. display: flex;
  563. flex-direction: column;
  564. justify-content: center;
  565. }
  566. .box-4 {
  567. width: 135px;
  568. height: 50px;
  569. color: #ffffff;
  570. border: 1px solid rgba(75, 85, 174, 1);
  571. background-color: rgba(75, 85, 174, 0.05);
  572. display: flex;
  573. flex-direction: row;
  574. align-items: center;
  575. margin-right: 5px;
  576. margin-top: 10px;
  577. box-shadow: 0px 0px 6px #6876f2;
  578. }
  579. .unbox-4 {
  580. width: 135px;
  581. height: 50px;
  582. color: #ffffff;
  583. border: 1px solid rgba(75, 85, 174, 1);
  584. background-color: rgba(75, 85, 174, 0.2);
  585. display: flex;
  586. flex-direction: row;
  587. align-items: center;
  588. margin-right: 5px;
  589. margin-top: 10px;
  590. }
  591. .left-4 {
  592. width: 35%;
  593. height: 100%;
  594. font-size: 12px;
  595. color: rgba(75, 85, 174, 1);
  596. font-weight: 600;
  597. line-height: 20px;
  598. display: flex;
  599. flex-direction: column;
  600. justify-content: center;
  601. align-items: center;
  602. }
  603. .unleft-4 {
  604. width: 35%;
  605. height: 100%;
  606. font-size: 12px;
  607. color: rgba(75, 85, 174, 1);
  608. font-weight: 600;
  609. line-height: 20px;
  610. display: flex;
  611. flex-direction: column;
  612. justify-content: center;
  613. align-items: center;
  614. }
  615. .right-4 {
  616. width: 69%;
  617. height: 100%;
  618. font-size: 12px;
  619. color: rgba(75, 85, 174, 1);
  620. line-height: 15px;
  621. display: flex;
  622. flex-direction: column;
  623. justify-content: center;
  624. }
  625. .unright-4 {
  626. width: 69%;
  627. height: 100%;
  628. font-size: 12px;
  629. color: rgba(75, 85, 174, 1);
  630. line-height: 15px;
  631. display: flex;
  632. flex-direction: column;
  633. justify-content: center;
  634. }
  635. .box-5 {
  636. width: 135px;
  637. height: 50px;
  638. color: #ffffff;
  639. border: 1px solid rgba(186, 50, 55, 1);
  640. background-color: rgba(186, 50, 55, 0.05);
  641. display: flex;
  642. flex-direction: row;
  643. align-items: center;
  644. margin-right: 5px;
  645. margin-top: 10px;
  646. box-shadow: 0px 0px 6px #ff1313;
  647. }
  648. @keyframes fade {
  649. from {
  650. opacity: 1;
  651. }
  652. 50% {
  653. opacity: 0.6;
  654. }
  655. to {
  656. opacity: 1;
  657. }
  658. }
  659. @-webkit-keyframes fade {
  660. from {
  661. opacity: 1;
  662. }
  663. 50% {
  664. opacity: 0.6;
  665. }
  666. to {
  667. opacity: 1;
  668. }
  669. }
  670. .unbox-flashing-5 {
  671. width: 135px;
  672. height: 50px;
  673. color: #ffffff;
  674. border: 1px solid rgba(186, 50, 55, 1);
  675. background-color: rgba(186, 50, 55, 0.2);
  676. display: flex;
  677. flex-direction: row;
  678. align-items: center;
  679. margin-right: 5px;
  680. margin-top: 10px;
  681. animation: fade 1600ms infinite;
  682. -webkit-animation: fade 1600ms infinite;
  683. }
  684. .unbox-5 {
  685. width: 135px;
  686. height: 50px;
  687. color: #ffffff;
  688. border: 1px solid rgba(186, 50, 55, 1);
  689. background-color: rgba(186, 50, 55, 0.2);
  690. display: flex;
  691. flex-direction: row;
  692. align-items: center;
  693. margin-right: 5px;
  694. margin-top: 10px;
  695. }
  696. .left-5 {
  697. width: 35%;
  698. height: 100%;
  699. font-size: 12px;
  700. color: rgba(186, 50, 55, 1);
  701. font-weight: 600;
  702. line-height: 20px;
  703. display: flex;
  704. flex-direction: column;
  705. justify-content: center;
  706. align-items: center;
  707. }
  708. .unleft-5 {
  709. width: 35%;
  710. height: 100%;
  711. font-size: 12px;
  712. color: rgba(186, 50, 55, 1);
  713. font-weight: 600;
  714. line-height: 20px;
  715. display: flex;
  716. flex-direction: column;
  717. justify-content: center;
  718. align-items: center;
  719. }
  720. .right-5 {
  721. width: 69%;
  722. height: 100%;
  723. font-size: 12px;
  724. color: rgba(186, 50, 55, 1);
  725. line-height: 15px;
  726. display: flex;
  727. flex-direction: column;
  728. justify-content: center;
  729. }
  730. .unright-5 {
  731. width: 69%;
  732. height: 100%;
  733. font-size: 12px;
  734. color: rgba(186, 50, 55, 1);
  735. line-height: 15px;
  736. display: flex;
  737. flex-direction: column;
  738. justify-content: center;
  739. }
  740. .box-6 {
  741. width: 135px;
  742. height: 50px;
  743. color: #ffffff;
  744. border: 1px solid rgba(225, 125, 36, 1);
  745. background-color: rgba(225, 125, 36, 0.05);
  746. display: flex;
  747. flex-direction: row;
  748. align-items: center;
  749. margin-right: 5px;
  750. margin-top: 10px;
  751. box-shadow: 0px 0px 6px #f28627;
  752. }
  753. .unbox-6 {
  754. width: 135px;
  755. height: 50px;
  756. color: #ffffff;
  757. border: 1px solid rgba(225, 125, 36, 1);
  758. background-color: rgba(225, 125, 36, 0.2);
  759. display: flex;
  760. flex-direction: row;
  761. align-items: center;
  762. margin-right: 5px;
  763. margin-top: 10px;
  764. }
  765. .left-6 {
  766. width: 35%;
  767. height: 100%;
  768. font-size: 12px;
  769. color: rgba(225, 125, 36, 1);
  770. font-weight: 600;
  771. line-height: 20px;
  772. display: flex;
  773. flex-direction: column;
  774. justify-content: center;
  775. align-items: center;
  776. }
  777. .unleft-6 {
  778. width: 35%;
  779. height: 100%;
  780. font-size: 12px;
  781. color: rgba(225, 125, 36, 1);
  782. font-weight: 600;
  783. line-height: 20px;
  784. display: flex;
  785. flex-direction: column;
  786. justify-content: center;
  787. align-items: center;
  788. }
  789. .right-6 {
  790. width: 69%;
  791. height: 100%;
  792. font-size: 12px;
  793. color: rgba(225, 125, 36, 1);
  794. line-height: 15px;
  795. display: flex;
  796. flex-direction: column;
  797. justify-content: center;
  798. }
  799. .unright-6 {
  800. width: 69%;
  801. height: 100%;
  802. font-size: 12px;
  803. color: rgba(225, 125, 36, 1);
  804. line-height: 15px;
  805. display: flex;
  806. flex-direction: column;
  807. justify-content: center;
  808. }
  809. .box-7 {
  810. width: 135px;
  811. height: 50px;
  812. color: #ffffff;
  813. border: 1px solid rgba(96, 103, 105, 1);
  814. background-color: rgba(96, 103, 105, 0.05);
  815. display: flex;
  816. flex-direction: row;
  817. align-items: center;
  818. margin-right: 5px;
  819. margin-top: 10px;
  820. box-shadow: 0px 0px 6px #ffffff;
  821. }
  822. .unbox-7 {
  823. width: 135px;
  824. height: 50px;
  825. color: #ffffff;
  826. border: 1px solid rgba(96, 103, 105, 1);
  827. background-color: rgba(96, 103, 105, 0.2);
  828. display: flex;
  829. flex-direction: row;
  830. align-items: center;
  831. margin-right: 5px;
  832. margin-top: 10px;
  833. }
  834. .left-7 {
  835. width: 35%;
  836. height: 100%;
  837. font-size: 12px;
  838. color: rgba(96, 103, 105, 1);
  839. font-weight: 600;
  840. line-height: 20px;
  841. display: flex;
  842. flex-direction: column;
  843. justify-content: center;
  844. align-items: center;
  845. }
  846. .unleft-7 {
  847. width: 35%;
  848. height: 100%;
  849. font-size: 12px;
  850. color: rgba(96, 103, 105, 1);
  851. font-weight: 600;
  852. line-height: 20px;
  853. display: flex;
  854. flex-direction: column;
  855. justify-content: center;
  856. align-items: center;
  857. }
  858. .right-7 {
  859. width: 69%;
  860. height: 100%;
  861. font-size: 12px;
  862. color: rgba(96, 103, 105, 1);
  863. line-height: 15px;
  864. display: flex;
  865. flex-direction: column;
  866. justify-content: center;
  867. }
  868. .unright-7 {
  869. width: 69%;
  870. height: 100%;
  871. font-size: 12px;
  872. color: rgba(96, 103, 105, 1);
  873. line-height: 15px;
  874. display: flex;
  875. flex-direction: column;
  876. justify-content: center;
  877. }
  878. </style>