spzs.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735
  1. .grid-wrapper {
  2. color: #ffffff;
  3. padding: 23px 16px 16px;
  4. height: calc(100% - 80px);
  5. width:100%;
  6. display: grid;
  7. grid-gap: 8px;
  8. grid-template-columns: repeat(4, 1fr);
  9. grid-template-rows: 1fr 1fr 40px 1fr;
  10. grid-template-areas: "left1 center center right" "left2 center center right" "timeline timeline timeline timeline" "bottom1 bottom2 bottom3 bottom4";
  11. }
  12. .grid-wrapper .left1 {
  13. grid-area: left1;
  14. }
  15. .grid-wrapper .center {
  16. grid-area: center;
  17. }
  18. .grid-wrapper .right {
  19. grid-area: right;
  20. }
  21. .grid-wrapper .left2 {
  22. grid-area: left2;
  23. }
  24. .grid-wrapper .timeline {
  25. grid-area: timeline;
  26. }
  27. .grid-wrapper .bottom1 {
  28. grid-area: bottom1;
  29. }
  30. .grid-wrapper .bottom2 {
  31. grid-area: bottom2;
  32. }
  33. .grid-wrapper .bottom3 {
  34. grid-area: bottom3;
  35. }
  36. .grid-wrapper .bottom4 {
  37. grid-area: bottom4;
  38. }
  39. .grid-wrapper > div .wrapper {
  40. border-radius: 6px;
  41. height: 100%;
  42. background-color: #001346;
  43. overflow: hidden;
  44. }
  45. .grid-wrapper .wrapper-content{
  46. position:relative;
  47. height:calc(100% - 40px);
  48. }
  49. .grid-wrapper .wide-border{
  50. height:calc(100% + 1px);
  51. width:100%;
  52. position:absolute;
  53. top:-3px;
  54. left:0px;
  55. border:1px solid #53BAFD;
  56. }
  57. .wide-border-line1{
  58. position:absolute;
  59. left:0px;
  60. top:-26px;
  61. background-color:#0f215c
  62. }
  63. .wide-border-line2{
  64. position:absolute;
  65. right:0px;
  66. top:-26px;
  67. background-color:#0f215c
  68. }
  69. /*边框长*/
  70. .wide-border-long-line2{
  71. position:absolute;
  72. right:0px;
  73. top:-26px;
  74. background-color:#0f215c
  75. }
  76. .wide-border-line3{
  77. position:absolute;
  78. left:0px;
  79. bottom:0;
  80. background-color:#001346;
  81. }
  82. .wide-border-line4{
  83. position:absolute;
  84. right:0px;
  85. bottom:0;
  86. background-color:#001346;
  87. }
  88. .grid-wrapper .chart-tab-t{
  89. padding-left: 82px;
  90. height: 40px;
  91. line-height: 40px;
  92. background-color: #0f215c;
  93. }
  94. .grid-wrapper .chart-tab-t .chart-tab-title{
  95. font-size: 1em;
  96. position: relative;
  97. }
  98. .grid-wrapper .chart-tab-t .chart-tab-title:before{
  99. content:'';
  100. width:14px;
  101. height:14px;
  102. border-radius:50%;
  103. position:absolute;
  104. left:-20px;
  105. top:50%;
  106. background-color:#fff;
  107. transform:translateY(-50%);
  108. -ms-transform:translateY(-50%); /* IE 9 */
  109. -moz-transform:translateY(-50%); /* Firefox */
  110. -webkit-transform:translateY(-50%); /* Safari 和 Chrome */
  111. -o-transform:translateY(-50%); /* Opera */
  112. }
  113. #chart-sczztcjg,#chart-sczzgcqk,#chart-pc1zzxx,#chart-pc2zzxx{
  114. height:100%;
  115. }
  116. .grid-wrapper .center{
  117. display: flex;
  118. flex-direction: column;
  119. justify-content:space-between;
  120. }
  121. .center .line1{
  122. display:flex;
  123. align-items:center;
  124. height:70px;
  125. }
  126. .center .line1 img{
  127. width:40px;
  128. cursor:pointer;
  129. }
  130. .center .line1 .swtichBtn{
  131. position:relative;
  132. }
  133. .center .line1 .swtichBtn .choosebox {
  134. display:none;
  135. width: 180px;
  136. padding: 15px;
  137. position: absolute;
  138. top: 40px;
  139. left: 50%;
  140. z-index:99;
  141. border: 1px solid #3bb3e0;
  142. background-color: #001346;
  143. transform:translateX(-50%);
  144. -ms-transform:translateX(-50%); /* IE 9 */
  145. -moz-transform:translateX(-50%); /* Firefox */
  146. -webkit-transform:translateX(-50%); /* Safari 和 Chrome */
  147. -o-transform:translateX(-50%); /* Opera */
  148. }
  149. .grid-wrapper .center .line1 .cont {
  150. margin: 1px 20px;
  151. font-size:2.0em
  152. }
  153. .grid-wrapper .center .line1 .cont.backurl {
  154. cursor:pointer;
  155. }
  156. .grid-wrapper .center .line1 .division {
  157. flex: 1;
  158. height: 2px;
  159. background-color: #528DFF;
  160. }
  161. .choosebox .tab-areas {
  162. height: 200px;
  163. }
  164. #tab-area1{
  165. height: 100%;
  166. }
  167. #tab-area1 .pc-nums {
  168. height: 100%;
  169. overflow: hidden;
  170. background-color: #fff;
  171. }
  172. #tab-area1 .pc-nums .item {
  173. overflow: hidden;
  174. height: 28px;
  175. line-height: 28px;
  176. text-overflow: ellipsis;
  177. white-space: nowrap;
  178. color: #333;
  179. padding-left: 5px;
  180. cursor: pointer;
  181. font-size:0.6em;
  182. }
  183. #tab-area1 .pc-nums .item:hover{
  184. background-color:#9de5f5;
  185. color:#fff
  186. }
  187. .center .line2{
  188. flex:1;
  189. height:30%;
  190. background-color:#001346;
  191. margin-bottom:10px;
  192. border-radius:6px;
  193. }
  194. .line2 .line2-content{
  195. display: flex;
  196. flex-wrap: wrap;
  197. align-items:center;
  198. justify-content:space-between;
  199. padding:10px;
  200. height:100%;
  201. }
  202. .line2 .qrcode{
  203. flex:1;
  204. display: flex;
  205. justify-content:center;
  206. align-items:center;
  207. }
  208. .line2 img{
  209. width:80%;
  210. }
  211. .line2-data-item{
  212. flex:4;
  213. display:flex;
  214. flex-wrap: wrap;
  215. height:100%;
  216. justify-content:space-between;
  217. }
  218. .line2-data-item .data-item1{
  219. height:50%;
  220. width:50%;
  221. padding:5px;
  222. }
  223. .line2-data-item .data-item1 .item1-content{
  224. background-color:#060B2E;
  225. border-radius:6px;
  226. width:100%;
  227. height:100%;
  228. display: flex;
  229. align-items: center;
  230. justify-content: center;
  231. }
  232. .line2-data-item .data-item1 .item1-content .title{
  233. color:#69F8FE;
  234. font-size:1.8em;
  235. }
  236. .line2-data-item .data-item1 .item1-content .data-value{
  237. font-size:1.8em;
  238. font-weight:bold;
  239. overflow: hidden;
  240. text-overflow: ellipsis;
  241. white-space: nowrap;
  242. max-width: 60%;
  243. }
  244. .center .line3{
  245. height:calc(70% - 80px);
  246. display:flex;
  247. align-items:center;
  248. padding:10px;
  249. }
  250. .center .line3 .left-table,.center .line3 .right-table{
  251. flex:1;
  252. height:100%;
  253. overflow:hidden;
  254. }
  255. .center .line3 .left-table .table-mygl-head{
  256. min-height:30px;
  257. color: #fff;
  258. background-color:#8bc34a;
  259. display:flex;
  260. align-items:center;
  261. width:98%;
  262. margin:0 auto;
  263. }
  264. .center .line3 .left-table .table-mygl-head .table-mygl-head-th{
  265. text-align:center;
  266. width:70px;
  267. }
  268. .center .line3 .left-table .table-mygl-head .table-mygl-head-th:nth-child(2){
  269. flex:1;
  270. }
  271. .center .line3 .right-table .table-zlgl-head{
  272. min-height:30px;
  273. color: #fff;
  274. background-color:#f44336;
  275. display:flex;
  276. align-items:center;
  277. width:98%;
  278. margin:0 auto;
  279. }
  280. .center .line3 .right-table .table-zlgl-head .table-zlgl-head-th{
  281. text-align:center;
  282. width:70px;
  283. }
  284. .center .line3 .right-table .table-zlgl-head .table-zlgl-head-th:nth-child(3){
  285. flex:1;
  286. }
  287. .center .line3 .left-table .table-mygl-body{
  288. height:calc(100% - 30px);
  289. }
  290. .center .line3 .right-table .table-zlgl-body{
  291. height:calc(100% - 30px);
  292. }
  293. .center .line3 .left-table .table-mygl{
  294. margin:0 auto;
  295. width:98%;
  296. height:100%;
  297. font-size:1em;
  298. border:1px solid #8bc34a;
  299. }
  300. .center .line3 .right-table .table-zlgl{
  301. margin:0 auto;
  302. width:98%;
  303. height:100%;
  304. font-size:1em;
  305. border:1px solid #f44336;
  306. }
  307. .left-table .table-mygl tr:nth-child(odd) td{
  308. background-color:#b2cc95
  309. }
  310. .left-table .table-mygl tr:nth-child(even) td{
  311. background-color:#fff
  312. }
  313. .right-table .table-zlgl tr:nth-child(odd) td{
  314. background-color:#ca8a85
  315. }
  316. .right-table .table-zlgl tr:nth-child(even) td{
  317. background-color:#fff
  318. }
  319. .left-table .table-mygl tr td{
  320. text-align:center;
  321. height:30px;
  322. vertical-align:middle;
  323. width:70px;
  324. padding:0 3px;
  325. }
  326. .left-table .table-mygl tr td:nth-child(2){
  327. width:auto;
  328. }
  329. .right-table .table-zlgl tr td:nth-child(3){
  330. width:auto;
  331. }
  332. .right-table .table-zlgl tr td{
  333. text-align:center;
  334. height:30px;
  335. vertical-align:middle;
  336. width:70px;
  337. padding:0 3px;
  338. }
  339. .left-table .table-mygl tr td{
  340. color:#333;
  341. font-size:0.8em;
  342. }
  343. .right-table .table-zlgl tr td{
  344. color:#333;
  345. font-size:0.8em;
  346. }
  347. .right .right-content{
  348. display:flex;
  349. flex-direction:column;
  350. height:100%;
  351. justify-content:space-between;
  352. }
  353. .right-top-block{
  354. height:30%;
  355. }
  356. .right-bottom-block{
  357. height:65%;
  358. }
  359. .right-top-block #box-aqzrr{
  360. height:100%;
  361. display:flex;
  362. padding:10px 25px;
  363. justify-content:flex-start;
  364. align-items:center;
  365. flex-wrap:wrap;
  366. }
  367. #box-aqzrr .aqzrr-content{
  368. padding:15px 10px;
  369. margin-left:10px;
  370. background-color:#060B2E;
  371. border-radius:6px;
  372. display:flex;
  373. align-items:center;
  374. font-size:1.2em;
  375. justify-content:center;
  376. }
  377. .right-bottom-block .tabbed{
  378. transition: border 250ms ease;
  379. }
  380. .right-bottom-block .right-tabs{
  381. height:40px;
  382. display:flex;
  383. justify-content:center;
  384. align-items:center;
  385. }
  386. .tabbed.round .right-tabs .log-tab {
  387. border-radius: 8px 8px 0 0;
  388. display:flex;
  389. align-items:center;
  390. justify-content:center;
  391. /*padding: 10px 24px 8px;*/
  392. height:100%;
  393. width:30%;
  394. background-color: #FFF;
  395. margin-right: 46px;
  396. z-index: 2;
  397. position: relative;
  398. cursor: pointer;
  399. color: #777;
  400. text-transform: uppercase;
  401. font-size:1.2em;
  402. transition: all 250ms ease;
  403. }
  404. .tabbed .right-tabs .log-tab:before, .tabbed .right-tabs .log-tab:after {
  405. display: block;
  406. content: " ";
  407. position: absolute;
  408. top: 0;
  409. height: 100%;
  410. width: 44px;
  411. background-color: #FFF;
  412. transition: all 250ms ease;
  413. }
  414. .tabbed .right-tabs .log-tab:before {
  415. right: -24px;
  416. transform: skew(30deg, 0deg);
  417. box-shadow: rgba(0,0,0,.1) 3px 2px 5px, inset rgba(255,255,255,.09) -1px 0;
  418. border-radius: 0 8px 0 0;
  419. }
  420. .tabbed .right-tabs .log-tab:after {
  421. left: -24px;
  422. transform: skew(-30deg, 0deg);
  423. box-shadow: rgba(0,0,0,.1) -3px 2px 5px, inset rgba(255,255,255,.09) 1px 0;
  424. border-radius: 8px 0 0 0;
  425. }
  426. .tabbed .right-tabs .log-tab.active {
  427. z-index: 3;
  428. }
  429. .tabbed .right-tabs .log-tab.active, .tabbed .right-tabs .log-tab.active:before, .tabbed .right-tabs .log-tab.active:after {
  430. background-color: #53BAFD;
  431. color: #fff;
  432. }
  433. .right-bottom-block .right-logs{
  434. height:calc(100% - 40px);
  435. padding:15px 10px 20px;
  436. overflow:hidden;
  437. border:1px solid #53BAFD;
  438. }
  439. .right-bottom-block .right-logs .log-list{
  440. height:100%;
  441. width:100%;
  442. overflow:hidden;
  443. }
  444. .right-bottom-block .right-logs .log-list .log-item{
  445. height:42px;
  446. display:flex;
  447. align-items:center;
  448. font-size:1.4em;
  449. width:100%;
  450. margin: 0px 12px 12px;
  451. line-height:42px;
  452. padding: 0 8px 0;
  453. background-color:#060B2E;
  454. }
  455. .right-bottom-block .right-logs .log-list .log-item .log-time{
  456. margin-right:20px;
  457. }
  458. .right-bottom-block .right-logs .log-list .log-item .log-content{
  459. color: #A1D8EC;
  460. overflow: hidden;
  461. text-overflow: ellipsis;
  462. display: -webkit-box;
  463. -webkit-line-clamp: 1;
  464. -webkit-box-orient: vertical;
  465. }
  466. .timeline .timeline-content{
  467. display: flex;
  468. align-items: center;
  469. height:100%;
  470. }
  471. .timeline .timeline-content .timedot{
  472. position:relative;
  473. padding:0 25px;
  474. }
  475. .timeline .timeline-content .timedot:before{
  476. content:'';
  477. position:absolute;
  478. top:50%;
  479. left:0px;
  480. width:15px;
  481. height:15px;
  482. border-radius:50%;
  483. transform:translateY(-50%);
  484. -ms-transform:translateY(-50%); /* IE 9 */
  485. -moz-transform:translateY(-50%); /* Firefox */
  486. -webkit-transform:translateY(-50%); /* Safari 和 Chrome */
  487. -o-transform:translateY(-50%); /* Opera */
  488. background-color:#ff9800;
  489. }
  490. .timeline .timeline-content .timedot .timedot-title{
  491. font-size:1.2em;
  492. color: #69F8FE;
  493. }
  494. .timeline .timeline-content .timedot .timedot-date{
  495. font-size:1.2em;
  496. }
  497. .timeline .timeline-content .lineoftime{
  498. flex:1;
  499. background-color:#ea4019;
  500. height:3px;
  501. }
  502. /*bottom1*/
  503. #table-szzsqk,#table-xsjl,#table-whhcllb{
  504. height:100%;
  505. padding:10px 10px 26px;
  506. background-color: #001346;
  507. overflow:hidden;
  508. z-index:1;
  509. cursor:pointer
  510. }
  511. #table-szzsqk .szzsqk-block,#table-xsjl .xsjl-block,#table-whhcllb .whhcllb-block{
  512. width:100%;
  513. height:100%;
  514. position:relative;
  515. }
  516. #table-szzsqk .table-area-head{
  517. margin:0 auto;
  518. width:98%;
  519. font-size:0.9em;
  520. border:1px solid #ff9800;
  521. display:flex;
  522. align-items:center;
  523. }
  524. #table-szzsqk .table-area-head .table-area-head-tab{
  525. color: #fff;
  526. background-color:#ff9800;
  527. text-align:center;
  528. height:30px;
  529. vertical-align:middle;
  530. width:50px;
  531. display:flex;
  532. align-items:center;
  533. justify-content:center;
  534. }
  535. #table-whhcllb .table-area-head{
  536. margin:0 auto;
  537. width:98%;
  538. font-size:0.9em;
  539. display:flex;
  540. align-items:center;
  541. background-color:#9e9e9e;
  542. }
  543. #table-whhcllb .table-area-head .table-area-head-tab{
  544. color: #fff;
  545. background-color:#9e9e9e;
  546. text-align:center;
  547. height:30px;
  548. vertical-align:middle;
  549. width:16.66%;
  550. display:flex;
  551. align-items:center;
  552. justify-content:center;
  553. }
  554. #table-xsjl .table-area-head{
  555. margin:0 auto;
  556. width:98%;
  557. font-size:0.9em;
  558. border:1px solid #5168e8;
  559. display:flex;
  560. align-items:center;
  561. }
  562. #table-xsjl .table-area-head .table-area-head-tab{
  563. color: #fff;
  564. background-color:#5168e8;
  565. text-align:center;
  566. height:30px;
  567. vertical-align:middle;
  568. width:25%;
  569. display:flex;
  570. align-items:center;
  571. justify-content:center;
  572. }
  573. #table-szzsqk .table-area-head .table-area-head-tab:nth-child(2){
  574. flex:1;
  575. }
  576. #table-szzsqk .table-area,#table-xsjl .table-area,#table-whhcllb .table-area{
  577. width:100%;
  578. position:absolute;
  579. top:29px;
  580. left:0;
  581. height:calc(100% - 30px);
  582. overflow:hidden;
  583. }
  584. #table-szzsqk .table-content{
  585. margin:0 auto;
  586. width:98%;
  587. height:100%;
  588. font-size:0.9em;
  589. border:1px solid #ff9800;
  590. }
  591. #table-xsjl .table-content{
  592. margin:0 auto;
  593. width:98%;
  594. height:100%;
  595. font-size:0.9em;
  596. border:1px solid #5168e8;
  597. }
  598. #table-whhcllb .table-content{
  599. margin:0 auto;
  600. width:98%;
  601. height:100%;
  602. font-size:0.9em;
  603. border:1px solid #9e9e9e;
  604. }
  605. #table-szzsqk .table-content tr:nth-child(odd) td{
  606. background-color:#fbe1bb
  607. }
  608. #table-szzsqk .table-content tr:nth-child(even) td{
  609. background-color:#fff
  610. }
  611. #table-xsjl .table-content tr:nth-child(odd) td{
  612. background-color:#97cee6
  613. }
  614. #table-xsjl .table-content tr:nth-child(even) td{
  615. background-color:#fff
  616. }
  617. #table-whhcllb .table-content tr:nth-child(odd) td{
  618. background-color:#e2d9d9
  619. }
  620. #table-whhcllb .table-content tr:nth-child(even) td{
  621. background-color:#fff
  622. }
  623. #table-szzsqk .table-content tr td{
  624. text-align:center;
  625. height:30px;
  626. vertical-align:middle;
  627. width:50px;
  628. padding:0 5px;
  629. }
  630. #table-szzsqk .table-content tr td:nth-child(2){
  631. width:auto;
  632. }
  633. #table-xsjl .table-content tr td{
  634. text-align:center;
  635. height:30px;
  636. vertical-align:middle;
  637. width:25%;
  638. padding:0 3px;
  639. }
  640. #table-whhcllb .table-content tr td{
  641. text-align:center;
  642. height:30px;
  643. vertical-align:middle;
  644. width:16.6%;
  645. padding:0 3px;
  646. }
  647. #table-xsjl .table-content tr td{
  648. color:#333;
  649. font-size:1.2em;
  650. }
  651. #table-szzsqk .table-content tr td{
  652. font-size:0.8em;
  653. color:#333;
  654. }
  655. #table-whhcllb .table-content tr td{
  656. font-size:0.8em;
  657. color:#333;
  658. }
  659. #chart-mzstjl,#chart-twsl{
  660. height:100%;
  661. }
  662. #block-slda{
  663. display: flex;
  664. flex-wrap: wrap;
  665. height: 100%;
  666. justify-content: space-around;
  667. padding:20px;
  668. }
  669. #block-slda .slda-data-left{
  670. width:60%;
  671. display: flex;
  672. flex-direction:column;
  673. justify-content: space-around;
  674. }
  675. #block-slda .slda-data-right{
  676. width:35%;
  677. }
  678. #block-slda .slda-data{
  679. width: 100%;
  680. display: flex;
  681. align-items:center;
  682. }
  683. #block-slda .slda-datar{
  684. display: flex;
  685. flex-direction:column;
  686. align-items:center;
  687. }
  688. #block-slda .slda-datar .data-title{
  689. height:40px;
  690. display: flex;
  691. align-items:center;
  692. }
  693. #block-slda .slda-data .data-title{
  694. width:35%;
  695. }
  696. #block-slda .slda-data .data-value{
  697. width:60%;
  698. word-wrap : break-word ;
  699. word-break:break-all;
  700. }
  701. #block-slda .slda-datar .data-value img{
  702. width:100%;
  703. }
  704. .bottom2,.bottom3{
  705. position:relative;
  706. cursor:pointer;
  707. }
  708. .wrapper.tableb{
  709. position:absolute;
  710. top:0;
  711. left:0;
  712. z-index:2;
  713. width:100%;
  714. display:none;
  715. }