cross.ui.css 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414
  1. @charset "utf-8";
  2. /* assist
  3. -----------------------------------------------------------------------------*/
  4. .ui-reddot {
  5. position: relative;
  6. display: inline-block;
  7. padding: 0 5px;
  8. }
  9. .ui-reddot:after {
  10. content: '';
  11. position: absolute;
  12. display: block;
  13. width: 8px;
  14. height: 8px;
  15. background-color: #f76249;
  16. border-radius: 5px;
  17. right: -3px;
  18. top: -3px;
  19. -webkit-background-clip: padding-box;
  20. background-clip: adding-box;
  21. }
  22. /* buttons color
  23. -----------------------------------------------------------------------------*/
  24. .c-btn-087eff {
  25. background-color: #087eff;
  26. }
  27. .c-btn-087eff:hover {
  28. background-color: #0771e5;
  29. }
  30. .c-btn-588cd5 {
  31. background-color: #588cd5;
  32. }
  33. .c-btn-588cd5:hover {
  34. background-color: #4680d0;
  35. }
  36. .c-btn-37a6ec {
  37. background-color: #37a6ec;
  38. }
  39. .c-btn-37a6ec:hover {
  40. background-color: #3195d4;
  41. }
  42. .c-btn-4dcd70 {
  43. background-color: #4dcd70;
  44. }
  45. .c-btn-4dcd70:hover {
  46. background-color: #45b865;
  47. }
  48. .c-btn-4db944 {
  49. background-color: #4db944;
  50. }
  51. .c-btn-4db944:hover {
  52. background-color: #45a63d;
  53. }
  54. .c-btn-309765 {
  55. background-color: #309765;
  56. }
  57. .c-btn-309765:hover {
  58. background-color: #2b885b;
  59. }
  60. .c-btn-ff9600 {
  61. background-color: #ff9600;
  62. }
  63. .c-btn-ff9600:hover {
  64. background-color: #e58700;
  65. }
  66. .c-btn-ff8100 {
  67. background-color: #ff8100;
  68. }
  69. .c-btn-ff8100:hover {
  70. background-color: #e57400;
  71. }
  72. .c-btn-fc6155 {
  73. background-color: #fc6155;
  74. }
  75. .c-btn-fc6155:hover {
  76. background-color: #e2574c;
  77. }
  78. .c-btn-ff3b2f {
  79. background-color: #ff3b2f;
  80. }
  81. .c-btn-ff3b2f:hover {
  82. background-color: #e5352a;
  83. }
  84. .c-btn-f9f9f9 {
  85. background-color: #f9f9f9;
  86. color: #087eff;
  87. border: #c0c0bc 1px solid;
  88. }
  89. .c-btn-f9f9f9:hover {
  90. background-color: #e0e0e0;
  91. }
  92. .c-btn-ffffff {
  93. background-color: #ffffff;
  94. color: #4dcd70;
  95. border: #e1e1e1 1px solid;
  96. }
  97. .c-btn-ffffff:hover {
  98. background-color: #e5e5e5;
  99. }
  100. .c-btn-fff {
  101. background-color: #ffffff;
  102. color: #999999;
  103. border: #e1e1e1 1px solid;
  104. }
  105. .c-btn-fff:hover {
  106. background-color: #e5e5e5;
  107. }
  108. .c-btn-ff3 {
  109. background-color: #ffffff;
  110. color: #ff3b2d;
  111. border: #e1e1e1 1px solid;
  112. }
  113. .c-btn-ff3:hover {
  114. background-color: #e5e5e5;
  115. }
  116. /* css3-Grid
  117. -----------------------------------------------------------------------------*/
  118. .ui-grid {
  119. display: -webkit-box;
  120. display: box;
  121. }
  122. .ui-grid-middle {
  123. -webkit-box-pack: center;
  124. -webkit-box-align: center;
  125. box-pack: center;
  126. box-align: center;
  127. }
  128. .ui-grid-vertical {
  129. -webkit-box-orient: vertical;
  130. box-orient: vertical;
  131. }
  132. .ui-grid-label {
  133. -webkit-box-flex: 0;
  134. box-flex: 0;
  135. width: 100px;
  136. font-weight: 600;
  137. }
  138. .ui-col-0 {
  139. -webkit-box-flex: 0;
  140. box-flex: 0;
  141. }
  142. .ui-col-1 {
  143. -webkit-box-flex: 1;
  144. box-flex: 1;
  145. }
  146. .ui-col-2 {
  147. -webkit-box-flex: 2;
  148. box-flex: 2;
  149. }
  150. .ui-col-3 {
  151. -webkit-box-flex: 3;
  152. box-flex: 3;
  153. }
  154. .ui-col-4 {
  155. -webkit-box-flex: 4;
  156. box-flex: 3;
  157. }
  158. .ui-col-5 {
  159. -webkit-box-flex: 5;
  160. box-flex: 5;
  161. }
  162. .ui-col-6 {
  163. -webkit-box-flex: 6;
  164. box-flex: 6;
  165. }
  166. /* css ui-arrow
  167. -----------------------------------------------------------------------------*/
  168. .ui-arrow,
  169. .ui-arrow s {
  170. position: relative;
  171. display: block;
  172. font-size: 0;
  173. line-height: 0;
  174. width: 0;
  175. height: 0;
  176. border-color: transparent;
  177. border-style: dashed;
  178. border-width: 5px;
  179. }
  180. .ui-arrow-r,
  181. .ui-arrow-r s {
  182. border-left-color: #aaa;
  183. border-left-style: solid;
  184. }
  185. .ui-arrow-r s {
  186. border-left-color: #fff;
  187. position: absolute;
  188. left: -7px;
  189. top: -5px;
  190. }
  191. .ui-arrow-l,
  192. .ui-arrow-l s {
  193. border-right-color: #aaa;
  194. border-right-style: solid;
  195. }
  196. .ui-arrow-l s {
  197. border-right-color: #fff;
  198. position: absolute;
  199. right: -7px;
  200. top: -5px;
  201. }
  202. .ui-arrow-t,
  203. .ui-arrow-t s {
  204. border-bottom-color: #aaa;
  205. border-bottom-style: solid;
  206. }
  207. .ui-arrow-t s {
  208. border-bottom-color: #fff;
  209. position: absolute;
  210. left: -5px;
  211. top: -3px;
  212. }
  213. .ui-arrow-b,
  214. .ui-arrow-b s {
  215. border-top-color: #aaa;
  216. border-top-style: solid;
  217. }
  218. .ui-arrow-b s {
  219. border-top-color: #fff;
  220. position: absolute;
  221. left: -5px;
  222. bottom: -3px;
  223. }
  224. .ui-arrow-circle {
  225. line-height: 100%;
  226. overflow: hidden;
  227. font-family: Tahoma, Helvetica;
  228. font-size: 18px;
  229. color: #aaa;
  230. }
  231. .tipBox {
  232. width: 200px;
  233. margin-top: 10px;
  234. }
  235. .tipBox .hd {
  236. height: 5px;
  237. position: relative;
  238. }
  239. .tipBox .hd .ui-arrow {
  240. position: absolute;
  241. top: -5px;
  242. left: 10px;
  243. }
  244. .tipBox .hd .ui-arrow s {
  245. top: -4px;
  246. }
  247. .tipBox .bd {
  248. border: 1px solid #aaa;
  249. padding: 10px;
  250. -webkit-border-radius: 5px;
  251. -moz-border-radius: 5px;
  252. border-radius: 5px;
  253. }
  254. .tipBoxA .ui-arrow s {
  255. border-bottom-color: #f6f6f6;
  256. }
  257. .tipBoxA .bd {
  258. background: #f6f6f6;
  259. }
  260. /* ui-form
  261. -----------------------------------------------------------------------------*/
  262. .input-group,
  263. .input-group *,
  264. .input-group-checkbox,
  265. .input-group-radio,
  266. .input-group-checkbox *,
  267. .input-group-radio * {
  268. box-sizing: border-box;
  269. -moz-box-sizing: border-box;
  270. -webkit-box-sizing: border-box;
  271. }
  272. .input-group {
  273. border-collapse: separate;
  274. display: table;
  275. position: relative;
  276. }
  277. .input-group label {
  278. display: block;
  279. }
  280. .input-group-addon {
  281. background-color: #fff;
  282. border: 1px solid #e1e1e1;
  283. border-radius: 4px;
  284. border-bottom-right-radius: 0;
  285. border-top-right-radius: 0;
  286. color: #333;
  287. font-size: 14px;
  288. font-weight: 400;
  289. line-height: 1;
  290. padding: 10px;
  291. text-align: center;
  292. display: table-cell;
  293. vertical-align: middle;
  294. white-space: nowrap;
  295. width: 1%;
  296. }
  297. .input-group-addon:first-child {
  298. border-right: 0;
  299. }
  300. .input-group-addon .iconfont {
  301. color: #b4b4b4;
  302. font-size: 18px;
  303. }
  304. .input-group-addon.focus .iconfont {
  305. color: #37a6ed;
  306. }
  307. .input-group-btn {
  308. position: absolute;
  309. right: 5px;
  310. top: 7px;
  311. }
  312. .input-group-btn .c-btn {
  313. padding: 5px;
  314. border: #ddd 1px solid;
  315. }
  316. .input-group .form-control,
  317. .input-group .form-select,
  318. .input-group .form-textarea {
  319. -webkit-appearance: none;
  320. appearance: none;
  321. background-color: #fff;
  322. background-image: none;
  323. border: 1px solid #e1e1e1;
  324. border-radius: 5px;
  325. color: #333;
  326. display: block;
  327. font-size: 16px;
  328. height: 45px;
  329. line-height: 1.42857;
  330. padding: 6px 12px;
  331. transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  332. outline: 0;
  333. }
  334. .input-group .form-select-arrow {
  335. display: block;
  336. width: 10px;
  337. height: 10px;
  338. border: solid #ccc;
  339. border-width: 2px 2px 0 0;
  340. -webkit-transform: rotate(135deg);
  341. -moz-transform: rotate(135deg);
  342. -ms-transform: rotate(135deg);
  343. -o-transform: rotate(135deg);
  344. transform: rotate(135deg);
  345. position: absolute;
  346. top: 15px;
  347. right: 15px;
  348. }
  349. .input-group .form-control {
  350. padding-right: 30px;
  351. }
  352. .input-group.input-border .form-control,
  353. .input-group.input-border .form-select,
  354. .input-group.input-border .form-textarea {
  355. border-radius: 0px;
  356. border-right: 0;
  357. font-size: 16px;
  358. height: 45px;
  359. line-height: 1.52857;
  360. }
  361. .input-group .form-control:focus,
  362. .input-group .form-select:focus,
  363. .input-group .form-textarea:focus {
  364. color: #333;
  365. }
  366. .input-group .form-control::-webkit-input-placeholder,
  367. .input-group .form-textarea::-webkit-input-placeholder {
  368. color: #bfbfbf;
  369. }
  370. .input-group .form-control:-moz-placeholder,
  371. .input-group .form-textarea:-moz-placeholder {
  372. color: #bfbfbf;
  373. }
  374. .input-group .form-control::-moz-placeholder,
  375. .input-group .form-textarea::-moz-placeholder {
  376. color: #bfbfbf;
  377. }
  378. .input-group .form-control:-ms-input-placeholder,
  379. .input-group .form-textarea:-ms-input-placeholder {
  380. color: #bfbfbf;
  381. }
  382. .input-group .form-textarea {
  383. height: auto;
  384. resize: none;
  385. margin: 0;
  386. }
  387. .input-group .form-control:nth-child(2),
  388. .input-group .form-textarea:nth-child(2) {
  389. border-bottom-left-radius: 0;
  390. border-top-left-radius: 0;
  391. border-left: 0;
  392. padding-left: 0;
  393. }
  394. .input-group .form-control,
  395. .input-group label .form-control,
  396. .input-group label .form-select,
  397. .input-group label .form-textarea {
  398. border-radius: 4px;
  399. padding-left: 12px;
  400. border-left: 1px #e1e1e1 solid;
  401. }
  402. .input-group .input-group-addon + .form-control,
  403. .input-group .input-group-addon + .form-select {
  404. border-top-left-radius: 0px;
  405. border-bottom-left-radius: 0px;
  406. padding-left: 0px;
  407. border-left: 0px;
  408. }
  409. .input-group-text {
  410. font-size: 14px;
  411. color: #555;
  412. }
  413. .input-merge .input-group .input-group-addon,
  414. .input-group.input-border .input-group-addon {
  415. border-bottom-left-radius: 0;
  416. border-top-left-radius: 0;
  417. }
  418. .input-group.input-border .input-group-addon {
  419. border-left: 0;
  420. font-size: 15px;
  421. color: #333;
  422. padding: 10px 20px;
  423. }
  424. .input-merge .input-group .form-control,
  425. .input-merge .input-group .form-select,
  426. .input-merge .input-group .form-textarea {
  427. border-bottom-right-radius: 0;
  428. border-top-right-radius: 0;
  429. }
  430. .input-merge .input-group:first-child .input-group-addon {
  431. border-top-left-radius: 4px;
  432. }
  433. .input-merge .input-group:first-child .form-control,
  434. .input-merge .input-group:first-child .form-select,
  435. .input-merge .input-group:first-child .form-textarea {
  436. border-top-right-radius: 4px;
  437. }
  438. .input-merge .input-group:last-child .form-control,
  439. .input-merge .input-group:last-child .form-select,
  440. .input-merge .input-group:last-child .form-textarea {
  441. border-bottom-right-radius: 4px;
  442. }
  443. .input-merge .input-group:last-child .input-group-addon {
  444. border-bottom-left-radius: 4px;
  445. }
  446. .input-merge .input-group.input-border .input-group-addon,
  447. .input-merge .input-group.input-border .form-control,
  448. .input-merge .input-group.input-border .form-select,
  449. .input-merge .input-group.input-border .form-textarea,
  450. .input-merge .input-group.input-border .form-control,
  451. .input-merge .input-group.input-border .form-select,
  452. .input-merge .input-group.input-border .form-textarea,
  453. .input-merge .input-group.input-border .input-group-addon {
  454. border-radius: 0px;
  455. }
  456. .input-merge .input-group.input-border {
  457. padding-left: 20px;
  458. }
  459. .input-merge .input-group.input-border .input-group-addon {
  460. padding-left: 0
  461. }
  462. .input-merge .input-group .input-group-addon,
  463. .input-merge .input-group .form-control,
  464. .input-merge .input-group .form-select,
  465. .input-merge .input-group .form-textarea {
  466. border-bottom: 0;
  467. }
  468. .input-merge .input-group:last-child .input-group-addon,
  469. .input-merge .input-group:last-child .form-control,
  470. .input-merge .input-group:last-child .form-select,
  471. .input-merge .input-group:last-child .form-textarea {
  472. border-bottom: 1px solid #e1e1e1;
  473. }
  474. .input-merge.input-merge-border .input-group:first-child .input-group-addon,
  475. .input-merge.input-merge-border .input-group:first-child .form-control,
  476. .input-merge.input-merge-border .input-group:first-child .form-select,
  477. .input-merge.input-merge-border .input-group:first-child .form-textarea {
  478. border-top: 0;
  479. }
  480. .input-merge.input-merge-border .input-group:last-child .input-group-addon,
  481. .input-merge.input-merge-border .input-group:last-child .form-control,
  482. .input-merge.input-merge-border .input-group:last-child .form-select,
  483. .input-merge.input-merge-border .input-group:last-child .form-textarea {
  484. border-bottom: 0;
  485. }
  486. .input-merge.input-merge-border {
  487. border-top: 1px solid #e1e1e1;
  488. border-bottom: 1px solid #e1e1e1;
  489. background: #fff;
  490. }
  491. .input-group-addon-disabled,
  492. .form-control[disabled],
  493. .form-control:disabled,
  494. .form-textarea[disabled],
  495. .form-textarea:disabled,
  496. .form-textarea[disabled],
  497. .form-textarea:disabled,
  498. .form-select[disabled],
  499. .form-select:disabled {
  500. background-color: #f9f9f9;
  501. }
  502. .input-group .form-input {
  503. height: 45px;
  504. border-top: 1px solid #e1e1e1;
  505. position: relative;
  506. padding: 7px 0;
  507. }
  508. .input-group .form-input-text {
  509. color: #909090;
  510. font-size: 15px;
  511. }
  512. .input-group .form-select-box {
  513. display: inline-block;
  514. position: relative;
  515. margin-right: 10px;
  516. }
  517. .input-group .form-select-box .form-select {
  518. width: 100%;
  519. }
  520. .input-group .form-select-box .form-select-arrow {
  521. top: 7px;
  522. right: 12px
  523. }
  524. .input-group.input-border .form-input .form-control,
  525. .input-group.input-border .form-input .form-select {
  526. height: 31px;
  527. border: #e1e1e1 1px solid !important;
  528. border-radius: 2px;
  529. display: inline-block;
  530. vertical-align: baseline;
  531. line-height: 1.2;
  532. }
  533. .input-group .input-clear {
  534. position: absolute;
  535. right: 8px;
  536. top: 8px;
  537. background: #ccc;
  538. border-radius: 50%;
  539. width: 26px;
  540. height: 26px;
  541. text-align: center;
  542. }
  543. .input-group .input-clear .close {
  544. position: relative;
  545. display: inline-block;
  546. width: 15px;
  547. height: 15px;
  548. overflow: hidden;
  549. top: 6px;
  550. }
  551. .input-group .input-clear .close::before,
  552. .input-group .input-clear .close::after {
  553. content: '';
  554. position: absolute;
  555. height: 2px;
  556. width: 100%;
  557. top: 50%;
  558. left: 0px;
  559. margin-top: -1px;
  560. background: #fff;
  561. border-radius: 6px;
  562. }
  563. .input-group .input-clear .close::before {
  564. -webkit-transform: rotate(45deg);
  565. -moz-transform: rotate(45deg);
  566. -ms-transform: rotate(45deg);
  567. -o-transform: rotate(45deg);
  568. transform: rotate(45deg);
  569. }
  570. .input-group .input-clear .close::after {
  571. -webkit-transform: rotate(-45deg);
  572. -moz-transform: rotate(-45deg);
  573. -ms-transform: rotate(-45deg);
  574. -o-transform: rotate(-45deg);
  575. transform: rotate(-45deg);
  576. }
  577. .input-group-checkbox,
  578. .input-group-radio {
  579. display: inline-block;
  580. position: relative;
  581. font-size: 14px;
  582. color: #909090;
  583. }
  584. .input-group-checkbox label {
  585. display: block;
  586. cursor: pointer;
  587. }
  588. .input-group-checkbox label input[type="checkbox"],
  589. .input-group-radio label input[type="radio"] {
  590. position: absolute;
  591. opacity: 0;
  592. width: 1px;
  593. height: 1px;
  594. }
  595. .input-group-checkbox .input-group-pack,
  596. .input-group-radio .input-group-pack {
  597. width: 20px;
  598. height: 20px;
  599. background-color: #ffffff;
  600. border: 1px #d3d3d3 solid;
  601. padding: 0;
  602. margin: 0 5px 0 0;
  603. position: relative;
  604. display: inline-block;
  605. vertical-align: middle;
  606. border-radius: 5px;
  607. overflow: hidden;
  608. top: -2px;
  609. }
  610. .input-group-radio .input-group-pack {
  611. border-radius: 50%;
  612. }
  613. .input-group-checkbox .input-group-pack.input-group-pack-disabled,
  614. .input-group-radio .input-group-pack.input-group-pack-disabled {
  615. background-color: #f0f0f0;
  616. }
  617. .input-group-checkbox .input-group-pack .tick {
  618. display: block;
  619. width: 12px;
  620. height: 2px;
  621. background: #4dcd70;
  622. margin: 8px 0 0 6px;
  623. -webkit-transform: rotate(-45deg);
  624. -moz-transform: rotate(-45deg);
  625. -ms-transform: rotate(-45deg);
  626. -o-transform: rotate(-45deg);
  627. transform: rotate(-45deg);
  628. position: relative;
  629. top: 50px;
  630. }
  631. .input-group-checkbox .input-group-pack .tick:after {
  632. content: '';
  633. width: 8px;
  634. height: 2px;
  635. background: #4dcd70;
  636. position: absolute;
  637. top: -3px;
  638. left: -5px;
  639. -webkit-transform: rotate(90deg);
  640. -moz-transform: rotate(90deg);
  641. -ms-transform: rotate(90deg);
  642. -o-transform: rotate(90deg);
  643. transform: rotate(90deg);
  644. }
  645. .input-group-radio .input-group-pack .disc {
  646. display: block;
  647. content: "" !important;
  648. width: 0px;
  649. height: 0px;
  650. border-radius: 50%;
  651. background-color: #4dcd70;
  652. margin: 4px;
  653. }
  654. .input-group-checkbox input[type="checkbox"]:checked ~ .tick,
  655. .input-group-checkbox .input-group-pack.checked .tick {
  656. top: 0px;
  657. }
  658. .input-group-radio input[type="radio"]:checked ~ .disc,
  659. .input-group-radio .input-group-pack.checked .disc {
  660. width: 10px;
  661. height: 10px;
  662. }
  663. .input-group-switch {
  664. position: relative;
  665. font-size: 16px;
  666. width: 52px;
  667. height: 32px;
  668. line-height: 1em;
  669. }
  670. .input-group-switch input {
  671. width: 52px;
  672. height: 32px;
  673. position: absolute;
  674. z-index: 10;
  675. border: none;
  676. background: none;
  677. -webkit-appearance: none;
  678. outline: none;
  679. }
  680. .input-group-switch input:before {
  681. content: '';
  682. width: 50px;
  683. height: 30px;
  684. border: 1px solid #e5e5e5;
  685. background-color: #fff;
  686. border-radius: 20px;
  687. cursor: pointer;
  688. display: inline-block;
  689. position: relative;
  690. vertical-align: middle;
  691. -webkit-user-select: none;
  692. user-select: none;
  693. -webkit-box-sizing: content-box;
  694. box-sizing: content-box;
  695. border-color: #dfdfdf;
  696. -webkit-box-shadow: #dfdfdf 0px 0px 0px 0px inset;
  697. box-shadow: #dfdfdf 0px 0px 0px 0px inset;
  698. -webkit-transition: border 0.4s, -webkit-box-shadow 0.4s;
  699. transition: border 0.4s, box-shadow 0.4s;
  700. -webkit-background-clip: content-box;
  701. background-clip: content-box;
  702. }
  703. .input-group-switch input:checked:before {
  704. border-color: #4cd964;
  705. -webkit-box-shadow: #4cd964 0px 0px 0px 16px inset;
  706. box-shadow: #4cd964 0px 0px 0px 16px inset;
  707. background-color: #4cd964;
  708. transition: border 0.4s, box-shadow 0.4s, background-color 1.2s;
  709. -webkit-transition: border 0.4s, -webkit-box-shadow 0.4s, background-color 1.2s;
  710. background-color: #4cd964;
  711. }
  712. .input-group-switch input:checked:after {
  713. left: 21px;
  714. }
  715. .input-group-switch input:after {
  716. content: '';
  717. width: 30px;
  718. height: 30px;
  719. position: absolute;
  720. top: 1px;
  721. left: 0;
  722. border-radius: 100%;
  723. background-color: #fff;
  724. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  725. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  726. -webkit-transition: left 0.2s;
  727. transition: left 0.2s;
  728. }
  729. .input-group-switch input.thread:before {
  730. content: '';
  731. width: 50px;
  732. height: 3px;
  733. border: 1px solid #e5e5e5;
  734. background-color: #e5e7ea;
  735. border-radius: 20px;
  736. cursor: pointer;
  737. display: inline-block;
  738. position: relative;
  739. vertical-align: middle;
  740. -webkit-user-select: none;
  741. user-select: none;
  742. -webkit-box-sizing: content-box;
  743. box-sizing: content-box;
  744. border-color: #dfdfdf;
  745. -webkit-box-shadow: #dfdfdf 0px 0px 0px 0px inset;
  746. box-shadow: #dfdfdf 0px 0px 0px 0px inset;
  747. -webkit-transition: border 0.4s, -webkit-box-shadow 0.4s;
  748. transition: border 0.4s, box-shadow 0.4s;
  749. -webkit-background-clip: content-box;
  750. background-clip: content-box;
  751. }
  752. .input-group-switch input.thread:checked:before {
  753. border-color: #4cd964;
  754. -webkit-box-shadow: #4cd964 0px 0px 0px 16px inset;
  755. box-shadow: #4cd964 0px 0px 0px 16px inset;
  756. background-color: #4cd964;
  757. transition: border 0.4s, box-shadow 0.4s, background-color 1.2s;
  758. -webkit-transition: border 0.4s, -webkit-box-shadow 0.4s, background-color 1.2s;
  759. background-color: #4cd964;
  760. }
  761. .input-group-switch input.thread:checked:after {
  762. left: 33px;
  763. }
  764. .input-group-switch input.thread:after {
  765. content: '';
  766. width: 20px;
  767. height: 20px;
  768. position: absolute;
  769. top: 3px;
  770. left: 0;
  771. border-radius: 100%;
  772. background-color: #fff;
  773. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  774. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  775. -webkit-transition: left 0.2s;
  776. transition: left 0.2s;
  777. }
  778. /* onoffswitch
  779. -----------------------------------------------------------------------------*/
  780. .onoffswitch {
  781. position: relative;
  782. width: 65px;
  783. -webkit-user-select: none;
  784. -moz-user-select: none;
  785. -ms-user-select: none;
  786. }
  787. .onoffswitch input.onoffswitch-checkbox {
  788. opacity: 0
  789. }
  790. .onoffswitch-label {
  791. display: block;
  792. overflow: hidden;
  793. cursor: pointer;
  794. border-radius: 6px;
  795. }
  796. .onoffswitch-inner {
  797. width: 200%;
  798. margin-left: -100%;
  799. -moz-transition: margin 0.3s ease-in 0s;
  800. -webkit-transition: margin 0.3s ease-in 0s;
  801. -o-transition: margin 0.3s ease-in 0s;
  802. transition: margin 0.3s ease-in 0s;
  803. }
  804. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  805. margin-left: 0;
  806. }
  807. .onoffswitch-inner:before,
  808. .onoffswitch-inner:after {
  809. float: left;
  810. width: 50%;
  811. height: 28px;
  812. padding: 0;
  813. line-height: 28px;
  814. font-size: 14px;
  815. color: white;
  816. font-family: Trebuchet, Arial, sans-serif;
  817. font-weight: bold;
  818. -moz-box-sizing: border-box;
  819. -webkit-box-sizing: border-box;
  820. box-sizing: border-box;
  821. }
  822. .onoffswitch-inner:before {
  823. content: "ON";
  824. padding-left: 5px;
  825. background-color: #4cd964;
  826. color: #FFFFFF;
  827. }
  828. .onoffswitch-inner:after {
  829. content: "OFF";
  830. padding-right: 5px;
  831. background-color: #e5e7ea;
  832. color: #a4a9ae;
  833. text-align: right;
  834. }
  835. .onoffswitch-switch {
  836. width: 22px;
  837. height: 22px;
  838. margin: 4px;
  839. background: #FFFFFF;
  840. border-radius: 6px;
  841. position: absolute;
  842. top: 50%;
  843. margin-top: -1px;
  844. right: 35px;
  845. -moz-transition: all 0.3s ease-in 0s;
  846. -webkit-transition: all 0.3s ease-in 0s;
  847. -o-transition: all 0.3s ease-in 0s;
  848. transition: all 0.3s ease-in 0s;
  849. }
  850. .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  851. right: 0px;
  852. }
  853. /* css c-list
  854. -----------------------------------------------------------------------------*/
  855. .list-icon {
  856. height: 8px;
  857. width: 8px;
  858. position: relative;
  859. display: inline-block;
  860. }
  861. .arrow-right {
  862. display: block;
  863. width: 8px;
  864. height: 8px;
  865. border: solid #cdcdcd;
  866. border-width: 2px 2px 0 0;
  867. -webkit-transform: rotate(45deg);
  868. -moz-transform: rotate(45deg);
  869. -ms-transform: rotate(45deg);
  870. -o-transform: rotate(45deg);
  871. transform: rotate(45deg);
  872. }
  873. .c-list-group {}
  874. .c-list-group h3 {
  875. padding: 6px 15px;
  876. background-color: #f9f9f9;
  877. font-size: 13px;
  878. color: #5b5b5b;
  879. margin: 0;
  880. vertical-align: middle;
  881. }
  882. .c-list {
  883. background-color: #fff;
  884. }
  885. .c-list > li,
  886. .c-list > .c-list-div {
  887. font-size: 16px;
  888. color: #333;
  889. position: relative;
  890. display: -webkit-box;
  891. display: box;
  892. margin-left: 15px;
  893. border-top: 1px solid #f1f1f1;
  894. }
  895. .c-list > li > a {
  896. position: relative;
  897. display: -webkit-box;
  898. display: box;
  899. width: 100%;
  900. }
  901. .c-list > .c-list-text {
  902. line-height: 20px;
  903. padding: 12px 15px 12px 0;
  904. }
  905. .c-list > .c-list-function {
  906. border-top: none;
  907. }
  908. .c-list > .c-list-function .c-list-info {
  909. border-top: 1px solid #f1f1f1;
  910. }
  911. .c-list > li:first-child,
  912. .c-list > .c-border-t:first-child,
  913. .c-list >li:first-child .c-border-t,
  914. .c-list > .c-list-function:first-child,
  915. .c-list > .c-list-function:first-child .c-list-info,
  916. .c-list > div:first-child .c-border-t,
  917. .c-list > div:first-child {
  918. border: 0;
  919. background-image: none
  920. }
  921. .c-list > .c-list-cover {
  922. padding-left: 15px !important;
  923. margin-left: 0 !important;
  924. }
  925. .c-list .c-list-info {
  926. -webkit-box-flex: 1;
  927. box-flex: 1;
  928. padding-right: 15px;
  929. display: box;
  930. display: -webkit-box;
  931. -webkit-box-orient: vertical;
  932. -webkit-box-pack: center;
  933. }
  934. .c-list h4 {
  935. color: #333 !important;
  936. }
  937. .c-list .c-list-info > h4 {
  938. font-size: 17px;
  939. line-height: 20px
  940. }
  941. .c-list .c-list-info > p {
  942. font-size: 17px;
  943. line-height: 20px;
  944. color: #909090;
  945. }
  946. .c-list .c-list-label {
  947. font-size: 13px !important;
  948. color: #909090 !important;
  949. padding: 10px 15px 10px 0!important;
  950. border-top: 1px dashed #e1e1e1 !important;
  951. }
  952. .c-list .c-list-key {
  953. margin-right: 15px;
  954. }
  955. .c-list .c-list-img {
  956. width: 100px;
  957. height: 68px;
  958. margin: 10px 10px 10px 0;
  959. position: relative
  960. }
  961. .c-list .c-list-img img {
  962. width: auto;
  963. height: 68px;
  964. }
  965. .c-list > .c-list-link:active {
  966. background-color: #e5e6e7;
  967. padding-left: 15px;
  968. margin-left: 0
  969. }
  970. .c-list-link:active,
  971. .c-list-link.c-border-t:active,
  972. .c-list-link:active + .c-border-t,
  973. .c-list-link:active + .c-border-t {
  974. background-image: none;
  975. border-top-color: #e5e6e7
  976. }
  977. .c-list .c-list-value {
  978. color: #909090;
  979. display: box;
  980. display: -webkit-box;
  981. -webkit-box-orient: vertical;
  982. -webkit-box-pack: center;
  983. }
  984. .c-list .c-list-title {}
  985. .c-list .c-list-link .c-list-value,
  986. .c-list .c-list-link .c-list-title {
  987. padding-right: 20px;
  988. }
  989. .c-list .c-list-badge,
  990. .c-list .c-list-action {
  991. font-size: 13px;
  992. color: #909090;
  993. position: absolute;
  994. height: 100%;
  995. right: 15px;
  996. display: box;
  997. display: -webkit-box;
  998. -webkit-box-orient: vertical;
  999. -webkit-box-pack: center;
  1000. top: 0;
  1001. }
  1002. .c-list-link .c-list-badge,
  1003. .c-list-link .c-list-action {
  1004. right: 35px
  1005. }
  1006. .c-list-link .list-icon {
  1007. position: absolute;
  1008. right: 15px;
  1009. top: 50%;
  1010. margin-top: -4px;
  1011. }
  1012. .c-list .c-avatar-s,
  1013. .c-list .c-avatar-m,
  1014. .c-list .c-avatar-l {
  1015. margin: 10px 15px 10px 0;
  1016. overflow: hidden;
  1017. display: -webkit-box;
  1018. -webkit-box-pack: center;
  1019. -webkit-box-align: center;
  1020. }
  1021. .c-list-indent-s {
  1022. padding-right: 70px !important;
  1023. }
  1024. .c-list-indent-m {
  1025. padding-right: 110px !important;
  1026. }
  1027. .c-list-action .input-group-checkbox .input-group-pack,
  1028. .c-list-action .input-group-radio .input-group-pack {
  1029. margin: 0 0 0 5px;
  1030. }
  1031. .c-avatar-s {
  1032. width: 26px;
  1033. height: 26px;
  1034. }
  1035. .c-avatar-m {
  1036. width: 45px;
  1037. height: 45px;
  1038. font-size: 15px;
  1039. }
  1040. @media only screen and (min-width: 100px) and (max-width: 640px) {
  1041. .c-avatar-m {
  1042. width: 45px;
  1043. height: 45px;
  1044. font-size: 14px;
  1045. }
  1046. }
  1047. .c-avatar-l {
  1048. width: 54px;
  1049. height: 54px;
  1050. }
  1051. .c-avatar-s img,
  1052. .c-avatar-m img,
  1053. .c-avatar-l img {
  1054. width: 100%;
  1055. height: 100%;
  1056. }
  1057. .c-list-text .c-t-right {
  1058. color: #909090 !important;
  1059. }
  1060. .c-list-text .c-t-right {
  1061. padding-right: 0px;
  1062. color: #909090;
  1063. }
  1064. .c-list-link .c-t-right {
  1065. padding-right: 20px !important;
  1066. }
  1067. /* css c-lab1
  1068. -----------------------------------------------------------------------------*/
  1069. .c-lab-les {
  1070. display: -webkit-box;
  1071. display: box;
  1072. border: 1px solid #37a6eb;
  1073. overflow: hidden;
  1074. }
  1075. .c-lab-les li {
  1076. -webkit-box-flex: 1;
  1077. box-flex: 1;
  1078. height: 30px;
  1079. line-height: 30px;
  1080. box-sizing: border-box;
  1081. -webkit-box-sizing: border-box;
  1082. -moz-box-sizing: border-box;
  1083. -o-box-sizing: border-box;
  1084. text-align: center;
  1085. border-left: 1px solid #37a6eb;
  1086. }
  1087. .c-lab-les li:first-child {
  1088. border-left: none;
  1089. }
  1090. .c-lab-les li a {
  1091. display: block;
  1092. width: 100%;
  1093. height: 30px;
  1094. color: #37a6eb;
  1095. }
  1096. .c-lab-les li.hit {
  1097. background-color: #37a6eb;
  1098. }
  1099. .c-lab-les li.hit a {
  1100. color: #fff;
  1101. }
  1102. /* css c-lab2
  1103. -----------------------------------------------------------------------------*/
  1104. .c-lab-mor {
  1105. display: -webkit-box;
  1106. display: box;
  1107. overflow: hidden;
  1108. background: #fff;
  1109. }
  1110. .c-lab-mor li {
  1111. -webkit-box-flex: 1;
  1112. box-flex: 1;
  1113. height: 40px;
  1114. box-sizing: border-box;
  1115. -webkit-box-sizing: border-box;
  1116. -moz-box-sizing: border-box;
  1117. -o-box-sizing: border-box;
  1118. text-align: center;
  1119. padding-top: 6px;
  1120. border-bottom: 1px solid #e1e1e1;
  1121. }
  1122. .c-lab-mor li:first-child {
  1123. border-left: none;
  1124. }
  1125. .c-lab-mor li a {
  1126. display: block;
  1127. width: 100%;
  1128. height: 28px;
  1129. line-height: 28px;
  1130. color: #333;
  1131. box-sizing: border-box;
  1132. -webkit-box-sizing: border-box;
  1133. -moz-box-sizing: border-box;
  1134. -o-box-sizing: border-box;
  1135. border-left: 1px solid #ddd;
  1136. }
  1137. .c-lab-mor li:first-child a {
  1138. border-left: none;
  1139. }
  1140. .c-lab-mor li.hit {
  1141. border-bottom: 3px solid #37a6eb;
  1142. }
  1143. .c-lab-mor li.hit a {
  1144. color: #37a6eb;
  1145. }
  1146. /* css step
  1147. -----------------------------------------------------------------------------*/
  1148. .step-box {
  1149. width: 100%;
  1150. height: 200px;
  1151. display: box;
  1152. display: -webkit-box;
  1153. -webkit-box-orient: vertical;
  1154. -webkit-box-pack: center;
  1155. border: 1px solid #ddd;
  1156. }
  1157. .step-bar {
  1158. text-align: center;
  1159. overflow: hidden;
  1160. counter-reset: step;
  1161. }
  1162. .step-bar li {
  1163. color: #909090;
  1164. text-transform: uppercase;
  1165. font-size: 12px;
  1166. float: left;
  1167. position: relative;
  1168. padding-top: 25px;
  1169. }
  1170. .step-n2 li {
  1171. width: 50%;
  1172. }
  1173. .step-n3 li {
  1174. width: 33.33%;
  1175. }
  1176. .step-n4 li {
  1177. width: 25%;
  1178. }
  1179. .step-n5 li {
  1180. width: 20%;
  1181. }
  1182. .step-n6 li {
  1183. width: 16.66%;
  1184. }
  1185. .step-bar li:before {
  1186. content: counter(step);
  1187. counter-increment: step;
  1188. position: absolute;
  1189. top: 0;
  1190. left: 50%;
  1191. width: 20px;
  1192. line-height: 20px;
  1193. display: inline-block;
  1194. font-size: 12px;
  1195. color: #909090;
  1196. background: #dcdcdc;
  1197. border-radius: 50%;
  1198. margin-left: -10px;
  1199. z-index: 2;
  1200. }
  1201. .step-bar li:after {
  1202. content: "";
  1203. width: 100%;
  1204. height: 2px;
  1205. background: #dcdcdc;
  1206. position: absolute;
  1207. left: -50%;
  1208. top: 9px;
  1209. z-index: 1;
  1210. }
  1211. .text-up li {
  1212. padding-bottom: 25px;
  1213. }
  1214. .text-up li:before {
  1215. top: auto;
  1216. bottom: 0;
  1217. }
  1218. .text-up li:after {
  1219. top: auto;
  1220. bottom: 9px;
  1221. }
  1222. .step-bar li:first-child:after {
  1223. content: none;
  1224. }
  1225. .step-bar li.active {
  1226. color: #37a1ff
  1227. }
  1228. .step-bar li.active:before,
  1229. .step-bar li.active:after {
  1230. background: #37a1ff;
  1231. color: #fff;
  1232. }
  1233. .step-bar-icon li {
  1234. padding-top: 45px;
  1235. }
  1236. .step-bar-icon li:before {
  1237. content: none;
  1238. }
  1239. .step-bar-icon li:after {
  1240. height: 3px;
  1241. top: 19px;
  1242. }
  1243. .step-bar-icon li .step-icon {
  1244. position: absolute;
  1245. display: box !important;
  1246. display: -webkit-box !important;
  1247. ;
  1248. -webkit-box-orient: vertical;
  1249. -webkit-box-pack: center;
  1250. top: 0;
  1251. left: 50%;
  1252. width: 40px;
  1253. height: 40px;
  1254. color: #909090;
  1255. background: #dcdcdc;
  1256. display: inline-block;
  1257. margin-left: -20px;
  1258. z-index: 2;
  1259. border-radius: 50%;
  1260. }
  1261. .step-bar-icon li .step-icon i {
  1262. font-size: 24px;
  1263. }
  1264. .step-bar li.active .step-icon {
  1265. background: #37a1ff;
  1266. color: #fff;
  1267. }
  1268. .step-bar-w {
  1269. display: table;
  1270. width: 100%;
  1271. padding: 0;
  1272. margin: 0;
  1273. position: relative
  1274. }
  1275. .step-bar-w li {
  1276. display: table-cell;
  1277. text-align: center;
  1278. width: 1%;
  1279. }
  1280. .step-bar-w li .step {
  1281. position: relative;
  1282. display: inline-block;
  1283. width: 40px;
  1284. height: 40px;
  1285. border: 4px solid #ced1d6;
  1286. color: #546474;
  1287. border-radius: 50%;
  1288. background-color: #FFF;
  1289. z-index: 2;
  1290. line-height: 40px;
  1291. text-align: center;
  1292. vertical-align: middle;
  1293. }
  1294. .step-bar-w li:before {
  1295. display: block;
  1296. content: "";
  1297. width: 100%;
  1298. height: 1px;
  1299. font-size: 0;
  1300. overflow: hidden;
  1301. border-top: 4px solid #ced1d6;
  1302. position: relative;
  1303. top: 27px;
  1304. z-index: 1
  1305. }
  1306. .txt-up li {
  1307. position: relative;
  1308. padding-top: 30px;
  1309. }
  1310. .txt-up li .title {
  1311. width: 100%;
  1312. text-align: center;
  1313. position: absolute;
  1314. top: 0;
  1315. left: 0;
  1316. }
  1317. .step-bar-w li:last-child:before {
  1318. max-width: 50%;
  1319. width: 50%
  1320. }
  1321. .step-bar-w li:first-child:before {
  1322. max-width: 51%;
  1323. left: 50%
  1324. }
  1325. .step-bar-w li.active:before,
  1326. .step-bar-w li.complete:before,
  1327. .step-bar-w li.active .step,
  1328. .step-bar-w li.complete .step {
  1329. border-color: #37a1ff
  1330. }
  1331. .step-bar-w li.complete .step:before {
  1332. display: block;
  1333. content: "";
  1334. position: absolute;
  1335. top: 11px;
  1336. left: 11px;
  1337. width: 16px;
  1338. height: 9px;
  1339. border-left: 4px solid #87ba21;
  1340. border-bottom: 4px solid #87ba21;
  1341. text-align: center;
  1342. z-index: 3;
  1343. color: #87ba21;
  1344. -webkit-transform: rotate(-45deg);
  1345. -moz-transform: rotate(-45deg);
  1346. -ms-transform: rotate(-45deg);
  1347. -o-transform: rotate(-45deg);
  1348. transform: rotate(-45deg);
  1349. }
  1350. .step-bar-w li .title {
  1351. display: block;
  1352. margin-top: 4px;
  1353. max-width: 100%;
  1354. color: #949ea7;
  1355. z-index: 100;
  1356. text-align: center;
  1357. table-layout: fixed;
  1358. word-wrap: break-word;
  1359. }
  1360. .step-bar-w li.complete .title,
  1361. .step-bar-w li.active .title {
  1362. color: #2b3d53;
  1363. }
  1364. .step-bar-w li .iconfont {
  1365. color: #37a1ff;
  1366. font-size: 28px !important;
  1367. }
  1368. .step-bar-w li .iconfont {
  1369. color: #ced1d6;
  1370. font-size: 28px !important;
  1371. }
  1372. .step-bar-w li.active .iconfont,
  1373. .step-bar-w li.complete .iconfont,
  1374. .step-bar-w li.active .step .iconfont,
  1375. .step-bar-w li.complete .step .iconfont {
  1376. color: #37a1ff;
  1377. }
  1378. /*pagination - 1
  1379. -------------------------------------------------------*/
  1380. .page-full {
  1381. height: 30px;
  1382. line-height: 30px;
  1383. color: #555;
  1384. }
  1385. .page-full a {
  1386. display: inline-block;
  1387. min-width: 20px;
  1388. _width: 20px;
  1389. height: 28px;
  1390. padding: 0 4px;
  1391. line-height: 28px;
  1392. margin-right: 10px;
  1393. text-align: center;
  1394. border: 1px solid #cacaca;
  1395. background-color: #f2f2f2;
  1396. color: #717171;
  1397. -webkit-border-radius: 3px;
  1398. -moz-border-radius: 3px;
  1399. border-radius: 3px;
  1400. vertical-align: middle;
  1401. *display: inline;
  1402. *zoom: 1;
  1403. }
  1404. .page-full a:link,
  1405. .page-full a:visited {
  1406. color: #717171;
  1407. }
  1408. .page-full a:hover {
  1409. color: #717171;
  1410. border-color: #a9a9a9;
  1411. }
  1412. .page-full a.page-current {
  1413. border-color: #009839;
  1414. background-color: #4db944;
  1415. color: #f2f2f2;
  1416. cursor: default;
  1417. }
  1418. .page-full a.page-current:link,
  1419. .page-full a.page-current:visited {
  1420. color: #f2f2f2;
  1421. }
  1422. .page-full a.page-current:hover {
  1423. color: #f2f2f2;
  1424. border-color: #009839;
  1425. }
  1426. .page-full a.disabled,
  1427. .page-full a.disabled:hover {
  1428. border-color: #cbcbcb;
  1429. background-color: #e2e2e2;
  1430. cursor: default;
  1431. }
  1432. .page-full a.page-prev,
  1433. .page-full a.page-next {
  1434. font-weight: bold;
  1435. line-height: 25px;
  1436. }
  1437. .page-full span {
  1438. display: inline-block;
  1439. height: 30px;
  1440. line-height: 30px;
  1441. margin-right: 10px;
  1442. vertical-align: middle;
  1443. *display: inline;
  1444. *zoom: 1;
  1445. }
  1446. .page-full .pageto {
  1447. display: inline-block;
  1448. width: 90px;
  1449. text-align: left;
  1450. vertical-align: middle;
  1451. *display: inline;
  1452. *zoom: 1;
  1453. position: relative;
  1454. }
  1455. .page-full .pageto .input-pageto {
  1456. display: inline-block;
  1457. width: 50px;
  1458. height: 20px;
  1459. line-height: 20px;
  1460. padding: 4px 0;
  1461. border: 1px solid #ccc;
  1462. text-align: center;
  1463. background-color: #fff;
  1464. color: #555;
  1465. position: relative;
  1466. z-index: 2;
  1467. vertical-align: middle;
  1468. *display: inline;
  1469. *zoom: 1;
  1470. }
  1471. .page-full .pageto .btn-pageto {
  1472. display: inline-block;
  1473. width: 50px;
  1474. height: 30px;
  1475. margin-right: 10px;
  1476. border: 0;
  1477. text-align: center;
  1478. background-color: #4db944;
  1479. color: #fff;
  1480. cursor: pointer;
  1481. vertical-align: middle;
  1482. *display: inline;
  1483. *zoom: 1;
  1484. }
  1485. .page-full .pageto .btn-pageto-w {
  1486. position: absolute;
  1487. left: 0;
  1488. top: 0;
  1489. *top: 1px;
  1490. width: 100px;
  1491. text-align: left;
  1492. }
  1493. .page-full .pageto.pageto-focus .input-pageto {
  1494. border-color: #4db944;
  1495. }
  1496. .page-full .pageto.pageto-focus .btn-pageto-w {
  1497. left: 50px;
  1498. }
  1499. .page-full .pageto.pageto-focus .btn-pageto {
  1500. display: inline-block;
  1501. *display: inline;
  1502. *zoom: 1;
  1503. }
  1504. /*pagination - 2
  1505. -------------------------------------------------------*/
  1506. .page {
  1507. height: 30px;
  1508. line-height: 30px;
  1509. color: #555;
  1510. font-size: 0;
  1511. }
  1512. .page a {
  1513. display: inline-block;
  1514. min-width: 20px;
  1515. _width: 20px;
  1516. height: 28px;
  1517. padding: 0 4px;
  1518. line-height: 28px;
  1519. margin-right: 10px;
  1520. text-align: center;
  1521. border: 1px solid #ebebeb;
  1522. background-color: #fff;
  1523. font-size: 12px;
  1524. color: #666;
  1525. vertical-align: middle;
  1526. *display: inline;
  1527. *zoom: 1;
  1528. }
  1529. .page a:link,
  1530. .page a:visited {
  1531. color: #717171;
  1532. }
  1533. .page a:hover {
  1534. color: #18bd9c;
  1535. border-color: #18bd9c;
  1536. }
  1537. .page a.page-current {
  1538. border-color: #18bd9c;
  1539. background-color: #18bd9c;
  1540. cursor: default;
  1541. }
  1542. .page a.page-current:link,
  1543. .page a.page-current:visited {
  1544. color: #fff;
  1545. }
  1546. .page a.page-current:hover {
  1547. color: #f2f2f2;
  1548. border-color: #18bd9c;
  1549. }
  1550. .page a.disabled,
  1551. .page a.disabled:hover {
  1552. border-color: #cbcbcb;
  1553. background-color: #e2e2e2;
  1554. cursor: default;
  1555. }
  1556. .page a.page-prev,
  1557. .page a.page-next {
  1558. font-size: 26px;
  1559. line-height: 22px;
  1560. }
  1561. .page a.page-prev b,
  1562. .page a.page-next b {
  1563. font-weight: normal;
  1564. }
  1565. .page span {
  1566. display: inline-block;
  1567. margin-right: 10px;
  1568. height: 30px;
  1569. line-height: 24px;
  1570. font-size: 12px;
  1571. vertical-align: middle;
  1572. *display: inline;
  1573. *zoom: 1;
  1574. }
  1575. /*table
  1576. -------------------------------------------------------*/
  1577. .tb {
  1578. table-layout: fixed;
  1579. }
  1580. .tb th,
  1581. .tb td {
  1582. padding: 10px 5px;
  1583. text-align: center;
  1584. word-wrap: break-word;
  1585. word-break: break-all;
  1586. }
  1587. .tb th {
  1588. border-top: 1px solid #e1e1e1;
  1589. background-color: #f5f5f5;
  1590. color: #222;
  1591. }
  1592. .tb td {
  1593. border-bottom: 1px solid #dae5ec;
  1594. font-size: 12px;
  1595. }
  1596. .tb-border th,
  1597. .tb-border td {
  1598. border: 1px solid #e1e1e1;
  1599. }
  1600. /*添加表格边框*/
  1601. .tb-hover tr:hover td {
  1602. background-color: #f5f9fc;
  1603. }
  1604. /*鼠标滑过加底色*/
  1605. /* css search
  1606. -----------------------------------------------------------------------------*/
  1607. .c-ser-hold {
  1608. width: 100%;
  1609. height: 43px;
  1610. background-color: #e8e8e8;
  1611. padding: 6px 10px 0 10px;
  1612. }
  1613. .c-ser-into {
  1614. background: #fff;
  1615. height: 28px;
  1616. line-height: 28px;
  1617. border: 1px solid #e1e1e1;
  1618. border-radius: 5px;
  1619. font-size: 15px;
  1620. color: #8e8e93;
  1621. text-align: center;
  1622. }
  1623. .c-serdet {
  1624. display: -webkit-box;
  1625. display: box;
  1626. padding: 7px 10px 0 10px;
  1627. }
  1628. .ser-icon {
  1629. position: relative;
  1630. display: inline-block;
  1631. width: 13px;
  1632. height: 13px;
  1633. font-size: 1px;
  1634. background: none;
  1635. }
  1636. .ser-icon:before,
  1637. .ser-icon:after {
  1638. content: "";
  1639. position: absolute;
  1640. left: 0;
  1641. background: transparent;
  1642. font-size: 1px;
  1643. }
  1644. .ser-icon-search:before {
  1645. left: 10%;
  1646. top: 5%;
  1647. width: 55%;
  1648. height: 55%;
  1649. border: 1px solid #8e8e93;
  1650. border-radius: 50%;
  1651. -webkit-border-radius: 50%;
  1652. -moz-border-radius: 50%;
  1653. -o-border-radius: 50%;
  1654. }
  1655. .ser-icon-search:after {
  1656. left: 59%;
  1657. top: 75%;
  1658. width: 45%;
  1659. height: 12%;
  1660. background: #8e8e93;
  1661. transform: rotate(45deg);
  1662. -webkit-transform: rotate(45deg);
  1663. -moz-transform: rotate(45deg);
  1664. -o-transform: rotate(45deg);
  1665. -ms-transform: rotate(45deg);
  1666. }
  1667. .c-ser-back {
  1668. width: 20px;
  1669. -webkit-box-flex: 0;
  1670. box-flex: 0;
  1671. overflow: hidden;
  1672. }
  1673. .c-ser-back .si-right {
  1674. display: block;
  1675. width: 12px;
  1676. height: 12px;
  1677. border: solid #a3a3a7;
  1678. border-width: 0 0 2px 2px;
  1679. -webkit-transform: rotate(45deg);
  1680. -moz-transform: rotate(45deg);
  1681. -ms-transform: rotate(45deg);
  1682. -o-transform: rotate(45deg);
  1683. transform: rotate(45deg);
  1684. margin: 7px 0 0 2px;
  1685. float: left;
  1686. }
  1687. .c-ser-main {
  1688. -webkit-box-flex: 1;
  1689. box-flex: 1;
  1690. background: #fff;
  1691. height: 28px;
  1692. line-height: 28px;
  1693. border: 1px solid #e1e1e1;
  1694. border-radius: 5px;
  1695. font-size: 15px;
  1696. color: #8e8e93;
  1697. position: relative;
  1698. padding-left: 25px;
  1699. overflow: hidden;
  1700. }
  1701. .c-ser-main i {
  1702. position: absolute;
  1703. left: 7px;
  1704. top: 7px;
  1705. }
  1706. .c-ser-input {
  1707. width: 100%;
  1708. background: #fff;
  1709. height: 22px;
  1710. line-height: normal;
  1711. border: none;
  1712. font-size: 15px;
  1713. color: #8e8e93;
  1714. border-radius: 5px;
  1715. padding: 3px 0;
  1716. }
  1717. .c-ser-btn {
  1718. margin-left: 10px;
  1719. -webkit-box-flex: 0;
  1720. box-flex: 0;
  1721. }
  1722. .c-ser-btn a {
  1723. display: block;
  1724. height: 30px;
  1725. line-height: 30px;
  1726. padding: 0 10px;
  1727. background: #3aa7ed;
  1728. color: #fff;
  1729. font-size: 14px;
  1730. border-radius: 4px;
  1731. }
  1732. .c-ser-canc {
  1733. margin-left: 10px;
  1734. -webkit-box-flex: 0;
  1735. box-flex: 0;
  1736. }
  1737. .c-ser-canc a {
  1738. display: block;
  1739. height: 30px;
  1740. line-height: 30px;
  1741. color: #37a6ec;
  1742. font-size: 16px;
  1743. padding: 0 5px;
  1744. }
  1745. .c-ser-main .input-clear {
  1746. position: absolute;
  1747. right: 6px;
  1748. top: 6px;
  1749. background: #7e7e7e;
  1750. border-radius: 50%;
  1751. width: 16px;
  1752. height: 16px;
  1753. text-align: center;
  1754. }
  1755. .c-ser-main .input-clear .close {
  1756. position: relative;
  1757. display: inline-block;
  1758. width: 10px;
  1759. height: 10px;
  1760. overflow: hidden;
  1761. top: -7px;
  1762. }
  1763. .c-ser-main .input-clear .close::before,
  1764. .c-ser-main .input-clear .close::after {
  1765. content: '';
  1766. position: absolute;
  1767. height: 2px;
  1768. width: 100%;
  1769. top: 50%;
  1770. left: 0px;
  1771. margin-top: -1px;
  1772. background: #fff;
  1773. border-radius: 6px;
  1774. }
  1775. .c-ser-main .input-clear .close::before {
  1776. -webkit-transform: rotate(45deg);
  1777. -moz-transform: rotate(45deg);
  1778. -ms-transform: rotate(45deg);
  1779. -o-transform: rotate(45deg);
  1780. transform: rotate(45deg);
  1781. }
  1782. .c-ser-main .input-clear .close::after {
  1783. -webkit-transform: rotate(-45deg);
  1784. -moz-transform: rotate(-45deg);
  1785. -ms-transform: rotate(-45deg);
  1786. -o-transform: rotate(-45deg);
  1787. transform: rotate(-45deg);
  1788. }
  1789. /* css c-table two
  1790. -----------------------------------------------------------------------------*/
  1791. .c-table {
  1792. width: 100%;
  1793. border-collapse: collapse
  1794. }
  1795. .c-table th {
  1796. font-weight: 700;
  1797. }
  1798. .c-table td,
  1799. .c-table th {
  1800. border-bottom: 1px solid #f1f1f1;
  1801. border-right: 1px solid #f1f1f1;
  1802. text-align: center;
  1803. padding: 10px 5px;
  1804. }
  1805. .c-table tr td:last-child,
  1806. .c-table tr th:last-child {
  1807. border-right: 0
  1808. }
  1809. .c-table tr:last-child td {
  1810. border-bottom: 0
  1811. }
  1812. .c-table th,
  1813. .c-table td {
  1814. vertical-align: middle
  1815. }
  1816. /* css getmore
  1817. -----------------------------------------------------------------------------*/
  1818. .c-get-more {
  1819. width: 100%;
  1820. }
  1821. .c-get-more a {
  1822. display: block;
  1823. text-align: center;
  1824. line-height: 35px;
  1825. font-size: 14px;
  1826. color: #909090;
  1827. }
  1828. .c-get-more a.blue {
  1829. color: #007cd9;
  1830. }
  1831. /* css n-list
  1832. -----------------------------------------------------------------------------*/
  1833. .ptb12 {
  1834. padding-top: 12px;
  1835. padding-bottom: 12px;
  1836. }
  1837. .n-list {
  1838. background-color: #fff;
  1839. }
  1840. .n-list > li,
  1841. .n-list > .n-list-li {
  1842. position: relative;
  1843. display: -webkit-box;
  1844. display: box;
  1845. box-pack: center;
  1846. padding-right: 15px;
  1847. margin-left: 15px;
  1848. border-top: 1px solid #f1f1f1;
  1849. clear: both;
  1850. }
  1851. .n-list > li:first-child,
  1852. .n-list > .n-list-li:first-child {
  1853. border-top: none;
  1854. }
  1855. .n-list > .n-list-link:active {
  1856. background-color: #f7f7f7;
  1857. padding-left: 15px;
  1858. margin-left: 0
  1859. }
  1860. .n-list > .n-list-cover {
  1861. padding-left: 15px;
  1862. margin-left: 0;
  1863. }
  1864. .n-list > .list-arrow-r,
  1865. .n-list > .list-arrow-d,
  1866. .n-list > .list-arrow-u {
  1867. padding-right: 30px
  1868. }
  1869. .n-list > .list-arrow-r:after,
  1870. .n-list > .list-arrow-d:after,
  1871. .n-list > .list-arrow-u:after {
  1872. position: absolute;
  1873. top: 50%;
  1874. right: 15px;
  1875. margin-top: -5px;
  1876. content: "";
  1877. display: block;
  1878. width: 8px;
  1879. height: 8px;
  1880. border: solid #cdcdcd;
  1881. border-width: 2px 2px 0 0;
  1882. -webkit-transform: rotate(45deg);
  1883. -moz-transform: rotate(45deg);
  1884. -ms-transform: rotate(45deg);
  1885. transform: rotate(45deg);
  1886. }
  1887. .n-list > .list-arrow-u:after {
  1888. right: 13px;
  1889. margin-top: -2px;
  1890. -webkit-transform: rotate(-45deg);
  1891. -moz-transform: rotate(-45deg);
  1892. -ms-transform: rotate(-45deg);
  1893. transform: rotate(-45deg);
  1894. }
  1895. .n-list > .list-arrow-d:after {
  1896. right: 13px;
  1897. margin-top: -8px;
  1898. -webkit-transform: rotate(135deg);
  1899. -moz-transform: rotate(135deg);
  1900. -ms-transform: rotate(135deg);
  1901. transform: rotate(135deg);
  1902. }
  1903. .n-list-title {
  1904. display: -webkit-box;
  1905. display: -moz-box;
  1906. display: box;
  1907. -webkit-box-orient: vertical;
  1908. -moz-box-orient: vertical;
  1909. box-orient: vertical;
  1910. -webkit-box-pack: start;
  1911. -moz-box-pack: start;
  1912. box-pack: start;
  1913. }
  1914. .n-list-key,
  1915. .n-list-info {
  1916. display: -webkit-box;
  1917. display: -moz-box;
  1918. display: box;
  1919. -webkit-box-orient: vertical;
  1920. -moz-box-orient: vertical;
  1921. box-orient: vertical;
  1922. -webkit-box-pack: center;
  1923. -moz-box-pack: center;
  1924. box-pack: center;
  1925. }
  1926. .n-list-info {
  1927. display: -webkit-box;
  1928. display: -moz-box;
  1929. display: box;
  1930. -webkit-box-flex: 1;
  1931. -moz-box-flex: 1;
  1932. box-flex: 1;
  1933. }
  1934. .n-list-flex {
  1935. display: -webkit-box;
  1936. display: -moz-box;
  1937. display: box;
  1938. -webkit-box-flex: 1;
  1939. -moz-box-flex: 1;
  1940. box-flex: 1;
  1941. }
  1942. .n-list > .n-list-function {
  1943. border-top: none;
  1944. padding-right: 0;
  1945. }
  1946. .n-list > .n-list-function .n-list-flex {
  1947. border-top: 1px solid #f1f1f1;
  1948. }
  1949. .n-list > .n-list-function:first-child .n-list-flex {
  1950. border-top: none;
  1951. }
  1952. .n-list > li:first-child,
  1953. .n-list > .n-list-function:first-child,
  1954. .n-list > .n-list-function:first-child .n-list-info,
  1955. .n-list > div:first-child {
  1956. border: 0;
  1957. }
  1958. .n-list > .n-list-label {
  1959. border-top: none;
  1960. padding-right: 0;
  1961. }
  1962. .n-list .n-list-img {
  1963. width: 100px;
  1964. height: 68px;
  1965. overflow: hidden;
  1966. position: relative
  1967. }
  1968. .n-list .n-list-img img {
  1969. width: 100%;
  1970. height: auto;
  1971. }
  1972. .required {
  1973. position: relative;
  1974. }
  1975. .required:before {
  1976. content: "*";
  1977. position: absolute;
  1978. color: #f00;
  1979. font-size: 14px;
  1980. height: 12px;
  1981. line-height: 12px;
  1982. vertical-align: middle;
  1983. left: -10px;
  1984. top: 50%;
  1985. margin-top: -5px;
  1986. }
  1987. .n-avatar-s,
  1988. .n-avatar-m,
  1989. .n-avatar-l {
  1990. width: 26px;
  1991. height: 26px;
  1992. display: -webkit-box;
  1993. -webkit-box-pack: center;
  1994. -webkit-box-align: center;
  1995. }
  1996. .n-avatar-m {
  1997. width: 40px;
  1998. height: 40px;
  1999. }
  2000. .n-avatar-l {
  2001. width: 54px;
  2002. height: 54px;
  2003. }
  2004. .n-avatar-s img,
  2005. .n-avatar-m img,
  2006. .n-avatar-l img {
  2007. width: 100%;
  2008. height: 100%;
  2009. }
  2010. /*单选框和复选框*/
  2011. .c-radio,
  2012. .c-check {
  2013. display: block;
  2014. overflow: hidden;
  2015. box-sizing: border-box;
  2016. -webkit-box-sizing: border-box;
  2017. position: relative;
  2018. margin: 7px 0;
  2019. }
  2020. .c-radio .disc,
  2021. .c-check .tick {
  2022. display: block;
  2023. position: relative;
  2024. width: 26px;
  2025. height: 26px;
  2026. overflow: hidden;
  2027. box-sizing: border-box;
  2028. -webkit-box-sizing: border-box;
  2029. border: 1px solid #e1e1e1;
  2030. border-radius: 50%;
  2031. background: #fff;
  2032. top: 0;
  2033. left: 0;
  2034. z-index: 2;
  2035. }
  2036. .c-check .tick {
  2037. border-radius: 6px;
  2038. }
  2039. .c-radio > input,
  2040. .c-check > input {
  2041. display: inline-block;
  2042. vertical-align: baseline;
  2043. position: absolute;
  2044. z-index: 3;
  2045. width: 26px;
  2046. height: 26px;
  2047. background: transparent;
  2048. background: rgba(0, 0, 0, 0);
  2049. -webkit-appearance: none;
  2050. box-sizing: border-box;
  2051. -webkit-box-sizing: border-box;
  2052. margin: 0;
  2053. padding: 0;
  2054. outline: 0;
  2055. }
  2056. .c-radio > input:checked + .disc:after,
  2057. label.checked .disc:after {
  2058. position: absolute;
  2059. content: "";
  2060. width: 12px;
  2061. height: 12px;
  2062. border-radius: 50%;
  2063. background: #4dcd70;
  2064. left: 6px;
  2065. top: 6px;
  2066. box-sizing: border-box;
  2067. -webkit-box-sizing: border-box;
  2068. }
  2069. .c-check > input:checked + .tick:after,
  2070. label.checked .tick:after {
  2071. position: absolute;
  2072. content: "";
  2073. width: 13px;
  2074. height: 8px;
  2075. border: solid #4dcd70;
  2076. border-width: 0 0 2px 2px;
  2077. left: 5px;
  2078. top: 5px;
  2079. -webkit-transform: rotate(-45deg);
  2080. }
  2081. .c-radio > input:disabled + .disc,
  2082. .c-check > input:disabled + .tick {
  2083. background: #f0f0f0;
  2084. }
  2085. .c-radio > input:disabled,
  2086. .c-check > input:disabled {
  2087. cursor: auto;
  2088. }
  2089. .c-radio .txt,
  2090. .c-check .txt {
  2091. display: inline-block;
  2092. position: absolute;
  2093. height: 28px;
  2094. line-height: 28px;
  2095. vertical-align: middle;
  2096. top: 0;
  2097. left: 32px;
  2098. }
  2099. /*下拉选框*/
  2100. .c-select {
  2101. display: block;
  2102. position: relative;
  2103. height: 36px;
  2104. overflow: hidden;
  2105. box-sizing: border-box;
  2106. -webkit-box-sizing: border-box;
  2107. border-radius: 4px;
  2108. }
  2109. .c-select:after {
  2110. position: absolute;
  2111. content: '';
  2112. width: 8px;
  2113. height: 8px;
  2114. border: solid #e1e1e1;
  2115. border-width: 0 2px 2px 0;
  2116. -webkit-transform: rotate(45deg);
  2117. right: 15px;
  2118. top: 50%;
  2119. margin-top: -7px;
  2120. }
  2121. .c-select > select {
  2122. display: inline-block;
  2123. vertical-align: baseline;
  2124. position: relative;
  2125. z-index: 2;
  2126. width: 100%;
  2127. height: 36px;
  2128. color: #909090;
  2129. background: transparent;
  2130. background: rgba(0, 0, 0, 0);
  2131. border: none;
  2132. -webkit-appearance: none;
  2133. box-sizing: border-box;
  2134. -webkit-box-sizing: border-box;
  2135. margin: 0;
  2136. padding: 0 25px 0 10px;
  2137. }
  2138. .c-select > select:focus {
  2139. color: #4d5a5e;
  2140. outline: 0;
  2141. }
  2142. .c-input {
  2143. position: relative;
  2144. display: inline-block;
  2145. min-width: 40px;
  2146. height: 36px;
  2147. overflow: hidden;
  2148. box-sizing: border-box;
  2149. -webkit-box-sizing: border-box;
  2150. border-radius: 4px;
  2151. }
  2152. .c-input > input {
  2153. display: inline-block;
  2154. vertical-align: baseline;
  2155. position: relative;
  2156. z-index: 2;
  2157. width: 100%;
  2158. height: 36px;
  2159. color: #80989f;
  2160. background: transparent;
  2161. background: rgba(0, 0, 0, 0);
  2162. border: none;
  2163. -webkit-appearance: none;
  2164. box-sizing: border-box;
  2165. -webkit-box-sizing: border-box;
  2166. margin: 0;
  2167. padding: 6px 12px;
  2168. }
  2169. .c-input > input:focus {
  2170. color: #4d5a5e;
  2171. outline: 0;
  2172. }
  2173. .c-textarea {
  2174. position: relative;
  2175. display: block;
  2176. overflow: hidden;
  2177. box-sizing: border-box;
  2178. -webkit-box-sizing: border-box;
  2179. border-radius: 4px;
  2180. }
  2181. .c-textarea > textarea {
  2182. display: inline-block;
  2183. vertical-align: baseline;
  2184. position: relative;
  2185. z-index: 2;
  2186. width: 100%;
  2187. color: #80989f;
  2188. background: transparent;
  2189. background: rgba(0, 0, 0, 0);
  2190. border: none;
  2191. -webkit-appearance: none;
  2192. box-sizing: border-box;
  2193. -webkit-box-sizing: border-box;
  2194. margin: 0;
  2195. padding: 6px 12px;
  2196. }
  2197. .c-textarea > textarea:focus {
  2198. color: #4d5a5e;
  2199. outline: 0;
  2200. }
  2201. /*图片放大*/
  2202. .imgzoom-pack {
  2203. width: 100%;
  2204. height: 100%;
  2205. position: fixed;
  2206. left: 0;
  2207. top: 0;
  2208. background: rgba(0, 0, 0, .7);
  2209. display: none;
  2210. z-index: 3000;
  2211. }
  2212. .imgzoom-pack:after {
  2213. content: "";
  2214. position: absolute;
  2215. height: 50px;
  2216. line-height: 50px;
  2217. width: 100%;
  2218. bottom: 0;
  2219. left: 0;
  2220. background: rgba(0, 0, 0, .5);
  2221. z-index: 5;
  2222. }
  2223. .imgzoom-pack .imgzoom-x {
  2224. color: #fff;
  2225. height: 50px;
  2226. width: 60px;
  2227. line-height: 50px;
  2228. text-align: center;
  2229. font-size: 17px;
  2230. position: absolute;
  2231. left: 50%;
  2232. margin-left: -35px;
  2233. bottom: 0;
  2234. z-index: 10;
  2235. cursor: pointer;
  2236. }
  2237. .imgzoom-del {
  2238. color: #fff;
  2239. height: 50px;
  2240. width: 60px;
  2241. line-height: 50px;
  2242. vertical-align: middle;
  2243. text-align: center;
  2244. position: absolute;
  2245. right: 0;
  2246. bottom: 0;
  2247. z-index: 10;
  2248. cursor: pointer;
  2249. }
  2250. .imgzoom-del .iconfont {
  2251. font-size: 24px;
  2252. color: #fff;
  2253. }
  2254. .imgzoom-pack .imgzoom-img {
  2255. width: 100%;
  2256. height: 100%;
  2257. position: absolute;
  2258. left: 0;
  2259. top: 0;
  2260. overflow: hidden;
  2261. }
  2262. .imgzoom-pack .imgzoom-img img {
  2263. width: 100%;
  2264. position: absolute;
  2265. top: 50%;
  2266. }
  2267. .ax-popup.dr-jj .ui-dialog-body {
  2268. padding-top: 0;
  2269. }
  2270. /* css nomess
  2271. -----------------------------------------------------------------------------*/
  2272. .c-nomess {
  2273. padding: 150px 15px 50px 15px;
  2274. }
  2275. .no-mess {
  2276. position: relative;
  2277. background: #dfdfdf;
  2278. width: 90px;
  2279. height: 90px;
  2280. border-radius: 50%;
  2281. margin: 0 auto;
  2282. }
  2283. .no-mess:after {
  2284. position: absolute;
  2285. content: "";
  2286. background: #fff;
  2287. width: 45px;
  2288. height: 45px;
  2289. top: 23px;
  2290. left: 23px;
  2291. border-radius: 3px;
  2292. }
  2293. .no-mess i {
  2294. position: relative;
  2295. display: inline-block;
  2296. }
  2297. .no-mess-ico1 {
  2298. width: 4px;
  2299. height: 9px;
  2300. background: #fff;
  2301. border: 2px solid #dfdfdf;
  2302. border-radius: 9px;
  2303. top: 16px;
  2304. left: 40px;
  2305. z-index: 110;
  2306. }
  2307. .no-mess-ico1:before,
  2308. .no-mess-ico1:after {
  2309. position: absolute;
  2310. content: "";
  2311. width: 4px;
  2312. height: 9px;
  2313. background: #fff;
  2314. border: 2px solid #dfdfdf;
  2315. border-radius: 9px;
  2316. top: -2px;
  2317. left: -13px;
  2318. z-index: 111;
  2319. }
  2320. .no-mess-ico1:before {
  2321. top: -2px;
  2322. left: 10px;
  2323. }
  2324. .no-mess-ico2 {
  2325. width: 32px;
  2326. height: 5px;
  2327. background: #dfdfdf;
  2328. border-radius: 9px;
  2329. top: 28px;
  2330. left: 19px;
  2331. z-index: 120;
  2332. }
  2333. .no-mess-ico2:before,
  2334. .no-mess-ico2:after {
  2335. position: absolute;
  2336. content: "";
  2337. width: 23px;
  2338. height: 5px;
  2339. background: #dfdfdf;
  2340. border-radius: 9px;
  2341. top: 10px;
  2342. left: 0px;
  2343. z-index: 111;
  2344. }
  2345. .no-mess-ico2:after {
  2346. width: 18px;
  2347. height: 5px;
  2348. background: #dfdfdf;
  2349. border-radius: 9px;
  2350. top: 20px;
  2351. left: 0px;
  2352. z-index: 111;
  2353. }
  2354. .no-mess-ico3 {
  2355. width: 16px;
  2356. height: 4px;
  2357. background: #fff;
  2358. border: 2px solid #dfdfdf;
  2359. border-radius: 9px;
  2360. top: 54px;
  2361. left: 15px;
  2362. transform: rotate(45deg);
  2363. -webkit-transform: rotate(45deg);
  2364. -moz-transform: rotate(45deg);
  2365. -ms-transform: rotate(45deg);
  2366. z-index: 130;
  2367. }
  2368. .no-mess-ico3:before {
  2369. position: absolute;
  2370. content: "";
  2371. width: 4px;
  2372. height: 6px;
  2373. background: #fff;
  2374. border-radius: 9px 9px 0 0;
  2375. border: 2px solid #dfdfdf;
  2376. border-bottom: none;
  2377. top: -8px;
  2378. left: 4px;
  2379. z-index: 131;
  2380. }
  2381. .no-mess-ico3:after {
  2382. position: absolute;
  2383. content: "";
  2384. width: 4px;
  2385. height: 6px;
  2386. background: #fff;
  2387. border-radius: 9px 9px 0 0;
  2388. border: 2px solid #dfdfdf;
  2389. border-bottom: none;
  2390. top: 4px;
  2391. left: 4px;
  2392. z-index: 131;
  2393. transform: rotate(180deg);
  2394. -webkit-transform: rotate(180deg);
  2395. -moz-transform: rotate(180deg);
  2396. -ms-transform: rotate(180deg);
  2397. }
  2398. .c-nomess p {
  2399. text-align: center;
  2400. font-size: 14px;
  2401. color: #666;
  2402. line-height: 20px;
  2403. padding: 5px 0;
  2404. }
  2405. .c-nomess a {
  2406. color: #007cd9;
  2407. margin-left: 2px;
  2408. }
  2409. @media (orientation: landscape) {
  2410. .c-nomess {
  2411. padding: 50px 15px 20px 15px;
  2412. }
  2413. }
  2414. /*head*/
  2415. .h45 {
  2416. height: 45px;
  2417. }
  2418. .demo-comtop {
  2419. top: 0;
  2420. right: 0;
  2421. left: 0;
  2422. background-color: #17b3ec;
  2423. -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .85);
  2424. box-shadow: 0 0 1px rgba(0, 0, 0, .85);
  2425. -webkit-backface-visibility: hidden;
  2426. backface-visibility: hidden;
  2427. width: 100%;
  2428. height: 45px;
  2429. line-height: 44px;
  2430. color: #333;
  2431. text-align: center;
  2432. font-size: 18px;
  2433. padding-left: 45px;
  2434. padding-right: 45px;
  2435. position: fixed;
  2436. z-index: 9999;
  2437. box-sizing: border-box;
  2438. -webkit-box-sizing: border-box;
  2439. -moz-box-sizing: border-box;
  2440. -ms-box-sizing: border-box;
  2441. border-bottom: none;
  2442. }
  2443. .demo-comtop .mui-action-back {
  2444. display: block;
  2445. width: 45px;
  2446. height: 45px;
  2447. position: absolute;
  2448. left: 0;
  2449. top: 0;
  2450. }
  2451. .demo-comtop .mui-action-back:before {
  2452. content: '';
  2453. display: block;
  2454. width: 12px;
  2455. height: 12px;
  2456. border: solid #fff;
  2457. border-width: 1px 1px 0 0;
  2458. transform: rotate(-135deg);
  2459. -webkit-transform: rotate(-135deg);
  2460. -moz-transform: rotate(-135deg);
  2461. -ms-transform: rotate(-135deg);
  2462. position: absolute;
  2463. left: 18px;
  2464. top: 16px;
  2465. }
  2466. .demo-comtop h1 {
  2467. line-height: 45px;
  2468. max-width: 100%;
  2469. overflow: hidden;
  2470. white-space: nowrap;
  2471. text-overflow: ellipsis;
  2472. color: #fff;
  2473. position: relative;
  2474. }
  2475. .header-tabs {
  2476. margin: 5px 30px 0;
  2477. }
  2478. .header-tabs .c-lab-les {
  2479. border-radius: 5px;
  2480. }
  2481. .header-tabs .c-lab-les li {
  2482. width: 0;
  2483. }
  2484. .header-menu-bg,
  2485. .header-title-downbg {
  2486. position: fixed;
  2487. top: 0;
  2488. left: 0;
  2489. right: 0;
  2490. bottom: 0;
  2491. background-color: rgba(0, 0, 0, 0.3);
  2492. }
  2493. .header-menu,
  2494. .header-people,
  2495. .header-group,
  2496. .header-link {
  2497. position: absolute;
  2498. }
  2499. .header-menu,
  2500. .header-people,
  2501. .header-group {
  2502. right: 10px;
  2503. top: 50%;
  2504. margin-top: -9px;
  2505. }
  2506. .header-menu a.menu img {
  2507. width: 20px;
  2508. height: 17px;
  2509. }
  2510. .header-people a.people img {
  2511. width: 20px;
  2512. height: 20px;
  2513. }
  2514. .header-group a.group img {
  2515. width: 27px;
  2516. height: 20px;
  2517. }
  2518. .header-tipBox {
  2519. width: 100px;
  2520. position: absolute;
  2521. right: 5px;
  2522. top: 29px;
  2523. }
  2524. .header-tipBox .bd {
  2525. background: #fff;
  2526. border-color: #e1e1e1;
  2527. }
  2528. .header-tipBox .hd .ui-arrow {
  2529. left: auto;
  2530. right: 10px;
  2531. }
  2532. .header-a-list li {
  2533. border-bottom: 1px solid #e1e1e1;
  2534. line-height: 36px;
  2535. }
  2536. .header-a-list li:last-child {
  2537. border-bottom: 0;
  2538. }
  2539. .header-link {
  2540. top: 0px;
  2541. right: 10px;
  2542. }
  2543. .header-link a.link {
  2544. color: #fff;
  2545. font-size: 16px;
  2546. }
  2547. .header-link a.c-ccc{
  2548. color: #37c8fa;
  2549. }
  2550. .header-title-down .ui-arrow {
  2551. display: inline-block;
  2552. top: 2px;
  2553. margin-left: 2px;
  2554. }
  2555. .header-title-downbox {
  2556. left: 50%;
  2557. margin-left: -75px;
  2558. top: 28px;
  2559. }
  2560. .header-title-downbox .tipBox {
  2561. width: 150px;
  2562. }
  2563. .header-title-downbox .tipBox .bd {
  2564. background-color: #fff;
  2565. border-color: #e1e1e1;
  2566. }
  2567. .header-title-downbox .tipBox .hd .ui-arrow {
  2568. left: 50%;
  2569. margin-left: -5px;
  2570. }
  2571. .header-title-downbox .tipBox .bd li a {
  2572. color: #333;
  2573. line-height: 34px;
  2574. display: block;
  2575. text-align: left;
  2576. border-bottom: 1px solid #e1e1e1;
  2577. padding-left: 5px;
  2578. }
  2579. .header-title-downbox .tipBox .bd li:last-child a {
  2580. border-bottom: 0;
  2581. }
  2582. .header-title-downbox .tipBox .bd li a img {
  2583. width: 15px;
  2584. height: 15px;
  2585. vertical-align: middle;
  2586. margin-right: 5px;
  2587. }
  2588. .demo-comtop .mui-msg {
  2589. display: block;
  2590. width: 45px;
  2591. height:45px;
  2592. position: absolute;
  2593. right: 5px;
  2594. top: 0;
  2595. color: #17b3ec;
  2596. }
  2597. .demo-comtop .mui-msg i.iconfont {
  2598. font-size: 22px;
  2599. }
  2600. /*底部导航*/
  2601. #navFooter .iconfont {
  2602. font-size: 22px;
  2603. line-height: 1em;
  2604. }
  2605. nav {
  2606. display: -webkit-box;
  2607. position: fixed;
  2608. bottom: 0;
  2609. background: #fefefe;
  2610. border-top: 1px solid #cbcbcb;
  2611. font-size: 12px;
  2612. width: 100%;
  2613. text-align: center;
  2614. color: #3d3d3d;
  2615. height: 50px;
  2616. z-index: 999;
  2617. }
  2618. nav a {
  2619. color: #3d3d3d;
  2620. color: inherit;
  2621. }
  2622. nav > div {
  2623. -webkit-box-flex: 1;
  2624. width: 0;
  2625. padding-top: 8px;
  2626. box-sizing: border-box;
  2627. -webkit-box-sizing: border-box;
  2628. -moz-box-sizing: border-box;
  2629. position: relative;
  2630. background: #fefefe;
  2631. z-index: 1000;
  2632. }
  2633. nav div.curr {
  2634. color: #17b3ec;
  2635. }
  2636. nav > div:first-child {
  2637. border-left: none;
  2638. }
  2639. nav .haslist {
  2640. position: absolute;
  2641. display: block;
  2642. font-size: 0;
  2643. line-height: 0;
  2644. width: 0;
  2645. height: 0;
  2646. border-color: transparent;
  2647. border-style: dashed;
  2648. border-width: 6px;
  2649. border-left-color: #dddddd;
  2650. border-left-style: solid;
  2651. right: -2px;
  2652. bottom: -5px;
  2653. -webkit-transform: rotate(45deg);
  2654. -moz-transform: rotate(45deg);
  2655. -ms-transform: rotate(45deg);
  2656. -o-transform: rotate(45deg);
  2657. transform: rotate(45deg);
  2658. z-index: 1000;
  2659. }
  2660. nav .nav-list {
  2661. width: 106%;
  2662. position: absolute;
  2663. left: -3%;
  2664. bottom: 52px;
  2665. box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  2666. display: none;
  2667. }
  2668. nav .nav-list a {
  2669. display: block;
  2670. width: 100%;
  2671. height: 45px;
  2672. line-height: 45px;
  2673. border-top: 1px solid #e1e1e1;
  2674. background: #fff;
  2675. color: #3d3d3d;
  2676. font-size: 15px;
  2677. }
  2678. nav .nav-list a:first-child {
  2679. border-top: none;
  2680. }
  2681. nav div .icon-tag {
  2682. width: 38px;
  2683. margin: 0 auto;
  2684. }
  2685. nav div .icon-num {
  2686. position: absolute;
  2687. top: -2px;
  2688. right: 0;
  2689. width: 17px;
  2690. height: 17px;
  2691. border-radius: 50%;
  2692. font-size: 12px;
  2693. color: #fff;
  2694. }
  2695. nav .icon-num-red {
  2696. background-color: #ff3824;
  2697. }
  2698. nav .curr .icon-tongjibaobiao:before {
  2699. content: "\e605";
  2700. }
  2701. nav .curr .icon-kehuguanli:before {
  2702. content: "\e606";
  2703. }
  2704. nav .curr .icon-xingdongrizhi:before {
  2705. content: "\e607";
  2706. }
  2707. nav .curr .icon-wo:before {
  2708. content: "\e602";
  2709. }
  2710. .nav-mb {
  2711. width: 100%;
  2712. height: 100%;
  2713. background: rgba(0, 0, 0, 0);
  2714. position: fixed;
  2715. left: 0;
  2716. bottom: 0px;
  2717. z-index: 998;
  2718. display: none;
  2719. }
  2720. /*无数据*/
  2721. /* 无数据 */
  2722. .c-failstate {
  2723. padding: 90px 15px 30px 15px;
  2724. font-size: 16px;
  2725. line-height: 1.5em;
  2726. }
  2727. .icon-noset {
  2728. display: inline-block;
  2729. width: 120px;
  2730. height: 120px;
  2731. background: url(../../../images/noset.png) no-repeat;
  2732. background-size: 100% 100%;
  2733. margin-bottom: 10px;
  2734. }
  2735. /*强制换行*/
  2736. .c-break {
  2737. word-break: break-word
  2738. }
  2739. button{
  2740. user-select: none;
  2741. -moz-user-select: none;
  2742. -khtml-user-select: none;
  2743. -webkit-user-select: none;
  2744. }
  2745. .no-result-img {
  2746. display: block;
  2747. width: 320px;
  2748. height: 184px;
  2749. margin: 0 auto;
  2750. margin-top: 160px;
  2751. }
  2752. .new-msg{
  2753. background: url('../../../images/new_icon.png') no-repeat;
  2754. background-size: 35px 35px;
  2755. -webkit-background-size: 35px 35px;
  2756. -moz-background-size: 35px 35px;
  2757. -o-background-size: 35px 35px;
  2758. background-position: top right!important;
  2759. }
  2760. .text-vertical{
  2761. display: -webkit-box;
  2762. -webkit-box-orient: vertical;
  2763. -webkit-box-pack: center;
  2764. }
  2765. .c-dcdcdc{
  2766. color: #cdcdcd;
  2767. }
  2768. .c-red{
  2769. color: red;
  2770. }
  2771. .text-ellipsis{
  2772. overflow: hidden;
  2773. white-space: nowrap;
  2774. text-overflow: ellipsis;
  2775. }
  2776. .jt46{
  2777. top: 46px!important;
  2778. }
  2779. .mt10{
  2780. margin-top: 10px;
  2781. }
  2782. .mt15{
  2783. margin-top: 15px;
  2784. }
  2785. .mt6{
  2786. margin-top: 6px;
  2787. }
  2788. body{
  2789. background: #f2f4f6;
  2790. }
  2791. .img-msk{
  2792. overflow: hidden;
  2793. position: absolute;
  2794. /*background: #000;*/
  2795. width: 100%;
  2796. height: 100%;
  2797. z-index: 10000;
  2798. display: none;
  2799. }
  2800. .img-msk > .img-wrapper{
  2801. overflow: auto;
  2802. width: 100%;
  2803. height: 100%;
  2804. display: -webkit-box;
  2805. -webkit-box-orient: horizontal;
  2806. -webkit-box-pack: center;
  2807. -webkit-box-align: center;
  2808. }
  2809. .img-bar{
  2810. /*display: none;*/
  2811. position: absolute;
  2812. width: 50px;
  2813. height: 30px;
  2814. top: 20px;
  2815. right: 20px;
  2816. z-index: 10003;
  2817. text-align: center;
  2818. line-height: 30px;
  2819. font-size: 30px;
  2820. font-weight: 700;
  2821. background: rgba(170,170,170,0.4);
  2822. color: #fff;
  2823. }
  2824. .img-msk img{
  2825. position: relative;
  2826. }
  2827. .img-msk img.orign{
  2828. max-height: 100%;
  2829. max-width: 100%;
  2830. /*vertical-align: inherit;*/
  2831. }
  2832. .img-msk div{
  2833. border: none;
  2834. }
  2835. .img-menu-msk{
  2836. display: none;
  2837. position: absolute;
  2838. z-index: 10003;
  2839. width: 100%;
  2840. height: 100%;
  2841. top: 0;
  2842. left: 0;
  2843. background: rgba(53, 52, 52, 0.5);
  2844. }
  2845. .img-menu-wrapper{
  2846. display: none;
  2847. position: absolute;
  2848. width: 100%;
  2849. bottom: 10px;
  2850. text-align: center;
  2851. }
  2852. .img-menu{
  2853. background: #fff;
  2854. border-radius: 7px;
  2855. color: #17b3ec;
  2856. font-size: 20px;
  2857. margin: 0px 16px;
  2858. }
  2859. .img-menu li{
  2860. line-height: 50px;
  2861. text-align: center;
  2862. border-top: 1px solid #EEE;
  2863. }
  2864. .img-menu li:first-child{
  2865. border-top: none;
  2866. }
  2867. .img-menu-cancle{
  2868. background: #fff;
  2869. border-radius: 7px;
  2870. color: #17b3ec;
  2871. font-size: 20px;
  2872. margin: 20px 16px 0px 16px;
  2873. line-height: 50px;
  2874. text-align: center;
  2875. }
  2876. /* 任务#996 【医生端与居民端-水印-前端】增加健康之路水印 */
  2877. body:after {
  2878. content: '';
  2879. height: 21px;
  2880. width: 80px;
  2881. background: url(../images/logo_dibu_img.png) no-repeat;
  2882. background-size: 80px 21px;
  2883. background-position: 50%;
  2884. margin-left: -40px;
  2885. position: fixed;
  2886. left: 50%;
  2887. bottom: 10px;
  2888. z-index: -1;
  2889. }
  2890. /*添加checkbox和radio新的样式*/
  2891. .icon-checkbox{
  2892. position: relative;
  2893. font-family: Muiicons;
  2894. font-size: 24px;
  2895. font-weight: 400;
  2896. line-height: 1;
  2897. text-decoration: none;
  2898. color: #e1e1e1;
  2899. border-radius: 0;
  2900. -webkit-font-smoothing: antialiased;
  2901. }
  2902. .icon-checkbox[type=checkbox]:before,
  2903. .icon-checkbox[type=radio]:before{
  2904. content: '\e411';
  2905. position: absolute;
  2906. top: -5px;
  2907. left: -5px;
  2908. background: #fff;
  2909. }
  2910. .icon-checkbox[type=checkbox]:checked:before,
  2911. .icon-checkbox[type=radio]:checked:before{
  2912. content: '\e442';
  2913. color: #17B3EC;
  2914. }
  2915. .icon-checkbox[type=checkbox]:disabled:before{
  2916. content: '\e442'; color: #e1e1e1;
  2917. }