jy-style.css 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418
  1. @charset "utf-8";
  2. body {
  3. font-size: 14px;
  4. color: #333;
  5. max-width: 640px;
  6. margin: 0 auto;
  7. background-color: #f2f4f6;
  8. }
  9. input,
  10. textarea {
  11. -webkit-appearance: none;
  12. }
  13. .w55 {
  14. width: 55px;
  15. }
  16. .w45 {
  17. width: 45px;
  18. }
  19. .ptb65 {
  20. padding-top: 65px;
  21. padding-bottom: 65px;
  22. }
  23. .c-corner {
  24. width: 18px;
  25. height: 18px;
  26. line-height: 18px;
  27. border-radius: 50%;
  28. background-color: #ff3824;
  29. color: #fff;
  30. border: 1px solid #fff;
  31. margin-left: -8px;
  32. }
  33. .c-corner-min {
  34. width: 14px;
  35. height: 14px;
  36. line-height: 14px;
  37. font-size: 12px;
  38. margin-top: 8px;
  39. }
  40. .c-1cb4ec {
  41. color: #1cb4ec;
  42. }
  43. .c-f11 {
  44. font-size: 11px;
  45. }
  46. .header-contain {
  47. width: 68px;
  48. height: 59px;
  49. margin: 0 auto;
  50. }
  51. .header-contain .pic {
  52. width: 53px;
  53. height: 53px;
  54. border-radius: 50%;
  55. overflow: hidden;
  56. margin: 0 auto;
  57. }
  58. .header-contain img {
  59. width: 53px;
  60. height: 53px;
  61. }
  62. .p-clcardna {
  63. width: 68px;
  64. height: 22px;
  65. background: url(../images/demo-linehead.png) no-repeat left top;
  66. position: absolute;
  67. left: 0;
  68. bottom: 0;
  69. background-size: cover;
  70. line-height: 30px;
  71. font-size: 11px;
  72. }
  73. .c-blocks-2.c-loper li {
  74. box-sizing: border-box;
  75. }
  76. .c-loper span.color-iconfont {
  77. width: 26px;
  78. display: inline-block;
  79. }
  80. .c-loper .color-iconfont img {
  81. width: 100%;
  82. }
  83. .lh30 {
  84. line-height: 30px;
  85. }
  86. .cl-poewm {
  87. position: absolute;
  88. right: 15px;
  89. top: 10px;
  90. width: 25px;
  91. height: 25px;
  92. }
  93. .cl-poewm i.icon-erweima {
  94. font-size: 25px;
  95. color: #909090;
  96. }
  97. .cl-poewm i.icon-qiehuan {
  98. color: #4dcd70;
  99. }
  100. .bg-7ecef4 {
  101. background-color: #7ecef4;
  102. }
  103. .lh22 {
  104. line-height: 22px;
  105. }
  106. .bgc-cyanblue {
  107. background: #5ec5b4;
  108. }
  109. .bgc-orangered {
  110. background: #ff8549;
  111. }
  112. .bgc-dblue {
  113. background: #0171ee;
  114. }
  115. .bgc-orange {
  116. background-color: #ff9600;
  117. }
  118. .bgc-blue {
  119. background-color: #37a6ed;
  120. }
  121. .bgc-green {
  122. background-color: #2ccd5d;
  123. }
  124. .doc-avatar {
  125. width: 50px;
  126. height: 50px;
  127. border-radius: 50%;
  128. overflow: hidden;
  129. }
  130. .doc-avatar img {
  131. width: 100%;
  132. height: 100%;
  133. }
  134. /* 健康咨询 */
  135. .pro-list-group .time {
  136. right: 30px;
  137. top: 12px;
  138. color: #909090;
  139. font-size: 12px;
  140. }
  141. /*选择社区*/
  142. .shcom-list .c-avatar-m {
  143. border-radius: 5px;
  144. overflow: hidden;
  145. width: 50px;
  146. height: 50px;
  147. }
  148. .sh-list .c-list-action {
  149. right: 15px;
  150. }
  151. .sh-list .c-avatar-m {
  152. border-radius: 50%;
  153. overflow: hidden;
  154. width: 40px;
  155. height: 40px;
  156. }
  157. .c-btn-48c3f0 {
  158. background: #48c3f0;
  159. }
  160. /*二维码*/
  161. .scan-code-img {
  162. position: relative;
  163. z-index: 10;
  164. width: 160px;
  165. height: 160px;
  166. padding: 10px;
  167. border: 2px solid #f1f1f1;
  168. margin: 20px auto 10px auto;
  169. }
  170. .scan-code-img img {
  171. display: block;
  172. position: absolute;
  173. z-index: 12;
  174. width: 160px;
  175. height: 160px;
  176. top: 10px;
  177. left: 10px;
  178. }
  179. .scan-code-img:before {
  180. position: absolute;
  181. top: -10px;
  182. left: 25px;
  183. z-index: 11;
  184. content: "";
  185. width: 130px;
  186. height: 200px;
  187. background: #fff;
  188. }
  189. .scan-code-img:after {
  190. position: absolute;
  191. top: 25px;
  192. left: -10px;
  193. z-index: 11;
  194. content: "";
  195. width: 200px;
  196. height: 130px;
  197. background: #fff;
  198. }
  199. .cl-ewmer {
  200. border-radius: 5px;
  201. border: 1px solid #e1e1e1;
  202. }
  203. /** 基本信息 **/
  204. .ring-blue,
  205. .ring-a,
  206. .ring-b,
  207. .ring-c {
  208. display: inline-block;
  209. width: 36px;
  210. height: 36px;
  211. line-height: 36px;
  212. text-align: center;
  213. border-radius: 50%;
  214. border: 1px solid #17b3ec;
  215. font-size: 10px;
  216. color: #17b3ec;
  217. -webkit-box-sizing: border-box;
  218. box-sizing: border-box;
  219. }
  220. .ring-a {
  221. color: #333;
  222. border: 0;
  223. background: url(../images/ring-a.png) no-repeat 0 0;
  224. background-size: 100% 100%;
  225. }
  226. .ring-b {
  227. color: #333;
  228. border: 0;
  229. background: url(../images/ring-b.png) no-repeat 0 0;
  230. background-size: 100% 100%;
  231. }
  232. .ring-c {
  233. color: #333;
  234. border: 0;
  235. background: url(../images/ring-c.png) no-repeat 0 0;
  236. background-size: 100% 100%;
  237. }
  238. /** 我的居民 **/
  239. .header-link a.link .iconfont {
  240. font-size: 20px;
  241. }
  242. .pb60 {
  243. padding-bottom: 60px;
  244. }
  245. .ring-big-a,
  246. .ring-big-b,
  247. .ring-big-c {
  248. position: relative;
  249. display: inline-block;
  250. width: 88px;
  251. height: 88px;
  252. text-align: center;
  253. border-radius: 50%;
  254. font-size: 10px;
  255. color: #17b3ec;
  256. -webkit-box-sizing: border-box;
  257. box-sizing: border-box;
  258. background: url(../images/ring-a.png) no-repeat 0 0;
  259. background-size: 100% 100%;
  260. color: #4fcd6f;
  261. }
  262. .ring-big-b {
  263. background-image: url(../images/ring-b.png);
  264. color: #fbac01;
  265. }
  266. .ring-big-c {
  267. background-image: url(../images/ring-c.png);
  268. color: #f57364;
  269. }
  270. .ring-txt {
  271. position: absolute;
  272. width: 60%;
  273. text-align: center;
  274. left: 20%;
  275. top: 50%;
  276. -webkit-transform: translateY(-50%);
  277. transform: translateY(-50%);
  278. font-size: 10px;
  279. }
  280. .ring-txt b {
  281. font-size: 17px;
  282. }
  283. .ring-big-a .ring-txt p:first-child {
  284. border-bottom: 1px solid #4fcd6f;
  285. }
  286. .ring-big-b .ring-txt p:first-child {
  287. border-bottom: 1px solid #fbac01;
  288. }
  289. .ring-big-c .ring-txt p:first-child {
  290. border-bottom: 1px solid #f57364;
  291. }
  292. .ring-txt p:last-child {
  293. margin-top: 5px;
  294. }
  295. .select-group div.ui-col-1 {
  296. width: 0;
  297. }
  298. .select-filter {
  299. background-color: #fff;
  300. background-image: none;
  301. border: 1px solid #e1e1e1;
  302. border-radius: 5px;
  303. color: #333;
  304. font-size: 14px;
  305. height: 45px;
  306. line-height: 45px;
  307. padding: 0 12px;
  308. }
  309. .select-filter-box {
  310. position: absolute;
  311. z-index: 100;
  312. background: #fff;
  313. top: 44px;
  314. right: 0;
  315. border: 1px solid #e1e1e1;
  316. border-radius: 5px;
  317. color: #333;
  318. min-width: 100%;
  319. font-size: 14px;
  320. }
  321. .select-filter-option li {
  322. padding: 10px;
  323. border-bottom: 1px solid #f1f1f1;
  324. }
  325. .select-filter-box .input-group-checkbox label {
  326. white-space: nowrap;
  327. }
  328. /* 居民沟通 */
  329. .talk-left,
  330. .talk-right {
  331. position: relative;
  332. min-height: 40px;
  333. padding: 10px 68px;
  334. }
  335. .talk-left .leftpart,
  336. .talk-right .leftpart {
  337. position: absolute;
  338. width: 40px;
  339. height: 40px;
  340. left: 15px;
  341. top: 26px;
  342. text-align: center;
  343. border-radius: 50%;
  344. overflow: hidden;
  345. }
  346. .talk-left .leftpart img,
  347. .talk-right .leftpart img {
  348. width: auto;
  349. height: 100%;
  350. }
  351. .talk-left .rightpart,
  352. .talk-right .rightpart {
  353. background-color: #fff;
  354. border: 1px solid #e1e1e1;
  355. border-radius: 4px;
  356. padding: 10px;
  357. line-height: 20px;
  358. position: relative;
  359. word-break: break-all;
  360. min-width: 30px;
  361. float: left;
  362. }
  363. .talk-right .leftpart {
  364. left: auto;
  365. right: 15px;
  366. }
  367. .talk-right .rightpart {
  368. background-color: #bce0ff;
  369. border: 1px solid #95c8f9;
  370. float: right;
  371. }
  372. .talk-time {
  373. width: 190px;
  374. line-height: 26px;
  375. margin-left: auto;
  376. margin-right: auto;
  377. font-size: 12px;
  378. color: #ccc;
  379. text-align: center;
  380. position: relative;
  381. }
  382. .talk-time:before {
  383. content: '';
  384. display: block;
  385. width: 50px;
  386. height: 13px;
  387. border-bottom: 1px solid #e6e4e1;
  388. position: absolute;
  389. left: 0;
  390. top: 0;
  391. }
  392. .talk-time:after {
  393. content: '';
  394. display: block;
  395. width: 50px;
  396. height: 13px;
  397. border-bottom: 1px solid #e6e4e1;
  398. position: absolute;
  399. right: 0;
  400. top: 0;
  401. }
  402. .talk-refresh,
  403. .talk-home {
  404. position: absolute;
  405. right: 10px;
  406. bottom: 65px;
  407. z-index: 700;
  408. background: rgba(0, 0, 0, .4);
  409. border-radius: 50%;
  410. width: 26px;
  411. height: 26px;
  412. padding: 5px;
  413. line-height: 26px;
  414. }
  415. .talk-refresh i,
  416. .talk-home i {
  417. font-size: 26px;
  418. color: #fff;
  419. }
  420. .talk-refresh.light {
  421. background: #a9cc84;
  422. }
  423. .talk-home {
  424. bottom: 110px;
  425. }
  426. .talk-right .rightpart:after,
  427. .talk-left .rightpart:after {
  428. position: absolute;
  429. content: "";
  430. width: 8px;
  431. height: 8px;
  432. background: #f00;
  433. top: 8px;
  434. right: -5px;
  435. -webkit-transform: rotate(45deg);
  436. -moz-transform: rotate(45deg);
  437. transform: rotate(45deg);
  438. background: #bce0ff;
  439. border: 1px solid #95c8f9;
  440. border-width: 1px 1px 0 0;
  441. }
  442. .talk-left .rightpart:after {
  443. right: auto;
  444. left: -5px;
  445. background: #fff;
  446. border: 1px solid #e1e1e1;
  447. border-width: 0 0 1px 1px;
  448. }
  449. .rightpart.highlight,
  450. .rightpart.highlight:after {
  451. background: #fff;
  452. border-color: #3a9bef;
  453. }
  454. .talk-tips {
  455. padding: 10px 10px 0 10px;
  456. }
  457. .talk-tips p {
  458. font-size: 12px;
  459. color: #909090;
  460. background: #fffff3;
  461. padding: 5px 10px;
  462. border: 1px dashed #e7e7cd;
  463. }
  464. .talk-view {
  465. text-align: right;
  466. border-top: 1px dotted #eaeaea;
  467. margin-top: 10px;
  468. color: #0066ff;
  469. font-size: 13px;
  470. }
  471. .talk-right .talk-view {
  472. border-top: 1px dotted #0066ff;
  473. }
  474. .talk-viewb {
  475. text-align: right;
  476. font-size: 13px;
  477. }
  478. .talk-view a,
  479. .talk-view a:link,
  480. .talk-viewb a,
  481. .talk-viewb a:link {
  482. color: #0066ff;
  483. display: block;
  484. padding-top: 5px;
  485. }
  486. .talk-view .iconfont {
  487. font-size: 14px;
  488. }
  489. .talk-ms {
  490. font-size: 12px;
  491. color: #909090;
  492. line-height: 12px;
  493. padding-bottom: 5px;
  494. clear: both;
  495. }
  496. .talk-right .talk-ms {
  497. text-align: right;
  498. }
  499. .talk-img img {
  500. max-width: 100px;
  501. height: auto;
  502. }
  503. .talk-zt {
  504. position: absolute;
  505. top: -1px;
  506. left: -1px;
  507. width: 80px;
  508. height: 100%;
  509. overflow: hidden;
  510. border-radius: 4px 0 0 0;
  511. }
  512. .talk-zt i {
  513. display: block;
  514. width: 80px;
  515. font-size: 10px;
  516. height: 14px;
  517. line-height: 14px;
  518. padding-top: 30px;
  519. vertical-align: middle;
  520. text-align: center;
  521. color: #fff;
  522. position: absolute;
  523. -webkit-transform: rotate(-45deg);
  524. -moz-transform: rotate(-45deg);
  525. transform: rotate(-45deg);
  526. top: -16px;
  527. left: -34px;
  528. overflow: hidden;
  529. background: #ff8100;
  530. }
  531. .talk-left .talk-zt {
  532. left: auto;
  533. right: -1px;
  534. border-radius: 0 4px 0 0;
  535. }
  536. .talk-left .talk-zt i {
  537. display: block;
  538. width: 80px;
  539. font-size: 10px;
  540. height: 14px;
  541. line-height: 14px;
  542. padding-top: 30px;
  543. vertical-align: middle;
  544. text-align: center;
  545. color: #fff;
  546. position: absolute;
  547. -webkit-transform: rotate(45deg);
  548. -moz-transform: rotate(45deg);
  549. transform: rotate(45deg);
  550. top: -16px;
  551. left: auto;
  552. right: -34px;
  553. overflow: hidden;
  554. background: #ff8100;
  555. }
  556. .talk-wq dt {
  557. padding-bottom: 10px;
  558. border-bottom: 1px solid rgba(0, 0, 0, .1)
  559. }
  560. .talk-wq dd {
  561. padding-top: 10px;
  562. position: relative;
  563. }
  564. .talk-wq dd a {
  565. display: block;
  566. }
  567. .talk-wq dd i {
  568. position: absolute;
  569. top: 10px;
  570. left: 0;
  571. width: 36px;
  572. height: 36px;
  573. background: url(../images/ico-wq.png) no-repeat;
  574. background-size: 100% 100%;
  575. border-radius: 50%;
  576. }
  577. .talk-wq dd p {
  578. padding-left: 46px;
  579. color: #666;
  580. min-height: 36px;
  581. }
  582. .talk-right .talk-wq dd p {
  583. color: #333;
  584. }
  585. /* 病情交流输入框 */
  586. .chat-bar {
  587. width: 100%;
  588. height: 104px;
  589. background: #fafafa;
  590. padding: 10px 10px 0 10px;
  591. position: relative;
  592. z-index: 1000;
  593. }
  594. .omask {
  595. position: fixed;
  596. background: transparent;
  597. top: 0;
  598. left: 0;
  599. width: 100%;
  600. height: 100%;
  601. z-index: 600;
  602. }
  603. .chat-bar .chat-input {
  604. position: static;
  605. top: 0;
  606. border: 1px solid #e1e1e1;
  607. color: #bfbfbf;
  608. font-size: 15px;
  609. height: 34px;
  610. line-height: 34px;
  611. border-radius: 4px;
  612. background: #fff;
  613. padding: 0 10px;
  614. -webkit-box-sizing: border-box;
  615. box-sizing: border-box;
  616. }
  617. .chat-more-opt {
  618. position: absolute;
  619. display: block;
  620. width: 52px;
  621. text-align: center;
  622. top: 0;
  623. right: 0;
  624. padding: 11px 0 0 0;
  625. }
  626. .chat-more-opt .iconfont {
  627. font-size: 32px;
  628. line-height: 1em;
  629. color: #bbb;
  630. }
  631. .talk-send {
  632. box-flex: 0;
  633. -webkit-box-flex: 0;
  634. -moz-box-flex: 0;
  635. width: 60px;
  636. text-align: right;
  637. }
  638. .talk-send a {
  639. display: inline-block;
  640. width: 50px;
  641. height: 30px;
  642. text-align: center;
  643. line-height: 30px;
  644. background-color: #5fa413;
  645. font-size: 15px;
  646. color: #fff;
  647. border-radius: 4px;
  648. }
  649. .chat-input.disabled {
  650. background: #e1e1e1;
  651. pointer-events: none;
  652. }
  653. .chat-wrap {
  654. position: fixed;
  655. width: 100%;
  656. height: 100%;
  657. top: 45px;
  658. left: 0;
  659. background: #f2f4f6;
  660. z-index: 2000;
  661. -webkit-transform: translateY(100%);
  662. transform: translateY(100%);
  663. -webkit-transition: all ease .3s;
  664. transition: all ease .3s;
  665. }
  666. .chat-show {
  667. -webkit-transform: translateY(0);
  668. transform: translateY(0);
  669. }
  670. .chat-textarea {
  671. background: #fff;
  672. }
  673. .chat-textarea textarea {
  674. width: 100%;
  675. height: 200px;
  676. font-size: 15px;
  677. resize: none;
  678. -webkit-box-sizing: border-box;
  679. box-sizing: border-box;
  680. padding: 10px;
  681. border: 0;
  682. -webkit-user-modify: read-write-plaintext-only;
  683. }
  684. @media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
  685. .chat-textarea textarea {
  686. height: 100px;
  687. }
  688. }
  689. @media only screen and (min-device-width : 320px) and (max-device-width : 568px) {
  690. .chat-textarea textarea {
  691. height: 120px;
  692. }
  693. }
  694. @media screen and (min-width:360px) {
  695. .chat-textarea textarea {
  696. height: 200px;
  697. }
  698. }
  699. @media screen and (min-width:400px) {
  700. .chat-textarea textarea {
  701. height: 240px;
  702. }
  703. }
  704. .chat-btn-group {
  705. display: -webkit-box;
  706. display: box;
  707. box-pack: center;
  708. border-top: 1px solid #e1e1e1;
  709. background: #fff;
  710. border-width: 1px 0 1px 0;
  711. border-style: solid;
  712. border-color: #f1f1f1;
  713. }
  714. .chat-btn-group>li {
  715. display: -webkit-box;
  716. display: box;
  717. -webkit-box-orient: vertical;
  718. box-orient: vertical;
  719. -webkit-box-pack: center;
  720. box-pack: center;
  721. -webkit-box-flex: 1;
  722. -moz-box-flex: 1;
  723. box-flex: 1;
  724. padding: 10px 0;
  725. text-align: center;
  726. border-right: 1px solid #f1f1f1;
  727. }
  728. .chat-btn-group>li:last-child {
  729. border-right: none;
  730. }
  731. .chat-btn-group>li.chat-btn-send {
  732. color: #17b3ec;
  733. }
  734. .chat-btn-group>li.disabled {
  735. color: #ccc;
  736. pointer-events: none;
  737. }
  738. .hd-opt-list {
  739. display: -webkit-box;
  740. display: box;
  741. box-pack: center;
  742. height: 60px;
  743. overflow: hidden;
  744. }
  745. .hd-opt-list li {
  746. display: -webkit-box;
  747. display: -moz-box;
  748. display: box;
  749. -webkit-box-orient: vertical;
  750. -moz-box-orient: vertical;
  751. box-orient: vertical;
  752. -webkit-box-pack: center;
  753. -moz-box-pack: center;
  754. box-pack: center;
  755. -webkit-box-flex: 1;
  756. -moz-box-flex: 1;
  757. box-flex: 1;
  758. }
  759. .hd-opt-list li a {
  760. display: block;
  761. text-align: center;
  762. }
  763. .hd-opt-list li a .iconfont {
  764. display: inline-block;
  765. width: 36px;
  766. height: 36px;
  767. line-height: 34px;
  768. color: #fff;
  769. font-size: 22px;
  770. border-radius: 50%;
  771. }
  772. .hd-opt-list li a p {
  773. color: #666;
  774. font-size: 12px;
  775. padding-top: 5px;
  776. }
  777. .hd-opt-list li a.disabled {
  778. pointer-events: none;
  779. }
  780. .hd-opt-list li a.disabled .iconfont {
  781. background: #e1e1e1;
  782. }
  783. .chat-bar-open .hd-opt-list {
  784. overflow: auto;
  785. height: auto;
  786. }
  787. .chart-over {
  788. height: 30px;
  789. text-align: center;
  790. }
  791. .chart-over a {
  792. display: block;
  793. height: 30px;
  794. line-height: 30px;
  795. color: #17b3ec;
  796. }
  797. .hd-dr-item {
  798. position: relative;
  799. }
  800. .updown-arrow {
  801. height: 28px;
  802. padding: 0 15px;
  803. }
  804. .updown-arrow a {
  805. display: block;
  806. height: 28px;
  807. position: relative;
  808. border-top: 1px dotted #f1f1f1;
  809. }
  810. .updown-arrow a.down:after {
  811. display: block;
  812. content: "";
  813. position: absolute;
  814. top: 50%;
  815. left: 50%;
  816. margin: -8px 0 0 -6px;
  817. width: 8px;
  818. height: 8px;
  819. border: 2px solid #ccc;
  820. border-width: 2px 2px 0 0;
  821. -webkit-transform: rotate(135deg);
  822. transform: rotate(135deg);
  823. }
  824. .hd-welcome {
  825. text-align: center;
  826. }
  827. .hd-welcome p {
  828. display: inline-block;
  829. background: #cecece;
  830. color: #fff;
  831. border-radius: 4px;
  832. padding: 2px 5px;
  833. font-size: 12px;
  834. }
  835. /* 医生主页 */
  836. .c-cacaca {
  837. color: #cacaca;
  838. }
  839. .sdoc-top .sdstate a.c-btn {
  840. padding: 4px 12px !important;
  841. }
  842. .pop-txt {
  843. width: 100%;
  844. border: 1px solid #ddd;
  845. border-radius: 6px;
  846. resize: none;
  847. box-sizing: border-box;
  848. -webkit-box-sizing: border-box;
  849. }
  850. .ui-dialog-content {
  851. display: block;
  852. }
  853. .sdoc-top {
  854. height: 180px;
  855. background: url(../images/banner1.jpg) no-repeat;
  856. background-size: 100% 100%;
  857. -webkit-background-size: 100% 100%;
  858. -moz-background-size: 100% 100%;
  859. padding: 20px 15px 0 15px;
  860. font-size: 12px;
  861. color: #fff;
  862. text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.6);
  863. line-height: 23px;
  864. position: relative;
  865. }
  866. .sdoc-top .sdimg {
  867. display: block;
  868. margin: 0 auto 10px auto;
  869. width: 60px;
  870. height: 60px;
  871. padding: 1px;
  872. background-color: rgba(250, 250, 250, .75);
  873. border-radius: 50%;
  874. }
  875. .sdoc-top .sdtime {
  876. position: absolute;
  877. background: rgba(0, 0, 0, .3);
  878. width: 100%;
  879. height: 45px;
  880. line-height: 45px;
  881. left: 0;
  882. bottom: 0;
  883. text-align: left;
  884. padding: 0 15px;
  885. }
  886. .sdoc-top .sdstate {
  887. position: absolute;
  888. background: rgba(255, 255, 255, 1);
  889. width: 100%;
  890. height: 38px;
  891. line-height: 38px;
  892. left: 0;
  893. bottom: 0;
  894. text-align: left;
  895. padding: 0 15px;
  896. text-shadow: none;
  897. color: #888;
  898. }
  899. .sdoc-top .sdstate.c-t-center {
  900. text-align: center;
  901. }
  902. .sdoc-top.smil {
  903. padding: 38px 15px 36px;
  904. height: 100px;
  905. background: url(../images/p-bg-top.png) no-repeat;
  906. background-size: 100% 100%;
  907. }
  908. .sdoc-top.smil.short {
  909. height: 60px;
  910. }
  911. .sdoc-top.smil .sdimg {
  912. margin: 0;
  913. width: 56px;
  914. height: 56px;
  915. border-radius: 56px;
  916. overflow: hidden;
  917. padding: 0;
  918. background: rgb(250, 250, 250);
  919. }
  920. .sdoc-top.smil .sdimg img {
  921. width: 56px;
  922. height: 56px;
  923. }
  924. .sdoc-top.smil .sdslink {
  925. border: none;
  926. }
  927. .img-circle .c-avatar-m {
  928. border-radius: 50%;
  929. }
  930. .folding-item-1 .c-list-info > p {
  931. font-size: 12px;
  932. color: #666;
  933. }
  934. .folding-item-1 > .c-list > .c-list-cover {
  935. margin-left: 38px !important;
  936. padding-left: 0 !important;
  937. }
  938. .list-item-1 .c-list-cover {
  939. margin-left: 10px !important;
  940. padding-left: 5px !important;
  941. }
  942. .bgc-3fcba9 {
  943. background-color: #3fcba9;
  944. }
  945. .bgc-52a5f1 {
  946. background-color: #52a5f1;
  947. }
  948. .bgc-f98d44 {
  949. background-color: #f98d44;
  950. }
  951. .bgc-67bfed {
  952. background-color: #67bfed;
  953. }
  954. .bgc-91c66a {
  955. background-color: #91c66a;
  956. }
  957. .bgc-f792b1 {
  958. background-color: #f792b1;
  959. }
  960. .bgc-fec157 {
  961. background-color: #fec157;
  962. }
  963. .bgc-78c8ed {
  964. background-color: #78c8ed;
  965. }
  966. .bgc-fb8d7c {
  967. background-color: #fb8d7c;
  968. }
  969. .logo-icon {
  970. display: inline-block;
  971. width: 17px;
  972. height: 17px;
  973. border-radius: 50%;
  974. vertical-align: middle;
  975. text-align: center;
  976. line-height: 17px;
  977. font-size: 10px;
  978. color: #fff;
  979. margin: 0 5px;
  980. }
  981. .sever-list .c-avatar-m .iconfont {
  982. color: #fff;
  983. font-size: 20px;
  984. vertical-align: middle;
  985. }
  986. header.doc-info.smil {
  987. background: url(../images/bg01.jpg) no-repeat;
  988. background-size: 100% 100%;
  989. height: 125px;
  990. padding: 36px 10px 0;
  991. box-sizing: border-box;
  992. }
  993. .tag-yellow {
  994. background: #ffbc2c;
  995. border-radius: 5px;
  996. padding: 5px 11px;
  997. font-size: 10px;
  998. }
  999. .doc-info .person-info {
  1000. display: -webkit-box;
  1001. display: -ms-box;
  1002. display: box;
  1003. }
  1004. .doc-info.person-info .sdimg {
  1005. -webkit-box-flex: 0;
  1006. -ms-box-flex: 0;
  1007. box-flex: 0;
  1008. }
  1009. .doc-info .person-info .self-info {
  1010. -webkit-box-flex: 1;
  1011. -ms-box-felx: 1;
  1012. box-felx: 1;
  1013. -webkit-box-align: center;
  1014. display: -webkit-box;
  1015. }
  1016. .doc-info .tag-yellow {
  1017. position: absolute;
  1018. right: 10px;
  1019. }
  1020. .link-time {
  1021. font-size: 14px;
  1022. width: 100%;
  1023. height: 35px;
  1024. line-height: 35px;
  1025. }
  1026. .link-date {
  1027. font-size: 14px;
  1028. width: 100%;
  1029. display: -webkit-box;
  1030. display: box;
  1031. display: -ms-box;
  1032. height: 35px;
  1033. line-height: 35px;
  1034. -webkit-box-align: center;
  1035. -webkit-box-pack: center;
  1036. -webkit-box-align: center;
  1037. -ms-box-align: center;
  1038. box-align: center;
  1039. -webkit-box-pack: justify;
  1040. -ms-box-pack: justify;
  1041. background: #fff;
  1042. }
  1043. .mt12 {
  1044. margin-top: 12px;
  1045. }
  1046. .mt8 {
  1047. margin-top: 8px;
  1048. }
  1049. .dialog-look {
  1050. text-align: left;
  1051. }
  1052. .list-icon-des {
  1053. background: #fff;
  1054. display: -webkit-box;
  1055. display: -ms-box;
  1056. display: box;
  1057. -webkit-box-align: center;
  1058. -ms-box-align: center;
  1059. box-align: center;
  1060. -webkit-box-pack: center;
  1061. -ms-box-align: center;
  1062. box-align: center;
  1063. border-top: 1px solid #e1e1e1;
  1064. border-bottom: 1px solid #e1e1e1;
  1065. }
  1066. .list-icon-des li {
  1067. -webkit-box-flex: 1;
  1068. -ms-box-flex: 1;
  1069. box-flex: 1;
  1070. text-align: center;
  1071. padding: 20px 0;
  1072. width: 0;
  1073. }
  1074. .list-icon-des li:last-child {
  1075. border: none;
  1076. }
  1077. .list-icon-des .bt-circle-40,
  1078. .list-icon-des .bt-circle-60 {
  1079. margin: 0 auto;
  1080. }
  1081. .list-icon-des .des {
  1082. margin-top: 8px;
  1083. }
  1084. .bt-circle-60 {
  1085. width: 60px;
  1086. height: 60px;
  1087. border-radius: 50%;
  1088. text-align: center;
  1089. line-height: 60px;
  1090. color: #fff;
  1091. }
  1092. .bt-circle-40 {
  1093. width: 40px;
  1094. height: 40px;
  1095. border-radius: 50%;
  1096. text-align: center;
  1097. line-height: 40px;
  1098. color: #fff;
  1099. }
  1100. .bt-circle-60 .iconfont {
  1101. font-size: 35px;
  1102. }
  1103. .bt-circle-40 .iconfont {
  1104. font-size: 25px;
  1105. }
  1106. .bgc-green {
  1107. background: #3fcaa9;
  1108. }
  1109. .bgc-orange {
  1110. background: #f68e45;
  1111. }
  1112. .bgc-lightgreen {
  1113. background: #91c66a;
  1114. }
  1115. .bgc-yellow {
  1116. background: #ffc446;
  1117. }
  1118. .bgc-blue {
  1119. background: #32a7f9;
  1120. }
  1121. h2.title {
  1122. padding: 10px 15px;
  1123. color: #5b5b5b;
  1124. }
  1125. .mod-title-content {
  1126. border-top: 1px solid #e1e1e1;
  1127. border-bottom: 1px solid #e1e1e1;
  1128. background: #fff;
  1129. }
  1130. .mod-title-content > div {
  1131. margin-left: 15px;
  1132. padding: 12px 15px 12px 0;
  1133. border-bottom: 1px solid #f1f1f1;
  1134. }
  1135. .mod-title-content > div:last-child {
  1136. border-bottom: none;
  1137. }
  1138. .mod-title-content .hd {
  1139. display: -webkit-box;
  1140. display: -ms-box;
  1141. display: box;
  1142. -webkit-box-align: center;
  1143. -ms-box-align: center;
  1144. box-pack: center;
  1145. }
  1146. .mod-title-content .hd a,
  1147. .dialog-call .warn a,
  1148. .dialog-cancel .warn a {
  1149. color: #007cd9;
  1150. }
  1151. .mod-title-content .hd .title {
  1152. -webkit-box-flex: 0;
  1153. -ms-box-flex: 0;
  1154. box-flex: 0;
  1155. }
  1156. .mod-title-content .hd .operate {
  1157. -webkit-box-flex: 1;
  1158. -ms-box-flex: 1;
  1159. box-flex: 1;
  1160. text-align: right;
  1161. }
  1162. .mod-title-content .bd p {
  1163. margin-bottom: 3px;
  1164. }
  1165. .mod-title-content .bd .key {
  1166. width: 65px;
  1167. display: inline-block;
  1168. margin-right: 25px;
  1169. }
  1170. .btn-xl {
  1171. border-top: 1px solid #e1e1e1;
  1172. border-bottom: 1px solid #e1e1e1;
  1173. height: 45px;
  1174. -webkit-box-align: center;
  1175. -ms-box-align: center;
  1176. box-align: center;
  1177. -webkit-box-pack: center;
  1178. -ms-box-pack: center;
  1179. box-pack: center;
  1180. display: -ms-box;
  1181. display: -webkit-box;
  1182. display: box;
  1183. color: #007cd9;
  1184. background: #fff;
  1185. }
  1186. .dialog-call h2,
  1187. .dialog-cancel h2 {
  1188. font-size: 14px;
  1189. color: #333;
  1190. }
  1191. .dialog-call .warn,
  1192. .dialog-cancel .warn {
  1193. color: #999;
  1194. font-size: 12px;
  1195. }
  1196. .signed {
  1197. text-indent: 2em;
  1198. color: #999;
  1199. }
  1200. .mb70 {
  1201. margin-bottom: 70px;
  1202. }
  1203. .c-17b3ec {
  1204. color: #17b3ec;
  1205. }
  1206. .bottom-btn-box {
  1207. position: fixed;
  1208. bottom: 0;
  1209. left: 0;
  1210. width: 100%;
  1211. box-sizing: border-box;
  1212. padding: 8px 15px;
  1213. background: #fff;
  1214. z-index: 3000;
  1215. }
  1216. .more-info {
  1217. padding-left: 20px;
  1218. }
  1219. /* 手工代签约 */
  1220. .edit-list li.n-list-cover {
  1221. padding-top: 7px;
  1222. padding-bottom: 7px;
  1223. padding-left: 20px;
  1224. }
  1225. .edit-list li.n-list-cover .n-list-key {
  1226. width: 80px;
  1227. }
  1228. .edit-list-file li.n-list-cover {
  1229. padding-left: 20px;
  1230. }
  1231. .edit-list .n-list-info .c-radio,
  1232. .edit-list .n-list-info .c-check,
  1233. .edit-list .n-list-info .c-select>select,
  1234. .edit-list .n-list-info input {
  1235. color: #5b5b5b;
  1236. }
  1237. .upload-img {
  1238. overflow: hidden;
  1239. }
  1240. .upload-img ul {
  1241. float: left;
  1242. }
  1243. .upload-img ul li {
  1244. position: relative;
  1245. float: left;
  1246. width: 70px;
  1247. height: 70px;
  1248. padding: 0 10px 10px 0;
  1249. font-size: 0;
  1250. }
  1251. .upload-img ul li img {
  1252. width: 100%;
  1253. height: 100%;
  1254. font-size: 0;
  1255. }
  1256. .upload-img .del-img {
  1257. position: absolute;
  1258. top: 0;
  1259. right: 10px;
  1260. text-align: center;
  1261. width: 26px;
  1262. height: 26px;
  1263. line-height: 20px;
  1264. z-index: 10;
  1265. background: rgba(0, 0, 0, .5);
  1266. border-radius: 0 0 0 90%;
  1267. overflow: hidden;
  1268. }
  1269. .upload-img .del-img .iconfont {
  1270. color: #fff;
  1271. font-size: 14px;
  1272. line-height: 14px;
  1273. margin-left: 4px;
  1274. }
  1275. .add-btn {
  1276. position: relative;
  1277. display: block;
  1278. width: 68px;
  1279. height: 68px;
  1280. font-size: 0;
  1281. color: #b8b8b8;
  1282. border: 1px solid #ccc;
  1283. background: #fff;
  1284. }
  1285. .add-btn:before {
  1286. content: "";
  1287. display: block;
  1288. position: absolute;
  1289. top: 33px;
  1290. left: 19px;
  1291. width: 30px;
  1292. height: 2px;
  1293. background: #ccc;
  1294. }
  1295. .add-btn:after {
  1296. content: "";
  1297. display: block;
  1298. position: absolute;
  1299. top: 19px;
  1300. left: 33px;
  1301. width: 2px;
  1302. height: 30px;
  1303. background: #ccc;
  1304. }
  1305. .add-btn input {
  1306. display: block;
  1307. width: 76px;
  1308. height: 76px;
  1309. background: #fff;
  1310. border: none;
  1311. position: absolute;
  1312. z-index: 100;
  1313. top: 0;
  1314. left: 0;
  1315. opacity: 0;
  1316. }
  1317. .patient-face {
  1318. width: 40px;
  1319. height: 40px;
  1320. margin: 12px 15px;
  1321. position: relative;
  1322. }
  1323. .patient-face img {
  1324. width: 100%;
  1325. height: 100%;
  1326. border-radius: 50%;
  1327. }
  1328. .patient-face em {
  1329. position: absolute;
  1330. display: inline-block;
  1331. left: 32px;
  1332. top: -4px;
  1333. color: #fff;
  1334. text-align: center;
  1335. font-size: 12px;
  1336. height: 16px;
  1337. line-height: 14px;
  1338. min-width: 16px;
  1339. background: #f00;
  1340. border-radius: 16px;
  1341. border: 1px solid #fff;
  1342. -webkit-box-sizing: border-box;
  1343. box-sizing: border-box;
  1344. padding: 0 3px;
  1345. }
  1346. .patient-type span em {
  1347. position: absolute;
  1348. display: inline-block;
  1349. color: #fff;
  1350. text-align: center;
  1351. height: 7px;
  1352. width: 7px;
  1353. background: #f00;
  1354. border-radius: 50%;
  1355. right: -4px;
  1356. top: -5px;
  1357. }
  1358. .patient-type {
  1359. width: 100%;
  1360. padding: 15px;
  1361. background: #fff;
  1362. -webkit-box-sizing: border-box;
  1363. -moz-box-sizing: border-box;
  1364. box-sizing: border-box;
  1365. display: box;
  1366. display: -webkit-box;
  1367. border-bottom: 1px solid #f1f1f1;
  1368. }
  1369. .patient-type h3 {
  1370. display: -webkit-box;
  1371. display: box;
  1372. -webkit-box-flex: 1;
  1373. box-flex: 1;
  1374. -webkit-box-orient: vertical;
  1375. -webkit-box-pack: center;
  1376. }
  1377. .patient-type span,
  1378. .patient-type .arrow {
  1379. display: -webkit-box;
  1380. display: box;
  1381. -webkit-box-orient: vertical;
  1382. -webkit-box-pack: center;
  1383. }
  1384. .patient-type .arrow {
  1385. margin-right: 6px;
  1386. transition: all 0.3s;
  1387. -webkit-transition: all 0.3s;
  1388. }
  1389. .patient-type .arrow .ui-arrow-r {
  1390. border-left-color: #cdcdcd;
  1391. }
  1392. .patient-type span {
  1393. position: relative;
  1394. font-size: 12px;
  1395. color: #909090;
  1396. }
  1397. .patient-list.current .patient-type .arrow {
  1398. -webkit-transform: rotate(90deg);
  1399. -moz-transform: rotate(90deg);
  1400. transform: rotate(90deg);
  1401. margin-top: 5px;
  1402. transition: all 0.3s;
  1403. -webkit-transition: all 0.3s;
  1404. }
  1405. .patient-list .c-list {
  1406. display: none;
  1407. border-bottom: 1px solid #f1f1f1;
  1408. }
  1409. .patient-list.current .c-list {
  1410. display: block;
  1411. }
  1412. .my-patients {
  1413. color: #5b5b5b;
  1414. font-size: 12px;
  1415. height: 40px;
  1416. line-height: 40px;
  1417. vertical-align: middle;
  1418. }
  1419. .my-patients span {
  1420. color: #909090;
  1421. padding-left: 5px;
  1422. }
  1423. .my-work.c-ser-hold {
  1424. background: #fff;
  1425. }
  1426. .my-work .c-ser-input,
  1427. .my-work .c-ser-main {
  1428. background: #f2f2f2;
  1429. }
  1430. .my-work .c-ser-input {
  1431. font-size: 12px;
  1432. }
  1433. .my-work-secflo .patient-type {
  1434. position: relative;
  1435. padding-left: 15px;
  1436. }
  1437. .my-work-secflo ul.c-list li {
  1438. padding-left: 15px !important;
  1439. background: #f9f9f9;
  1440. }
  1441. .my-work-secflo .patient-type .arrow {
  1442. position: absolute;
  1443. right: 5px;
  1444. top: 20px;
  1445. }
  1446. .my-work-secflo .patient-face {
  1447. margin: 12px 10px 12px 0px;
  1448. position: relative;
  1449. }
  1450. .my-work .c-ser-main i {
  1451. top: 3px;
  1452. }
  1453. .my-work .c-ser-btn a {
  1454. font-size: 12px;
  1455. }
  1456. .my-work-secflo .patient-list.current .patient-type .arrow {
  1457. top: 10px;
  1458. -webkit-transform: rotate(180deg);
  1459. -moz-transform: rotate(180deg);
  1460. transform: rotate(180deg);
  1461. margin-top: 5px;
  1462. transition: all 0.3s;
  1463. -webkit-transition: all 0.3s;
  1464. }
  1465. /*居民信息*/
  1466. .lih45 {
  1467. line-height: 45px;
  1468. }
  1469. .c-17b3ec {
  1470. color: #17b3ec;
  1471. }
  1472. .mod-patient-wrap {
  1473. width: 100%;
  1474. height: 92px;
  1475. }
  1476. .mod-patient-info {
  1477. display: -webkit-box;
  1478. display: box;
  1479. width: 100%;
  1480. height: auto;
  1481. -webkit-box-align: center;
  1482. box-align: center;
  1483. background: #fff;
  1484. position: relative;
  1485. padding: 10px 0;
  1486. line-height: 1.2em;
  1487. }
  1488. .mod-patient-info div {
  1489. border-right: 1px solid #e1e1e1;
  1490. width: 33.33%;
  1491. text-align: center;
  1492. }
  1493. .mod-patient-info .swiper-wrapper div:last-child {
  1494. border-right: 0;
  1495. }
  1496. .mod-patient-info .value {
  1497. font-size: 15px;
  1498. color: #17b3ec;
  1499. font-weight: bold;
  1500. }
  1501. .mod-patient-info .key {
  1502. color: #909090;
  1503. margin-top: 8px;
  1504. }
  1505. .mod-patient-info .swiper-button-next {
  1506. content: "";
  1507. display: block;
  1508. width: 8px;
  1509. height: 8px;
  1510. border: solid #cdcdcd;
  1511. border-width: 2px 2px 0 0;
  1512. -webkit-transform: rotate(45deg);
  1513. transform: rotate(45deg);
  1514. position: absolute;
  1515. right: 10px;
  1516. top: 50%;
  1517. margin-top: -4px;
  1518. background: none;
  1519. }
  1520. .week-select {
  1521. display: -webkit-box;
  1522. display: box;
  1523. background: #fff;
  1524. }
  1525. .week-select>a,
  1526. .week-select>div {
  1527. position: relative;
  1528. display: -webkit-box;
  1529. display: box;
  1530. -webkit-box-orient: vertical;
  1531. box-orient: vertical;
  1532. -webkit-box-pack: center;
  1533. box-pack: center;
  1534. }
  1535. .week-select>div {
  1536. -webkit-box-flex: 1;
  1537. box-flex: 1;
  1538. text-align: center;
  1539. border-left: 1px solid #f2f2f2;
  1540. border-right: 1px solid #f2f2f2;
  1541. }
  1542. .week-select>a.prev {
  1543. padding: 10px 10px 10px 25px;
  1544. }
  1545. .week-select>a.next {
  1546. padding: 10px 25px 10px 10px;
  1547. }
  1548. .week-select>a.prev:after,
  1549. .week-select>a.next:after {
  1550. position: absolute;
  1551. top: 50%;
  1552. left: 10px;
  1553. margin-top: -6px;
  1554. content: "";
  1555. display: block;
  1556. width: 8px;
  1557. height: 8px;
  1558. border: solid #cdcdcd;
  1559. border-width: 0 0 2px 2px;
  1560. -webkit-transform: rotate(45deg);
  1561. transform: rotate(45deg);
  1562. }
  1563. .week-select>a.next:after {
  1564. left: auto;
  1565. right: 10px;
  1566. -webkit-transform: rotate(-135deg);
  1567. transform: rotate(-135deg);
  1568. }
  1569. .case-top {
  1570. position: relative;
  1571. padding: 12px 0;
  1572. }
  1573. .case-top .cimg {
  1574. position: absolute;
  1575. left: 10px;
  1576. top: 50%;
  1577. margin-top: -20px;
  1578. }
  1579. .case-top .cimg img {
  1580. width: 40px;
  1581. height: 40px;
  1582. }
  1583. .case-top .cmess {
  1584. padding-left: 60px;
  1585. padding-right: 45px;
  1586. min-height: 40px;
  1587. display: box;
  1588. display: -webkit-box;
  1589. -webkit-box-orient: vertical;
  1590. -webkit-box-pack: center;
  1591. line-height: 1.4;
  1592. }
  1593. .case-top .zdgz {
  1594. right: -76px;
  1595. top: -1px;
  1596. height: 20px;
  1597. line-height: 20px;
  1598. background-color: #ccc;
  1599. border-radius: 3px;
  1600. font-size: 12px;
  1601. color: #fff;
  1602. padding: 0 3px;
  1603. }
  1604. .case-top .zdgz .icon-yonghu {
  1605. font-size: 14px;
  1606. margin-right: 3px;
  1607. }
  1608. .case-top .cmess .checked {
  1609. background-color: #ff8100;
  1610. }
  1611. .case-top .arrow {
  1612. position: absolute;
  1613. right: 10px;
  1614. top: 50%;
  1615. margin-top: -5px;
  1616. font-size: 34px;
  1617. color: #17b3ec;
  1618. }
  1619. .case-list {
  1620. display: block;
  1621. }
  1622. .case-list li {
  1623. padding: 8px 10px 10px 30px;
  1624. line-height: 20px;
  1625. position: relative;
  1626. }
  1627. .case-list-img img {
  1628. width: 79px;
  1629. height: 79px;
  1630. margin: 10px 10px 0 0;
  1631. }
  1632. .case-bar {
  1633. position: absolute;
  1634. left: 17px;
  1635. top: 0;
  1636. width: 2px;
  1637. height: 100%;
  1638. background: #d7e0df;
  1639. }
  1640. .case-bar:before {
  1641. content: '';
  1642. display: block;
  1643. width: 13px;
  1644. height: 13px;
  1645. background: #fff;
  1646. border: 2px solid #d7e0df;
  1647. position: absolute;
  1648. left: -8px;
  1649. top: 9px;
  1650. border-radius: 50%;
  1651. }
  1652. .case-bar:after {
  1653. content: '';
  1654. display: block;
  1655. width: 7px;
  1656. height: 7px;
  1657. background: #d7e0df;
  1658. position: absolute;
  1659. left: -3px;
  1660. top: 14px;
  1661. border-radius: 50%;
  1662. }
  1663. .case-bar.no-line {
  1664. height: 66%;
  1665. }
  1666. .case-top .intact-info {
  1667. position: absolute;
  1668. top: 50%;
  1669. margin-top: -11px;
  1670. right: 25px;
  1671. color: #909090;
  1672. font-size: 12px;
  1673. }
  1674. .fix-add {
  1675. width: 50px;
  1676. height: 50px;
  1677. background: #17b3ec;
  1678. border-radius: 50%;
  1679. position: fixed;
  1680. z-index: 1111;
  1681. right: 10px;
  1682. bottom: 30px;
  1683. }
  1684. .fix-add:after,
  1685. .fix-add:before {
  1686. content: "";
  1687. width: 50%;
  1688. height: 2px;
  1689. position: absolute;
  1690. top: 50%;
  1691. left: 50%;
  1692. background: #fff;
  1693. margin-left: -25%;
  1694. }
  1695. .fix-add:before {
  1696. -webkit-transform: rotate( 90deg);
  1697. transform: rotate( 90deg);
  1698. }
  1699. .zxjl-list {
  1700. width: 100%;
  1701. }
  1702. .zxjl-list p:first-child {
  1703. position: relative;
  1704. width: 100%;
  1705. }
  1706. .zxjl-list p .arrow {
  1707. position: absolute;
  1708. top: 5px;
  1709. right: 0;
  1710. }
  1711. .zxjl-list p .arrow.arrow-down {
  1712. top: 0;
  1713. }
  1714. .ring-blue,
  1715. .ring-a,
  1716. .ring-b,
  1717. .ring-c {
  1718. display: inline-block;
  1719. width: 36px;
  1720. height: 36px;
  1721. line-height: 36px;
  1722. text-align: center;
  1723. border-radius: 50%;
  1724. border: 1px solid #17b3ec;
  1725. font-size: 10px;
  1726. color: #17b3ec;
  1727. -webkit-box-sizing: border-box;
  1728. box-sizing: border-box;
  1729. }
  1730. .ring-a {
  1731. color: #333;
  1732. border: 0;
  1733. background: url(../images/ring-a.png) no-repeat 0 0;
  1734. background-size: 100% 100%;
  1735. }
  1736. .ring-b {
  1737. color: #333;
  1738. border: 0;
  1739. background: url(../images/ring-b.png) no-repeat 0 0;
  1740. background-size: 100% 100%;
  1741. }
  1742. .ring-c {
  1743. color: #333;
  1744. border: 0;
  1745. background: url(../images/ring-c.png) no-repeat 0 0;
  1746. background-size: 100% 100%;
  1747. }
  1748. .height-echarts {
  1749. height: 320px;
  1750. width: 100%;
  1751. overflow: hidden;
  1752. }
  1753. .fix-add-dialog li {
  1754. margin: 0 0 25px !important;
  1755. }
  1756. .fix-add-dialog li a {
  1757. display: block;
  1758. width: 100%;
  1759. height: 60px;
  1760. color: #333;
  1761. }
  1762. .fix-add-dialog li a span {
  1763. display: block;
  1764. }
  1765. .fix-add-dialog li a i.iconfont {
  1766. font-size: 28px;
  1767. color: #17b3ec
  1768. }
  1769. .info-tabs-hd div {
  1770. line-height: 28px;
  1771. }
  1772. .info-tabs-hd div.curr {
  1773. background-color: #17b3ec;
  1774. color: #fff;
  1775. }
  1776. /*解约处理*/
  1777. .updown-arrow a.up:after {
  1778. display: block;
  1779. content: "";
  1780. position: absolute;
  1781. top: 50%;
  1782. left: 50%;
  1783. margin: -4px 0 0 -6px;
  1784. width: 8px;
  1785. height: 8px;
  1786. border: 2px solid #ccc;
  1787. border-width: 2px 2px 0 0;
  1788. -webkit-transform: rotate(-45deg);
  1789. transform: rotate(-45deg);
  1790. }
  1791. .qyjy-more {
  1792. position: relative;
  1793. background: #fff;
  1794. }
  1795. .qyjy-more ul {
  1796. padding: 15px 0;
  1797. margin: 0 15px;
  1798. border-top: 1px dotted #f1f1f1;
  1799. }
  1800. .qyjy-more ul li {
  1801. width: 50%;
  1802. float: left;
  1803. -webkit-box-sizing: border-box;
  1804. box-sizing: border-box;
  1805. padding-right: 5px;
  1806. }
  1807. .qyjy-more p {
  1808. padding: 10px 0;
  1809. margin: 0 15px;
  1810. border-top: 1px dotted #f1f1f1;
  1811. }
  1812. .textarea-noborder {
  1813. padding: 0;
  1814. margin: 0;
  1815. border: 0 none;
  1816. resize: none;
  1817. }
  1818. /* 签约 */
  1819. .c-17b3ec {
  1820. color: #17b3ec;
  1821. }
  1822. .qystate-box {
  1823. background: #fff;
  1824. padding: 15px;
  1825. text-align: center;
  1826. }
  1827. .qystate-box .icon-shibai {
  1828. font-size: 40px;
  1829. color: #dd3b39;
  1830. }
  1831. .qystate-box .icon-ok {
  1832. font-size: 40px;
  1833. color: #4dcd70;
  1834. }
  1835. /* 体征预警 */
  1836. .setwarn-box {}
  1837. .setwarn-box .c-list {
  1838. background: none;
  1839. }
  1840. .setwarn-box .c-list > li {
  1841. background: #fff;
  1842. border-bottom: 1px solid #e1e1e1;
  1843. padding-top: 5px;
  1844. padding-bottom: 5px;
  1845. }
  1846. .setwarn-box .c-list > li:first-child {
  1847. border-bottom: 1px solid #e1e1e1;
  1848. }
  1849. .setwarn-box .c-list > li .sb-right {
  1850. display: box;
  1851. display: -webkit-box;
  1852. font-size: 12px;
  1853. padding: 8px 0;
  1854. }
  1855. .setwarn-box .sbr-title {
  1856. box-flex: 0;
  1857. -webkit-box-flex: 0;
  1858. width: 90px;
  1859. }
  1860. .setwarn-box .sbr-input {
  1861. box-flex: 1;
  1862. -webkit-box-flex: 1;
  1863. position: relative;
  1864. }
  1865. .setwarn-box .sbr-input input {
  1866. display: block;
  1867. width: 100%;
  1868. height: 30px;
  1869. border: 1px solid #f2f2f2;
  1870. box-sizing: border-box;
  1871. -webkit-box-sizing: border-box;
  1872. padding: 2px 5px;
  1873. border-radius: 2px;
  1874. }
  1875. .sbr-input .arrow-right {
  1876. position: absolute;
  1877. right: 10px;
  1878. top: 8px;
  1879. transform: rotate(135deg);
  1880. -webkit-transform: rotate(135deg);
  1881. }
  1882. .setwarn-box .sbr-comp {
  1883. box-flex: 0;
  1884. -webkit-box-flex: 0;
  1885. width: 60px;
  1886. text-align: right;
  1887. }
  1888. .setwarn-box .c-list > li .c-list-info {
  1889. border-top: none;
  1890. }
  1891. .c-pack {
  1892. display: box;
  1893. display: -webkit-box;
  1894. -webkit-box-orient: vertical;
  1895. -webkit-box-pack: center;
  1896. }
  1897. .health-border-1 {
  1898. border-color: #ff9806
  1899. }
  1900. .health-border-2 {
  1901. border-color: #ff0606
  1902. }
  1903. .health-border-3 {
  1904. border-color: #4dcd70
  1905. }
  1906. .health-border-9 {
  1907. border-color: #00acee
  1908. }
  1909. .health-border-4 {
  1910. border-color: #ea68a2
  1911. }
  1912. .health-border-5 {
  1913. border-color: #1dbdbf
  1914. }
  1915. .health-border-6 {
  1916. border-color: #37a6ed
  1917. }
  1918. .health-border-7 {
  1919. border-color: #ae5da1
  1920. }
  1921. /*签约消息*/
  1922. .cl-canbals {
  1923. background: none;
  1924. }
  1925. .cl-canbals li {
  1926. border-radius: 10px;
  1927. overflow: hidden;
  1928. background: #fff;
  1929. margin-left: 0 !important;
  1930. padding-left: 15px;
  1931. }
  1932. .cl-canbals li.c-border {
  1933. border: 1px solid #e1e1e1 !important;
  1934. }
  1935. .cl-canbals .c-avatar-m {
  1936. border-radius: 50%;
  1937. overflow: hidden;
  1938. }
  1939. /*邀请医生*/
  1940. .cl-poer-sinm.c-list .c-list-action {
  1941. left: 0;
  1942. right: auto;
  1943. }
  1944. .cl-poer-sinm.c-list .c-avatar-s {
  1945. padding-left: 34px;
  1946. overflow: hidden;
  1947. width: 40px;
  1948. height: 40px;
  1949. }
  1950. .cl-poer-sinm.c-list .c-avatar-s img {
  1951. width: 40px;
  1952. height: 40px;
  1953. border-radius: 50%;
  1954. }
  1955. /* 体征指标 */
  1956. .sympt-list {
  1957. padding: 0 10px 30px 10px;
  1958. }
  1959. .sympt-list li {
  1960. background: #fff;
  1961. border: 1px solid #f2f2f2;
  1962. border-radius: 5px;
  1963. overflow: hidden;
  1964. padding: 8px 8px 15px 8px;
  1965. margin-top: 10px;
  1966. position: relative;
  1967. }
  1968. .sympt-list li p {
  1969. padding: 0 3px;
  1970. line-height: 1.7;
  1971. }
  1972. .sympt-diag {
  1973. display: block;
  1974. color: #4bbe4d;
  1975. padding: 8px 0;
  1976. border-top: 1px solid #f2f2f2;
  1977. margin-top: 8px;
  1978. }
  1979. .sympt-list .ui-arrow-r {
  1980. border-width: 23px;
  1981. position: absolute;
  1982. right: -23px;
  1983. top: -23px;
  1984. transform: rotate(-45deg);
  1985. -webkit-transform: rotate(-45deg);
  1986. z-index: 50;
  1987. }
  1988. .sympt-state {
  1989. position: absolute;
  1990. right: 0;
  1991. top: 0;
  1992. }
  1993. .sympt-state span {
  1994. display: block;
  1995. position: relative;
  1996. z-index: 100;
  1997. color: #fff;
  1998. font-size: 13px;
  1999. padding-right: 2px;
  2000. }
  2001. .sympt-state.r-high .ui-arrow-r {
  2002. border-color: #ff4c4c;
  2003. }
  2004. .sympt-state.r-middle .ui-arrow-r {
  2005. border-color: #fea54b;
  2006. }
  2007. .sympt-state.r-low .ui-arrow-r {
  2008. border-color: #4bbe4d;
  2009. }
  2010. .sympt-list li.sympt-time {
  2011. background: none;
  2012. border: none;
  2013. text-align: center;
  2014. padding: 0;
  2015. margin-top: 12px;
  2016. }
  2017. .sympt-list li.sympt-time label {
  2018. display: inline-block;
  2019. height: 20px;
  2020. line-height: 20px;
  2021. color: #fefefe;
  2022. background: #d9d9da;
  2023. border-radius: 4px;
  2024. padding: 0 10px;
  2025. font-size: 12px;
  2026. }
  2027. /* 无数据 */
  2028. .c-failstate {
  2029. padding: 90px 15px 30px 15px;
  2030. font-size: 14px;
  2031. line-height: 1.5em;
  2032. }
  2033. .icon-noset {
  2034. display: inline-block;
  2035. width: 120px;
  2036. height: 120px;
  2037. background: url(../../../images/noset.png) no-repeat;
  2038. background-size: 100% 100%;
  2039. margin-bottom: 10px;
  2040. }