qcListCopy.less 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. @import "./reset.less";
  2. .container{
  3. width: 100%;
  4. height: 100%;
  5. overflow: auto;
  6. background: #fff;
  7. border-bottom: 10px @disColor solid;
  8. box-sizing: border-box;
  9. }
  10. ul,li{
  11. list-style: none;
  12. }
  13. h2{
  14. .h2;
  15. border-bottom: 10px @disColor solid;
  16. position: fixed;
  17. top: 0;
  18. }
  19. .partTitle{
  20. border-bottom: 10px @disColor solid;
  21. height: 54px;
  22. }
  23. .main-body{
  24. .main-body-com;
  25. border: none;
  26. // border:10px @disColor solid;
  27. border-left:10px @disColor solid;
  28. margin: 44px 0 0;
  29. min-width: 1090px;
  30. min-height: calc(100% - 84px);
  31. // overflow: auto;
  32. height: calc(100% - 44px);
  33. .selectDefect{
  34. min-width: 120px;
  35. width: auto;
  36. display: inline-block;
  37. position: relative;
  38. padding: 0 10px;
  39. height:32px;
  40. border-radius:4px;
  41. border: 1px solid #E2E5EF;
  42. box-sizing: border-box;
  43. cursor: default;
  44. }
  45. }
  46. .qctable{
  47. .table;
  48. min-width: 1090px;
  49. th,td{
  50. padding:5px 10px;
  51. }
  52. th{
  53. white-space: nowrap;
  54. }
  55. th[code]{
  56. cursor: pointer;
  57. &:after{
  58. content:"";
  59. display:inline-block;
  60. width: 11px;
  61. height: 14px;
  62. margin-left: 4px;
  63. vertical-align: middle;
  64. background-size: 100%;
  65. background-image: url("../images/grey.png");
  66. }
  67. &.asc:after{
  68. background: url("../images/up_blue.png");
  69. background-size: 100%;
  70. }
  71. &.desc:after{
  72. background: url("../images/down_blue.png");
  73. background-size: 100%;
  74. }
  75. }
  76. td{
  77. white-space: nowrap;
  78. }
  79. .moduleNumber{
  80. text-align: center;
  81. }
  82. .scoreOperaItem{
  83. width: 50px;
  84. cursor: pointer;
  85. }
  86. .tabTitle {
  87. background: #EFF0F9 !important;
  88. }
  89. }
  90. .tabFoot{
  91. height: 40px;
  92. background: none;
  93. /*border: 1px solid #E2E5EF;
  94. border-top: none;
  95. box-sizing: border-box;*/
  96. }
  97. .scoreOpera{
  98. height: 50px;
  99. line-height: 50px;
  100. margin: 0 20px 0 0;
  101. cursor: pointer;
  102. img{
  103. margin: 0 10px 0 0;
  104. vertical-align: middle;
  105. }
  106. }
  107. .recordScoreOperaBtn{
  108. cursor: pointer;
  109. color: @activeColor;
  110. }
  111. .recordScoreBtn{
  112. cursor: pointer;
  113. display: inline-block;
  114. width:68px;
  115. height:30px;
  116. line-height: 30px;
  117. text-align: center;
  118. border-radius:4px;
  119. box-sizing: border-box;
  120. border: 1px solid @activeColor;
  121. color: #fff;
  122. background: @activeColor;
  123. }
  124. .filterBox{
  125. position: relative;
  126. }
  127. .overAuto{
  128. display: table;
  129. padding-right: 20px;
  130. width: 100%;
  131. }
  132. .toggle-item{
  133. display: block;
  134. }
  135. .filter-toggler{
  136. position: absolute;
  137. left: 1032px;
  138. top: 8px;
  139. color: #777;
  140. white-space: nowrap;
  141. font-size: 14px;
  142. background: url("../images/arrow_down.png") 60px center no-repeat;
  143. padding-right: 15px;
  144. background-size: 10px 6px;
  145. &.up{
  146. background: url("../images/arrow_up.png") 60px center no-repeat;
  147. background-size: 10px 6px;
  148. }
  149. }
  150. .filterItem{
  151. position: relative;
  152. display: inline-block;
  153. float: left;
  154. height: 40px;
  155. line-height: 40px;
  156. margin: 0 20px 20px 0;
  157. span{
  158. display: inline-block;
  159. line-height: 32px;
  160. position: relative;
  161. }
  162. input{
  163. width:120px;
  164. height:32px;
  165. border-radius:4px;
  166. border: 1px solid #E2E5EF;
  167. outline: none;
  168. margin-right: 10px;
  169. padding: 0 10px;
  170. box-sizing: border-box;
  171. }
  172. input:focus{
  173. border: 1px solid @activeColor ;
  174. outline: 0;
  175. -webkit-box-shadow:@activeColor 0px 0px 2px;
  176. -moz-box-shadow: @activeColor 0px 0px 2px;
  177. box-shadow: @activeColor 0px 0px 2px;
  178. }
  179. }
  180. .filterDropList{
  181. position: absolute;
  182. right: 0;
  183. max-height: 200px;
  184. overflow-y: auto;
  185. background: #fff;
  186. display: none;
  187. border: 1px solid #e4e7ed;
  188. box-shadow: 0 2px 12px 0 #e4e7ed;
  189. z-index: 2;
  190. li{
  191. padding: 0 10px;
  192. }
  193. }
  194. .deptList{
  195. width: 160px;
  196. max-height: 400px;
  197. }
  198. .levelList,.checkList{
  199. width: 120px;
  200. // height: 200px;
  201. li:hover{
  202. background-color: #EEF4FF;
  203. cursor: pointer;
  204. }
  205. }
  206. .selectLevel,.selectDept,.selectCheck{
  207. display: inline-block;
  208. position: relative;
  209. width:120px;
  210. padding: 0 10px;
  211. height:32px;
  212. border-radius:4px;
  213. border: 1px solid #E2E5EF;
  214. box-sizing: border-box;
  215. cursor: pointer;
  216. }
  217. .selectDept{
  218. width: 160px;
  219. }
  220. .filter,.reset,.export{
  221. display: inline-block;
  222. width:60px;
  223. height:32px;
  224. background:@activeColor;
  225. border-radius:4px;
  226. color: #fff;
  227. text-align: center;
  228. line-height: 32px;
  229. position: relative;
  230. top: 2px;
  231. cursor: pointer;
  232. float: left;
  233. margin: 0 0px 22px 0;
  234. }
  235. .export{
  236. height:34px;
  237. background: #fff;
  238. border-radius: 4px;
  239. color: #777;
  240. border: 1px solid #777;
  241. box-sizing: border-box;
  242. cursor: pointer;
  243. margin-left: 10px;
  244. float: left;
  245. top: 0px;
  246. }
  247. .arrow{
  248. position: absolute;
  249. width: 10px;
  250. top: 12px;
  251. right: 10px;
  252. }
  253. .iconCheck{
  254. width: 14px;
  255. }
  256. .fl{
  257. float: left;
  258. }
  259. .clearfix:after {
  260. content: '';
  261. height: 0;
  262. line-height: 0;
  263. display: block;
  264. visibility: hidden;
  265. clear: both;
  266. }
  267. .clearfix{
  268. zoom:1
  269. }
  270. .divide{
  271. margin: 0 10px;
  272. }
  273. .datapickerBox{
  274. position: relative;
  275. display: inline-block;
  276. width: 120px;
  277. height: 32px;
  278. input{
  279. position: absolute;
  280. }
  281. }
  282. .setCol{
  283. color: #777;
  284. cursor: pointer;
  285. display: inline-block;
  286. margin: 10px 0 0 0px;
  287. }
  288. .iconSetting{
  289. width: 18px;
  290. position: relative;
  291. top: 3px;
  292. margin: 0 3px 0 0;
  293. }
  294. .iconCalen{
  295. position: absolute;
  296. width: 15px;
  297. top: 10px;
  298. right: 10px;
  299. }
  300. .textCenter{
  301. text-align: center;
  302. }
  303. .patientNameSpan{
  304. color: @activeColor;
  305. cursor: pointer;
  306. }
  307. .deptItem:hover{
  308. background-color: #EEF4FF;
  309. cursor: pointer;
  310. }
  311. .ellipsis{
  312. overflow: hidden;
  313. text-overflow:ellipsis;
  314. white-space: nowrap;
  315. }
  316. .unSelect{
  317. color: #cfccd6
  318. }
  319. .pagination{
  320. margin: 35px 0 20px 0 ;
  321. text-align: right;
  322. }
  323. .totalSum{
  324. font-size:12px;
  325. line-height:17px;
  326. color: #777777;
  327. margin-right: 20px;
  328. }
  329. .pageNum,.prePage,.nextPage, .more{
  330. display: inline-block;
  331. width: 20px;
  332. cursor: pointer;
  333. margin: 0 20px 0 0;
  334. text-align: center;
  335. color: #777;
  336. }
  337. .prePage,.nextPage{
  338. img{
  339. position: relative;
  340. top: 0px ;
  341. }
  342. }
  343. .more{
  344. cursor: not-allowed;
  345. }
  346. .arrowPage{
  347. width: 6px;
  348. }
  349. .activePage{
  350. color: @activeColor;
  351. }