nitrogenHome1.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785
  1. <template>
  2. <div
  3. id="nitrogenCss3D"
  4. class="threejs-Object-CSS"
  5. style="width: 100%; height: 100%; position: absolute; pointer-events: none; overflow: hidden; z-index: 2; top: 0px; left: 0px"
  6. >
  7. <a-spin :spinning="loading" />
  8. <template>
  9. <div v-for="groupNum in monitorDataGroupNum" :key="groupNum" class="modal-monitor">
  10. <fourBorderBg :class="`kyj${groupNum}`" :id="`nitrogenMonitor${groupNum}`">
  11. <div class="title">{{ monitorData[groupNum - 1]['strname'] }} </div>
  12. <div class="monitor-item">
  13. <span class="monitor-title">排气压力:</span>
  14. <span class="monitor-val"
  15. ><span class="val">{{
  16. monitorData[groupNum - 1]['AirCompressor_ExhaustPre'] ? monitorData[groupNum - 1]['AirCompressor_ExhaustPre'] : '-'
  17. }}</span
  18. ><span class="unit">kPa</span></span
  19. >
  20. </div>
  21. <div class="monitor-item">
  22. <span class="monitor-title">累计流量:</span>
  23. <span class="monitor-val"
  24. ><span class="val">{{ monitorData[groupNum - 1]['FluxTotal1'] ? monitorData[groupNum - 1]['FluxTotal1'].toFixed(2) : '-' }}</span
  25. ><span class="unit">m³</span></span
  26. >
  27. </div>
  28. <div class="monitor-item">
  29. <span class="monitor-title">氮气纯度:</span>
  30. <span class="monitor-val"
  31. ><span class="val">{{ monitorData[groupNum - 1]['NitrogenPurity'] ? monitorData[groupNum - 1]['NitrogenPurity'].toFixed(2) : '-' }}</span
  32. ><span class="unit">%</span></span
  33. >
  34. </div>
  35. <div class="monitor-item">
  36. <span class="monitor-title">运行时间:</span>
  37. <span class="monitor-val"
  38. ><span class="val">{{
  39. monitorData[groupNum - 1]['AirCompressor_RunTime'] ? monitorData[groupNum - 1]['AirCompressor_RunTime'] : '-'
  40. }}</span
  41. ><span class="unit">h</span></span
  42. >
  43. </div>
  44. <div class="monitor-item">
  45. <span class="monitor-title">加载时间:</span>
  46. <span class="monitor-val"
  47. ><span class="val">{{
  48. monitorData[groupNum - 1]['AirCompressor_LoadTime'] ? monitorData[groupNum - 1]['AirCompressor_LoadTime'] : '-'
  49. }}</span
  50. ><span class="unit">h</span></span
  51. >
  52. </div>
  53. </fourBorderBg>
  54. </div>
  55. </template>
  56. </div>
  57. <div id="nitrogen3D" style="width: 100%; height: 100%; position: absolute; overflow: hidden"></div>
  58. <div class="nitrogen-home">
  59. <div class="nitrogen-container">
  60. <div class="top-box">
  61. <!-- 左边监测数据 -->
  62. <div class="lr-box left-box">
  63. <div class="item item-l" v-for="groupNum in monitorDataGroupNum" :key="groupNum">
  64. <ventBox1>
  65. <template #title>
  66. <div>{{ monitorData[groupNum - 1]['strname'] }}</div>
  67. </template>
  68. <template #container>
  69. <div class="monitor-box">
  70. <div class="parameter-title group-parameter-title">
  71. <SvgIcon class="icon" size="38" name="device-group-paramer" /><span>机组参数</span>
  72. </div>
  73. <div class="state-item" v-for="(data, index) in groupParameterData" :key="index">
  74. <div class="item-col">
  75. <span class="state-title">{{ Object.values(data)[0] }} :</span>
  76. <span class="state-val">{{
  77. (monitorData.length > 0 && monitorData[groupNum - 1][Object.keys(data)[0]]) >= 0
  78. ? monitorData[groupNum - 1][Object.keys(data)[0]].toFixed(2)
  79. : '-'
  80. }}</span>
  81. </div>
  82. <div class="item-col" v-if="Object.keys(data)[1]">
  83. <span class="state-title">{{ Object.values(data)[1] }} :</span>
  84. <span class="state-val">{{
  85. (monitorData.length > 0 && monitorData[groupNum - 1][Object.keys(data)[1]]) >= 0
  86. ? monitorData[groupNum - 1][Object.keys(data)[1]].toFixed(2)
  87. : '-'
  88. }}</span>
  89. </div>
  90. </div>
  91. </div>
  92. <div class="monitor-box">
  93. <div class="parameter-title device-parameter-title">
  94. <SvgIcon class="icon" size="32" name="device-paramer" /><span>空压机数据</span>
  95. </div>
  96. <div class="state-item" v-for="(data, index) in deviceParameterData" :key="index">
  97. <div class="item-col">
  98. <span class="state-title">{{ Object.values(data)[0] }} :</span>
  99. <span class="state-val">{{
  100. (monitorData.length > 0 && monitorData[groupNum - 1][Object.keys(data)[0]]) >= 0
  101. ? monitorData[groupNum - 1][Object.keys(data)[0]]
  102. : '-'
  103. }}</span>
  104. </div>
  105. <div class="item-col" v-if="Object.keys(data)[1]">
  106. <span class="state-title">{{ Object.values(data)[1] }} :</span>
  107. <span class="state-val">{{
  108. (monitorData.length > 0 && monitorData[groupNum - 1][Object.keys(data)[1]]) >= 0
  109. ? monitorData[groupNum - 1][Object.keys(data)[1]]
  110. : '-'
  111. }}</span>
  112. </div>
  113. </div>
  114. </div>
  115. </template>
  116. </ventBox1>
  117. </div>
  118. </div>
  119. <!-- 右边控制状态 -->
  120. <div class="lr-box right-box">
  121. <ventBox1>
  122. <template #title>
  123. <div>远程控制</div>
  124. </template>
  125. <template #container>
  126. <div class="control-group">
  127. <div class="control-item" v-for="(groupNum, index) in monitorDataGroupNum" :key="groupNum">
  128. <div class="control-item-title">{{ monitorData[groupNum - 1]['strname'] }}</div>
  129. <div class="control-item-state">
  130. <a-switch
  131. v-model="airCompressorState[groupNum - 1][`compressRunSigF1`]"
  132. size="small"
  133. checked-children="开启"
  134. un-checked-children="关闭"
  135. :disabled="airCompressorState[groupNum - 1][`controlModel`]"
  136. @change="handlerDevice(airCompressorState[groupNum - 1], index)"
  137. />
  138. </div>
  139. </div>
  140. </div>
  141. </template>
  142. </ventBox1>
  143. <ventBox1 class="vent-margin-t-10">
  144. <template #title>
  145. <div>设备实时监测曲线</div>
  146. </template>
  147. <template #container>
  148. <BarAndLineCustom
  149. xAxisPropType="readTime"
  150. :chartData="echartData"
  151. height="240px"
  152. :propTypeArr="['FluxTotal1', 'InputFlux']"
  153. :option="zhudanOption"
  154. />
  155. </template>
  156. </ventBox1>
  157. </div>
  158. </div>
  159. </div>
  160. </div>
  161. <HandleModal :modal-is-show="modalIsShow" :modal-title="modalTitle" :modal-type="modalType" @handle-ok="handleOK" @handle-cancel="handleCancel" />
  162. </template>
  163. <script lang="ts" setup name="nitrogenHome">
  164. import { onMounted, onUnmounted, ref, watch, reactive, defineProps, nextTick } from 'vue';
  165. import ventBox1 from '/@/components/vent/ventBox1.vue';
  166. import fourBorderBg from '../../../comment/components/fourBorderBg.vue';
  167. import { mountedThree, destroy, setModelType } from '../nitrogen.threejs';
  168. import { getDevice } from '../nitrogen.api';
  169. import { SvgIcon } from '/@/components/Icon';
  170. import BarAndLineCustom from '/@/components/chart/BarAndLineCustom.vue';
  171. import { zhudanOption } from '../nitrogen.data.ts';
  172. import HandleModal from './modal.vue';
  173. import { deviceControlApi } from '/@/api/vent/index';
  174. import { message } from 'ant-design-vue';
  175. const props = defineProps({
  176. deviceId: {
  177. type: String,
  178. require: true,
  179. },
  180. modalType: {
  181. type: String,
  182. require: true,
  183. },
  184. });
  185. const modalTitle = ref(''); // 模态框标题显示内容,根据设备操作类型决定
  186. const modalType = ref(''); // 模态框内容显示类型,设备操作类型
  187. const modalIsShow = ref<boolean>(false); // 是否显示模态框
  188. const loading = ref(true);
  189. let kzParam = reactive<any>({
  190. data: {},
  191. activeIndex: 0,
  192. });
  193. // const kyjs = ['1号空压机', '1号空压机', '1号空压机', '1号空压机'];
  194. const flvURL1 = () => {
  195. // return `https://sf1-hscdn-tos.pstatp.com/obj/media-fe/xgplayer_doc_video/flv/xgplayer-demo-360p.flv`;
  196. return '';
  197. };
  198. const monitorDataGroupNum = ref(0);
  199. let airCompressorState = reactive<any[]>([]);
  200. const groupParameterData = [
  201. {
  202. FluxTotal1: '累计流量(m³)',
  203. InputFlux: '瞬时流量(m³/h)',
  204. },
  205. {
  206. PreMembraneTemperature: '膜前温度(­°C)',
  207. NitrogenPurity: '氮气纯度(%)',
  208. },
  209. ];
  210. const deviceParameterData = [
  211. {
  212. AirCompressor_ExhaustPre: '排气压力(KPa)',
  213. AirCompressor_ExhaustTemp: '排气温度(­°C)',
  214. },
  215. {
  216. AirCompressor_RunTime: '运行时间(h)',
  217. AirCompressor_LoadTime: '加载时间(h)',
  218. },
  219. ];
  220. const monitorData = ref(
  221. new Array(3).fill({
  222. // strName: '空压机',
  223. // cumulativeFlow: '-',
  224. // centerTemperature: '-',
  225. // outletTemperature: '-',
  226. // Ia: '-',
  227. // Ib: '-',
  228. // Ic: '-',
  229. // Vab: '-',
  230. // Vac: '-',
  231. // Vbc: '-',
  232. // compressGroupName: '',
  233. // compressExhaustPressF1: '-',
  234. // compressSeparatePressF1: '-',
  235. // compressHostTempF1: '-',
  236. // compressCrewTempF1: '-',
  237. // compressRunTimeF1: '-',
  238. // controlModel: 'LOC'
  239. })
  240. );
  241. //图表数据
  242. let echartData = reactive<any>([]);
  243. // https获取监测数据
  244. let timer: null | NodeJS.Timeout = null;
  245. async function getMonitor(flag?) {
  246. if (Object.prototype.toString.call(timer) === '[object Null]') {
  247. timer = await setTimeout(
  248. async () => {
  249. if (props.deviceId) {
  250. await getDataSource(props.deviceId);
  251. }
  252. if (timer) {
  253. timer = null;
  254. }
  255. await getMonitor();
  256. },
  257. flag ? 0 : 3000
  258. );
  259. }
  260. }
  261. async function getDataSource(systemID) {
  262. const res = await getDevice({ devicetype: 'sys', systemID, type: 'all' });
  263. console.log(res, 'res---------------');
  264. if (res) {
  265. const result = res;
  266. if (!result || result.msgTxt.length < 1) return;
  267. result.msgTxt.forEach((item) => {
  268. if (item.typeName.indexOf('制氮机') != -1) {
  269. monitorData.value = item['datalist'].filter((data) => {
  270. const item = data.readData;
  271. return Object.assign(data, item);
  272. });
  273. //图表数据
  274. if (echartData.length <= 5) {
  275. monitorData.value.forEach((el) => {
  276. echartData.push(el);
  277. });
  278. }
  279. airCompressorState.length = 0;
  280. item['datalist'].forEach((v) => {
  281. airCompressorState.push({
  282. id: v.deviceID,
  283. deviceType:v.deviceType,
  284. compressRunSigF1: false,
  285. controlModel: false,
  286. });
  287. });
  288. }
  289. });
  290. console.log(echartData, 'echart----------');
  291. monitorDataGroupNum.value = monitorData.value.length;
  292. }
  293. }
  294. function handlerDevice(data, index) {
  295. kzParam.data = data;
  296. kzParam.activeIndex = index;
  297. if (index == 1) {
  298. modalTitle.value = '一键复位';
  299. modalType.value = '1';
  300. modalIsShow.value = true;
  301. kzParam.data.compressRunSigF1 = !kzParam.data.compressRunSigF1;
  302. } else {
  303. modalTitle.value = '一键启停';
  304. modalType.value = '2';
  305. modalIsShow.value = true;
  306. kzParam.data.compressRunSigF1 = !kzParam.data.compressRunSigF1;
  307. }
  308. }
  309. function handleOK(passWord, handlerState) {
  310. console.log(kzParam, 'kz----------');
  311. // if (passWord !== '123456') {
  312. // message.warning('密码不正确,请重新输入');
  313. // return;
  314. // }
  315. let data = {};
  316. if (kzParam.activeIndex == 1) {
  317. data = {
  318. deviceid: kzParam.data.id,
  319. devicetype:kzParam.data.deviceType,
  320. password: passWord,
  321. HMIReset: kzParam.data.compressRunSigF1,
  322. };
  323. } else {
  324. data = {
  325. deviceid: kzParam.data.id,
  326. password: passWord,
  327. devicetype:kzParam.data.deviceType,
  328. HMIStartStop: kzParam.data.compressRunSigF1,
  329. };
  330. }
  331. deviceControlApi(data).then((res) => {
  332. // 模拟时开启
  333. if (res.success) {
  334. modalIsShow.value = false;
  335. getDataSource(props.deviceId);
  336. message.success('操作成功!');
  337. }
  338. });
  339. }
  340. function handleCancel() {
  341. modalIsShow.value = false;
  342. modalTitle.value = '';
  343. modalType.value = '';
  344. }
  345. watch([monitorDataGroupNum, loading], ([newMonitorDataGroupNum, newLoading]) => {
  346. nextTick(() => {
  347. if (newMonitorDataGroupNum && !newLoading) {
  348. setModelType(props.modalType, newMonitorDataGroupNum);
  349. }
  350. });
  351. });
  352. onMounted(async () => {
  353. await getMonitor(true);
  354. await mountedThree().then(() => {
  355. loading.value = false;
  356. });
  357. });
  358. onUnmounted(() => {
  359. destroy();
  360. if (timer) {
  361. clearTimeout(timer);
  362. timer = undefined;
  363. }
  364. });
  365. </script>
  366. <style lang="less" scoped>
  367. @ventSpace: zxm;
  368. .nitrogen-box {
  369. width: 100%;
  370. height: 100%;
  371. display: flex;
  372. justify-content: center;
  373. }
  374. #nitrogenCss3D {
  375. .modal-monitor {
  376. width: 200px;
  377. position: absolute;
  378. left: 0px;
  379. top: 0px;
  380. }
  381. &:deep(.win) {
  382. margin: 0 !important;
  383. background: #00000044;
  384. }
  385. }
  386. .nitrogen-home {
  387. width: 100%;
  388. height: 100%;
  389. position: fixed;
  390. z-index: 9999;
  391. display: flex;
  392. flex-direction: column;
  393. justify-content: center;
  394. align-items: center;
  395. pointer-events: none;
  396. top: 60px;
  397. .nitrogen-container {
  398. width: 100%;
  399. height: calc(100%);
  400. display: flex;
  401. justify-content: space-between;
  402. margin-bottom: 100px;
  403. .top-box {
  404. width: 100%;
  405. padding: 10px;
  406. overflow: hidden;
  407. display: flex;
  408. justify-content: space-between;
  409. .lr-box {
  410. height: fit-content;
  411. display: flex;
  412. flex-direction: column;
  413. position: relative;
  414. overflow: hidden;
  415. z-index: 9999;
  416. pointer-events: auto;
  417. }
  418. .item {
  419. width: 335px;
  420. height: auto;
  421. position: relative;
  422. border-radius: 5px;
  423. margin-top: 10px;
  424. margin-bottom: 0px;
  425. pointer-events: auto;
  426. color: #fff;
  427. overflow: hidden;
  428. &:first-child {
  429. margin-top: 0px;
  430. }
  431. .base-title {
  432. color: #fff;
  433. margin-bottom: 8px;
  434. padding-left: 10px;
  435. position: relative;
  436. font-size: 16px;
  437. &::after {
  438. content: '';
  439. position: absolute;
  440. display: block;
  441. width: 4px;
  442. height: 12px;
  443. top: 7px;
  444. left: 0px;
  445. background: #45d3fd;
  446. border-radius: 4px;
  447. }
  448. }
  449. .state-item {
  450. display: flex;
  451. flex-direction: row;
  452. padding: 5px;
  453. .item-col {
  454. width: calc(50% - 5px);
  455. display: flex;
  456. justify-content: center;
  457. align-items: center;
  458. padding-right: 4px;
  459. background-image: linear-gradient(to right, #39a3ff00, #39a3ff10);
  460. &:first-child {
  461. margin-right: 10px;
  462. }
  463. .state-title {
  464. color: #ffffffcc;
  465. flex: 9;
  466. font-size: 14px;
  467. }
  468. .state-val {
  469. flex: 1;
  470. color: #00eefffe;
  471. margin-right: 5px;
  472. text-align: right;
  473. font-size: 14px;
  474. }
  475. }
  476. }
  477. .signal-box {
  478. margin: 5px 0;
  479. display: flex;
  480. align-items: center;
  481. .signal-title {
  482. color: #7af5ff;
  483. margin: 0 5px;
  484. }
  485. &:last-child {
  486. margin-right: 0px;
  487. }
  488. }
  489. .list-item {
  490. padding: 0 10px;
  491. display: flex;
  492. justify-content: space-between;
  493. align-items: center;
  494. .item-data-key {
  495. color: #ffffff99;
  496. }
  497. }
  498. .item-data-box {
  499. color: #fff;
  500. .state-icon {
  501. display: inline-block;
  502. width: 12px;
  503. height: 12px;
  504. border-radius: 12px;
  505. }
  506. .open {
  507. border: 5px solid #133a56;
  508. background: #4ecb73;
  509. }
  510. .close {
  511. border: 5px solid #192961;
  512. background: #6d7898;
  513. }
  514. }
  515. }
  516. .item-l {
  517. width: 100%;
  518. .monitor-box {
  519. width: 100%;
  520. .parameter-title {
  521. position: relative;
  522. width: 100%;
  523. height: 14px;
  524. margin-top: 10px;
  525. .icon,
  526. span {
  527. position: absolute;
  528. top: -10px;
  529. }
  530. }
  531. .group-parameter-title {
  532. background-image: linear-gradient(to right, #39a3ff50, #39a3ff00);
  533. .icon {
  534. left: -12px;
  535. top: -17px;
  536. }
  537. span {
  538. left: 18px;
  539. }
  540. .item-col {
  541. background-image: linear-gradient(to right, #39a3ff00, #39a3ff10);
  542. }
  543. }
  544. .device-parameter-title {
  545. background-image: linear-gradient(to right, #3df6ff40, #3df6ff00);
  546. .icon {
  547. left: -10px;
  548. top: -14px;
  549. }
  550. span {
  551. left: 18px;
  552. }
  553. .item-col {
  554. background-image: linear-gradient(to right, #3df6ff10, #3df6ff00);
  555. }
  556. }
  557. }
  558. }
  559. .right-box {
  560. width: 330px;
  561. margin-top: 50px;
  562. .control-group {
  563. display: flex;
  564. // justify-content: space-around;
  565. flex-wrap: wrap;
  566. .control-item {
  567. display: flex;
  568. flex-direction: column;
  569. justify-content: center;
  570. align-items: center;
  571. padding: 0 4px;
  572. .control-item-title {
  573. color: #a6dce9;
  574. position: relative;
  575. top: 5px;
  576. }
  577. .control-item-state {
  578. width: 94px;
  579. height: 47px;
  580. background: url('/@/assets/images/vent/control-switch-bg.png');
  581. display: flex;
  582. justify-content: center;
  583. align-items: center;
  584. color: #fff;
  585. }
  586. .button-box {
  587. position: relative;
  588. padding: 5px;
  589. border: 1px transparent solid;
  590. background-clip: border-box;
  591. border-radius: 5px;
  592. margin-left: 8px;
  593. }
  594. .a-button {
  595. pointer-events: auto;
  596. }
  597. &::v-deep .a-button--mini {
  598. padding: 6px 10px;
  599. }
  600. &::v-deep .a-button--mini.is-round {
  601. padding: 6px 10px;
  602. }
  603. }
  604. }
  605. }
  606. .left-box {
  607. width: 365px;
  608. margin-top: 80px;
  609. }
  610. }
  611. &:deep(.win) {
  612. width: 100%;
  613. margin: 0 !important;
  614. }
  615. }
  616. }
  617. &:deep(.main) {
  618. .title {
  619. height: 34px;
  620. text-align: center;
  621. font-weight: 600;
  622. color: #7af5ff;
  623. // background-image: url('../../../assets/img/yfj/light.png');
  624. background-repeat: no-repeat;
  625. background-position-x: center;
  626. background-position-y: 100%;
  627. background-size: 80%;
  628. font-size: 16px;
  629. }
  630. .monitor-item {
  631. width: 200px;
  632. display: flex;
  633. flex-direction: row;
  634. width: auto;
  635. margin-bottom: 3px;
  636. .monitor-val {
  637. color: #ffb700;
  638. display: flex;
  639. width: auto;
  640. .val {
  641. width: 80px;
  642. font-size: 14px;
  643. }
  644. .unit {
  645. color: #ffffffbb;
  646. font-size: 14px;
  647. }
  648. }
  649. }
  650. .monitor-title {
  651. width: 100px;
  652. color: #7af5ff;
  653. font-weight: 400;
  654. font-size: 14px;
  655. }
  656. .signal-item {
  657. display: flex;
  658. justify-content: space-between;
  659. // margin-bottom: 5px;
  660. .signal-round {
  661. display: inline-block;
  662. width: 8px;
  663. height: 8px;
  664. border-radius: 50%;
  665. margin: 0 10px;
  666. position: relative;
  667. &::after {
  668. display: block;
  669. content: '';
  670. position: absolute;
  671. width: 12px;
  672. height: 12px;
  673. top: -2px;
  674. left: -2px;
  675. border-radius: 50%;
  676. }
  677. }
  678. .signal-round-gry {
  679. background-color: #858585;
  680. &::after {
  681. background-color: #85858544;
  682. box-shadow: 0 0 1px 1px #85858599;
  683. }
  684. }
  685. .signal-round-run {
  686. background-color: #67fc00;
  687. &::after {
  688. background-color: #67fc0044;
  689. box-shadow: 0 0 1px 1px #c6ff77;
  690. }
  691. }
  692. .signal-round-warning {
  693. background-color: #e9170b;
  694. &::after {
  695. background-color: #e9170b44;
  696. box-shadow: 0 0 1px 1px #e9170b;
  697. }
  698. }
  699. }
  700. }
  701. :deep(.zxm-radio-wrapper) {
  702. color: #fff !important;
  703. }
  704. </style>