qcList.less 5.9 KB

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