fuwutai.component.less 54 KB

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