yfs.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536
  1. .grid-wrapper {
  2. color: #ffffff;
  3. padding: 23px 16px 16px;
  4. height: calc(100% - 80px);
  5. display: grid;
  6. grid-gap: 8px;
  7. grid-template-columns: repeat(4, 1fr);
  8. grid-template-rows: repeat(3, 1fr);
  9. grid-template-areas: "left1 center center right" "left2 center center right" "bottom1 bottom1 bottom2 bottom3";
  10. }
  11. .grid-wrapper > div .wrapper {
  12. border-radius: 6px;
  13. height: 100%;
  14. background-color: #001346;
  15. overflow: hidden;
  16. }
  17. .grid-wrapper .wrapper-content{
  18. position:relative;
  19. height:calc(100% - 40px);
  20. }
  21. .grid-wrapper .wide-border{
  22. height:calc(100% + 1px);
  23. width:100%;
  24. position:absolute;
  25. top:-3px;
  26. left:0px;
  27. border:1px solid #53BAFD;
  28. }
  29. .wide-border-line1{
  30. position:absolute;
  31. left:0px;
  32. top:-26px;
  33. background-color:#0f215c
  34. }
  35. .wide-border-line2{
  36. position:absolute;
  37. right:0px;
  38. top:-26px;
  39. background-color:#0f215c
  40. }
  41. .wide-border-line3{
  42. position:absolute;
  43. left:0px;
  44. bottom:0;
  45. background-color:#001346;
  46. }
  47. .wide-border-line4{
  48. position:absolute;
  49. right:0px;
  50. bottom:0;
  51. background-color:#001346;
  52. }
  53. .grid-wrapper .chart-tab-t{
  54. padding-left: 82px;
  55. height: 40px;
  56. line-height: 40px;
  57. background-color: #0f215c;
  58. }
  59. .grid-wrapper .chart-tab-t .chart-tab-title{
  60. font-size: 1em;
  61. position: relative;
  62. }
  63. .grid-wrapper .chart-tab-t .chart-tab-title:before{
  64. content:'';
  65. width:14px;
  66. height:14px;
  67. border-radius:50%;
  68. position:absolute;
  69. left:-20px;
  70. top:50%;
  71. background-color:#fff;
  72. margin-top:-7px;
  73. }
  74. .grid-wrapper .left1 {
  75. grid-area: left1;
  76. }
  77. #sbyxzt-imgs{
  78. display:flex;
  79. flex-direction:column;
  80. padding:20px;
  81. height:100%;
  82. align-items:center;
  83. justify-content:space-around;
  84. }
  85. #sbyxzt-imgs .split-line{
  86. height:30px;
  87. width:100%;
  88. position:relative;
  89. }
  90. #sbyxzt-imgs .split-line:before{
  91. content: '';
  92. position: absolute;
  93. top: 50%;
  94. left: 0;
  95. height: 2px;
  96. margin-top:-1px;
  97. width: 100%;
  98. background: linear-gradient(to right, rgba(11,82,224,0), #0b52e0, rgba(11,82,224,0));
  99. }
  100. #sbyxzt-imgs .shebei-status{
  101. width:100%;
  102. display:flex;
  103. height:45%;
  104. align-items:center;
  105. justify-content:center;
  106. }
  107. #sbyxzt-imgs .shebei-status img{
  108. width:151px;
  109. }
  110. .grid-wrapper .left2 {
  111. grid-area: left2;
  112. }
  113. #chart-ssqx,#chart-pzfb,#chart-ttfb,#chart-ydttsl,#chart-fmzzfb,#chart-czfx,#chart-jyfx,#chart-rlfbqk{
  114. height:100%;
  115. }
  116. .grid-wrapper .center {
  117. grid-area: center;
  118. }
  119. .center .line1{
  120. display:flex;
  121. align-items:center;
  122. height:70px;
  123. }
  124. .center .line1 img{
  125. width:40px;
  126. cursor:pointer;
  127. }
  128. .grid-wrapper .center .line1 .cont {
  129. margin: 1px 20px;
  130. font-size:2.0em
  131. }
  132. .grid-wrapper .center .line1 .division {
  133. flex: 1;
  134. height: 2px;
  135. background-color: #528DFF;
  136. }
  137. .center .line2{
  138. flex:1;
  139. height:30%;
  140. background-color:#001346;
  141. margin-bottom:10px;
  142. border-radius:6px;
  143. }
  144. .line2 .line2-content{
  145. display: flex;
  146. flex-wrap: wrap;
  147. align-items:center;
  148. justify-content:space-between;
  149. padding:10px;
  150. height:100%;
  151. }
  152. .line2 .qrcode{
  153. flex:1;
  154. display: flex;
  155. justify-content:center;
  156. align-items:center;
  157. }
  158. .line2 img{
  159. width:80%;
  160. }
  161. .line2-data-item{
  162. flex:4;
  163. display:flex;
  164. flex-wrap: wrap;
  165. height:100%;
  166. justify-content:space-between;
  167. }
  168. .line2-data-item .data-item1{
  169. height:50%;
  170. width:50%;
  171. padding:5px;
  172. }
  173. .line2-data-item .data-item2{
  174. width:50%;
  175. height:33.33%;
  176. padding:5px;
  177. }
  178. .line2-data-item .data-item1 .item1-content,.line2-data-item .data-item2 .item1-content{
  179. background-color:#060B2E;
  180. border-radius:6px;
  181. width:100%;
  182. height:100%;
  183. display: flex;
  184. align-items: center;
  185. justify-content: center;
  186. }
  187. .line2-data-item .data-item1 .item1-content .title{
  188. color:#69F8FE;
  189. font-size:1.8em;
  190. }
  191. .line2-data-item .data-item2 .item1-content .title{
  192. color:#69F8FE;
  193. font-size:1.4em;
  194. }
  195. .line2-data-item .data-item1 .item1-content .data-value{
  196. font-size:1.8em;
  197. font-weight:bold;
  198. overflow: hidden;
  199. text-overflow: ellipsis;
  200. white-space: nowrap;
  201. max-width: 60%;
  202. }
  203. .line2-data-item .data-item2 .item1-content .data-value{
  204. font-size:1.6em;
  205. font-weight:bold;
  206. overflow: hidden;
  207. text-overflow: ellipsis;
  208. white-space: nowrap;
  209. max-width: 60%;
  210. }
  211. .line2-btns{
  212. flex:1;
  213. display:flex;
  214. height:100%;
  215. flex-direction:column;
  216. align-items:center;
  217. justify-content:space-around;
  218. }
  219. .line2-btns .find-fz-info{
  220. width:80%;
  221. height:39px;
  222. border: 2.5px solid #53BAFD;
  223. position: relative;
  224. border-radius:6px;
  225. }
  226. .find-fz-info .zhe-block{
  227. width: 15px;
  228. height: 15px;
  229. border-bottom: 3px solid #53BAFD;
  230. position: absolute;
  231. background-color: #001346;
  232. }
  233. .find-fz-info .title{
  234. height: 100%;
  235. font-size: 0.9em;
  236. color: #53BAFD;
  237. font-weight: normal;
  238. cursor:pointer;
  239. display:flex;
  240. align-items:center;
  241. justify-content:center;
  242. }
  243. .find-fz-info .arrow-right{
  244. height: 20px;
  245. vertical-align: text-top;
  246. width: 20px;
  247. cursor: pointer;
  248. position: relative;
  249. margin-left:2px;
  250. }
  251. .find-fz-info .arrow-right:before{
  252. content: '';
  253. left: 3px;
  254. border-left: 10px #53BAFD solid;
  255. }
  256. .find-fz-info .arrow-right:before,.find-fz-info .arrow-right:after {
  257. width: 0;
  258. height: 0;
  259. display: block;
  260. position: absolute;
  261. right: 0;
  262. top: 0;
  263. border-top: 10px transparent dashed;
  264. border-right: 10px transparent dashed;
  265. border-bottom: 10px transparent dashed;
  266. border-left: 10px #53BAFD solid;
  267. overflow: hidden;
  268. }
  269. .find-fz-info .arrow-right:after{
  270. content: '';
  271. border-left: 10px #001346 solid;
  272. }
  273. .line2-btns .replay-Video{
  274. width:50%;
  275. height:39px;
  276. border: 2.5px solid #53BAFD;
  277. border-radius:6px;
  278. position:relative;
  279. }
  280. .replay-btn{
  281. width:100%;
  282. height:100%;
  283. display:flex;
  284. align-items:center;
  285. justify-content:center;
  286. cursor:pointer;
  287. }
  288. .line2-btns .replay-Video .arrow-u-right{
  289. width:0;
  290. height:0;
  291. border: 10px solid transparent;
  292. border-left-color: #53BAFD;
  293. margin-right:-10px;
  294. }
  295. .replay-Video .choose-videoBox{
  296. width:446px;
  297. position:absolute;
  298. top:50px;
  299. left:50%;
  300. transform:translateX(-50%);
  301. -ms-transform:translateX(-50%); /* IE 9 */
  302. -moz-transform:translateX(-50%); /* Firefox */
  303. -webkit-transform:translateX(-50%); /* Safari 和 Chrome */
  304. -o-transform:translateX(-50%); /* Opera */
  305. z-index:100;
  306. background-color: #001346;
  307. border-radius:6px;
  308. box-shadow:0px -5px 5px 0px rgba(255,255,255,0.1),-5px 0px 5px 0px rgba(255,255,255,0.1),5px 0px 5px 0px rgba(255,255,255,0.1),0px 5px 5px 0px rgba(255,255,255,0.1);
  309. }
  310. .choose-videoBox .tab-videocontrol{
  311. width:100%;
  312. height:100%;
  313. }
  314. .tab-videocontrol .control-box1{
  315. display:none;
  316. }
  317. .control-box1 .tab-video-head {
  318. height:40px;
  319. display: flex;
  320. align-items: center;
  321. justify-content:center;
  322. font-size:1.2em;
  323. color:#53BAFD;
  324. position:relative;
  325. }
  326. .control-box1 .tab-video-body{
  327. height:240px;
  328. padding:10px 50px;
  329. }
  330. .control-box1 .tab-video-foot{
  331. }
  332. .tab-video-foot .tab-foot-top{
  333. height:40px;
  334. display: flex;
  335. align-items: center;
  336. justify-content:center;
  337. font-size:1.2em;
  338. color:#53BAFD;
  339. position:relative;
  340. }
  341. .tab-video-foot .tab-videoes{
  342. height:140px;
  343. padding:10px 50px;
  344. overflow:hidden;
  345. }
  346. .tab-videoes .video-item{
  347. height: 31px;
  348. display: flex;
  349. align-items: center;
  350. flex-wrap: nowrap;
  351. padding: 0 10px;
  352. color: #fff;
  353. border-bottom:1px dashed #a4cfe5;
  354. }
  355. .video-date,.video-time{
  356. font-size:0.9em;
  357. }
  358. .video-item i{
  359. margin-right:15px;
  360. }
  361. .video-item .time-crossline{
  362. margin:0 15px;
  363. }
  364. .tab-video-body .tab-video-content{
  365. display:flex;
  366. align-items: center;
  367. margin-top:20px;
  368. }
  369. .tab-video-content .tab-type{
  370. flex:1;
  371. text-align:center;
  372. font-size:1.2em;
  373. }
  374. .tab-video-content .select{
  375. flex:2;
  376. height:32px;
  377. position: relative;
  378. vertical-align: middle;
  379. padding: 2px;
  380. overflow: hidden;
  381. background-color: #001346;
  382. color: #fff;
  383. text-shadow: none;
  384. border-radius: 4px;
  385. transition: box-shadow 0.25s ease;
  386. border:1px solid #0b52e0;
  387. z-index: 2;
  388. display:flex;
  389. align-items: center;
  390. }
  391. .tab-video-content .datetimePicker{
  392. flex:2;
  393. height:32px;
  394. border-radius: 4px;
  395. transition: box-shadow 0.25s ease;
  396. font-size: 0;
  397. white-space: nowrap;
  398. display:flex;
  399. justify-content: space-between;
  400. }
  401. .tab-video-content .video-find{
  402. flex:2;
  403. }
  404. .tab-video-content .video-find #sub-btn{
  405. width:103px;
  406. height:30px;
  407. font-size:1.1em;
  408. text-align:center;
  409. line-height:30px;
  410. -webkit-border-radius: 16px;
  411. -moz-border-radius: 16px;
  412. border-radius: 16px;
  413. background-color:#ea8c29;
  414. color:#fff;
  415. cursor:pointer;
  416. }
  417. input[type="text"]{
  418. display: inline-block;
  419. height: 20px;
  420. padding: 4px 6px;
  421. margin-bottom: 10px;
  422. font-size: 14px;
  423. line-height: 20px;
  424. color: #555555;
  425. -webkit-border-radius: 4px;
  426. -moz-border-radius: 4px;
  427. border-radius: 4px;
  428. vertical-align: middle;
  429. background-color: #ffffff;
  430. border: 1px solid #cccccc;
  431. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  432. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  433. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  434. -webkit-transition: border linear .2s, box-shadow linear .2s;
  435. -moz-transition: border linear .2s, box-shadow linear .2s;
  436. -o-transition: border linear .2s, box-shadow linear .2s;
  437. transition: border linear .2s, box-shadow linear .2s;
  438. }
  439. .input-append input{
  440. position: relative;
  441. margin-bottom: 0;
  442. vertical-align: top;
  443. -webkit-border-radius: 4px;
  444. -moz-border-radius: 4px;
  445. border-radius: 4px;
  446. background-color: #eeeeee;
  447. outline:none;
  448. border:1px solid #0b52e0;
  449. height: 32px;
  450. color:#fff;
  451. background-color: #001346;
  452. }
  453. input[readonly]{
  454. cursor: not-allowed;
  455. }
  456. .input-append .add-on {
  457. white-space: nowrap;
  458. vertical-align: middle;
  459. display:flex;
  460. align-items: center;
  461. }
  462. [class^="icon-"], [class*=" icon-"]{
  463. display: inline-block;
  464. background-image: url(../img/glyphicons-halflings-white.png);
  465. background-repeat: no-repeat;
  466. cursor: pointer;
  467. width: 14px;
  468. height: 14px;
  469. }
  470. .icon-remove {
  471. background-position: -312px 0;
  472. }
  473. .icon-th {
  474. background-position: -240px 0;
  475. }
  476. table {
  477. max-width: 100%;
  478. background-color: transparent;
  479. border-collapse: collapse;
  480. border-spacing: 0;
  481. }
  482. .table-condensed th i{
  483. background-image: url(../img/glyphicons-halflings.png);
  484. }
  485. .table-condensed th, .table-condensed td {
  486. padding: 4px 5px;
  487. }
  488. .icon-arrow-left {
  489. background-position: -240px -96px;
  490. }
  491. .icon-arrow-right {
  492. background-position: -264px -96px;
  493. }
  494. .dropdown-menu {
  495. position: absolute;
  496. top: 100%;
  497. left: 0;
  498. z-index: 1000;
  499. display: none;
  500. float: left;
  501. min-width: 160px;
  502. padding: 5px 0;
  503. margin: 2px 0 0;
  504. list-style: none;
  505. background-color: #fff;
  506. border: 1px solid #ccc;
  507. border: 1px solid rgba(0,0,0,0.2);
  508. *border-right-width: 2px;
  509. *border-bottom-width: 2px;
  510. -webkit-border-radius: 6px;
  511. -moz-border-radius: 6px;
  512. border-radius: 6px;
  513. -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  514. -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  515. box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  516. -webkit-background-clip: padding-box;
  517. -moz-background-clip: padding;
  518. background-clip: padding-box;
  519. }
  520. .tab-video-content .select:before {
  521. content: "";
  522. position: absolute;
  523. width: 0;
  524. height: 0;
  525. border: 6px solid transparent;
  526. border-top-color: #fff;
  527. top: 12px;
  528. right: 4px;
  529. cursor: pointer;
  530. z-index: -2;
  531. }
  532. .tab-video-content .select select {
  533. cursor: pointer;
  534. padding: 3px 0px;
  535. width: 100%;
  536. border: none;
  537. background: transparent;
  538. background-image: none;
  539. -webkit-appearance: none;
  540. -moz-appearance: none;
  541. outline:none;
  542. text-align:center;
  543. color: #fff;
  544. padding-left:10px;
  545. font-size:0.7em;
  546. }
  547. .tab-video-content .select option{
  548. background-color:#001346;
  549. }
  550. .tab-video-head:before,.tab-video-foot .tab-foot-top:before{
  551. content: '';
  552. position: absolute;
  553. bottom: 0px;
  554. left: 5%;
  555. height: 2px;
  556. width: 90%;
  557. background: linear-gradient(to right, rgba(11,82,224,0), #0b52e0, rgba(11,82,224,0));
  558. }
  559. .grid-wrapper .right {
  560. grid-area: right;
  561. }
  562. /*疫苗开始*/
  563. .wrapper .msg-tab-head{
  564. background-color:#0E1E51;
  565. width:100%;
  566. padding:10px 40px;
  567. height:100px;
  568. color:#898a90;
  569. display: flex;
  570. flex:1;
  571. justify-content:space-around;
  572. flex-wrap:nowrap;
  573. }
  574. .wrapper .msg-tab-body{
  575. height:calc(100% - 100px);
  576. padding:5px;
  577. padding-bottom:0;
  578. }
  579. .msg-list-content{
  580. height:100%;
  581. overflow:hidden;
  582. display:none;
  583. width:100%;
  584. }
  585. .msg-list-content .list-container{
  586. height:100%;
  587. display:flex;
  588. flex-direction:column;
  589. width:100%;
  590. }
  591. .msg-tab-body .msg-list-content.active{
  592. display:block;
  593. }
  594. .msg-tab-body .msg-tab-list{
  595. height:30px;
  596. display: flex;
  597. align-items: center;
  598. justify-content: space-between;
  599. flex-wrap:nowrap;
  600. color:#a4cfe5;
  601. width:100%;
  602. margin-bottom:3px;
  603. }
  604. .msg-tab-body .msg-tab-list .man-dothis{
  605. font-size:0.8em;
  606. background-color:#060B2E;
  607. border-radius:5px;
  608. width:55px;
  609. height:100%;
  610. display: flex;
  611. align-items: center;
  612. justify-content: center;
  613. }
  614. .msg-tab-body .msg-tab-list .this-info{
  615. width:60px;
  616. height:100%;
  617. padding:0 4px;
  618. text-align:center;
  619. }
  620. .msg-tab-body .msg-tab-list .blank-info{
  621. width:4px;
  622. }
  623. .msg-tab-body .msg-tab-list .plan-obj{
  624. font-size:0.8em;
  625. background-color:#060B2E;
  626. border-radius:5px;
  627. height:100%;
  628. display: flex;
  629. align-items: center;
  630. justify-content: center;
  631. }
  632. .msg-tab-body .msg-tab-list .this-content-box{
  633. flex:1;
  634. height:100%;
  635. }
  636. .msg-tab-body .msg-tab-list .this-content{
  637. font-size:0.8em;
  638. display:flex;
  639. align-items:center;
  640. background-color:#060B2E;
  641. border-radius:5px;
  642. padding-left:3px;
  643. height:100%;
  644. position:relative;
  645. padding-right:60px;
  646. }
  647. .msg-tab-body .msg-tab-list .this-content.finish-over{
  648. padding-right:75px;
  649. }
  650. .msg-tab-body .msg-tab-list .this-content .msg-content{
  651. display: -webkit-box;
  652. -webkit-box-orient: vertical;
  653. -webkit-line-clamp: 1;
  654. overflow: hidden;
  655. line-height:30px;
  656. height:100%;
  657. }
  658. td .todo-btn,td .ready-todo-btn,td .confirmready-todo-btn{
  659. padding:10px;
  660. }
  661. .msg-tab-body .msg-tab-list .this-content .ypsqxq-btn,.msg-tab-body .msg-tab-list .this-content .ypsqsh-btn,.msg-tab-body .msg-tab-list .this-content .cureinfo-btn,.msg-tab-body .msg-tab-list .this-content .cure-btn,.msg-tab-body .msg-tab-list .this-content .zhenduan-btn,.msg-tab-body .msg-tab-list .this-content .todo-btn,.msg-tab-body .msg-tab-list .this-content .ready-todo-btn,.msg-tab-body .msg-tab-list .this-content .confirmready-todo-btn{
  662. position:absolute;
  663. right:5px;
  664. top:0px;
  665. display:flex;
  666. align-items:center;
  667. height:100%;
  668. color:#53BAFD;
  669. cursor:pointer;
  670. width:60px;
  671. justify-content:center;
  672. }
  673. .msg-tab-body .msg-tab-list .this-content .finish-time{
  674. position:absolute;
  675. right:5px;
  676. top:0px;
  677. display:flex;
  678. align-items:center;
  679. height:100%;
  680. cursor:pointer;
  681. width:75px;
  682. justify-content:center;
  683. }
  684. .msg-tab-body .msg-list-content .list-content-block{
  685. position:relative;
  686. flex:1;
  687. height:33.33%;
  688. width:100%;
  689. padding-bottom:4px;
  690. }
  691. .msg-tab-list-head{
  692. height:35px;
  693. display:flex;
  694. align-items:center;
  695. justify-content:center;
  696. position:relative;
  697. background-color:#060B2E;
  698. border-radius:5px;
  699. margin-bottom:5px;
  700. }
  701. .open-all-plan-list{
  702. position:absolute;
  703. right:10px;
  704. height:100%;
  705. display:flex;
  706. align-items:center;
  707. font-size:12px;
  708. color:#53BAFD;
  709. cursor:pointer;
  710. }
  711. .msg-tab-list-content{
  712. height:calc(100% - 40px);
  713. overflow:hidden;
  714. width:100%;
  715. }
  716. .msg-tab-body .list-content-block:before{
  717. content: '';
  718. position: absolute;
  719. bottom: 0px;
  720. left: 10%;
  721. height: 2px;
  722. width: 80%;
  723. background: linear-gradient(to right, rgba(11,82,224,0), #0b52e0, rgba(11,82,224,0));
  724. }
  725. .msg-tab-head .msg-tab1{
  726. display: flex;
  727. flex-direction: column;
  728. cursor:pointer;
  729. align-items:center;
  730. justify-content:center;
  731. }
  732. .msg-tab-head .msg-tab1:nth-child(1) img{
  733. width:42px;
  734. }
  735. .msg-tab-head .msg-tab1:nth-child(2) img{
  736. width:55px;
  737. }
  738. .msg-tab-head .msg-tab1:nth-child(3) img{
  739. width:27px;
  740. }
  741. .msg-tab-head .msg-tab1:nth-child(4) img{
  742. width:64px;
  743. }
  744. .msg-tab-head .msg-tab1 span{
  745. line-height:30px;
  746. text-align:center;
  747. font-size:1.2em;
  748. }
  749. .msg-tab-head .msg-tab1.active span{
  750. color:#fff;
  751. }
  752. .right #details-form{
  753. position:fixed;
  754. top:100px;
  755. left:50%;
  756. transform: translateX(-50%);
  757. -ms-transform: translateX(-50%);
  758. -moz-transform: translateX(-50%);
  759. -webkit-transform: translateX(-50%);
  760. -o-transform: translateX(-50%);
  761. display:none;
  762. z-index:99;
  763. background-color: #001346;
  764. border-radius: 6px;
  765. box-shadow: 0px -5px 5px 0px rgba(255,255,255,0.1), -5px 0px 5px 0px rgba(255,255,255,0.1), 5px 0px 5px 0px rgba(255,255,255,0.1), 0px 5px 5px 0px rgba(255,255,255,0.1);
  766. }
  767. #details-form .detail-content{
  768. width:100%;
  769. height:100%;
  770. }
  771. #details-form .detail-content .table-myjh{
  772. display:none;
  773. height:423px;
  774. }
  775. #details-form .detail-content .table-myjh.active{
  776. display:block;
  777. }
  778. #details-form .detail-content .table-myjh .tab-table-myjh-head{
  779. height: 40px;
  780. display: flex;
  781. align-items: center;
  782. justify-content: center;
  783. font-size: 1.2em;
  784. color: #53BAFD;
  785. position: relative;
  786. }
  787. .tab-table-myjh-head:before{
  788. content: '';
  789. position: absolute;
  790. bottom: 0px;
  791. left: 5%;
  792. height: 2px;
  793. width: 90%;
  794. background: linear-gradient(to right, rgba(11,82,224,0), #0b52e0, rgba(11,82,224,0));
  795. }
  796. #details-form .tab-table-myjh-body{
  797. padding:10px;
  798. height:calc(100% - 40px);
  799. position:relative;
  800. }
  801. #details-form .table-area-head{
  802. margin-bottom:5px;
  803. width:100%;
  804. display:flex;
  805. align-items:center;
  806. background-color:#133795;
  807. height: 43px;
  808. border-radius: 5px;
  809. }
  810. #details-form .table-myjh .table-area-head .table-area-head-tab{
  811. color: #fff;
  812. text-align:center;
  813. height:30px;
  814. vertical-align:middle;
  815. width:100px;
  816. display:flex;
  817. align-items:center;
  818. justify-content:center;
  819. }
  820. #details-form .table-area{
  821. width:100%;
  822. padding:10px;
  823. padding-top:0px;
  824. position:absolute;
  825. top:58px;
  826. left:0;
  827. height:calc(100% - 58px);
  828. overflow:hidden;
  829. border-radius: 0 0 5px 5px;
  830. }
  831. #details-form .table-area .table-area-box{
  832. height:100%;
  833. }
  834. #details-form .table-myjh .table-content{
  835. width:100%;
  836. height:100%;
  837. overflow:hidden;
  838. }
  839. #details-form .table-myjh .table-content tr{
  840. border-top: 1px solid #09153d;
  841. }
  842. #details-form .table-myjh .table-content tr td{
  843. text-align: center;
  844. height: 39px;
  845. vertical-align: middle;
  846. padding: 0 3px;
  847. background-color: #0c1f59;
  848. color: #fff;
  849. }
  850. #details-form .table-myjh .table-content tr td{
  851. width:100px;
  852. }
  853. #details-form .table-myjh .table-content tr td{
  854. font-size:0.9em;
  855. }
  856. #details-form .table-myjh:nth-child(1) .table-content tr td:last-child,#details-form .table-myjh:nth-child(2) .table-content tr td:last-child{
  857. color:#53BAFD;
  858. cursor:pointer;
  859. }
  860. #confirm-plan-window,#check-plan-window,#finalcheck-plan-window,#diagnose-window,.cure-window{
  861. width:350px;
  862. position:fixed;
  863. display:none;
  864. top:140px;
  865. left:50%;
  866. transform: translateX(-50%);
  867. -ms-transform: translateX(-50%);
  868. -moz-transform: translateX(-50%);
  869. -webkit-transform: translateX(-50%);
  870. -o-transform: translateX(-50%);
  871. z-index:100;
  872. background-color: #001346;
  873. border-radius: 6px;
  874. box-shadow: 0px -5px 5px 0px rgba(255,255,255,0.1), -5px 0px 5px 0px rgba(255,255,255,0.1), 5px 0px 5px 0px rgba(255,255,255,0.1), 0px 5px 5px 0px rgba(255,255,255,0.1);
  875. }
  876. #diagnose-window,.cure-window{
  877. width:520px;
  878. }
  879. .window-head{
  880. height: 30px;
  881. display: flex;
  882. align-items: center;
  883. justify-content: center;
  884. font-size: 1em;
  885. color: #53BAFD;
  886. position: relative;
  887. }
  888. .window-head:before {
  889. content: '';
  890. position: absolute;
  891. bottom: 0px;
  892. left: 5%;
  893. height: 1px;
  894. width: 90%;
  895. background: linear-gradient(to right, rgba(11,82,224,0), #0b52e0, rgba(11,82,224,0));
  896. }
  897. .window-body{
  898. display:flex;
  899. flex-direction:column;
  900. padding:10px;
  901. max-height:800px;
  902. }
  903. #confirm-plan-window .window-body .plan-items,.plan-items1{
  904. display:flex;
  905. align-items:center;
  906. justify-content:center;
  907. height:30px;
  908. }
  909. #check-plan-window .window-body .check-items,#finalcheck-plan-window .window-body .check-items,#diagnose-window .window-body .diagnose-items,.cure-window .window-body .cure-items{
  910. display:flex;
  911. align-items:center;
  912. justify-content:center;
  913. margin-bottom:13px;
  914. }
  915. #diagnose-window .window-body .diagnose-items .drug-items,.cure-window .window-body .cure-items .drug-items{
  916. display:flex;
  917. align-items:center;
  918. justify-content:center;
  919. margin-bottom:13px;
  920. width:100%;
  921. flex-direction:column;
  922. position:relative;
  923. padding-bottom:20px;
  924. }
  925. #diagnose-window .window-body .diagnose-items .drug-items:first-child,.cure-window .window-body .cure-items .drug-items:first-child{
  926. padding-bottom:0px;
  927. }
  928. .cut-items{
  929. position:absolute;
  930. right:0px;
  931. bottom:0px;
  932. cursor:pointer;
  933. display:flex;
  934. align-items:center;
  935. height:20px;
  936. }
  937. .cut-items:hover{
  938. color:#53BAFD;
  939. }
  940. .icon-cut{
  941. background-position:-428px -97px;
  942. margin-right:5px;
  943. }
  944. #diagnose-window .window-body .diagnose-items,.cure-window .window-body .cure-items{
  945. position:relative;
  946. }
  947. #diagnose-window .window-body .diagnose-items .add-items,.cure-window .window-body .cure-items .add-items{
  948. position:absolute;
  949. right:3px;
  950. top:50%;
  951. transform: translateY(-50%);
  952. -ms-transform: translateY(-50%);
  953. -moz-transform: translateY(-50%);
  954. -webkit-transform: translateY(-50%);
  955. -o-transform: translateY(-50%);
  956. }
  957. .icon-add{
  958. background-position: -408px -97px;
  959. }
  960. #check-plan-window .window-body .check-items .check-items-title,#finalcheck-plan-window .window-body .check-items .check-items-title{
  961. font-size:0.8em;
  962. width:90px;
  963. text-align:right
  964. }
  965. #diagnose-window .window-body .diagnose-items .diagnose-items-title,.cure-window .window-body .cure-items .cure-items-title{
  966. font-size:0.8em;
  967. }
  968. #diagnose-window .window-body .diagnose-items input[type="text"],.cure-items-data input[type="text"],.cure-window .window-body .cure-items input[type="text"]{
  969. outline:none;
  970. background-color:#001346;
  971. border:1px solid #0b52e0;
  972. color:#fff;
  973. margin-bottom:0px;
  974. width:100%;
  975. height:26px;
  976. }
  977. .cure-items-data input[type="text"]{
  978. width:70% !important;
  979. margin-left:20px;
  980. height:28px !important;
  981. }
  982. .flex-end{
  983. justify-content:flex-end !important;
  984. }
  985. .flex-end label{
  986. cursor:pointer;
  987. }
  988. .flex-end input{
  989. cursor:pointer;
  990. }
  991. #check-plan-window .window-body .check-items textarea,#finalcheck-plan-window .window-body .check-items textarea{
  992. outline:none;
  993. resize:none
  994. }
  995. .shenhe-beizhu{
  996. margin-left:0px !important;
  997. width:80% !important;
  998. }
  999. .window-btn{
  1000. width: 103px;
  1001. height: 27px;
  1002. font-size: 0.8em;
  1003. text-align: center;
  1004. line-height: 27px;
  1005. -webkit-border-radius: 16px;
  1006. -moz-border-radius: 16px;
  1007. border-radius: 16px;
  1008. color: #fff;
  1009. cursor: pointer;
  1010. }
  1011. input.btn-qr{
  1012. background-color:#53BAFD;
  1013. margin-right:20px;
  1014. }
  1015. .btn-ypsq{
  1016. background-color:#49bf8e;
  1017. }
  1018. .btn-yes,.btn-tg{
  1019. background-color:#53BAFD;
  1020. margin-right:20px;
  1021. }
  1022. .btn-no,.btn-bh{
  1023. background-color:#cc503d;
  1024. }
  1025. #confirm-plan-window .window-body .plan-items-title{
  1026. font-size:0.8em;
  1027. width:90px;
  1028. text-align:right
  1029. }
  1030. #diagnose-window .window-body .diagnose-items-data,.cure-window .window-body .cure-items-data{
  1031. width:80%;
  1032. font-size:0.8em;
  1033. display:flex;
  1034. align-items:center;
  1035. }
  1036. .cure-items-data .chuli-style-block{
  1037. display:flex;
  1038. align-items:center;
  1039. width:100%;
  1040. flex-direction:column;
  1041. border:1px solid #0b52e0;
  1042. font-size: 1em;
  1043. border-radius:3px;
  1044. padding:7px;
  1045. }
  1046. .chuli-style-block .binli-time{
  1047. height: 25px;
  1048. display: flex;
  1049. align-items: center;
  1050. justify-content: center;
  1051. font-size: 1em;
  1052. position: relative;
  1053. width:100%;
  1054. }
  1055. .chuli-style-block .binli-time:before{
  1056. content: '';
  1057. position: absolute;
  1058. bottom: 2px;
  1059. left: 0;
  1060. height: 1px;
  1061. width: 100%;
  1062. background: linear-gradient(to right, rgba(11,82,224,0), #0b52e0, rgba(11,82,224,0));
  1063. }
  1064. .cure-items-data .chuli-style-block .chuli1{
  1065. width:100%;
  1066. display:flex;
  1067. align-items:flex-start;
  1068. margin-bottom:5px;
  1069. }
  1070. .cure-items-data .chuli-style-block .chuli1:last-child{
  1071. margin-bottom:0px;
  1072. }
  1073. .chuli-style-block .chuli1 .chuli-way{
  1074. width:10%;
  1075. color:#53BAFD
  1076. }
  1077. .chuli-style-block .chuli1 .chuli-content{
  1078. width:90%;
  1079. display: -webkit-box;
  1080. -webkit-box-orient: vertical;
  1081. -webkit-line-clamp: 3;
  1082. overflow: hidden;
  1083. }
  1084. #diagnose-window .window-body .diagnose-chuli-block,.cure-window .window-body .cure-chuli-block{
  1085. width:80%;
  1086. padding:7px;
  1087. font-size:0.8em;
  1088. display:flex;
  1089. align-items:center;
  1090. border:1px solid #0b52e0;
  1091. border-radius:3px;
  1092. flex-direction:column;
  1093. }
  1094. #diagnose-window .window-body .diagnose-chuli-block .diagnose-chuli-block-item,.cure-window .window-body .cure-chuli-block .cure-chuli-block-item{
  1095. display:flex;
  1096. align-items:center;
  1097. justify-content:space-between;
  1098. margin-bottom:10px;
  1099. width:100%;
  1100. }
  1101. #diagnose-window .window-body .diagnose-chuli-block .diagnose-chuli-block-item:last-child,.cure-window .window-body .cure-chuli-block .cure-chuli-block-item:last-child{
  1102. margin-bottom:0px;
  1103. }
  1104. #confirm-plan-window .window-body .plan-items-data{
  1105. width:50%;
  1106. font-size:0.8em;
  1107. display:flex;
  1108. align-items:center;
  1109. }
  1110. #confirm-plan-window .window-body .plan-items .plan-items-data .data-nums{
  1111. flex:1;
  1112. text-align:center;
  1113. }
  1114. .plan-items-data .select ,.diagnose-chuli-block .select,.cure-items .select{
  1115. flex:1;
  1116. position: relative;
  1117. vertical-align: middle;
  1118. padding: 2px;
  1119. overflow: hidden;
  1120. background-color: #001346;
  1121. color: #fff;
  1122. text-shadow: none;
  1123. border-radius: 4px;
  1124. transition: box-shadow 0.25s ease;
  1125. z-index: 2;
  1126. display: flex;
  1127. align-items: center;
  1128. }
  1129. .cure-items .cure-status{
  1130. flex:1;
  1131. display: flex;
  1132. align-items: center;
  1133. border:1px solid #0b52e0;
  1134. justify-content:center;
  1135. height:28px;
  1136. border-radius: 4px;
  1137. }
  1138. .cure-items .cure-beizhu{
  1139. display: flex;
  1140. align-items: center;
  1141. width: 70% ;
  1142. margin-left: 20px;
  1143. padding-left:5px;
  1144. height: 28px ;
  1145. border-radius: 4px;
  1146. border:1px solid #0b52e0;
  1147. }
  1148. .diagnose-chuli-block .select,.cure-items .select{
  1149. border:1px solid #0b52e0;
  1150. }
  1151. .diagnose-chuli-block .diagnose-chuli-block-item:nth-child(1) input,.cure-chuli-block .cure-chuli-block-item:nth-child(1) input{
  1152. width:50px !important;
  1153. height:100%;
  1154. }
  1155. .diagnose-chuli-block .use-how,.cure-chuli-block .use-how{
  1156. flex:1;
  1157. }
  1158. .diagnose-chuli-block .use-how input{
  1159. width:100%;
  1160. }
  1161. .chuli-block-item-title{
  1162. margin-left:5px;
  1163. }
  1164. .plan-items-data input{
  1165. height:27px;
  1166. }
  1167. .plan-items-data .select:before ,.diagnose-chuli-block .select:before,.cure-items .select:before{
  1168. content: "";
  1169. position: absolute;
  1170. width: 0;
  1171. height: 0;
  1172. border: 6px solid transparent;
  1173. border-top-color: #fff;
  1174. top: 12px;
  1175. right: 4px;
  1176. cursor: pointer;
  1177. z-index: -2;
  1178. }
  1179. .plan-items-data .select select ,.diagnose-chuli-block .select select,.cure-items .select select {
  1180. cursor: pointer;
  1181. padding: 3px 0px;
  1182. width: 100%;
  1183. border: none;
  1184. background: transparent;
  1185. background-image: none;
  1186. -webkit-appearance: none;
  1187. -moz-appearance: none;
  1188. outline: none;
  1189. text-align: center;
  1190. color: #fff;
  1191. padding-right:20px;
  1192. font-size: 1em;
  1193. text-align:center;
  1194. text-align-last: center;
  1195. }
  1196. .plan-items-data .select option ,.diagnose-chuli-block .select option,.cure-items .select option{
  1197. background-color: #001346;
  1198. text-align:center;
  1199. text-align-last: center;
  1200. }
  1201. .plan-items-data .datetimePicker {
  1202. flex: 1;
  1203. border-radius: 4px;
  1204. transition: box-shadow 0.25s ease;
  1205. font-size: 0;
  1206. white-space: nowrap;
  1207. display: flex;
  1208. justify-content: space-between;
  1209. }
  1210. .plan-items:last-child{
  1211. margin-top:10px;
  1212. }
  1213. .plan-items-data .confirs-btn {
  1214. width: 103px;
  1215. height: 27px;
  1216. font-size: 1em;
  1217. text-align: center;
  1218. line-height: 27px;
  1219. -webkit-border-radius: 16px;
  1220. -moz-border-radius: 16px;
  1221. border-radius: 16px;
  1222. background-color: #ea8c29;
  1223. color: #fff;
  1224. cursor: pointer;
  1225. }
  1226. #changedate{
  1227. height:30px;
  1228. display:none;
  1229. }
  1230. /*疫苗结束*/
  1231. .grid-wrapper .bottom1 {
  1232. grid-area: bottom1;
  1233. }
  1234. .grid-wrapper .wrapper .tab-t {
  1235. padding-left: 102px;
  1236. height: 40px;
  1237. line-height: 40px;
  1238. background-color: #0f215c;
  1239. }
  1240. .grid-wrapper .tab-t>.tab-title {
  1241. font-size: 1.5em;
  1242. position: relative;
  1243. }
  1244. .grid-wrapper .tab-t>.tab-title:before {
  1245. content: "";
  1246. position: absolute;
  1247. left: -1.5em;
  1248. top: 50%;
  1249. width: 0.5em;
  1250. height: 0.5em;
  1251. border: 2px solid #6DDFE9;
  1252. transform: rotate(45deg) translateY(-50%);
  1253. -ms-transform: rotate(45deg) translateY(-50%);
  1254. -moz-transform: rotate(45deg) translateY(-50%);
  1255. -webkit-transform: rotate(45deg) translateY(-50%);
  1256. -o-transform: rotate(45deg) translateY(-50%);
  1257. }
  1258. .grid-wrapper .bottom1 .wrapper .chartBlock ,.grid-wrapper .bottom2 .wrapper .chartBlock{
  1259. display: flex;
  1260. height: calc(100% - 40px);
  1261. }
  1262. #chartBottom1,#chartBottom2,#chartBottom3,#chartBottom4{
  1263. flex:1;
  1264. }
  1265. #chartBottom1 .chartTab-t,#chartBottom2 .chartTab-t,#chartBottom3 .chartTab-t,#chartBottom4 .chartTab-t{
  1266. padding-left: 102px;
  1267. height: 40px;
  1268. line-height: 40px;
  1269. }
  1270. #chartBottom2 .chartTab-t,#chartBottom4 .chartTab-t,{
  1271. padding-left: 12px;
  1272. }
  1273. #chartBottom1 .chartTab-t .chartTab-title,#chartBottom2 .chartTab-t .chartTab-title,#chartBottom3 .chartTab-t .chartTab-title,#chartBottom4 .chartTab-t .chartTab-title{
  1274. font-size: 1em;
  1275. position: relative;
  1276. }
  1277. #chartBottom1 .chartTab-t .chartTab-title:before,#chartBottom2 .chartTab-t .chartTab-title:before,#chartBottom3 .chartTab-t .chartTab-title:before,#chartBottom4 .chartTab-t .chartTab-title:before{
  1278. content:'';
  1279. width:14px;
  1280. height:14px;
  1281. border-radius:50%;
  1282. position:absolute;
  1283. left:-20px;
  1284. top:50%;
  1285. background-color:#fff;
  1286. margin-top:-7px;
  1287. }
  1288. #chart-snwd,#chart-snsd,#chart-cs,#chart-ys{
  1289. height:calc(100% - 40px);
  1290. }
  1291. .center .line3{
  1292. height:calc(70% - 80px);
  1293. }
  1294. .center .line3 video{
  1295. width:100%;
  1296. height:100%;
  1297. }
  1298. .grid-wrapper .bottom2 {
  1299. grid-area: bottom2;
  1300. }
  1301. .bottom2,.bottom3{
  1302. position:relative;
  1303. cursor:pointer;
  1304. }
  1305. .wrapper.tableb{
  1306. position:absolute;
  1307. top:0;
  1308. left:0;
  1309. z-index:2;
  1310. width:100%;
  1311. display:none;
  1312. }
  1313. .wrapper.chartb{
  1314. position:absolute;
  1315. top:0;
  1316. left:0;
  1317. z-index:2;
  1318. width:100%;
  1319. display:none;
  1320. }
  1321. .wrapper.chartb.active{
  1322. display:block;
  1323. }
  1324. #chart-mzstjl,#chart-fmzzxx{
  1325. height:100%;
  1326. }
  1327. #table-whhcllb,#table-zsqk,#table-cjpzsj{
  1328. height:100%;
  1329. padding:10px 10px 26px;
  1330. background-color: #001346;
  1331. overflow:hidden;
  1332. z-index:1;
  1333. cursor:pointer
  1334. }
  1335. #table-whhcllb .whhcllb-block,#table-zsqk .szzsqk-block,#table-cjpzsj .whhcllb-block{
  1336. width:100%;
  1337. height:100%;
  1338. position:relative;
  1339. }
  1340. #table-whhcllb .table-area-head,#table-cjpzsj .table-area-head{
  1341. margin:0 auto;
  1342. width:98%;
  1343. font-size:0.9em;
  1344. display:flex;
  1345. align-items:center;
  1346. background-color:#9e9e9e;
  1347. }
  1348. #table-whhcllb .table-area-head .table-area-head-tab,#table-cjpzsj .table-area-head .table-area-head-tab{
  1349. color: #fff;
  1350. background-color:#9e9e9e;
  1351. text-align:center;
  1352. height:30px;
  1353. vertical-align:middle;
  1354. width:16.66%;
  1355. display:flex;
  1356. align-items:center;
  1357. justify-content:center;
  1358. }
  1359. #table-whhcllb .table-area,#table-zsqk .table-area,#table-cjpzsj .table-area{
  1360. width:100%;
  1361. position:absolute;
  1362. top:29px;
  1363. left:0;
  1364. height:calc(100% - 30px);
  1365. overflow:hidden;
  1366. }
  1367. #table-whhcllb .table-content,#table-cjpzsj .table-content{
  1368. margin:0 auto;
  1369. width:98%;
  1370. height:100%;
  1371. font-size:0.9em;
  1372. border:1px solid #9e9e9e;
  1373. }
  1374. #table-whhcllb .table-content tr:nth-child(odd) td{
  1375. background-color:#e2d9d9
  1376. }
  1377. #table-whhcllb .table-content tr:nth-child(even) td{
  1378. background-color:#fff
  1379. }
  1380. #table-whhcllb .table-content tr td{
  1381. text-align:center;
  1382. height:30px;
  1383. vertical-align:middle;
  1384. width:16.6%;
  1385. padding:0 3px;
  1386. }
  1387. #table-whhcllb .table-content tr td{
  1388. font-size:0.8em;
  1389. color:#333;
  1390. }
  1391. #table-cjpzsj .table-content tr:nth-child(odd) td{
  1392. background-color:#e2d9d9
  1393. }
  1394. #table-cjpzsj .table-content tr:nth-child(even) td{
  1395. background-color:#fff
  1396. }
  1397. #table-cjpzsj .table-content tr td{
  1398. text-align:center;
  1399. height:30px;
  1400. vertical-align:middle;
  1401. width:16.6%;
  1402. padding:0 3px;
  1403. }
  1404. #table-cjpzsj .table-content tr td{
  1405. font-size:0.8em;
  1406. color:#333;
  1407. }
  1408. #table-zsqk .table-area-head{
  1409. margin:0 auto;
  1410. width:98%;
  1411. font-size:0.9em;
  1412. border:1px solid #ff9800;
  1413. display:flex;
  1414. align-items:center;
  1415. }
  1416. #table-zsqk .table-area-head .table-area-head-tab{
  1417. color: #fff;
  1418. background-color:#ff9800;
  1419. text-align:center;
  1420. height:30px;
  1421. vertical-align:middle;
  1422. width:50px;
  1423. display:flex;
  1424. align-items:center;
  1425. justify-content:center;
  1426. }
  1427. #table-zsqk .table-area-head .table-area-head-tab:nth-child(2){
  1428. flex:1;
  1429. }
  1430. #table-zsqk .table-content{
  1431. margin:0 auto;
  1432. width:98%;
  1433. height:100%;
  1434. font-size:0.9em;
  1435. border:1px solid #ff9800;
  1436. }
  1437. #table-zsqk .table-content tr:nth-child(odd) td{
  1438. background-color:#fbe1bb
  1439. }
  1440. #table-zsqk .table-content tr:nth-child(even) td{
  1441. background-color:#fff
  1442. }
  1443. #table-zsqk .table-content tr td{
  1444. text-align:center;
  1445. height:30px;
  1446. vertical-align:middle;
  1447. width:50px;
  1448. padding:0 5px;
  1449. }
  1450. #table-zsqk .table-content tr td:nth-child(2){
  1451. width:auto;
  1452. }
  1453. #table-zsqk .table-content tr td{
  1454. font-size:0.8em;
  1455. color:#333;
  1456. }
  1457. #pcxyfx-chart-content{
  1458. height:100%;
  1459. position:relative;
  1460. z-index:10;
  1461. }
  1462. #pcxyfx-chart-content .pcxyfx-tabs{
  1463. height:40px;
  1464. display:flex;
  1465. width:100%;
  1466. align-items:center;
  1467. justify-content:center;
  1468. }
  1469. #pcxyfx-chart-content .pcxyfx-tabs .tab-title{
  1470. cursor:pointer;
  1471. position:relative;
  1472. margin-left:40px;
  1473. }
  1474. #pcxyfx-chart-content .pcxyfx-tabs .tab-title.active{
  1475. color:#03a9f4;
  1476. }
  1477. #pcxyfx-chart-content .pcxyfx-tabs .tab-title:before{
  1478. content: '';
  1479. width: 14px;
  1480. height: 14px;
  1481. border-radius: 50%;
  1482. position: absolute;
  1483. left: -20px;
  1484. top: 50%;
  1485. background-color: #fff;
  1486. transform: translateY(-50%);
  1487. -ms-transform: translateY(-50%);
  1488. -moz-transform: translateY(-50%);
  1489. -webkit-transform: translateY(-50%);
  1490. -o-transform: translateY(-50%);
  1491. }
  1492. #pcxyfx-chart-content .pcxyfx-tabs .tab-title.active:before{
  1493. background-color: #03a9f4;
  1494. }
  1495. #chart-cbfx{
  1496. height:calc(100% - 40px);
  1497. }