quexianXQ.less 8.1 KB

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