partDetailControl.less 8.1 KB

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