appealHistory.less 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  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,
  11. li {
  12. list-style: none;
  13. }
  14. h2 {
  15. .h2;
  16. border-bottom: 10px @disColor solid;
  17. position: fixed;
  18. top: 0;
  19. }
  20. .main-body {
  21. .main-body-com;
  22. border: none;
  23. border-left: 10px @disColor solid;
  24. margin: 54px 0 0;
  25. min-width: 1090px;
  26. min-height: calc(100% - 84px);
  27. /*width: 100%;*/
  28. }
  29. .appealBtn {
  30. color: #00a1ff;
  31. padding: 0 5px;
  32. cursor: pointer;
  33. }
  34. .review {
  35. cursor: pointer;
  36. & i {
  37. width: 6px;
  38. height: 6px;
  39. background: #f48138;
  40. display: inline-block;
  41. border-radius: 50%;
  42. margin-right: 5px;
  43. }
  44. }
  45. .rejected {
  46. cursor: pointer;
  47. & i {
  48. width: 6px;
  49. height: 6px;
  50. background: #E3505B;
  51. display: inline-block;
  52. border-radius: 50%;
  53. margin-right: 5px;
  54. }
  55. }
  56. .approved {
  57. cursor: pointer;
  58. & i {
  59. width: 6px;
  60. height: 6px;
  61. background: #22AC76;
  62. display: inline-block;
  63. border-radius: 50%;
  64. margin-right: 5px;
  65. }
  66. }
  67. .qctable {
  68. .table;
  69. min-width: 1090px;
  70. th,
  71. td {
  72. padding: 5px 10px;
  73. }
  74. th {
  75. white-space: nowrap;
  76. }
  77. th[code] {
  78. cursor: pointer;
  79. &:after {
  80. content: "";
  81. display: inline-block;
  82. width: 11px;
  83. height: 14px;
  84. margin-left: 4px;
  85. vertical-align: middle;
  86. background: url("../images/grey.png");
  87. }
  88. &.asc:after {
  89. background: url("../images/up_blue.png");
  90. background-size: 100%;
  91. }
  92. &.desc:after {
  93. background: url("../images/down_blue.png");
  94. background-size: 100%;
  95. }
  96. }
  97. td {
  98. white-space: nowrap;
  99. }
  100. .moduleNumber {
  101. text-align: center;
  102. }
  103. .scoreOperaItem {
  104. width: 50px;
  105. cursor: pointer;
  106. }
  107. .tabTitle {
  108. background: #eff0f9 !important;
  109. }
  110. }
  111. .tabFoot {
  112. height: 40px;
  113. /*border: 1px solid #E2E5EF;
  114. border-top: none;
  115. box-sizing: border-box;*/
  116. }
  117. .scoreOpera {
  118. height: 50px;
  119. line-height: 50px;
  120. margin: 0 20px 0 0;
  121. cursor: pointer;
  122. img {
  123. margin: 0 10px 0 0;
  124. vertical-align: middle;
  125. }
  126. }
  127. .recordScoreOperaBtn {
  128. cursor: pointer;
  129. color: @activeColor;
  130. }
  131. .recordScoreBtn {
  132. cursor: pointer;
  133. display: inline-block;
  134. width: 68px;
  135. height: 30px;
  136. line-height: 30px;
  137. text-align: center;
  138. border-radius: 4px;
  139. box-sizing: border-box;
  140. border: 1px solid @activeColor;
  141. color: #fff;
  142. background: @activeColor;
  143. }
  144. .filterBox {
  145. position: relative;
  146. }
  147. .overAuto {
  148. display: table;
  149. padding-right: 20px;
  150. width: 100%;
  151. }
  152. .toggle-item {
  153. display: none;
  154. }
  155. .filter-toggler {
  156. position: absolute;
  157. left: 1048px;
  158. top: 8px;
  159. color: #777;
  160. white-space: nowrap;
  161. font-size: 14px;
  162. background: url("../images/arrow_up.png") 60px center no-repeat;
  163. padding-right: 15px;
  164. background-size: 10px 6px;
  165. &.up {
  166. background: url("../images/arrow_down.png") 60px center no-repeat;
  167. background-size: 10px 6px;
  168. }
  169. }
  170. .filterItem {
  171. position: relative;
  172. display: inline-block;
  173. float: left;
  174. height: 40px;
  175. line-height: 40px;
  176. margin: 0 20px 20px 0;
  177. margin-right: 29px!important;
  178. span {
  179. display: inline-block;
  180. line-height: 32px;
  181. position: relative;
  182. }
  183. input {
  184. width: 120px;
  185. height: 32px;
  186. border-radius: 4px;
  187. border: 1px solid #e2e5ef;
  188. outline: none;
  189. margin-right: 10px;
  190. padding: 0 10px;
  191. box-sizing: border-box;
  192. }
  193. input:focus {
  194. border: 1px solid @activeColor;
  195. outline: 0;
  196. -webkit-box-shadow: @activeColor 0px 0px 2px;
  197. -moz-box-shadow: @activeColor 0px 0px 2px;
  198. box-shadow: @activeColor 0px 0px 2px;
  199. }
  200. }
  201. .filterDropList {
  202. position: absolute;
  203. right: 0;
  204. max-height: 200px;
  205. overflow-y: auto;
  206. background: #fff;
  207. display: none;
  208. border: 1px solid #e4e7ed;
  209. box-shadow: 0 2px 12px 0 #e4e7ed;
  210. z-index: 2;
  211. li {
  212. padding: 0 10px;
  213. }
  214. }
  215. .deptList {
  216. width: 120px;
  217. max-height: 400px;
  218. }
  219. .modularList,
  220. .typeList,
  221. .qcCheckList {
  222. width: 120px;
  223. // height: 200px;
  224. li:hover {
  225. background-color: #eef4ff;
  226. cursor: pointer;
  227. }
  228. }
  229. .selectModular,
  230. .selectDept,
  231. .selectType,
  232. .qcSelectCheck {
  233. display: inline-block;
  234. position: relative;
  235. width: 120px;
  236. padding: 0 10px;
  237. height: 32px;
  238. border-radius: 4px;
  239. border: 1px solid #e2e5ef;
  240. box-sizing: border-box;
  241. cursor: pointer;
  242. }
  243. .filter,
  244. .reset,
  245. .export {
  246. display: inline-block;
  247. width: 60px;
  248. height: 32px;
  249. background: @activeColor;
  250. border-radius: 4px;
  251. color: #fff;
  252. text-align: center;
  253. line-height: 32px;
  254. position: relative;
  255. top: 2px;
  256. cursor: pointer;
  257. float: left;
  258. margin: 0 0px 22px 0;
  259. }
  260. .export {
  261. height: 34px;
  262. background: #fff;
  263. border-radius: 4px;
  264. color: #777;
  265. border: 1px solid #777;
  266. box-sizing: border-box;
  267. cursor: pointer;
  268. margin-left: 10px;
  269. float: left;
  270. top: 0px;
  271. }
  272. .arrow {
  273. position: absolute;
  274. width: 10px;
  275. top: 12px;
  276. right: 10px;
  277. }
  278. .iconCheck {
  279. width: 14px;
  280. }
  281. .fl {
  282. float: left;
  283. }
  284. .clearfix:after {
  285. content: "";
  286. height: 0;
  287. line-height: 0;
  288. display: block;
  289. visibility: hidden;
  290. clear: both;
  291. }
  292. .clearfix {
  293. zoom: 1;
  294. }
  295. .divide {
  296. margin: 0 10px;
  297. }
  298. .datapickerBox {
  299. position: relative;
  300. display: inline-block;
  301. width: 120px;
  302. height: 32px;
  303. input {
  304. position: absolute;
  305. }
  306. }
  307. .setCol {
  308. color: #777;
  309. cursor: pointer;
  310. }
  311. .iconSetting {
  312. width: 18px;
  313. position: relative;
  314. top: 3px;
  315. margin: 0 3px 0 0;
  316. }
  317. .iconCalen {
  318. position: absolute;
  319. width: 15px;
  320. top: 8px;
  321. right: 10px;
  322. }
  323. .textCenter {
  324. text-align: center;
  325. }
  326. .patientNameSpan {
  327. color: @activeColor;
  328. cursor: pointer;
  329. }
  330. .deptItem:hover {
  331. background-color: #eef4ff;
  332. cursor: pointer;
  333. }
  334. .ellipsis {
  335. overflow: hidden;
  336. text-overflow: ellipsis;
  337. white-space: nowrap;
  338. }
  339. .unSelect {
  340. color: #cfccd6;
  341. }
  342. .pagination {
  343. margin: 35px 0 20px 0;
  344. text-align: right;
  345. }
  346. .totalSum {
  347. font-size: 12px;
  348. line-height: 17px;
  349. color: #777777;
  350. margin-right: 20px;
  351. }
  352. .pageNum,
  353. .prePage,
  354. .nextPage,
  355. .more {
  356. display: inline-block;
  357. width: 20px;
  358. cursor: pointer;
  359. margin: 0 20px 0 0;
  360. text-align: center;
  361. color: #777;
  362. }
  363. .prePage,
  364. .nextPage {
  365. img {
  366. position: relative;
  367. top: 0px;
  368. }
  369. }
  370. .more {
  371. cursor: not-allowed;
  372. }
  373. .arrowPage {
  374. width: 6px;
  375. }
  376. .activePage {
  377. color: @activeColor;
  378. }
  379. .ui-datepicker-calendar {
  380. border: 0 none;
  381. min-width: 0;
  382. }
  383. .ui-datepicker thead {
  384. background-color: #fff;
  385. color: #c3cbd6;
  386. }
  387. .ui-datepicker td {
  388. padding: 0;
  389. height: auto;
  390. color: #657180;
  391. }
  392. .ui-datepicker td span,
  393. .ui-datepicker td a {
  394. text-align: center;
  395. height: 30px;
  396. line-height: 30px;
  397. }
  398. .ui-state-default,
  399. .ui-widget-content .ui-state-default,
  400. .ui-widget-header .ui-state-default {
  401. border: 0;
  402. background-color: #fff;
  403. &:hover {
  404. background-color: #c4d8fe;
  405. }
  406. }
  407. .ui-datepicker select.ui-datepicker-month,
  408. .ui-datepicker select.ui-datepicker-year {
  409. color: #333;
  410. font-weight: normal;
  411. height: 30px;
  412. line-height: 30px;
  413. margin: 0 5px;
  414. width: 40%;
  415. border-radius: 3px;
  416. }
  417. .ui-datepicker .ui-datepicker-prev,
  418. .ui-datepicker .ui-datepicker-next {
  419. top: 5px;
  420. }
  421. .ui-state-active,
  422. .ui-widget-content .ui-state-active {
  423. background-color: @activeColor !important;
  424. color: #fff;
  425. }
  426. .ui-state-highlight,
  427. .ui-widget-content .ui-state-highlight {
  428. background-color: #fff5bf !important;
  429. color: #657180;
  430. }
  431. .ui-widget-header {
  432. background-color: #fff;
  433. border: 0 none;
  434. }
  435. input::-webkit-outer-spin-button,
  436. input::-webkit-inner-spin-button {
  437. -webkit-appearance: none;
  438. }
  439. input[type="number"] {
  440. -moz-appearance: textfield;
  441. }
  442. .tipIcon {
  443. color: #777;
  444. cursor: pointer;
  445. display: inline-block;
  446. margin-left: 6px;
  447. margin-right: 2px;
  448. }
  449. .toolTipIcon {
  450. width: 18px;
  451. position: relative;
  452. top: 3px;
  453. }
  454. .tooltip {
  455. visibility: hidden;
  456. position: relative;
  457. padding: 7px 10px;
  458. border-radius: 4px;
  459. margin: 100px auto;
  460. background-color: #4d4d4d;
  461. text-align: center;
  462. color: #fff;
  463. font-size: 14px;
  464. }
  465. .tooltip:before {
  466. content: "";
  467. display: block;
  468. position: absolute;
  469. bottom: 9px;
  470. left: -12px;
  471. border-bottom: 6px solid transparent;
  472. border-top: 6px solid transparent;
  473. border-left: 6px solid transparent;
  474. border-right: 6px solid #4d4d4d;
  475. }
  476. .appeal-box {
  477. .item {
  478. padding: 5px 0;
  479. .radio {
  480. margin: 0 5px;
  481. }
  482. .title {
  483. display: inline-block;
  484. margin-right: 50px;
  485. }
  486. .inp {
  487. border: 1px solid #e2e5ef;
  488. height: 24px;
  489. padding: 0 5px;
  490. }
  491. .textarea,
  492. .textarea2 {
  493. width: 70%;
  494. height: 80px;
  495. border: 1px solid #e2e5ef;
  496. overflow-y: auto;
  497. }
  498. }
  499. }
  500. .drop-box {
  501. position: relative;
  502. margin-bottom: 10px;
  503. &:after {
  504. content: "";
  505. display: inline-block;
  506. width: 13px;
  507. height: 7px;
  508. background: url("../images/arrow_down.png") no-repeat;
  509. background-size: 13px 7px;
  510. position: absolute;
  511. left: 85%;
  512. top: 10px;
  513. }
  514. }
  515. ul {
  516. display: none;
  517. position: absolute;
  518. right: 37px;
  519. width: 70%;
  520. background: #fff;
  521. border: 1px @tableBorderColor solid;
  522. max-height: 205px;
  523. overflow: auto;
  524. box-sizing: border-box;
  525. z-index: 1;
  526. li {
  527. line-height: 25px;
  528. padding: 0 5px;
  529. cursor: pointer;
  530. white-space: nowrap;
  531. overflow: hidden;
  532. text-overflow: ellipsis;
  533. &:hover {
  534. background: @tableBorderColor;
  535. }
  536. }
  537. }
  538. .checker-drop-input {
  539. height: 24px;
  540. border: 1px #e2e5ef solid;
  541. width: 70%;
  542. vertical-align: middle;
  543. text-align: left;
  544. line-height: 24px;
  545. text-indent: 5px;
  546. display: inline-block;
  547. }
  548. .required {
  549. color: #e3505b;
  550. }
  551. p {
  552. .red {
  553. display: inline-block;
  554. width: auto;
  555. text-indent: 5px;
  556. }
  557. }
  558. .warning {
  559. display: none;
  560. }