hushijiandan.component.less 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760
  1. @import "../../../../src/theme.less";
  2. :host {
  3. width: 100%;
  4. height: 100%;
  5. display: flex;
  6. .patientStyle{
  7. i {
  8. color: @primary-color;
  9. font-size: 20px;
  10. font-weight: normal;
  11. margin-right: 4px;
  12. &.colorRed {
  13. color: red;
  14. }
  15. &.transport-te1 {
  16. font-size: 22px;
  17. }
  18. }
  19. }
  20. .bxForm {
  21. margin-top: 32px;
  22. }
  23. .bxFlex {
  24. flex: 1;
  25. }
  26. .bxTable {
  27. .moreBx{
  28. color: @primary-color;
  29. }
  30. margin-top: 16px;
  31. ::ng-deep .ant-table-body {
  32. margin: 0 !important;
  33. }
  34. tr {
  35. cursor: pointer;
  36. }
  37. th,
  38. td {
  39. text-align: center;
  40. }
  41. .thead {
  42. background-image: linear-gradient(to right, @bg-start, @bg-end);
  43. padding: 10px 0;
  44. th {
  45. background: transparent;
  46. color: #fff;
  47. text-align: center;
  48. font-size: 14px;
  49. &.txtL {
  50. text-align: left;
  51. }
  52. }
  53. }
  54. }
  55. .yyTime {
  56. display: flex;
  57. align-items: center;
  58. flex-direction: column;
  59. }
  60. .yyTimeError {
  61. ::ng-deep .ant-time-picker-input,
  62. ::ng-deep .ant-calendar-picker-input {
  63. border: 1px solid red !important;
  64. }
  65. }
  66. .pos {
  67. position: relative;
  68. .pos-item {
  69. position: absolute;
  70. left: 100px;
  71. top: -10px;
  72. z-index: 9;
  73. }
  74. }
  75. .addRemarks {
  76. color: @primary-color;
  77. cursor: pointer;
  78. }
  79. .orderThis {
  80. color: @primary-color;
  81. border: 1px solid @primary-color;
  82. margin-left: 8px;
  83. }
  84. .nzContent {
  85. position: absolute;
  86. top: 48px;
  87. bottom: 0;
  88. left: 0;
  89. right: 0;
  90. height: calc(100% - 48px);
  91. }
  92. .isKeyClass{
  93. height: 350px !important;
  94. }
  95. .modal {
  96. // 相对于 background 定位, 位置暂时设置为 0,0,0,0 在指令中将其位置水平垂直居中在页面中间
  97. position: absolute;
  98. top: 0;
  99. left: 0;
  100. bottom: 0;
  101. right: 0;
  102. width: 280px;
  103. height: 300px;
  104. z-index: 3100;
  105. background: #f9fafb;
  106. box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
  107. border-radius: 30px;
  108. border: 1px solid @hs_border_color;
  109. overflow: hidden;
  110. cursor: move;
  111. .drag-title {
  112. height: 50px;
  113. line-height: 50px;
  114. position: relative;
  115. h2 {
  116. height: 100%;
  117. font-size: 18px;
  118. color: #333;
  119. text-align: center;
  120. margin: 0;
  121. }
  122. .icon-close {
  123. position: absolute;
  124. top: 0;
  125. right: 16px;
  126. font-size: 16px;
  127. cursor: pointer;
  128. color: @hs_border_color;
  129. }
  130. }
  131. .key{
  132. letter-spacing: 10px;
  133. font-weight: bold;
  134. font-size: 30px;
  135. text-align: center;
  136. color: #000;
  137. position: relative;
  138. top: -15px;
  139. height: 33px;
  140. }
  141. .dialog-center {
  142. width: 235px;
  143. height: 208px;
  144. background-color: #fff;
  145. border: 1px solid @hs_border_color;
  146. margin: 0 auto;
  147. border-radius: 30px;
  148. position: relative;
  149. .dialog-code {
  150. width: 180px;
  151. height: 200px;
  152. overflow: hidden;
  153. position: absolute;
  154. margin: auto;
  155. top: 0;
  156. right: 0;
  157. bottom: 0;
  158. left: 0;
  159. display: flex;
  160. align-items: center;
  161. img {
  162. width: 100%;
  163. }
  164. }
  165. }
  166. .dialog-operate {
  167. display: flex;
  168. height: 40px;
  169. justify-content: space-between;
  170. align-items: center;
  171. font-size: 14px;
  172. .dialog-refresh {
  173. color: @primary-color;
  174. margin-left: 40px;
  175. cursor: pointer;
  176. }
  177. span {
  178. color: #999;
  179. margin-right: 40px;
  180. }
  181. }
  182. }
  183. // }
  184. }
  185. .save {
  186. position: fixed;
  187. left: 0;
  188. top: 0;
  189. width: 100%;
  190. height: 100%;
  191. background: rgba(0, 0, 0, 0.4);
  192. z-index: 99;
  193. .modalBody-ga{
  194. width: 80% !important;
  195. .list-template__searchBox{
  196. margin-top: 10px;
  197. }
  198. .list-template__bottom{
  199. padding-bottom:20px !important;
  200. }
  201. .list-template__bottom{
  202. .list-template__nzTable{
  203. height: 510px !important;
  204. overflow-y: auto !important;
  205. }
  206. }
  207. .ant-select{
  208. width: 20%;
  209. }
  210. }
  211. .modalBody {
  212. width: 350px;
  213. background: #fff;
  214. border-radius: 5px;
  215. padding: 10px 20px;
  216. color: #333;
  217. .title {
  218. width: 100%;
  219. text-align: center;
  220. position: relative;
  221. i {
  222. position: absolute;
  223. right: 0;
  224. top: 0;
  225. font-size: 20px;
  226. color: #666;
  227. cursor: pointer;
  228. padding: 0 5px;
  229. }
  230. }
  231. .new-title {
  232. width: 100%;
  233. text-align: center;
  234. position: relative;
  235. font-size: 14px;
  236. i {
  237. position: absolute;
  238. right: 0;
  239. top: 0;
  240. font-size: 20px;
  241. color: #666;
  242. cursor: pointer;
  243. padding: 0 5px;
  244. }
  245. }
  246. .title-weight{
  247. font-weight: bold;
  248. font-size: 15px;
  249. }
  250. .content {
  251. width: 100%;
  252. // height: 117px;
  253. background: #f9fafb;
  254. border: 1px solid #e5e9ed;
  255. border-radius: 5px;
  256. overflow: hidden;
  257. margin-top: 12px;
  258. .weight{
  259. font-weight: 600;
  260. position: relative;
  261. top: -9px;
  262. }
  263. div {
  264. // text-align: center;
  265. margin: 0;
  266. &.icon {
  267. margin-top: 17px;
  268. i {
  269. color: #34b349;
  270. font-size: 30px !important;
  271. &.transport-wenhao {
  272. color: #f5a523;
  273. }
  274. &.transport-shibai {
  275. color: #ff3a52;
  276. }
  277. }
  278. }
  279. &.defeat {
  280. color: #333;
  281. font-size: 18px;
  282. }
  283. &:nth-child(3) {
  284. font-size: 14px;
  285. color: #666;
  286. }
  287. }
  288. }
  289. button {
  290. margin-top: 10px;
  291. &.btn {
  292. margin-left: 8px;
  293. }
  294. }
  295. }
  296. // 新增
  297. &.add {
  298. .modalBody {
  299. width: 420px;
  300. height: auto;
  301. .content {
  302. width: 100%;
  303. height: auto;
  304. padding: 19px 14px 0 14px;
  305. // max-height: 500px;
  306. // overflow-y: auto;
  307. .ant-select{
  308. width: 100%;
  309. }
  310. .ant-calendar-picker{
  311. width: 100% !important;
  312. }
  313. .list-template__bottom {
  314. background: #f9fafb;
  315. border: 1px solid #e5e9ed;
  316. border-radius: 8px;
  317. padding-bottom: 56px;
  318. position: relative;
  319. .list-template__nzTable {
  320. padding: 16px 16px 0;
  321. .thead {
  322. background-image: linear-gradient(to right, @bg-start, @bg-end);
  323. th {
  324. background: transparent;
  325. color: #fff;
  326. text-align: center;
  327. }
  328. }
  329. .ant-table-body {
  330. border-bottom: 1px solid #e5e9ed;
  331. }
  332. .ant-table-tbody {
  333. tr {
  334. text-align: center;
  335. color: #333;
  336. td {
  337. border: none;
  338. &.tab_hover:hover{
  339. text-decoration: underline;
  340. cursor: pointer;
  341. }
  342. .coop-btn{
  343. button{
  344. margin-top: 0 !important;
  345. color: #fff;
  346. &:nth-child(1) {
  347. margin-right: 0 !important;
  348. }
  349. }
  350. span,button {
  351. display: inline-block;
  352. cursor: pointer;
  353. position: relative;
  354. &::after {
  355. content: "|";
  356. position: absolute;
  357. top: 0;
  358. right: 0;
  359. }
  360. &:nth-last-child(1) {
  361. &::after {
  362. content: "";
  363. }
  364. }
  365. }
  366. }
  367. .coop {
  368. button{
  369. color: #333;
  370. }
  371. span,button {
  372. display: inline-block;
  373. padding: 0 8px;
  374. cursor: pointer;
  375. position: relative;
  376. &::after {
  377. content: "|";
  378. position: absolute;
  379. top: 0;
  380. right: 0;
  381. }
  382. &:hover,
  383. &:active {
  384. color: @primary-color;
  385. }
  386. &:nth-last-child(1) {
  387. &::after {
  388. content: "";
  389. }
  390. }
  391. }
  392. }
  393. }
  394. }
  395. }
  396. }
  397. .list-template__pagination {
  398. height: 56px;
  399. display: flex;
  400. align-items: center;
  401. position: absolute;
  402. right: 8px;
  403. }
  404. }
  405. .addForm {
  406. .ant-form-item {
  407. margin-bottom: 14px;
  408. .ant-form-item-label {
  409. line-height: 14px;
  410. text-align: left;
  411. }
  412. }
  413. }
  414. .editForm {
  415. .ant-form-item {
  416. margin-bottom: 14px;
  417. .ant-form-item-label {
  418. line-height: 0;
  419. text-align: left;
  420. }
  421. }
  422. }
  423. }
  424. button {
  425. &:nth-child(1) {
  426. margin-right: 20px;
  427. }
  428. }
  429. }
  430. }
  431. }
  432. // 查看标本详情 start
  433. .noData33 {
  434. height: 100%;
  435. display: flex;
  436. justify-content: center;
  437. align-items: center;
  438. font-weight: bold;
  439. }
  440. .loading33 {
  441. height: 100%;
  442. display: flex;
  443. justify-content: center;
  444. align-items: center;
  445. flex-direction: column;
  446. }
  447. .detailModel {
  448. position: fixed;
  449. left: 0;
  450. top: 0;
  451. width: 100%;
  452. height: 100%;
  453. background-color: rgba(0, 0, 0, 0.5);
  454. display: flex;
  455. justify-content: center;
  456. align-items: center;
  457. z-index: 999999;
  458. .box {
  459. width: 1000px;
  460. height: 580px;
  461. border-radius: 8px;
  462. background-color: #fff;
  463. display: flex;
  464. flex-direction: column;
  465. align-items: center;
  466. position: relative;
  467. .transport-guanbi {
  468. position: absolute;
  469. right: 16px;
  470. top: 16px;
  471. font-size: 20px;
  472. color: #8e9d9e;
  473. cursor: pointer;
  474. }
  475. .title {
  476. height: 50px;
  477. line-height: 50px;
  478. text-align: center;
  479. font-size: 18px;
  480. color: #333;
  481. font-weight: bold;
  482. }
  483. .table {
  484. width: 960px;
  485. height: 474px;
  486. background-color: #f9fafb;
  487. border: 1px solid @hs_border_color;
  488. border-radius: 8px;
  489. display: flex;
  490. justify-content: center;
  491. align-items: center;
  492. .table-content {
  493. width: 896px;
  494. height: 420px;
  495. background-color: #fff;
  496. border-radius: 8px;
  497. border: 1px solid @hs_border_color;
  498. table {
  499. width: 100%;
  500. font-size: 14px;
  501. color: #333;
  502. th,
  503. td {
  504. text-align: center !important;
  505. width: 167px;
  506. height: 100%;
  507. &:first-of-type {
  508. width: 59px;
  509. }
  510. }
  511. thead {
  512. display: block;
  513. width: 100%;
  514. height: 40px;
  515. line-height: 40px;
  516. background-image: linear-gradient(
  517. 90deg,
  518. @bg-end 0%,
  519. @bg-start 100%
  520. );
  521. tr {
  522. height: 40px;
  523. color: #fff;
  524. }
  525. }
  526. tbody {
  527. display: block;
  528. width: 894px;
  529. height: 380px;
  530. overflow-x: hidden;
  531. overflow-y: auto;
  532. tr {
  533. height: 34px;
  534. line-height: 34px;
  535. td:last-child {
  536. position: relative;
  537. }
  538. td {
  539. .ji {
  540. position: absolute;
  541. right: 0;
  542. top: -3px;
  543. width: 41px;
  544. height: 42px;
  545. background: url(./../../../assets/images/icon_ji.png)
  546. no-repeat 3px 0;
  547. }
  548. }
  549. }
  550. }
  551. }
  552. }
  553. }
  554. .btns {
  555. flex: 1;
  556. display: flex;
  557. justify-content: center;
  558. align-items: center;
  559. .btn {
  560. width: 120px;
  561. height: 34px;
  562. line-height: 34px;
  563. text-align: center;
  564. background-color: #f9fafb;
  565. border: 1px solid @hs_border_color;
  566. border-radius: 4px;
  567. font-size: 14px;
  568. color: @primary-color;
  569. cursor: pointer;
  570. }
  571. }
  572. }
  573. }
  574. // 查看标本详情 end
  575. .otherBox-nav {
  576. width: 20%;
  577. border-right: 1px solid @hs_border_color;
  578. display: flex;
  579. flex-direction: column;
  580. .otherBox-nav__head {
  581. height: 50px;
  582. display: flex;
  583. flex-direction: column;
  584. justify-content: flex-end;
  585. align-items: center;
  586. padding-left: 8px;
  587. padding-right: 8px;
  588. input {
  589. height: 36px;
  590. }
  591. }
  592. .otherBox-nav__main {
  593. flex: 1;
  594. position: relative;
  595. ::ng-deep .os-content {
  596. height: 100% !important;
  597. }
  598. .otherBox-nav__mainInner {
  599. display: flex;
  600. flex-direction: column;
  601. align-items: center;
  602. margin-top: 16px;
  603. &.noData,
  604. &.oLoading {
  605. position: absolute;
  606. width: 100%;
  607. justify-content: center;
  608. height: 100%;
  609. margin-top: 0;
  610. }
  611. .otherBox-nav__mainItem {
  612. line-height: 26px;
  613. color: #333;
  614. padding-left: 8px;
  615. margin-bottom: 8px;
  616. border-radius: 4px;
  617. cursor: pointer;
  618. overflow: hidden;
  619. text-overflow: ellipsis;
  620. white-space: nowrap;
  621. &.active {
  622. color: @primary-color;
  623. background-color: #f0f6ed;
  624. }
  625. }
  626. }
  627. }
  628. }
  629. .nurse {
  630. width: 100%;
  631. height: 100%;
  632. .otherBox {
  633. position: absolute;
  634. width: 100%;
  635. height: 100%;
  636. padding: 16px;
  637. .otherBoxInner {
  638. height: 100%;
  639. border: 1px solid @hs_border_color;
  640. display: flex;
  641. .otherBox-nav {
  642. width: 20%;
  643. border-right: 1px solid @hs_border_color;
  644. display: flex;
  645. flex-direction: column;
  646. .otherBox-nav__head {
  647. height: 50px;
  648. display: flex;
  649. flex-direction: column;
  650. justify-content: flex-end;
  651. align-items: center;
  652. padding-left: 8px;
  653. padding-right: 8px;
  654. input {
  655. height: 36px;
  656. }
  657. }
  658. .otherBox-nav__main {
  659. flex: 1;
  660. position: relative;
  661. ::ng-deep .os-content {
  662. height: 100% !important;
  663. }
  664. .otherBox-nav__mainInner {
  665. display: flex;
  666. flex-direction: column;
  667. align-items: center;
  668. margin-top: 16px;
  669. &.noData,
  670. &.oLoading {
  671. position: absolute;
  672. width: 100%;
  673. justify-content: center;
  674. height: 100%;
  675. margin-top: 0;
  676. }
  677. .otherBox-nav__mainItem {
  678. line-height: 26px;
  679. color: #333;
  680. padding-left: 8px;
  681. margin-bottom: 8px;
  682. border-radius: 4px;
  683. cursor: pointer;
  684. overflow: hidden;
  685. text-overflow: ellipsis;
  686. white-space: nowrap;
  687. &.active {
  688. color: @primary-color;
  689. background-color: #f0f6ed;
  690. }
  691. }
  692. }
  693. }
  694. }
  695. .otherBox-main {
  696. flex: 1;
  697. display: flex;
  698. flex-direction: column;
  699. .otherBox-main__main {
  700. position: relative;
  701. flex: 1;
  702. .modalBody {
  703. position: absolute;
  704. width: 100%;
  705. height: 100%;
  706. display: flex;
  707. }
  708. .modalBody_left {
  709. width: 50%;
  710. height: 100%;
  711. display: flex;
  712. flex-direction: column;
  713. justify-content: space-between;
  714. &.nLoading,
  715. &.noData {
  716. justify-content: center;
  717. align-items: center;
  718. img {
  719. width: 24px;
  720. }
  721. div {
  722. display: inline-block;
  723. }
  724. }
  725. }
  726. .modalBody_left_box {
  727. min-height: calc(100vh - 279px);
  728. height: 100%;
  729. box-sizing: border-box;
  730. padding: 8px;
  731. display: flex;
  732. flex-direction: column;
  733. justify-content: space-between;
  734. }
  735. .modalBody_right_head {
  736. font-size: 16px;
  737. font-weight: bold;
  738. border-bottom: 1px solid @hs_border_color;
  739. display: flex;
  740. justify-content: space-between;
  741. align-items: center;
  742. .smallTab{
  743. display: flex;
  744. .s_tab {
  745. cursor: pointer;
  746. padding: 8px;
  747. border-right: 1px solid @hs_border_color;
  748. &:first-of-type{
  749. border-left: 1px solid @hs_border_color;
  750. }
  751. &.active{
  752. color: #fff;
  753. background-color: @primary-color;
  754. }
  755. }
  756. }
  757. span {
  758. font-weight: normal;
  759. font-size: 14px;
  760. color: @primary-color;
  761. }
  762. }
  763. .modalBody_right_box {
  764. box-sizing: border-box;
  765. padding: 0 8px;
  766. display: flex;
  767. flex-direction: column;
  768. justify-content: center;
  769. }
  770. .modalBody_right {
  771. width: 50%;
  772. height: 100%;
  773. display: flex;
  774. flex-direction: column;
  775. // justify-content: center;
  776. border-left: 1px solid @hs_border_color;
  777. padding: 0 8px 8px;
  778. .modalBody_right_list {
  779. text-align: justify;
  780. border-bottom: 1px solid @hs_border_color;
  781. padding: 8px 0;
  782. b {
  783. color: @primary-color;
  784. }
  785. }
  786. }
  787. .modalBody_box {
  788. position: absolute;
  789. width: 100%;
  790. height: 100%;
  791. display: flex;
  792. flex-direction: column;
  793. justify-content: space-between;
  794. .content {
  795. width: 100%;
  796. display: flex;
  797. flex-direction: column;
  798. justify-content: center;
  799. align-items: center;
  800. & > div {
  801. width: 100%;
  802. }
  803. .shortcutForm {
  804. width: 100%;
  805. .ant-form-item-label {
  806. text-align: left;
  807. }
  808. }
  809. }
  810. .btns {
  811. padding-bottom: 16px;
  812. padding-top: 16px;
  813. }
  814. }
  815. }
  816. }
  817. }
  818. }
  819. .layout {
  820. background: #fff;
  821. }
  822. .btn1 {
  823. background-image: linear-gradient(
  824. 90deg,
  825. @bg-start 0%,
  826. @bg-end 100%
  827. );
  828. border-radius: 4px;
  829. color: #fff;
  830. line-height: 28px;
  831. text-align: center;
  832. border-radius: 4px;
  833. cursor: pointer;
  834. border: none;
  835. }
  836. .app-layout {
  837. height: 100%;
  838. .menu-sidebar {
  839. position: relative;
  840. z-index: 8;
  841. min-height: 100vh;
  842. box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
  843. background: #0f2e3b;
  844. overflow-y: auto;
  845. .ant-layout-sider-children {
  846. width: 220px;
  847. }
  848. .sidebar-logo {
  849. height: 48px;
  850. overflow: hidden;
  851. line-height: 48px;
  852. background: #fff;
  853. transition: all 0.3s;
  854. border-bottom: 1px solid #fff;
  855. z-index: 10;
  856. position: relative;
  857. .logoTitle{
  858. padding: 0 8px;
  859. line-height: normal;
  860. height:100%;
  861. }
  862. .title {
  863. color: @primary-color;
  864. font-size: 16px;
  865. }
  866. }
  867. .mainInfo {
  868. width: 100%;
  869. height: 100%;
  870. color: #fff;
  871. position: absolute;
  872. top: 0;
  873. padding-top: 48px;
  874. overflow: hidden;
  875. .searchBox {
  876. width: 100%;
  877. padding: 8px;
  878. z-index: 1;
  879. position: relative;
  880. background: #001529;
  881. }
  882. .checkBanner {
  883. width: 100%;
  884. z-index: 1;
  885. .checkItem {
  886. width: 100%;
  887. text-align: center;
  888. color: #fff;
  889. background: #284450;
  890. line-height: 32px;
  891. border: none;
  892. &.checked {
  893. background: #48717f;
  894. }
  895. }
  896. }
  897. .checkedInfo {
  898. position: absolute;
  899. top: 0;
  900. height: 100%;
  901. width: 110%;
  902. padding-top: 130px;
  903. padding-bottom: 60px;
  904. overflow: hidden;
  905. padding-right: 10%;
  906. background: #0f2e3b;
  907. &.inspect {
  908. .item {
  909. min-height: 132px;
  910. display: flex;
  911. flex-direction: column;
  912. justify-content: center;
  913. }
  914. }
  915. .box {
  916. width: 100%;
  917. height: 100%;
  918. position: relative;
  919. overflow-x: hidden;
  920. overflow-y: auto;
  921. }
  922. .loading {
  923. text-align: center;
  924. width: 100%;
  925. height: 100%;
  926. img {
  927. width: 20px;
  928. }
  929. }
  930. .item {
  931. padding: 8px;
  932. border-bottom: 1px solid #fff;
  933. .itemTit {
  934. display: flex;
  935. align-items: center;
  936. justify-content: center;
  937. font-size: 14px;
  938. border-bottom: 1px solid #284450;
  939. i {
  940. color: @primary-color;
  941. font-size: 20px;
  942. font-weight: normal;
  943. margin-right: 4px;
  944. &.colorRed {
  945. color: red;
  946. }
  947. &.transport-te1 {
  948. font-size: 22px;
  949. }
  950. }
  951. }
  952. .checkInfo {
  953. padding: 8px 0;
  954. .transport-zhongdianguanzhu {
  955. cursor: pointer;
  956. }
  957. }
  958. .btnNews{
  959. display: flex;
  960. justify-content: center;
  961. align-items: center;
  962. .btn{
  963. flex: 1;
  964. margin: 0 1%;
  965. cursor: pointer;
  966. }
  967. }
  968. .row {
  969. overflow: hidden;
  970. .col {
  971. line-height: 28px;
  972. }
  973. }
  974. .btn {
  975. background-image: linear-gradient(
  976. 90deg,
  977. @bg-start 0%,
  978. @bg-end 100%
  979. );
  980. line-height: 28px;
  981. text-align: center;
  982. border-radius: 4px;
  983. cursor: default;
  984. border: none;
  985. }
  986. }
  987. }
  988. .paging {
  989. width: 220px;
  990. position: absolute;
  991. bottom: 0;
  992. left: 0;
  993. background: rgb(72, 113, 127);
  994. padding: 16px 0;
  995. text-align: center;
  996. border-top: 1px solid #284450;
  997. }
  998. }
  999. // 暂未开通
  1000. .notAvailable {
  1001. width: 100%;
  1002. height: 100%;
  1003. position: absolute;
  1004. top: 0;
  1005. z-index: 9;
  1006. padding-top: 48px;
  1007. background: rgba(0, 0, 0, 0.5);
  1008. color: #fff;
  1009. font-size: 20px;
  1010. img {
  1011. width: 80px;
  1012. margin-bottom: 10px;
  1013. }
  1014. }
  1015. }
  1016. nz-header.ant-layout-header {
  1017. padding: 0;
  1018. width: 100%;
  1019. z-index: 2;
  1020. background: #fff;
  1021. height: 48px;
  1022. .app-header {
  1023. position: relative;
  1024. height: 48px;
  1025. padding: 0;
  1026. background: #fff;
  1027. box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
  1028. padding-left: 24px;
  1029. .nurseTitle {
  1030. display: flex;
  1031. height: 48px;
  1032. font-size: 20px;
  1033. color: #333;
  1034. flex: 1;
  1035. .todayNum {
  1036. font-size: 16px;
  1037. margin-left: 16px;
  1038. }
  1039. .queuingInformation{
  1040. margin-right: 16px;
  1041. font-size: 16px;
  1042. }
  1043. .todayNumWrap{
  1044. height: 100%;
  1045. display: flex;
  1046. align-items: center;
  1047. }
  1048. .updateTipsForNurses {
  1049. word-break: break-all;
  1050. margin: 0 16px;
  1051. flex: 1;
  1052. line-height: normal;
  1053. font-size: 14px;
  1054. }
  1055. }
  1056. .right {
  1057. height: 100%;
  1058. flex-shrink: 0;
  1059. display: flex;
  1060. align-items: center;
  1061. .msg {
  1062. float: left;
  1063. width: 50px;
  1064. height: 100%;
  1065. border-left: 1px solid #e5e9ed;
  1066. .msgBtn {
  1067. width: 100%;
  1068. height: 100%;
  1069. i {
  1070. font-size: 30px;
  1071. }
  1072. }
  1073. }
  1074. .userInfo {
  1075. height: 100%;
  1076. float: right;
  1077. padding: 0 24px;
  1078. box-sizing: border-box;
  1079. font-size: 14px;
  1080. // border-left: 1px solid #e5e9ed;
  1081. .wel {
  1082. line-height: 15px;
  1083. white-space: nowrap;
  1084. overflow: hidden;//文本超出隐藏
  1085. text-overflow: ellipsis;//文本超出省略号替代
  1086. }
  1087. .user {
  1088. overflow: hidden;
  1089. height: 48px;
  1090. display: flex;
  1091. justify-content: center;
  1092. align-items: center;
  1093. font-size: 16px;
  1094. cursor: pointer;
  1095. img {
  1096. width: 32px;
  1097. height: 32px;
  1098. margin-right: 8px;
  1099. }
  1100. span, .transport-xiala1 {
  1101. height: 48px;
  1102. line-height: 48px;
  1103. }
  1104. }
  1105. .logOut {
  1106. text-align: right;
  1107. color: @primary-color;
  1108. line-height: 20px;
  1109. span {
  1110. cursor: pointer;
  1111. padding: 10px;
  1112. }
  1113. }
  1114. }
  1115. }
  1116. }
  1117. }
  1118. .inner-content {
  1119. background: #fff;
  1120. height: 100% !important;
  1121. // border-bottom: 1px solid @hs_border_color;
  1122. .launch {
  1123. width: 90px;
  1124. height: 100%;
  1125. border-right: 1px solid @hs_border_color;
  1126. position: relative;
  1127. overflow: hidden;
  1128. z-index: 3;
  1129. .laTit {
  1130. width: 100%;
  1131. line-height: 50px;
  1132. color: #333;
  1133. text-align: center;
  1134. background: #fff;
  1135. border-bottom: 1px solid @hs_border_color;
  1136. position: absolute;
  1137. z-index: 1;
  1138. }
  1139. .laItems {
  1140. width: 110%;
  1141. height: 100%;
  1142. padding-right: 10%;
  1143. position: relative;
  1144. overflow-x: hidden;
  1145. overflow-y: auto;
  1146. padding-top: 60px;
  1147. padding-bottom: 16px;
  1148. .item {
  1149. width: 100%;
  1150. cursor: default;
  1151. .img {
  1152. width: 56px;
  1153. height: 56px;
  1154. margin-top: 6px;
  1155. background: url(../../../assets/images/icon_hushebei2.png) center
  1156. no-repeat;
  1157. }
  1158. &:nth-child(2n) {
  1159. .img {
  1160. background-image: url(../../../assets/images/icon_hubao2.png);
  1161. }
  1162. }
  1163. &:nth-child(3n) {
  1164. .img {
  1165. background-image: url(../../../assets/images/icon_hubao.png);
  1166. }
  1167. }
  1168. &:nth-child(4n) {
  1169. .img {
  1170. background-image: url(../../../assets/images/icon_hushebei.png);
  1171. }
  1172. }
  1173. .txtC {
  1174. display: inline-block;
  1175. width: 100%;
  1176. text-align: center;
  1177. }
  1178. }
  1179. }
  1180. }
  1181. .mainInfo {
  1182. width: 100%;
  1183. height: 100%;
  1184. display: flex;
  1185. .cont{
  1186. flex: 1;
  1187. overflow: hidden;
  1188. }
  1189. .orders{
  1190. width: 354px;
  1191. flex-shrink: 1;
  1192. }
  1193. & > div {
  1194. height: 100%;
  1195. &:nth-child(1) {
  1196. display: flex;
  1197. flex-direction: column;
  1198. border-right: 1px solid @hs_border_color;
  1199. }
  1200. }
  1201. .cont {
  1202. .top {
  1203. box-sizing: content-box;
  1204. position: relative;
  1205. z-index: 9;
  1206. .nums {
  1207. height: 57px;
  1208. position: relative;
  1209. &.surgeryNums{
  1210. height: 88px;
  1211. }
  1212. &.nurseNav{
  1213. display: flex;
  1214. align-items: center;
  1215. .nav{
  1216. height: 100%;
  1217. flex: 1;
  1218. display: flex;
  1219. align-items: center;
  1220. padding: 0 16px;
  1221. overflow: auto hidden;
  1222. .navItem{
  1223. display: flex;
  1224. align-items: center;
  1225. cursor: pointer;
  1226. margin-right: 24px;
  1227. &:last-of-type{
  1228. margin-right: 0;
  1229. }
  1230. .navContent{
  1231. display: flex;
  1232. flex-direction: column;
  1233. height: 40px;
  1234. flex: 1;
  1235. }
  1236. .navIcon{
  1237. color: #fff;
  1238. border-radius: 4px;
  1239. display: flex;
  1240. justify-content: center;
  1241. align-items: center;
  1242. width: 40px;
  1243. height: 40px;
  1244. margin-right: 5px;
  1245. .icon_transport{
  1246. font-size: 32px;
  1247. }
  1248. &.specimen{
  1249. background: linear-gradient( 41deg, #11BB87 0%, #2AC89D 47%, #45D8B5 100%);
  1250. }
  1251. &.blood{
  1252. background: linear-gradient( 41deg, #FC985C 0%, #FAA471 50%, #FD9A5D 100%);
  1253. }
  1254. &.drugbag{
  1255. background: linear-gradient( 41deg, #6D62FF 0%, #A089FF 100%);
  1256. }
  1257. &.incident{
  1258. background: linear-gradient( 41deg, #2886ED 0%, #6DA5FC 100%);
  1259. .icon_transport{
  1260. font-size: 24px;
  1261. }
  1262. }
  1263. }
  1264. h2{
  1265. font-size: 12px;
  1266. font-weight: bold;
  1267. white-space: nowrap;
  1268. }
  1269. .navSpecimen{
  1270. font-size: 12px;
  1271. display: flex;
  1272. span{
  1273. margin-right: 8px;
  1274. &:last-of-type{
  1275. margin-right: 0;
  1276. }
  1277. }
  1278. }
  1279. }
  1280. }
  1281. .nurseCode {
  1282. height: 100%;
  1283. flex-shrink: 1;
  1284. padding: 0 16px;
  1285. display: flex;
  1286. justify-content: space-between;
  1287. align-items: center;
  1288. cursor: pointer;
  1289. border-left: 1px solid #ccc;
  1290. .nurseCodeIcon {
  1291. font-size: 32px;
  1292. color: #929292;
  1293. }
  1294. }
  1295. }
  1296. div {
  1297. .h33 {
  1298. height: 33px;
  1299. line-height: 32px;
  1300. }
  1301. .h53 {
  1302. height: 54px;
  1303. p {
  1304. margin: 0;
  1305. line-height: 28px;
  1306. font-size: 24px;
  1307. color: @primary-color;
  1308. }
  1309. }
  1310. .quick {
  1311. width: 100%;
  1312. height: 100%;
  1313. padding: 8px;
  1314. display: flex;
  1315. flex-direction: column;
  1316. justify-content: center;
  1317. .btn {
  1318. height: 48%;
  1319. background-image: linear-gradient(
  1320. 90deg,
  1321. @bg-start 0%,
  1322. @bg-end 100%
  1323. );
  1324. border-radius: 4px;
  1325. color: #fff;
  1326. padding: 0;
  1327. border: none;
  1328. border: none;
  1329. &[disabled] {
  1330. background: #999;
  1331. cursor: not-allowed;
  1332. }
  1333. &:focus {
  1334. outline: none;
  1335. }
  1336. }
  1337. }
  1338. }
  1339. .swiperBox {
  1340. width: 100%;
  1341. height: 100%;
  1342. position: relative;
  1343. overflow: hidden;
  1344. .swiper {
  1345. width: 100%;
  1346. position: relative;
  1347. top: 0;
  1348. left: 0;
  1349. // transition: all 1s;
  1350. .item {
  1351. width: 100%;
  1352. height: 44px;
  1353. span {
  1354. display: inline-block;
  1355. width: 100%;
  1356. text-align: center;
  1357. }
  1358. }
  1359. }
  1360. }
  1361. .alignC {
  1362. img {
  1363. height: 48px;
  1364. }
  1365. }
  1366. // 暂未开通
  1367. .notAvailable {
  1368. width: 100%;
  1369. height: 100%;
  1370. position: absolute;
  1371. top: 0;
  1372. left: 0;
  1373. z-index: 4;
  1374. background: rgba(0, 0, 0, 0.5);
  1375. color: #fff;
  1376. font-size: 20px;
  1377. img {
  1378. width: 80px;
  1379. margin-bottom: 10px;
  1380. }
  1381. }
  1382. }
  1383. .tab {
  1384. height: 40px;
  1385. line-height: 40px;
  1386. cursor: default;
  1387. overflow: hidden;
  1388. font-size: 18px;
  1389. & /deep/ .os-scrollbar-vertical{
  1390. display: none!important;
  1391. }
  1392. .cur {
  1393. height: 100%;
  1394. position: relative;
  1395. color: #333;
  1396. }
  1397. .checked {
  1398. color: @primary-color;
  1399. position: relative;
  1400. &::after{
  1401. content: '';
  1402. position: absolute;
  1403. left: 8px;
  1404. right: 8px;
  1405. bottom: 0;
  1406. height: 2px;
  1407. background-color: @primary-color;
  1408. }
  1409. }
  1410. .btn {
  1411. width: 104px;
  1412. height: 34px;
  1413. line-height: 34px;
  1414. background-image: linear-gradient(
  1415. 90deg,
  1416. @bg-start 0%,
  1417. @bg-end 100%
  1418. );
  1419. border-radius: 4px;
  1420. color: #fff;
  1421. border: none;
  1422. }
  1423. }
  1424. }
  1425. .searchBox {
  1426. height: 56px;
  1427. padding: 0 8px;
  1428. position: relative;
  1429. z-index: 9;
  1430. .btns {
  1431. button {
  1432. width: 80px;
  1433. height: 32px;
  1434. &:nth-child(1) {
  1435. color: @primary-color;
  1436. border: solid 1px @primary-color;
  1437. background: #f0f6ed !important;
  1438. }
  1439. &:nth-child(2) {
  1440. background-image: linear-gradient(
  1441. 135deg,
  1442. @bg-start 0%,
  1443. @bg-end 100%
  1444. );
  1445. border: solid 1px @primary-color;
  1446. margin-left: 8px;
  1447. }
  1448. }
  1449. }
  1450. }
  1451. .table {
  1452. width: 100%;
  1453. height: calc(100% - 56px);
  1454. padding: 0 8px 8px;
  1455. &.turn {
  1456. padding-top: 162px;
  1457. }
  1458. .box {
  1459. border-radius: 5px;
  1460. background: #f9fafb;
  1461. border: 1px solid @hs_border_color;
  1462. padding-bottom: 60px;
  1463. position: relative;
  1464. height: 100%;
  1465. .hospitalTable {
  1466. padding: 24px 16px 0;
  1467. height: 100%;
  1468. overflow: auto;
  1469. .ant-table-fixed-header .ant-table-scroll .ant-table-header {
  1470. padding-bottom: 16px;
  1471. overflow: hidden !important;
  1472. }
  1473. .thead {
  1474. background-image: linear-gradient(
  1475. to right,
  1476. @bg-start,
  1477. @bg-end
  1478. );
  1479. padding: 10px 0;
  1480. th {
  1481. background: transparent;
  1482. color: #fff;
  1483. text-align: center;
  1484. font-size: 14px;
  1485. &.txtL {
  1486. text-align: left;
  1487. }
  1488. }
  1489. }
  1490. .ant-table-body {
  1491. border-bottom: 1px solid @hs_border_color;
  1492. }
  1493. .ant-table-tbody {
  1494. tr {
  1495. text-align: center;
  1496. font-size: 14px;
  1497. border: none;
  1498. color: #333;
  1499. &.txtL {
  1500. text-align: left;
  1501. }
  1502. td {
  1503. border: none;
  1504. .coop {
  1505. button{
  1506. color: #333;
  1507. }
  1508. span,button {
  1509. display: inline-block;
  1510. padding: 0 8px;
  1511. cursor: pointer;
  1512. position: relative;
  1513. &::after {
  1514. content: "|";
  1515. position: absolute;
  1516. top: 0;
  1517. right: 0;
  1518. }
  1519. &:hover,
  1520. &:active {
  1521. color: @primary-color;
  1522. }
  1523. &:nth-last-child(1) {
  1524. &::after {
  1525. content: "";
  1526. }
  1527. }
  1528. }
  1529. }
  1530. }
  1531. }
  1532. tr:nth-child(2n-1) {
  1533. background: #f9fafb;
  1534. }
  1535. }
  1536. }
  1537. .pagination {
  1538. margin-top: 14px;
  1539. position: absolute;
  1540. bottom: 12px;
  1541. right: 5px;
  1542. }
  1543. }
  1544. }
  1545. }
  1546. .orders {
  1547. .orderTit {
  1548. width: 100%;
  1549. overflow: hidden;
  1550. border-bottom: 1px solid @hs_border_color;
  1551. padding: 8px;
  1552. position: relative;
  1553. height: 57px;
  1554. background: #fff;
  1555. z-index: 1;
  1556. & > span {
  1557. font-size: 16px;
  1558. color: #666;
  1559. font-weight: 500;
  1560. }
  1561. }
  1562. .loading {
  1563. text-align: center;
  1564. width: 100%;
  1565. height: 100%;
  1566. position: absolute;
  1567. top: 0;
  1568. padding-top: 57px;
  1569. img {
  1570. width: 20px;
  1571. }
  1572. }
  1573. .orderList {
  1574. width: 100%;
  1575. height: calc(100% - 114px);
  1576. .box {
  1577. position: relative;
  1578. width: 100%;
  1579. height: 100%;
  1580. top: 0;
  1581. overflow-x: hidden;
  1582. .orderLisBox {
  1583. width: 100%;
  1584. padding-bottom: 10px;
  1585. overflow-x: hidden;
  1586. .orderLis {
  1587. width: 100%;
  1588. height: 100%;
  1589. padding-bottom: 10px;
  1590. overflow-x: hidden;
  1591. .orderItem {
  1592. width: 100%;
  1593. overflow: hidden;
  1594. position: relative;
  1595. .icon_ji {
  1596. position: absolute;
  1597. right: -3px;
  1598. top: -3px;
  1599. width: 30px;
  1600. }
  1601. .info {
  1602. width: 100%;
  1603. padding: 10px;
  1604. .row {
  1605. width: 100%;
  1606. word-break: break-all;
  1607. line-height: normal;
  1608. &:last-child {
  1609. padding-bottom: 8px;
  1610. border-bottom: 1px solid @hs_border_color;
  1611. }
  1612. .col {
  1613. line-height: 28px;
  1614. color: #333;
  1615. &.toDetail {
  1616. color: @primary-color;
  1617. font-size: 12px;
  1618. span {
  1619. cursor: pointer;
  1620. display: inline-block;
  1621. padding: 0 10px;
  1622. }
  1623. }
  1624. }
  1625. }
  1626. }
  1627. .process {
  1628. width: 100%;
  1629. height: 70px;
  1630. overflow-x: auto;
  1631. overflow-y: hidden;
  1632. position: relative;
  1633. .box {
  1634. width: 100%;
  1635. justify-content: center;
  1636. position: absolute;
  1637. overflow: hidden;
  1638. .steps {
  1639. display: inline-block;
  1640. &:nth-last-child(1) {
  1641. .line {
  1642. display: none !important;
  1643. }
  1644. }
  1645. .step {
  1646. .txt {
  1647. width: 75px;
  1648. text-align: center;
  1649. display: inline-block;
  1650. vertical-align: text-top;
  1651. i {
  1652. color: @hs_border_color;
  1653. &.green {
  1654. color: @primary-color;
  1655. }
  1656. }
  1657. }
  1658. p {
  1659. margin: 0;
  1660. font-size: 12px;
  1661. &.time {
  1662. padding: 0 2px;
  1663. }
  1664. }
  1665. .line {
  1666. display: inline-block;
  1667. width: 40px;
  1668. height: 2px;
  1669. background: @hs_border_color;
  1670. }
  1671. }
  1672. }
  1673. }
  1674. }
  1675. .btns {
  1676. width: 100%;
  1677. .btn {
  1678. text-align: center;
  1679. font-size: 12px;
  1680. color: @primary-color;
  1681. cursor: default;
  1682. background: #f9fafb;
  1683. border: 1px solid @hs_border_color;
  1684. border-left: 0;
  1685. cursor: pointer;
  1686. border-bottom: 0;
  1687. line-height: 32px;
  1688. border-radius: 0;
  1689. &.primary{
  1690. color: #fff;
  1691. background-color: @primary-color;
  1692. }
  1693. }
  1694. }
  1695. }
  1696. }
  1697. }
  1698. }
  1699. .pageing {
  1700. background: #fff;
  1701. padding: 16px 0;
  1702. text-align: center;
  1703. border-top: 1px solid @hs_border_color;
  1704. }
  1705. }
  1706. }
  1707. }
  1708. }
  1709. }
  1710. }
  1711. .txtL {
  1712. text-align: left;
  1713. }
  1714. .txtC {
  1715. text-align: center;
  1716. }
  1717. .txtR {
  1718. text-align: right;
  1719. }
  1720. .borderL {
  1721. border-left: 1px solid @hs_border_color;
  1722. }
  1723. .borderR {
  1724. border-right: 1px solid @hs_border_color;
  1725. }
  1726. .borderB {
  1727. border-bottom: 1px solid @hs_border_color;
  1728. }
  1729. .h100p {
  1730. height: 100%;
  1731. }
  1732. .h50p {
  1733. height: 50%;
  1734. }
  1735. .alignC {
  1736. display: flex;
  1737. flex-wrap: wrap;
  1738. justify-content: center;
  1739. align-items: center;
  1740. }
  1741. .alignR {
  1742. display: flex;
  1743. justify-content: flex-end;
  1744. align-items: center;
  1745. }
  1746. .color3 {
  1747. color: #333;
  1748. }
  1749. .color6 {
  1750. color: #666;
  1751. }
  1752. .color9 {
  1753. color: #999;
  1754. }
  1755. .overAuto {
  1756. overflow: auto;
  1757. }
  1758. .over {
  1759. overflow: hidden;
  1760. text-overflow: ellipsis;
  1761. display: -webkit-box;
  1762. -webkit-line-clamp: 2;
  1763. -webkit-box-orient: vertical;
  1764. box-sizing: unset;
  1765. }
  1766. .save {
  1767. position: fixed;
  1768. left: 0;
  1769. top: 0;
  1770. width: 100%;
  1771. height: 100%;
  1772. background: rgba(0, 0, 0, 0.4);
  1773. z-index: 99;
  1774. .modalBody {
  1775. width: 480px;
  1776. min-height: 220px;
  1777. background: #fff;
  1778. border-radius: 5px;
  1779. padding: 10px 20px;
  1780. color: #333;
  1781. &.sm {
  1782. width: 350px;
  1783. }
  1784. .title {
  1785. width: 100%;
  1786. text-align: center;
  1787. font-size: 18px;
  1788. position: relative;
  1789. i {
  1790. position: absolute;
  1791. right: 0;
  1792. top: 0;
  1793. font-size: 20px;
  1794. color: #666;
  1795. cursor: pointer;
  1796. padding: 0 5px;
  1797. }
  1798. }
  1799. .content {
  1800. width: 100%;
  1801. min-height: 117px;
  1802. background: #f9fafb;
  1803. border: 1px solid @hs_border_color;
  1804. border-radius: 5px;
  1805. overflow: hidden;
  1806. margin-top: 12px;
  1807. padding: 16px 10px;
  1808. &.bb {
  1809. display: flex;
  1810. justify-content: center;
  1811. align-items: center;
  1812. }
  1813. .patientForm {
  1814. padding-top: 15px;
  1815. .ant-form-item {
  1816. margin-bottom: 5px;
  1817. .ant-form-item-label {
  1818. line-height: 20px;
  1819. text-align: left;
  1820. }
  1821. .goods {
  1822. line-height: 40px;
  1823. }
  1824. .ant-form-item-control {
  1825. line-height: 21px;
  1826. }
  1827. .datesGroup {
  1828. padding-top: 10px;
  1829. .linkCheckCheck {
  1830. text-indent: 7px;
  1831. margin-top: 0;
  1832. .priority {
  1833. color: #d81e06;
  1834. }
  1835. }
  1836. }
  1837. .radioGroup {
  1838. line-height: 24px;
  1839. padding-left: 14px;
  1840. }
  1841. .desc {
  1842. margin-top: 5px;
  1843. }
  1844. }
  1845. .linkCheckCheck {
  1846. .ant-checkbox-wrapper {
  1847. margin-left: 0 !important;
  1848. }
  1849. }
  1850. }
  1851. .shortcutForm {
  1852. padding-top: 20px;
  1853. .ant-form-item {
  1854. margin-bottom: 15px;
  1855. }
  1856. .ant-form-item-label {
  1857. text-align: left;
  1858. line-height: 0;
  1859. }
  1860. .goods {
  1861. line-height: 40px;
  1862. }
  1863. }
  1864. .jiTit {
  1865. text-align: center;
  1866. color: #666;
  1867. padding: 8px 0;
  1868. &.jiTitB {
  1869. color: @primary-color;
  1870. font-size: 12px;
  1871. font-weight: bold;
  1872. }
  1873. }
  1874. & > div {
  1875. margin: 0;
  1876. &.title {
  1877. text-align: left;
  1878. color: #333;
  1879. font-size: 14px;
  1880. line-height: 30px;
  1881. }
  1882. &.icon {
  1883. i {
  1884. color: #34b349;
  1885. font-size: 30px !important;
  1886. &.transport-wenhao {
  1887. color: #f5a523;
  1888. }
  1889. &.transport-shibai {
  1890. color: #ff3a52;
  1891. }
  1892. }
  1893. }
  1894. &.defeat {
  1895. color: #333;
  1896. font-size: 16px;
  1897. }
  1898. &.otherInfo {
  1899. color: @primary-color;
  1900. font-size: 12px;
  1901. }
  1902. }
  1903. // 评价
  1904. .star {
  1905. padding: 0 30px;
  1906. font-size: 14px;
  1907. color: #666;
  1908. i {
  1909. font-size: 20px;
  1910. }
  1911. }
  1912. // 意见箱查看
  1913. .conItem {
  1914. padding-bottom: 50px;
  1915. color: #333;
  1916. &.noCon {
  1917. padding-bottom: 0;
  1918. }
  1919. &:nth-child(1) {
  1920. border-bottom: 1px solid @hs_border_color;
  1921. }
  1922. &:nth-child(2) {
  1923. padding-top: 20px;
  1924. }
  1925. .defeat {
  1926. padding-top: 10px;
  1927. }
  1928. }
  1929. }
  1930. .btns {
  1931. &.patientBtns{
  1932. button {
  1933. margin-top: 16px;
  1934. font-size: 18px;
  1935. }
  1936. }
  1937. button {
  1938. margin-top: 10px;
  1939. &.btn {
  1940. margin-left: 8px;
  1941. }
  1942. &.knowBtn {
  1943. color: @primary-color;
  1944. }
  1945. }
  1946. }
  1947. }
  1948. }
  1949. .commonModal {
  1950. position: fixed;
  1951. left: 0;
  1952. top: 0;
  1953. width: 100%;
  1954. height: 100%;
  1955. background: rgba(0, 0, 0, 0.4);
  1956. z-index: 99;
  1957. .bxFormAdd{
  1958. padding: 8px 8px 4px;
  1959. }
  1960. ::ng-deep .ant-form-item{
  1961. margin-bottom: 8px!important;
  1962. }
  1963. ::ng-deep .ant-form-item.last{
  1964. margin-bottom: 0!important;
  1965. .address{
  1966. position: relative;
  1967. .addressList{
  1968. position: absolute;
  1969. top: 100%;
  1970. left: 0;
  1971. width: 100%;
  1972. max-height: 256px;
  1973. z-index: 2;
  1974. background: #fff;
  1975. border: 1px solid #d9d9d9;
  1976. border-radius: 4px;
  1977. overflow: hidden auto;
  1978. .addressItem{
  1979. padding: 5px 12px;
  1980. cursor: pointer;
  1981. &:hover{
  1982. background-color: #e9f7e9;
  1983. }
  1984. }
  1985. }
  1986. }
  1987. }
  1988. ::ng-deep .ant-form-item-label{
  1989. text-align: left!important;
  1990. }
  1991. .modalBody {
  1992. width: 590px;
  1993. background: #fff;
  1994. border-radius: 5px;
  1995. padding: 10px 20px;
  1996. color: #333;
  1997. .title {
  1998. width: 100%;
  1999. text-align: center;
  2000. font-size: 18px;
  2001. position: relative;
  2002. i {
  2003. position: absolute;
  2004. right: 0;
  2005. top: 0;
  2006. font-size: 20px;
  2007. color: #666;
  2008. cursor: pointer;
  2009. padding: 0 5px;
  2010. }
  2011. }
  2012. .content {
  2013. width: 550px;
  2014. background: #f9fafb;
  2015. border: 1px solid @hs_border_color;
  2016. border-radius: 5px;
  2017. // overflow: hidden;
  2018. margin-top: 12px;
  2019. & > div {
  2020. text-align: center;
  2021. margin: 0;
  2022. &.icon {
  2023. margin-top: 17px;
  2024. i {
  2025. color: #34b349;
  2026. font-size: 30px !important;
  2027. &.transport-wenhao {
  2028. color: #f5a523;
  2029. }
  2030. &.transport-shibai {
  2031. color: #ff3a52;
  2032. }
  2033. }
  2034. }
  2035. &.defeat {
  2036. color: #333;
  2037. font-size: 18px;
  2038. }
  2039. &:nth-child(3) {
  2040. font-size: 14px;
  2041. color: #666;
  2042. }
  2043. }
  2044. .roundRobinTips {
  2045. font-size: 12px;
  2046. }
  2047. }
  2048. button {
  2049. margin-top: 10px;
  2050. &.btn {
  2051. margin-left: 8px;
  2052. }
  2053. }
  2054. }
  2055. }
  2056. // 消息提醒
  2057. .msgTemBox {
  2058. .borderLeft {
  2059. position: absolute;
  2060. left: 0;
  2061. top: 0;
  2062. width: 10px;
  2063. height: 100%;
  2064. background-image: linear-gradient(90deg, @bg-start 0%, @bg-end 100%);
  2065. }
  2066. .icon {
  2067. color: @primary-color;
  2068. font-size: 26px;
  2069. }
  2070. .ant-notification-notice-message {
  2071. margin-left: 34px;
  2072. font-weight: 500;
  2073. }
  2074. .ant-notification-notice-description {
  2075. margin-left: 34px;
  2076. color: #333;
  2077. }
  2078. }
  2079. // 右侧悬浮菜单
  2080. .fixed {
  2081. position: fixed;
  2082. top: 40%;
  2083. right: 0;
  2084. z-index: 9;
  2085. border-radius: 5px 0 0 5px;
  2086. .fixedMark {
  2087. position: fixed;
  2088. left: 0;
  2089. top: 0;
  2090. width: 100%;
  2091. height: 100%;
  2092. background: rgba(0, 0, 0, 0.2);
  2093. z-index: 48;
  2094. }
  2095. & > .left {
  2096. width: 480px;
  2097. float: left;
  2098. background: #fff;
  2099. padding: 16px;
  2100. border-radius: 5px;
  2101. border: 1px solid @hs_border_color;
  2102. position: relative;
  2103. z-index: 98;
  2104. .con {
  2105. background: #f9fafb;
  2106. width: 100%;
  2107. height: 100%;
  2108. border-radius: 5px;
  2109. border: 1px solid @hs_border_color;
  2110. padding: 16px 20px;
  2111. &.tableCon {
  2112. padding: 0;
  2113. .table {
  2114. font-size: 14px;
  2115. tr {
  2116. td {
  2117. padding: 15px 6px;
  2118. text-align: center;
  2119. & > .tdiv {
  2120. overflow: hidden;
  2121. .name {
  2122. float: left;
  2123. }
  2124. .num {
  2125. float: right;
  2126. font-size: 12px;
  2127. span {
  2128. color: @primary-color;
  2129. font-size: 14px;
  2130. }
  2131. }
  2132. }
  2133. .notOpen {
  2134. color: #666;
  2135. font-size: 12px;
  2136. img {
  2137. margin-bottom: 8px;
  2138. }
  2139. }
  2140. }
  2141. }
  2142. }
  2143. }
  2144. .title {
  2145. color: #333;
  2146. text-align: center;
  2147. }
  2148. .conditions {
  2149. & > .ant-row {
  2150. margin: 8px 0;
  2151. .ant-row {
  2152. .ant-col-6 {
  2153. margin: 2px 0;
  2154. }
  2155. }
  2156. .checkAll {
  2157. width: 100%;
  2158. border-bottom: 1px solid rgb(233, 233, 233);
  2159. color: @primary-color;
  2160. }
  2161. }
  2162. }
  2163. .btns {
  2164. padding: 5px 20px 0 20px;
  2165. }
  2166. }
  2167. }
  2168. .right {
  2169. width: 80px;
  2170. float: left;
  2171. background: rgba(255, 255, 255, 0.5);
  2172. border-radius: 5px 0 0 5px;
  2173. position: relative;
  2174. z-index: 98;
  2175. .fixedMenu {
  2176. border: 1px solid @hs_border_color;
  2177. color: @primary-color;
  2178. background: rgba(255, 255, 255, 0.5);
  2179. text-align: center;
  2180. border-radius: 5px 0 0 5px;
  2181. &.hujiaozhongxin {
  2182. margin-bottom: 5px;
  2183. }
  2184. .menuItems {
  2185. .item {
  2186. height: 35px;
  2187. line-height: 35px;
  2188. padding: 0 6px;
  2189. cursor: default;
  2190. border-bottom: 1px solid @hs_border_color;
  2191. user-select: none;
  2192. &.checked {
  2193. background: #fff;
  2194. color: #52ab77;
  2195. opacity: 1;
  2196. box-shadow: -3px 4px 7px #eae9e9;
  2197. }
  2198. }
  2199. .others {
  2200. transition: height 0.4s linear;
  2201. overflow: hidden;
  2202. }
  2203. }
  2204. .arrow {
  2205. cursor: pointer;
  2206. }
  2207. }
  2208. }
  2209. }
  2210. .mask-style{
  2211. width: 100%;
  2212. height: 100%;
  2213. position: fixed;
  2214. top: 0;
  2215. left: 0;
  2216. z-index: 999;
  2217. display: flex;
  2218. background: rgba(0,0,0,0.2);
  2219. align-items: center;
  2220. justify-content: center;
  2221. }
  2222. .spin-style{
  2223. z-index:9999;
  2224. }
  2225. // 下拉列表
  2226. .dropdown{
  2227. position: relative;
  2228. height: 48px;
  2229. line-height: 48px;
  2230. .dropdown-content {
  2231. position: absolute;
  2232. top: 48px;
  2233. background-color: #fff;
  2234. width: 156px;
  2235. box-shadow: 0px 2px 4px 1px #D9D9D9;
  2236. z-index: 999999;
  2237. border-radius: 4px;
  2238. border: 1px solid rgba(0,0,0,0.15);
  2239. color: rgba(0,0,0,0.65);
  2240. &.ct{
  2241. left: 50%;
  2242. transform: translateX(-50%);
  2243. }
  2244. &.r8{
  2245. right: 8px;
  2246. }
  2247. }
  2248. .dropdown-content .dropdownItem {
  2249. height: 40px;
  2250. cursor: pointer;
  2251. display: flex;
  2252. align-items: center;
  2253. padding: 0 24px;
  2254. }
  2255. .dropdown-content .dropdownItem:hover {
  2256. background-color: #e9f7e9;
  2257. }
  2258. }
  2259. .tabPermissionItem{
  2260. padding: 0 16px;
  2261. }
  2262. .patient ::ng-deep .ant-form label{
  2263. font-size: 18px;
  2264. margin-top: 8px;
  2265. &.col6{
  2266. width: 16.666%;
  2267. }
  2268. &.mt13{
  2269. margin-top: 13px;
  2270. }
  2271. }
  2272. .patient ::ng-deep .ant-radio-wrapper{
  2273. margin-right: 0;
  2274. padding-right: 8px;
  2275. }
  2276. .patient ::ng-deep .ant-form-item-control{
  2277. line-height: normal;
  2278. }
  2279. .patient ::ng-deep .ant-radio-inner{
  2280. top: -3px;
  2281. }
  2282. .patient ::ng-deep .ant-form-item-label{
  2283. line-height: 32px!important;
  2284. flex-shrink: 0;
  2285. }
  2286. .patient .top16bottom0{
  2287. margin-top: 16px!important;
  2288. margin-bottom: 0!important;
  2289. }
  2290. .patient{
  2291. .modalBody{
  2292. width: 950px;
  2293. border-radius: 16px;
  2294. padding: 16px 24px;
  2295. .title{
  2296. font-size: 22px;
  2297. font-weight: bold;
  2298. i{
  2299. font-size: 24px;
  2300. padding: 0;
  2301. }
  2302. }
  2303. .content{
  2304. margin-top: 16px;
  2305. border-radius: 8px;
  2306. padding: 0;
  2307. .patientMsg{
  2308. display: flex;
  2309. justify-content: space-between;
  2310. align-items: center;
  2311. padding: 16px;
  2312. border-bottom: 2px solid #D1D1D1;
  2313. .patientMsgTips{
  2314. font-size: 18px;
  2315. color: #000000;
  2316. }
  2317. }
  2318. .patientForm{
  2319. padding: 16px 24px;
  2320. .noInspect{
  2321. font-size: 18px;
  2322. }
  2323. .addRemarks{
  2324. font-size: 18px;
  2325. }
  2326. .goods{
  2327. margin-top: 5px;
  2328. }
  2329. .isRemand{
  2330. margin-right: 98px;
  2331. }
  2332. .allowUrgent{
  2333. flex: 1;
  2334. }
  2335. .readonly{
  2336. line-height: 32px;
  2337. font-size: 18px;
  2338. }
  2339. .radioGroup{
  2340. line-height: normal;
  2341. }
  2342. .pos-item{
  2343. left: 125px;
  2344. &.pos-tip{
  2345. left: 100px;
  2346. width: calc(100% - 100px);
  2347. .pos-red{
  2348. margin-top: 13px;
  2349. display: inline-block;
  2350. width: 100%;
  2351. }
  2352. }
  2353. .pos-red{
  2354. font-size: 18px;
  2355. margin-top: 8px;
  2356. display: inline-block;
  2357. }
  2358. }
  2359. }
  2360. }
  2361. }
  2362. }
  2363. .noteSign{
  2364. position: relative;
  2365. .noteList{
  2366. position: absolute;
  2367. bottom: 100%;
  2368. left: 0;
  2369. width: 100%;
  2370. max-height: 256px;
  2371. z-index: 99;
  2372. background: #fff;
  2373. border: 1px solid #d9d9d9;
  2374. border-radius: 4px;
  2375. overflow: hidden auto;
  2376. .noteItem{
  2377. padding: 5px 12px;
  2378. cursor: pointer;
  2379. line-height: normal;
  2380. &:hover{
  2381. background-color: #e9f7e9;
  2382. }
  2383. }
  2384. }
  2385. }