qcScore.less 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. @import './reset.less';
  2. .main-part{
  3. height: 100%;
  4. }
  5. #loading{
  6. text-align: center;
  7. /*margin-top: 30px;*/
  8. }
  9. .waring {
  10. color: #FF4D4F;
  11. margin-top: 18px;
  12. height: 18px;
  13. }
  14. .patient-info{
  15. /*height: 50px;*/
  16. line-height: 50px;
  17. border-bottom: 10px #EFF1F6 solid;
  18. text-align: center;
  19. /*margin-bottom: 20px;*/
  20. span{
  21. color: #333;
  22. margin-right: 40px;
  23. display: inline-block;
  24. }
  25. }
  26. .sub-menu{
  27. position: relative;
  28. width: @menuWt+15px;
  29. height: 100%;
  30. float: left;
  31. overflow-y: auto;
  32. overflow-x: hidden;
  33. background: @themeColor;
  34. border-right: 1px @frameBdColor solid;
  35. .logo{
  36. margin:8px 0 44px;
  37. text-indent: 22px;
  38. }
  39. &>a{
  40. position: absolute;
  41. top: 50%;
  42. right: 0;
  43. z-index: 1;
  44. }
  45. &>ul>li{
  46. color: @themeFontClr;
  47. &.menu-0{
  48. background: url("../images/total.png") 20px 9px no-repeat;
  49. &.active{
  50. background: url("../images/total_a.png") 20px 9px no-repeat;
  51. }
  52. }
  53. &.menu-6{
  54. background: url("../images/index.png") 20px 11px no-repeat;
  55. &.active{
  56. background: url("../images/index_a.png") 20px 11px no-repeat;
  57. }
  58. }
  59. &.menu-1{
  60. background: url("../images/inhis.png") 19px 11px no-repeat;
  61. &.active{
  62. background: url("../images/inhis_a.png") 19px 11px no-repeat;
  63. }
  64. }
  65. &.menu-37{
  66. background: url("../images/prod.png") 20px 10px no-repeat;
  67. &.active{
  68. background: url("../images/prod_a.png") 20px 10px no-repeat;
  69. }
  70. }
  71. &.menu-5{
  72. background: url("../images/out.png") 20px 11px no-repeat;
  73. &.active{
  74. background: url("../images/out_a.png") 20px 11px no-repeat;
  75. }
  76. }
  77. }
  78. .active{
  79. color: @activeColor;
  80. /*background: @activeBg;
  81. border-right: 3px @activeColor solid;*/
  82. }
  83. .page:hover{
  84. color: @activeColor;
  85. }
  86. .list-1{
  87. position: relative;
  88. p {
  89. color: @themeFontClr;
  90. &:hover {
  91. color: @activeColor;
  92. }
  93. }
  94. &:after{
  95. content: " ";
  96. display: inline-block;
  97. position: absolute;
  98. left: @menuWt+(-30px);
  99. top:18px;
  100. width: 10px;
  101. height: 6px;
  102. background: url("../images/icon_down.png") no-repeat;
  103. }
  104. &.slide-up:after{
  105. transform: rotate(180deg);
  106. -webkit-transform: rotate(180deg);
  107. }
  108. ul{
  109. display: none;
  110. li.page{
  111. text-indent: 55px;
  112. color: @themeFontClr;
  113. &.active{
  114. color: @activeColor;
  115. }
  116. }
  117. }
  118. }
  119. li{
  120. line-height: @menuLiHt;
  121. text-indent: 45px;
  122. cursor: pointer;
  123. }
  124. .copy-right{
  125. position: fixed;
  126. bottom: 0px;
  127. width: @menuWt;
  128. text-align: center;
  129. background: @themeColor;
  130. padding: 10px 0 20px;
  131. border-top: 1px @themeBorderClr solid;
  132. p{
  133. font-size:12px;
  134. color: #fff;
  135. opacity: .3;
  136. }
  137. }
  138. }
  139. .menu-mini{
  140. display: none;
  141. width: 60px;
  142. &>ul>li{
  143. width: 100%;
  144. height: 40px;
  145. line-height: 40px;
  146. background: url("../images/icon3.png") center no-repeat;
  147. & ul{
  148. display: none;
  149. left: 60px;
  150. position: absolute;
  151. width: 140px;
  152. }
  153. &.YH-KZT{
  154. background: url("../images/icon3.png") center no-repeat;
  155. }
  156. &.YH-QBYH-JCGN{
  157. background: url("../images/icon2.png") center no-repeat;
  158. }
  159. &.active{
  160. background-color: #EEF4FF;
  161. border-left: 3px @activeColor solid;
  162. }
  163. }
  164. }
  165. .tab-container{
  166. margin-left: @menuWt+15px;
  167. /*height: 100%;*/
  168. .content-box{
  169. width:78%;
  170. height: 100%;
  171. position: relative;
  172. overflow-y: auto;
  173. border-right: 10px #EFF1F6 solid;
  174. }
  175. .content-item{
  176. display: none;
  177. /*height: 100%;*/
  178. .content-item-wrapper{
  179. margin-bottom: 50px;
  180. }
  181. /**********危急值记录*************/
  182. &.danger-record{
  183. height:auto;
  184. .title{
  185. /*position: unset;*/
  186. }
  187. }
  188. .title{
  189. /*position: absolute;
  190. top: 0;*/
  191. width: 100%;
  192. color: #333333;
  193. font-size: 16px;
  194. text-align: center;
  195. font-weight: bold;
  196. height: 44px;
  197. line-height: 44px;
  198. border-bottom:1px #E2E5EF solid;
  199. text-indent: 20px;
  200. }
  201. .container{
  202. /*margin-top: 45px;*/
  203. padding: 20px 30px 0;
  204. height: 100%;
  205. /*overflow-y: auto;*/
  206. }
  207. .info-table{
  208. margin: 0 0 15px;
  209. }
  210. table{
  211. width: 100%;
  212. border:1px @tableBorderColor solid;
  213. }
  214. .inline-table{
  215. display: inline;
  216. border: none;
  217. td{
  218. border: none;
  219. }
  220. }
  221. .inner-table table{
  222. border: none;
  223. td{
  224. border: none;
  225. text-align: left;
  226. vertical-align: text-bottom;
  227. &[rowspan]{
  228. font-weight: bold;
  229. width: 100px;
  230. padding-left: 0;
  231. }
  232. }
  233. }
  234. .embed-table{
  235. border:1px @tableBorderColor solid;
  236. &>tbody>tr:first-child>td{
  237. padding: 0;
  238. border:none;
  239. &>table td{
  240. border:1px @tableBorderColor solid;
  241. line-height: 20px;
  242. padding: 7px 8px;
  243. }
  244. }
  245. .table-tip{
  246. text-align: left;
  247. }
  248. }
  249. th{
  250. table{
  251. border:none;
  252. }
  253. border:1px @tableBorderColor solid;
  254. background: @thBgColor;
  255. line-height: 20px;
  256. padding: 7px 8px;
  257. }
  258. td{
  259. text-align: center;
  260. border:1px @tableBorderColor solid;
  261. padding:7px 8px;
  262. height: 20px;
  263. table,td{
  264. border:none;
  265. }
  266. }
  267. .info-item{
  268. border-bottom: 1px @borderColor solid;
  269. .text-left{
  270. width: 100%;
  271. text-align: right;
  272. }
  273. .cont{
  274. display: inline-block;
  275. min-width: 33%;
  276. margin-bottom: 5px;
  277. box-sizing: border-box;
  278. padding-left: 5px;
  279. &.active{
  280. background: #FFF0DA;
  281. }
  282. span{
  283. line-height: 20px;
  284. vertical-align: middle;
  285. }
  286. .text-indent{
  287. text-indent: 28px;
  288. }
  289. .text-bold{
  290. font-weight: bold;
  291. }
  292. .label{
  293. display: inline-block;
  294. /*min-width: 70px;*/
  295. font-weight: bold;
  296. overflow-x: hidden;
  297. }
  298. .revisitPlanTan{
  299. border: none;
  300. td{
  301. border: none;
  302. }
  303. }
  304. }
  305. &.cont-2 .cont{
  306. min-width: 48%;
  307. }
  308. &.cont-4 .cont{
  309. min-width: 23%;
  310. }
  311. &.cont-5 .cont{
  312. min-width: 19%;
  313. }
  314. &.no-border{
  315. border-bottom: none;
  316. margin-bottom: 0;
  317. }
  318. margin-bottom: 10px;
  319. .info-title{
  320. font-weight: bold;
  321. margin-bottom: 10px;
  322. }
  323. }
  324. }
  325. .operation{
  326. width:20%;
  327. height: 100%;
  328. margin-right: 10px;
  329. position: relative;
  330. .flaw-title{
  331. position: absolute;
  332. top:0;
  333. width: 100%;
  334. height: 44px;
  335. color: #333333;
  336. font-weight: bold;
  337. line-height: 44px;
  338. border-bottom:1px #E2E5EF solid;
  339. /*margin-bottom: 20px;*/
  340. span{
  341. font-size: 16px;
  342. margin-left: 15px;
  343. }
  344. a{
  345. float: right;
  346. width: 66px;
  347. height: 28px;
  348. margin: 10px 20px 0 0;
  349. line-height: 28px;
  350. text-align: center;
  351. border-radius:4px;
  352. color: @activeColor;
  353. font-weight: normal;
  354. border:1px @activeColor solid;
  355. }
  356. }
  357. .flaw-box{
  358. margin-top: 45px;
  359. padding-top: 20px;
  360. height: 100%;
  361. overflow-y: auto;
  362. }
  363. .flaw-item{
  364. display: none;
  365. margin: 0 20px 10px 12px ;
  366. border-bottom:1px #E2E5EF solid;
  367. padding-bottom: 10px;
  368. p{
  369. text-indent: 5px;
  370. }
  371. .title{
  372. margin-bottom: 5px;
  373. box-sizing: border-box;
  374. padding-left: 5px;
  375. .add-icon{
  376. font-size: 12px;
  377. display: inline-block;
  378. text-align: center;
  379. width:32px;
  380. height:14px;
  381. line-height: 14px;
  382. color: #FFAD00;
  383. border:1px #FFAD00 solid;
  384. border-radius:8px;
  385. margin-right: 6px;
  386. }
  387. &.active{
  388. background: #FFF0DA;
  389. }
  390. }
  391. }
  392. }
  393. .oper{
  394. text-align: right;
  395. }
  396. }
  397. .empty{
  398. /*display: none;*/
  399. margin-top: 120px;
  400. text-align: center;
  401. img{
  402. width: 86px;
  403. }
  404. p{
  405. margin-top: 15px;
  406. font-size: 12px;
  407. text-indent: 10px;
  408. color: #aaa;
  409. }
  410. }
  411. .edit-box{
  412. p{
  413. margin-bottom: 10px;
  414. .red{
  415. display: inline-block;
  416. width: auto;
  417. text-indent: 5px;
  418. }
  419. }
  420. .warning{
  421. display: none;
  422. }
  423. input{
  424. border:1px @borderColor solid;
  425. width: 300px;
  426. height: 38px;
  427. text-indent: 10px;
  428. line-height: 38px;
  429. border-radius:2px;
  430. }
  431. span{
  432. display: inline-block;
  433. width: 70px;
  434. margin-right: 12px;
  435. text-align: right;
  436. }
  437. }
  438. .add-box{
  439. .drop-box{
  440. position: relative;
  441. margin-bottom: 10px;
  442. &:after{
  443. content: "";
  444. display: inline-block;
  445. width: 13px;
  446. height: 7px;
  447. background: url("../images/arrow_down.png") no-repeat;
  448. background-size: 13px 7px;
  449. position: absolute;
  450. left: 365px;
  451. top: 16px;
  452. }
  453. }
  454. ul{
  455. display: none;
  456. position: absolute;
  457. right: 0;
  458. width: 300px;
  459. background: #fff;
  460. border:1px @tableBorderColor solid;
  461. height: 205px;
  462. overflow: auto;
  463. li{
  464. line-height: 25px;
  465. padding: 0 5px;
  466. cursor: pointer;
  467. white-space: nowrap;
  468. overflow: hidden;
  469. text-overflow: ellipsis;
  470. &:hover{
  471. background: @tableBorderColor;
  472. }
  473. }
  474. }
  475. .show{
  476. ul{
  477. display: block;
  478. }
  479. &:after{
  480. background-image: url("../images/arrow_up.png");
  481. }
  482. }
  483. }
  484. .standard_table {
  485. tr {
  486. td.standard_fst {
  487. width: 160px;
  488. }
  489. }
  490. }
  491. /*******手术知情同意书*********/
  492. .surgery-book{
  493. .book-item{
  494. margin-bottom:15px;
  495. :not(:first-child){
  496. text-indent: 15px;
  497. }
  498. .intent{
  499. text-indent: 30px;
  500. }
  501. .intent-1{
  502. margin-left: 48px;
  503. text-indent: 0;
  504. }
  505. &.clearfix{
  506. p{
  507. width: 100%;
  508. }
  509. }
  510. .fr{
  511. margin-top: 25px;
  512. text-align: right;
  513. }
  514. }
  515. }
  516. /********术后首次病程记录及谈话记录*******/
  517. .textR{
  518. text-align: right;
  519. }
  520. .textL{
  521. text-align: left;
  522. }
  523. .textPreLine{
  524. white-space: pre-line;
  525. }
  526. .textIndent30{
  527. text-indent:30px
  528. }
  529. .textBold{
  530. font-weight: bold;
  531. }
  532. .padL30{
  533. padding-left: 30px;
  534. }
  535. .displayInlineBlock{
  536. display: inline-block;
  537. }
  538. /********缺陷总览*********/
  539. .flaw-table{
  540. height: 97%;
  541. overflow-y: auto;
  542. /*margin: 0 30px 0 20px;*/
  543. .slide-up{
  544. cursor: pointer;
  545. color: @activeColor;
  546. &:before{
  547. display: inline-block;
  548. width: 14px;
  549. content: "-";
  550. font-size: 18px;
  551. color: @activeColor;
  552. text-align: center;
  553. }
  554. &.down:before{
  555. content: "+";
  556. }
  557. }
  558. .page-item{
  559. display: none;
  560. h2{
  561. height: 44px;
  562. line-height: 44px;
  563. border-bottom: 1px @tableBorderColor solid;
  564. font-size: 16px;
  565. font-weight: normal;
  566. margin-bottom: 20px;
  567. text-indent: 20px;
  568. }
  569. }
  570. .interval-color{
  571. tr:nth-child(2n){
  572. background: #EFF1F6;
  573. }
  574. }
  575. table{
  576. width: 97%;
  577. border:1px solid #E2E5EF;
  578. border-collapse: collapse;/*关键代码*/
  579. /*margin-bottom: 40px;*/
  580. margin: 0 30px 40px 20px;
  581. thead{
  582. background: #EFF0F9;
  583. }
  584. /*tr[code]{
  585. display: none;
  586. }*/
  587. th,td{
  588. height: 32px;
  589. box-sizing: border-box;
  590. padding: 0 20px;
  591. border:1px solid #E2E5EF;
  592. border-collapse: collapse;/*关键代码*/
  593. }
  594. th{
  595. font-size: 14px;
  596. font-weight: 500;
  597. }
  598. td{
  599. font-size: 14px;
  600. font-weight: 400;
  601. &.red{
  602. text-align: center;
  603. }
  604. }
  605. }
  606. }