qcScore.less 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457
  1. @import './reset.less';
  2. .main-part{
  3. height: 100%;
  4. margin-top: 20px;
  5. }
  6. #loading{
  7. text-align: center;
  8. margin-top: 30px;
  9. }
  10. .waring {
  11. color: #FF4D4F;
  12. margin-top: 18px;
  13. height: 18px;
  14. }
  15. .patient-info{
  16. // height: 50px;
  17. line-height: 50px;
  18. margin-top: 10px;
  19. span{
  20. margin-right: 40px;
  21. display: inline-block;
  22. }
  23. }
  24. #patientInfo{
  25. height: 44px;
  26. line-height: 44px;
  27. text-align: center;
  28. background:linear-gradient(123deg,#5A8EEE 0%,#7EABFF 100%);
  29. span{
  30. color: #fff;
  31. }
  32. }
  33. .sub-menu{
  34. position: relative;
  35. width: @menuWt;
  36. height: 100%;
  37. float: left;
  38. overflow-y: auto;
  39. border-right: 1px @frameBdColor solid;
  40. .active{
  41. color: @activeColor;
  42. background: @activeBg;
  43. border-right: 3px @activeColor solid;
  44. }
  45. .page:hover{
  46. color: @activeColor;
  47. }
  48. .list-1{
  49. position: relative;
  50. p:hover{
  51. color: @activeColor;
  52. }
  53. &:after{
  54. content: " ";
  55. display: inline-block;
  56. position: absolute;
  57. left: @menuWt+(-30px);
  58. top:18px;
  59. width: 10px;
  60. height: 6px;
  61. background: url("../images/icon_down.png") no-repeat;
  62. }
  63. &.slide-up:after{
  64. transform: rotate(180deg);
  65. -webkit-transform: rotate(180deg);
  66. }
  67. ul{
  68. display: none;
  69. li.page{
  70. text-indent: 30px;
  71. }
  72. }
  73. }
  74. li{
  75. line-height: @menuLiHt;
  76. text-indent: 15px;
  77. cursor: pointer;
  78. }
  79. .copy-right{
  80. position: fixed;
  81. bottom: 0px;
  82. width: @menuWt+(-18px);
  83. text-align: center;
  84. font-size:12px;
  85. color: #aaa;
  86. background: #fff;
  87. padding: 10px 0 20px;
  88. }
  89. }
  90. .tab-container{
  91. margin-left: @menuWt+10px;
  92. height: 100%;
  93. .content-box{
  94. width:78%;
  95. height: 100%;
  96. position: relative;
  97. overflow-y: auto;
  98. }
  99. .content-item{
  100. display: none;
  101. /*height: 100%;*/
  102. .content-item-wrapper{
  103. margin-bottom: 50px;
  104. }
  105. /**********危急值记录*************/
  106. &.danger-record{
  107. height:auto;
  108. .title{
  109. /*position: unset;*/
  110. }
  111. }
  112. .title{
  113. /*position: absolute;
  114. top: 0;*/
  115. width: 100%;
  116. color: #333333;
  117. font-size: 16px;
  118. text-align: center;
  119. font-weight: bold;
  120. height: 44px;
  121. line-height: 44px;
  122. border-bottom:1px #E2E5EF solid;
  123. text-indent: 20px;
  124. }
  125. .container{
  126. /*margin-top: 45px;*/
  127. padding: 20px 30px 0;
  128. height: 100%;
  129. /*overflow-y: auto;*/
  130. }
  131. .info-table{
  132. margin: 0 0 15px;
  133. }
  134. table{
  135. width: 100%;
  136. border:1px @tableBorderColor solid;
  137. }
  138. .inline-table{
  139. display: inline;
  140. border: none;
  141. td{
  142. border: none;
  143. }
  144. }
  145. .inner-table table{
  146. border: none;
  147. td{
  148. border: none;
  149. text-align: left;
  150. vertical-align: text-bottom;
  151. &[rowspan]{
  152. font-weight: bold;
  153. width: 100px;
  154. padding-left: 0;
  155. }
  156. }
  157. }
  158. .embed-table{
  159. border:1px @tableBorderColor solid;
  160. &>tbody>tr:first-child>td{
  161. padding: 0;
  162. border:none;
  163. &>table td{
  164. border:1px @tableBorderColor solid;
  165. line-height: 20px;
  166. padding: 7px 8px;
  167. }
  168. }
  169. .table-tip{
  170. text-align: left;
  171. }
  172. }
  173. th{
  174. table{
  175. border:none;
  176. }
  177. border:1px @tableBorderColor solid;
  178. background: @thBgColor;
  179. line-height: 20px;
  180. padding: 7px 8px;
  181. }
  182. td{
  183. text-align: center;
  184. border:1px @tableBorderColor solid;
  185. padding:7px 8px;
  186. height: 20px;
  187. table,td{
  188. border:none;
  189. }
  190. }
  191. .info-item{
  192. border-bottom: 1px @borderColor solid;
  193. .text-left{
  194. width: 100%;
  195. text-align: right;
  196. }
  197. .cont{
  198. display: inline-block;
  199. min-width: 33%;
  200. margin-bottom: 15px;
  201. box-sizing: border-box;
  202. padding-left: 5px;
  203. &.active{
  204. background: #FFF0DA;
  205. }
  206. span{
  207. line-height: 20px;
  208. vertical-align: middle;
  209. }
  210. .text-indent{
  211. text-indent: 28px;
  212. }
  213. .text-bold{
  214. font-weight: bold;
  215. }
  216. .label{
  217. display: inline-block;
  218. /*min-width: 70px;*/
  219. font-weight: bold;
  220. overflow-x: hidden;
  221. }
  222. .revisitPlanTan{
  223. border: none;
  224. td{
  225. border: none;
  226. }
  227. }
  228. }
  229. &.cont-2 .cont{
  230. min-width: 48%;
  231. }
  232. &.cont-4 .cont{
  233. min-width: 23%;
  234. }
  235. &.cont-5 .cont{
  236. min-width: 19%;
  237. }
  238. &.no-border{
  239. border-bottom: none;
  240. margin-bottom: 0;
  241. }
  242. margin-bottom: 10px;
  243. .info-title{
  244. font-weight: bold;
  245. margin-bottom: 10px;
  246. }
  247. }
  248. }
  249. .operation{
  250. width:20%;
  251. height: 100%;
  252. margin-right: 10px;
  253. position: relative;
  254. .flaw-title{
  255. position: absolute;
  256. top:0;
  257. width: 100%;
  258. height: 44px;
  259. color: #333333;
  260. font-weight: bold;
  261. line-height: 44px;
  262. border-bottom:1px #E2E5EF solid;
  263. /*margin-bottom: 20px;*/
  264. span{
  265. font-size: 16px;
  266. margin-left: 15px;
  267. }
  268. a{
  269. float: right;
  270. width: 66px;
  271. height: 28px;
  272. margin: 10px 20px 0 0;
  273. line-height: 28px;
  274. text-align: center;
  275. border-radius:4px;
  276. color: @activeColor;
  277. font-weight: normal;
  278. border:1px @activeColor solid;
  279. }
  280. }
  281. .flaw-box{
  282. margin-top: 45px;
  283. padding-top: 20px;
  284. height: 100%;
  285. overflow-y: auto;
  286. }
  287. .flaw-item{
  288. display: none;
  289. margin: 0 20px 10px 12px ;
  290. border-bottom:1px #E2E5EF solid;
  291. padding-bottom: 10px;
  292. p{
  293. text-indent: 5px;
  294. }
  295. .title{
  296. margin-bottom: 10px;
  297. box-sizing: border-box;
  298. padding-left: 5px;
  299. &.active{
  300. background: #FFF0DA;
  301. }
  302. }
  303. }
  304. }
  305. .oper{
  306. text-align: right;
  307. }
  308. }
  309. .empty{
  310. /*display: none;*/
  311. margin-top: 120px;
  312. text-align: center;
  313. p{
  314. margin-top: 15px;
  315. font-size: 12px;
  316. text-indent: 10px;
  317. color: #aaa;
  318. }
  319. }
  320. .edit-box{
  321. p{
  322. margin-bottom: 10px;
  323. .red{
  324. display: inline-block;
  325. width: auto;
  326. text-indent: 5px;
  327. }
  328. }
  329. .warning{
  330. display: none;
  331. }
  332. input{
  333. border:1px @borderColor solid;
  334. width: 300px;
  335. height: 38px;
  336. text-indent: 10px;
  337. line-height: 38px;
  338. border-radius:2px;
  339. }
  340. span{
  341. display: inline-block;
  342. width: 70px;
  343. margin-right: 20px;
  344. text-align: right;
  345. }
  346. }
  347. .standard_table {
  348. tr {
  349. td.standard_fst {
  350. width: 160px;
  351. }
  352. }
  353. }
  354. /*******手术知情同意书*********/
  355. .surgery-book{
  356. .book-item{
  357. margin-bottom:15px;
  358. :not(:first-child){
  359. text-indent: 15px;
  360. }
  361. .intent{
  362. text-indent: 30px;
  363. }
  364. .intent-1{
  365. margin-left: 48px;
  366. text-indent: 0;
  367. }
  368. &.clearfix{
  369. p{
  370. width: 100%;
  371. }
  372. }
  373. .fr{
  374. margin-top: 25px;
  375. text-align: right;
  376. }
  377. }
  378. }
  379. /********术后首次病程记录及谈话记录*******/
  380. .textR{
  381. text-align: right;
  382. }
  383. .textL{
  384. text-align: left;
  385. }
  386. .textPreLine{
  387. white-space: pre-line;
  388. }
  389. .textIndent30{
  390. text-indent:30px
  391. }
  392. .textBold{
  393. font-weight: bold;
  394. }
  395. .padL30{
  396. padding-left: 30px;
  397. }
  398. .displayInlineBlock{
  399. display: inline-block;
  400. }
  401. /********缺陷总览*********/
  402. .flaw-table{
  403. height: 100%;
  404. overflow-y: auto;
  405. margin-right: 30px;
  406. .slide-up{
  407. cursor: pointer;
  408. color: #5A8EEE;
  409. &:before{
  410. display: inline-block;
  411. width: 14px;
  412. content: "-";
  413. font-size: 18px;
  414. color: #5A8EEE;
  415. text-align: center;
  416. }
  417. &.down:before{
  418. content: "+";
  419. }
  420. }
  421. table{
  422. width: 100%;
  423. border:1px solid #E2E5EF;
  424. border-collapse: collapse;/*关键代码*/
  425. margin-bottom: 40px;
  426. thead{
  427. background: #EFF0F9;
  428. }
  429. /*tr[code]{
  430. display: none;
  431. }*/
  432. th,td{
  433. height: 40px;
  434. box-sizing: border-box;
  435. padding: 0 20px;
  436. border:1px solid #E2E5EF;
  437. border-collapse: collapse;/*关键代码*/
  438. }
  439. th{
  440. font-size: 14px;
  441. font-weight: 500;
  442. }
  443. td{
  444. font-size: 14px;
  445. font-weight: 400;
  446. &.red{
  447. text-align: center;
  448. }
  449. }
  450. }
  451. }