zx-style.css 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114
  1. body {
  2. background: #f9f9f9;
  3. font-size: 14px;
  4. }
  5. .c-btn-maincolor {
  6. background-color: #37a6ed;
  7. color: #fff;
  8. }
  9. /*蓝色按钮样式*/
  10. .c-btn-maincolor:hover {
  11. background-color: #3099dd;
  12. }
  13. .c-37a6ec {
  14. color: #37a6ec;
  15. }
  16. .c-bfbfbf {
  17. color: #bfbfbf;
  18. }
  19. .c-fa383d {
  20. color: #fa383d;
  21. }
  22. .c-007dda {
  23. color: #007dda;
  24. }
  25. .c-ff8011 {
  26. color: #ff8011;
  27. }
  28. .c-087eff {
  29. color: #087eff;
  30. }
  31. .c-ff8100 {
  32. color: #ff8100;
  33. }
  34. .c-fff {
  35. color: #fff;
  36. }
  37. .c-ccc {
  38. color: #ccc;
  39. }
  40. .c-333 {
  41. color: #333;
  42. }
  43. .bgc-00c1a5 {
  44. background-color: #00c1a5;
  45. }
  46. .bgc-ebebeb {
  47. background-color: #ebebeb;
  48. }
  49. .bgc-087eff {
  50. background-color: #087eff;
  51. }
  52. .bgc-97caff {
  53. background-color: #97caff;
  54. }
  55. .c-tag {
  56. color: #fff;
  57. font-size: 16px;
  58. padding: 2px 10px;
  59. border-radius: 4px;
  60. }
  61. .c-tag-blue {
  62. background: #3da3ee;
  63. }
  64. .line-22 {
  65. line-height: 22px;
  66. }
  67. .line-40 {
  68. line-height: 40px;
  69. }
  70. .mr40 {
  71. margin-right: 40px;
  72. }
  73. .r-15 {
  74. right: 15px;
  75. }
  76. .pt1 {
  77. padding-top: 1px;
  78. }
  79. .add-model .title-word-limit {
  80. position: absolute;
  81. right: 15px;
  82. top: 12px;
  83. }
  84. .arrow-left {
  85. display: block;
  86. width: 8px;
  87. height: 8px;
  88. border: solid #fff;
  89. border-width: 0 0 2px 2px;
  90. -webkit-transform: rotate(45deg);
  91. -moz-transform: rotate(45deg);
  92. -ms-transform: rotate(45deg);
  93. -o-transform: rotate(45deg);
  94. transform: rotate(45deg);
  95. }
  96. /* css3-Grid
  97. -----------------------------------------------------------------------------*/
  98. .ui-grid {
  99. display: -webkit-box;
  100. display: box;
  101. }
  102. .ui-grid-middle {
  103. -webkit-box-pack: center;
  104. -webkit-box-align: center;
  105. box-pack: center;
  106. box-align: center;
  107. }
  108. .ui-grid-vertical {
  109. -webkit-box-orient: vertical;
  110. box-orient: vertical;
  111. }
  112. .ui-grid-label {
  113. -webkit-box-flex: 0;
  114. box-flex: 0;
  115. width: 100px;
  116. font-weight: 600;
  117. }
  118. .ui-col-0 {
  119. -webkit-box-flex: 0;
  120. box-flex: 0;
  121. }
  122. .ui-col-1 {
  123. -webkit-box-flex: 1;
  124. box-flex: 1;
  125. }
  126. /*n-list*/
  127. .ptb12 {
  128. padding-top: 12px;
  129. padding-bottom: 12px;
  130. }
  131. .n-list {
  132. background-color: #fff;
  133. }
  134. .n-list > li,
  135. .n-list > .n-list-li {
  136. position: relative;
  137. display: -webkit-box;
  138. display: box;
  139. box-pack: center;
  140. padding-right: 15px;
  141. margin-left: 15px;
  142. border-top: 1px solid #f1f1f1;
  143. clear: both;
  144. }
  145. .n-list > li:first-child,
  146. .n-list > .n-list-li:first-child {
  147. border-top: none;
  148. }
  149. .n-list > .n-list-link:active {
  150. background-color: #f7f7f7;
  151. padding-left: 15px;
  152. margin-left: 0
  153. }
  154. .n-list > .n-list-cover {
  155. padding-left: 15px;
  156. margin-left: 0;
  157. }
  158. .n-list > .list-arrow-r,
  159. .n-list > .list-arrow-d,
  160. .n-list > .list-arrow-u {
  161. padding-right: 30px
  162. }
  163. .n-list > .list-arrow-r:after,
  164. .n-list > .list-arrow-d:after,
  165. .n-list > .list-arrow-u:after {
  166. position: absolute;
  167. top: 50%;
  168. right: 15px;
  169. margin-top: -5px;
  170. content: "";
  171. display: block;
  172. width: 8px;
  173. height: 8px;
  174. border: solid #cdcdcd;
  175. border-width: 2px 2px 0 0;
  176. -webkit-transform: rotate(45deg);
  177. -moz-transform: rotate(45deg);
  178. -ms-transform: rotate(45deg);
  179. transform: rotate(45deg);
  180. }
  181. .n-list > .list-arrow-d:after {
  182. right: 13px;
  183. margin-top: -8px;
  184. -webkit-transform: rotate(135deg);
  185. -moz-transform: rotate(135deg);
  186. -ms-transform: rotate(135deg);
  187. transform: rotate(135deg);
  188. }
  189. .n-list > .list-arrow-u:after {
  190. right: 13px;
  191. margin-top: -2px;
  192. -webkit-transform: rotate(-45deg);
  193. -moz-transform: rotate(-45deg);
  194. -ms-transform: rotate(-45deg);
  195. transform: rotate(-45deg);
  196. }
  197. .n-list-title {
  198. display: -webkit-box;
  199. display: -moz-box;
  200. display: box;
  201. -webkit-box-orient: vertical;
  202. -moz-box-orient: vertical;
  203. box-orient: vertical;
  204. -webkit-box-pack: start;
  205. -moz-box-pack: start;
  206. box-pack: start;
  207. }
  208. .n-list-key,
  209. .n-list-info {
  210. display: -webkit-box;
  211. display: -moz-box;
  212. display: box;
  213. -webkit-box-orient: vertical;
  214. -moz-box-orient: vertical;
  215. box-orient: vertical;
  216. -webkit-box-pack: center;
  217. -moz-box-pack: center;
  218. box-pack: center;
  219. }
  220. .n-list-info {
  221. display: box;
  222. -webkit-box-flex: 1;
  223. -moz-box-flex: 1;
  224. box-flex: 1;
  225. }
  226. .n-list-flex {
  227. display: -webkit-box;
  228. display: -moz-box;
  229. display: box;
  230. -webkit-box-flex: 1;
  231. -moz-box-flex: 1;
  232. box-flex: 1;
  233. }
  234. .n-list > .n-list-function {
  235. border-top: none;
  236. padding-right: 0;
  237. }
  238. .n-list > .n-list-function .n-list-flex {
  239. border-top: 1px solid #f1f1f1;
  240. }
  241. .n-list > .n-list-function:first-child .n-list-flex {
  242. border-top: none;
  243. }
  244. .n-list > li:first-child,
  245. .n-list > .n-list-function:first-child,
  246. .n-list > .n-list-function:first-child .n-list-info,
  247. .n-list > div:first-child {
  248. border: 0;
  249. }
  250. .n-list > .n-list-label {
  251. display: block;
  252. border-top: none;
  253. padding-right: 0;
  254. }
  255. .n-list .n-list-img {
  256. width: 100px;
  257. height: 68px;
  258. overflow: hidden;
  259. position: relative
  260. }
  261. .n-list .n-list-img img {
  262. width: 100%;
  263. height: auto;
  264. }
  265. .required {
  266. position: relative;
  267. }
  268. .required:before {
  269. content: "*";
  270. position: absolute;
  271. color: #f00;
  272. font-size: 14px;
  273. height: 12px;
  274. line-height: 12px;
  275. vertical-align: middle;
  276. left: -10px;
  277. top: 50%;
  278. margin-top: -5px;
  279. }
  280. .n-avatar-s,
  281. .n-avatar-m,
  282. .n-avatar-l {
  283. width: 26px;
  284. height: 26px;
  285. display: -webkit-box;
  286. -webkit-box-pack: center;
  287. -webkit-box-align: center;
  288. }
  289. .n-avatar-m {
  290. width: 40px;
  291. height: 40px;
  292. }
  293. .n-avatar-l {
  294. width: 54px;
  295. height: 54px;
  296. }
  297. .n-avatar-s img,
  298. .n-avatar-m img,
  299. .n-avatar-l img {
  300. width: 100%;
  301. height: 100%;
  302. }
  303. .word-bread {
  304. word-wrap: break-word;
  305. }
  306. /* 电话咨询 */
  307. .doc-avatar {
  308. width: 50px;
  309. height: 50px;
  310. border-radius: 50%;
  311. text-align: center;
  312. overflow: hidden;
  313. }
  314. .doc-avatar img {
  315. width: auto;
  316. height: 100%;
  317. }
  318. .view-more {
  319. display: inline-block;
  320. width: 100%;
  321. text-align: center;
  322. padding: 15px 0;
  323. }
  324. .doc-detail .list-arrow-d:after {
  325. top: 15px;
  326. margin-top: 0;
  327. }
  328. .doc-detail .list-arrow-u:after {
  329. top: 20px;
  330. margin-top: 0;
  331. }
  332. .level,
  333. .honor {
  334. display: inline-block;
  335. width: 20px;
  336. height: 20px;
  337. }
  338. .level img,
  339. .honor img {
  340. width: 100%;
  341. height: 100%;
  342. }
  343. /* 指定咨询 */
  344. .upload-img {
  345. overflow: hidden;
  346. display: inline-block;
  347. }
  348. .upload-img ul li {
  349. position: relative;
  350. display: inline;
  351. float: left;
  352. width: 76px;
  353. height: 76px;
  354. padding: 0 10px 10px 0;
  355. }
  356. .upload-img ul li img {
  357. width: 100%;
  358. height: 100%;
  359. }
  360. .upload-img .del-img {
  361. position: absolute;
  362. top: 0;
  363. right: 10px;
  364. text-align: center;
  365. width: 26px;
  366. height: 26px;
  367. line-height: 20px;
  368. z-index: 10;
  369. background: rgba(0, 0, 0, .5);
  370. border-radius: 0 0 0 90%;
  371. overflow: hidden;
  372. }
  373. .upload-img .del-img .iconfont {
  374. color: #fff;
  375. font-size: 14px;
  376. line-height: 14px;
  377. margin-left: 4px;
  378. }
  379. .add-btn {
  380. position: relative;
  381. display: block;
  382. width: 74px;
  383. height: 74px;
  384. font-size: 0;
  385. color: #b8b8b8;
  386. border: 1px dashed #a0a0a0;
  387. background: #fff;
  388. }
  389. .add-btn:before {
  390. content: "";
  391. display: block;
  392. position: absolute;
  393. top: 34px;
  394. left: 22px;
  395. width: 30px;
  396. height: 2px;
  397. background: #a0a0a0;
  398. }
  399. .add-btn:after {
  400. content: "";
  401. display: block;
  402. position: absolute;
  403. top: 20px;
  404. left: 36px;
  405. width: 2px;
  406. height: 30px;
  407. background: #a0a0a0;
  408. }
  409. .doc-tab li {
  410. width: 50%;
  411. }
  412. .doc-tab li.hit {
  413. border-bottom: 3px solid #4dcd70;
  414. }
  415. .doc-tab li.hit a {
  416. color: #4dcd70;
  417. }
  418. .doc-list-sm {
  419. padding: 10px 15px;
  420. }
  421. .doc-list-sm span {
  422. color: #666;
  423. }
  424. .doc-list-sm b {
  425. color: #333;
  426. font-weight: normal;
  427. }
  428. .delimgpop {
  429. position: fixed;
  430. width: 100%;
  431. height: 100%;
  432. left: 0;
  433. top: 0;
  434. background: rgba(0, 0, 0, .8);
  435. text-align: center;
  436. z-index: 2200;
  437. }
  438. .del-img-box {
  439. width: 100%;
  440. height: 100%;
  441. display: table;
  442. }
  443. .del-img-con {
  444. display: table-cell;
  445. vertical-align: middle;
  446. }
  447. .del-img-con img {
  448. width: auto;
  449. height: auto;
  450. border: 2px solid #000;
  451. }
  452. .del-img-con p {
  453. position: relative;
  454. display: inline-block !important;
  455. -webkit-animation: myfirst .3s ease;
  456. }
  457. .del-img-box p:after {
  458. font-family: "iconfont" !important;
  459. content: "\d605";
  460. position: absolute;
  461. display: block;
  462. top: 5px;
  463. right: 10px;
  464. width: 32px;
  465. height: 32px;
  466. z-index: 5000;
  467. color: #fff;
  468. font-size: 32px;
  469. font-style: normal;
  470. -webkit-font-smoothing: antialiased;
  471. -webkit-text-stroke-width: 0.2px;
  472. -moz-osx-font-smoothing: grayscale;
  473. -webkit-text-shadow: 0 0 1px #f00;
  474. text-shadow: 0 0 1px #000;
  475. }
  476. .del-img-btn {
  477. display: inline-block;
  478. height: 40px;
  479. line-height: 40px;
  480. position: absolute;
  481. top: 0;
  482. right: 0;
  483. z-index: 20;
  484. padding: 0 15px;
  485. text-align: right;
  486. color: #000;
  487. }
  488. .del-img-btn .iconfont {
  489. font-size: 20px;
  490. margin-right: 4px;
  491. }
  492. .r-input {
  493. width: 100%;
  494. text-align: right;
  495. }
  496. .r-textarea {
  497. width: 100%;
  498. border: 0;
  499. padding: 0;
  500. resize: none;
  501. }
  502. .over-lay,
  503. .over-lay[id] {
  504. position: fixed;
  505. top: 0;
  506. left: 0;
  507. z-index: 3000;
  508. width: 100%;
  509. height: 100%;
  510. background: rgba(0, 0, 0, .7);
  511. }
  512. .ins-img-btn {
  513. position: fixed;
  514. width: 100%;
  515. bottom: 0;
  516. left: 0;
  517. z-index: 3100;
  518. }
  519. .ins-img-btn .c-btn {
  520. border-radius: 4px;
  521. border: none;
  522. color: #157efb;
  523. font-size: 20px;
  524. }
  525. .ins-img-btn .c-btn:first-child {
  526. border-radius: 4px 4px 0 0;
  527. }
  528. .ins-img-btn .c-btn:nth-child(2) {
  529. border-top: 1px solid #e1e1e1;
  530. border-radius: 0 0 4px 4px;
  531. }
  532. .zx-notes {
  533. text-align: left;
  534. color: #5b5b5b;
  535. font-size: 12px;
  536. }
  537. .ui-popup .zx-notes li {
  538. padding: 0 !important;
  539. margin: 0 !important;
  540. }
  541. /* 咨询信息 */
  542. .talk-box {
  543. position: relative;
  544. width: 100%;
  545. padding: 10px;
  546. background: #fff;
  547. border-radius: 5px;
  548. border: 1px solid #e6bc5d;
  549. -webkit-box-sizing: border-box;
  550. -moz-box-sizing: border-box;
  551. box-sizing: border-box;
  552. }
  553. .talk-box:after {
  554. position: absolute;
  555. content: "";
  556. top: -6px;
  557. left: 30px;
  558. font-size: 13px;
  559. color: #5b5b5b;
  560. width: 10px;
  561. height: 10px;
  562. border: 1px solid #e6bc5d;
  563. border-width: 1px 1px 0 0;
  564. background: #fff;
  565. -webkit-transform: rotate(-45deg);
  566. -moz-transform: rotate(-45deg);
  567. -ms-transform: rotate(-45deg);
  568. -o-transform: rotate(-45deg);
  569. transform: rotate(-45deg);
  570. }
  571. .icon-round {
  572. display: inline-block;
  573. width: 24px;
  574. height: 24px;
  575. text-align: center;
  576. line-height: 24px;
  577. vertical-align: middle;
  578. color: #fff;
  579. font-size: 14px;
  580. border-radius: 50%;
  581. overflow: hidden;
  582. }
  583. .upload-img ul li.upload-btn-box {
  584. width: 240px;
  585. height: 76px;
  586. }
  587. .upload-img ul li.upload-btn-box p {
  588. width: 150px;
  589. font-size: 13px;
  590. color: #5b5b5b;
  591. display: block;
  592. padding: 18px 0 0 10px;
  593. }
  594. .pingjia {
  595. font-size: 13px;
  596. color: #ff8100;
  597. }
  598. .pingjia .iconfont {
  599. font-size: 20px;
  600. line-height: 20px;
  601. color: #ff8100;
  602. }
  603. .bottom-iconbtn {
  604. position: fixed;
  605. bottom: 0;
  606. left: 0;
  607. width: 100%;
  608. height: 44px;
  609. border-top: 1px solid #e1e1e1;
  610. background: #fff;
  611. z-index: 1000;
  612. }
  613. .bottom-iconbtn a {
  614. display: inline-block;
  615. width: 49%;
  616. height: 44px;
  617. line-height: 44px;
  618. text-align: center;
  619. vertical-align: middle;
  620. -webkit-box-sizing: border-box;
  621. -moz-box-sizing: border-box;
  622. box-sizing: border-box;
  623. border-right: 1px solid #e1e1e1;
  624. overflow: hidden;
  625. }
  626. .bottom-iconbtn a:last-child {
  627. border: none;
  628. }
  629. .bottom-iconbtn a .iconfont {
  630. font-size: 18px;
  631. line-height: 18px;
  632. vertical-align: middle;
  633. }
  634. .sel-phiz {
  635. overflow: hidden;
  636. padding-right: 15px;
  637. }
  638. .sel-phiz li {
  639. width: 25%;
  640. float: left;
  641. text-align: center;
  642. color: #333;
  643. font-size: 15px;
  644. }
  645. .sel-phiz li:nth-child(2) {
  646. margin: 0 12.4%;
  647. }
  648. .sel-phiz li .iconfont {
  649. font-size: 40px;
  650. line-height: 40px;
  651. color: #ccc;
  652. }
  653. .sel-phiz li p {
  654. padding-top: 5px;
  655. }
  656. .sel-phiz li.selected .iconfont {
  657. color: #ff8100;
  658. }
  659. .padding-fixed {
  660. width: 100%;
  661. height: 70px;
  662. }
  663. .tel-zx-list>li .n-list-key {
  664. min-width: 6em;
  665. }
  666. /*爱心咨询*/
  667. .common-title {
  668. font-size: 12px;
  669. padding: 10px 15px;
  670. color: #5b5b5b;
  671. }
  672. .ax-consultation li {
  673. position: relative;
  674. }
  675. .ax-consultation select,
  676. .ax-consultation input {
  677. color: #909090 !important;
  678. }
  679. .ax-consultation li input.short {
  680. border: 1px solid #000;
  681. width: 50%;
  682. box-sizing: border-box;
  683. }
  684. .ax-consultation li .input-group .form-select {
  685. height: 30px;
  686. box-sizing: border-box;
  687. padding: 2px 13px 2px 5px;
  688. }
  689. .ax-consultation li .form-select-arrow {
  690. top: 9px;
  691. right: 7px;
  692. }
  693. .ax-consultation li .c-list-value h4 {
  694. min-width: 4em;
  695. }
  696. .ax-consultation li .input-group {
  697. position: relative;
  698. }
  699. .arrow-down {
  700. display: block;
  701. width: 8px;
  702. height: 8px;
  703. border: solid #cdcdcd;
  704. border-width: 2px 2px 0 0;
  705. -webkit-transform: rotate(135deg);
  706. -moz-transform: rotate(135deg);
  707. -ms-transform: rotate(135deg);
  708. -o-transform: rotate(135deg);
  709. transform: rotate(135deg);
  710. }
  711. .ax-consultation li .list-icon {
  712. position: absolute;
  713. right: 15px;
  714. top: 50%;
  715. margin-top: -4px;
  716. }
  717. .ax-consultation li .input-group .list-icon {
  718. position: absolute;
  719. right: 10px;
  720. top: 50%;
  721. margin-top: -4px;
  722. }
  723. .pl40 {
  724. padding-left: 40px;
  725. }
  726. .ml40 {
  727. margin-left: 40px;
  728. }
  729. .ax-consultation li .input-group-addon {
  730. padding: 0 10px;
  731. }
  732. .pm_age {
  733. display: inline-block;
  734. width: 138px;
  735. height: 30px;
  736. border: 1px solid #ddd;
  737. border-radius: 5px;
  738. -webkit-border-radius: 5px;
  739. vertical-align: middle;
  740. overflow: hidden;
  741. position: relative;
  742. }
  743. .ageinput {
  744. width: 65px;
  745. height: 30px;
  746. line-height: 30px;
  747. background: #fff;
  748. border: none;
  749. float: left;
  750. font-size: 15px;
  751. color: #333;
  752. border-right: 1px solid #ddd;
  753. padding-left: 10px;
  754. border-radius: 5px 0 0 5px;
  755. }
  756. .pm_age .agesel {
  757. width: 60px;
  758. height: 30px;
  759. line-height: 30px;
  760. float: left;
  761. font-size: 15px;
  762. color: #808080;
  763. border: none;
  764. -webkit-appearance: none;
  765. -moz-appearance: none;
  766. appearance: none;
  767. font-family: "\5FAE\8F6F\96C5\9ED1", Helvetica;
  768. background: url(/images/point_d.png) 94% center no-repeat #fff;
  769. background-size: 13px 8px;
  770. -webkit-background-size: 13px 8px;
  771. padding: 0 0 0 10px;
  772. }
  773. .pt2 {
  774. padding-top: 2px;
  775. }
  776. /*问医生*/
  777. .bg-9dcd82 {
  778. background: #9dcd82;
  779. }
  780. .bg-ff7aac {
  781. background: #ff7aac;
  782. }
  783. .bg-8ebcf8 {
  784. background: #8ebcf8;
  785. }
  786. .bg-ffbc16 {
  787. background: #ffbc16;
  788. }
  789. .ask-doctors-boxer .c-avatar-m i {
  790. width: 40px;
  791. height: 40px;
  792. border-radius: 40px;
  793. text-align: center;
  794. line-height: 40px;
  795. display: block;
  796. color: #fff;
  797. font-size: 24px;
  798. }
  799. .ask-doctors-boxer .tiper-words {
  800. width: 100%;
  801. box-sizing: border-box;
  802. }
  803. .ask-doctors-boxer .tiper-words img {
  804. width: 100%;
  805. }
  806. /*专家列表*/
  807. .professor-listhead {
  808. height: 45px;
  809. background: #fff;
  810. width: 100%;
  811. z-index: 99;
  812. position: fixed;
  813. bottom: 0;
  814. left: 0;
  815. }
  816. .professor-listhead li {
  817. float: left;
  818. line-height: 45px;
  819. box-sizing: border-box;
  820. border-right: 1px solid #f2f2f2;
  821. text-align: center;
  822. color: #5b5b5b;
  823. font-size: 14px;
  824. height: 45px;
  825. }
  826. .professor-listhead li span {
  827. text-overflow: ellipsis;
  828. overflow: hidden;
  829. height: 45px;
  830. line-height: 45px;
  831. white-space: nowrap;
  832. max-width: 80%;
  833. display: inline-block;
  834. position: relative;
  835. padding: 0 15px 0 0;
  836. box-sizing: border-box;
  837. }
  838. .professor-listhead li:last-child {
  839. border: none;
  840. }
  841. .professor-listhead li em.cur {
  842. color: #37a6eb;
  843. }
  844. .professor-listhead li i {
  845. display: block;
  846. position: absolute;
  847. top: 20px;
  848. right: 0;
  849. }
  850. .professor-listhead li.cur i.s-arrow-down {
  851. width: 0;
  852. height: 0;
  853. border-left: 5px solid transparent;
  854. border-right: 5px solid transparent;
  855. border-bottom: 5px solid #b4b4b4;
  856. border-top: 0;
  857. }
  858. .s-arrow-down {
  859. width: 0;
  860. height: 0;
  861. border-left: 5px solid transparent;
  862. border-right: 5px solid transparent;
  863. border-bottom: 5px solid #b4b4b4;
  864. border-top: 0;
  865. }
  866. .professor-main .c-avatar-m {
  867. padding: 6px 0 6px;
  868. }
  869. .professor-main .c-avatar-m img {
  870. border-radius: 40px;
  871. overflow: hidden;
  872. width: 40px;
  873. height: 40px;
  874. }
  875. .professor-main .c-list-indent-s {
  876. padding-right: 15px !important;
  877. }
  878. .pt35 {
  879. padding-top: 35px;
  880. }
  881. .c-ff8100 {
  882. color: #ff8100;
  883. }
  884. .professor-main .c-5b5b5b {
  885. color: #5b5b5b !important;
  886. }
  887. .list-addmore {
  888. color: #007cd9;
  889. font-size: 13px;
  890. width: 100%;
  891. text-align: center;
  892. line-height: 34px;
  893. }
  894. .professor-main .c-list-info {
  895. padding: 6px 0 6px;
  896. }
  897. .professor-main li {
  898. padding-left: 15px !important;
  899. margin-left: 0 !important;
  900. }
  901. /*专家列表iscroll*/
  902. .shadow-panel {
  903. position: fixed;
  904. top: 0;
  905. left: 0;
  906. bottom: 45px;
  907. width: 100%;
  908. z-index: 90;
  909. background-color: rgba(0, 0, 0, .35);
  910. }
  911. .scroll-fixed {
  912. position: fixed;
  913. bottom: 45px;
  914. left: 0;
  915. z-index: 98;
  916. }
  917. .scroll-citybox,
  918. .scroll-hospbox {
  919. width: 100%;
  920. height: 352px;
  921. overflow: hidden;
  922. }
  923. .scroll-specbox {
  924. width: 100%;
  925. height: 352px;
  926. overflow: hidden;
  927. }
  928. .scroll-citybox li,
  929. .scroll-hospbox li {
  930. text-overflow: ellipsis;
  931. white-space: nowrap;
  932. overflow: hidden;
  933. }
  934. .city-box-leftwrapper {
  935. width: 40%;
  936. background: #f5f5f5;
  937. }
  938. .city-box-rightwrapper {
  939. width: 60%;
  940. background: #ffffff;
  941. }
  942. .hosp-box-leftwrapper {
  943. width: 50%;
  944. background: #f5f5f5;
  945. }
  946. .hosp-box-rightwrapper {
  947. width: 50%;
  948. background: #ffffff;
  949. }
  950. .spec-box-leftwrapper {
  951. width: 100%;
  952. background: #ffffff;
  953. font-size: 14px;
  954. }
  955. .cc-lef li {
  956. padding: 11px 20px;
  957. color: #5b5b5b;
  958. font-size: 14px;
  959. border-right: 1px solid #e1e1e1;
  960. border-bottom: 1px solid #e1e1e1;
  961. width: 100%;
  962. box-sizing: border-box;
  963. }
  964. .cc-lef li:last-child {
  965. border-bottom: none;
  966. }
  967. .cc-lef li span {
  968. display: -webkit-box;
  969. -webkit-box-orient: vertical;
  970. -webkit-line-clamp: 2;
  971. white-space: normal;
  972. overflow: hidden;
  973. }
  974. .cc-rig li {
  975. margin-left: 15px;
  976. border-bottom: 1px solid #e1e1e1;
  977. height: 43px;
  978. line-height: 43px;
  979. color: #5b5b5b;
  980. font-size: 14px;
  981. }
  982. .cc-rig li:last-child {
  983. border-bottom: none;
  984. }
  985. .cc-lef li.cur {
  986. background: #fff;
  987. border-right: 1px solid #fff;
  988. }
  989. .cc-rig li.cur {
  990. color: #37a6eb;
  991. }
  992. .city-box-leftwrapper,
  993. .city-box-rightwrapper,
  994. .hosp-box-leftwrapper,
  995. .hosp-box-rightwrapper,
  996. .spec-box-leftwrapper {
  997. float: left;
  998. position: relative;
  999. height: 352px;
  1000. overflow: hidden;
  1001. /* Prevent native touch events on Windows */
  1002. -ms-touch-action: none;
  1003. /* Prevent the callout on tap-hold and text selection */
  1004. -webkit-touch-callout: none;
  1005. -webkit-user-select: none;
  1006. -moz-user-select: none;
  1007. -ms-user-select: none;
  1008. user-select: none;
  1009. /* Prevent text resize on orientation change, useful for web-apps */
  1010. -webkit-text-size-adjust: none;
  1011. -moz-text-size-adjust: none;
  1012. -ms-text-size-adjust: none;
  1013. -o-text-size-adjust: none;
  1014. text-size-adjust: none;
  1015. }
  1016. .city-leftscroller,
  1017. .city-rightscroller,
  1018. .hosp-leftscroller,
  1019. .hosp-rightscroller,
  1020. .spec-leftscroller {
  1021. position: absolute;
  1022. width: 100%;
  1023. /* Prevent elements to be highlighted on tap */
  1024. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1025. /* Put the scroller into the HW Compositing layer right from the start */
  1026. -webkit-transform: translateZ(0);
  1027. -moz-transform: translateZ(0);
  1028. -ms-transform: translateZ(0);
  1029. -o-transform: translateZ(0);
  1030. transform: translateZ(0);
  1031. }
  1032. .shadow-panel {
  1033. display: none;
  1034. }
  1035. .spec-leftscroller div.c-33 {
  1036. color: #5b5b5b;
  1037. float: left;
  1038. box-sizing: border-box;
  1039. border-right: 1px solid #e1e1e1;
  1040. border-bottom: 1px solid #e1e1e1;
  1041. text-align: center;
  1042. text-overflow: ellipsis;
  1043. white-space: nowrap;
  1044. overflow: hidden;
  1045. height: 36px;
  1046. line-height: 36px;
  1047. font-size: 14px;
  1048. }
  1049. .spec-leftscroller div.c-33.cur {
  1050. color: #37a6eb;
  1051. }
  1052. .main-scrollboxer {
  1053. -webkit-overflow-scrolling: touch;
  1054. }
  1055. /*医生列表搜索无数据*/
  1056. .search-nodata {
  1057. width: 100%;
  1058. font-size: 16px;
  1059. color: #5b5b5b;
  1060. text-align: center;
  1061. padding: 100px 0 40px 0;
  1062. }
  1063. .search-nodata-img {
  1064. width: 40%;
  1065. max-width: 320px;
  1066. margin: 0 auto;
  1067. }
  1068. .search-nodata-icon {
  1069. background: url(../images/no-data.png) no-repeat 100% 0;
  1070. width: 100%;
  1071. height: 0;
  1072. padding-bottom: 100%;
  1073. background-size: 100% auto;
  1074. }
  1075. /*网络咨询详情页*/
  1076. .c-avatar-m {
  1077. width: 40px;
  1078. height: 40px;
  1079. border-radius: 50%;
  1080. overflow: hidden;
  1081. }
  1082. .doctor_detail_intro {
  1083. font-size: 15px;
  1084. background: #fff;
  1085. margin-top: 20px;
  1086. }
  1087. .doctor_detail_intro .tit {
  1088. color: #909090;
  1089. display: inline-block;
  1090. float: left;
  1091. width: 75px;
  1092. }
  1093. .doctor_detail_intro .tit2 {
  1094. color: #909090;
  1095. display: inline-block;
  1096. float: left;
  1097. width: auto;
  1098. }
  1099. .doctor_detail_intro .words {
  1100. -webkit-box-flex: 1;
  1101. box-flex: 1;
  1102. display: box;
  1103. display: -webkit-box;
  1104. -webkit-box-orient: vertical;
  1105. -webkit-box-pack: center;
  1106. padding-right: 15px;
  1107. box-sizing: border-box;
  1108. color: #333;
  1109. overflow: hidden;
  1110. }
  1111. .doctor_detail_intro .main_good_at,
  1112. .doctor_detail_intro .main_intro {
  1113. margin-left: 15px;
  1114. padding: 15px 0
  1115. }
  1116. .report-img,
  1117. .report-img img {
  1118. width: 70px;
  1119. height: 70px;
  1120. float: left;
  1121. margin-right: 10px;
  1122. }
  1123. .time-title {
  1124. width: 22px;
  1125. height: 22px;
  1126. border-radius: 50%;
  1127. line-height: 20px;
  1128. text-align: center;
  1129. display: inline-block;
  1130. background-color: #4dcd70
  1131. }
  1132. .time-title i,
  1133. iconfont {
  1134. font-size: 13px;
  1135. }
  1136. .review {
  1137. width: 100%;
  1138. margin-top: 10px;
  1139. }
  1140. .review .hd {
  1141. height: 5px;
  1142. position: relative;
  1143. }
  1144. .review .hd .ui-arrow {
  1145. position: absolute;
  1146. top: -5px;
  1147. left: 10px;
  1148. border-bottom-color: #ff8100;
  1149. }
  1150. .review .hd .ui-arrow s {
  1151. top: -4px;
  1152. }
  1153. .review .bd {
  1154. border: 1px solid #ff8100;
  1155. padding: 10px;
  1156. -webkit-border-radius: 5px;
  1157. -moz-border-radius: 5px;
  1158. border-radius: 5px;
  1159. }
  1160. /*电话咨询记录*/
  1161. .doctor_detail_intro .record-tit {
  1162. color: #909090;
  1163. display: inline-block;
  1164. float: left;
  1165. width: 85px;
  1166. }
  1167. .no-record {
  1168. text-align: center;
  1169. line-height: 23px;
  1170. padding: 0 15px;
  1171. }
  1172. .icon-record {
  1173. display: inline-block;
  1174. width: 125px;
  1175. height: 125px;
  1176. background: url(../images/no-data.png) no-repeat;
  1177. background-size: 100% 100%;
  1178. -webkit-background-size: 100% 100%;
  1179. -moz-background-size: 100% 100%;
  1180. -ms-background-size: 100% 100%;
  1181. margin: 60px 0 5px 0;
  1182. }
  1183. /*电话咨询-登记成功*/
  1184. .win-register {
  1185. text-align: center;
  1186. }
  1187. .win-register i,
  1188. iconfont {
  1189. font-size: 60px;
  1190. }
  1191. .b-height {
  1192. height: 80px;
  1193. }
  1194. .s-height {
  1195. height: 40px;
  1196. line-height: 40px;
  1197. text-align: center
  1198. }
  1199. .c-49 {
  1200. width: 49%
  1201. }
  1202. /*确认就诊人信息*/
  1203. .demo-input-merge .input-group-addon {
  1204. min-width: 90px;
  1205. width: 90px;
  1206. text-align: left;
  1207. }
  1208. .l-span {
  1209. top: 17px;
  1210. left: 0px;
  1211. position: absolute;
  1212. color: #f00
  1213. }
  1214. .words-box {
  1215. padding-top: 8px;
  1216. border-top: 1px solid #e1e1e1;
  1217. }
  1218. .words-box .form-textarea2 {
  1219. height: 100px;
  1220. border: 0px;
  1221. resize: none
  1222. }
  1223. .input-merge .input-group.input-border .input-group-addon,
  1224. .input-merge .input-group.input-border .form-control,
  1225. .input-merge .input-group.input-border .form-select,
  1226. .input-merge .input-group.input-border .form-textarea,
  1227. .input-merge .input-group.input-border .form-control,
  1228. .input-merge .input-group.input-border .form-select,
  1229. .input-merge .input-group.input-border .form-textarea,
  1230. .input-merge .input-group.input-border .input-group-addon {
  1231. border-radius: 0px;
  1232. }
  1233. .input-merge .input-group.input-border {
  1234. padding-left: 15px;
  1235. }
  1236. .input-merge .input-group.input-border .input-group-addon {
  1237. padding-left: 0
  1238. }
  1239. .t-14 {
  1240. top: 14px;
  1241. }
  1242. .t-12 {
  1243. top: 12px;
  1244. position: absolute;
  1245. color: #ff8100;
  1246. }
  1247. .words-box .form-textarea2::-webkit-input-placeholder,
  1248. .words-box .r-textarea::-webkit-input-placeholder {
  1249. color: #bfbfbf;
  1250. }
  1251. .words-box .form-textarea2:-moz-placeholder,
  1252. .words-box .r-textarea:-moz-input-placeholder {
  1253. color: #bfbfbf;
  1254. }
  1255. .words-box .form-textarea2:-ms-input-placeholder,
  1256. .words-box .r-textarea:-ms-input-placeholder {
  1257. color: #bfbfbf;
  1258. }
  1259. .number-r-b {
  1260. right: 15px;
  1261. bottom: -15px;
  1262. position: absolute;
  1263. }
  1264. /*网络咨询*/
  1265. .hz-header {
  1266. height: 45px;
  1267. background: #fff;
  1268. }
  1269. .hz-header li {
  1270. font-size: 13px;
  1271. color: #5b5b5b;
  1272. }
  1273. .hz-header li.cur {
  1274. border-bottom: 2px solid #37a6ed;
  1275. }
  1276. .hz-header li.cur span {
  1277. color: #007cd9;
  1278. }
  1279. .hz-header li span {
  1280. margin: 12px 0;
  1281. border-right: 1px solid #e1e1e1;
  1282. text-align: center;
  1283. display: block;
  1284. box-sizing: border-box;
  1285. }
  1286. .visit-list {}
  1287. .visit-list li {
  1288. border-top: 1px solid #e1e1e1;
  1289. border-bottom: 1px solid #e1e1e1;
  1290. background: #fff;
  1291. padding-left: 15px;
  1292. margin-top: 15px;
  1293. }
  1294. .visit-list li .vlname {
  1295. line-height: 45px;
  1296. border-bottom: 1px solid #f2f2f2;
  1297. position: relative;
  1298. padding-right: 15px;
  1299. }
  1300. .visit-list li .vlname .arrow-right {
  1301. position: absolute;
  1302. right: 15px;
  1303. top: 50%;
  1304. margin-top: -4px;
  1305. }
  1306. .visit-list li .vlcard {
  1307. line-height: 40px;
  1308. color: #bfbfbf;
  1309. padding-right: 15px;
  1310. }
  1311. .c-btn-r,
  1312. .c-btn-full-r {
  1313. display: inline-block;
  1314. zoom: 1;
  1315. *display: inline;
  1316. vertical-align: baseline;
  1317. outline: none;
  1318. cursor: pointer;
  1319. border: 0;
  1320. background: none;
  1321. text-align: center;
  1322. text-decoration: none;
  1323. padding: 5px 10px;
  1324. color: #fff;
  1325. position: relative;
  1326. font: 14px/1 \5FAE\8F6F\96C5\9ED1, tahoma, arial, \5b8b\4f53;
  1327. line-height: normal !important;
  1328. background-color: #37a6ec;
  1329. border-radius: 4px;
  1330. }
  1331. .r-w100 {
  1332. width: 100px;
  1333. text-align: right;
  1334. }
  1335. .bgc-fffae8 {
  1336. background: #fffae8;
  1337. }
  1338. .pb3 {
  1339. padding-bottom: 3px;
  1340. }
  1341. .pb2 {
  1342. padding-bottom: 2px;
  1343. }
  1344. .c-ser-btn a {
  1345. height: 28px;
  1346. line-height: 28px;
  1347. border: 1px solid #e8e8e8;
  1348. }
  1349. .c-avatar-s img,
  1350. .c-avatar-m img,
  1351. .c-avatar-l img {
  1352. width: 100%;
  1353. height: auto;
  1354. }
  1355. .test-boxer .c-avatar-m {
  1356. text-align: center;
  1357. padding: 0;
  1358. }
  1359. .test-boxer .c-avatar-m img {
  1360. width: auto;
  1361. height: 100%;
  1362. border-radius: 0;
  1363. }
  1364. /*2015.11.9*/
  1365. .scroll-include {
  1366. height: 260px;
  1367. overflow: hidden;
  1368. }
  1369. @media (device-height:480px) and (-webkit-min-device-pixel-ratio:2) {
  1370. /* 兼容iphone4/4s */
  1371. .scroll-include {
  1372. height: 200px;
  1373. }
  1374. }
  1375. /*2015.11.18*/
  1376. .c-nowrap.c-f16 {
  1377. font-size: 16px !important;
  1378. }
  1379. /*2.12专家列表*/
  1380. .c-ser-main i.left-42 {
  1381. left: 42%;
  1382. }
  1383. .professor-listhead.professor-list-listhead {}
  1384. .professor-list-btn {
  1385. height: 28px;
  1386. line-height: 28px;
  1387. border-radius: 4px;
  1388. padding: 5px 10px;
  1389. margin-left: 10px;
  1390. }
  1391. /*2.12编辑模板*/
  1392. .list-arrow-r.ml0 {
  1393. margin-left: 0;
  1394. }
  1395. /*2.12回复模块*/
  1396. .icon-look {
  1397. background: url(../images/icon-look.png) no-repeat 0 0;
  1398. background-size: 100%;
  1399. width: 22px;
  1400. height: 23px;
  1401. display: block;
  1402. margin: 10px auto 0;
  1403. }
  1404. .talk-box.reply-talk-box {
  1405. padding: 0;
  1406. border-color: #e1e1e1;
  1407. }
  1408. .talk-box.reply-talk-box:after {
  1409. border-color: #e1e1e1;
  1410. left: 15px;
  1411. }
  1412. .talk-box.reply-talk-box.right:after {
  1413. right: 15px;
  1414. left: auto;
  1415. }
  1416. .reply-talk-box.n-list>li {
  1417. padding-left: 15px;
  1418. margin-left: 0;
  1419. border-top: 0;
  1420. }
  1421. .reply-talk-box .look-report li {
  1422. float: left;
  1423. width: 57px;
  1424. text-align: center;
  1425. }
  1426. .reply-talk-box .look-report li div {
  1427. height: 56px;
  1428. border: 1px solid #e3e3e3;
  1429. }
  1430. .icon-homan {
  1431. display: block;
  1432. background: #e1e1e1 url(../images/icon-homan.png) no-repeat 50% 50%;
  1433. width: 40px;
  1434. height: 40px;
  1435. border-radius: 50%;
  1436. background-size: 50%;
  1437. }
  1438. .btn-voice {
  1439. background: url(../images/btn-voice.jpg) no-repeat 0 0;
  1440. background-size: 100%;
  1441. width: 85px;
  1442. height: 34px;
  1443. display: block;
  1444. }
  1445. .icon-reply {
  1446. width: 15px;
  1447. height: 15px;
  1448. display: block;
  1449. background: url(../images/icon-reply.jpg) no-repeat 0 0;
  1450. background-size: 100%;
  1451. }
  1452. .icon-broadcast {
  1453. background: url(../images/icon-broadcast.png) no-repeat 0 0;
  1454. background-size: 100%;
  1455. width: 12px;
  1456. height: 16px;
  1457. }
  1458. .icon-border {
  1459. width: 1px;
  1460. height: 14px;
  1461. margin: 5px 12px 0;
  1462. background-color: #ddd;
  1463. }
  1464. .reply-title {
  1465. position: relative;
  1466. background: #97caff;
  1467. color: #fff;
  1468. font-size: 14px;
  1469. padding: 10px 0;
  1470. padding-left: 25px;
  1471. }
  1472. .reply-title:after {
  1473. position: absolute;
  1474. top: 50%;
  1475. left: 15px;
  1476. margin-top: -5px;
  1477. content: "";
  1478. display: block;
  1479. width: 8px;
  1480. height: 8px;
  1481. border: 1px solid #fff;
  1482. border-width: 0 0 2px 2px;
  1483. -webkit-transform: rotate(45deg);
  1484. -moz-transform: rotate(45deg);
  1485. -ms-transform: rotate(45deg);
  1486. transform: rotate(45deg);
  1487. }
  1488. .c-tag-blue.c-f13 {
  1489. font-size: 13px;
  1490. }
  1491. /*2.12关注*/
  1492. .heed {
  1493. background: url(../images/heed.png) no-repeat 0 0;
  1494. background-size: 100%;
  1495. width: 26px;
  1496. height: 26px;
  1497. display: block;
  1498. margin: 0 auto 5px;
  1499. }
  1500. .heed-orange {
  1501. background: url(../images/heed-orange.png) no-repeat 0 0;
  1502. background-size: 100%;
  1503. width: 26px;
  1504. height: 26px;
  1505. display: block;
  1506. margin: 0 auto 5px;
  1507. }
  1508. #heed,
  1509. #heed-orange {
  1510. width: 40px;
  1511. text-align: center;
  1512. padding-top: 12px;
  1513. }
  1514. .pm_age .agesel.w-70 {
  1515. width: 70px;
  1516. }
  1517. /*2.12回复录音*/
  1518. .win-broadcast {
  1519. position: fixed;
  1520. outline: 0px;
  1521. top: 50%;
  1522. left: 50%;
  1523. margin: -113px 0 0 -135px;
  1524. width: 269px;
  1525. height: 226px;
  1526. border-radius: 5px;
  1527. z-index: 100;
  1528. }
  1529. .win-broadcast .bg {
  1530. background-color: #fff;
  1531. width: 269px;
  1532. height: 226px;
  1533. border-radius: 5px;
  1534. display: block;
  1535. }
  1536. .win-broadcast .broadcast {
  1537. background: url(../images/broadcast.png) no-repeat 0 -2px;
  1538. width: 85px;
  1539. height: 85px;
  1540. display: block;
  1541. background-size: 100%;
  1542. position: absolute;
  1543. top: 67px;
  1544. left: 34%;
  1545. border-radius: 50%;
  1546. z-index: 99;
  1547. }
  1548. .win-broadcast .word {
  1549. position: absolute;
  1550. bottom: 0;
  1551. border-radius: 5px;
  1552. border-top: 1px solid #e1e1e1;
  1553. border-top-right-radius: 0;
  1554. border-top-left-radius: 0;
  1555. color: #666;
  1556. background-color: #fff;
  1557. height: 35px;
  1558. width: 100%;
  1559. line-height: 35px;
  1560. }
  1561. .win-broadcast .word.title {
  1562. top: 0;
  1563. border-top-left-radius: 5px;
  1564. border-top-right-radius: 5px;
  1565. }
  1566. .delete {
  1567. display: block;
  1568. position: absolute;
  1569. height: 12px;
  1570. width: 12px;
  1571. border-radius: 50%;
  1572. background-color: #fff;
  1573. right: 6px;
  1574. top: 6px;
  1575. z-index: 10;
  1576. text-align: center;
  1577. line-height: 9px;
  1578. color: #919191;
  1579. font-size: 12px;
  1580. }
  1581. .broadcast-shadow-panel {
  1582. width: 100%;
  1583. position: absolute;
  1584. overflow: hidden;
  1585. z-index: 10;
  1586. top: 0;
  1587. background-color: rgba(0, 0, 0, .35);
  1588. }
  1589. /*动画*/
  1590. .win-broadcast .broadcast {
  1591. animation: broadcast 2s infinite;
  1592. -webkit-animation: broadcast 2s infinite;
  1593. /* Safari 和 Chrome */
  1594. }
  1595. /* Safari 和 Chrome */
  1596. @-webkit-keyframes broadcast
  1597. {
  1598. 0% {
  1599. background-color: #ccf5ff;
  1600. box-shadow: 0 0 0 0px #ccf5ff, 0 0 0 0 #c3e9f2, 0 0 0 0px #e9fffe, 0 0 0 0 #ddf5f4;
  1601. }
  1602. 25% {
  1603. background-color: #ccf5ff;
  1604. box-shadow: 0 0 0 5px #ccf5ff, 0 0 0 1px #c3e9f2, 0 0 0 20px #e9fffe, 0 0 0 1px #ddf5f4;
  1605. }
  1606. 50% {
  1607. background-color: #ccf5ff;
  1608. box-shadow: 0 0 0 10px #ccf5ff, 0 0 0 1px #c3e9f2, 0 0 0 25px #e9fffe, 0 0 0 1px #ddf5f4;
  1609. }
  1610. 100% {
  1611. background-color: #ccf5ff;
  1612. box-shadow: 0 0 0 15px #ccf5ff, 0 0 0 1px #c3e9f2, 0 0 0 30px #e9fffe, 0 0 0 1px #ddf5f4;
  1613. }
  1614. }
  1615. /* 12-18 */
  1616. .nxz-voice {
  1617. line-height: 21px;
  1618. text-align: right;
  1619. }
  1620. .nzx-tb {
  1621. display: inline-block;
  1622. width: 15px;
  1623. height: 21px;
  1624. background: url(../images/icon-broadcast.png) no-repeat;
  1625. background-size: 100% auto;
  1626. -webkit-background-size: 100% auto;
  1627. -moz-background-size: 100% auto;
  1628. -ms-background-size: 100% auto;
  1629. vertical-align: middle;
  1630. }
  1631. .win-broadcast-mb {
  1632. width: 100%;
  1633. height: 100%;
  1634. position: fixed;
  1635. left: 0;
  1636. top: 0;
  1637. z-index: 10;
  1638. background: rgba(0, 0, 0, .35);
  1639. display: none;
  1640. }
  1641. .myorder li .vlname {
  1642. line-height: 20px;
  1643. border-bottom: 1px solid #f2f2f2;
  1644. position: relative;
  1645. padding-right: 15px;
  1646. padding-top: 10px;
  1647. padding-bottom: 10px;
  1648. }
  1649. /* 1-12 */
  1650. .myaks-top {}
  1651. .myaks-top li {
  1652. background: #fff;
  1653. border-top: 1px solid #e1e1e1;
  1654. border-bottom: 1px solid #e1e1e1;
  1655. margin-top: 10px;
  1656. }
  1657. .myaks-top li:first-child {
  1658. margin-top: 0;
  1659. }
  1660. .mt-mess {
  1661. margin-left: 10px;
  1662. padding: 10px 0;
  1663. }
  1664. .mt-con {
  1665. margin-left: 10px;
  1666. padding: 10px 10px 10px 0;
  1667. border-top: 1px solid #f2f2f2;
  1668. }
  1669. .mtime {
  1670. line-height: 25px;
  1671. }
  1672. .mtime em {
  1673. display: inline-block;
  1674. width: 14px;
  1675. height: 14px;
  1676. background: url(../images/sex.png) no-repeat;
  1677. background-size: 29px 14px;
  1678. vertical-align: middle;
  1679. margin: 0 5px 5px 0;
  1680. }
  1681. .mtime em.sex-male {
  1682. background-position: 0 0;
  1683. }
  1684. .mtime em.sex-female {
  1685. background-position: -15px 0;
  1686. }
  1687. .msympt {
  1688. position: relative;
  1689. padding-left: 40px;
  1690. min-height: 20px;
  1691. }
  1692. .msympt h4 {
  1693. display: block;
  1694. position: absolute;
  1695. left: 0;
  1696. top: 0;
  1697. color: #909090;
  1698. }
  1699. .mt-state {
  1700. line-height: 40px;
  1701. text-align: center;
  1702. border-top: 1px solid #f2f2f2;
  1703. color: #17b3ec;
  1704. }
  1705. .mreport-list .c-list-link .c-list-value {
  1706. padding-right: 0;
  1707. }
  1708. .h35 {
  1709. height: 35px;
  1710. }
  1711. .myask-lab {
  1712. width: 100%;
  1713. height: 35px;
  1714. background: #fff;
  1715. }
  1716. .myask-lab li {
  1717. display: block;
  1718. width: 33.33%;
  1719. float: left;
  1720. font-size: 13px;
  1721. color: #5b5b5b;
  1722. line-height: 34px;
  1723. text-align: center;
  1724. position: relative;
  1725. z-index: 600;
  1726. }
  1727. .labfixed {
  1728. position: fixed;
  1729. left: 0;
  1730. top: 0;
  1731. z-index: 600;
  1732. }
  1733. .myask-lab li.curr {
  1734. border-bottom: 2px solid #17b3ec;
  1735. color: #17b3ec;
  1736. }
  1737. .myask-lab:before {
  1738. content: '';
  1739. display: block;
  1740. width: 33.33%;
  1741. height: 22px;
  1742. position: absolute;
  1743. left: 33.33%;
  1744. top: 6px;
  1745. border-left: 1px solid #f2f2f2;
  1746. border-right: 1px solid #f2f2f2;
  1747. z-index: 500;
  1748. }
  1749. .myask-visit li {
  1750. margin-top: 10px;
  1751. }
  1752. .myask-visit li:first-child {
  1753. margin-top: 0;
  1754. }
  1755. /* 再次咨询弹窗 */
  1756. .botpop {
  1757. position: fixed;
  1758. left: 0;
  1759. bottom: 0;
  1760. width: 100%;
  1761. z-index: 700;
  1762. -webkit-animation: choopop .2s ease;
  1763. animation: choopop .2s ease;
  1764. display: none;
  1765. }
  1766. @-webkit-keyframes choopop {
  1767. 0% {
  1768. bottom: -200px;
  1769. }
  1770. 100% {
  1771. bottom: 0px;
  1772. }
  1773. }
  1774. @keyframes choopop {
  1775. 0% {
  1776. bottom: -200px;
  1777. }
  1778. 100% {
  1779. bottom: 0px;
  1780. }
  1781. }
  1782. .botpop li {
  1783. line-height: 50px;
  1784. background: #fff;
  1785. border-top: 1px solid #f2f2f2;
  1786. padding: 0 15px;
  1787. }
  1788. .botpop li.curr {
  1789. color: #17b3ec;
  1790. }
  1791. .botpopmb {
  1792. width: 100%;
  1793. height: 100%;
  1794. background: rgba(0, 0, 0, .4);
  1795. position: fixed;
  1796. left: 0;
  1797. top: 0;
  1798. z-index: 650;
  1799. display: none;
  1800. }
  1801. /* index */
  1802. .bgc-f3f3f3 {
  1803. background-color: #f3f3f3;
  1804. }
  1805. .bor-f2-r {
  1806. border-right: 1px solid #f2f2f2;
  1807. }
  1808. .bor-f2-b {
  1809. border-bottom: 1px solid #f2f2f2;
  1810. }
  1811. .bor-f2-tb {
  1812. border-top: 1px solid #f2f2f2;
  1813. border-bottom: 1px solid #f2f2f2;
  1814. }
  1815. .lih43 {
  1816. line-height: 43px;
  1817. }
  1818. .icon-mindex {
  1819. display: inline-block;
  1820. background: url(../images/icon-mindex.png) no-repeat;
  1821. background-size: 250px 250px;
  1822. vertical-align: text-top;
  1823. }
  1824. .icon-mpart1 {
  1825. width: 91px;
  1826. height: 100px;
  1827. background-position: 0 0;
  1828. margin-bottom: 5px;
  1829. }
  1830. .icon-mpart2 {
  1831. width: 49px;
  1832. height: 40px;
  1833. background-position: -95px 0;
  1834. margin-top: -21px;
  1835. }
  1836. .icon-mpart3 {
  1837. width: 40px;
  1838. height: 39px;
  1839. background-position: -150px 0;
  1840. margin-bottom: 2px;
  1841. }
  1842. .icon-mpart4 {
  1843. width: 41px;
  1844. height: 39px;
  1845. background-position: -195px 0;
  1846. margin-bottom: 2px;
  1847. }
  1848. .icon-msearch {
  1849. width: 15px;
  1850. height: 15px;
  1851. background-position: 0 -155px;
  1852. margin: 1px 5px 0 0;
  1853. }
  1854. .mindex-search {
  1855. width: 100%;
  1856. padding: 8px 7px;
  1857. background-color: #fff;
  1858. }
  1859. .mindex-search div {
  1860. height: 27px;
  1861. line-height: 27px;
  1862. background-color: #f2f2f2;
  1863. border-radius: 3px;
  1864. }
  1865. .mindex-search div {
  1866. position: relative;
  1867. padding: 0 10px 0 30px;
  1868. }
  1869. .mindex-search .icon-msearch {
  1870. position: absolute;
  1871. left: 8px;
  1872. top: 5px;
  1873. }
  1874. .mindex-search .search-text {
  1875. display: block;
  1876. width: 100%;
  1877. height: 100%;
  1878. background-color: #f2f2f2;
  1879. appearance: none;
  1880. -webkit-appearance: none;
  1881. border-radius: 3px;
  1882. }
  1883. .mindex-top {
  1884. background: #fff;
  1885. line-height: 20px;
  1886. height: 187px;
  1887. }
  1888. .mt-center {
  1889. display: box;
  1890. display: -webkit-box;
  1891. -webkit-box-orient: vertical;
  1892. -webkit-box-pack: center;
  1893. text-align: center;
  1894. }
  1895. .mt-part1-1 {
  1896. width: 47%;
  1897. height: 100%;
  1898. float: left;
  1899. }
  1900. .mt-part1-2 {
  1901. width: 53%;
  1902. height: 100%;
  1903. float: left;
  1904. }
  1905. .mt-part2 {
  1906. width: 100%;
  1907. height: 50%;
  1908. }
  1909. .mt-part3 {
  1910. width: 50%;
  1911. height: 100%;
  1912. float: left;
  1913. }
  1914. .mt-freeask {
  1915. display: inline-block;
  1916. }
  1917. .mindex-img {
  1918. position: relative;
  1919. }
  1920. .mindex-img .bd li {
  1921. display: block;
  1922. width: 100%;
  1923. height: 61px;
  1924. }
  1925. .mindex-img .bd li img {
  1926. width: 100%;
  1927. height: 100%;
  1928. }
  1929. .mindex-img .hd {
  1930. position: absolute;
  1931. height: 7px;
  1932. line-height: 7px;
  1933. bottom: 5px;
  1934. left: 50%;
  1935. font-size: 1px;
  1936. transform: translateX(-50%);
  1937. -webkit-transform: translateX(-50%);
  1938. -moz-transform: translateX(-50%);
  1939. -ms-transform: translateX(-50%);
  1940. }
  1941. .mindex-img .hd li {
  1942. display: inline-block;
  1943. width: 7px;
  1944. height: 7px;
  1945. line-height: 7px;
  1946. background: #cacaca;
  1947. border-radius: 50%;
  1948. margin: 0 5px;
  1949. font-size: 0px;
  1950. overflow: hidden;
  1951. color: #cacaca;
  1952. }
  1953. .mindex-img .hd li.on {
  1954. background: #17b3ec;
  1955. color: #17b3ec;
  1956. }
  1957. .mindex-list {
  1958. background-color: #fff;
  1959. }
  1960. .mindex-list li {
  1961. display: block;
  1962. width: 25%;
  1963. height: 80px;
  1964. float: left;
  1965. box-sizing: border-box;
  1966. -webkit-box-sizing: border-box;
  1967. -moz-box-sizing: border-box;
  1968. -ms-box-sizing: border-box;
  1969. display: box;
  1970. display: -webkit-box;
  1971. -webkit-box-orient: vertical;
  1972. -webkit-box-pack: center;
  1973. text-align: center;
  1974. border-right: 1px solid #f2f2f2;
  1975. border-top: 1px solid #f2f2f2;
  1976. color: #909090;
  1977. }
  1978. .mindex-list li:nth-child(4n) {
  1979. border-right: 0;
  1980. }
  1981. .mindex-list li i {
  1982. width: 25px;
  1983. height: 25px;
  1984. }
  1985. .icon-mlist3 {
  1986. background-position: 0 -105px;
  1987. }
  1988. .icon-mlist4 {
  1989. background-position: -25px -105px;
  1990. }
  1991. .icon-mlist5 {
  1992. background-position: -50px -105px;
  1993. }
  1994. .icon-mlist80 {
  1995. background-position: -75px -105px;
  1996. }
  1997. .icon-mlist10 {
  1998. background-position: -100px -105px;
  1999. }
  2000. .icon-mlist11 {
  2001. background-position: -125px -105px;
  2002. }
  2003. .icon-mlist12 {
  2004. background-position: -150px -105px;
  2005. }
  2006. .icon-mlist19 {
  2007. background-position: -175px -105px;
  2008. }
  2009. .icon-mlist13 {
  2010. background-position: -200px -105px;
  2011. }
  2012. .icon-mlist50 {
  2013. background-position: -225px -105px;
  2014. }
  2015. .icon-mlist16 {
  2016. background-position: 0 -130px;
  2017. }
  2018. .icon-mlist54 {
  2019. background-position: -25px -130px;
  2020. }
  2021. .icon-mlist27 {
  2022. background-position: -50px -130px;
  2023. }
  2024. .icon-mlist14 {
  2025. background-position: -75px -130px;
  2026. }
  2027. .icon-mlist21 {
  2028. background-position: -100px -130px;
  2029. }
  2030. .icon-mlist52 {
  2031. background-position: -125px -130px;
  2032. }
  2033. .icon-mlist15 {
  2034. background-position: -150px -130px;
  2035. }
  2036. .icon-mlist81 {
  2037. background-position: -175px -130px;
  2038. }
  2039. .icon-mlist78 {
  2040. background-position: -200px -130px;
  2041. }
  2042. .mindex-recom {
  2043. background-color: #fff;
  2044. padding: 10px;
  2045. }
  2046. .mindex-recom .mrtit {
  2047. line-height: 23px;
  2048. }
  2049. .mindex-recom ul {
  2050. display: block;
  2051. }
  2052. .mindex-recom li {
  2053. display: block;
  2054. width: 25%;
  2055. float: left;
  2056. text-align: center;
  2057. box-sizing: border-box;
  2058. -webkit-box-sizing: border-box;
  2059. -moz-box-sizing: border-box;
  2060. -ms-box-sizing: border-box;
  2061. padding: 0 2px;
  2062. margin-top: 10px;
  2063. line-height: 1.4;
  2064. }
  2065. .mindex-recom li img {
  2066. width: 40px;
  2067. height: 40px;
  2068. border-radius: 50%;
  2069. margin-bottom: 2px;
  2070. }
  2071. /*2.15专家列表*/
  2072. .cc-lef li.cur span {
  2073. padding-left: 15px;
  2074. background: url(../images/cs-jtright.png) no-repeat left center;
  2075. }
  2076. .spec-box-leftwrapper .c-100 {
  2077. text-align: center;
  2078. padding: 15px 15px;
  2079. color: #5b5b5b;
  2080. font-size: 14px;
  2081. border-bottom: 1px solid #e1e1e1;
  2082. box-sizing: border-box;
  2083. }
  2084. .spec-box-leftwrapper .c-100.cur {
  2085. color: #37a6eb;
  2086. }
  2087. .scroll-itemchoscbox {
  2088. width: 100%;
  2089. height: 302px;
  2090. overflow: hidden;
  2091. background: #fff;
  2092. font-size: 14px;
  2093. }
  2094. .itemchos-box-leftwrapper {
  2095. position: relative;
  2096. height: 302px;
  2097. overflow: hidden;
  2098. /* Prevent native touch events on Windows */
  2099. -ms-touch-action: none;
  2100. /* Prevent the callout on tap-hold and text selection */
  2101. -webkit-touch-callout: none;
  2102. -webkit-user-select: none;
  2103. -moz-user-select: none;
  2104. -ms-user-select: none;
  2105. user-select: none;
  2106. /* Prevent text resize on orientation change, useful for web-apps */
  2107. -webkit-text-size-adjust: none;
  2108. -moz-text-size-adjust: none;
  2109. -ms-text-size-adjust: none;
  2110. -o-text-size-adjust: none;
  2111. text-size-adjust: none;
  2112. }
  2113. .itemchos-leftscroller {
  2114. position: absolute;
  2115. width: 100%;
  2116. /* Prevent elements to be highlighted on tap */
  2117. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  2118. /* Put the scroller into the HW Compositing layer right from the start */
  2119. -webkit-transform: translateZ(0);
  2120. -moz-transform: translateZ(0);
  2121. -ms-transform: translateZ(0);
  2122. -o-transform: translateZ(0);
  2123. transform: translateZ(0);
  2124. }
  2125. .itemch-tit h2 {
  2126. line-height: 28px;
  2127. }
  2128. .itemchos-leftscroller .disp-tit-box {
  2129. color: #5b5b5b;
  2130. }
  2131. .itemchos-leftscroller .disp-tit-box em {
  2132. color: #37a6ec;
  2133. }
  2134. .itemchos-leftscroller .disp-mainbox {
  2135. padding: 15px 0 10px;
  2136. }
  2137. .itemchos-leftscroller .disp-sloer .c-33 {
  2138. border-radius: 3px;
  2139. text-align: center;
  2140. background: #f2f2f2;
  2141. color: #333333;
  2142. padding: 3px 0;
  2143. margin-bottom: 15px;
  2144. }
  2145. .itemchos-leftscroller .disp-sloer .c-33.cur {
  2146. background: #37a6ec;
  2147. color: #fff;
  2148. }
  2149. .disp-sloer .c-row .c-33:last-child {
  2150. margin-left: 0;
  2151. }
  2152. .disp-sloer .c-row .c-33.tipsl {
  2153. margin-right: 3%;
  2154. }
  2155. .c-ffa800 {
  2156. color: #ffa800;
  2157. }
  2158. .itemch-tit .c-btn-tiny {
  2159. width: 65px;
  2160. }
  2161. .c-lab-mor li.doctor a {
  2162. border-left: 1px solid #f2f2f2;
  2163. }
  2164. .test-boxer.second .c-avatar-m img {
  2165. border-radius: 100%;
  2166. }
  2167. .second .cc-lef li.cur span {
  2168. background: none;
  2169. }
  2170. /* 绿色风格皮肤样式 */
  2171. /*green*/
  2172. .wdz-green .c-btn-maincolor {
  2173. background: #4dcd70;
  2174. }
  2175. /*微导诊按钮绿色*/
  2176. .wdz-green .c-btn-maincolor:hover {
  2177. background-color: #4dc86f;
  2178. }
  2179. .wdz-green .c-btn-wordcolor {
  2180. color: #4dcd70;
  2181. }
  2182. /*微导诊文字绿色*/
  2183. .wdz-green .professor-listhead li em.cur {
  2184. color: #4dcd70;
  2185. }
  2186. .wdz-green .cc-rig li.cur {
  2187. color: #4dcd70;
  2188. }
  2189. /*专家列表按城市文字绿色*/
  2190. .wdz-green .spec-leftscroller div.c-33.cur {
  2191. color: #4dcd70;
  2192. }
  2193. /*专家列表按专科文字绿色*/
  2194. .wdz-green .c-37a6ed,
  2195. .wdz-green c-007cd9 {
  2196. color: #4dcd70;
  2197. }
  2198. .wdz-green .c-lab-les {
  2199. border: 1px solid #4dc86f;
  2200. }
  2201. .wdz-green .c-lab-les li {
  2202. border-left: 1px solid #4dc86f;
  2203. }
  2204. .wdz-green .c-lab-les li a {
  2205. color: #4dc86f;
  2206. }
  2207. .wdz-green .c-lab-les li.hit {
  2208. background-color: #4dc86f;
  2209. }
  2210. .wdz-green .c-lab-les li.hit a {
  2211. color: #fff;
  2212. }
  2213. .wdz-green .c-lab-mor li.hit {
  2214. border-bottom: 3px solid #4dc86f;
  2215. }
  2216. .wdz-green .c-lab-mor li.hit a {
  2217. color: #4dc86f;
  2218. }
  2219. .wdz-green .hz-header li.cur {
  2220. border-bottom: 2px solid #4dc86f;
  2221. }
  2222. .wdz-green .hz-header li.cur span {
  2223. color: #4dc86f;
  2224. }
  2225. .wdz-green .c-ser-btn a {
  2226. background: #4dc86f;
  2227. }
  2228. .wdz-green .view-more a {
  2229. color: #4dc86f;
  2230. }
  2231. .wdz-green .c-4dc86f {
  2232. color: #4dc86f;
  2233. }
  2234. .wdz-green .spec-box-leftwrapper .c-100.cur {
  2235. color: #4dc86f;
  2236. }
  2237. .wdz-green .scroll-itemchoscbox .c-btn-37a6ec {
  2238. background: #4dcd70;
  2239. }
  2240. .wdz-green .itemchos-leftscroller .disp-sloer .c-33.cur {
  2241. background: #4dcd70;
  2242. }
  2243. .wdz-green .itemchos-leftscroller .disp-tit-box em {
  2244. color: #4dc86f;
  2245. }
  2246. .swiper-container {
  2247. width: 100%;
  2248. margin: 10px auto 0 auto !important;
  2249. }
  2250. .swiper-slide {
  2251. text-align: center;
  2252. font-size: 18px;
  2253. background: #fff;
  2254. display: -webkit-box;
  2255. display: -ms-flexbox;
  2256. display: -webkit-flex;
  2257. display: flex;
  2258. -webkit-box-pack: center;
  2259. -ms-flex-pack: center;
  2260. -webkit-justify-content: center;
  2261. justify-content: center;
  2262. -webkit-box-align: center;
  2263. -ms-flex-align: center;
  2264. -webkit-align-items: center;
  2265. align-items: center;
  2266. }
  2267. .swiper-slide div {
  2268. text-align: center;
  2269. }
  2270. .swiper-container .swiper-slide div img {
  2271. width: 40px;
  2272. height: 40px;
  2273. border-radius: 50%;
  2274. }
  2275. /* 医患沟通开始 */
  2276. .c-chat-box {
  2277. border: none;
  2278. padding-left: 15px;
  2279. padding-right: 15px;
  2280. }
  2281. .time-tips {
  2282. margin: 10px 0 0 0;
  2283. text-align: center;
  2284. clear: both;
  2285. }
  2286. .time-tips span {
  2287. position: relative;
  2288. display: inline-block;
  2289. padding: 0 60px;
  2290. color: #aeaeae;
  2291. font-size: 13px;
  2292. }
  2293. .time-tips span:before,
  2294. .time-tips span:after {
  2295. position: absolute;
  2296. content: "";
  2297. display: block;
  2298. width: 50px;
  2299. height: 1px;
  2300. background: #e6e4e1;
  2301. top: 50%;
  2302. }
  2303. .time-tips span:before {
  2304. left: 0;
  2305. }
  2306. .time-tips span:after {
  2307. right: 0;
  2308. }
  2309. .chat-left,
  2310. .chat-right {
  2311. clear: both;
  2312. overflow: hidden;
  2313. padding: 10px 0;
  2314. }
  2315. .chat-left > dt,
  2316. .chat-right > dt {
  2317. width: 40px;
  2318. height: 40px;
  2319. }
  2320. .chat-left > dt {
  2321. float: left;
  2322. margin-right: 15px;
  2323. }
  2324. .chat-right > dt {
  2325. float: right;
  2326. margin-left: 15px;
  2327. }
  2328. .chat-left > dt img,
  2329. .chat-right > dt img {
  2330. width: 40px;
  2331. height: 40px;
  2332. border-radius: 50%;
  2333. }
  2334. .chat-left > dd,
  2335. .chat-right > dd {
  2336. position: relative;
  2337. min-height: 18px;
  2338. font-size: 15px;
  2339. display: inline-block;
  2340. max-width: 60%;
  2341. background: #fff;
  2342. border: 1px solid #e1e1e1;
  2343. border-radius: 6px;
  2344. padding: 8px 15px;
  2345. box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
  2346. }
  2347. .chat-left > dd {
  2348. float: left;
  2349. white-space: pre-wrap;
  2350. word-wrap: break-word;
  2351. }
  2352. .chat-right > dd {
  2353. float: right;
  2354. background: #bce0ff;
  2355. border: 1px solid #81bdf7;
  2356. white-space: pre-wrap;
  2357. word-wrap: break-word;
  2358. }
  2359. .chat-left > dd:after {
  2360. content: "";
  2361. position: absolute;
  2362. top: 14px;
  2363. left: -6px;
  2364. display: block;
  2365. width: 8px;
  2366. height: 8px;
  2367. background: #fff;
  2368. border-color: #e1e1e1;
  2369. border-style: solid;
  2370. border-width: 1px 0 0 1px;
  2371. -webkit-transform: rotate(-45deg);
  2372. -moz-transform: rotate(-45deg);
  2373. transform: rotate(-45deg);
  2374. }
  2375. .chat-right > dd:after {
  2376. content: "";
  2377. position: absolute;
  2378. top: 14px;
  2379. right: -6px;
  2380. display: block;
  2381. width: 8px;
  2382. height: 8px;
  2383. background: #bce0ff;
  2384. border-color: #81bdf7;
  2385. border-style: solid;
  2386. border-width: 1px 0 0 1px;
  2387. -webkit-transform: rotate(135deg);
  2388. -moz-transform: rotate(135deg);
  2389. transform: rotate(135deg);
  2390. }
  2391. .chat-left > dd p img,
  2392. .chat-right > dd p img {
  2393. max-width: 150px;
  2394. max-height: 150px;
  2395. margin: 5px 0;
  2396. }
  2397. .pull-more {
  2398. text-align: center;
  2399. color: #5b5b5b;
  2400. font-size: 14px;
  2401. padding: 14px 0;
  2402. }
  2403. .chat-btm-box {
  2404. position: fixed;
  2405. bottom: 0;
  2406. left: 0;
  2407. z-index: 2100;
  2408. width: 100%;
  2409. background: #fafafa;
  2410. border-top: 1px solid #e1e1e1;
  2411. }
  2412. .nopos {
  2413. position: relative;
  2414. bottom: auto;
  2415. left: auto;
  2416. }
  2417. .chat-text {
  2418. position: relative;
  2419. padding: 5px 15px 10px 15px;
  2420. width: 100%;
  2421. -webkit-box-sizing: border-box;
  2422. -moz-box-sizing: border-box;
  2423. box-sizing: border-box;
  2424. }
  2425. .insert-more {
  2426. position: absolute;
  2427. display: block;
  2428. width: 30px;
  2429. height: 30px;
  2430. top: 6px;
  2431. right: 25px;
  2432. }
  2433. .insert-more i {
  2434. font-size: 30px;
  2435. line-height: 30px;
  2436. color: #a9a9a9;
  2437. }
  2438. .send-text {
  2439. position: absolute;
  2440. width: 50px;
  2441. padding: 8px 0;
  2442. display: block;
  2443. bottom: 10px;
  2444. right: 15px;
  2445. background: #37a6ec;
  2446. border-radius: 4px;
  2447. }
  2448. .word-count {
  2449. font-size: 12px;
  2450. text-align: right;
  2451. padding: 0 5px;
  2452. color: #bfbfbf;
  2453. }
  2454. .insert-img {
  2455. position: absolute;
  2456. display: block;
  2457. width: 30px;
  2458. height: 30px;
  2459. top: 6px;
  2460. right: 15px;
  2461. border: 1px solid #737373;
  2462. border-radius: 50%;
  2463. }
  2464. .insert-img:before {
  2465. position: absolute;
  2466. content: "";
  2467. width: 16px;
  2468. height: 2px;
  2469. background: #737373;
  2470. top: 14px;
  2471. left: 7px;
  2472. }
  2473. .insert-img:after {
  2474. position: absolute;
  2475. content: "";
  2476. width: 2px;
  2477. height: 16px;
  2478. background: #737373;
  2479. top: 7px;
  2480. left: 14px;
  2481. }
  2482. .insert-img span {
  2483. display: none;
  2484. }
  2485. .chat-text-inp {
  2486. padding: 0 65px 0 0;
  2487. }
  2488. .chat-text-box {
  2489. border: 1px solid #e1e1e1;
  2490. background: #fff;
  2491. border-radius: 4px;
  2492. }
  2493. .chat-txt-con {
  2494. width: 100%;
  2495. height: 70px;
  2496. outline: 0;
  2497. font-size: 15px !important;
  2498. overflow-x: hidden;
  2499. overflow-y: auto;
  2500. -webkit-box-sizing: border-box;
  2501. -moz-box-sizing: border-box;
  2502. box-sizing: border-box;
  2503. border: none;
  2504. padding: 2px 5px 0 5px;
  2505. white-space: pre-wrap;
  2506. word-wrap: break-word;
  2507. word-wrap: break-all;
  2508. }
  2509. .ins-img-btn {
  2510. position: fixed;
  2511. width: 100%;
  2512. bottom: 0;
  2513. left: 0;
  2514. z-index: 3100;
  2515. }
  2516. .ins-img-btn .c-btn {
  2517. border-radius: 4px;
  2518. border: none;
  2519. color: #157efb;
  2520. font-size: 20px;
  2521. }
  2522. .ins-img-btn .c-btn:first-child {
  2523. border-radius: 4px 4px 0 0;
  2524. }
  2525. .ins-img-btn .c-btn:nth-child(2) {
  2526. border-top: 1px solid #e1e1e1;
  2527. border-radius: 0 0 4px 4px;
  2528. }
  2529. .pull-more {
  2530. text-align: center;
  2531. color: #5b5b5b;
  2532. font-size: 14px;
  2533. padding: 14px 0;
  2534. }
  2535. .bgc-f7f5f2 {
  2536. background: #f7f5f2;
  2537. }
  2538. .more-opt {
  2539. position: absolute;
  2540. top: 0;
  2541. left: 0;
  2542. width: 100%;
  2543. height: 100%;
  2544. background: #fafafa;
  2545. z-index: 2200;
  2546. }
  2547. .m-close {
  2548. position: absolute;
  2549. top: 8px;
  2550. right: 8px;
  2551. display: block;
  2552. width: 20px;
  2553. height: 20px;
  2554. }
  2555. .m-close i.ico-close {
  2556. position: static;
  2557. width: 20px;
  2558. height: 20px;
  2559. background-color: #afafaf;
  2560. }
  2561. i.ico-close:before {
  2562. width: 12px;
  2563. height: 2px;
  2564. left: 4px;
  2565. top: 9px;
  2566. }
  2567. i.ico-close:after {
  2568. width: 2px;
  2569. height: 12px;
  2570. left: 9px;
  2571. top: 4px;
  2572. }
  2573. .more-opt-list {
  2574. clear: both;
  2575. padding: 58px 30px 0 30px;
  2576. text-align: center;
  2577. overflow: hidden;
  2578. }
  2579. .more-opt-list.normal {
  2580. clear: both;
  2581. padding: 7px 30px 0 30px;
  2582. text-align: center;
  2583. overflow: hidden;
  2584. }
  2585. .bor-t-f2 {
  2586. border-top: 1px solid #f2f2f2;
  2587. }