index.vue 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252
  1. <template>
  2. <customHeader>预警监测管控系统</customHeader>
  3. <div class="sensor-container">
  4. <div class="lr left-box">
  5. <ventBox1>
  6. <template #title>
  7. <div class="monitor-title" @click="showModal('vent')">通风监测</div>
  8. </template>
  9. <template #container>
  10. <!-- <div ref="alarmCounts" style="height: 160px" id="alarmCounts"></div> -->
  11. <div class="vent-param">
  12. <div class="light-group">
  13. <div class="param-item">
  14. <div class="param">
  15. <div class="param-icon">
  16. <div class="param-title">总进风量</div>
  17. <div class="param-unit">(m³/min)</div>
  18. </div>
  19. <div class="param-val-box">
  20. <div class="param-val-icon"></div>
  21. <div class="param-val">{{ windData.jf || 0 }}</div>
  22. </div>
  23. </div>
  24. </div>
  25. <div class="param-item">
  26. <div class="param">
  27. <div class="param-icon">
  28. <div class="param-title">总回风量</div>
  29. <div class="param-unit">(m³/min)</div>
  30. </div>
  31. <div class="param-val-box">
  32. <div class="param-val-icon"></div>
  33. <div class="param-val">{{ windData.hf || 0 }}</div>
  34. </div>
  35. </div>
  36. </div>
  37. <div class="param-item">
  38. <div class="param">
  39. <div class="param-icon">
  40. <div class="param-title">总需风量</div>
  41. <div class="param-unit">(m³/min)</div>
  42. </div>
  43. <div class="param-val-box">
  44. <div class="param-val-icon"></div>
  45. <div class="param-val">{{ windData.xf || 0 }}</div>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. <!-- <div ref="alarmCounts" style="height: 225px" id="alarmCounts"></div> -->
  52. <BarSingle
  53. :xAxisData="xAxisData"
  54. :dataSource="windData.levels"
  55. height="225px"
  56. :chartsColumns="chartsColumns"
  57. :option="option"
  58. :color="colors"
  59. :fontColor="fontColor"
  60. />
  61. </template>
  62. </ventBox1>
  63. <ventBox1 class="vent-margin-t-10">
  64. <template #title>
  65. <div class="monitor-title" @click="showModal('sbyj')">设备预警监测</div>
  66. </template>
  67. <template #container>
  68. <div class="icons-box" @mouseleave="resetScroll">
  69. <div class="icon-item" v-for="(item, key) in iconsMonitor" :key="key">
  70. <div class="wrapper">
  71. {{ item.text }}
  72. </div>
  73. <div></div>
  74. <img :src="item.url" :alt="item.text" />
  75. <div
  76. class="level-text"
  77. :class="{
  78. 'level-text-1': item.level == 101,
  79. 'level-text-2': item.level == 102,
  80. 'level-text-3': item.level == 103,
  81. 'level-text-4': item.level == 104,
  82. 'level-text-5': item.level == 201,
  83. }"
  84. >{{
  85. item.level == 101
  86. ? '正常'
  87. : item.level == 102
  88. ? '低风险'
  89. : item.level == 103
  90. ? '中风险'
  91. : item.level == 104
  92. ? '高风险'
  93. : item.level == 201
  94. ? '报警'
  95. : ''
  96. }}</div
  97. >
  98. </div>
  99. </div>
  100. </template>
  101. </ventBox1>
  102. </div>
  103. <div class="center-box">
  104. <div class="animation-box">
  105. <canvas class="rain"></canvas>
  106. <div
  107. class="bottom"
  108. :class="{
  109. bottom1: centerData.levels == 101,
  110. bottom2: centerData.levels == 102,
  111. bottom3: centerData.levels == 103,
  112. bottom4: centerData.levels == 104,
  113. bottom5: centerData.levels == 201,
  114. }"
  115. >
  116. <div class="animation1">
  117. <div class="ball"></div>
  118. <svg xmlns="http://www.w3.org/2000/svg" width="375.334" height="77.559" viewBox="0 0 375.334 77.559" style="opacity: 0.5">
  119. <g id="组_14135" data-name="组 14135" transform="translate(-755.058 -139.886)">
  120. <path
  121. id="椭圆_2595"
  122. data-name="椭圆 2595"
  123. d="M186.917-.75c12.711,0,25.415.263,37.757.783,12.03.506,23.863,1.262,35.171,2.245,11.1.966,21.816,2.161,31.835,3.553,9.928,1.379,19.265,2.963,27.751,4.709s16.2,3.668,22.92,5.713A120.653,120.653,0,0,1,359.7,22.825a40.842,40.842,0,0,1,11.018,7.3c2.568,2.581,3.87,5.239,3.87,7.9s-1.3,5.322-3.87,7.9a40.842,40.842,0,0,1-11.018,7.3,120.653,120.653,0,0,1-17.345,6.572c-6.716,2.044-14.428,3.966-22.92,5.713s-17.823,3.329-27.751,4.709c-10.02,1.392-20.731,2.588-31.835,3.553-11.308.984-23.142,1.739-35.171,2.245-12.343.519-25.046.783-37.757.783s-25.415-.263-37.757-.783c-12.03-.506-23.863-1.262-35.171-2.245-11.1-.966-21.816-2.161-31.835-3.553-9.928-1.379-19.265-2.963-27.751-4.709s-16.2-3.668-22.92-5.713a120.652,120.652,0,0,1-17.345-6.572,40.841,40.841,0,0,1-11.018-7.3c-2.568-2.581-3.87-5.239-3.87-7.9s1.3-5.322,3.87-7.9a40.842,40.842,0,0,1,11.018-7.3,120.651,120.651,0,0,1,17.345-6.572C38.2,14.208,45.91,12.286,54.4,10.54S72.225,7.211,82.153,5.831c10.02-1.392,20.731-2.588,31.835-3.553C125.3,1.294,137.13.539,149.16.033,161.5-.487,174.206-.75,186.917-.75Zm0,76.98c49.941,0,96.885-4,132.186-11.257,17.134-3.523,30.578-7.623,39.96-12.184,9.642-4.688,14.53-9.653,14.53-14.759s-4.889-10.072-14.53-14.759c-9.382-4.561-22.826-8.66-39.96-12.184C283.8,3.827,236.858-.171,186.917-.171s-96.885,4-132.186,11.257C37.6,14.61,24.153,18.709,14.771,23.27,5.129,27.958.241,32.923.241,38.029S5.129,48.1,14.771,52.789c9.382,4.561,22.826,8.661,39.96,12.184C90.032,72.232,136.976,76.23,186.917,76.23Z"
  124. transform="translate(755.808 140.636)"
  125. fill="#28a6ff"
  126. opacity="0.7"
  127. />
  128. </g>
  129. </svg>
  130. </div>
  131. <div class="animation2">
  132. <div class="ball1"></div>
  133. <svg xmlns="http://www.w3.org/2000/svg" width="414.878" height="91.7" viewBox="0 0 414.878 91.7">
  134. <g id="组_14136" data-name="组 14136" transform="translate(-721.822 -158.273)">
  135. <path
  136. id="椭圆_2595"
  137. data-name="椭圆 2595"
  138. d="M206.689-.75c14.05,0,28.092.311,41.735.925,13.3.6,26.377,1.492,38.877,2.655,12.275,1.142,24.114,2.555,35.189,4.2,10.974,1.631,21.294,3.5,30.674,5.567s17.91,4.337,25.335,6.754a128.134,128.134,0,0,1,19.172,7.771,45.082,45.082,0,0,1,12.178,8.633c2.838,3.051,4.278,6.195,4.278,9.344s-1.439,6.293-4.278,9.344a45.082,45.082,0,0,1-12.178,8.633A128.134,128.134,0,0,1,378.5,70.847c-7.424,2.417-15.948,4.69-25.335,6.754s-19.7,3.936-30.674,5.567c-11.075,1.646-22.915,3.059-35.189,4.2-12.5,1.163-25.58,2.056-38.877,2.655-13.643.614-27.685.925-41.735.925s-28.092-.311-41.735-.925c-13.3-.6-26.377-1.492-38.877-2.655-12.275-1.142-24.114-2.555-35.189-4.2-10.974-1.631-21.294-3.5-30.674-5.567S42.3,73.265,34.879,70.847a128.133,128.133,0,0,1-19.173-7.771A45.082,45.082,0,0,1,3.528,54.444C.689,51.393-.75,48.249-.75,45.1s1.439-6.293,4.278-9.344a45.083,45.083,0,0,1,12.178-8.633,128.133,128.133,0,0,1,19.173-7.771c7.424-2.417,15.948-4.69,25.335-6.754s19.7-3.936,30.674-5.567c11.075-1.646,22.915-3.059,35.189-4.2,12.5-1.163,25.58-2.056,38.877-2.655C178.6-.439,192.639-.75,206.689-.75Zm0,91.015c55.2,0,107.093-4.727,146.113-13.31,18.939-4.166,33.8-9.012,44.17-14.405,10.657-5.542,16.061-11.413,16.061-17.45s-5.4-11.908-16.061-17.45c-10.37-5.393-25.231-10.24-44.17-14.405C313.782,4.662,261.892-.065,206.689-.065S99.6,4.662,60.576,13.244c-18.939,4.166-33.8,9.012-44.17,14.405C5.749,33.192.345,39.063.345,45.1s5.4,11.908,16.061,17.45c10.37,5.393,25.231,10.24,44.17,14.405C99.6,85.538,151.487,90.265,206.689,90.265Z"
  139. transform="translate(722.572 159.023)"
  140. fill="#3dd8ff"
  141. opacity="0.5"
  142. />
  143. </g>
  144. </svg>
  145. </div>
  146. <div class="text-box">
  147. <div class="text1">{{
  148. centerData.levels == 101
  149. ? '正常'
  150. : centerData.levels == 102
  151. ? '低风险'
  152. : centerData.levels == 103
  153. ? '中风险'
  154. : centerData.levels == 104
  155. ? '高风险'
  156. : centerData.levels == 201
  157. ? '报警'
  158. : '--'
  159. }}</div>
  160. <div class="text2">风险分析</div>
  161. </div>
  162. <div class="icon-animation"></div>
  163. </div>
  164. <div class="total-item-monitor-box">
  165. <div class="item item1">
  166. <div class="icon-box">
  167. <div class="icon"></div>
  168. </div>
  169. <div class="item-monitor-box">
  170. <span class="title">火灾监测</span>
  171. <span class="value value1">{{ centerData.fire }}</span>
  172. </div>
  173. </div>
  174. <div class="item item2">
  175. <div class="icon-box">
  176. <div class="icon"></div>
  177. </div>
  178. <div class="item-monitor-box">
  179. <span class="title">设备监测</span>
  180. <span class="value value">{{ centerData.sb }}</span>
  181. </div>
  182. </div>
  183. <div class="item item3">
  184. <div class="icon-box">
  185. <div class="icon"></div>
  186. </div>
  187. <div class="item-monitor-box">
  188. <span class="title">瓦斯监测</span>
  189. <span class="value">{{ centerData.ws }}</span>
  190. <div class="">
  191. <span class="title">矿井瓦斯鉴定等级监测</span>
  192. <span class="value">低瓦斯</span>
  193. </div>
  194. </div>
  195. </div>
  196. <div class="item item4">
  197. <div class="icon-box">
  198. <div class="icon"></div>
  199. </div>
  200. <div class="item-monitor-box">
  201. <span class="title">粉尘监测</span>
  202. <span class="value">{{ centerData.fc }}</span>
  203. </div>
  204. </div>
  205. <div class="item item5">
  206. <div class="icon-box">
  207. <div class="icon"></div>
  208. </div>
  209. <div class="item-monitor-box">
  210. <span class="title">通风监测</span>
  211. <span class="value">{{ centerData.tf }}</span>
  212. </div>
  213. </div>
  214. </div>
  215. </div>
  216. <div class="fire-monitor">
  217. <div class="monitor-title top" @click="showModal('fire')">火灾监测</div>
  218. <div class="container">
  219. <div class="item item1">
  220. <div class="icon"></div>
  221. <div class="data-box" v-for="(item, index) in fireMonitor1" :key="index">
  222. <div class="value" :style="{ color: item.value == '报警' ? '#ff0000' : '' }">{{ item.value }} </div>
  223. <div class="title">{{ item.title }}</div>
  224. </div>
  225. </div>
  226. <div class="item">
  227. <div class="icon"></div>
  228. <div class="data-box" v-for="(item, index) in fireMonitor" :key="index">
  229. <div class="value"> {{ item.value }} </div>
  230. <div class="title">{{ item.title }}</div>
  231. </div>
  232. </div>
  233. </div>
  234. <div class="bottom"></div>
  235. </div>
  236. </div>
  237. <div class="lr right-box">
  238. <ventBox1>
  239. <template #title>
  240. <div class="monitor-title" @click="showModal('dust')">粉尘监测</div>
  241. </template>
  242. <template #container>
  243. <!-- <div ref="alarmCounts" style="height: 160px" id="alarmCounts"></div> -->
  244. <div class="dust-monitor">
  245. <div v-for="(item, index) in dustMonitor" :key="index" class="item-box">
  246. <div class="title">{{ item.title }}</div>
  247. <div class="value">0个</div>
  248. </div>
  249. </div>
  250. <!-- <div ref="alarmCounts" style="height: 225px" id="alarmCounts"></div> -->
  251. <BarSingle
  252. :xAxisData="xAxisData"
  253. :dataSource="dustData.levels"
  254. height="225px"
  255. :chartsColumns="chartsColumns"
  256. :option="option"
  257. :color="colors"
  258. :fontColor="fontColor"
  259. />
  260. </template>
  261. </ventBox1>
  262. <ventBox1 class="vent-margin-t-10">
  263. <template #title>
  264. <div class="monitor-title" @click="showModal('gas')">瓦斯监测</div>
  265. </template>
  266. <template #container>
  267. <div class="gas-box">
  268. <div class="gas-item">
  269. <div class="top">
  270. <div class="value">10</div>
  271. <div class="title">安全监测系统监测点</div>
  272. </div>
  273. <div class="detail-box">
  274. <div class="detail-item" v-for="(item, index) in gasMonitor" :key="index">
  275. <div class="">{{ item.title }}</div>
  276. <div class="value">10</div>
  277. </div>
  278. </div>
  279. </div>
  280. <div class="gas-item">
  281. <div class="top">
  282. <div class="value">10</div>
  283. <div class="title">瓦斯巡检系统监测点</div>
  284. </div>
  285. <div class="detail-box">
  286. <div class="detail-item" v-for="(item, index) in gasMonitor" :key="index">
  287. <div class="">{{ item.title }}</div>
  288. <div class="value">10</div>
  289. </div>
  290. </div>
  291. </div>
  292. </div>
  293. </template>
  294. </ventBox1>
  295. </div>
  296. </div>
  297. <DetailModal v-if="isShowDialog" v-model:visible="modalVisible" :monitor-data="dataSource" @register="register" @close="hideModal" />
  298. <!-- 火灾监测弹框 -->
  299. <DetailModalFire v-else v-model:visible="modalVisible" @register="register" :moduleName="moduleName" @close="hideModal" />
  300. </template>
  301. <script setup lang="ts">
  302. import { ref, onMounted, onUnmounted, reactive } from 'vue';
  303. import customHeader from '/@/views/vent/comment/components/customHeader.vue';
  304. import DetailModal from './DetailModal.vue';
  305. import DetailModalFire from './DetailModalFire.vue'; //火灾监测弹窗
  306. import { warningList, getTotalList } from './alarm.api';
  307. import {
  308. iconsMonitor,
  309. chartsColumns,
  310. xAxisData,
  311. option,
  312. colors,
  313. fontColor,
  314. dustMonitor,
  315. gasMonitor,
  316. fireMonitor,
  317. fireMonitor1,
  318. } from './alarm.data';
  319. import ventBox1 from '/@/components/vent/ventBox1.vue';
  320. import BarSingle from '../../../../components/chart/BarSingle.vue';
  321. import { rainBg } from '/@/utils/ui.js';
  322. import { useModal } from '/@/components/Modal';
  323. let isShowDialog = ref(true); //切换弹窗显示
  324. let moduleName = ref<any>(''); //火灾、粉尘、瓦斯模块名
  325. const alarmCounts = ref();
  326. const dataSource = ref([]);
  327. const modalVisible = ref(false);
  328. const resetScroll = (e: Event) => {
  329. if (e.target && e.target) (e.target as Element).scrollTop = 0;
  330. };
  331. let windData = reactive({
  332. levels: {},
  333. jf: 0,
  334. hf: 0,
  335. xf: 0,
  336. }); //通风监测数据
  337. let dustData = reactive({
  338. //粉尘监测数据
  339. levels: {},
  340. });
  341. let centerData = reactive({
  342. fire: '',
  343. tf: '',
  344. ws: '',
  345. sb: '',
  346. fc: '',
  347. levels: 0,
  348. });
  349. const [register, { openModal }] = useModal();
  350. function showModal(data) {
  351. isShowDialog.value =data == 'sbyj' ? true : false;
  352. moduleName.value = data;
  353. modalVisible.value = true;
  354. openModal();
  355. }
  356. function hideModal() {
  357. modalVisible.value = false;
  358. }
  359. // https获取监测数据
  360. let timer: null | NodeJS.Timeout = null;
  361. function getMonitor(flag = false) {
  362. if (Object.prototype.toString.call(timer) === '[object Null]') {
  363. timer = setTimeout(
  364. async () => {
  365. await getDataSource();
  366. await getList();
  367. if (timer) {
  368. timer = null;
  369. }
  370. getMonitor();
  371. },
  372. flag ? 0 : 1000
  373. );
  374. }
  375. }
  376. async function getDataSource() {
  377. const res = await warningList({ isok: 0 });
  378. dataSource.value = res.list || [];
  379. // if(dataSource.value.length > 0){
  380. // dataSource.value.map((data: any) => {
  381. // const readData = data.readData;
  382. // data = Object.assign(data, readData);
  383. // return data;
  384. // });
  385. // }
  386. }
  387. // 获取预警数据
  388. async function getList() {
  389. const res = await getTotalList({});
  390. console.log(res, '预警数据--------------');
  391. let data = [];
  392. windData.levels = res.info.sysInfo.ventS.levels;
  393. windData.jf = res.ventInfo.zongfengliang;
  394. windData.hf = res.ventInfo.zonghuifeng;
  395. windData.xf = res.ventInfo.xufengliang;
  396. dustData.levels = res.info.sysInfo.dustS.levels;
  397. centerData.fire = res.info.sysInfo.fireS.status;
  398. centerData.tf = res.info.sysInfo.ventS.status;
  399. centerData.ws = res.info.sysInfo.gasS.status;
  400. centerData.sb = res.info.sysInfo.synthesizeS.status;
  401. centerData.fc = res.info.sysInfo.dustS.status;
  402. Object.keys(res.info.sysInfo).forEach((v) => {
  403. data.push(res.info.sysInfo[v].maxLevel);
  404. });
  405. data = data.sort((a, b) => b - a);
  406. centerData.levels = data[0];
  407. Object.keys(iconsMonitor).forEach((el) => {
  408. iconsMonitor[el].level = res.info.devicekindInfo[el].maxLevel;
  409. });
  410. fireMonitor[0].value = res.info.sysInfo.fireS.summaryInfo.external.temperature.value;
  411. fireMonitor[1].value = res.info.sysInfo.fireS.summaryInfo.external.coval.value;
  412. fireMonitor[2].value = res.info.sysInfo.fireS.summaryInfo.external.chval.value;
  413. fireMonitor[3].value = res.info.sysInfo.fireS.summaryInfo.external.ch2val.value;
  414. fireMonitor[4].value = res.info.sysInfo.fireS.summaryInfo.external.co2val.value;
  415. fireMonitor[5].value = res.info.sysInfo.fireS.summaryInfo.external.o2val.value;
  416. fireMonitor1[0].value = res.info.sysInfo.fireS.summaryInfo.internal.coval.value;
  417. fireMonitor1[1].value = res.info.sysInfo.fireS.summaryInfo.internal.chval.value;
  418. fireMonitor1[2].value = res.info.sysInfo.fireS.summaryInfo.internal.ch2val.value;
  419. fireMonitor1[3].value = res.info.sysInfo.fireS.summaryInfo.internal.co2val.value;
  420. fireMonitor1[4].value = res.info.sysInfo.fireS.summaryInfo.internal.o2val.value;
  421. }
  422. onMounted(async () => {
  423. getMonitor(true);
  424. rainBg('rain', 'animation-box');
  425. });
  426. onUnmounted(() => {
  427. if (timer) {
  428. clearTimeout(timer);
  429. timer = undefined;
  430. }
  431. });
  432. </script>
  433. <style lang="less" scoped>
  434. @import '/@/design/vent/color.less';
  435. @a : 370px; // 椭圆x轴半径(长半径)
  436. @b : 107px; // 椭圆y轴半径(短半径)
  437. @s : 40; // 坐标点的数目(数目越大,动画越精细)
  438. @bg: #e6e2df;
  439. .loop(@index) when (@index < @s + 1) {
  440. .loop((@index + 1));
  441. @keyframeSel: @index * 100% ./ @s;
  442. @{keyframeSel}{ transform: translate(@a * (cos(360deg ./ @s * @index)), @b * (sin(360deg ./ @s * @index)));}
  443. }
  444. .sensor-container {
  445. width: 100%;
  446. height: calc(100% - 86px);
  447. display: flex;
  448. position: relative;
  449. top: 78px;
  450. .lr{
  451. width: 650px;
  452. height: 100%;
  453. // background-color: #ffffff10;
  454. }
  455. .left-box{
  456. .vent-param {
  457. width: 100%;
  458. margin-top: 10px;
  459. .light-group {
  460. display: flex;
  461. flex-direction: row;
  462. justify-content: space-between;
  463. position: relative;
  464. .param-item {
  465. width: 150px;
  466. display: flex;
  467. flex-direction: column;
  468. justify-content: center;
  469. align-items: center;
  470. position: reactive;
  471. .icon {
  472. display: block;
  473. position: absolute;
  474. top: -5px;
  475. }
  476. .param {
  477. display: flex;
  478. flex-direction: column;
  479. justify-content: center;
  480. align-items: center;
  481. .param-icon {
  482. width: 121px;
  483. height: 69px;
  484. background: url('/@/assets/images/vent/vent-param-bg.png');
  485. display: flex;
  486. flex-direction: column;
  487. justify-content: center;
  488. align-items: center;
  489. position: relative;
  490. top: -20px;
  491. margin-top: 10px;
  492. .param-title {
  493. position: relative;
  494. top: -4px;
  495. }
  496. .param-unit {
  497. position: relative;
  498. top: -2px;
  499. font-size: 12px;
  500. }
  501. }
  502. .param-val-box {
  503. display: flex;
  504. flex-direction: column;
  505. justify-content: center;
  506. align-items: center;
  507. position: relative;
  508. top: -20px;
  509. .param-val-icon {
  510. width: 2px;
  511. height: 15px;
  512. background: #00d8ff;
  513. position: relative;
  514. &::after {
  515. content: '';
  516. display: block;
  517. position: absolute;
  518. width: 6px;
  519. height: 6px;
  520. border-radius: 3px;
  521. background: #00d8ff;
  522. bottom: -2px;
  523. left: -2px;
  524. }
  525. }
  526. .param-val {
  527. position: relative;
  528. font-family: 'douyuFont';
  529. // color: #20dbfd;
  530. text-shadow: 0 0 25px #00d8ff;
  531. font-size: 13px;
  532. border: 1px solid #40B7F3;
  533. padding: 5px 30px 2px 30px;
  534. top: 2px;
  535. &::after {
  536. width: calc(100% - 4px);
  537. height: calc(100% - 4px);
  538. content: '';
  539. position: absolute;
  540. top: 2px;
  541. left: 2px;
  542. display: block;
  543. border: 1px solid #006EA6;
  544. }
  545. }
  546. }
  547. }
  548. }
  549. }
  550. }
  551. .icons-box{
  552. display: flex;
  553. flex-wrap: wrap;
  554. max-height: 365px;
  555. overflow-y: hidden;
  556. // align-items: start ;
  557. &:hover {
  558. overflow-y: auto;
  559. & > .icon-item{
  560. animation-play-state: paused;
  561. animation: move1 2s linear;
  562. }
  563. }
  564. .icon-item{
  565. position: relative;
  566. display: flex;
  567. align-items: center;
  568. justify-content: center;
  569. padding: 3px;
  570. animation: move 10s linear infinite;
  571. .level-text{
  572. position: absolute;
  573. top: 51px;
  574. right: 25px;
  575. color: #fff;
  576. font-family: 'douyuFont';
  577. font-size: 12px;
  578. }
  579. .level-text-1{
  580. color: rgb(0, 242, 255);
  581. text-shadow: 2px 2px 4px #001c22;
  582. }
  583. .level-text-2{
  584. color: #ffff35;
  585. text-shadow: 2px 2px 4px #313100;
  586. }
  587. .level-text-3{
  588. color: #ffbe69;
  589. text-shadow: 2px 2px 4px #271600;
  590. }
  591. .level-text-4{
  592. color: #ff6f00;
  593. // color: #09caff;
  594. text-shadow: 2px 2px 4px #060200;
  595. }
  596. .level-text-5{
  597. color: #ff0000;
  598. text-shadow: 2px 2px 4px #200000;
  599. }
  600. img{
  601. width: 227px;
  602. height: 79px;
  603. }
  604. }
  605. .wrapper {
  606. position: absolute;
  607. top: 48px;
  608. left: 82px;
  609. color: #ffffffe0;
  610. font-size: 13px;
  611. text-align: center;
  612. letter-spacing: 1px;
  613. }
  614. }
  615. @keyframes move {
  616. 0% {
  617. transform: translateY(0px);
  618. }
  619. 100% {
  620. transform: translateY(-269px);
  621. }
  622. }
  623. @keyframes move1 {
  624. 0% {
  625. transform: translateY(0px);
  626. }
  627. }
  628. }
  629. .center-box{
  630. width: calc(100% - 710px);
  631. // background-color: #ffffff10;
  632. margin: 0 8px;
  633. display: flex;
  634. flex-direction: column;
  635. justify-content: flex-end;
  636. .fire-monitor{
  637. display: flex;
  638. flex-direction: column;
  639. width: 100%;
  640. position: relative;
  641. .top{
  642. width: 100%;
  643. height: 35px;
  644. background: url('/@/assets/images/vent/box-top-bg.png');
  645. background-size: 100% 100%;
  646. text-align: center;
  647. color: #fff;
  648. padding-top: 6px;
  649. }
  650. .container{
  651. width: calc(100% - 2px);
  652. min-height: 50px;
  653. padding: 0 10px;
  654. color: #fff;
  655. background-color: #00213236;
  656. backdrop-filter: blur(5px);
  657. &::before{
  658. content: '';
  659. display: block;
  660. position: absolute;
  661. top: 5px;
  662. left: 0;
  663. width: 1px;
  664. height: calc(100% - 10px);
  665. background-image: linear-gradient(#3DF6FF00, #3DF6FF, #3DF6FF00);
  666. }
  667. &::after{
  668. content: '';
  669. display: block;
  670. position: absolute;
  671. right: 0;
  672. top: 5px;
  673. width: 1px;
  674. height: calc(100% - 10px);
  675. background: linear-gradient(#3DF6FF00, #3DF6FF, #3DF6FF00);
  676. }
  677. .item{
  678. height: 130px;
  679. width: 100%;
  680. position: relative;
  681. top: -10px;
  682. display: flex;
  683. // justify-content: space-between;
  684. align-content: center;
  685. padding-top: 50px;
  686. &::before{
  687. content: '';
  688. width: 100%;
  689. height: 150px;
  690. position: absolute;
  691. top: 0px;
  692. background: url('/@/assets/images/vent/fire-bg-top.png');
  693. background-size: 100% 100%;
  694. }
  695. .icon{
  696. width: 82px;
  697. height: 36px;
  698. margin: 0 20px 0 50px;
  699. background: url('/@/assets/images/vent/icon-bottom-bg.png');
  700. position: relative;
  701. top: 30px;
  702. &::after{
  703. position: absolute;
  704. content: '';
  705. width: 50px;
  706. height: 50px;
  707. top: -25px;
  708. left: 20px;
  709. background: url('/@/assets/images/vent/outer-icon.svg') no-repeat;
  710. }
  711. }
  712. .data-box{
  713. display: flex;
  714. flex-direction: column;
  715. // margin: 0 10px;
  716. width: 118px;
  717. .value{
  718. font-size: 16px;
  719. font-family: 'douyuFont';
  720. color: #2bdcff;
  721. margin-bottom: 5px;
  722. }
  723. .title{
  724. font-size: 13px;
  725. }
  726. }
  727. }
  728. .item1{
  729. top: -10px;
  730. &::before{
  731. transform:matrix(1,0,0,-1,0,0);
  732. }
  733. .icon{
  734. &::after{
  735. background: url('/@/assets/images/vent/inner-icon.svg') no-repeat;
  736. }
  737. }
  738. }
  739. }
  740. .bottom{
  741. width: 100%;
  742. height: 35px;
  743. background: url('/@/assets/images/vent/box-bottom-bg.png');
  744. background-size: 100% 100%;
  745. position: absolute;
  746. bottom: 0;
  747. }
  748. }
  749. .animation-box{
  750. height: fit-content;
  751. flex: 1;
  752. margin-bottom: 10px;
  753. background: url('/@/assets/images/vent/alarm/center-bg.png');
  754. background-size: contain;
  755. background-position: center;
  756. display: flex;
  757. flex-direction: column;
  758. align-items: center;
  759. position: relative;
  760. top: 45px;
  761. .rain{
  762. position: absolute;
  763. }
  764. .bottom{
  765. width: 528px;
  766. height: 395px;
  767. background-repeat: no-repeat;
  768. position: absolute;
  769. z-index: 999;
  770. &::before{
  771. content: '';
  772. width: 325px;
  773. height: 379px;
  774. position: absolute;
  775. left: 105px;
  776. top: -60px;
  777. background: url('/@/assets/images/vent/alarm/warning-bg.png') no-repeat;
  778. }
  779. .animation1{
  780. width: 390px;
  781. height: 78px;
  782. position: absolute;
  783. top: -30px;
  784. left: 80px;
  785. z-index: 999;
  786. // animation: rotate3 3s linear infinite;
  787. .ball{
  788. position: absolute;
  789. width: 12px;
  790. height: 12px;
  791. background: radial-gradient(closest-side, #e1f7f8, #e1f7f800);;
  792. border-radius: 6px;
  793. background-size: cover;
  794. offset-path: path('M186.917-.75c12.711,0,25.415.263,37.757.783,12.03.506,23.863,1.262,35.171,2.245,11.1.966,21.816,2.161,31.835,3.553,9.928,1.379,19.265,2.963,27.751,4.709s16.2,3.668,22.92,5.713A120.653,120.653,0,0,1,359.7,22.825a40.842,40.842,0,0,1,11.018,7.3c2.568,2.581,3.87,5.239,3.87,7.9s-1.3,5.322-3.87,7.9a40.842,40.842,0,0,1-11.018,7.3,120.653,120.653,0,0,1-17.345,6.572c-6.716,2.044-14.428,3.966-22.92,5.713s-17.823,3.329-27.751,4.709c-10.02,1.392-20.731,2.588-31.835,3.553-11.308.984-23.142,1.739-35.171,2.245-12.343.519-25.046.783-37.757.783s-25.415-.263-37.757-.783c-12.03-.506-23.863-1.262-35.171-2.245-11.1-.966-21.816-2.161-31.835-3.553-9.928-1.379-19.265-2.963-27.751-4.709s-16.2-3.668-22.92-5.713a120.652,120.652,0,0,1-17.345-6.572,40.841,40.841,0,0,1-11.018-7.3c-2.568-2.581-3.87-5.239-3.87-7.9s1.3-5.322,3.87-7.9a40.842,40.842,0,0,1,11.018-7.3,120.651,120.651,0,0,1,17.345-6.572C38.2,14.208,45.91,12.286,54.4,10.54S72.225,7.211,82.153,5.831c10.02-1.392,20.731-2.588,31.835-3.553C125.3,1.294,137.13.539,149.16.033,161.5-.487,174.206-.75,186.917-.75Zm0,76.98c49.941,0,96.885-4,132.186-11.257,17.134-3.523,30.578-7.623,39.96-12.184,9.642-4.688,14.53-9.653,14.53-14.759s-4.889-10.072-14.53-14.759c-9.382-4.561-22.826-8.66-39.96-12.184C283.8,3.827,236.858-.171,186.917-.171s-96.885,4-132.186,11.257C37.6,14.61,24.153,18.709,14.771,23.27,5.129,27.958.241,32.923.241,38.029S5.129,48.1,14.771,52.789c9.382,4.561,22.826,8.661,39.96,12.184C90.032,72.232,136.976,76.23,186.917,76.23Z');
  795. animation: 10s linear 0s infinite alternate ball;
  796. }
  797. }
  798. .animation2{
  799. width: 430px;
  800. height: 92px;
  801. position: absolute;
  802. top: 0px;
  803. left: 60px;
  804. z-index: 999;
  805. // animation: rotate4 3s linear infinite;
  806. .ball1{
  807. position: absolute;
  808. width: 12px;
  809. height: 12px;
  810. background: radial-gradient(closest-side, #e1f7f8, #e1f7f800);;
  811. border-radius: 6px;
  812. background-size: cover;
  813. offset-path: path('M206.689-.75c14.05,0,28.092.311,41.735.925,13.3.6,26.377,1.492,38.877,2.655,12.275,1.142,24.114,2.555,35.189,4.2,10.974,1.631,21.294,3.5,30.674,5.567s17.91,4.337,25.335,6.754a128.134,128.134,0,0,1,19.172,7.771,45.082,45.082,0,0,1,12.178,8.633c2.838,3.051,4.278,6.195,4.278,9.344s-1.439,6.293-4.278,9.344a45.082,45.082,0,0,1-12.178,8.633A128.134,128.134,0,0,1,378.5,70.847c-7.424,2.417-15.948,4.69-25.335,6.754s-19.7,3.936-30.674,5.567c-11.075,1.646-22.915,3.059-35.189,4.2-12.5,1.163-25.58,2.056-38.877,2.655-13.643.614-27.685.925-41.735.925s-28.092-.311-41.735-.925c-13.3-.6-26.377-1.492-38.877-2.655-12.275-1.142-24.114-2.555-35.189-4.2-10.974-1.631-21.294-3.5-30.674-5.567S42.3,73.265,34.879,70.847a128.133,128.133,0,0,1-19.173-7.771A45.082,45.082,0,0,1,3.528,54.444C.689,51.393-.75,48.249-.75,45.1s1.439-6.293,4.278-9.344a45.083,45.083,0,0,1,12.178-8.633,128.133,128.133,0,0,1,19.173-7.771c7.424-2.417,15.948-4.69,25.335-6.754s19.7-3.936,30.674-5.567c11.075-1.646,22.915-3.059,35.189-4.2,12.5-1.163,25.58-2.056,38.877-2.655C178.6-.439,192.639-.75,206.689-.75Zm0,91.015c55.2,0,107.093-4.727,146.113-13.31,18.939-4.166,33.8-9.012,44.17-14.405,10.657-5.542,16.061-11.413,16.061-17.45s-5.4-11.908-16.061-17.45c-10.37-5.393-25.231-10.24-44.17-14.405C313.782,4.662,261.892-.065,206.689-.065S99.6,4.662,60.576,13.244c-18.939,4.166-33.8,9.012-44.17,14.405C5.749,33.192.345,39.063.345,45.1s5.4,11.908,16.061,17.45c10.37,5.393,25.231,10.24,44.17,14.405C99.6,85.538,151.487,90.265,206.689,90.265Z');
  814. animation: 10s linear 0s infinite alternate ball1;
  815. }
  816. }
  817. .text-box{
  818. width: 100%;
  819. display: flex;
  820. flex-direction: column;
  821. color: #fff;
  822. align-items: center;
  823. margin-top: 90px;
  824. .text1{
  825. font-size: 26px;
  826. font-weight: 600;
  827. letter-spacing: 2px;
  828. margin-bottom: 10px;
  829. }
  830. .text2{
  831. font-size: 18px;
  832. color: #ffffffdd;
  833. }
  834. }
  835. .icon-animation{
  836. width: 178px;
  837. height: 208px;
  838. margin: 0 auto;
  839. top: -130px;
  840. left: 4px;
  841. position: relative;
  842. animation: .5s linear 0s infinite alternate iconMove;
  843. }
  844. }
  845. .bottom1{
  846. background-image: url('/@/assets/images/vent/alarm/warning-icon-bg1.png');
  847. .icon-animation{
  848. background: url('/@/assets/images/vent/alarm/warning-icon-bg-a1.png');
  849. }
  850. .text-box{
  851. .text1{
  852. color: #00d8ff;
  853. }
  854. }
  855. }
  856. .bottom2{
  857. background-image: url('/@/assets/images/vent/alarm/warning-icon-bg2.png');
  858. .icon-animation{
  859. background: url('/@/assets/images/vent/alarm/warning-icon-bg-a2.png');
  860. }
  861. .text-box{
  862. .text1{
  863. color: #FCFC22;
  864. }
  865. }
  866. }
  867. .bottom3{
  868. background-image: url('/@/assets/images/vent/alarm/warning-icon-bg3.png');
  869. .icon-animation{
  870. background: url('/@/assets/images/vent/alarm/warning-icon-bg-a3.png');
  871. }
  872. .text-box{
  873. .text1{
  874. color: #ff7010;
  875. }
  876. }
  877. }
  878. .bottom4{
  879. background-image: url('/@/assets/images/vent/alarm/warning-icon-bg4.png');
  880. .icon-animation{
  881. background: url('/@/assets/images/vent/alarm/warning-icon-bg-a4.png');
  882. }
  883. .text-box{
  884. .text1{
  885. color: #DF4E43;
  886. }
  887. }
  888. }
  889. .bottom5{
  890. background-image: url('/@/assets/images/vent/alarm/warning-icon-bg5.png');
  891. .icon-animation{
  892. background: url('/@/assets/images/vent/alarm/warning-icon-bg-a5.png');
  893. }
  894. .text-box{
  895. .text1{
  896. color: #ff2313;
  897. // animation: color-blink 1s infinite;
  898. }
  899. // @keyframes color-blink {
  900. // 0% { color: red; }
  901. // 50% { color: blue; }
  902. // 100% { color: red; }
  903. // }
  904. }
  905. }
  906. .total-item-monitor-box{
  907. width: 100%;
  908. height: 237px;
  909. position: relative;
  910. top: 180px;
  911. left: 265px;
  912. background: url('/@/assets/images/vent/alarm/bottom1.png') no-repeat;
  913. background-size: contain;
  914. &::after{
  915. content: '';
  916. width: 750px;
  917. height: 750px;
  918. position: absolute;
  919. transform-style: preserve-3d;
  920. transform: translateX(0%) translateY(0%) rotateX(72deg);
  921. background: url('/@/assets/images/vent/alarm/bottom.png');
  922. animation: rotate1 3s linear infinite;
  923. top: -200px;
  924. left: -180px;
  925. }
  926. .item{
  927. position: absolute;
  928. // width: 107px;
  929. // height: 107px;
  930. // left: 120px;
  931. // top: 115px;
  932. // animation: red-ball 10s linear infinite;
  933. .icon-box{
  934. width: 100px;
  935. height: 100px;
  936. position: relative;
  937. z-index: 0;
  938. &::before{
  939. position: absolute;
  940. content: '';
  941. width: 105px;
  942. height: 68px;
  943. top: 15px;
  944. z-index: -1;
  945. background: url('/@/assets/images/vent/alarm/icon-bg.png') no-repeat;
  946. }
  947. &::after{
  948. position: absolute;
  949. content: '';
  950. width: 71px;
  951. height: 71px;
  952. top: 26px;
  953. left: 14px;
  954. z-index: 1;
  955. background: url(/src/assets/images/vent/alarm/icon-animation.png) no-repeat;
  956. transform: translateX(0%) rotateX(70deg);
  957. animation: rotate2 2s linear infinite;
  958. }
  959. .icon{
  960. width: 100px;
  961. height: 100px;
  962. background-repeat: no-repeat;
  963. background-position: top center;
  964. position: relative;
  965. top: 5px;
  966. }
  967. }
  968. .item-monitor-box{
  969. color: #fff;
  970. position: relative;
  971. top: -135px;
  972. left: -20px;
  973. font-weight: 600;
  974. // background: #06020066;
  975. padding: 5px 20px 8px 20px;
  976. &::before{
  977. position: absolute;
  978. content: '';
  979. width: 196px;
  980. height: 48px;
  981. left: -20px;
  982. top: -10px;
  983. background: url('/@/assets/images/vent/alarm/data-bg.png');
  984. }
  985. .value{
  986. color: #2bdcff;
  987. margin-left: 20px;
  988. }
  989. .value1{
  990. font-size: 16px;
  991. font-weight: 800;
  992. margin-top: 6px;
  993. color: #ff0000;
  994. animation: color-blink 1s infinite;
  995. }
  996. @keyframes color-blink {
  997. 0% { color: red; }
  998. 50% { color: rgb(198, 0, 0); }
  999. 100% { color: rgb(255, 18, 18); }
  1000. }
  1001. }
  1002. }
  1003. .item1{
  1004. top: 230px;
  1005. left: 150px;
  1006. .icon{
  1007. background-image: url('/@/assets/images/vent/alarm/icon-fire.svg');
  1008. }
  1009. }
  1010. .item2{
  1011. top: 185px;
  1012. left: -120px;
  1013. .icon{
  1014. background-image: url('/@/assets/images/vent/alarm/icon-device.svg');
  1015. }
  1016. }
  1017. .item3{
  1018. top: 185px;
  1019. left: 420px;
  1020. .icon{
  1021. background-image: url('/@/assets/images/vent/alarm/icon-gas.svg') ;
  1022. }
  1023. .item-monitor-box{
  1024. top: -155px;
  1025. &::before{
  1026. top: 10px;
  1027. }
  1028. }
  1029. }
  1030. .item4{
  1031. top: 20px;
  1032. left: 390px;
  1033. .icon{
  1034. background-image: url('/@/assets/images/vent/alarm/icon-dust.svg');
  1035. }
  1036. }
  1037. .item5{
  1038. top: 25px;
  1039. left: -110px;
  1040. .icon{
  1041. background-image: url('/@/assets/images/vent/alarm/icon-vent.svg');
  1042. }
  1043. }
  1044. }
  1045. @keyframes iconMove {
  1046. 100% {
  1047. opacity: 0;
  1048. }
  1049. }
  1050. @keyframes rotate1 {
  1051. 0% {
  1052. transform: translateX(0%) rotateX(72deg) rotateZ(-360deg);
  1053. }
  1054. 100% {
  1055. transform: translateX(0%) rotateX(72deg) rotateZ(0);
  1056. }
  1057. }
  1058. @keyframes rotate2 {
  1059. 0% {
  1060. transform: translateX(0%) rotateX(70deg) rotateZ(0);
  1061. }
  1062. 100% {
  1063. transform: translateX(0%) rotateX(70deg) rotateZ(-360deg);
  1064. }
  1065. }
  1066. @keyframes rotate3 {
  1067. 0% {
  1068. transform: translateX(0%) rotateX(80deg) rotateZ(0);
  1069. }
  1070. 100% {
  1071. transform: translateX(0%) rotateX(80deg) rotateZ(-360deg);
  1072. }
  1073. }
  1074. @keyframes rotate4 {
  1075. 100% {
  1076. transform: translateX(0%) rotateX(80deg) rotateZ(0);
  1077. }
  1078. 0% {
  1079. transform: translateX(0%) rotateX(80deg) rotateZ(-360deg);
  1080. }
  1081. }
  1082. @keyframes ball {
  1083. 100% {
  1084. offset-distance: 100%;
  1085. }
  1086. 0% {
  1087. offset-distance: 0%;
  1088. }
  1089. }
  1090. @keyframes ball1 {
  1091. 0% {
  1092. offset-distance: 100%;
  1093. }
  1094. 100% {
  1095. offset-distance: 0%;
  1096. }
  1097. }
  1098. }
  1099. }
  1100. .right-box{
  1101. .dust-monitor{
  1102. display: flex;
  1103. justify-content: space-between;
  1104. padding: 0 20px;
  1105. margin-bottom: 20px;
  1106. margin-top: 15px;
  1107. .value{
  1108. width: 131px;
  1109. height: 44px;
  1110. background: url('/@/assets/images/vent/value-bg.png');
  1111. display: flex;
  1112. justify-content: center;
  1113. align-items: center;
  1114. }
  1115. .title{
  1116. text-align: center;
  1117. margin-bottom: 5px;
  1118. }
  1119. .value{
  1120. font-size: 16px;
  1121. font-family: 'douyuFont';
  1122. color: #3DF5FF;
  1123. }
  1124. }
  1125. .gas-box{
  1126. height: 390px;
  1127. display: flex;
  1128. justify-content: space-between;
  1129. padding: 0 10px;
  1130. .gas-item{
  1131. position: relative;
  1132. .top{
  1133. height: 100px;
  1134. padding-top: 30px;
  1135. .value{
  1136. font-size: 26px;
  1137. font-family: 'douyuFont';
  1138. color: #3DF5FF;
  1139. text-align: center;
  1140. margin-bottom: 5px;
  1141. }
  1142. .title{
  1143. width: 205px;
  1144. height: 48px;
  1145. text-align: center;
  1146. background: url('/@/assets/images/vent/plane.png') no-repeat;
  1147. background-size: contain;
  1148. background-position: bottom;
  1149. }
  1150. &::before{
  1151. position: absolute;
  1152. content: '';
  1153. width: 136px;
  1154. height: 101px;
  1155. left: 35px;
  1156. top: 15px;
  1157. background: url('/@/assets/images/vent/small-bg1.png') no-repeat;
  1158. background-size: cover;
  1159. }
  1160. }
  1161. .detail-box{
  1162. position: relative;
  1163. margin: 0 auto;
  1164. width: 184px;
  1165. height: 270px;
  1166. background: linear-gradient(to bottom, transparent, #00679b77) no-repeat;
  1167. background-size: cover;
  1168. display: flex;
  1169. flex-direction: column;
  1170. justify-content: space-between;
  1171. align-items: center;
  1172. padding: 50px 0 20px 0;
  1173. &::after{
  1174. position: absolute;
  1175. content: '';
  1176. left: -10px;
  1177. bottom: -8px;
  1178. width: 205px;
  1179. height: 31px;
  1180. background: url('/@/assets/images/vent/plane1.png') no-repeat;
  1181. background-position: bottom;
  1182. }
  1183. .detail-item{
  1184. width: 147px;
  1185. height: 40px;
  1186. background-image: linear-gradient(to right, #39a3ff66, #39a3ff00);
  1187. // margin: 5px 0;
  1188. display: flex;
  1189. padding: 0 10px;
  1190. justify-content: space-between;
  1191. align-items: center;
  1192. .value{
  1193. font-size: 16px;
  1194. font-family: 'douyuFont';
  1195. color: #2bdcff;
  1196. text-align: center;
  1197. }
  1198. }
  1199. }
  1200. }
  1201. }
  1202. }
  1203. .monitor-title{
  1204. cursor: pointer;
  1205. }
  1206. }
  1207. </style>