workFace.less 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649
  1. .monitor-container {
  2. width: 100%;
  3. height: 100%;
  4. margin-top: 40px;
  5. display: flex;
  6. justify-content: space-between;
  7. position: relative;
  8. .lr {
  9. width: 380px;
  10. height: 100%;
  11. display: flex;
  12. flex-direction: column;
  13. margin-top: 10px;
  14. pointer-events: auto;
  15. }
  16. .right-box {
  17. width: 340px;
  18. .disaster-btn {
  19. padding: 4px 10px !important;
  20. margin-right: 8px;
  21. }
  22. }
  23. .left-box {
  24. margin-top: 30px;
  25. }
  26. .warning-monitor {
  27. display: flex;
  28. flex-direction: row;
  29. justify-content: space-between;
  30. .warning-item {
  31. display: flex;
  32. flex-direction: column;
  33. justify-content: center;
  34. align-items: center;
  35. }
  36. .state-box {
  37. width: 79px;
  38. height: 47px;
  39. background: url('/@/assets/images/vent/param-bg.png');
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. .title {
  44. text-align: center;
  45. color: #73e8fe;
  46. }
  47. span {
  48. display: inline-block;
  49. }
  50. .value {
  51. width: 20px;
  52. }
  53. }
  54. }
  55. .vent-param {
  56. width: 100%;
  57. margin-top: 10px;
  58. .light-group {
  59. display: flex;
  60. flex-direction: row;
  61. justify-content: space-between;
  62. position: relative;
  63. .param-item {
  64. width: 120px;
  65. display: flex;
  66. flex-direction: column;
  67. justify-content: center;
  68. align-items: center;
  69. position: reactive;
  70. .icon {
  71. display: block;
  72. position: absolute;
  73. top: -5px;
  74. }
  75. .param {
  76. display: flex;
  77. flex-direction: column;
  78. justify-content: center;
  79. align-items: center;
  80. .param-icon {
  81. width: 79px;
  82. height: 48px;
  83. background: url('/@/assets/images/vent/workFace-param-bg.png');
  84. display: flex;
  85. flex-direction: column;
  86. justify-content: center;
  87. align-items: center;
  88. position: relative;
  89. top: -20px;
  90. margin-top: 10px;
  91. .param-title {
  92. position: relative;
  93. top: -4px;
  94. }
  95. .param-unit {
  96. position: relative;
  97. top: -2px;
  98. font-size: 12px;
  99. }
  100. }
  101. .param-val-box {
  102. display: flex;
  103. flex-direction: column;
  104. justify-content: center;
  105. align-items: center;
  106. position: relative;
  107. top: -20px;
  108. .param-val-icon {
  109. width: 2px;
  110. height: 15px;
  111. background: #00d8ff;
  112. position: relative;
  113. &::after {
  114. content: '';
  115. display: block;
  116. position: absolute;
  117. width: 6px;
  118. height: 6px;
  119. border-radius: 3px;
  120. background: #00d8ff;
  121. bottom: -2px;
  122. left: -2px;
  123. }
  124. }
  125. .param-val {
  126. position: relative;
  127. font-family: 'douyuFont';
  128. // color: #20dbfd;
  129. text-shadow: 0 0 25px #00d8ff;
  130. font-size: 13px;
  131. border: 1px solid #40B7F3;
  132. padding: 5px 8px 2px 8px;
  133. top: 2px;
  134. &::after {
  135. width: calc(100% - 4px);
  136. height: calc(100% - 4px);
  137. content: '';
  138. position: absolute;
  139. top: 2px;
  140. left: 2px;
  141. display: block;
  142. border: 1px solid #006EA6;
  143. }
  144. }
  145. }
  146. }
  147. }
  148. }
  149. }
  150. .data-group {
  151. display: flex;
  152. flex-wrap: wrap;
  153. justify-content: space-between;
  154. padding-bottom: 8px;
  155. .data-item {
  156. width: calc(50% - 10px);
  157. display: flex;
  158. justify-content: space-between;
  159. line-height: 24px;
  160. background-image: linear-gradient(to right, #39A3FF00, #39A3FF10, #39A3FF02);
  161. margin: 4px 0;
  162. }
  163. .value {
  164. color: #00eefffe;
  165. }
  166. .data-item1 {
  167. width: 100%;
  168. line-height: 24px;
  169. background-image: linear-gradient(to right, #39A3FF00, #39A3FF10, #39A3FF02);
  170. margin: 4px 0;
  171. }
  172. }
  173. .input-box {
  174. display: flex;
  175. flex-direction: column;
  176. padding: 0 5px;
  177. }
  178. .input-item {
  179. display: flex;
  180. justify-content: space-between;
  181. align-items: center;
  182. padding: 2px 8px;
  183. margin: 4px 0;
  184. background-image: linear-gradient(to right, #39deff15, #3977e500);
  185. .title {
  186. width: 200px;
  187. }
  188. .title-auto {
  189. width: auto;
  190. }
  191. .input-value {
  192. width: 80px;
  193. height: 28px;
  194. line-height: 28px !important;
  195. background: transparent !important;
  196. border-color: #228DA2 !important;
  197. color: #fff !important;
  198. }
  199. .value {
  200. width: 80px;
  201. color: #00d8ff;
  202. padding-right: 20px;
  203. }
  204. .unit {
  205. width: 80px;
  206. }
  207. }
  208. .warning-state-detail {
  209. position: relative;
  210. padding-left: 10px;
  211. font-size: 13px;
  212. margin-bottom: 15px;
  213. margin-top: 5px;
  214. margin-left: 8px;
  215. &::before {
  216. content: '';
  217. position: absolute;
  218. width: 6px;
  219. height: 6px;
  220. border: 1px solid #1bf5fd;
  221. background: #00d8ff;
  222. border-radius: 3px;
  223. left: -1px;
  224. top: 8px;
  225. }
  226. .state-color {
  227. color: #4afffdbf;
  228. }
  229. }
  230. .temperature-group {
  231. width: 100%;
  232. margin-top: 20px;
  233. .light-group {
  234. display: flex;
  235. flex-direction: row;
  236. justify-content: space-between;
  237. position: relative;
  238. .light-bg {
  239. width: 331px;
  240. height: 42px;
  241. background: url('/@/assets/images/vent/plane-bg.png') no-repeat;
  242. background-size: contain;
  243. position: absolute;
  244. z-index: -1;
  245. top: 44px;
  246. opacity: 0.6;
  247. }
  248. .light-item {
  249. width: 120px;
  250. display: flex;
  251. flex-direction: column;
  252. justify-content: center;
  253. align-items: center;
  254. position: reactive;
  255. .icon {
  256. display: block;
  257. position: absolute;
  258. top: -5px;
  259. }
  260. .light {
  261. display: flex;
  262. flex-direction: column;
  263. justify-content: center;
  264. align-items: center;
  265. .light-icon {
  266. width: 90px;
  267. height: 58px;
  268. background: url('/@/assets/images/vent/ligth-q.png');
  269. opacity: 0.8;
  270. }
  271. .light-title {
  272. position: relative;
  273. top: -15px;
  274. }
  275. .light-val-box {
  276. display: flex;
  277. flex-direction: column;
  278. justify-content: center;
  279. align-items: center;
  280. position: relative;
  281. top: -10px;
  282. .light-val-icon {
  283. width: 2px;
  284. height: 18px;
  285. background: #00d8ff;
  286. position: relative;
  287. &::after {
  288. content: '';
  289. display: block;
  290. position: absolute;
  291. width: 6px;
  292. height: 6px;
  293. border-radius: 3px;
  294. background: #00d8ff;
  295. bottom: -2px;
  296. left: -2px;
  297. }
  298. }
  299. .light-val {
  300. position: relative;
  301. font-family: 'douyuFont';
  302. // color: #20dbfd;
  303. text-shadow: 0 0 25px #00d8ff;
  304. font-size: 13px;
  305. border: 1px solid #40B7F3;
  306. padding: 5px 8px 2px 8px;
  307. top: 2px;
  308. &::after {
  309. width: calc(100% - 4px);
  310. height: calc(100% - 4px);
  311. content: '';
  312. position: absolute;
  313. top: 2px;
  314. left: 2px;
  315. display: block;
  316. border: 1px solid #006EA6;
  317. }
  318. }
  319. }
  320. }
  321. }
  322. }
  323. }
  324. .state-item {
  325. display: flex;
  326. flex-direction: row;
  327. padding: 4px;
  328. .item-col {
  329. width: calc(50% - 5px);
  330. display: flex;
  331. justify-content: center;
  332. align-items: center;
  333. padding-right: 4px;
  334. background-image: linear-gradient(to right, #39f5ff00, #39f5ff08);
  335. &:first-child {
  336. margin-right: 10px;
  337. }
  338. .state-title {
  339. color: #ffffffcc;
  340. flex: 9;
  341. font-size: 14px;
  342. }
  343. .state-val {
  344. flex: 1;
  345. color: #00eefffe;
  346. margin-right: 5px;
  347. text-align: right;
  348. font-size: 14px;
  349. }
  350. }
  351. }
  352. .co-param {
  353. width: 100%;
  354. margin-top: 20px;
  355. .light-group {
  356. display: flex;
  357. flex-direction: row;
  358. justify-content: space-between;
  359. position: relative;
  360. .param-item {
  361. width: 120px;
  362. display: flex;
  363. flex-direction: column;
  364. justify-content: center;
  365. align-items: center;
  366. position: reactive;
  367. .icon {
  368. display: block;
  369. position: absolute;
  370. top: -5px;
  371. }
  372. .param {
  373. display: flex;
  374. flex-direction: column;
  375. justify-content: center;
  376. align-items: center;
  377. .param-icon {
  378. width: 79px;
  379. height: 48px;
  380. background: url('/@/assets/images/vent/workFace-param-bg.png');
  381. display: flex;
  382. flex-direction: column;
  383. justify-content: center;
  384. align-items: center;
  385. position: relative;
  386. top: -20px;
  387. margin-top: 10px;
  388. .icon {
  389. position: relative;
  390. top: -3px;
  391. }
  392. .param-unit {
  393. position: relative;
  394. top: -3px;
  395. font-size: 13px;
  396. }
  397. }
  398. .param-val-box {
  399. display: flex;
  400. flex-direction: column;
  401. justify-content: center;
  402. align-items: center;
  403. position: relative;
  404. top: -20px;
  405. .param-val-icon {
  406. width: 2px;
  407. height: 18px;
  408. background: #00d8ff;
  409. position: relative;
  410. &::after {
  411. content: '';
  412. display: block;
  413. position: absolute;
  414. width: 6px;
  415. height: 6px;
  416. border-radius: 3px;
  417. background: #00d8ff;
  418. bottom: -2px;
  419. left: -2px;
  420. }
  421. }
  422. .param-val {
  423. position: relative;
  424. font-family: 'douyuFont';
  425. // color: #20dbfd;
  426. text-shadow: 0 0 25px #00d8ff;
  427. font-size: 13px;
  428. border: 1px solid #40B7F3;
  429. padding: 5px 8px 2px 8px;
  430. top: 2px;
  431. &::after {
  432. width: calc(100% - 4px);
  433. height: calc(100% - 4px);
  434. content: '';
  435. position: absolute;
  436. top: 2px;
  437. left: 2px;
  438. display: block;
  439. border: 1px solid #006EA6;
  440. }
  441. }
  442. }
  443. }
  444. }
  445. }
  446. }
  447. .btn {
  448. padding: 2px 12px;
  449. position: relative;
  450. border-radius: 2px;
  451. color: #fff;
  452. cursor: pointer;
  453. &::before {
  454. position: absolute;
  455. display: block;
  456. content: '';
  457. width: calc(100% - 4px);
  458. height: calc(100% - 4px);
  459. top: 2px;
  460. left: 2px;
  461. border-radius: 2px;
  462. z-index: -1;
  463. }
  464. }
  465. .btn1 {
  466. border: 1px solid #5cfaff;
  467. &::before {
  468. background-image: linear-gradient(#2effee92, #0cb1d592);
  469. }
  470. &:hover {
  471. border: 1px solid #5cfaffaa;
  472. &::before {
  473. background-image: linear-gradient(#2effee72, #0cb1d572);
  474. }
  475. }
  476. }
  477. .btn2 {
  478. border: 1px solid #e91927;
  479. margin-left: 10px;
  480. &::before {
  481. background-image: linear-gradient(#b02533, #a31f2e);
  482. }
  483. &:hover {
  484. &::before {
  485. background-image: linear-gradient(#bd2e3ccc, #a31f2ecc);
  486. }
  487. }
  488. }
  489. }
  490. .parameter-title {
  491. position: relative;
  492. width: 100%;
  493. height: 16px;
  494. margin-top: 10px;
  495. margin-bottom: 5px;
  496. display: flex;
  497. align-items: center;
  498. top: -2px;
  499. .icon,
  500. span {
  501. position: absolute;
  502. }
  503. }
  504. .group-parameter-title {
  505. background-image: linear-gradient(to right, #39a3ff50, #39a3ff00);
  506. .icon {
  507. left: 0px;
  508. top: -4px;
  509. }
  510. span {
  511. left: 20px;
  512. top: -8px;
  513. }
  514. &::before{
  515. position: absolute;
  516. content: '';
  517. width: 100%;
  518. height: 100%;
  519. top: 4px;
  520. background-image: linear-gradient(to right, #3df6ff40, #3df6ff00);
  521. }
  522. }
  523. .detail {
  524. align-self: flex-end;
  525. color: #66e8fc;
  526. cursor: pointer;
  527. &:hover {
  528. color: #1bf5fddd;
  529. }
  530. }
  531. .a-detail{
  532. font-size: 12px;
  533. padding-left: 5px;
  534. cursor: pointer;
  535. }
  536. :deep(.@{ventSpace}-tabs-tabpane-active) {
  537. overflow: auto;
  538. }
  539. :deep(.zxm-select) {
  540. width: 300px;
  541. .@{ventSpace}-select-selector {
  542. background: transparent !important;
  543. border: none !important;
  544. box-shadow: none !important;
  545. .zxm-select-selection-item {
  546. color: #fff !important;
  547. }
  548. }
  549. .@{ventSpace}-select-arrow {
  550. color: #fff !important;
  551. }
  552. }
  553. :deep(.zxm-select-dropdown) {
  554. background: transparent !important;
  555. }