hospital.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178
  1. .flexRow {
  2. -webkit-box-orient: vertical;
  3. -ms-flex-direction: column;
  4. flex-direction: column
  5. }
  6. .flexCol, .flexRow {
  7. display: -webkit-box;
  8. display: -ms-flexbox;
  9. display: flex;
  10. -webkit-box-direction: normal
  11. }
  12. .flexCol {
  13. -webkit-box-orient: horizontal;
  14. -ms-flex-direction: row;
  15. flex-direction: row
  16. }
  17. .row-left-top {
  18. -webkit-box-pack: start;
  19. -ms-flex-pack: start;
  20. justify-content: flex-start
  21. }
  22. .row-left-middle, .row-left-top {
  23. display: -webkit-box;
  24. display: -ms-flexbox;
  25. display: flex;
  26. -webkit-box-orient: vertical;
  27. -webkit-box-direction: normal;
  28. -ms-flex-direction: column;
  29. flex-direction: column;
  30. -webkit-box-align: start;
  31. -ms-flex-align: start;
  32. align-items: flex-start
  33. }
  34. .row-left-middle {
  35. -webkit-box-pack: center;
  36. -ms-flex-pack: center;
  37. justify-content: center
  38. }
  39. .row-left-bottom {
  40. display: -webkit-box;
  41. display: -ms-flexbox;
  42. display: flex;
  43. -webkit-box-orient: vertical;
  44. -webkit-box-direction: normal;
  45. -ms-flex-direction: column;
  46. flex-direction: column;
  47. -webkit-box-align: start;
  48. -ms-flex-align: start;
  49. align-items: flex-start;
  50. -webkit-box-pack: end;
  51. -ms-flex-pack: end;
  52. justify-content: flex-end
  53. }
  54. .row-center-top {
  55. -webkit-box-pack: start;
  56. -ms-flex-pack: start;
  57. justify-content: flex-start
  58. }
  59. .row-center-middle, .row-center-top {
  60. display: -webkit-box;
  61. display: -ms-flexbox;
  62. display: flex;
  63. -webkit-box-orient: vertical;
  64. -webkit-box-direction: normal;
  65. -ms-flex-direction: column;
  66. flex-direction: column;
  67. -webkit-box-align: center;
  68. -ms-flex-align: center;
  69. align-items: center
  70. }
  71. .row-center-middle {
  72. -webkit-box-pack: center;
  73. -ms-flex-pack: center;
  74. justify-content: center
  75. }
  76. .row-center-bottom {
  77. display: -webkit-box;
  78. display: -ms-flexbox;
  79. display: flex;
  80. -webkit-box-orient: vertical;
  81. -webkit-box-direction: normal;
  82. -ms-flex-direction: column;
  83. flex-direction: column;
  84. -webkit-box-align: center;
  85. -ms-flex-align: center;
  86. align-items: center;
  87. -webkit-box-pack: end;
  88. -ms-flex-pack: end;
  89. justify-content: flex-end
  90. }
  91. .row-right-top {
  92. -webkit-box-pack: start;
  93. -ms-flex-pack: start;
  94. justify-content: flex-start
  95. }
  96. .row-right-middle, .row-right-top {
  97. display: -webkit-box;
  98. display: -ms-flexbox;
  99. display: flex;
  100. -webkit-box-orient: vertical;
  101. -webkit-box-direction: normal;
  102. -ms-flex-direction: column;
  103. flex-direction: column;
  104. -webkit-box-align: end;
  105. -ms-flex-align: end;
  106. align-items: flex-end
  107. }
  108. .row-right-middle {
  109. -webkit-box-pack: center;
  110. -ms-flex-pack: center;
  111. justify-content: center
  112. }
  113. .row-right-bottom {
  114. display: -webkit-box;
  115. display: -ms-flexbox;
  116. display: flex;
  117. -webkit-box-orient: vertical;
  118. -webkit-box-direction: normal;
  119. -ms-flex-direction: column;
  120. flex-direction: column;
  121. -webkit-box-align: end;
  122. -ms-flex-align: end;
  123. align-items: flex-end;
  124. -webkit-box-pack: end;
  125. -ms-flex-pack: end;
  126. justify-content: flex-end
  127. }
  128. .col-left-top {
  129. -webkit-box-align: start;
  130. -ms-flex-align: start;
  131. align-items: flex-start
  132. }
  133. .col-left-middle, .col-left-top {
  134. display: -webkit-box;
  135. display: -ms-flexbox;
  136. display: flex;
  137. -webkit-box-orient: horizontal;
  138. -webkit-box-direction: normal;
  139. -ms-flex-direction: row;
  140. flex-direction: row;
  141. -webkit-box-pack: start;
  142. -ms-flex-pack: start;
  143. justify-content: flex-start
  144. }
  145. .col-left-middle {
  146. -webkit-box-align: center;
  147. -ms-flex-align: center;
  148. align-items: center
  149. }
  150. .col-left-bottom {
  151. display: -webkit-box;
  152. display: -ms-flexbox;
  153. display: flex;
  154. -webkit-box-orient: horizontal;
  155. -webkit-box-direction: normal;
  156. -ms-flex-direction: row;
  157. flex-direction: row;
  158. -webkit-box-pack: start;
  159. -ms-flex-pack: start;
  160. justify-content: flex-start;
  161. -webkit-box-align: end;
  162. -ms-flex-align: end;
  163. align-items: flex-end
  164. }
  165. .col-center-top {
  166. -webkit-box-align: start;
  167. -ms-flex-align: start;
  168. align-items: flex-start
  169. }
  170. .col-center-middle, .col-center-top {
  171. display: -webkit-box;
  172. display: -ms-flexbox;
  173. display: flex;
  174. -webkit-box-orient: horizontal;
  175. -webkit-box-direction: normal;
  176. -ms-flex-direction: row;
  177. flex-direction: row;
  178. -webkit-box-pack: center;
  179. -ms-flex-pack: center;
  180. justify-content: center
  181. }
  182. .col-center-middle {
  183. -webkit-box-align: center;
  184. -ms-flex-align: center;
  185. align-items: center
  186. }
  187. .col-center-bottom {
  188. display: -webkit-box;
  189. display: -ms-flexbox;
  190. display: flex;
  191. -webkit-box-orient: horizontal;
  192. -webkit-box-direction: normal;
  193. -ms-flex-direction: row;
  194. flex-direction: row;
  195. -webkit-box-pack: center;
  196. -ms-flex-pack: center;
  197. justify-content: center;
  198. -webkit-box-align: end;
  199. -ms-flex-align: end;
  200. align-items: flex-end
  201. }
  202. .col-right-top {
  203. -webkit-box-align: start;
  204. -ms-flex-align: start;
  205. align-items: flex-start
  206. }
  207. .col-right-middle, .col-right-top {
  208. display: -webkit-box;
  209. display: -ms-flexbox;
  210. display: flex;
  211. -webkit-box-orient: horizontal;
  212. -webkit-box-direction: normal;
  213. -ms-flex-direction: row;
  214. flex-direction: row;
  215. -webkit-box-pack: end;
  216. -ms-flex-pack: end;
  217. justify-content: flex-end
  218. }
  219. .col-right-middle {
  220. -webkit-box-align: center;
  221. -ms-flex-align: center;
  222. align-items: center
  223. }
  224. .col-right-bottom {
  225. display: -webkit-box;
  226. display: -ms-flexbox;
  227. display: flex;
  228. -webkit-box-orient: horizontal;
  229. -webkit-box-direction: normal;
  230. -ms-flex-direction: row;
  231. flex-direction: row;
  232. -webkit-box-pack: end;
  233. -ms-flex-pack: end;
  234. justify-content: flex-end;
  235. -webkit-box-align: end;
  236. -ms-flex-align: end;
  237. align-items: flex-end
  238. }
  239. .hospital-department {
  240. width: 170px;
  241. background: #f4f9ff;
  242. position: relative;
  243. height: 100%;
  244. color: #333
  245. }
  246. .hospital-department .dept-list-wrapper {
  247. padding: 10px 0;
  248. height: 100%
  249. }
  250. .hospital-department .dept-list-wrapper .sub-item {
  251. display: -webkit-box;
  252. display: -ms-flexbox;
  253. display: flex;
  254. -webkit-box-pack: center;
  255. -ms-flex-pack: center;
  256. justify-content: center;
  257. -webkit-box-align: center;
  258. -ms-flex-align: center;
  259. align-items: center;
  260. text-align: center;
  261. padding: 10px;
  262. cursor: pointer;
  263. -webkit-transition: all .2s ease;
  264. transition: all .2s ease;
  265. min-height: 40px
  266. }
  267. .hospital-department .dept-list-wrapper .sub-item:hover {
  268. background: hsla(0, 0%, 100%, .7)
  269. }
  270. .hospital-department .dept-list-wrapper .sub-item.selected {
  271. font-size: 16px;
  272. font-weight: 700;
  273. background: #fff
  274. }
  275. .hospital-department .mask {
  276. width: 100%;
  277. height: 40px;
  278. background: -webkit-gradient(linear, left top, left bottom, from(rgba(232, 242, 255, 0)), to(rgba(73, 144, 241, .2)));
  279. background: linear-gradient(180deg, rgba(232, 242, 255, 0), rgba(73, 144, 241, .2));
  280. position: absolute;
  281. bottom: 0
  282. }
  283. .el-dialog__header {
  284. background-color: #e8f2ff;
  285. padding: 20px 30px;
  286. border-radius: 4px 4px 0 0
  287. }
  288. .el-dialog__header .el-dialog__title {
  289. font-size: 16px;
  290. font-weight: 700;
  291. letter-spacing: 1px
  292. }
  293. .el-dialog__header .el-dialog__close {
  294. font-size: 20px;
  295. font-weight: 700
  296. }
  297. .el-dialog__body {
  298. padding: 10px 20px 0;
  299. max-height: 450px;
  300. overflow: auto
  301. }
  302. .el-dialog__footer {
  303. padding: 15px;
  304. -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  305. box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  306. border-radius: 0 0 4px 4px;
  307. z-index: 100;
  308. position: relative
  309. }
  310. .dialog-text {
  311. color: #333;
  312. font-size: 14px;
  313. margin-bottom: 60px
  314. }
  315. .content-wrapper {
  316. color: #999;
  317. font-size: 16px
  318. }
  319. .content-wrapper p {
  320. text-indent: 2em;
  321. margin: 0
  322. }
  323. .placeholder {
  324. height: 30px
  325. }
  326. .button-wrapper {
  327. width: 140px;
  328. margin: 0 auto
  329. }
  330. .common-header {
  331. display: -webkit-box;
  332. display: -ms-flexbox;
  333. display: flex;
  334. -webkit-box-pack: justify;
  335. -ms-flex-pack: justify;
  336. justify-content: space-between
  337. }
  338. .common-header .title-wrapper {
  339. display: -webkit-box;
  340. display: -ms-flexbox;
  341. display: flex;
  342. -webkit-box-align: center;
  343. -ms-flex-align: center;
  344. align-items: center
  345. }
  346. .common-header .title-wrapper .hospital-title {
  347. color: #333;
  348. font-size: 20px;
  349. font-weight: 700;
  350. margin-right: 15px
  351. }
  352. .common-header .favicon .iconfont {
  353. font-size: 14px
  354. }
  355. .hospital-home .header-wrapper {
  356. position: fixed
  357. }
  358. .hospital-home .info-wrapper {
  359. display: -webkit-box;
  360. display: -ms-flexbox;
  361. display: flex;
  362. margin-top: 30px;
  363. padding-top: 0;
  364. padding-left: 0;
  365. width: 100%;
  366. flex-direction:inherit;
  367. }
  368. .hospital-home .info-wrapper .content-wrapper {
  369. -webkit-box-flex: 1;
  370. -ms-flex: 1;
  371. flex: 1;
  372. color: #333;
  373. margin-left: 30px
  374. }
  375. .hospital-home .info-wrapper .content-wrapper .sub-title {
  376. letter-spacing: 1px
  377. }
  378. .hospital-home .info-wrapper .content-wrapper .line {
  379. display: -webkit-box;
  380. display: -ms-flexbox;
  381. display: flex;
  382. margin-top: 8px;
  383. font-size: 12px
  384. }
  385. .hospital-home .info-wrapper .content-wrapper .line .label {
  386. color: #999
  387. }
  388. .hospital-home .info-wrapper .content-wrapper .space {
  389. margin-left: 60px
  390. }
  391. .hospital-home .info-wrapper .mt20 {
  392. margin-top: 20px
  393. }
  394. .hospital-home .info-wrapper .hospital-img {
  395. height: 80px;
  396. width: 80px;
  397. border-radius: 40px
  398. }
  399. .hospital-home .maintain-wrapper {
  400. display: -webkit-box;
  401. display: -ms-flexbox;
  402. display: flex;
  403. -webkit-box-orient: vertical;
  404. -webkit-box-direction: normal;
  405. -ms-flex-direction: column;
  406. flex-direction: column;
  407. -webkit-box-align: center;
  408. -ms-flex-align: center;
  409. align-items: center;
  410. margin-top: 100px
  411. }
  412. .hospital-home .maintain-wrapper .maintain-img {
  413. width: 130px;
  414. height: 130px
  415. }
  416. .hospital-home .maintain-wrapper .text {
  417. margin-top: 20px;
  418. color: #333;
  419. font-size: 16px
  420. }
  421. .hospital-home .maintain-wrapper .tips {
  422. margin-top: 10px;
  423. color: #ccc;
  424. width: 550px
  425. }
  426. .hospital-home .rule-wrapper {
  427. margin-top: 8px;
  428. font-size: 12px;
  429. color: #999;
  430. line-height: 20px;
  431. min-height: 20px;
  432. padding: 0;
  433. background: none;
  434. }
  435. .hospital-home .rule-wrapper ol {
  436. margin: 0;
  437. padding-left: 13px
  438. }
  439. .hospital-home .select-title {
  440. padding-top: 40px;
  441. padding-bottom: 20px;
  442. background: #fff;
  443. position: -webkit-sticky;
  444. position: sticky;
  445. top: 0
  446. }
  447. .hospital-home .select-dept-wrapper {
  448. display: -webkit-box;
  449. display: -ms-flexbox;
  450. display: flex;
  451. -webkit-box-pack: justify;
  452. -ms-flex-pack: justify;
  453. justify-content: space-between;
  454. min-height: 100px
  455. }
  456. .hospital-home .select-dept-wrapper .block {
  457. width: 2px;
  458. border-radius: 1px;
  459. -webkit-transition: all .2s ease;
  460. transition: all .2s ease
  461. }
  462. .hospital-home .select-dept-wrapper .block.selected {
  463. width: 4px;
  464. border-radius: 2px
  465. }
  466. .hospital-home .select-dept-wrapper .department-wrapper {
  467. max-height: 460px;
  468. position: -webkit-sticky;
  469. position: sticky;
  470. top: 82px
  471. }
  472. .hospital-home .select-dept-wrapper .sub-dept-container {
  473. margin-left: 50px;
  474. -webkit-box-flex: 1;
  475. -ms-flex: 1;
  476. flex: 1
  477. }
  478. .hospital-home .select-dept-wrapper .sub-dept-container .sub-dept-wrapper {
  479. padding: 20px 0 20px 30px;
  480. border-radius: 4px;
  481. margin-top: 20px
  482. }
  483. .hospital-home .select-dept-wrapper .sub-dept-container .sub-dept-wrapper:first-child {
  484. margin-top: 0
  485. }
  486. .hospital-home .select-dept-wrapper .sub-dept-container .sub-dept-wrapper.selected {
  487. background: #fafafa
  488. }
  489. .hospital-home .select-dept-wrapper .sub-dept-container .sub-dept-wrapper .sub-title {
  490. display: -webkit-box;
  491. display: -ms-flexbox;
  492. display: flex;
  493. -webkit-box-align: center;
  494. -ms-flex-align: center;
  495. align-items: center;
  496. font-weight: 700;
  497. color: #333
  498. }
  499. .hospital-home .select-dept-wrapper .sub-dept-container .sub-dept-wrapper .sub-item-wrapper {
  500. display: -webkit-box;
  501. display: -ms-flexbox;
  502. display: flex;
  503. -ms-flex-wrap: wrap;
  504. flex-wrap: wrap;
  505. margin-top: 10px
  506. }
  507. .hospital-home .select-dept-wrapper .sub-dept-container .sub-dept-wrapper .sub-item-wrapper .sub-item {
  508. width: 230px;
  509. margin-top: 10px;
  510. padding-right: 30px
  511. }
  512. .countdown-wrapper {
  513. display: -webkit-box;
  514. display: -ms-flexbox;
  515. display: flex;
  516. -webkit-box-orient: vertical;
  517. -webkit-box-direction: normal;
  518. -ms-flex-direction: column;
  519. flex-direction: column;
  520. -webkit-box-align: center;
  521. -ms-flex-align: center;
  522. align-items: center
  523. }
  524. .countdown-wrapper .countdonw-title {
  525. display: -webkit-box;
  526. display: -ms-flexbox;
  527. display: flex;
  528. color: #333;
  529. font-size: 16px
  530. }
  531. .countdown-wrapper .v-link {
  532. margin-left: 5px;
  533. margin-right: 5px
  534. }
  535. .countdown-wrapper .countdown-text {
  536. display: -webkit-box;
  537. display: -ms-flexbox;
  538. display: flex;
  539. -webkit-box-align: center;
  540. -ms-flex-align: center;
  541. align-items: center;
  542. color: #999;
  543. font-size: 16px;
  544. margin-top: 20px
  545. }
  546. .countdown-wrapper .number {
  547. margin-left: 24px;
  548. font-weight: 700;
  549. font-size: 30px;
  550. letter-spacing: 1px;
  551. color: #4990f1
  552. }
  553. .countdown-wrapper .unit {
  554. font-size: 16px;
  555. color: #333
  556. }
  557. .calendar-item {
  558. width: 124px;
  559. height: 80px;
  560. color: #4990f1;
  561. cursor: pointer;
  562. -webkit-transition: all .2 ease;
  563. transition: all .2 ease;
  564. -webkit-user-select: none;
  565. -moz-user-select: none;
  566. -ms-user-select: none;
  567. user-select: none
  568. }
  569. .calendar-item.small {
  570. width: 110px
  571. }
  572. .calendar-item .date-wrapper {
  573. padding: 10px 0;
  574. background-color: #e8f2ff;
  575. display: -webkit-box;
  576. display: -ms-flexbox;
  577. display: flex;
  578. -webkit-box-pack: center;
  579. -ms-flex-pack: center;
  580. justify-content: center;
  581. -webkit-box-align: center;
  582. -ms-flex-align: center;
  583. align-items: center;
  584. font-size: 14px;
  585. border-top-left-radius: 4px;
  586. border-top-right-radius: 4px
  587. }
  588. .calendar-item .date-wrapper .week {
  589. font-size: 12px;
  590. margin-left: 13px
  591. }
  592. .calendar-item .status-wrapper {
  593. display: -webkit-box;
  594. display: -ms-flexbox;
  595. display: flex;
  596. -webkit-box-pack: center;
  597. -ms-flex-pack: center;
  598. justify-content: center;
  599. -webkit-box-align: center;
  600. -ms-flex-align: center;
  601. align-items: center;
  602. padding: 10px 0;
  603. border: 1px solid #e8f2ff;
  604. border-top: 0;
  605. border-bottom-left-radius: 4px;
  606. border-bottom-right-radius: 4px
  607. }
  608. .calendar-item.selected {
  609. font-weight: 700
  610. }
  611. .calendar-item.selected .date-wrapper {
  612. color: #fff;
  613. background-color: #4990f1
  614. }
  615. .calendar-item.selected .status-wrapper {
  616. border-color: #4990f1
  617. }
  618. .calendar-item.gray {
  619. color: #999
  620. }
  621. .calendar-item.gray .date-wrapper {
  622. background-color: #eee
  623. }
  624. .calendar-item.gray .status-wrapper {
  625. border-color: #eee
  626. }
  627. .calendar-item.gray.selected .date-wrapper {
  628. color: #fff;
  629. background-color: #ccc
  630. }
  631. .calendar-item.gray.selected .status-wrapper {
  632. border-color: #ccc
  633. }
  634. .calendar-list-wrapper {
  635. display: -webkit-box;
  636. display: -ms-flexbox;
  637. display: flex
  638. }
  639. .calendar-list-wrapper .space {
  640. margin-left: 22px
  641. }
  642. .calendar-list-wrapper .small-space {
  643. margin-left: 16px
  644. }
  645. .title-wrapper {
  646. margin-bottom: 20px;
  647. text-align: center;
  648. letter-spacing: 1px;
  649. color: #333
  650. }
  651. .pagination {
  652. margin-top: 30px;
  653. height: 42px
  654. }
  655. .list-title {
  656. display: -webkit-box;
  657. display: -ms-flexbox;
  658. display: flex;
  659. -webkit-box-align: center;
  660. -ms-flex-align: center;
  661. align-items: center;
  662. letter-spacing: 1px;
  663. color: #999
  664. }
  665. .list-item {
  666. margin-top: 40px;
  667. display: -webkit-box;
  668. display: -ms-flexbox;
  669. display: flex;
  670. -webkit-box-pack: justify;
  671. -ms-flex-pack: justify;
  672. justify-content: space-between
  673. }
  674. .list-item .item-wrapper {
  675. -webkit-box-orient: vertical;
  676. -webkit-box-direction: normal;
  677. -ms-flex-direction: column;
  678. flex-direction: column;
  679. -webkit-box-pack: center;
  680. -ms-flex-pack: center;
  681. justify-content: center
  682. }
  683. .list-item .item-wrapper, .list-item .title-wrapper {
  684. display: -webkit-box;
  685. display: -ms-flexbox;
  686. display: flex
  687. }
  688. .list-item .title-wrapper .title {
  689. font-size: 14px
  690. }
  691. .list-item .title-wrapper .name {
  692. letter-spacing: 1px
  693. }
  694. .list-item .special-wrapper {
  695. width: 660px;
  696. margin-top: 10px;
  697. letter-spacing: 1px;
  698. color: #999
  699. }
  700. .list-item .right-wrapper {
  701. display: -webkit-box;
  702. display: -ms-flexbox;
  703. display: flex;
  704. -webkit-box-align: center;
  705. -ms-flex-align: center;
  706. align-items: center
  707. }
  708. .list-item .right-wrapper .fee {
  709. letter-spacing: 1px;
  710. color: #4990f1;
  711. font-weight: 700;
  712. margin-right: 20px
  713. }
  714. .list-item .right-wrapper .button-wrapper {
  715. width: 140px
  716. }
  717. .list-item .right-wrapper .button-wrapper .v-button {
  718. font-weight: 700
  719. }
  720. .list-item .right-wrapper .button-wrapper .number {
  721. margin-top: -3px
  722. }
  723. .mt100 {
  724. margin-top: 40px
  725. }
  726. .watch-all-wrapper {
  727. display: -webkit-box;
  728. display: -ms-flexbox;
  729. display: flex;
  730. -webkit-box-pack: center;
  731. -ms-flex-pack: center;
  732. justify-content: center;
  733. margin-top: 40px
  734. }
  735. .doct-item {
  736. width: 440px;
  737. height: 130px;
  738. background: #fff;
  739. -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04);
  740. box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04);
  741. border-radius: 4px;
  742. display: -webkit-box;
  743. display: -ms-flexbox;
  744. display: flex;
  745. -webkit-box-align: center;
  746. -ms-flex-align: center;
  747. align-items: center;
  748. font-size: 14px;
  749. padding: 10px;
  750. margin: 0 40px 30px 0;
  751. float: left;
  752. cursor: pointer
  753. }
  754. .doct-item:nth-child(2n) {
  755. margin-right: 0
  756. }
  757. .doct-item .logo {
  758. width: 80px;
  759. height: 80px;
  760. border-radius: 50%;
  761. margin-right: 10px
  762. }
  763. .doct-item .detail .title {
  764. color: #333;
  765. font-weight: 700
  766. }
  767. .doct-item .detail .title .name {
  768. color: #666;
  769. border-left: 1px solid #eee;
  770. padding-left: 10px;
  771. margin-left: 10px
  772. }
  773. .doct-item .dept {
  774. color: #333;
  775. margin-top: 4px
  776. }
  777. .doct-item .dept span {
  778. margin-right: 10px
  779. }
  780. .doct-item .begoodat {
  781. color: #999;
  782. width: 330px;
  783. overflow: hidden;
  784. text-overflow: ellipsis;
  785. white-space: nowrap;
  786. margin: 8px 0
  787. }
  788. .doct-item .base-hos .basebg {
  789. width: 84px;
  790. height: 24px;
  791. display: inline-block;
  792. background: #9cc0ff;
  793. border-radius: 4px 0 0 4px
  794. }
  795. .doct-item .base-hos .basebg img {
  796. width: 72px;
  797. margin: 4px 6px
  798. }
  799. .doct-item .hosname {
  800. width: auto;
  801. height: 24px;
  802. line-height: 24px;
  803. display: inline-block;
  804. background: #f0f7ff;
  805. border-radius: 0 4px 4px 0;
  806. border: 1px solid #9cc0ff;
  807. color: #333;
  808. padding: 0 12px;
  809. vertical-align: super
  810. }
  811. .dept-item {
  812. width: 960px;
  813. background: #fff;
  814. -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04);
  815. box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04);
  816. border-radius: 4px;
  817. padding: 10px 20px;
  818. margin-top: 30px
  819. }
  820. .dept-item .item, .dept-item .name-wrapper {
  821. display: -webkit-box;
  822. display: -ms-flexbox;
  823. display: flex;
  824. -webkit-box-align: center;
  825. -ms-flex-align: center;
  826. align-items: center
  827. }
  828. .dept-item .item {
  829. -webkit-box-pack: justify;
  830. -ms-flex-pack: justify;
  831. justify-content: space-between;
  832. border-bottom: 1px solid #eee;
  833. padding-bottom: 10px
  834. }
  835. .dept-item .item img {
  836. width: 50px;
  837. height: 50px;
  838. border-radius: 50%
  839. }
  840. .dept-item .item .hos-name {
  841. overflow: hidden;
  842. text-overflow: ellipsis;
  843. white-space: nowrap;
  844. font-size: 16px;
  845. color: #333;
  846. margin-left: 10px
  847. }
  848. .dept-item .item .info {
  849. display: -webkit-box;
  850. display: -ms-flexbox;
  851. display: flex;
  852. -webkit-box-pack: justify;
  853. -ms-flex-pack: justify;
  854. justify-content: space-between
  855. }
  856. .dept-item .item .info div:nth-child(2) {
  857. margin-left: 50px
  858. }
  859. .dept-item ul {
  860. list-style: none;
  861. padding: 20px 0 0;
  862. margin: 0
  863. }
  864. .dept-item ul li {
  865. background: #f7fbff;
  866. padding: 7px 10px;
  867. font-size: 14px;
  868. color: #4990f1;
  869. cursor: pointer;
  870. margin: 0 10px 10px 0;
  871. display: inline-block;
  872. border-radius: 4px
  873. }
  874. .wrap {
  875. display: -webkit-box;
  876. display: -ms-flexbox;
  877. display: flex;
  878. -webkit-box-align: center;
  879. -ms-flex-align: center;
  880. align-items: center;
  881. position: relative;
  882. margin-top: 30px
  883. }
  884. .wrap .list-wrapper {
  885. min-height: 270px;
  886. width: 960px
  887. }
  888. .wrap img {
  889. width: 30px;
  890. display: inline-block;
  891. position: absolute;
  892. top: 7px;
  893. left: 0;
  894. margin-right: 15px
  895. }
  896. .wrap .title {
  897. font-size: 14px;
  898. color: #ffc53d;
  899. padding: 10px 0 20px
  900. }
  901. .wrap .el-tabs__header {
  902. margin-left: 40px
  903. }
  904. .wrap .el-tabs__header /deep/ .el-tabs__item {
  905. font-size: 16px
  906. }
  907. .wrap .el-tabs__header /deep/ .el-tabs__item.is-active {
  908. color: #333;
  909. font-size: 18px;
  910. font-weight: 700
  911. }
  912. .wrap .el-tabs__nav-wrap:after {
  913. background: none
  914. }
  915. .wrap .el-tabs__content {
  916. overflow: inherit
  917. }
  918. .el-dialog__header {
  919. background-color: #e8f2ff;
  920. padding: 20px 30px;
  921. border-radius: 4px 4px 0 0
  922. }
  923. .el-dialog__header .el-dialog__title {
  924. font-size: 16px;
  925. font-weight: 700;
  926. letter-spacing: 1px
  927. }
  928. .el-dialog__header .el-dialog__close {
  929. font-size: 20px;
  930. font-weight: 700
  931. }
  932. .el-dialog__body {
  933. padding: 10px 20px 0
  934. }
  935. .el-dialog__footer {
  936. padding: 15px;
  937. -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  938. box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  939. border-radius: 0 0 4px 4px;
  940. z-index: 100;
  941. position: relative
  942. }
  943. .dialog-text {
  944. color: #333;
  945. font-size: 16px;
  946. margin-bottom: 60px
  947. }
  948. .placeholder {
  949. height: 30px
  950. }
  951. .ml20 {
  952. margin-left: 20px
  953. }
  954. .hospital-source-list .list-item {
  955. width: auto;
  956. height: auto;
  957. color: #333;
  958. background:none;
  959. display: inline;
  960. vertical-align: top;
  961. font-weight: 700;
  962. padding: 0 ;
  963. line-height: inherit;
  964. border-radius: 4px;
  965. cursor: default;
  966. margin-top: 40px;
  967. display: -webkit-box;
  968. display: -ms-flexbox;
  969. display: flex;
  970. -webkit-box-pack: justify;
  971. -ms-flex-pack: justify;
  972. justify-content: space-between;
  973. }
  974. .hospital-source-list .list-item:hover{
  975. border:0;
  976. -webkit-box-shadow: none ;
  977. }
  978. .list-item {
  979. width: 280px;
  980. height: 50px;
  981. color: #333;
  982. background: #fafafa;
  983. display: inline-block;
  984. vertical-align: top;
  985. font-weight: 700;
  986. padding: 0 20px 0 30px;
  987. line-height: 50px;
  988. border-radius: 4px;
  989. cursor: pointer;
  990. margin-top: 20px
  991. }
  992. .list-item.selected {
  993. background: #4990f1;
  994. color: #fff;
  995. -webkit-box-shadow: 0 10px 20px -10px rgba(73, 144, 241, .5);
  996. box-shadow: 0 10px 20px -10px rgba(73, 144, 241, .5);
  997. border: 1px solid #4990f1
  998. }
  999. .list-item.disabled {
  1000. color: #ccc
  1001. }
  1002. .list-item:hover {
  1003. border: 1px solid #4990f1;
  1004. -webkit-box-shadow: 0 10px 20px -10px rgba(73, 144, 241, .2);
  1005. box-shadow: 0 10px 20px -10px rgba(73, 144, 241, .2)
  1006. }
  1007. .list-item .right-text {
  1008. font-weight: 400;
  1009. float: right
  1010. }
  1011. .button-wrapper {
  1012. width: 140px;
  1013. margin: 0 auto
  1014. }
  1015. .title {
  1016. letter-spacing: 1px;
  1017. font-weight: 700;
  1018. color: #333;
  1019. font-size: 16px
  1020. }
  1021. .affix {
  1022. position: fixed;
  1023. z-index: 100
  1024. }
  1025. .el-autocomplete-suggestion {
  1026. margin-top: 2px !important;
  1027. border: none !important;
  1028. border-top-left-radius: 0 !important;
  1029. border-top-right-radius: 0 !important;
  1030. -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04) !important;
  1031. box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04) !important
  1032. }
  1033. .el-autocomplete-suggestion .popper__arrow {
  1034. display: none !important
  1035. }
  1036. .el-form-item__label {
  1037. color: #999 !important;
  1038. letter-spacing: 1px
  1039. }
  1040. .block {
  1041. height: 14px;
  1042. width: 4px;
  1043. background: #4990f1;
  1044. margin-right: 6px;
  1045. border-radius: 2px
  1046. }
  1047. .split {
  1048. border-left: 1px solid #eee;
  1049. width: 1px;
  1050. height: 16px;
  1051. margin: 0 10px
  1052. }
  1053. .el-cascader-menu__wrap {
  1054. height: 200px !important
  1055. }
  1056. .lineup .el-icon-warning-outline {
  1057. font-size: 40px;
  1058. color: #333
  1059. }
  1060. .lineup .el-loading-text {
  1061. color: #333 !important;
  1062. font-size: 18px !important;
  1063. margin-top: 20px !important
  1064. }
  1065. .bottom-wrapper {
  1066. display: -webkit-box;
  1067. display: -ms-flexbox;
  1068. display: flex;
  1069. -webkit-box-pack: center;
  1070. -ms-flex-pack: center;
  1071. justify-content: center
  1072. }
  1073. .bottom-code-wrapper {
  1074. width: 920px;
  1075. height: 171px;
  1076. margin-top: 120px;
  1077. display: -webkit-box;
  1078. display: -ms-flexbox;
  1079. display: flex;
  1080. -webkit-box-pack: justify;
  1081. -ms-flex-pack: justify;
  1082. justify-content: space-between;
  1083. background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA5gAAACrBAMAAADx4C4QAAAAKlBMVEUAAAD2+//////1+v/1+f/0+f/0+v/2+f/1+f/4///////0+//3+f/0+f+qk+F1AAAADXRSTlMAUwbz3NmliqwkAnVatE+yyQAAAppJREFUeNrs3TFKF2AAQPFPp6IGh2gTHFw6gKODXqHZwQN4ASFoDQqiqaW5tQsEja0iahHvLkF5gILv74fP97vCO8Ab/2n7+UtmOTjdG1noGTMdjazzmbnOR5Z5xVw3I6tsMdvOyCL7zHY8ssgus12MLHLGbNcji5ww29XIIofMdjmyCPON/JtippgPAhRTA4qpAcXUgGJqQDE1oJgaUEwNKKYGFFMDiqkBxdSAYmpAMTWgmBpQTA0opgYUUwOKqQHF1IBiakAxNaCYGlBMDSimBhRTA4qpAcXUgGJqQDE1oJgaUEwNKKYGFFMDiqkBxdSAYmpAMTWgmBpQTA0opgYUUwOKqQHF1IBiakAxNaCYGlBMDSimxTbz9XZb5DHzvR9Z4inzfRtZ4hHzvR5Z4hPz/RxZ4h3z/RhZ4Qmb8GVkga9swq+Ru/eRzXgzcsdefGdT3n4YmeH21p977uB07/bWH4Gjv7f+KJz/ufVH4WaMLSKxM/aJxPHYJRIX44xIXI8TInE1DonE5SAaxRQppkgxRYopUkyRYooUU6SYIsUUKaZIMUWKKVJMkWKKFFOkmCLFFCmmSDFFiilSTJFiihRTpJgixRQppkgxRYopUkyRYooUU6SYIsUUKaZIMUWKKVJMkWKKFFOkmCLFFCmmSDFFiilSTJFiihRTpJgixRQppkgxf7dHxzYEBQAURR8TKEQnUVhBqWAFtcIAFpCYxzwiqN4u//8x/s09KxwQM0HMBDETxEwQM0HMBDETxEwQM0HMBDETxEwQM0HMBDETxEwQM0HMBDETxEwQM0HMBDETxEwQM0HMBDETxEyQHCuIT64VxDf3CuKXbQXxzr6COGdRQaySZ4XwT/KqEB4ZrSuAUybLzaWaucNtlwyVJNw6kFj/vwAAAABJRU5ErkJggg==")
  1084. }
  1085. .bottom-code-wrapper .code {
  1086. width: 140px;
  1087. height: 140px;
  1088. margin-left: 103px;
  1089. margin-top: 16px
  1090. }
  1091. .bottom-code-wrapper .people {
  1092. float: right;
  1093. margin-right: 125px
  1094. }
  1095. .bottom-code-wrapper .code-text-wrapper {
  1096. display: -webkit-box;
  1097. display: -ms-flexbox;
  1098. display: flex
  1099. }
  1100. .bottom-code-wrapper .content-wrapper {
  1101. margin-top: 95px;
  1102. margin-left: 28px;
  1103. color: #333
  1104. }
  1105. .bottom-code-wrapper .content-wrapper .text {
  1106. display: -webkit-box;
  1107. display: -ms-flexbox;
  1108. display: flex;
  1109. -webkit-box-align: center;
  1110. -ms-flex-align: center;
  1111. align-items: center
  1112. }
  1113. .bottom-code-wrapper .content-wrapper .iconfont {
  1114. color: #00c25f;
  1115. font-size: 24px
  1116. }
  1117. .el-dialog__header {
  1118. background-color: #e8f2ff;
  1119. padding: 20px 30px;
  1120. border-radius: 4px 4px 0 0
  1121. }
  1122. .el-dialog__header .el-dialog__title {
  1123. font-size: 16px;
  1124. font-weight: 700;
  1125. letter-spacing: 1px
  1126. }
  1127. .el-dialog__header .el-dialog__close {
  1128. font-size: 20px;
  1129. font-weight: 700
  1130. }
  1131. .el-dialog__body {
  1132. padding: 10px 20px 0;
  1133. max-height: 450px;
  1134. overflow: auto
  1135. }
  1136. .el-dialog__footer {
  1137. padding: 15px;
  1138. -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  1139. box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  1140. border-radius: 0 0 4px 4px;
  1141. z-index: 100;
  1142. position: relative
  1143. }
  1144. .dialog-text {
  1145. color: #333;
  1146. font-size: 14px;
  1147. margin-bottom: 60px
  1148. }
  1149. .content-wrapper {
  1150. color: #999;
  1151. font-size: 16px
  1152. }
  1153. .content-wrapper p {
  1154. text-indent: 2em;
  1155. margin: 0
  1156. }
  1157. .placeholder {
  1158. height: 30px
  1159. }
  1160. .button-wrapper {
  1161. width: 140px;
  1162. margin: 0 auto
  1163. }
  1164. .header-wrapper {
  1165. display: -webkit-box;
  1166. display: -ms-flexbox;
  1167. display: flex;
  1168. -webkit-box-align: center;
  1169. -ms-flex-align: center;
  1170. align-items: center
  1171. }
  1172. .mt20 {
  1173. margin-top: 20px
  1174. }
  1175. .mt60 {
  1176. margin-top: 30px
  1177. }
  1178. .tips {
  1179. text-align: center;
  1180. color: #333;
  1181. letter-spacing: 1px
  1182. }
  1183. .docsource-item {
  1184. width: 320px;
  1185. height: 50px;
  1186. background: #fff;
  1187. -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04);
  1188. box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04);
  1189. border-radius: 4px;
  1190. padding: 15px 20px;
  1191. overflow: hidden;
  1192. float: left;
  1193. margin-right: 20px;
  1194. margin-bottom: 20px;
  1195. cursor: pointer
  1196. }
  1197. .docsource-item:hover {
  1198. -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .1);
  1199. box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .1)
  1200. }
  1201. .docsource-item:nth-child(3n) {
  1202. margin-right: 0
  1203. }
  1204. .docsource-item .date {
  1205. font-weight: 700;
  1206. float: left
  1207. }
  1208. .docsource-item .week {
  1209. float: left;
  1210. margin-left: 10px
  1211. }
  1212. .docsource-item .btn {
  1213. float: right;
  1214. color: #4990f1
  1215. }
  1216. .docsource-item.gray .btn, .docsource-item.gray .date, .docsource-item.gray .week {
  1217. color: #ccc
  1218. }
  1219. .doctor-detail .title span {
  1220. font-size: 14px;
  1221. color: #666;
  1222. font-weight: 400
  1223. }
  1224. .doctor-detail .title .dept {
  1225. border-left: 1px solid #eee;
  1226. padding-left: 10px;
  1227. margin-left: 10px
  1228. }
  1229. .doctor-detail .detail {
  1230. display: -webkit-box;
  1231. display: -ms-flexbox;
  1232. display: flex;
  1233. -webkit-box-align: center;
  1234. -ms-flex-align: center;
  1235. align-items: center;
  1236. margin-top: 30px
  1237. }
  1238. .doctor-detail .detail .logo {
  1239. width: 80px;
  1240. height: 80px;
  1241. display: block;
  1242. border-radius: 50%
  1243. }
  1244. .doctor-detail .detail .info {
  1245. margin-left: 10px
  1246. }
  1247. .doctor-detail .detail .info .tit span {
  1248. font-size: 18px;
  1249. color: #333;
  1250. font-weight: 700
  1251. }
  1252. .doctor-detail .detail .info .tit .name {
  1253. font-weight: 400;
  1254. border-left: 1px solid #eee;
  1255. padding-left: 10px;
  1256. margin-left: 10px
  1257. }
  1258. .doctor-detail .detail .info .base-hos {
  1259. margin: 6px 0 20px
  1260. }
  1261. .doctor-detail .detail .info .base-hos .basebg {
  1262. width: 84px;
  1263. height: 24px;
  1264. background: #9cc0ff;
  1265. border-radius: 4px 0 0 4px;
  1266. padding: 4px 6px;
  1267. display: inline-block
  1268. }
  1269. .doctor-detail .detail .info .base-hos .basebg img {
  1270. width: 72px
  1271. }
  1272. .doctor-detail .detail .info .base-hos .hosname {
  1273. border: 1px solid #9cc0ff;
  1274. border-radius: 0 4px 4px 0;
  1275. font-size: 14px;
  1276. color: #333;
  1277. height: 24px;
  1278. line-height: 24px;
  1279. padding: 0 12px;
  1280. background: #f0f7ff;
  1281. display: inline-block;
  1282. vertical-align: bottom
  1283. }
  1284. .docsource-list {
  1285. height: auto;
  1286. margin-top: 30px
  1287. }
  1288. .el-dialog--center .el-dialog__body {
  1289. text-align: center;
  1290. padding: 20px 60px 0
  1291. }
  1292. .icon {
  1293. font-size: 54px;
  1294. color: #4490f1;
  1295. display: block;
  1296. text-align: center
  1297. }
  1298. .dialog-footer {
  1299. display: -webkit-box;
  1300. display: -ms-flexbox;
  1301. display: flex;
  1302. -ms-flex-pack: distribute;
  1303. justify-content: space-around
  1304. }
  1305. .dialog-text {
  1306. margin: 30px 0 40px;
  1307. color: #333;
  1308. font-size: 16px;
  1309. letter-spacing: 1px
  1310. }
  1311. .button-wrapper {
  1312. width: 140px
  1313. }
  1314. .el-dialog__header {
  1315. background-color: #e8f2ff;
  1316. padding: 20px 30px;
  1317. border-radius: 4px 4px 0 0
  1318. }
  1319. .el-dialog__header .el-dialog__title {
  1320. font-size: 16px;
  1321. font-weight: 700;
  1322. letter-spacing: 1px
  1323. }
  1324. .el-dialog__header .el-dialog__close {
  1325. font-size: 20px;
  1326. font-weight: 700
  1327. }
  1328. .el-dialog__body {
  1329. padding: 10px 20px 0;
  1330. max-height: 750px;
  1331. overflow: auto
  1332. }
  1333. .el-dialog__footer {
  1334. padding: 15px;
  1335. -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  1336. box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  1337. border-radius: 0 0 4px 4px;
  1338. z-index: 100;
  1339. position: relative
  1340. }
  1341. .dialog-text {
  1342. color: #333;
  1343. font-size: 14px;
  1344. margin-bottom: 60px
  1345. }
  1346. .content-wrapper {
  1347. color: #999;
  1348. font-size: 16px;
  1349. padding-bottom: 30px
  1350. }
  1351. .content-wrapper p {
  1352. text-indent: 2em;
  1353. margin: 0
  1354. }
  1355. .placeholder {
  1356. height: 30px
  1357. }
  1358. .button-wrapper {
  1359. width: 140px;
  1360. margin: 0 auto
  1361. }
  1362. .title {
  1363. letter-spacing: 1px;
  1364. font-weight: 700;
  1365. color: #333;
  1366. font-size: 16px
  1367. }
  1368. .affix {
  1369. position: fixed;
  1370. z-index: 100
  1371. }
  1372. .el-autocomplete-suggestion {
  1373. margin-top: 2px !important;
  1374. border: none !important;
  1375. border-top-left-radius: 0 !important;
  1376. border-top-right-radius: 0 !important;
  1377. -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04) !important;
  1378. box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04) !important
  1379. }
  1380. .el-autocomplete-suggestion .popper__arrow {
  1381. display: none !important
  1382. }
  1383. .el-form-item__label {
  1384. color: #999 !important;
  1385. letter-spacing: 1px
  1386. }
  1387. .block {
  1388. height: 14px;
  1389. width: 4px;
  1390. background: #4990f1;
  1391. margin-right: 6px;
  1392. border-radius: 2px
  1393. }
  1394. .split {
  1395. border-left: 1px solid #eee;
  1396. width: 1px;
  1397. height: 16px;
  1398. margin: 0 10px
  1399. }
  1400. .el-cascader-menu__wrap {
  1401. height: 200px !important
  1402. }
  1403. .lineup .el-icon-warning-outline {
  1404. font-size: 40px;
  1405. color: #333
  1406. }
  1407. .lineup .el-loading-text {
  1408. color: #333 !important;
  1409. font-size: 18px !important;
  1410. margin-top: 20px !important
  1411. }
  1412. .header-wrapper {
  1413. display: -webkit-box;
  1414. display: -ms-flexbox;
  1415. display: flex;
  1416. -webkit-box-align: center;
  1417. -ms-flex-align: center;
  1418. align-items: center
  1419. }
  1420. .header-wrapper .title {
  1421. margin-right: 30px
  1422. }
  1423. .tip-wrapper {
  1424. font-size: 12px;
  1425. color: #999;
  1426. margin-left: 140px;
  1427. margin-top: 40px
  1428. }
  1429. .tip-wrapper .iconfont {
  1430. font-size: 12px
  1431. }
  1432. .sub-title {
  1433. letter-spacing: 1px;
  1434. color: #999;
  1435. display: -webkit-box;
  1436. display: -ms-flexbox;
  1437. display: flex;
  1438. -webkit-box-align: center;
  1439. -ms-flex-align: center;
  1440. align-items: center
  1441. }
  1442. .sub-title .card-tips {
  1443. padding-left: 10px;
  1444. font-size: 12px;
  1445. color: #ff5f5f
  1446. }
  1447. .sub-title .card-tips .iconfont {
  1448. font-size: 12px
  1449. }
  1450. .content-wrapper {
  1451. /*margin-left: 140px;*/
  1452. margin-top: 0
  1453. }
  1454. /*.content-wrapper .inline, .content-wrapper {*/
  1455. /* display: -webkit-box;*/
  1456. /* display: -ms-flexbox;*/
  1457. /* display: flex*/
  1458. /*}*/
  1459. .content-wrapper .inline .v-link {
  1460. margin-left: 10px
  1461. }
  1462. .content-wrapper .fee {
  1463. color: #4490f1;
  1464. font-weight: 700
  1465. }
  1466. .content-wrapper .form-item {
  1467. width: 470px;
  1468. margin-bottom: 20px
  1469. }
  1470. .content-wrapper .tips {
  1471. margin-top: -14px;
  1472. margin-left: 130px;
  1473. font-size: 12px;
  1474. line-height: 16px;
  1475. color: #f1ba7e;
  1476. width: 600px
  1477. }
  1478. .content-wrapper .tips .iconfont {
  1479. font-size: 12px;
  1480. margin-right: 6px
  1481. }
  1482. .bottom-wrapper {
  1483. width: 740px;
  1484. display: -webkit-box;
  1485. display: -ms-flexbox;
  1486. display: flex;
  1487. -webkit-box-pack: center;
  1488. -ms-flex-pack: center;
  1489. justify-content: center
  1490. }
  1491. .bottom-wrapper .button-wrapper {
  1492. width: 140px;
  1493. margin-top: 80px
  1494. }
  1495. .ml20 {
  1496. margin-left: 20px
  1497. }
  1498. .card-img {
  1499. margin-left: 110px;
  1500. margin-bottom: 20px;
  1501. -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04);
  1502. box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04);
  1503. border-radius: 8px;
  1504. height: 80px
  1505. }
  1506. .rule-wrapper {
  1507. background-color: #fafafa;
  1508. padding: 30px
  1509. }
  1510. .rule-wrapper .rule-title {
  1511. color: #333;
  1512. font-weight: 700;
  1513. margin-bottom: 10px
  1514. }
  1515. .mt40 {
  1516. margin-top: 40px
  1517. }
  1518. .patient-wrapper {
  1519. display: -webkit-box;
  1520. display: -ms-flexbox;
  1521. display: flex;
  1522. -ms-flex-wrap: wrap;
  1523. flex-wrap: wrap;
  1524. margin-top: 30px
  1525. }
  1526. .patient-wrapper .item {
  1527. display: -webkit-box;
  1528. display: -ms-flexbox;
  1529. display: flex;
  1530. -webkit-box-align: center;
  1531. -ms-flex-align: center;
  1532. align-items: center
  1533. }
  1534. .patient-wrapper .item .iconfont {
  1535. margin-right: 10px;
  1536. color: #999;
  1537. font-size: 14px
  1538. }
  1539. .patient-wrapper .item:hover .item-title {
  1540. font-weight: 700
  1541. }
  1542. .patient-wrapper .item-wrapper {
  1543. width: 202px;
  1544. height: 90px;
  1545. display: -webkit-box;
  1546. display: -ms-flexbox;
  1547. display: flex;
  1548. -webkit-box-pack: justify;
  1549. -ms-flex-pack: justify;
  1550. justify-content: space-between;
  1551. padding: 12px 10px 0 14px;
  1552. font-size: 12px;
  1553. color: #999;
  1554. border-radius: 4px
  1555. }
  1556. .patient-wrapper .item-wrapper .item-title {
  1557. color: #333;
  1558. letter-spacing: 1px;
  1559. font-size: 14px;
  1560. margin-bottom: 10px
  1561. }
  1562. .patient-wrapper .item-wrapper.selected {
  1563. background-color: #4990f1;
  1564. color: #fff;
  1565. -webkit-box-shadow: 0 10px 20px -10px rgba(73, 144, 241, .5);
  1566. box-shadow: 0 10px 20px -10px rgba(73, 144, 241, .5)
  1567. }
  1568. .patient-wrapper .item-wrapper.selected .item-title {
  1569. color: #fff;
  1570. font-weight: 700
  1571. }
  1572. .patient-wrapper .item-wrapper .checked {
  1573. height: 22px;
  1574. width: 22px;
  1575. margin-top: 22px
  1576. }
  1577. .patient-wrapper .space {
  1578. margin-left: 32px
  1579. }
  1580. .patient-wrapper .add-patient {
  1581. height: 90px
  1582. }
  1583. .patient-wrapper .item-add-wrapper {
  1584. width: 202px;
  1585. height: 90px;
  1586. display: -webkit-box;
  1587. display: -ms-flexbox;
  1588. display: flex;
  1589. -webkit-box-pack: center;
  1590. -ms-flex-pack: center;
  1591. justify-content: center;
  1592. -webkit-box-align: center;
  1593. -ms-flex-align: center;
  1594. align-items: center;
  1595. color: #4990f1;
  1596. font-size: 16px
  1597. }
  1598. .patient-wrapper .tips-wrapper {
  1599. width: 226px;
  1600. padding: 10px 20px;
  1601. word-wrap: break-word;
  1602. word-break: break-all;
  1603. overflow: hidden;
  1604. background: #fee;
  1605. border-radius: 0 0 4px 4px;
  1606. -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04);
  1607. box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04);
  1608. color: #ff5f5f;
  1609. font-size: 12px;
  1610. margin-top: -2px
  1611. }
  1612. .patient-card {
  1613. margin-top: 30px;
  1614. padding: 0 30px
  1615. }
  1616. .patient-card .el-card__header {
  1617. padding: 16px 0
  1618. }
  1619. .patient-card .el-card__header span {
  1620. font-size: 12px;
  1621. color: #999
  1622. }
  1623. .patient-card .el-card__header span.name {
  1624. font-size: 16px;
  1625. color: #333;
  1626. margin-right: 30px
  1627. }
  1628. .patient-card .el-card__header .detail {
  1629. float: right;
  1630. color: #999
  1631. }
  1632. .patient-card .el-card__body {
  1633. padding: 20px 0
  1634. }
  1635. .patient-card .el-card__body, .patient-card .el-card__body .card {
  1636. display: -webkit-box;
  1637. display: -ms-flexbox;
  1638. display: flex;
  1639. -webkit-box-align: center;
  1640. -ms-flex-align: center;
  1641. align-items: center
  1642. }
  1643. .patient-card .el-card__body .card {
  1644. width: 50%;
  1645. height: 50px;
  1646. border-radius: 4px;
  1647. padding: 0 14px;
  1648. color: #fff;
  1649. -ms-flex-line-pack: center;
  1650. align-content: center;
  1651. margin-right: 50px;
  1652. cursor: pointer
  1653. }
  1654. .patient-card .el-card__body .card .info {
  1655. width: 100%
  1656. }
  1657. .patient-card .el-card__body .card .info span {
  1658. margin-right: 10px
  1659. }
  1660. .patient-card .el-card__body .card .info .type {
  1661. background: #fff;
  1662. font-size: 12px;
  1663. padding: 4px;
  1664. border-radius: 4px
  1665. }
  1666. .patient-card .el-card__body .card.MEDICARE_CARD {
  1667. background: #76ced5
  1668. }
  1669. .patient-card .el-card__body .card.MEDICARE_CARD .type {
  1670. color: #76ced5
  1671. }
  1672. .patient-card .el-card__body .card.SELF_PAY_CARD {
  1673. background: #89c4ed
  1674. }
  1675. .patient-card .el-card__body .card.SELF_PAY_CARD .type {
  1676. color: #89c4ed
  1677. }
  1678. .patient-card .el-card__body .card .operate {
  1679. width: 100px;
  1680. text-align: right
  1681. }
  1682. .patient-card .el-card__body .card .operate img {
  1683. width: 22px;
  1684. -webkit-transform: translateY(2px);
  1685. transform: translateY(2px)
  1686. }
  1687. .patient-card .el-card__body .card:nth-child(2n) {
  1688. margin-right: 0
  1689. }
  1690. .patient-card .el-card__body .card .text {
  1691. width: 100%;
  1692. text-align: center;
  1693. color: #333;
  1694. font-size: 14px
  1695. }
  1696. .icon-text-wrapper {
  1697. display: -webkit-box;
  1698. display: -ms-flexbox;
  1699. display: flex;
  1700. color: #333;
  1701. letter-spacing: 1px
  1702. }
  1703. .icon-text-wrapper .prefix-icon {
  1704. margin-top: 3px;
  1705. margin-right: 10px;
  1706. font-size: 14px
  1707. }
  1708. .icon-text-wrapper .right-icon {
  1709. margin-top: 3px;
  1710. margin-left: 12px;
  1711. font-size: 14px;
  1712. color: #4490f1;
  1713. cursor: pointer
  1714. }
  1715. .icon-text-wrapper .text p {
  1716. margin: 0
  1717. }
  1718. .icon-text-wrapper .text ol {
  1719. margin: 0;
  1720. padding-left: 20px
  1721. }
  1722. .el-dialog__header {
  1723. background-color: #e8f2ff;
  1724. padding: 20px 30px;
  1725. border-radius: 4px 4px 0 0
  1726. }
  1727. .el-dialog__header .el-dialog__title {
  1728. font-size: 16px;
  1729. font-weight: 700;
  1730. letter-spacing: 1px
  1731. }
  1732. .el-dialog__header .el-dialog__close {
  1733. font-size: 20px;
  1734. font-weight: 700
  1735. }
  1736. .el-dialog__body {
  1737. padding: 0
  1738. }
  1739. .el-dialog__footer {
  1740. display: -webkit-box;
  1741. display: -ms-flexbox;
  1742. display: flex;
  1743. -webkit-box-pack: center;
  1744. -ms-flex-pack: center;
  1745. justify-content: center
  1746. }
  1747. #map {
  1748. height: 440px
  1749. }
  1750. .hospital-detail .info-wrapper {
  1751. display: -webkit-box;
  1752. display: -ms-flexbox;
  1753. display: flex;
  1754. margin-top: 30px;
  1755. }
  1756. .hospital-detail .info-wrapper .space {
  1757. margin-bottom: 10px
  1758. }
  1759. .hospital-detail .info-wrapper .content-wrapper {
  1760. -webkit-box-flex: 1;
  1761. -ms-flex: 1;
  1762. flex: 1;
  1763. margin-left: 30px
  1764. }
  1765. .hospital-detail .info-wrapper .hospital-img {
  1766. height: 80px;
  1767. width: 80px;
  1768. border-radius: 40px
  1769. }
  1770. .hospital-detail .detail-content {
  1771. line-height: 22px;
  1772. letter-spacing: 1px;
  1773. font-size: 12px
  1774. }
  1775. .hospital-detail .detail-content p {
  1776. text-indent: 2em;
  1777. margin: 0
  1778. }
  1779. .hospital-detail .detail-content h4 {
  1780. color: #333;
  1781. margin-bottom: 0
  1782. }
  1783. .hospital-detail .mt40 {
  1784. margin-top: 40px
  1785. }
  1786. .hospital-notice {
  1787. min-height: 300px
  1788. }
  1789. .hospital-notice h2, .hospital-notice h4 {
  1790. color: #333
  1791. }
  1792. .hospital-notice h2 {
  1793. text-align: center;
  1794. margin-top: 0
  1795. }
  1796. .hospital-notice p {
  1797. text-indent: 2em
  1798. }
  1799. .hospital-suspend {
  1800. padding-bottom: 60px
  1801. }
  1802. .hospital-suspend .table {
  1803. margin-top: 60px
  1804. }
  1805. .hospital-suspend .pagination {
  1806. margin-top: 100px
  1807. }
  1808. .hospital-query .content {
  1809. padding-top: 80px
  1810. }
  1811. .hospital-query .content .wrapper {
  1812. width: 400px;
  1813. margin-left: 200px;
  1814. line-height: 22px;
  1815. letter-spacing: 1px;
  1816. color: #666;
  1817. font-size: 12px
  1818. }
  1819. .hospital-query .content .wrapper .slot-wrapper {
  1820. display: -webkit-box;
  1821. display: -ms-flexbox;
  1822. display: flex;
  1823. -webkit-box-align: center;
  1824. -ms-flex-align: center;
  1825. align-items: center
  1826. }
  1827. .hospital-query .el-input__inner {
  1828. padding-right: 70px !important;
  1829. padding-left: 30px !important
  1830. }
  1831. .hospital-query .table {
  1832. margin-top: 40px
  1833. }
  1834. .hospital-query .el-dialog__body {
  1835. text-align: center;
  1836. padding: 0
  1837. }
  1838. .hospital-query .icon {
  1839. font-size: 54px;
  1840. color: #4490f1
  1841. }
  1842. .hospital-query .dialog-footer {
  1843. display: -webkit-box;
  1844. display: -ms-flexbox;
  1845. display: flex;
  1846. -ms-flex-pack: distribute;
  1847. justify-content: space-around
  1848. }
  1849. .hospital-query .dialog-text {
  1850. margin: 30px 0 58px;
  1851. color: #333;
  1852. font-size: 16px;
  1853. letter-spacing: 1px
  1854. }
  1855. .hospital-query .button-wrapper {
  1856. width: 140px
  1857. }