payDetail.less 7.7 KB

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