main.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  1. .wrapper {
  2. display: -webkit-box;
  3. display: -ms-flexbox;
  4. display: flex;
  5. -webkit-box-orient: vertical;
  6. -webkit-box-direction: normal;
  7. -ms-flex-direction: column;
  8. flex-direction: column;
  9. -webkit-box-align: center;
  10. -ms-flex-align: center;
  11. align-items: center;
  12. -webkit-box-pack: center;
  13. -ms-flex-pack: center;
  14. justify-content: center;
  15. width: 100%;
  16. height: 100%
  17. }
  18. .wrapper .icon {
  19. font-size: 40px;
  20. color: #4490f1
  21. }
  22. .wrapper .tips {
  23. margin-top: 20px;
  24. font-size: 14px
  25. }
  26. .mobile-wrapper {
  27. position: fixed;
  28. top: 0;
  29. left: 0;
  30. bottom: 0;
  31. right: 0
  32. }
  33. .mobile-wrapper .mobile-img {
  34. width: 100%
  35. }
  36. .mobile-wrapper .goto {
  37. font-size: 46px;
  38. color: #999;
  39. -webkit-box-pack: center;
  40. -ms-flex-pack: center;
  41. justify-content: center;
  42. text-decoration: underline;
  43. margin-top: 30px
  44. }
  45. .filter-wrapper, .mobile-wrapper .goto {
  46. display: -webkit-box;
  47. display: -ms-flexbox;
  48. display: flex
  49. }
  50. .filter-wrapper:nth-child(2) {
  51. margin-top: 20px
  52. }
  53. .filter-wrapper .label {
  54. color: #999
  55. }
  56. .filter-wrapper .condition-wrapper {
  57. display: -webkit-box;
  58. display: -ms-flexbox;
  59. display: flex;
  60. -webkit-box-flex: 1;
  61. -ms-flex: 1;
  62. flex: 1;
  63. -ms-flex-wrap: wrap;
  64. flex-wrap: wrap;
  65. margin-left: -16px;
  66. margin-bottom: -10px
  67. }
  68. .filter-wrapper .condition-wrapper .item {
  69. margin-left: 26px;
  70. margin-bottom: 10px
  71. }
  72. .filter-wrapper .condition-wrapper .item.selected {
  73. font-weight: 700
  74. }
  75. img {
  76. width: 100%
  77. }
  78. .el-carousel__button {
  79. border-radius: 5px;
  80. width: 10px;
  81. height: 6px;
  82. opacity: .4
  83. }
  84. .el-carousel__container {
  85. height: 350px
  86. }
  87. .el-carousel__indicator.is-active button {
  88. height: 6px;
  89. width: 20px
  90. }
  91. .no-data-wrapper {
  92. margin: 0 auto;
  93. padding-top: 100px;
  94. display: -webkit-box;
  95. display: -ms-flexbox;
  96. display: flex;
  97. -webkit-box-orient: vertical;
  98. -webkit-box-direction: normal;
  99. -ms-flex-direction: column;
  100. flex-direction: column;
  101. -webkit-box-align: center;
  102. -ms-flex-align: center;
  103. align-items: center
  104. }
  105. .no-data-wrapper .no-text {
  106. color: #ccc;
  107. margin-top: 20px
  108. }
  109. .no-data-wrapper .no-data-img {
  110. width: 130px;
  111. height: 130px
  112. }
  113. .v-scroll-list .loading-wrapper {
  114. margin-top: 10px;
  115. height: 100px;
  116. width: 100%
  117. }
  118. .icon-wrapper {
  119. display: -webkit-box;
  120. display: -ms-flexbox;
  121. display: flex;
  122. -webkit-box-align: center;
  123. -ms-flex-align: center;
  124. align-items: center;
  125. color: #999;
  126. font-size: 14px
  127. }
  128. .icon-wrapper .iconfont {
  129. margin-right: 3px
  130. }
  131. .hospital-list-item {
  132. height: 98px;
  133. display: -webkit-box;
  134. display: -ms-flexbox;
  135. display: flex;
  136. -webkit-box-align: center;
  137. -ms-flex-align: center;
  138. align-items: center;
  139. -webkit-box-pack: justify;
  140. -ms-flex-pack: justify;
  141. justify-content: space-between
  142. }
  143. .hospital-list-item:hover .wrapper .hospital-title {
  144. color: #000;
  145. font-weight: 800
  146. }
  147. .hospital-list-item:hover .hospital-img {
  148. -webkit-transform: scale(1.03);
  149. transform: scale(1.03)
  150. }
  151. .hospital-list-item .dept-name {
  152. margin-left: 6px;
  153. font-weight: 400;
  154. font-size: 14px
  155. }
  156. .hospital-list-item .wrapper {
  157. height: 76px;
  158. color: #333;
  159. display: -webkit-box;
  160. display: -ms-flexbox;
  161. display: flex;
  162. -webkit-box-orient: vertical;
  163. -webkit-box-direction: normal;
  164. -ms-flex-direction: column;
  165. flex-direction: column;
  166. -webkit-box-pack: justify;
  167. -ms-flex-pack: justify;
  168. justify-content: space-between;
  169. -webkit-box-flex: 1;
  170. -ms-flex: 1;
  171. flex: 1;
  172. align-items: normal;
  173. }
  174. .hospital-list-item .wrapper .hospital-title {
  175. display: -webkit-box;
  176. display: -ms-flexbox;
  177. display: flex;
  178. height: 42px;
  179. font-weight: 500;
  180. font-size: 16px;
  181. -webkit-box-align: center;
  182. -ms-flex-align: center;
  183. align-items: center;
  184. -webkit-transition: all .2s ease;
  185. transition: all .2s ease;
  186. width: 100%;
  187. }
  188. .hospital-list-item .wrapper .bottom-container {
  189. width: 250px;
  190. color: #999;
  191. display: -webkit-box;
  192. display: -ms-flexbox;
  193. display: flex;
  194. -webkit-box-pack: justify;
  195. -ms-flex-pack: justify;
  196. justify-content: space-between
  197. }
  198. .hospital-list-item .wrapper .bottom-container .label-wrapper {
  199. display: -webkit-box;
  200. display: -ms-flexbox;
  201. display: flex;
  202. -webkit-box-align: center;
  203. -ms-flex-align: center;
  204. align-items: center
  205. }
  206. .hospital-list-item .wrapper .bottom-container .label-wrapper .iconfont {
  207. margin-right: 3px
  208. }
  209. .hospital-list-item .hospital-img {
  210. width: 80px;
  211. height: 80px;
  212. border-radius: 40px;
  213. margin-left: 12px;
  214. -webkit-transition: all .2s linear;
  215. transition: all .2s linear
  216. }
  217. .list-item {
  218. width: 440px;
  219. height: 98px;
  220. margin-top: 30px;
  221. display: inline-block;
  222. vertical-align: top
  223. }
  224. .hos-item {
  225. padding: 0 10px 0 20px
  226. }
  227. .space {
  228. margin-left: 26px
  229. }
  230. .hospital-list {
  231. padding-left: 10px;
  232. padding-right: 80px
  233. }
  234. .common-dept .header-wrapper {
  235. display: -webkit-box;
  236. display: -ms-flexbox;
  237. display: flex;
  238. -webkit-box-pack: justify;
  239. -ms-flex-pack: justify;
  240. justify-content: space-between
  241. }
  242. .common-dept .header-wrapper .all-wrapper {
  243. color: #999;
  244. display: -webkit-box;
  245. display: -ms-flexbox;
  246. display: flex;
  247. font-size: 14px;
  248. -webkit-box-align: center;
  249. -ms-flex-align: center;
  250. align-items: center;
  251. cursor: pointer
  252. }
  253. .common-dept .header-wrapper .all-wrapper .iconfont {
  254. font-size: 14px
  255. }
  256. .common-dept .content-wrapper {
  257. margin-top: 20px;
  258. display: -webkit-box;
  259. display: -ms-flexbox;
  260. display: flex;
  261. -ms-flex-wrap: wrap;
  262. flex-wrap: wrap;
  263. line-height: 31px;
  264. margin-left: -15px
  265. }
  266. .common-dept .content-wrapper .item {
  267. margin-left: 30px;
  268. width: 70px;
  269. text-align: center
  270. }
  271. .common-dept .icon {
  272. font-size: 14px
  273. }
  274. .header-wrapper {
  275. display: -webkit-box;
  276. display: -ms-flexbox;
  277. display: flex;
  278. -webkit-box-pack: justify;
  279. -ms-flex-pack: justify;
  280. justify-content: space-between
  281. }
  282. .header-wrapper .title-wrapper .icon-wrapper, .header-wrapper .title-wrapper {
  283. display: -webkit-box;
  284. display: -ms-flexbox;
  285. display: flex;
  286. -webkit-box-pack: center;
  287. -ms-flex-pack: center;
  288. justify-content: center;
  289. -webkit-box-align: center;
  290. -ms-flex-align: center;
  291. align-items: center
  292. }
  293. .header-wrapper .title-wrapper .icon-wrapper {
  294. height: 40px;
  295. width: 40px;
  296. border-radius: 20px;
  297. background: #f2f8ff;
  298. color: #7eabff;
  299. margin-right: 10px
  300. }
  301. .header-wrapper .title-wrapper .icon-wrapper .iconfont {
  302. font-size: 20px
  303. }
  304. .header-wrapper .all-wrapper {
  305. color: #999;
  306. display: -webkit-box;
  307. display: -ms-flexbox;
  308. display: flex;
  309. -webkit-box-align: center;
  310. -ms-flex-align: center;
  311. align-items: center;
  312. cursor: pointer
  313. }
  314. .content-wrapper {
  315. margin-top: 17px
  316. }
  317. .content-wrapper .point {
  318. height: 4px;
  319. width: 4px;
  320. border-radius: 2px;
  321. background: #7eabff
  322. }
  323. .content-wrapper .notice-wrapper {
  324. display: -webkit-box;
  325. display: -ms-flexbox;
  326. display: flex;
  327. -webkit-box-align: center;
  328. -ms-flex-align: center;
  329. align-items: center;
  330. margin-top: 14px
  331. }
  332. .content-wrapper .notice-wrapper .notice {
  333. display: block;
  334. margin-left: 7px;
  335. overflow: hidden;
  336. text-overflow: ellipsis;
  337. white-space: nowrap;
  338. -webkit-line-clamp: 1;
  339. -webkit-box-orient: vertical;
  340. word-break: break-all;
  341. width: 100%
  342. }
  343. .icon {
  344. font-size: 14px
  345. }
  346. .title-icon {
  347. font-size: 22px
  348. }
  349. .suspend-notice-list {
  350. background: #fff
  351. }
  352. .suspend-notice-list .header-wrapper {
  353. display: -webkit-box;
  354. display: -ms-flexbox;
  355. display: flex;
  356. -webkit-box-pack: justify;
  357. -ms-flex-pack: justify;
  358. justify-content: space-between
  359. }
  360. .suspend-notice-list .header-wrapper .title-wrapper .icon-wrapper, .suspend-notice-list .header-wrapper .title-wrapper {
  361. display: -webkit-box;
  362. display: -ms-flexbox;
  363. display: flex;
  364. -webkit-box-pack: center;
  365. -ms-flex-pack: center;
  366. justify-content: center;
  367. -webkit-box-align: center;
  368. -ms-flex-align: center;
  369. align-items: center
  370. }
  371. .suspend-notice-list .header-wrapper .title-wrapper .icon-wrapper {
  372. height: 40px;
  373. width: 40px;
  374. border-radius: 20px;
  375. background: #fffaf1;
  376. color: #ffaa51;
  377. margin-right: 10px
  378. }
  379. .suspend-notice-list .header-wrapper .all-wrapper {
  380. color: #999;
  381. display: -webkit-box;
  382. display: -ms-flexbox;
  383. display: flex;
  384. -webkit-box-align: center;
  385. -ms-flex-align: center;
  386. align-items: center;
  387. cursor: pointer
  388. }
  389. .suspend-notice-list .header-wrapper .all-wrapper .all-icon {
  390. font-size: 14px
  391. }
  392. .suspend-notice-list .content-wrapper {
  393. margin-top: 17px
  394. }
  395. .suspend-notice-list .content-wrapper .point {
  396. height: 4px;
  397. width: 4px;
  398. border-radius: 2px;
  399. background: #ffaa51
  400. }
  401. .suspend-notice-list .content-wrapper .notice-wrapper {
  402. display: -webkit-box;
  403. display: -ms-flexbox;
  404. display: flex;
  405. -webkit-box-align: center;
  406. -ms-flex-align: center;
  407. align-items: center;
  408. margin-top: 14px
  409. }
  410. .suspend-notice-list .content-wrapper .notice-wrapper .notice {
  411. display: block;
  412. margin-left: 7px;
  413. overflow: hidden;
  414. text-overflow: ellipsis;
  415. white-space: nowrap;
  416. -webkit-line-clamp: 1;
  417. -webkit-box-orient: vertical;
  418. word-break: break-all;
  419. width: 100%
  420. }
  421. .suspend-notice-list .icon {
  422. font-size: 14px
  423. }
  424. .suspend-notice-list .title-icon {
  425. font-size: 22px
  426. }
  427. .home {
  428. background: #fff;
  429. display: -webkit-box;
  430. display: -ms-flexbox;
  431. display: flex;
  432. -webkit-box-orient: vertical;
  433. -webkit-box-direction: normal;
  434. -ms-flex-direction: column;
  435. flex-direction: column
  436. }
  437. .home .search-container {
  438. margin-top: 25px;
  439. display: -webkit-box;
  440. display: -ms-flexbox;
  441. display: flex;
  442. -webkit-box-pack: center;
  443. -ms-flex-pack: center;
  444. justify-content: center
  445. }
  446. .home .search-container .search-wrapper {
  447. width: 800px
  448. }
  449. .home .home-filter-wrapper {
  450. background: #fff;
  451. padding: 20px 80px 10px 0;
  452. z-index: 300
  453. }
  454. .home .home-filter-wrapper .title {
  455. margin-bottom: 30px
  456. }
  457. .home .bottom {
  458. margin-top: 70px
  459. }
  460. .home .bottom .left {
  461. float: left;
  462. width: calc(100% - 200px);
  463. margin-top: -20px
  464. }
  465. .home .bottom .right {
  466. width: 200px;
  467. float: right;
  468. position: -webkit-sticky;
  469. position: sticky;
  470. top: 20px
  471. }
  472. .home .bottom .right .space {
  473. margin-top: 40px
  474. }