qcScore.less 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  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: 1px #E2E5EF 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:5px 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. }
  174. .content-item{
  175. display: none;
  176. /*height: 100%;*/
  177. .content-item-wrapper{
  178. margin-bottom: 50px;
  179. }
  180. /**********危急值记录*************/
  181. &.danger-record{
  182. height:auto;
  183. .title{
  184. /*position: unset;*/
  185. }
  186. }
  187. .title{
  188. /*position: absolute;
  189. top: 0;*/
  190. width: 100%;
  191. color: #333333;
  192. font-size: 16px;
  193. text-align: center;
  194. font-weight: bold;
  195. height: 44px;
  196. line-height: 44px;
  197. border-bottom:1px #E2E5EF solid;
  198. text-indent: 20px;
  199. }
  200. .container{
  201. /*margin-top: 45px;*/
  202. padding: 20px 30px 0;
  203. height: 100%;
  204. /*overflow-y: auto;*/
  205. }
  206. .info-table{
  207. margin: 0 0 15px;
  208. }
  209. table{
  210. width: 100%;
  211. border:1px @tableBorderColor solid;
  212. }
  213. .inline-table{
  214. display: inline;
  215. border: none;
  216. td{
  217. border: none;
  218. }
  219. }
  220. .inner-table table{
  221. border: none;
  222. td{
  223. border: none;
  224. text-align: left;
  225. vertical-align: text-bottom;
  226. &[rowspan]{
  227. font-weight: bold;
  228. width: 100px;
  229. padding-left: 0;
  230. }
  231. }
  232. }
  233. .embed-table{
  234. border:1px @tableBorderColor solid;
  235. &>tbody>tr:first-child>td{
  236. padding: 0;
  237. border:none;
  238. &>table td{
  239. border:1px @tableBorderColor solid;
  240. line-height: 20px;
  241. padding: 7px 8px;
  242. }
  243. }
  244. .table-tip{
  245. text-align: left;
  246. }
  247. }
  248. th{
  249. table{
  250. border:none;
  251. }
  252. border:1px @tableBorderColor solid;
  253. background: @thBgColor;
  254. line-height: 20px;
  255. padding: 7px 8px;
  256. }
  257. td{
  258. text-align: center;
  259. border:1px @tableBorderColor solid;
  260. padding:7px 8px;
  261. height: 20px;
  262. table,td{
  263. border:none;
  264. }
  265. }
  266. .info-item{
  267. border-bottom: 1px @borderColor solid;
  268. .text-left{
  269. width: 100%;
  270. text-align: right;
  271. }
  272. .cont{
  273. display: inline-block;
  274. min-width: 33%;
  275. margin-bottom: 5px;
  276. box-sizing: border-box;
  277. padding-left: 5px;
  278. &.active{
  279. background: #FFF0DA;
  280. }
  281. span{
  282. line-height: 20px;
  283. vertical-align: middle;
  284. }
  285. .text-indent{
  286. text-indent: 28px;
  287. }
  288. .text-bold{
  289. font-weight: bold;
  290. }
  291. .label{
  292. display: inline-block;
  293. /*min-width: 70px;*/
  294. font-weight: bold;
  295. overflow-x: hidden;
  296. }
  297. .revisitPlanTan{
  298. border: none;
  299. td{
  300. border: none;
  301. }
  302. }
  303. }
  304. &.cont-2 .cont{
  305. min-width: 48%;
  306. }
  307. &.cont-4 .cont{
  308. min-width: 23%;
  309. }
  310. &.cont-5 .cont{
  311. min-width: 19%;
  312. }
  313. &.no-border{
  314. border-bottom: none;
  315. margin-bottom: 0;
  316. }
  317. margin-bottom: 10px;
  318. .info-title{
  319. font-weight: bold;
  320. margin-bottom: 10px;
  321. }
  322. }
  323. }
  324. .operation{
  325. width:20%;
  326. height: 100%;
  327. margin-right: 10px;
  328. position: relative;
  329. .flaw-title{
  330. position: absolute;
  331. top:0;
  332. width: 100%;
  333. height: 44px;
  334. color: #333333;
  335. font-weight: bold;
  336. line-height: 44px;
  337. border-bottom:1px #E2E5EF solid;
  338. /*margin-bottom: 20px;*/
  339. span{
  340. font-size: 16px;
  341. margin-left: 15px;
  342. }
  343. a{
  344. float: right;
  345. width: 66px;
  346. height: 28px;
  347. margin: 10px 20px 0 0;
  348. line-height: 28px;
  349. text-align: center;
  350. border-radius:4px;
  351. color: @activeColor;
  352. font-weight: normal;
  353. border:1px @activeColor solid;
  354. }
  355. }
  356. .flaw-box{
  357. margin-top: 45px;
  358. padding-top: 20px;
  359. height: 100%;
  360. overflow-y: auto;
  361. }
  362. .flaw-item{
  363. display: none;
  364. margin: 0 20px 10px 12px ;
  365. border-bottom:1px #E2E5EF solid;
  366. padding-bottom: 10px;
  367. p{
  368. text-indent: 5px;
  369. }
  370. .title{
  371. margin-bottom: 5px;
  372. box-sizing: border-box;
  373. padding-left: 5px;
  374. &.active{
  375. background: #FFF0DA;
  376. }
  377. }
  378. }
  379. }
  380. .oper{
  381. text-align: right;
  382. }
  383. }
  384. .empty{
  385. /*display: none;*/
  386. margin-top: 120px;
  387. text-align: center;
  388. img{
  389. width: 86px;
  390. }
  391. p{
  392. margin-top: 15px;
  393. font-size: 12px;
  394. text-indent: 10px;
  395. color: #aaa;
  396. }
  397. }
  398. .edit-box{
  399. p{
  400. margin-bottom: 10px;
  401. .red{
  402. display: inline-block;
  403. width: auto;
  404. text-indent: 5px;
  405. }
  406. }
  407. .warning{
  408. display: none;
  409. }
  410. input{
  411. border:1px @borderColor solid;
  412. width: 300px;
  413. height: 38px;
  414. text-indent: 10px;
  415. line-height: 38px;
  416. border-radius:2px;
  417. }
  418. span{
  419. display: inline-block;
  420. width: 70px;
  421. margin-right: 20px;
  422. text-align: right;
  423. }
  424. }
  425. .standard_table {
  426. tr {
  427. td.standard_fst {
  428. width: 160px;
  429. }
  430. }
  431. }
  432. /*******手术知情同意书*********/
  433. .surgery-book{
  434. .book-item{
  435. margin-bottom:15px;
  436. :not(:first-child){
  437. text-indent: 15px;
  438. }
  439. .intent{
  440. text-indent: 30px;
  441. }
  442. .intent-1{
  443. margin-left: 48px;
  444. text-indent: 0;
  445. }
  446. &.clearfix{
  447. p{
  448. width: 100%;
  449. }
  450. }
  451. .fr{
  452. margin-top: 25px;
  453. text-align: right;
  454. }
  455. }
  456. }
  457. /********术后首次病程记录及谈话记录*******/
  458. .textR{
  459. text-align: right;
  460. }
  461. .textL{
  462. text-align: left;
  463. }
  464. .textPreLine{
  465. white-space: pre-line;
  466. }
  467. .textIndent30{
  468. text-indent:30px
  469. }
  470. .textBold{
  471. font-weight: bold;
  472. }
  473. .padL30{
  474. padding-left: 30px;
  475. }
  476. .displayInlineBlock{
  477. display: inline-block;
  478. }
  479. /********缺陷总览*********/
  480. .flaw-table{
  481. height: 100%;
  482. overflow-y: auto;
  483. margin-right: 30px;
  484. .slide-up{
  485. cursor: pointer;
  486. color: @activeColor;
  487. &:before{
  488. display: inline-block;
  489. width: 14px;
  490. content: "-";
  491. font-size: 18px;
  492. color: @activeColor;
  493. text-align: center;
  494. }
  495. &.down:before{
  496. content: "+";
  497. }
  498. }
  499. table{
  500. width: 100%;
  501. border:1px solid #E2E5EF;
  502. border-collapse: collapse;/*关键代码*/
  503. margin-bottom: 40px;
  504. thead{
  505. background: #EFF0F9;
  506. }
  507. /*tr[code]{
  508. display: none;
  509. }*/
  510. th,td{
  511. height: 32px;
  512. box-sizing: border-box;
  513. padding: 0 20px;
  514. border:1px solid #E2E5EF;
  515. border-collapse: collapse;/*关键代码*/
  516. }
  517. th{
  518. font-size: 14px;
  519. font-weight: 500;
  520. }
  521. td{
  522. font-size: 14px;
  523. font-weight: 400;
  524. &.red{
  525. text-align: center;
  526. }
  527. }
  528. }
  529. }