qcScore.less 8.3 KB

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