style.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888
  1. /* ui-form
  2. -----------------------------------------------------------------------------*/
  3. .input-group,
  4. .input-group *,
  5. .input-group-checkbox,
  6. .input-group-radio,
  7. .input-group-checkbox *,
  8. .input-group-radio * {
  9. box-sizing: border-box;
  10. -moz-box-sizing: border-box;
  11. -webkit-box-sizing: border-box;
  12. }
  13. .input-group {
  14. border-collapse: separate;
  15. display: table;
  16. position: relative;
  17. }
  18. .input-group label {
  19. display: block;
  20. }
  21. .input-group-addon {
  22. background-color: #fff;
  23. border: 1px solid #e1e1e1;
  24. border-radius: 4px;
  25. border-bottom-right-radius: 0;
  26. border-top-right-radius: 0;
  27. color: #333;
  28. font-size: 14px;
  29. font-weight: 400;
  30. line-height: 1;
  31. padding: 10px;
  32. text-align: center;
  33. display: table-cell;
  34. vertical-align: middle;
  35. white-space: nowrap;
  36. width: 1%;
  37. }
  38. .input-group-addon:first-child {
  39. border-right: 0;
  40. }
  41. .input-group-addon .iconfont {
  42. color: #b4b4b4;
  43. font-size: 18px;
  44. }
  45. .input-group-addon.focus .iconfont {
  46. color: #37a6ed;
  47. }
  48. .input-group-btn {
  49. position: absolute;
  50. right: 5px;
  51. top: 7px;
  52. }
  53. .input-group-btn .c-btn {
  54. padding: 5px;
  55. border: #ddd 1px solid;
  56. }
  57. .input-group .form-control,
  58. .input-group .form-select,
  59. .input-group .form-textarea {
  60. -webkit-appearance: none;
  61. appearance: none;
  62. background-color: #fff;
  63. background-image: none;
  64. border: 1px solid #e1e1e1;
  65. border-radius: 5px;
  66. color: #333;
  67. display: block;
  68. font-size: 14px;
  69. height: 45px;
  70. line-height: 1.42857;
  71. padding: 6px 12px;
  72. transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  73. outline: 0;
  74. }
  75. .input-group .form-select-arrow {
  76. display: block;
  77. width: 10px;
  78. height: 10px;
  79. border: solid #ccc;
  80. border-width: 2px 2px 0 0;
  81. -webkit-transform: rotate(135deg);
  82. -moz-transform: rotate(135deg);
  83. transform: rotate(135deg);
  84. position: absolute;
  85. top: 15px;
  86. right: 15px;
  87. }
  88. .input-group .form-control {
  89. padding-right: 30px;
  90. }
  91. .input-group.input-border .form-control,
  92. .input-group.input-border .form-select,
  93. .input-group.input-border .form-textarea {
  94. border-radius: 0px;
  95. border-right: 0;
  96. font-size: 15px;
  97. height: 45px;
  98. line-height: 1.52857;
  99. }
  100. .input-group .form-control:focus,
  101. .input-group .form-select:focus,
  102. .input-group .form-textarea:focus {
  103. color: #333;
  104. }
  105. .input-group .form-control::-webkit-input-placeholder,
  106. .input-group .form-textarea::-webkit-input-placeholder {
  107. color: #bfbfbf;
  108. }
  109. .input-group .form-control:-moz-placeholder,
  110. .input-group .form-textarea:-moz-placeholder {
  111. color: #bfbfbf;
  112. }
  113. .input-group .form-control::-moz-placeholder,
  114. .input-group .form-textarea::-moz-placeholder {
  115. color: #bfbfbf;
  116. }
  117. .input-group .form-control:-ms-input-placeholder,
  118. .input-group .form-textarea:-ms-input-placeholder {
  119. color: #bfbfbf;
  120. }
  121. .input-group .form-textarea {
  122. height: auto;
  123. resize: none;
  124. margin: 0;
  125. }
  126. .input-group .form-control:nth-child(2),
  127. .input-group .form-textarea:nth-child(2) {
  128. border-bottom-left-radius: 0;
  129. border-top-left-radius: 0;
  130. border-left: 0;
  131. padding-left: 0;
  132. }
  133. .input-group .form-control,
  134. .input-group label .form-control,
  135. .input-group label .form-select,
  136. .input-group label .form-textarea {
  137. border-radius: 4px;
  138. padding-left: 12px;
  139. border-left: 1px #e1e1e1 solid;
  140. }
  141. .input-group .input-group-addon+ .form-control,
  142. .input-group .input-group-addon+ .form-select {
  143. border-top-left-radius: 0px;
  144. border-bottom-left-radius: 0px;
  145. padding-left: 0px;
  146. border-left: 0px;
  147. }
  148. .input-group-text {
  149. font-size: 14px;
  150. color: #555;
  151. }
  152. .input-merge .input-group .input-group-addon,
  153. .input-group.input-border .input-group-addon {
  154. border-bottom-left-radius: 0;
  155. border-top-left-radius: 0;
  156. }
  157. .input-group.input-border .input-group-addon {
  158. border-left: 0;
  159. font-size: 15px;
  160. color: #333;
  161. padding: 10px 20px;
  162. }
  163. .input-merge .input-group .form-control,
  164. .input-merge .input-group .form-select,
  165. .input-merge .input-group .form-textarea {
  166. border-bottom-right-radius: 0;
  167. border-top-right-radius: 0;
  168. }
  169. .input-merge .input-group:first-child .input-group-addon {
  170. border-top-left-radius: 4px;
  171. }
  172. .input-merge .input-group:first-child .form-control,
  173. .input-merge .input-group:first-child .form-select,
  174. .input-merge .input-group:first-child .form-textarea {
  175. border-top-right-radius: 4px;
  176. }
  177. .input-merge .input-group:last-child .form-control,
  178. .input-merge .input-group:last-child .form-select,
  179. .input-merge .input-group:last-child .form-textarea {
  180. border-bottom-right-radius: 4px;
  181. }
  182. .input-merge .input-group:last-child .input-group-addon {
  183. border-bottom-left-radius: 4px;
  184. }
  185. .input-merge .input-group.input-border .input-group-addon,
  186. .input-merge .input-group.input-border .form-control,
  187. .input-merge .input-group.input-border .form-select,
  188. .input-merge .input-group.input-border .form-textarea,
  189. .input-merge .input-group.input-border .form-control,
  190. .input-merge .input-group.input-border .form-select,
  191. .input-merge .input-group.input-border .form-textarea,
  192. .input-merge .input-group.input-border .input-group-addon {
  193. border-radius: 0px;
  194. }
  195. .input-merge .input-group.input-border {
  196. padding-left: 20px;
  197. }
  198. .input-merge .input-group.input-border .input-group-addon {
  199. padding-left: 0
  200. }
  201. .input-merge .input-group .input-group-addon,
  202. .input-merge .input-group .form-control,
  203. .input-merge .input-group .form-select,
  204. .input-merge .input-group .form-textarea {
  205. border-bottom: 0;
  206. }
  207. .input-merge .input-group:last-child .input-group-addon,
  208. .input-merge .input-group:last-child .form-control,
  209. .input-merge .input-group:last-child .form-select,
  210. .input-merge .input-group:last-child .form-textarea {
  211. border-bottom: 1px solid #e1e1e1;
  212. }
  213. .input-merge.input-merge-border .input-group:first-child .input-group-addon,
  214. .input-merge.input-merge-border .input-group:first-child .form-control,
  215. .input-merge.input-merge-border .input-group:first-child .form-select,
  216. .input-merge.input-merge-border .input-group:first-child .form-textarea {
  217. border-top: 0;
  218. }
  219. .input-merge.input-merge-border .input-group:last-child .input-group-addon,
  220. .input-merge.input-merge-border .input-group:last-child .form-control,
  221. .input-merge.input-merge-border .input-group:last-child .form-select,
  222. .input-merge.input-merge-border .input-group:last-child .form-textarea {
  223. border-bottom: 0;
  224. }
  225. .input-merge.input-merge-border {
  226. border-top: 1px solid #e1e1e1;
  227. border-bottom: 1px solid #e1e1e1;
  228. background: #fff;
  229. }
  230. .input-group-addon-disabled,
  231. .form-control[disabled],
  232. .form-control:disabled,
  233. .form-textarea[disabled],
  234. .form-textarea:disabled,
  235. .form-textarea[disabled],
  236. .form-textarea:disabled,
  237. .form-select[disabled],
  238. .form-select:disabled {
  239. background-color: #f9f9f9;
  240. }
  241. .input-group .form-input {
  242. height: 45px;
  243. border-top: 1px solid #e1e1e1;
  244. position: relative;
  245. padding: 7px 0;
  246. }
  247. .input-group .form-input-text {
  248. color: #909090;
  249. font-size: 15px;
  250. }
  251. .input-group .form-select-box {
  252. display: inline-block;
  253. position: relative;
  254. margin-right: 10px;
  255. }
  256. .input-group .form-select-box .form-select {
  257. width: 100%;
  258. }
  259. .input-group .form-select-box .form-select-arrow {
  260. top: 7px;
  261. right: 12px
  262. }
  263. .input-group.input-border .form-input .form-control,
  264. .input-group.input-border .form-input .form-select {
  265. height: 31px;
  266. border: #e1e1e1 1px solid !important;
  267. border-radius: 2px;
  268. display: inline-block;
  269. vertical-align: baseline;
  270. line-height: 1.2;
  271. }
  272. .input-group .input-clear {
  273. position: absolute;
  274. right: 8px;
  275. top: 8px;
  276. background: #ccc;
  277. border-radius: 50%;
  278. width: 26px;
  279. height: 26px;
  280. text-align: center;
  281. }
  282. .input-group .input-clear .close {
  283. position: relative;
  284. display: inline-block;
  285. width: 15px;
  286. height: 15px;
  287. overflow: hidden;
  288. top: 6px;
  289. }
  290. .input-group .input-clear .close::before,
  291. .input-group .input-clear .close::after {
  292. content: '';
  293. position: absolute;
  294. height: 2px;
  295. width: 100%;
  296. top: 50%;
  297. left: 0px;
  298. margin-top: -1px;
  299. background: #fff;
  300. border-radius: 6px;
  301. }
  302. .input-group .input-clear .close::before {
  303. -webkit-transform: rotate(45deg);
  304. -moz-transform: rotate(45deg);
  305. -ms-transform: rotate(45deg);
  306. -o-transform: rotate(45deg);
  307. transform: rotate(45deg);
  308. }
  309. .input-group .input-clear .close::after {
  310. -webkit-transform: rotate(-45deg);
  311. -moz-transform: rotate(-45deg);
  312. -ms-transform: rotate(-45deg);
  313. -o-transform: rotate(-45deg);
  314. transform: rotate(-45deg);
  315. }
  316. .input-group-checkbox,
  317. .input-group-radio {
  318. display: inline-block;
  319. position: relative;
  320. font-size: 14px;
  321. color: #909090;
  322. }
  323. .input-group-checkbox label {
  324. display: block;
  325. cursor: pointer;
  326. }
  327. .input-group-checkbox label input[type="checkbox"],
  328. .input-group-radio label input[type="radio"] {
  329. position: absolute;
  330. opacity: 0;
  331. width: 1px;
  332. height: 1px;
  333. }
  334. .input-group-checkbox div input[type="checkbox"],
  335. .input-group-radio div input[type="radio"] {
  336. position: absolute;
  337. opacity: 0;
  338. width: 1px;
  339. height: 1px;
  340. }
  341. .input-group-checkbox .input-group-pack,
  342. .input-group-radio .input-group-pack {
  343. width: 20px;
  344. height: 20px;
  345. background-color: #ffffff;
  346. border: 1px #d3d3d3 solid;
  347. padding: 0;
  348. margin: 0 5px 0 0;
  349. position: relative;
  350. display: inline-block;
  351. vertical-align: middle;
  352. border-radius: 5px;
  353. overflow: hidden;
  354. top: -2px;
  355. }
  356. .input-group-radio .input-group-pack {
  357. border-radius: 50%;
  358. }
  359. .input-group-checkbox .input-group-pack.input-group-pack-disabled,
  360. .input-group-radio .input-group-pack.input-group-pack-disabled {
  361. background-color: #f0f0f0;
  362. }
  363. .input-group-checkbox .input-group-pack .tick {
  364. display: block;
  365. width: 12px;
  366. height: 2px;
  367. background: #17b3ec;
  368. margin: 8px 0 0 6px;
  369. -webkit-transform: rotate(-45deg);
  370. -moz-transform: rotate(-45deg);
  371. -ms-transform: rotate(-45deg);
  372. -o-transform: rotate(-45deg);
  373. transform: rotate(-45deg);
  374. position: relative;
  375. top: 50px;
  376. }
  377. .input-group-checkbox .input-group-pack .tick:after {
  378. content: '';
  379. width: 8px;
  380. height: 2px;
  381. background: #17b3ec;
  382. position: absolute;
  383. top: -3px;
  384. left: -5px;
  385. -webkit-transform: rotate(90deg);
  386. -moz-transform: rotate(90deg);
  387. -ms-transform: rotate(90deg);
  388. -o-transform: rotate(90deg);
  389. transform: rotate(90deg);
  390. }
  391. .input-group-radio .input-group-pack .disc {
  392. display: block;
  393. content: "" !important;
  394. width: 0px;
  395. height: 0px;
  396. border-radius: 50%;
  397. background-color: #4dcd70;
  398. margin: 4px;
  399. }
  400. .input-group-checkbox input[type="checkbox"]:checked~ .tick,
  401. .input-group-checkbox .input-group-pack.checked .tick {
  402. top: 0px;
  403. }
  404. .input-group-radio input[type="radio"]:checked~ .disc,
  405. .input-group-radio .input-group-pack.checked .disc {
  406. width: 10px;
  407. height: 10px;
  408. }
  409. .input-group-switch {
  410. position: relative;
  411. font-size: 16px;
  412. width: 52px;
  413. height: 32px;
  414. line-height: 1em;
  415. }
  416. .input-group-switch input {
  417. width: 52px;
  418. height: 32px;
  419. position: absolute;
  420. z-index: 10;
  421. border: none;
  422. background: none;
  423. -webkit-appearance: none;
  424. outline: none;
  425. }
  426. .input-group-switch input:before {
  427. content: '';
  428. width: 50px;
  429. height: 30px;
  430. border: 1px solid #e5e5e5;
  431. background-color: #fff;
  432. border-radius: 20px;
  433. cursor: pointer;
  434. display: inline-block;
  435. position: relative;
  436. vertical-align: middle;
  437. -webkit-user-select: none;
  438. user-select: none;
  439. -webkit-box-sizing: content-box;
  440. box-sizing: content-box;
  441. border-color: #dfdfdf;
  442. -webkit-box-shadow: #dfdfdf 0px 0px 0px 0px inset;
  443. box-shadow: #dfdfdf 0px 0px 0px 0px inset;
  444. -webkit-transition: border 0.4s, -webkit-box-shadow 0.4s;
  445. transition: border 0.4s, box-shadow 0.4s;
  446. -webkit-background-clip: content-box;
  447. background-clip: content-box;
  448. }
  449. .input-group-switch input:checked:before {
  450. border-color: #4cd964;
  451. -webkit-box-shadow: #4cd964 0px 0px 0px 16px inset;
  452. box-shadow: #4cd964 0px 0px 0px 16px inset;
  453. background-color: #4cd964;
  454. transition: border 0.4s, box-shadow 0.4s, background-color 1.2s;
  455. -webkit-transition: border 0.4s, -webkit-box-shadow 0.4s, background-color 1.2s;
  456. background-color: #4cd964;
  457. }
  458. .input-group-switch input:checked:after {
  459. left: 21px;
  460. }
  461. .input-group-switch input:after {
  462. content: '';
  463. width: 30px;
  464. height: 30px;
  465. position: absolute;
  466. top: 1px;
  467. left: 0;
  468. border-radius: 100%;
  469. background-color: #fff;
  470. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  471. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  472. -webkit-transition: left 0.2s;
  473. transition: left 0.2s;
  474. }
  475. .input-group-switch input.thread:before {
  476. content: '';
  477. width: 50px;
  478. height: 3px;
  479. border: 1px solid #e5e5e5;
  480. background-color: #e5e7ea;
  481. border-radius: 20px;
  482. cursor: pointer;
  483. display: inline-block;
  484. position: relative;
  485. vertical-align: middle;
  486. -webkit-user-select: none;
  487. user-select: none;
  488. -webkit-box-sizing: content-box;
  489. box-sizing: content-box;
  490. border-color: #dfdfdf;
  491. -webkit-box-shadow: #dfdfdf 0px 0px 0px 0px inset;
  492. box-shadow: #dfdfdf 0px 0px 0px 0px inset;
  493. -webkit-transition: border 0.4s, -webkit-box-shadow 0.4s;
  494. transition: border 0.4s, box-shadow 0.4s;
  495. -webkit-background-clip: content-box;
  496. background-clip: content-box;
  497. }
  498. .input-group-switch input.thread:checked:before {
  499. border-color: #4cd964;
  500. -webkit-box-shadow: #4cd964 0px 0px 0px 16px inset;
  501. box-shadow: #4cd964 0px 0px 0px 16px inset;
  502. background-color: #4cd964;
  503. transition: border 0.4s, box-shadow 0.4s, background-color 1.2s;
  504. -webkit-transition: border 0.4s, -webkit-box-shadow 0.4s, background-color 1.2s;
  505. background-color: #4cd964;
  506. }
  507. .input-group-switch input.thread:checked:after {
  508. left: 33px;
  509. }
  510. .input-group-switch input.thread:after {
  511. content: '';
  512. width: 20px;
  513. height: 20px;
  514. position: absolute;
  515. top: 3px;
  516. left: 0;
  517. border-radius: 100%;
  518. background-color: #fff;
  519. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  520. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  521. -webkit-transition: left 0.2s;
  522. transition: left 0.2s;
  523. }
  524. /* css c-list
  525. -----------------------------------------------------------------------------*/
  526. .list-icon {
  527. height: 8px;
  528. width: 8px;
  529. position: relative;
  530. display: inline-block;
  531. }
  532. .arrow-right {
  533. display: block;
  534. width: 8px;
  535. height: 8px;
  536. border: solid #cdcdcd;
  537. border-width: 2px 2px 0 0;
  538. -webkit-transform: rotate(45deg);
  539. -moz-transform: rotate(45deg);
  540. -ms-transform: rotate(45deg);
  541. -o-transform: rotate(45deg);
  542. transform: rotate(45deg);
  543. }
  544. .c-list-group {}
  545. .c-list-group h3 {
  546. padding: 6px 15px;
  547. background-color: #f9f9f9;
  548. font-size: 13px;
  549. color: #5b5b5b;
  550. margin: 0;
  551. vertical-align: middle;
  552. }
  553. .c-list {
  554. background-color: #fff;
  555. }
  556. .c-list> li,
  557. .c-list> .c-list-div {
  558. font-size: 15px;
  559. color: #333;
  560. position: relative;
  561. display: -webkit-box;
  562. display: box;
  563. margin-left: 15px;
  564. border-top: 1px solid #f1f1f1;
  565. }
  566. .c-list> .c-list-text {
  567. line-height: 20px;
  568. padding: 12px 15px 12px 0;
  569. }
  570. .c-list> .c-list-function {
  571. border-top: none;
  572. }
  573. .c-list> .c-list-function .c-list-info {
  574. border-top: 1px solid #f1f1f1;
  575. }
  576. .c-list> li:first-child,
  577. .c-list> .c-border-t:first-child,
  578. .c-list>li:first-child .c-border-t,
  579. .c-list> .c-list-function:first-child,
  580. .c-list> .c-list-function:first-child .c-list-info,
  581. .c-list> div:first-child .c-border-t,
  582. .c-list> div:first-child {
  583. border: 0;
  584. background-image: none
  585. }
  586. .c-list> .c-list-cover {
  587. padding-left: 15px !important;
  588. margin-left: 0 !important;
  589. }
  590. .c-list .c-list-info {
  591. -webkit-box-flex: 1;
  592. box-flex: 1;
  593. padding-right: 15px;
  594. display: box;
  595. display: -webkit-box;
  596. -webkit-box-orient: vertical;
  597. -webkit-box-pack: center;
  598. }
  599. .c-list h4 {
  600. color: #333 !important;
  601. }
  602. .c-list .c-list-info> h4 {
  603. font-size: 15px;
  604. line-height: 20px
  605. }
  606. .c-list .c-list-info> p {
  607. font-size: 13px;
  608. line-height: 20px;
  609. color: #909090;
  610. }
  611. .c-list .c-list-label {
  612. font-size: 13px !important;
  613. color: #909090 !important;
  614. padding: 10px 15px 10px 0!important;
  615. border-top: 1px dashed #e1e1e1 !important;
  616. }
  617. .c-list .c-list-key {
  618. margin-right: 15px;
  619. }
  620. .c-list .c-list-img {
  621. width: 100px;
  622. height: 68px;
  623. margin: 10px 10px 10px 0;
  624. position: relative
  625. }
  626. .c-list .c-list-img img {
  627. width: auto;
  628. height: 68px;
  629. }
  630. .c-list> .c-list-link:active {
  631. background-color: #e5e6e7;
  632. padding-left: 15px;
  633. margin-left: 0
  634. }
  635. .c-list-link:active,
  636. .c-list-link.c-border-t:active,
  637. .c-list-link:active+ .c-border-t,
  638. .c-list-link:active+ .c-border-t {
  639. background-image: none;
  640. border-top-color: #e5e6e7
  641. }
  642. .c-list .c-list-value {
  643. color: #909090;
  644. display: box;
  645. display: -webkit-box;
  646. -webkit-box-orient: vertical;
  647. -webkit-box-pack: center;
  648. }
  649. .c-list .c-list-title {}
  650. .c-list .c-list-link .c-list-value,
  651. .c-list .c-list-link .c-list-title {
  652. padding-right: 20px;
  653. }
  654. .c-list .c-list-badge,
  655. .c-list .c-list-action {
  656. font-size: 13px;
  657. color: #909090;
  658. position: absolute;
  659. height: 100%;
  660. right: 15px;
  661. display: box;
  662. display: -webkit-box;
  663. -webkit-box-orient: vertical;
  664. -webkit-box-pack: center;
  665. top: 0;
  666. }
  667. .c-list-link .c-list-badge,
  668. .c-list-link .c-list-action {
  669. right: 35px
  670. }
  671. .c-list-link .list-icon {
  672. position: absolute;
  673. right: 15px;
  674. top: 50%;
  675. margin-top: -4px;
  676. }
  677. .c-list .c-avatar-s,
  678. .c-list .c-avatar-m,
  679. .c-list .c-avatar-l {
  680. margin: 10px 15px 10px 0;
  681. overflow: hidden;
  682. display: -webkit-box;
  683. -webkit-box-pack: center;
  684. -webkit-box-align: center;
  685. }
  686. .c-list-indent-s {
  687. padding-right: 70px !important;
  688. }
  689. .c-list-indent-m {
  690. padding-right: 110px !important;
  691. }
  692. .c-list-action .input-group-checkbox .input-group-pack,
  693. .c-list-action .input-group-radio .input-group-pack {
  694. margin: 0 0 0 5px;
  695. }
  696. .c-avatar-s {
  697. width: 26px;
  698. height: 26px;
  699. }
  700. .c-avatar-m {
  701. width: 40px;
  702. height: 40px;
  703. }
  704. .c-avatar-l {
  705. width: 54px;
  706. height: 54px;
  707. }
  708. .c-avatar-s img,
  709. .c-avatar-m img,
  710. .c-avatar-l img {
  711. width: 100%;
  712. height: 100%;
  713. }
  714. .c-list-text .c-t-right {
  715. color: #909090 !important;
  716. }
  717. .c-list-text .c-t-right {
  718. padding-right: 0px;
  719. color: #909090;
  720. }
  721. .c-list-link .c-t-right {
  722. padding-right: 20px !important;
  723. }
  724. /* css search
  725. -----------------------------------------------------------------------------*/
  726. .c-ser-hold {
  727. width: 100%;
  728. height: 43px;
  729. background-color: #e8e8e8;
  730. padding: 6px 10px 0 10px;
  731. }
  732. .c-ser-into {
  733. background: #f2f2f2;
  734. height: 28px;
  735. line-height: 28px;
  736. border-radius: 5px;
  737. color: #8e8e93;
  738. padding: 0 8px;
  739. }
  740. .c-serdet {
  741. display: -webkit-box;
  742. display: box;
  743. padding: 7px 10px 0 10px;
  744. }
  745. .ser-icon {
  746. position: relative;
  747. display: inline-block;
  748. width: 13px;
  749. height: 13px;
  750. font-size: 1px;
  751. background: none;
  752. top: 1px;
  753. }
  754. .ser-icon:before,
  755. .ser-icon:after {
  756. content: "";
  757. position: absolute;
  758. left: 0;
  759. background: transparent;
  760. font-size: 1px;
  761. }
  762. .ser-icon-search:before {
  763. left: 1px;
  764. top: 1px;
  765. width: 9px;
  766. height: 9px;
  767. border: 1px solid #8e8e93;
  768. border-radius: 50%;
  769. -webkit-border-radius: 50%;
  770. -moz-border-radius: 50%;
  771. -o-border-radius: 50%;
  772. }
  773. .ser-icon-search:after {
  774. left: 9px;
  775. top: 11px;
  776. width: 5px;
  777. height: 1px;
  778. background: #8e8e93;
  779. transform: rotate(45deg);
  780. -webkit-transform: rotate(45deg);
  781. -moz-transform: rotate(45deg);
  782. -o-transform: rotate(45deg);
  783. -ms-transform: rotate(45deg);
  784. }
  785. .c-ser-back {
  786. width: 20px;
  787. -webkit-box-flex: 0;
  788. box-flex: 0;
  789. overflow: hidden;
  790. }
  791. .c-ser-back .si-right {
  792. display: block;
  793. width: 12px;
  794. height: 12px;
  795. border: solid #a3a3a7;
  796. border-width: 0 0 2px 2px;
  797. -webkit-transform: rotate(45deg);
  798. -moz-transform: rotate(45deg);
  799. -ms-transform: rotate(45deg);
  800. -o-transform: rotate(45deg);
  801. transform: rotate(45deg);
  802. margin: 7px 0 0 2px;
  803. float: left;
  804. }
  805. .c-ser-main {
  806. -webkit-box-flex: 1;
  807. box-flex: 1;
  808. background: #eeeff3;
  809. height: 28px;
  810. line-height: 28px;
  811. border-radius: 3px;
  812. font-size: 15px;
  813. color: #8e8e93;
  814. position: relative;
  815. padding-left: 25px;
  816. overflow: hidden;
  817. }
  818. .c-ser-main i {
  819. position: absolute;
  820. left: 7px;
  821. top: 7px;
  822. }
  823. .c-ser-input {
  824. width: 100%;
  825. background: #eeeff3;
  826. height: 22px;
  827. line-height: 22px;
  828. border: none;
  829. color: #8e8e93;
  830. border-radius: 5px;
  831. padding: 3px 5px 3px 0;
  832. }
  833. .c-ser-btn {
  834. margin-left: 10px;
  835. -webkit-box-flex: 0;
  836. box-flex: 0;
  837. }
  838. .c-ser-btn a {
  839. display: block;
  840. height: 30px;
  841. line-height: 30px;
  842. padding: 0 10px;
  843. background: #3aa7ed;
  844. color: #fff;
  845. font-size: 14px;
  846. border-radius: 4px;
  847. }
  848. .c-ser-canc {
  849. margin-left: 10px;
  850. -webkit-box-flex: 0;
  851. box-flex: 0;
  852. }
  853. .c-ser-canc a {
  854. display: block;
  855. height: 30px;
  856. line-height: 30px;
  857. padding: 0 5px;
  858. }
  859. .c-ser-main .input-clear {
  860. position: absolute;
  861. right: 6px;
  862. top: 6px;
  863. background: #7e7e7e;
  864. border-radius: 50%;
  865. width: 16px;
  866. height: 16px;
  867. text-align: center;
  868. }
  869. .c-ser-main .input-clear:before,
  870. .c-ser-main .input-clear:after {
  871. content: '';
  872. position: absolute;
  873. height: 2px;
  874. width: 10px;
  875. top: 7px;
  876. left: 3px;
  877. background: #fff;
  878. border-radius: 6px;
  879. }
  880. .c-ser-main .input-clear:before {
  881. -webkit-transform: rotate(45deg);
  882. -moz-transform: rotate(45deg);
  883. -ms-transform: rotate(45deg);
  884. -o-transform: rotate(45deg);
  885. transform: rotate(45deg);
  886. }
  887. .c-ser-main .input-clear:after {
  888. -webkit-transform: rotate(-45deg);
  889. -moz-transform: rotate(-45deg);
  890. -ms-transform: rotate(-45deg);
  891. -o-transform: rotate(-45deg);
  892. transform: rotate(-45deg);
  893. }
  894. /* buttons color
  895. -----------------------------------------------------------------------------*/
  896. .c-btn-4dcd70 {
  897. background-color: #4dcd70;
  898. }
  899. .c-btn-17b3ec {
  900. background-color: #17b3ec;
  901. }
  902. .c-btn-4dcd70:hover {
  903. background-color: #45b865;
  904. }
  905. .c-btn-fff {
  906. background-color: #ffffff;
  907. color: #999999;
  908. border: #e1e1e1 1px solid;
  909. }
  910. .c-btn-fff:hover {
  911. background-color: #e5e5e5;
  912. }
  913. .c-btn-588cd5 {
  914. background-color: #588cd5;
  915. }
  916. .c-btn-588cd5:hover {
  917. background-color: #4680d0;
  918. }
  919. .c-btn-fff-other {
  920. background-color: #ffffff;
  921. color: #4dcd70;
  922. border: #e1e1e1 1px solid;
  923. }
  924. .c-btn-fff-other:hover {
  925. background-color: #e5e5e5;
  926. }
  927. /* css ui-arrow
  928. -----------------------------------------------------------------------------*/
  929. .ui-arrow,
  930. .ui-arrow s {
  931. position: relative;
  932. display: block;
  933. font-size: 0;
  934. line-height: 0;
  935. width: 0;
  936. height: 0;
  937. border-color: transparent;
  938. border-style: dashed;
  939. border-width: 5px;
  940. }
  941. .ui-arrow-r,
  942. .ui-arrow-r s {
  943. border-left-color: #aaa;
  944. border-left-style: solid;
  945. }
  946. .ui-arrow-r s {
  947. border-left-color: #fff;
  948. position: absolute;
  949. left: -7px;
  950. top: -5px;
  951. }
  952. .ui-arrow-l,
  953. .ui-arrow-l s {
  954. border-right-color: #aaa;
  955. border-right-style: solid;
  956. }
  957. .ui-arrow-l s {
  958. border-right-color: #fff;
  959. position: absolute;
  960. right: -7px;
  961. top: -5px;
  962. }
  963. .ui-arrow-t,
  964. .ui-arrow-t s {
  965. border-bottom-color: #aaa;
  966. border-bottom-style: solid;
  967. }
  968. .ui-arrow-t s {
  969. border-bottom-color: #fff;
  970. position: absolute;
  971. left: -5px;
  972. top: -3px;
  973. }
  974. .ui-arrow-b,
  975. .ui-arrow-b s {
  976. border-top-color: #aaa;
  977. border-top-style: solid;
  978. }
  979. .ui-arrow-b s {
  980. border-top-color: #fff;
  981. position: absolute;
  982. left: -5px;
  983. bottom: -3px;
  984. }
  985. /* css getmore
  986. -----------------------------------------------------------------------------*/
  987. .c-get-more {
  988. width: 100%;
  989. }
  990. .c-get-more a {
  991. display: block;
  992. text-align: center;
  993. line-height: 35px;
  994. font-size: 14px;
  995. color: #909090;
  996. }
  997. .c-get-more a.blue {
  998. color: #007cd9;
  999. }
  1000. body {
  1001. font-size: 14px;
  1002. color: #333;
  1003. background-color: #f9f9f9;
  1004. }
  1005. .c-ccc {
  1006. color: #ccc;
  1007. }
  1008. .c-e60012 {
  1009. color: #e60012;
  1010. }
  1011. .c-37a6eb {
  1012. color: #37a6eb;
  1013. }
  1014. .bgc-ff8100 {
  1015. background-color: #ff8100;
  1016. }
  1017. .bgc-4dcd70 {
  1018. background-color: #4dcd70;
  1019. }
  1020. .bgc-bbbbbb {
  1021. background-color: #bbbbbb;
  1022. }
  1023. /* position*/
  1024. .r-pos {
  1025. right: 15px;
  1026. top: 16px;
  1027. }
  1028. .r-arrow-r {
  1029. right: -5px;
  1030. top: 16px;
  1031. }
  1032. /*挂号成功*/
  1033. .c-4ed964 {
  1034. color: #4ed964;
  1035. }
  1036. .win-message {
  1037. background: #fffce5;
  1038. padding: 10px 10px 25px 10px;
  1039. font-size: 13px;
  1040. line-height: 1.6;
  1041. position: relative;
  1042. }
  1043. .win-message .icon-guanbi2 {
  1044. position: absolute;
  1045. right: 10px;
  1046. bottom: 3px;
  1047. font-size: 18px;
  1048. color: #e71f19;
  1049. }
  1050. .win-register {
  1051. text-align: center;
  1052. }
  1053. .win-detail {
  1054. border-top: 1px solid #f2f2f2;
  1055. padding: 10px 0;
  1056. }
  1057. .win-detail> .c-list-text {
  1058. padding: 3px 10px 3px 0px;
  1059. }
  1060. .win-detail> li {
  1061. border-top: none;
  1062. font-size: 13px;
  1063. }
  1064. .win-detail h4 {
  1065. color: #909090 !important;
  1066. }
  1067. .b-height i,
  1068. iconfont {
  1069. font-size: 60px;
  1070. }
  1071. .b-height {
  1072. height: 80px;
  1073. height: 80px;
  1074. line-height: 80px;
  1075. text-align: center
  1076. }
  1077. .doc-suggst {}
  1078. .doc-suggst-top {
  1079. line-height: 30px;
  1080. padding: 0 10px;
  1081. font-size: 13px;
  1082. color: #5b5b5b;
  1083. border-bottom: 1px solid #f2f2f2;
  1084. background: #fff;
  1085. }
  1086. .doc-suggst li {
  1087. display: box;
  1088. display: -webkit-box;
  1089. position: relative;
  1090. font-size: 13px;
  1091. color: #909090;
  1092. background: #fff;
  1093. }
  1094. .doc-suggst li:active {
  1095. background: #e5e6e7;
  1096. }
  1097. .doc-suggst li.s-nolink:active {
  1098. background: #fff;
  1099. }
  1100. .doc-suggst .s-link:active {
  1101. background: #e5e6e7;
  1102. }
  1103. .doc-avatar {
  1104. -webkit-box-flex: 0;
  1105. box-flex: 0;
  1106. width: 45px;
  1107. height: 45px;
  1108. border-radius: 50%;
  1109. overflow: hidden;
  1110. margin: 15px 10px;
  1111. }
  1112. .doc-avatar img {
  1113. width: 45px;
  1114. height: 45px;
  1115. border-radius: 50%;
  1116. }
  1117. .doc-info {
  1118. -webkit-box-flex: 1;
  1119. box-flex: 1;
  1120. display: box;
  1121. display: -webkit-box;
  1122. -webkit-box-orient: vertical;
  1123. -webkit-box-pack: center;
  1124. border-top: 1px solid #f2f2f2;
  1125. padding-top: 10px;
  1126. padding-bottom: 10px;
  1127. }
  1128. .doc-info h4 {
  1129. line-height: 18px;
  1130. margin-bottom: 2px;
  1131. word-break: break-all;
  1132. }
  1133. .doc-suggst li:first-child .doc-info {
  1134. border-top: none;
  1135. }
  1136. .hosp-avatar {
  1137. -webkit-box-flex: 0;
  1138. box-flex: 0;
  1139. width: 75px;
  1140. height: 55px;
  1141. overflow: hidden;
  1142. margin: 15px 10px;
  1143. position: relative;
  1144. }
  1145. .hosp-avatar img {
  1146. width: 75px;
  1147. height: 55px;
  1148. border-radius: 5px;
  1149. }
  1150. .hosp-avatar .hosp-lv {
  1151. position: absolute;
  1152. width: 50px;
  1153. height: 13px;
  1154. line-height: 13px;
  1155. text-align: center;
  1156. background: #f60;
  1157. position: absolute;
  1158. left: -14px;
  1159. top: 5px;
  1160. transform: rotate(-45deg);
  1161. -webkit-transform: rotate(-45deg);
  1162. font-size: 10px;
  1163. color: #fff;
  1164. }
  1165. .hosp-address {
  1166. padding-right: 50px;
  1167. position: relative;
  1168. }
  1169. .hosp-address .hosp-pack {
  1170. position: absolute;
  1171. right: 0;
  1172. line-height: 20px;
  1173. top: 0;
  1174. color: #ccc;
  1175. }
  1176. .doc-suggst-charge {
  1177. border-top: 1px solid #f2f2f2;
  1178. padding: 5px 10px
  1179. }
  1180. .charge-mess {
  1181. -webkit-box-flex: 1;
  1182. box-flex: 1;
  1183. display: box;
  1184. display: -webkit-box;
  1185. -webkit-box-orient: vertical;
  1186. -webkit-box-pack: center;
  1187. }
  1188. .charge-link {
  1189. -webkit-box-flex: 0;
  1190. box-flex: 0;
  1191. width: 50px;
  1192. display: box;
  1193. display: -webkit-box;
  1194. -webkit-box-orient: vertical;
  1195. -webkit-box-pack: center;
  1196. }
  1197. .doc-suggst li .arrow-right {
  1198. position: absolute;
  1199. top: 50%;
  1200. margin-top: -4px;
  1201. right: 10px;
  1202. }
  1203. .doc-suggst-order li {
  1204. display: block;
  1205. border-top: 1px solid #e1e1e1;
  1206. border-bottom: 1px solid #e1e1e1;
  1207. margin-bottom: 10px;
  1208. }
  1209. .doc-suggst-order li .doc-info {
  1210. border-top: none;
  1211. }
  1212. .do-hosp {
  1213. line-height: 35px;
  1214. font-size: 13px;
  1215. padding: 0 10px;
  1216. border-bottom: 1px solid #f2f2f2;
  1217. }
  1218. .do-mess {
  1219. display: box;
  1220. display: -webkit-box;
  1221. }
  1222. .do-state {
  1223. line-height: 37px;
  1224. font-size: 13px;
  1225. padding: 0 10px;
  1226. border-top: 1px solid #f2f2f2;
  1227. }
  1228. .do-state a {
  1229. display: block;
  1230. width: 75px;
  1231. height: 25px;
  1232. line-height: 25px;
  1233. text-align: center;
  1234. background: #4dcd70;
  1235. color: #fff;
  1236. font-size: 13px;
  1237. border: 1px solid #4dcd70;
  1238. border-radius: 3px;
  1239. margin-top: 5px;
  1240. }
  1241. .do-state a:active {
  1242. background: #34b758;
  1243. }
  1244. .do-state a.state-again {
  1245. background: #fff;
  1246. border: 1px solid #e1e1e1;
  1247. color: #4dcd70;
  1248. }
  1249. .do-state a.state-cancle {
  1250. background: #ccc;
  1251. border: 1px solid #ccc;
  1252. color: #fff;
  1253. }
  1254. .do-state a.state-again:active {
  1255. background: #d9d7d7;
  1256. color: #fff;
  1257. }
  1258. .must-tb {
  1259. color: #ff8100;
  1260. display: inline-block;
  1261. margin-right: 5px;
  1262. }
  1263. .state-hold {
  1264. width: 69px;
  1265. height: 19px;
  1266. position: absolute;
  1267. right: 0;
  1268. top: 0;
  1269. }
  1270. .state-hold div {
  1271. float: right;
  1272. width: 45px;
  1273. height: 19px;
  1274. line-height: 19px;
  1275. background: #abdaf0;
  1276. position: relative;
  1277. border-radius: 0 0 0 50px;
  1278. font-size: 10px;
  1279. color: #fff;
  1280. }
  1281. .state-hold div:before {
  1282. content: "";
  1283. position: absolute;
  1284. width: 20px;
  1285. height: 19px;
  1286. top: 0;
  1287. left: -10px;
  1288. background: #abdaf0;
  1289. -webkit-transform: skewX(40deg);
  1290. transform: skewX(40deg);
  1291. border-radius: 0 0 0 8px;
  1292. }
  1293. .state-hold div span {
  1294. display: block;
  1295. width: 54px;
  1296. height: 19px;
  1297. line-height: 19px;
  1298. position: absolute;
  1299. right: 0px;
  1300. top: 0;
  1301. z-index: 500;
  1302. text-align: center;
  1303. }
  1304. .no-sched div {
  1305. background: #ccc;
  1306. }
  1307. .no-sched div:before {
  1308. background: #ccc;
  1309. }
  1310. .lih25 {
  1311. line-height: 25px !important;
  1312. }
  1313. .dis-box {
  1314. display: box;
  1315. display: -webkit-box;
  1316. }
  1317. .datum-list {
  1318. width: 92px;
  1319. color: #909090;
  1320. display: box;
  1321. display: -webkit-box;
  1322. -webkit-box-orient: vertical;
  1323. -webkit-box-pack: center;
  1324. }
  1325. .datum-right {
  1326. border-top: 1px solid #f1f1f1;
  1327. border: 0;
  1328. background-image: none;
  1329. -webkit-box-flex: 1;
  1330. box-flex: 1;
  1331. display: box;
  1332. display: -webkit-box;
  1333. -webkit-box-orient: vertical;
  1334. -webkit-box-pack: center;
  1335. }
  1336. .bottom-box {
  1337. padding-left: 10px;
  1338. padding-right: 10px;
  1339. }
  1340. .bottom-box a.c-btn {
  1341. width: 48%;
  1342. padding: 10px 5px;
  1343. border-radius: 3px;
  1344. }
  1345. .bottom-box a.c-btn-fff {
  1346. color: #333;
  1347. }
  1348. .bottom-box {
  1349. box-sizing: border-box;
  1350. }
  1351. .bottom-box a {
  1352. box-sizing: border-box;
  1353. }
  1354. .bot-b {
  1355. border: 1px solid #4dcd70;
  1356. }
  1357. .h55 {
  1358. height: 55px;
  1359. }
  1360. .help-tip {
  1361. padding: 10px 15px 25px 15px;
  1362. width: 100%;
  1363. text-align: center;
  1364. }
  1365. .htposi {
  1366. position: fixed;
  1367. left: 0;
  1368. bottom: 0;
  1369. z-index: 500;
  1370. background-color: #f9f9f9;
  1371. }
  1372. /*挂号失败*/
  1373. .group-box {
  1374. line-height: 30px;
  1375. }
  1376. .y-btn {
  1377. width: 62px;
  1378. height: 26px;
  1379. line-height: 26px;
  1380. text-align: center;
  1381. border-radius: 4px;
  1382. padding: 0px 2px
  1383. }
  1384. .y-btn-right {
  1385. right: 15px;
  1386. top: 9px;
  1387. }
  1388. .c-warp {
  1389. width: 100%;
  1390. height: 100%;
  1391. background: rgba(0, 0, 0, .8);
  1392. position: fixed;
  1393. left: 0;
  1394. top: 0;
  1395. z-index: 500;
  1396. }
  1397. .close-r {
  1398. right: 20px;
  1399. top: 60px;
  1400. font-size: px;
  1401. border-radius: 50%;
  1402. width: 20px;
  1403. height: 20px;
  1404. text-align: center;
  1405. line-height: 20px;
  1406. }
  1407. .ui-arrow2,
  1408. .ui-arrow2 s {
  1409. position: relative;
  1410. display: block;
  1411. font-size: 0;
  1412. line-height: 0;
  1413. width: 0;
  1414. height: 0;
  1415. border-color: transparent;
  1416. border-style: dashed;
  1417. border-width: 7px;
  1418. }
  1419. .ui-arrow-r2,
  1420. .ui-arrow-r2 s {
  1421. border-left-color: #aaa;
  1422. border-left-style: solid;
  1423. }
  1424. .ui-arrow-r2 s {
  1425. border-left-color: #333;
  1426. position: absolute;
  1427. left: -9px;
  1428. top: -7px;
  1429. }
  1430. .ui-arrow-b2,
  1431. .ui-arrow-b2 s {
  1432. border-top-color: #aaa;
  1433. border-top-style: solid;
  1434. }
  1435. .ui-arrow-b2 s {
  1436. border-top-color: #333;
  1437. position: absolute;
  1438. left: -7px;
  1439. bottom: -5px;
  1440. }
  1441. .c-nowrap-multi4 {
  1442. display: -webkit-box;
  1443. overflow: hidden;
  1444. text-overflow: ellipsis;
  1445. -webkit-box-orient: vertical;
  1446. -webkit-line-clamp: 4;
  1447. }
  1448. .over-y {
  1449. overflow: auto;
  1450. width: 100%;
  1451. height: 100%;
  1452. }
  1453. /*申请开通*/
  1454. .h-box {
  1455. line-height: 40px;
  1456. }
  1457. .r-textarea {
  1458. width: 100%;
  1459. border: 0;
  1460. padding: 0;
  1461. resize: none;
  1462. background: #fff;
  1463. }
  1464. /*预约详情*/
  1465. .det-list {
  1466. width: 100px;
  1467. color: #333;
  1468. display: box;
  1469. display: -webkit-box;
  1470. -webkit-box-orient: vertical;
  1471. -webkit-box-pack: center;
  1472. }
  1473. .det-right {
  1474. text-align: right;
  1475. border: 0;
  1476. background-image: none;
  1477. -webkit-box-flex: 1;
  1478. box-flex: 1;
  1479. display: box;
  1480. display: -webkit-box;
  1481. -webkit-box-orient: vertical;
  1482. -webkit-box-pack: center;
  1483. }
  1484. /*我的预约信息*/
  1485. .pay-t {
  1486. right: 15px;
  1487. top: -6px;
  1488. width: 60px;
  1489. height: 24px;
  1490. line-height: 24px;
  1491. padding: 0px 2px
  1492. }
  1493. .pay-button {
  1494. right: 13px;
  1495. top: 28px;
  1496. width: 62px;
  1497. height: 28px;
  1498. line-height: 28px;
  1499. text-align: center;
  1500. border-radius: 4px;
  1501. padding: 0px 2px
  1502. }
  1503. .quit-button {
  1504. right: 12px;
  1505. top: 50%;
  1506. margin-top: -14px;
  1507. width: 62px;
  1508. height: 28px;
  1509. line-height: 28px;
  1510. text-align: center;
  1511. border-radius: 4px;
  1512. padding: 0px 2px
  1513. }
  1514. .sur-minute {
  1515. right: 15px;
  1516. top: 58px;
  1517. }
  1518. .tri-left {
  1519. width: 0px;
  1520. height: 0px;
  1521. border-top: 5px solid transparent;
  1522. border-bottom: 0px solid transparent;
  1523. right: 79px;
  1524. top: -6px
  1525. }
  1526. .tri-right {
  1527. width: 0px;
  1528. height: 0px;
  1529. border-top: 5px solid transparent;
  1530. border-bottom: 0px solid transparent;
  1531. right: 10px;
  1532. top: -6px
  1533. }
  1534. .b-rdb6f00 {
  1535. border-right: 5px solid #db6f00;
  1536. }
  1537. .b-ldb6f00 {
  1538. border-left: 5px solid #db6f00;
  1539. }
  1540. .b-r399752 {
  1541. border-right: 5px solid #399752;
  1542. }
  1543. .b-l399752 {
  1544. border-left: 5px solid #399752;
  1545. }
  1546. .b-r909090 {
  1547. border-right: 5px solid #909090;
  1548. }
  1549. .b-l909090 {
  1550. border-left: 5px solid #909090;
  1551. }
  1552. .bgc-ccc {
  1553. background-color: #ccc;
  1554. }
  1555. .b-bor {
  1556. border: 1px solid #dcdcdc;
  1557. border-radius: 4px;
  1558. }
  1559. .mess-con {
  1560. background: #fff;
  1561. padding: 10px 15px;
  1562. line-height: 22px;
  1563. }
  1564. .lih33 {
  1565. line-height: 33px;
  1566. }
  1567. .h35 {
  1568. height: 35px;
  1569. }
  1570. .h40 {
  1571. height: 40px;
  1572. }
  1573. .appoint-lab {
  1574. width: 100%;
  1575. height: 40px;
  1576. position: fixed;
  1577. left: 0;
  1578. top: 0;
  1579. z-index: 500;
  1580. background-color: #fff;
  1581. }
  1582. .appoint-lab a {
  1583. display: block;
  1584. width: 50%;
  1585. line-height: 39px;
  1586. box-sizing: border-box;
  1587. -webkit-box-sizing: border-box;
  1588. -moz-box-sizing: border-box;
  1589. -ms-box-sizing: border-box;
  1590. float: left;
  1591. text-align: center;
  1592. position: relative;
  1593. z-index: 502;
  1594. color: #333;
  1595. }
  1596. .appoint-lab a.hit {
  1597. border-bottom: 2px solid #4dcd70;
  1598. color: #4dcd70;
  1599. }
  1600. .appoint-lab:before {
  1601. content: '';
  1602. display: block;
  1603. width: 50%;
  1604. height: 27px;
  1605. border-right: 1px solid #e1e1e1;
  1606. position: absolute;
  1607. left: 0;
  1608. top: 50%;
  1609. margin-top: -13px;
  1610. z-index: 501;
  1611. }
  1612. .appoint-con li .doc-warp {
  1613. padding-right: 85px;
  1614. }
  1615. /*选择医生*/
  1616. .noopen-tip i {
  1617. margin: 70px 0 0 0;
  1618. }
  1619. .noopen-tip .openbtn {
  1620. width: 100px;
  1621. height: 35px;
  1622. line-height: 35px !important;
  1623. }
  1624. .doc-suggst-lab {
  1625. height: 45px;
  1626. }
  1627. .doc-suggst-lab ul {
  1628. width: 100%;
  1629. height: 44px;
  1630. display: box;
  1631. display: -webkit-box;
  1632. position: fixed;
  1633. left: 0;
  1634. top: 0;
  1635. background: #fff;
  1636. z-index: 600;
  1637. border-bottom: 1px solid #e1e1e1;
  1638. }
  1639. .doc-suggst-lab ul.top35 {
  1640. top: 35px;
  1641. }
  1642. .doc-suggst-lab ul.docpage {
  1643. position: relative;
  1644. }
  1645. .doc-suggst-lab li {
  1646. -webkit-box-flex: 1;
  1647. box-flex: 1;
  1648. width: 1px;
  1649. text-align: center;
  1650. }
  1651. .doc-suggst-lab li a {
  1652. display: block;
  1653. width: 100%;
  1654. line-height: 44px;
  1655. font-size: 13px;
  1656. color: #909090;
  1657. position: relative;
  1658. }
  1659. .doc-suggst-lab li a.curr {
  1660. color: #4dcd70;
  1661. }
  1662. .doc-suggst-lab li a.curr:before {
  1663. content: '';
  1664. display: block;
  1665. width: 100%;
  1666. height: 3px;
  1667. background: #4dcd70;
  1668. position: absolute;
  1669. left: 0;
  1670. bottom: -1px;
  1671. }
  1672. .h45 {
  1673. height: 45px;
  1674. }
  1675. .h55 {
  1676. height: 55px;
  1677. }
  1678. .date-top {
  1679. width: 100%;
  1680. height: 45px;
  1681. display: box;
  1682. display: -webkit-box;
  1683. background: #fff;
  1684. position: fixed;
  1685. left: 0;
  1686. top: 45px;
  1687. z-index: 600;
  1688. padding: 0 10px;
  1689. border-bottom: 1px solid #e1e1e1;
  1690. }
  1691. .date-top .presel {
  1692. display: block;
  1693. width: 44px;
  1694. height: 44px;
  1695. line-height: 1.4;
  1696. font-size: 12px;
  1697. text-align: center;
  1698. display: box;
  1699. display: -webkit-box;
  1700. -webkit-box-orient: vertical;
  1701. -webkit-box-pack: center;
  1702. color: #666;
  1703. }
  1704. .date-top .presel.curr {
  1705. background-color: #abdaf0;
  1706. color: #fff;
  1707. }
  1708. .date-top .dtmid {
  1709. box-flex: 1;
  1710. -webkit-box-flex: 1;
  1711. -moz-box-flex: 1;
  1712. position: relative;
  1713. padding: 0 20px;
  1714. }
  1715. .dtmid-time {
  1716. width: 100%;
  1717. height: 44px;
  1718. overflow: hidden;
  1719. position: relative;
  1720. }
  1721. .date-top .dtmid ul {
  1722. display: block;
  1723. width: 1000px;
  1724. position: absolute;
  1725. }
  1726. .date-top .dtmid li {
  1727. float: left;
  1728. color: #666;
  1729. }
  1730. .date-top .dtmid .arrow-right {
  1731. position: absolute;
  1732. right: 3px;
  1733. top: 50%;
  1734. margin-top: -5px;
  1735. }
  1736. .date-top .dtmid .arrow-right:first-child {
  1737. right: auto;
  1738. left: 3px;
  1739. transform: rotate(-135deg);
  1740. -webkit-transform: rotate(-135deg);
  1741. -moz-transform: rotate(-135deg);
  1742. }
  1743. .do-sched {
  1744. border-top: 1px dashed #f2f2f2;
  1745. margin-left: 10px;
  1746. padding: 8px 0;
  1747. }
  1748. .do-sched dl {
  1749. display: box;
  1750. display: -webkit-box;
  1751. line-height: 30px;
  1752. padding: 5px 10px 5px 0;
  1753. }
  1754. .do-sched dl dd {
  1755. box-flex: 1;
  1756. -webkit-box-flex: 1;
  1757. font-size: 13px;
  1758. }
  1759. .do-sched a.sched-btn {
  1760. display: inline-block;
  1761. width: 70px;
  1762. height: 30px;
  1763. line-height: 30px;
  1764. text-align: center;
  1765. background: #4dcd70;
  1766. color: #fff;
  1767. font-size: 13px;
  1768. border-radius: 2px;
  1769. }
  1770. .do-sched a.disab {
  1771. background: #ccc;
  1772. }
  1773. .do-sched a.sched-btn:active {
  1774. background: #34b758;
  1775. }
  1776. .do-sched a.disab:active {
  1777. background: #ccc;
  1778. }
  1779. .doc-sched {
  1780. line-height: 35px;
  1781. background: #fff;
  1782. position: relative;
  1783. padding: 0 10px;
  1784. font-size: 13px;
  1785. color: #ff8100;
  1786. }
  1787. .doc-sched .arrow-right {
  1788. position: absolute;
  1789. right: 10px;
  1790. top: 10px;
  1791. transform: rotate(135deg);
  1792. -webkit-transform: rotate(135deg);
  1793. -moz-transform: rotate(135deg);
  1794. transition: all .3s ease;
  1795. }
  1796. .doc-sched .arrow-right.ashow {
  1797. transform: rotate(-45deg);
  1798. -webkit-transform: rotate(-45deg);
  1799. -moz-transform: rotate(-45deg);
  1800. top: 16px;
  1801. }
  1802. .doc-suggst-tip {
  1803. width: 100%;
  1804. height: 35px;
  1805. line-height: 34px;
  1806. background: #f9f9f9;
  1807. position: fixed;
  1808. left: 0;
  1809. top: 0;
  1810. z-index: 600;
  1811. border-bottom: 1px solid #e1e1e1;
  1812. color: #5b5b5b;
  1813. font-size: 15px;
  1814. padding: 0 10px;
  1815. }
  1816. .doc-suggst-tip .icon-yiwen {
  1817. position: absolute;
  1818. right: 10px;
  1819. top: 0px;
  1820. font-size: 18px;
  1821. color: #0066ff;
  1822. }
  1823. /*首页*/
  1824. .search-hold {
  1825. height: 45px;
  1826. }
  1827. .search-hold .c-ser-hold {
  1828. height: 45px;
  1829. position: fixed;
  1830. left: 0;
  1831. top: 0;
  1832. background: #fff;
  1833. z-index: 800;
  1834. padding: 8px 10px 0 10px;
  1835. display: box;
  1836. display: -webkit-box;
  1837. display: -moz-box;
  1838. }
  1839. .search-hold .ser-area {
  1840. box-flex: 0;
  1841. -webkit-box-flex: 0;
  1842. -moz-box-flex: 0;
  1843. max-width: 100px;
  1844. padding-right: 23px;
  1845. position: relative;
  1846. line-height: 30px;
  1847. color: #37a6eb;
  1848. margin-right: 4px;
  1849. }
  1850. .search-hold .ser-area .arrow-right {
  1851. display: inline-block;
  1852. -webkit-transform: rotate(135deg);
  1853. -moz-transform: rotate(135deg);
  1854. transform: rotate(135deg);
  1855. position: absolute;
  1856. right: 6px;
  1857. top: 8px;
  1858. }
  1859. .search-hold .c-ser-into {
  1860. box-flex: 1;
  1861. -webkit-box-flex: 1;
  1862. -moz-box-flex: 1;
  1863. }
  1864. .index-tit {
  1865. line-height: 32px;
  1866. }
  1867. .index-myyy {
  1868. background: #fff;
  1869. }
  1870. .index-myyy .iy-tit {
  1871. line-height: 30px;
  1872. padding: 5px 15px 0 15px;
  1873. }
  1874. .index-myyy .iy-tit a {
  1875. color: #007cd9;
  1876. }
  1877. .index-myyy .c-list-action {
  1878. width: 85px;
  1879. text-align: right;
  1880. }
  1881. .index-myyy .c-list-action a.c-btn {
  1882. width: 75px;
  1883. height: 30px;
  1884. line-height: 29px !important;
  1885. padding: 0;
  1886. font-size: 15px;
  1887. }
  1888. .c-list-indent-h {
  1889. padding-right: 80px !important;
  1890. }
  1891. .index-myyy .myhosp {
  1892. display: inline-block;
  1893. width: auto;
  1894. max-width: 100%;
  1895. position: relative;
  1896. font-size: 13px;
  1897. color: #909090;
  1898. padding-right: 34px;
  1899. }
  1900. .htit10 {
  1901. height: 10px;
  1902. background: #f5f5f5;
  1903. }
  1904. .index-hosp .ih-top {
  1905. height: 10px;
  1906. background: #f5f5f5;
  1907. }
  1908. .htit35 {
  1909. height: 35px;
  1910. background: #fff;
  1911. }
  1912. .itfixed {
  1913. width: 100%;
  1914. position: fixed;
  1915. left: 0;
  1916. top: 49px;
  1917. z-index: 810;
  1918. }
  1919. .index-hosp .ih-tit {
  1920. line-height: 25px;
  1921. padding: 8px 15px 2px 15px;
  1922. background: #fff;
  1923. font-size: 15px;
  1924. }
  1925. .ihfixed {
  1926. width: 100%;
  1927. position: fixed;
  1928. left: 0;
  1929. top: 59px;
  1930. z-index: 810;
  1931. border-bottom: 1px solid #e1e1e1;
  1932. }
  1933. .index-hosp .icon-dizhi {
  1934. display: inline-block;
  1935. vertical-align: middle;
  1936. margin: 0 2px 3px 0;
  1937. }
  1938. .index-hosp .ih-tit .arrow-right {
  1939. display: inline-block;
  1940. -webkit-transform: rotate(135deg);
  1941. -moz-transform: rotate(135deg);
  1942. transform: rotate(135deg);
  1943. margin: 0 0 2px 5px;
  1944. }
  1945. .index-hosp .c-list .c-list-info h4 {
  1946. float: left;
  1947. width: auto;
  1948. max-width: 100%;
  1949. padding-right: 34px;
  1950. position: relative;
  1951. color: #666;
  1952. }
  1953. .mysj {
  1954. display: inline-block;
  1955. width: 30px;
  1956. height: 15px;
  1957. line-height: 15px;
  1958. background: #f47f1f;
  1959. font-size: 10px;
  1960. color: #fff;
  1961. text-align: center;
  1962. border-radius: 3px;
  1963. position: absolute;
  1964. right: 0;
  1965. top: 3px;
  1966. }
  1967. .index-myyy .c-list-indent-h {
  1968. padding-right: 85px !important;
  1969. }
  1970. .search-result {}
  1971. .ser-nomess {
  1972. text-align: center;
  1973. padding: 0 15px;
  1974. line-height: 20px;
  1975. font-size: 14px;
  1976. }
  1977. .noopen {
  1978. display: inline-block;
  1979. width: 110px;
  1980. height: 110px;
  1981. background: url(../images/search-tb.png) no-repeat;
  1982. background-size: 100% 100%;
  1983. -webkit-background-size: 100% 100%;
  1984. -moz-background-size: 100% 100%;
  1985. -ms-background-size: 100% 100%;
  1986. }
  1987. .ser-nomess i {
  1988. display: inline-block;
  1989. margin: 90px 0 20px 0;
  1990. font-size: 50px;
  1991. color: #ccc;
  1992. }
  1993. .ser-doclist {
  1994. background: #fff;
  1995. }
  1996. .sd-num {
  1997. display: block;
  1998. line-height: 33px;
  1999. color: #909090;
  2000. font-size: 13px;
  2001. background: #f9f9f9;
  2002. }
  2003. .sd-more {
  2004. display: block;
  2005. line-height: 40px;
  2006. text-align: center;
  2007. color: #007cd9;
  2008. border-top: 1px solid #f2f2f2;
  2009. }
  2010. .ser-hosplist .c-list .c-list-info h4 {
  2011. float: left;
  2012. width: auto;
  2013. max-width: 100%;
  2014. padding-right: 34px;
  2015. position: relative;
  2016. color: #666;
  2017. }
  2018. .ser-hosplist {
  2019. background: #fff;
  2020. }
  2021. .ser-hosplist .c-list .c-list-info {
  2022. padding-right: 40px;
  2023. }
  2024. .ser-doclist .c-list .c-list-info h4 {
  2025. padding-right: 0;
  2026. }
  2027. .ser-doclist .c-list .c-list-info {
  2028. padding-right: 40px;
  2029. }
  2030. .ser-defu-his {}
  2031. .ser-defu-his li {
  2032. line-height: 45px;
  2033. background: #fff;
  2034. padding: 0 15px;
  2035. border-top: 1px solid #f2f2f2;
  2036. }
  2037. .ser-defu-his li:first-child {
  2038. border-top: none;
  2039. }
  2040. .ser-defu-his li .icon-lishijilu {
  2041. display: inline-block;
  2042. vertical-align: middle;
  2043. margin-bottom: 1px;
  2044. }
  2045. .ser-defu-tip {
  2046. width: 200px;
  2047. margin: 60px auto 0 auto;
  2048. }
  2049. .ser-defu-tip .st-tit {
  2050. font-size: 19px;
  2051. color: #909090;
  2052. text-align: center;
  2053. line-height: 45px;
  2054. }
  2055. .ser-defu-tip .st-type {
  2056. border-top: 1px solid #f2f2f2;
  2057. overflow: hidden;
  2058. padding: 10px 0;
  2059. }
  2060. .ser-defu-tip .st-type span {
  2061. display: block;
  2062. width: 50%;
  2063. float: left;
  2064. text-align: center;
  2065. font-size: 12px;
  2066. color: #909090;
  2067. line-height: 1.2;
  2068. }
  2069. .ser-defu-tip .st-type span .iconfont {
  2070. font-size: 26px;
  2071. }
  2072. .noopen {
  2073. display: inline-block;
  2074. width: 110px;
  2075. height: 110px;
  2076. background: url(../images/search-tb.png) no-repeat;
  2077. background-size: 100% 100%;
  2078. -webkit-background-size: 100% 100%;
  2079. -moz-background-size: 100% 100%;
  2080. -ms-background-size: 100% 100%;
  2081. }
  2082. /* 选择地区 */
  2083. .area-top {
  2084. height: 40px;
  2085. line-height: 40px;
  2086. background: #fff;
  2087. padding: 0 10px;
  2088. position: relative;
  2089. z-index: 600;
  2090. overflow: hidden;
  2091. }
  2092. .area-top .icon-dangqianweizhi {
  2093. vertical-align: middle;
  2094. display: inline-block;
  2095. margin-right: 3px;
  2096. margin-bottom: 2px;
  2097. color: #ccc;
  2098. }
  2099. .area-box {
  2100. width: 100%;
  2101. height: 100%;
  2102. position: fixed;
  2103. left: 0;
  2104. top: 0;
  2105. font-size: 15px;
  2106. z-index: 500;
  2107. }
  2108. .area-province {
  2109. width: 100%;
  2110. height: 100%;
  2111. float: left;
  2112. overflow: hidden;
  2113. background: #f9f9f9;
  2114. }
  2115. .area-province li {
  2116. display: block;
  2117. line-height: 20px;
  2118. padding-top: 12px;
  2119. padding-bottom: 12px;
  2120. padding-right: 4px;
  2121. padding-left: 10px;
  2122. border-top: 1px solid #ebeaea;
  2123. }
  2124. .area-province li:first-child {
  2125. border-top: none;
  2126. }
  2127. .area-province li:active {
  2128. background: #abdaf0;
  2129. color: #fff;
  2130. }
  2131. .area-province li.curr {
  2132. background: #fff;
  2133. }
  2134. .area-city {
  2135. width: 65%;
  2136. height: 100%;
  2137. float: left;
  2138. overflow: hidden;
  2139. background: #fff;
  2140. right: -65%;
  2141. position: relative;
  2142. }
  2143. .area-city li {
  2144. display: block;
  2145. line-height: 21px;
  2146. padding: 12px 4px 12px 15px;
  2147. color: #666;
  2148. }
  2149. .area-city li:active {
  2150. background: #abdaf0;
  2151. color: #fff;
  2152. }
  2153. .openbtn {
  2154. width: 70px;
  2155. height: 28px;
  2156. line-height: 28px !important;
  2157. padding: 0;
  2158. text-align: center;
  2159. font-size: 15px;
  2160. }
  2161. .noopen-tip i {
  2162. margin: 70px 0 0 0;
  2163. }
  2164. .deptpart {
  2165. padding-top: 83px;
  2166. }
  2167. .dept-top {
  2168. padding: 0 35px 0 15px;
  2169. height: 40px;
  2170. line-height: 40px;
  2171. position: relative;
  2172. z-index: 600;
  2173. overflow: hidden;
  2174. background-color: #fff;
  2175. }
  2176. .dept-top .icon-qiehuan {
  2177. position: absolute;
  2178. right: 10px;
  2179. top: 0px;
  2180. color: #0066ff;
  2181. padding-left: 20px;
  2182. }
  2183. .dept-top-mess {
  2184. display: inline-block;
  2185. padding-right: 34px;
  2186. position: relative;
  2187. }
  2188. .dept-top-mess .mysj {
  2189. top: 50%;
  2190. margin-top: -8px;
  2191. }
  2192. .dept-top .arrow-right {
  2193. position: absolute;
  2194. right: 15px;
  2195. top: 50%;
  2196. margin-top: -4px;
  2197. }
  2198. .area-province li label {
  2199. display: inline-block;
  2200. width: 0px;
  2201. transition: all .3s ease;
  2202. -webkit-transition: all .3s ease;
  2203. overflow: hidden;
  2204. vertical-align: middle;
  2205. margin-bottom: 4px;
  2206. }
  2207. .area-province li.curr label {
  2208. width: 15px;
  2209. }
  2210. .area-province li .ui-arrow {
  2211. position: relative;
  2212. display: block;
  2213. font-size: 0;
  2214. line-height: 0;
  2215. width: 0;
  2216. height: 0;
  2217. border-color: transparent;
  2218. border-style: dashed;
  2219. border-width: 5px;
  2220. border-left-color: #0066ff;
  2221. border-left-style: solid;
  2222. opacity: 0;
  2223. }
  2224. .area-province li.curr .ui-arrow {
  2225. opacity: 1;
  2226. }
  2227. /* 填写信息 */
  2228. .mlpr40 {
  2229. padding-right: 40px !important;
  2230. }
  2231. .ml-collect {
  2232. display: block;
  2233. width: 23px;
  2234. height: 23px;
  2235. line-height: 23px;
  2236. border: 2px solid #ccc;
  2237. color: #ccc;
  2238. text-align: center;
  2239. border-radius: 50%;
  2240. position: absolute;
  2241. right: 15px;
  2242. top: 50%;
  2243. margin-top: -13px;
  2244. }
  2245. .ml-collect.msaved {
  2246. border: 2px solid #ffc815;
  2247. color: #ffc815;
  2248. }
  2249. .mess-lock {
  2250. background: #fffcf2;
  2251. line-height: 35px;
  2252. border-bottom: 1px solid #f2f2f2;
  2253. }
  2254. .mess-lab {
  2255. line-height: 38px;
  2256. background: #fff;
  2257. position: relative;
  2258. }
  2259. .mess-lab li {
  2260. display: block;
  2261. height: 38px;
  2262. line-height: 38px;
  2263. float: left;
  2264. position: relative;
  2265. }
  2266. .mess-lab li span {
  2267. display: block;
  2268. height: 14px;
  2269. line-height: 14px;
  2270. padding: 0 25px;
  2271. border-right: 1px solid #f2f2f2;
  2272. margin-top: 12px;
  2273. }
  2274. .mess-lab li.hit {
  2275. color: #4dcd70;
  2276. border-bottom: 2px solid #4dcd70;
  2277. }
  2278. .mess-lab li .hasnews {
  2279. display: block;
  2280. width: 8px;
  2281. height: 8px;
  2282. line-height: 8px;
  2283. background: #f00;
  2284. border-radius: 50%;
  2285. position: absolute;
  2286. left: 50%;
  2287. margin-left: 27px;
  2288. top: 9px;
  2289. }
  2290. .mess-lab .labhide {
  2291. width: 45px;
  2292. height: 38px;
  2293. }
  2294. .mess-lab .arrow-right {
  2295. position: absolute;
  2296. right: 15px;
  2297. top: 50%;
  2298. margin-top: -5px;
  2299. -webkit-transform: rotate(45deg);
  2300. -moz-transform: rotate(45deg);
  2301. transform: rotate(45deg);
  2302. transition: all .3s ease;
  2303. }
  2304. .mess-lab .arrow-right.ashow {
  2305. margin-top: -7px;
  2306. -webkit-transform: rotate(135deg);
  2307. -moz-transform: rotate(135deg);
  2308. transform: rotate(135deg);
  2309. }
  2310. .mess-con {
  2311. background: #fff;
  2312. padding: 10px 15px;
  2313. line-height: 22px;
  2314. }
  2315. .mess-form {
  2316. background: #fff;
  2317. }
  2318. .mess-form li {
  2319. border-top: 1px solid #f2f2f2;
  2320. position: relative;
  2321. }
  2322. .mess-form li:first-child {
  2323. border-top: none;
  2324. }
  2325. .mform-tit {
  2326. display: box;
  2327. display: -webkit-box;
  2328. line-height: 45px;
  2329. padding: 0 10px;
  2330. position: relative;
  2331. }
  2332. .mform-tit .icon-haoyuan,
  2333. .mform-tit .icon-jiuzhenren,
  2334. .mform-tit .icon-zhengjianleixing,
  2335. .mform-tit .icon-chushengnianyue,
  2336. .mform-tit .icon-xingbie,
  2337. .mform-tit .icon-dangqianweizhi,
  2338. .mform-tit .icon-weiguanzhu {
  2339. position: absolute;
  2340. right: 10px;
  2341. top: 0;
  2342. font-size: 18px;
  2343. color: #0066ff;
  2344. }
  2345. .mform-tit h4 {
  2346. box-flex: 0;
  2347. -webkit-box-flex: 0;
  2348. -moz-box-flex: 0;
  2349. width: 95px;
  2350. font-size: 15px;
  2351. }
  2352. .mform-tit .mtmess {
  2353. display: block;
  2354. box-flex: 1;
  2355. -webkit-box-flex: 1;
  2356. -moz-box-flex: 1;
  2357. font-size: 15px;
  2358. }
  2359. .mess-detail {
  2360. position: fixed;
  2361. width: 100%;
  2362. height: 100%;
  2363. background: rgba(0, 0, 0, .9);
  2364. overflow: auto;
  2365. left: 0;
  2366. top: 0;
  2367. z-index: 800;
  2368. padding: 10% 20px 10% 20px;
  2369. display: none;
  2370. }
  2371. .mess-detail .arrow-right {
  2372. position: absolute;
  2373. right: 15px;
  2374. top: 22px;
  2375. transition: all .3s ease;
  2376. }
  2377. .mess-detail .arrow-right.ashow {
  2378. -webkit-transform: rotate(135deg);
  2379. -moz-transform: rotate(135deg);
  2380. transform: rotate(135deg);
  2381. }
  2382. .md-intro {
  2383. position: relative;
  2384. border-top: 1px solid #f2f2f2;
  2385. }
  2386. .mess-form li .arrow-right.seljt {
  2387. position: absolute;
  2388. right: 13px;
  2389. top: 50%;
  2390. margin-top: -8px;
  2391. -webkit-transform: rotate(135deg);
  2392. -moz-transform: rotate(135deg);
  2393. transform: rotate(135deg);
  2394. }
  2395. .mf-select {
  2396. width: 100%;
  2397. border: none;
  2398. padding: 0;
  2399. appearance: none;
  2400. -webkit-appearance: none;
  2401. -moz-appearance: none;
  2402. -ms-appearance: none;
  2403. }
  2404. .agreepop {
  2405. padding: 15px 0 60px 0;
  2406. line-height: 1.7;
  2407. position: fixed;
  2408. width: 90%;
  2409. height: 80%;
  2410. left: 5%;
  2411. top: 10%;
  2412. margin-top: 20px;
  2413. z-index: 800;
  2414. background-color: #fff;
  2415. border-radius: 5px;
  2416. display: none;
  2417. }
  2418. .agreepop .agree-box {
  2419. position: relative;
  2420. height: 100%;
  2421. overflow: auto;
  2422. padding: 0 15px;
  2423. }
  2424. .agreepop p {
  2425. word-break: break-all;
  2426. }
  2427. .agreepop .c-btn {
  2428. position: absolute;
  2429. left: 5%;
  2430. bottom: 10px;
  2431. width: 90%;
  2432. border-radius: 5px;
  2433. }
  2434. .agreemb {
  2435. position: fixed;
  2436. width: 100%;
  2437. height: 100%;
  2438. left: 0;
  2439. top: 0;
  2440. background: rgba(0, 0, 0, .6);
  2441. z-index: 700;
  2442. display: none;
  2443. }
  2444. .human-add {
  2445. padding: 5px;
  2446. position: relative;
  2447. z-index: 500;
  2448. background: #fff;
  2449. }
  2450. .human-add a {
  2451. display: block;
  2452. width: 100%;
  2453. height: 45px;
  2454. line-height: 45px;
  2455. background: #4dcd70;
  2456. border-radius: 2px;
  2457. font-size: 16px;
  2458. color: #fff;
  2459. text-align: center;
  2460. }
  2461. .human-add a:active {
  2462. background: #34b758;
  2463. }
  2464. .jzr-more {
  2465. text-align: center;
  2466. line-height: 26px;
  2467. font-size: 13px;
  2468. color: #5b5b5b;
  2469. padding-top: 3px;
  2470. }
  2471. .jzr-more .arrow-right {
  2472. display: inline-block;
  2473. transform: rotate(135deg);
  2474. -webkit-transform: rotate(135deg);
  2475. -moz-transform: rotate(135deg);
  2476. margin: 0 0 3px 10px;
  2477. transition: all .3s ease;
  2478. }
  2479. .jzr-more .arrow-right.ashow {
  2480. transform: rotate(-45deg);
  2481. -webkit-transform: rotate(-45deg);
  2482. -moz-transform: rotate(-45deg);
  2483. margin-bottom: -2px;
  2484. }
  2485. /* ----就诊时间 */
  2486. .mform-time {
  2487. display: box;
  2488. display: -webkit-box;
  2489. border-top: 1px solid #6eb2c1;
  2490. background: #e9f8fc;
  2491. }
  2492. .mform-time dt {
  2493. display: block;
  2494. height: 40px;
  2495. line-height: 15px;
  2496. text-align: center;
  2497. box-sizing: border-box;
  2498. -webkit-box-sizing: border-box;
  2499. -moz-box-sizing: border-box;
  2500. -ms-box-sizing: border-box;
  2501. display: box;
  2502. display: -webkit-box;
  2503. -webkit-box-orient: vertical;
  2504. -webkit-box-pack: center;
  2505. border-right: none;
  2506. }
  2507. .mform-time dd {
  2508. display: block;
  2509. text-align: center;
  2510. box-sizing: border-box;
  2511. -webkit-box-sizing: border-box;
  2512. -moz-box-sizing: border-box;
  2513. -ms-box-sizing: border-box;
  2514. }
  2515. .mform-time dd label {
  2516. display: block;
  2517. width: 100%;
  2518. height: 50px;
  2519. display: box;
  2520. display: -webkit-box;
  2521. -webkit-box-orient: vertical;
  2522. -webkit-box-pack: center;
  2523. border-top: 1px dashed #bddfe8;
  2524. border-right: 1px dashed #bddfe8;
  2525. box-sizing: border-box;
  2526. -webkit-box-sizing: border-box;
  2527. -moz-box-sizing: border-box;
  2528. -ms-box-sizing: border-box;
  2529. }
  2530. .mform-time dd label:first-child {
  2531. border-top: 1px solid #bddfe8;
  2532. }
  2533. .mform-time .mtleft {
  2534. display: block;
  2535. box-flex: 0;
  2536. -webkit-box-flex: 0;
  2537. -moz-box-flex: 0;
  2538. width: 40px;
  2539. }
  2540. .mform-time .mtleft .go-left span,
  2541. .mform-time .mtright .go-right span {
  2542. display: inline-block;
  2543. width: 21px;
  2544. height: 21px;
  2545. background: #a0a9ac;
  2546. text-align: center;
  2547. border-radius: 50%;
  2548. margin-top: 2px;
  2549. }
  2550. .mform-time .mtleft .go-left i {
  2551. margin: 5px 0 0 7px;
  2552. -webkit-transform: rotate(-135deg);
  2553. -moz-transform: rotate(-135deg);
  2554. transform: rotate(-135deg);
  2555. border: solid #fff;
  2556. border-width: 2px 2px 0 0;
  2557. }
  2558. .mform-time .mtright .go-right i {
  2559. margin: 5px 0 0 4px;
  2560. border: solid #fff;
  2561. border-width: 2px 2px 0 0;
  2562. }
  2563. .mform-time .mtmid {
  2564. box-flex: 1;
  2565. -webkit-box-flex: 1;
  2566. -moz-box-flex: 1;
  2567. overflow: hidden;
  2568. position: relative;
  2569. }
  2570. .mform-time .mtmid dl {
  2571. display: block;
  2572. width: 60px;
  2573. float: left;
  2574. }
  2575. .mform-time .mtmid dl:nth-child(2n) dd {
  2576. background: #fff;
  2577. }
  2578. .mform-time .mtright {
  2579. box-flex: 0;
  2580. -webkit-box-flex: 0;
  2581. -moz-box-flex: 0;
  2582. width: 40px;
  2583. }
  2584. .mform-time .mtmid a.mt-open {
  2585. display: block;
  2586. width: 100%;
  2587. height: 100%;
  2588. text-align: center;
  2589. background-color: #4dcd70;
  2590. color: #fff;
  2591. font-size: 13px;
  2592. display: box;
  2593. display: -webkit-box;
  2594. -webkit-box-orient: vertical;
  2595. -webkit-box-pack: center;
  2596. }
  2597. .mform-time .mtmid a.mt-full {
  2598. display: block;
  2599. width: 100%;
  2600. height: 100%;
  2601. text-align: center;
  2602. background-color: #f5f5f5;
  2603. color: #909090;
  2604. font-size: 13px;
  2605. display: box;
  2606. display: -webkit-box;
  2607. -webkit-box-orient: vertical;
  2608. -webkit-box-pack: center;
  2609. }
  2610. .mt-filter {
  2611. line-height: 35px;
  2612. background: #e9f8fc;
  2613. border-top: 1px solid #bddfe8;
  2614. font-size: 13px;
  2615. color: #3399cc;
  2616. text-align: center;
  2617. }
  2618. /* ----预约号源 */
  2619. .mform-num {
  2620. display: box;
  2621. display: -webkit-box;
  2622. border-top: 1px solid #f2f2f2;
  2623. padding: 15px 0 15px 15px;
  2624. }
  2625. .mform-num .mnleft {
  2626. height: 60px;
  2627. box-flex: 1;
  2628. -webkit-box-flex: 1;
  2629. -moz-box-flex: 1;
  2630. position: relative;
  2631. overflow: hidden;
  2632. }
  2633. .mform-num .mnleft ul {
  2634. display: block;
  2635. position: absolute;
  2636. }
  2637. .mform-num .mnleft li {
  2638. display: block;
  2639. float: left;
  2640. width: 72px;
  2641. height: 60px;
  2642. margin-right: 10px;
  2643. background: #fff;
  2644. border: 1px solid #31cc71;
  2645. border-radius: 2px;
  2646. text-align: center;
  2647. box-sizing: border-box;
  2648. -webkit-box-sizing: border-box;
  2649. -moz-box-sizing: border-box;
  2650. -ms-box-sizing: border-box;
  2651. }
  2652. .mform-num .mnleft li .lnum {
  2653. display: block;
  2654. height: 36px;
  2655. line-height: 18px;
  2656. color: #31cc71;
  2657. display: box;
  2658. display: -webkit-box;
  2659. -webkit-box-orient: vertical;
  2660. -webkit-box-pack: center;
  2661. }
  2662. .mform-num .mnleft li .ltime {
  2663. display: block;
  2664. width: 100%;
  2665. height: 24px;
  2666. line-height: 24px;
  2667. background: #31cc71;
  2668. font-size: 12px;
  2669. }
  2670. .mform-num .mnright {
  2671. box-flex: 0;
  2672. -webkit-box-flex: 0;
  2673. -moz-box-flex: 0;
  2674. width: 30px;
  2675. display: box;
  2676. display: -webkit-box;
  2677. -webkit-box-orient: vertical;
  2678. -webkit-box-pack: center;
  2679. }
  2680. .mform-num .mnright i {
  2681. margin-left: 10px;
  2682. }
  2683. .choosepop {
  2684. width: 100%;
  2685. max-height: 50%;
  2686. bottom: 0px;
  2687. left: 0;
  2688. z-index: 800;
  2689. position: fixed;
  2690. display: none;
  2691. -webkit-animation: choopop .3s ease;
  2692. animation: choopop .3s ease;
  2693. background: #fff;
  2694. overflow: hidden;
  2695. }
  2696. @-webkit-keyframes choopop {
  2697. 0% {
  2698. bottom: -200px;
  2699. }
  2700. 100% {
  2701. bottom: 0px;
  2702. }
  2703. }
  2704. @keyframes choopop {
  2705. 0% {
  2706. bottom: -200px;
  2707. }
  2708. 100% {
  2709. bottom: 0px;
  2710. }
  2711. }
  2712. .choosepop ul {
  2713. display: block;
  2714. overflow: hidden;
  2715. background: #fff;
  2716. }
  2717. .choosepop li {
  2718. display: block;
  2719. width: 100%;
  2720. line-height: 38px;
  2721. text-align: center;
  2722. color: #5b5b5b;
  2723. font-size: 15px;
  2724. border-top: 1px solid #f2f2f2;
  2725. }
  2726. .choosepop li.curr {
  2727. color: #00a0e9;
  2728. }
  2729. .choosepop li:first-child {
  2730. border-top: none;
  2731. }
  2732. .choosepop .c-add {
  2733. display: block;
  2734. line-height: 40px;
  2735. text-align: center;
  2736. border-bottom: 1px solid #e1e1e1;
  2737. position: relative;
  2738. z-index: 500;
  2739. background: #fff;
  2740. }
  2741. .choosepop .c-close {
  2742. display: block;
  2743. width: 55px;
  2744. height: 40px;
  2745. position: absolute;
  2746. right: 2px;
  2747. top: 0;
  2748. border-left: 1px solid #f2f2f2;
  2749. }
  2750. .choosepop .c-close:before {
  2751. content: '';
  2752. display: block;
  2753. width: 30px;
  2754. height: 1px;
  2755. background: #909090;
  2756. position: absolute;
  2757. left: 14px;
  2758. top: 20px;
  2759. transform: rotate(-45deg);
  2760. -webkit-transform: rotate(-45deg);
  2761. -moz-transform: rotate(-45deg);
  2762. }
  2763. .choosepop .c-close:after {
  2764. content: '';
  2765. display: block;
  2766. width: 30px;
  2767. height: 1px;
  2768. background: #909090;
  2769. position: absolute;
  2770. left: 14px;
  2771. top: 20px;
  2772. transform: rotate(45deg);
  2773. -webkit-transform: rotate(45deg);
  2774. -moz-transform: rotate(45deg);
  2775. }
  2776. .choosepop-mb {
  2777. width: 100%;
  2778. height: 100%;
  2779. position: fixed;
  2780. left: 0;
  2781. top: 0;
  2782. background: rgba(0, 0, 0, .7);
  2783. z-index: 700;
  2784. }
  2785. /* ----就诊人 */
  2786. .bor-t-f2 {
  2787. border-top: 1px solid #f2f2f2;
  2788. }
  2789. .mform-human {
  2790. height: 30px;
  2791. padding: 15px 0;
  2792. position: relative;
  2793. overflow: hidden;
  2794. }
  2795. .mform-human ul {
  2796. display: block;
  2797. position: absolute;
  2798. }
  2799. .mform-human li {
  2800. display: block;
  2801. float: left;
  2802. width: 70px;
  2803. height: 30px;
  2804. line-height: 30px;
  2805. text-align: center;
  2806. background: #4dcd70;
  2807. border-radius: 5px;
  2808. box-sizing: border-box;
  2809. -webkit-box-sizing: border-box;
  2810. -moz-box-sizing: border-box;
  2811. -ms-box-sizing: border-box;
  2812. margin-right: 8px;
  2813. }
  2814. .mform-human li.mhadd {
  2815. border: 1px dashed #e1e1e1;
  2816. background: #fff;
  2817. position: relative;
  2818. }
  2819. .mform-human li.mhadd:before {
  2820. content: '';
  2821. display: block;
  2822. width: 5px;
  2823. height: 17px;
  2824. position: absolute;
  2825. left: 50%;
  2826. margin-left: -2px;
  2827. top: 50%;
  2828. margin-top: -8px;
  2829. background: #e1e1e1;
  2830. }
  2831. .mform-human li.mhadd:after {
  2832. content: '';
  2833. display: block;
  2834. width: 17px;
  2835. height: 5px;
  2836. position: absolute;
  2837. left: 50%;
  2838. margin-left: -8px;
  2839. top: 50%;
  2840. margin-top: -2px;
  2841. background: #e1e1e1;
  2842. }
  2843. .notice-box {
  2844. background: #fff;
  2845. padding-left: 15px;
  2846. }
  2847. .nb-tit {
  2848. line-height: 40px;
  2849. position: relative;
  2850. border-bottom: 1px solid #f2f2f2;
  2851. }
  2852. .nb-tit .arrow-right {
  2853. position: absolute;
  2854. right: 15px;
  2855. top: 50%;
  2856. margin-top: -3px;
  2857. transform: rotate(-45deg);
  2858. -webkit-transform: rotate(-45deg);
  2859. -moz-transform: rotate(-45deg);
  2860. transition: all .3s ease;
  2861. -webkit-transition: all .3s ease;
  2862. }
  2863. .nb-tit .arrow-right.nhide {
  2864. transform: rotate(135deg);
  2865. -webkit-transform: rotate(135deg);
  2866. -moz-transform: rotate(135deg);
  2867. margin-top: -7px;
  2868. }
  2869. .nb-con {
  2870. height: 70px;
  2871. overflow: auto;
  2872. line-height: 24px;
  2873. margin: 5px 0 5px 0;
  2874. padding-right: 10px;
  2875. }
  2876. .ncxz {
  2877. display: box;
  2878. display: -webkit-box;
  2879. line-height: 22px;
  2880. }
  2881. .xzleft {
  2882. box-flex: 0;
  2883. -webkit-box-flex: 0;
  2884. -moz-box-flex: 0;
  2885. width: 160px;
  2886. }
  2887. .xzright {
  2888. box-flex: 1;
  2889. -webkit-box-flex: 1;
  2890. -moz-box-flex: 1;
  2891. }
  2892. /* 2015-11-03 */
  2893. .yuyue-sm {
  2894. background: #fff;
  2895. padding: 10px 15px;
  2896. }
  2897. .yuyue-sm li {
  2898. position: relative;
  2899. padding-bottom: 5px;
  2900. padding-left: 15px;
  2901. font-size: 13px;
  2902. color: #666;
  2903. }
  2904. .yuyue-sm li em {
  2905. position: absolute;
  2906. top: 0;
  2907. left: 0;
  2908. font-size: 15px;
  2909. color: #ff8100;
  2910. }
  2911. .yuyue-sm li:last-child {
  2912. padding-bottom: 0;
  2913. }
  2914. .bq-text-box {
  2915. border: 1px solid #f2f2f2;
  2916. border-radius: 4px;
  2917. padding: 5px 10px;
  2918. }
  2919. .bq-text-box textarea {
  2920. width: 100%;
  2921. margin: 0;
  2922. padding: 0;
  2923. border: none;
  2924. resize: none;
  2925. white-space: pre-wrap;
  2926. }
  2927. .mf-select {
  2928. margin-left: -2px;
  2929. background: #fff;
  2930. }
  2931. .mform-tit h4 {
  2932. width: 100px;
  2933. }
  2934. .yuyue-js {
  2935. width: 100%;
  2936. min-height: 60px;
  2937. white-space: pre-wrap;
  2938. word-wrap: break-word;
  2939. }
  2940. /* 预约等待中 */
  2941. .wait-tip {
  2942. background: #fff;
  2943. text-align: center;
  2944. padding: 25px 15px 70px 15px;
  2945. }
  2946. .doc-info .icon-daohang {
  2947. display: inline-block;
  2948. vertical-align: middle;
  2949. margin: 0 5px 2px 0;
  2950. font-size: 17px;
  2951. }
  2952. .lih15 {
  2953. line-height: 15px;
  2954. }
  2955. .state-center {
  2956. display: box;
  2957. display: -webkit-box;
  2958. -webkit-box-orient: vertical;
  2959. -webkit-box-pack: center;
  2960. width: 100%;
  2961. height: 100%;
  2962. position: fixed;
  2963. left: 0;
  2964. top: 0;
  2965. background-color: #fff;
  2966. }
  2967. .state-center .htposi {
  2968. background-color: #fff;
  2969. }
  2970. /* 蓝色配色 */
  2971. .webcor-blue .c-btn-4dcd70 {
  2972. background-color: #007cd9;
  2973. }
  2974. .webcor-blue .c-btn-fff-other {
  2975. color: #007cd9;
  2976. }
  2977. .webcor-blue .bottom-box a.c-btn-fff {
  2978. color: #007cd9;
  2979. border-color: #47aaf4;
  2980. }
  2981. .webcor-blue .bot-b {
  2982. border-color: #007cd9;
  2983. }
  2984. .webcor-blue .b-r399752 {
  2985. border-right: 5px solid #154c75;
  2986. }
  2987. .webcor-blue .b-l399752 {
  2988. border-left: 5px solid #154c75;
  2989. }
  2990. .webcor-blue .bgc-4dcd70 {
  2991. background-color: #007cd9;
  2992. }
  2993. .webcor-blue .mform-time .mtmid a.mt-open {
  2994. background-color: #007cd9;
  2995. border-color: #007cd9;
  2996. }
  2997. .webcor-blue .mform-num .mnleft li {
  2998. border-color: #2d91dc;
  2999. }
  3000. .webcor-blue .mform-num .mnleft li .lnum {
  3001. color: #2d91dc;
  3002. }
  3003. .webcor-blue .mform-num .mnleft li .ltime {
  3004. background-color: #2d91dc;
  3005. }
  3006. .webcor-blue .mform-human li {
  3007. background-color: #007cd9;
  3008. }
  3009. .webcor-blue .doc-warp .c-4dcd70 {
  3010. color: #007cd9;
  3011. }
  3012. .webcor-blue .appoint-lab a.hit {
  3013. border-bottom: 2px solid #007cd9;
  3014. color: #007cd9;
  3015. }
  3016. .webcor-blue .area-province li.hit {
  3017. border-left: 2px solid #007cd9;
  3018. color: #007cd9;
  3019. }
  3020. .webcor-blue .date-top .presel.hit {
  3021. background-color: #007cd9;
  3022. border-color: #007cd9;
  3023. }
  3024. /* error */
  3025. .error-box {
  3026. width: 100%;
  3027. height: 100%;
  3028. position: fixed;
  3029. z-index: 500;
  3030. display: box;
  3031. display: -webkit-box;
  3032. -webkit-box-orient: vertical;
  3033. -webkit-box-pack: center;
  3034. }
  3035. .error-tb {
  3036. display: inline-block;
  3037. width: 111px;
  3038. height: 90px;
  3039. background: url(../images/error-page.png) no-repeat;
  3040. background-size: 100% 100%;
  3041. -webkit-background-size: 100% 100%;
  3042. -moz-background-size: 100% 100%;
  3043. -ms-background-size: 100% 100%;
  3044. }
  3045. /* 绑定提示 */
  3046. .realname-pop {
  3047. position: fixed;
  3048. left: 0;
  3049. top: 0;
  3050. width: 100%;
  3051. height: 100%;
  3052. display: box;
  3053. display: -webkit-box;
  3054. -webkit-box-orient: vertical;
  3055. -webkit-box-pack: center;
  3056. z-index: 900;
  3057. text-align: center;
  3058. color: #fff;
  3059. }
  3060. .realname-img {
  3061. display: inline-block;
  3062. width: 197px;
  3063. height: 197px;
  3064. background: url(../images/activity1-bg.png) no-repeat;
  3065. background-size: 100% 100%;
  3066. margin-bottom: 10px;
  3067. }
  3068. .realname-pop-mb {
  3069. width: 100%;
  3070. height: 100%;
  3071. position: fixed;
  3072. left: 0;
  3073. top: 0;
  3074. z-index: 880;
  3075. background: rgba(0, 0, 0, .7);
  3076. }
  3077. .realname-pop a.rnbtn {
  3078. display: inline-block;
  3079. width: 210px;
  3080. height: 40px;
  3081. line-height: 40px;
  3082. text-align: center;
  3083. background: #ff8100;
  3084. color: #fff;
  3085. font-size: 15px;
  3086. border-radius: 3px;
  3087. margin-top: 10px;
  3088. }
  3089. .realname-pop .realname-pop-close {
  3090. position: absolute;
  3091. right: 20px;
  3092. top: 20px;
  3093. width: 23px;
  3094. height: 23px;
  3095. background: #ccc;
  3096. border-radius: 50%;
  3097. }
  3098. .realname-pop .realname-pop-close:before {
  3099. content: '';
  3100. display: block;
  3101. width: 13px;
  3102. height: 2px;
  3103. background: #4c4c4c;
  3104. border-radius: 2px;
  3105. position: absolute;
  3106. left: 5px;
  3107. top: 11px;
  3108. transform: rotate(45deg);
  3109. -webkit-transform: rotate(45deg);
  3110. -moz-transform: rotate(45deg);
  3111. }
  3112. .realname-pop .realname-pop-close:after {
  3113. content: '';
  3114. display: block;
  3115. width: 13px;
  3116. height: 2px;
  3117. background: #4c4c4c;
  3118. border-radius: 2px;
  3119. position: absolute;
  3120. left: 5px;
  3121. top: 11px;
  3122. transform: rotate(135deg);
  3123. -webkit-transform: rotate(135deg);
  3124. -moz-transform: rotate(135deg);
  3125. }
  3126. .bindtip-box p {
  3127. margin: 2px 0 !important;
  3128. font-size: 15px;
  3129. line-height: 1.2;
  3130. }
  3131. .bindtip-box p.c-f18 {
  3132. font-size: 18px !important;
  3133. }
  3134. .bindtip-success {
  3135. display: inline-block;
  3136. width: 63px;
  3137. height: 63px;
  3138. background: url(../images/bind-poptb.png) no-repeat;
  3139. background-size: 126px 63px;
  3140. margin-top: 10px !important;
  3141. }
  3142. .bindtip-failed {
  3143. display: inline-block;
  3144. width: 63px;
  3145. height: 63px;
  3146. background: url(../images/bind-poptb.png) -63px 0 no-repeat;
  3147. background-size: 126px 63px;
  3148. }
  3149. /* 无数据 */
  3150. .no-mess {
  3151. padding: 0 10px;
  3152. text-align: center;
  3153. font-size: 13px;
  3154. color: #5b5b5b;
  3155. }
  3156. .no-mess-tb {
  3157. display: inline-block;
  3158. width: 123px;
  3159. height: 123px;
  3160. background: url(../images/no-mess.png) no-repeat;
  3161. background-size: 100% 100%;
  3162. margin: 80px 0 5px 0;
  3163. }
  3164. /* 医生详情 */
  3165. .doc-follow {
  3166. -webkit-box-flex: 0;
  3167. box-flex: 0;
  3168. width: 55px;
  3169. display: box;
  3170. display: -webkit-box;
  3171. -webkit-box-orient: vertical;
  3172. -webkit-box-pack: center;
  3173. z-index: 900;
  3174. text-align: center;
  3175. color: #909090;
  3176. font-size: 13px;
  3177. line-height: 1.2;
  3178. }
  3179. .doc-follow .icon-weiguanzhu {
  3180. font-size: 20px;
  3181. }
  3182. .f-checked {
  3183. color: #ff8100;
  3184. }
  3185. .f-checked .icon-weiguanzhu:before {
  3186. content: "\d617";
  3187. }
  3188. .doc-detail-mess {
  3189. padding: 10px 10px 30px 10px;
  3190. font-size: 13px;
  3191. color: #666;
  3192. line-height: 1.7;
  3193. }
  3194. .appoin-detail {
  3195. background: #fff;
  3196. font-size: 13px;
  3197. }
  3198. .appoin-detail label {
  3199. display: block;
  3200. margin-left: 10px;
  3201. color: #ff8100;
  3202. line-height: 30px;
  3203. border-bottom: 1px solid #f2f2f2;
  3204. }
  3205. .appoin-detail-con {
  3206. padding: 5px 10px;
  3207. line-height: 1.6;
  3208. color: #909090;
  3209. word-break: break-all;
  3210. }
  3211. .c-nowrap-three {
  3212. display: -webkit-box;
  3213. overflow: hidden;
  3214. text-overflow: ellipsis;
  3215. -webkit-box-orient: vertical;
  3216. -webkit-line-clamp: 3;
  3217. }
  3218. .ac-more {
  3219. display: block;
  3220. text-align: center;
  3221. line-height: 25px;
  3222. color: #0066ff;
  3223. }
  3224. .ac-more .arrow-right {
  3225. display: inline-block;
  3226. transform: rotate(135deg);
  3227. -webkit-transform: rotate(135deg);
  3228. -moz-transform: rotate(135deg);
  3229. vertical-align: middle;
  3230. margin: 0 0 7px 5px;
  3231. border: solid #0066ff;
  3232. border-width: 2px 2px 0 0;
  3233. transition: all .3s ease;
  3234. }
  3235. .ac-more .arrow-right.ashow {
  3236. transform: rotate(-45deg);
  3237. -webkit-transform: rotate(-45deg);
  3238. -moz-transform: rotate(-45deg);
  3239. margin-bottom: -2px;
  3240. }
  3241. .plr10 .border-radius-rounded {
  3242. border-radius: 3px;
  3243. }
  3244. .record-fast {
  3245. width: 57px;
  3246. height: 57px;
  3247. background: rgba(0, 0, 0, .5);
  3248. border-radius: 50%;
  3249. text-align: center;
  3250. position: fixed;
  3251. right: 10px;
  3252. bottom: 30px;
  3253. z-index: 600;
  3254. font-size: 10px;
  3255. line-height: 1.2;
  3256. box-shadow: 0px 0px 4px rgba(0, 0, 0, .5);
  3257. }
  3258. .record-fast a {
  3259. display: block;
  3260. width: 100%;
  3261. height: 100%;
  3262. display: box;
  3263. display: -webkit-box;
  3264. -webkit-box-orient: vertical;
  3265. -webkit-box-pack: center;
  3266. color: #fff;
  3267. }
  3268. .record-fast .icon-yuyuejilu {
  3269. font-size: 18px;
  3270. }
  3271. /* demo */
  3272. .mt-hosplab {
  3273. background: #f2f4f6;
  3274. padding: 10px;
  3275. }
  3276. .mt-hosplab-ul {
  3277. display: box;
  3278. display: -webkit-box;
  3279. border: 1px solid #ececec;
  3280. border-radius: 4px;
  3281. overflow: hidden;
  3282. }
  3283. .mt-hosplab-ul li {
  3284. box-flex: 1;
  3285. -webkit-box-flex: 1;
  3286. height: 30px;
  3287. line-height: 30px;
  3288. color: #4dcd70;
  3289. text-align: center;
  3290. border: none;
  3291. background: #fff;
  3292. }
  3293. .mt-hosplab-ul li.curr {
  3294. background: #4dcd70;
  3295. color: #fff;
  3296. }
  3297. .bor-t-6eb2c1 {
  3298. border-top: 1px solid #6eb2c1;
  3299. }
  3300. .ncds-top {
  3301. line-height: 45px;
  3302. font-size: 15px;
  3303. background: #fff;
  3304. padding: 0 15px;
  3305. }
  3306. .ncds-top-jt {
  3307. display: inline-block;
  3308. font-size: 0;
  3309. line-height: 0;
  3310. width: 0;
  3311. height: 0;
  3312. border-color: transparent;
  3313. border-style: dashed;
  3314. border-width: 6px;
  3315. border-top-color: #ddd;
  3316. border-top-style: solid;
  3317. vertical-align: middle;
  3318. margin: 5px 0 0 5px;
  3319. }