cross.ui.css 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607
  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: 14px;
  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: 15px;
  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: 15px;
  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 > .c-list-text {
  896. line-height: 20px;
  897. padding: 12px 15px 12px 0;
  898. }
  899. .c-list > .c-list-function {
  900. border-top: none;
  901. }
  902. .c-list > .c-list-function .c-list-info {
  903. border-top: 1px solid #f1f1f1;
  904. }
  905. .c-list > li:first-child,
  906. .c-list > .c-border-t:first-child,
  907. .c-list >li:first-child .c-border-t,
  908. .c-list > .c-list-function:first-child,
  909. .c-list > .c-list-function:first-child .c-list-info,
  910. .c-list > div:first-child .c-border-t,
  911. .c-list > div:first-child {
  912. border: 0;
  913. background-image: none
  914. }
  915. .c-list > .c-list-cover {
  916. padding-left: 15px !important;
  917. margin-left: 0 !important;
  918. }
  919. .c-list .c-list-info {
  920. -webkit-box-flex: 1;
  921. box-flex: 1;
  922. padding-right: 15px;
  923. display: box;
  924. display: -webkit-box;
  925. -webkit-box-orient: vertical;
  926. -webkit-box-pack: center;
  927. }
  928. .c-list h4 {
  929. color: #333 !important;
  930. }
  931. .c-list .c-list-info > h4 {
  932. font-size: 15px;
  933. line-height: 20px
  934. }
  935. .c-list .c-list-info > p {
  936. font-size: 13px;
  937. line-height: 20px;
  938. color: #909090;
  939. }
  940. .c-list .c-list-label {
  941. font-size: 13px !important;
  942. color: #909090 !important;
  943. padding: 10px 15px 10px 0!important;
  944. border-top: 1px dashed #e1e1e1 !important;
  945. }
  946. .c-list .c-list-key {
  947. margin-right: 15px;
  948. }
  949. .c-list .c-list-img {
  950. width: 100px;
  951. height: 68px;
  952. margin: 10px 10px 10px 0;
  953. position: relative
  954. }
  955. .c-list .c-list-img img {
  956. width: auto;
  957. height: 68px;
  958. }
  959. .c-list > .c-list-link:active {
  960. background-color: #e5e6e7;
  961. padding-left: 15px;
  962. margin-left: 0
  963. }
  964. .c-list-link:active,
  965. .c-list-link.c-border-t:active,
  966. .c-list-link:active + .c-border-t,
  967. .c-list-link:active + .c-border-t {
  968. background-image: none;
  969. border-top-color: #e5e6e7
  970. }
  971. .c-list .c-list-value {
  972. color: #909090;
  973. display: box;
  974. display: -webkit-box;
  975. -webkit-box-orient: vertical;
  976. -webkit-box-pack: center;
  977. }
  978. .c-list .c-list-title {}
  979. .c-list .c-list-link .c-list-value,
  980. .c-list .c-list-link .c-list-title {
  981. padding-right: 20px;
  982. }
  983. .c-list .c-list-badge,
  984. .c-list .c-list-action {
  985. font-size: 13px;
  986. color: #909090;
  987. position: absolute;
  988. height: 100%;
  989. right: 15px;
  990. display: box;
  991. display: -webkit-box;
  992. -webkit-box-orient: vertical;
  993. -webkit-box-pack: center;
  994. top: 0;
  995. }
  996. .c-list-link .c-list-badge,
  997. .c-list-link .c-list-action {
  998. right: 35px
  999. }
  1000. .c-list-link .list-icon {
  1001. position: absolute;
  1002. right: 15px;
  1003. top: 50%;
  1004. margin-top: -4px;
  1005. }
  1006. .c-list .c-avatar-s,
  1007. .c-list .c-avatar-m,
  1008. .c-list .c-avatar-l {
  1009. margin: 10px 15px 10px 0;
  1010. overflow: hidden;
  1011. display: -webkit-box;
  1012. -webkit-box-pack: center;
  1013. -webkit-box-align: center;
  1014. }
  1015. .c-list-indent-s {
  1016. padding-right: 70px !important;
  1017. }
  1018. .c-list-indent-m {
  1019. padding-right: 110px !important;
  1020. }
  1021. .c-list-action .input-group-checkbox .input-group-pack,
  1022. .c-list-action .input-group-radio .input-group-pack {
  1023. margin: 0 0 0 5px;
  1024. }
  1025. .c-avatar-s {
  1026. width: 26px;
  1027. height: 26px;
  1028. }
  1029. .c-avatar-m {
  1030. width: 40px;
  1031. height: 40px;
  1032. }
  1033. .c-avatar-l {
  1034. width: 54px;
  1035. height: 54px;
  1036. }
  1037. .c-avatar-s img,
  1038. .c-avatar-m img,
  1039. .c-avatar-l img {
  1040. width: 100%;
  1041. height: 100%;
  1042. }
  1043. .c-list-text .c-t-right {
  1044. color: #909090 !important;
  1045. }
  1046. .c-list-text .c-t-right {
  1047. padding-right: 0px;
  1048. color: #909090;
  1049. }
  1050. .c-list-link .c-t-right {
  1051. padding-right: 20px !important;
  1052. }
  1053. /* css c-lab1
  1054. -----------------------------------------------------------------------------*/
  1055. .c-lab-les {
  1056. display: -webkit-box;
  1057. display: box;
  1058. border: 1px solid #37a6eb;
  1059. overflow: hidden;
  1060. }
  1061. .c-lab-les li {
  1062. -webkit-box-flex: 1;
  1063. box-flex: 1;
  1064. height: 30px;
  1065. line-height: 30px;
  1066. box-sizing: border-box;
  1067. -webkit-box-sizing: border-box;
  1068. -moz-box-sizing: border-box;
  1069. -o-box-sizing: border-box;
  1070. text-align: center;
  1071. border-left: 1px solid #37a6eb;
  1072. }
  1073. .c-lab-les li:first-child {
  1074. border-left: none;
  1075. }
  1076. .c-lab-les li a {
  1077. display: block;
  1078. width: 100%;
  1079. height: 30px;
  1080. color: #37a6eb;
  1081. }
  1082. .c-lab-les li.hit {
  1083. background-color: #37a6eb;
  1084. }
  1085. .c-lab-les li.hit a {
  1086. color: #fff;
  1087. }
  1088. /* css c-lab2
  1089. -----------------------------------------------------------------------------*/
  1090. .c-lab-mor {
  1091. display: -webkit-box;
  1092. display: box;
  1093. overflow: hidden;
  1094. background: #fff;
  1095. }
  1096. .c-lab-mor li {
  1097. -webkit-box-flex: 1;
  1098. box-flex: 1;
  1099. height: 40px;
  1100. box-sizing: border-box;
  1101. -webkit-box-sizing: border-box;
  1102. -moz-box-sizing: border-box;
  1103. -o-box-sizing: border-box;
  1104. text-align: center;
  1105. padding-top: 6px;
  1106. border-bottom: 1px solid #e1e1e1;
  1107. }
  1108. .c-lab-mor li:first-child {
  1109. border-left: none;
  1110. }
  1111. .c-lab-mor li a {
  1112. display: block;
  1113. width: 100%;
  1114. height: 28px;
  1115. line-height: 28px;
  1116. color: #333;
  1117. box-sizing: border-box;
  1118. -webkit-box-sizing: border-box;
  1119. -moz-box-sizing: border-box;
  1120. -o-box-sizing: border-box;
  1121. border-left: 1px solid #ddd;
  1122. }
  1123. .c-lab-mor li:first-child a {
  1124. border-left: none;
  1125. }
  1126. .c-lab-mor li.hit {
  1127. border-bottom: 3px solid #37a6eb;
  1128. }
  1129. .c-lab-mor li.hit a {
  1130. color: #37a6eb;
  1131. }
  1132. /* css step
  1133. -----------------------------------------------------------------------------*/
  1134. .step-box {
  1135. width: 100%;
  1136. height: 200px;
  1137. display: box;
  1138. display: -webkit-box;
  1139. -webkit-box-orient: vertical;
  1140. -webkit-box-pack: center;
  1141. border: 1px solid #ddd;
  1142. }
  1143. .step-bar {
  1144. text-align: center;
  1145. overflow: hidden;
  1146. counter-reset: step;
  1147. }
  1148. .step-bar li {
  1149. color: #909090;
  1150. text-transform: uppercase;
  1151. font-size: 12px;
  1152. float: left;
  1153. position: relative;
  1154. padding-top: 25px;
  1155. }
  1156. .step-n2 li {
  1157. width: 50%;
  1158. }
  1159. .step-n3 li {
  1160. width: 33.33%;
  1161. }
  1162. .step-n4 li {
  1163. width: 25%;
  1164. }
  1165. .step-n5 li {
  1166. width: 20%;
  1167. }
  1168. .step-n6 li {
  1169. width: 16.66%;
  1170. }
  1171. .step-bar li:before {
  1172. content: counter(step);
  1173. counter-increment: step;
  1174. position: absolute;
  1175. top: 0;
  1176. left: 50%;
  1177. width: 20px;
  1178. line-height: 20px;
  1179. display: inline-block;
  1180. font-size: 12px;
  1181. color: #909090;
  1182. background: #dcdcdc;
  1183. border-radius: 50%;
  1184. margin-left: -10px;
  1185. z-index: 2;
  1186. }
  1187. .step-bar li:after {
  1188. content: "";
  1189. width: 100%;
  1190. height: 2px;
  1191. background: #dcdcdc;
  1192. position: absolute;
  1193. left: -50%;
  1194. top: 9px;
  1195. z-index: 1;
  1196. }
  1197. .text-up li {
  1198. padding-bottom: 25px;
  1199. }
  1200. .text-up li:before {
  1201. top: auto;
  1202. bottom: 0;
  1203. }
  1204. .text-up li:after {
  1205. top: auto;
  1206. bottom: 9px;
  1207. }
  1208. .step-bar li:first-child:after {
  1209. content: none;
  1210. }
  1211. .step-bar li.active {
  1212. color: #37a1ff
  1213. }
  1214. .step-bar li.active:before,
  1215. .step-bar li.active:after {
  1216. background: #37a1ff;
  1217. color: #fff;
  1218. }
  1219. .step-bar-icon li {
  1220. padding-top: 45px;
  1221. }
  1222. .step-bar-icon li:before {
  1223. content: none;
  1224. }
  1225. .step-bar-icon li:after {
  1226. height: 3px;
  1227. top: 19px;
  1228. }
  1229. .step-bar-icon li .step-icon {
  1230. position: absolute;
  1231. display: box !important;
  1232. display: -webkit-box !important;
  1233. ;
  1234. -webkit-box-orient: vertical;
  1235. -webkit-box-pack: center;
  1236. top: 0;
  1237. left: 50%;
  1238. width: 40px;
  1239. height: 40px;
  1240. color: #909090;
  1241. background: #dcdcdc;
  1242. display: inline-block;
  1243. margin-left: -20px;
  1244. z-index: 2;
  1245. border-radius: 50%;
  1246. }
  1247. .step-bar-icon li .step-icon i {
  1248. font-size: 24px;
  1249. }
  1250. .step-bar li.active .step-icon {
  1251. background: #37a1ff;
  1252. color: #fff;
  1253. }
  1254. .step-bar-w {
  1255. display: table;
  1256. width: 100%;
  1257. padding: 0;
  1258. margin: 0;
  1259. position: relative
  1260. }
  1261. .step-bar-w li {
  1262. display: table-cell;
  1263. text-align: center;
  1264. width: 1%;
  1265. }
  1266. .step-bar-w li .step {
  1267. position: relative;
  1268. display: inline-block;
  1269. width: 40px;
  1270. height: 40px;
  1271. border: 4px solid #ced1d6;
  1272. color: #546474;
  1273. border-radius: 50%;
  1274. background-color: #FFF;
  1275. z-index: 2;
  1276. line-height: 40px;
  1277. text-align: center;
  1278. vertical-align: middle;
  1279. }
  1280. .step-bar-w li:before {
  1281. display: block;
  1282. content: "";
  1283. width: 100%;
  1284. height: 1px;
  1285. font-size: 0;
  1286. overflow: hidden;
  1287. border-top: 4px solid #ced1d6;
  1288. position: relative;
  1289. top: 27px;
  1290. z-index: 1
  1291. }
  1292. .txt-up li {
  1293. position: relative;
  1294. padding-top: 30px;
  1295. }
  1296. .txt-up li .title {
  1297. width: 100%;
  1298. text-align: center;
  1299. position: absolute;
  1300. top: 0;
  1301. left: 0;
  1302. }
  1303. .step-bar-w li:last-child:before {
  1304. max-width: 50%;
  1305. width: 50%
  1306. }
  1307. .step-bar-w li:first-child:before {
  1308. max-width: 51%;
  1309. left: 50%
  1310. }
  1311. .step-bar-w li.active:before,
  1312. .step-bar-w li.complete:before,
  1313. .step-bar-w li.active .step,
  1314. .step-bar-w li.complete .step {
  1315. border-color: #37a1ff
  1316. }
  1317. .step-bar-w li.complete .step:before {
  1318. display: block;
  1319. content: "";
  1320. position: absolute;
  1321. top: 11px;
  1322. left: 11px;
  1323. width: 16px;
  1324. height: 9px;
  1325. border-left: 4px solid #87ba21;
  1326. border-bottom: 4px solid #87ba21;
  1327. text-align: center;
  1328. z-index: 3;
  1329. color: #87ba21;
  1330. -webkit-transform: rotate(-45deg);
  1331. -moz-transform: rotate(-45deg);
  1332. -ms-transform: rotate(-45deg);
  1333. -o-transform: rotate(-45deg);
  1334. transform: rotate(-45deg);
  1335. }
  1336. .step-bar-w li .title {
  1337. display: block;
  1338. margin-top: 4px;
  1339. max-width: 100%;
  1340. color: #949ea7;
  1341. z-index: 100;
  1342. text-align: center;
  1343. table-layout: fixed;
  1344. word-wrap: break-word;
  1345. }
  1346. .step-bar-w li.complete .title,
  1347. .step-bar-w li.active .title {
  1348. color: #2b3d53;
  1349. }
  1350. .step-bar-w li .iconfont {
  1351. color: #37a1ff;
  1352. font-size: 28px !important;
  1353. }
  1354. .step-bar-w li .iconfont {
  1355. color: #ced1d6;
  1356. font-size: 28px !important;
  1357. }
  1358. .step-bar-w li.active .iconfont,
  1359. .step-bar-w li.complete .iconfont,
  1360. .step-bar-w li.active .step .iconfont,
  1361. .step-bar-w li.complete .step .iconfont {
  1362. color: #37a1ff;
  1363. }
  1364. /*pagination - 1
  1365. -------------------------------------------------------*/
  1366. .page-full {
  1367. height: 30px;
  1368. line-height: 30px;
  1369. color: #555;
  1370. }
  1371. .page-full a {
  1372. display: inline-block;
  1373. min-width: 20px;
  1374. _width: 20px;
  1375. height: 28px;
  1376. padding: 0 4px;
  1377. line-height: 28px;
  1378. margin-right: 10px;
  1379. text-align: center;
  1380. border: 1px solid #cacaca;
  1381. background-color: #f2f2f2;
  1382. color: #717171;
  1383. -webkit-border-radius: 3px;
  1384. -moz-border-radius: 3px;
  1385. border-radius: 3px;
  1386. vertical-align: middle;
  1387. *display: inline;
  1388. *zoom: 1;
  1389. }
  1390. .page-full a:link,
  1391. .page-full a:visited {
  1392. color: #717171;
  1393. }
  1394. .page-full a:hover {
  1395. color: #717171;
  1396. border-color: #a9a9a9;
  1397. }
  1398. .page-full a.page-current {
  1399. border-color: #009839;
  1400. background-color: #4db944;
  1401. color: #f2f2f2;
  1402. cursor: default;
  1403. }
  1404. .page-full a.page-current:link,
  1405. .page-full a.page-current:visited {
  1406. color: #f2f2f2;
  1407. }
  1408. .page-full a.page-current:hover {
  1409. color: #f2f2f2;
  1410. border-color: #009839;
  1411. }
  1412. .page-full a.disabled,
  1413. .page-full a.disabled:hover {
  1414. border-color: #cbcbcb;
  1415. background-color: #e2e2e2;
  1416. cursor: default;
  1417. }
  1418. .page-full a.page-prev,
  1419. .page-full a.page-next {
  1420. font-weight: bold;
  1421. line-height: 25px;
  1422. }
  1423. .page-full span {
  1424. display: inline-block;
  1425. height: 30px;
  1426. line-height: 30px;
  1427. margin-right: 10px;
  1428. vertical-align: middle;
  1429. *display: inline;
  1430. *zoom: 1;
  1431. }
  1432. .page-full .pageto {
  1433. display: inline-block;
  1434. width: 90px;
  1435. text-align: left;
  1436. vertical-align: middle;
  1437. *display: inline;
  1438. *zoom: 1;
  1439. position: relative;
  1440. }
  1441. .page-full .pageto .input-pageto {
  1442. display: inline-block;
  1443. width: 50px;
  1444. height: 20px;
  1445. line-height: 20px;
  1446. padding: 4px 0;
  1447. border: 1px solid #ccc;
  1448. text-align: center;
  1449. background-color: #fff;
  1450. color: #555;
  1451. position: relative;
  1452. z-index: 2;
  1453. vertical-align: middle;
  1454. *display: inline;
  1455. *zoom: 1;
  1456. }
  1457. .page-full .pageto .btn-pageto {
  1458. display: inline-block;
  1459. width: 50px;
  1460. height: 30px;
  1461. margin-right: 10px;
  1462. border: 0;
  1463. text-align: center;
  1464. background-color: #4db944;
  1465. color: #fff;
  1466. cursor: pointer;
  1467. vertical-align: middle;
  1468. *display: inline;
  1469. *zoom: 1;
  1470. }
  1471. .page-full .pageto .btn-pageto-w {
  1472. position: absolute;
  1473. left: 0;
  1474. top: 0;
  1475. *top: 1px;
  1476. width: 100px;
  1477. text-align: left;
  1478. }
  1479. .page-full .pageto.pageto-focus .input-pageto {
  1480. border-color: #4db944;
  1481. }
  1482. .page-full .pageto.pageto-focus .btn-pageto-w {
  1483. left: 50px;
  1484. }
  1485. .page-full .pageto.pageto-focus .btn-pageto {
  1486. display: inline-block;
  1487. *display: inline;
  1488. *zoom: 1;
  1489. }
  1490. /*pagination - 2
  1491. -------------------------------------------------------*/
  1492. .page {
  1493. height: 30px;
  1494. line-height: 30px;
  1495. color: #555;
  1496. font-size: 0;
  1497. }
  1498. .page a {
  1499. display: inline-block;
  1500. min-width: 20px;
  1501. _width: 20px;
  1502. height: 28px;
  1503. padding: 0 4px;
  1504. line-height: 28px;
  1505. margin-right: 10px;
  1506. text-align: center;
  1507. border: 1px solid #ebebeb;
  1508. background-color: #fff;
  1509. font-size: 12px;
  1510. color: #666;
  1511. vertical-align: middle;
  1512. *display: inline;
  1513. *zoom: 1;
  1514. }
  1515. .page a:link,
  1516. .page a:visited {
  1517. color: #717171;
  1518. }
  1519. .page a:hover {
  1520. color: #18bd9c;
  1521. border-color: #18bd9c;
  1522. }
  1523. .page a.page-current {
  1524. border-color: #18bd9c;
  1525. background-color: #18bd9c;
  1526. cursor: default;
  1527. }
  1528. .page a.page-current:link,
  1529. .page a.page-current:visited {
  1530. color: #fff;
  1531. }
  1532. .page a.page-current:hover {
  1533. color: #f2f2f2;
  1534. border-color: #18bd9c;
  1535. }
  1536. .page a.disabled,
  1537. .page a.disabled:hover {
  1538. border-color: #cbcbcb;
  1539. background-color: #e2e2e2;
  1540. cursor: default;
  1541. }
  1542. .page a.page-prev,
  1543. .page a.page-next {
  1544. font-size: 26px;
  1545. line-height: 22px;
  1546. }
  1547. .page a.page-prev b,
  1548. .page a.page-next b {
  1549. font-weight: normal;
  1550. }
  1551. .page span {
  1552. display: inline-block;
  1553. margin-right: 10px;
  1554. height: 30px;
  1555. line-height: 24px;
  1556. font-size: 12px;
  1557. vertical-align: middle;
  1558. *display: inline;
  1559. *zoom: 1;
  1560. }
  1561. /*table
  1562. -------------------------------------------------------*/
  1563. .tb {
  1564. table-layout: fixed;
  1565. }
  1566. .tb th,
  1567. .tb td {
  1568. padding: 10px 5px;
  1569. text-align: center;
  1570. word-wrap: break-word;
  1571. word-break: break-all;
  1572. }
  1573. .tb th {
  1574. border-top: 1px solid #e1e1e1;
  1575. background-color: #f5f5f5;
  1576. color: #222;
  1577. }
  1578. .tb td {
  1579. border-bottom: 1px solid #dae5ec;
  1580. font-size: 12px;
  1581. }
  1582. .tb-border th,
  1583. .tb-border td {
  1584. border: 1px solid #e1e1e1;
  1585. }
  1586. /*添加表格边框*/
  1587. .tb-hover tr:hover td {
  1588. background-color: #f5f9fc;
  1589. }
  1590. /*鼠标滑过加底色*/
  1591. /* css search
  1592. -----------------------------------------------------------------------------*/
  1593. .c-ser-hold {
  1594. width: 100%;
  1595. height: 43px;
  1596. background-color: #e8e8e8;
  1597. padding: 6px 10px 0 10px;
  1598. }
  1599. .c-ser-into {
  1600. background: #fff;
  1601. height: 28px;
  1602. line-height: 28px;
  1603. border: 1px solid #e1e1e1;
  1604. border-radius: 5px;
  1605. color: #8e8e93;
  1606. padding: 0 8px;
  1607. }
  1608. .c-serdet {
  1609. display: -webkit-box;
  1610. display: box;
  1611. padding: 7px 10px 0 10px;
  1612. }
  1613. .ser-icon {
  1614. position: relative;
  1615. display: inline-block;
  1616. width: 13px;
  1617. height: 13px;
  1618. font-size: 1px;
  1619. background: none;
  1620. top: 1px;
  1621. }
  1622. .ser-icon:before,
  1623. .ser-icon:after {
  1624. content: "";
  1625. position: absolute;
  1626. left: 0;
  1627. background: transparent;
  1628. font-size: 1px;
  1629. }
  1630. .ser-icon-search:before {
  1631. left: 1px;
  1632. top: 1px;
  1633. width: 9px;
  1634. height: 9px;
  1635. border: 1px solid #8e8e93;
  1636. border-radius: 50%;
  1637. -webkit-border-radius: 50%;
  1638. -moz-border-radius: 50%;
  1639. -o-border-radius: 50%;
  1640. }
  1641. .ser-icon-search:after {
  1642. left: 9px;
  1643. top: 11px;
  1644. width: 5px;
  1645. height: 1px;
  1646. background: #8e8e93;
  1647. transform: rotate(45deg);
  1648. -webkit-transform: rotate(45deg);
  1649. -moz-transform: rotate(45deg);
  1650. -o-transform: rotate(45deg);
  1651. -ms-transform: rotate(45deg);
  1652. }
  1653. .c-ser-back {
  1654. width: 20px;
  1655. -webkit-box-flex: 0;
  1656. box-flex: 0;
  1657. overflow: hidden;
  1658. }
  1659. .c-ser-back .si-right {
  1660. display: block;
  1661. width: 12px;
  1662. height: 12px;
  1663. border: solid #a3a3a7;
  1664. border-width: 0 0 2px 2px;
  1665. -webkit-transform: rotate(45deg);
  1666. -moz-transform: rotate(45deg);
  1667. -ms-transform: rotate(45deg);
  1668. -o-transform: rotate(45deg);
  1669. transform: rotate(45deg);
  1670. margin: 7px 0 0 2px;
  1671. float: left;
  1672. }
  1673. .c-ser-main {
  1674. -webkit-box-flex: 1;
  1675. box-flex: 1;
  1676. background: #fff;
  1677. height: 28px;
  1678. line-height: 28px;
  1679. border: 1px solid #e1e1e1;
  1680. border-radius: 5px;
  1681. font-size: 15px;
  1682. color: #8e8e93;
  1683. position: relative;
  1684. padding-left: 25px;
  1685. overflow: hidden;
  1686. }
  1687. .c-ser-main i {
  1688. position: absolute;
  1689. left: 7px;
  1690. top: 7px;
  1691. }
  1692. .c-ser-input {
  1693. width: 100%;
  1694. background: #fff;
  1695. height: 22px;
  1696. line-height: 22px;
  1697. border: none;
  1698. color: #8e8e93;
  1699. border-radius: 5px;
  1700. padding: 3px 0;
  1701. }
  1702. .c-ser-btn {
  1703. margin-left: 10px;
  1704. -webkit-box-flex: 0;
  1705. box-flex: 0;
  1706. }
  1707. .c-ser-btn a {
  1708. display: block;
  1709. height: 30px;
  1710. line-height: 30px;
  1711. padding: 0 10px;
  1712. background: #3aa7ed;
  1713. color: #fff;
  1714. font-size: 14px;
  1715. border-radius: 4px;
  1716. }
  1717. .c-ser-canc {
  1718. margin-left: 10px;
  1719. -webkit-box-flex: 0;
  1720. box-flex: 0;
  1721. }
  1722. .c-ser-canc a {
  1723. display: block;
  1724. height: 30px;
  1725. line-height: 30px;
  1726. padding: 0 5px;
  1727. }
  1728. .c-ser-main .input-clear {
  1729. position: absolute;
  1730. right: 6px;
  1731. top: 6px;
  1732. background: #7e7e7e;
  1733. border-radius: 50%;
  1734. width: 16px;
  1735. height: 16px;
  1736. text-align: center;
  1737. }
  1738. .c-ser-main .input-clear .close {
  1739. position: relative;
  1740. display: inline-block;
  1741. width: 10px;
  1742. height: 10px;
  1743. overflow: hidden;
  1744. top: -7px;
  1745. }
  1746. .c-ser-main .input-clear .close::before,
  1747. .c-ser-main .input-clear .close::after {
  1748. content: '';
  1749. position: absolute;
  1750. height: 2px;
  1751. width: 100%;
  1752. top: 50%;
  1753. left: 0px;
  1754. margin-top: -1px;
  1755. background: #fff;
  1756. border-radius: 6px;
  1757. }
  1758. .c-ser-main .input-clear .close::before {
  1759. -webkit-transform: rotate(45deg);
  1760. -moz-transform: rotate(45deg);
  1761. -ms-transform: rotate(45deg);
  1762. -o-transform: rotate(45deg);
  1763. transform: rotate(45deg);
  1764. }
  1765. .c-ser-main .input-clear .close::after {
  1766. -webkit-transform: rotate(-45deg);
  1767. -moz-transform: rotate(-45deg);
  1768. -ms-transform: rotate(-45deg);
  1769. -o-transform: rotate(-45deg);
  1770. transform: rotate(-45deg);
  1771. }
  1772. /* css c-table two
  1773. -----------------------------------------------------------------------------*/
  1774. .c-table {
  1775. width: 100%;
  1776. border-collapse: collapse
  1777. }
  1778. .c-table th {
  1779. font-weight: 700;
  1780. }
  1781. .c-table td,
  1782. .c-table th {
  1783. border-bottom: 1px solid #f1f1f1;
  1784. border-right: 1px solid #f1f1f1;
  1785. text-align: center;
  1786. padding: 10px;
  1787. }
  1788. .c-table tr td:last-child,
  1789. .c-table tr th:last-child {
  1790. border-right: 0
  1791. }
  1792. .c-table tr:last-child td {
  1793. border-bottom: 0
  1794. }
  1795. /* css getmore
  1796. -----------------------------------------------------------------------------*/
  1797. .c-get-more {
  1798. width: 100%;
  1799. }
  1800. .c-get-more a {
  1801. display: block;
  1802. text-align: center;
  1803. line-height: 35px;
  1804. font-size: 14px;
  1805. color: #909090;
  1806. }
  1807. .c-get-more a.blue {
  1808. color: #007cd9;
  1809. }
  1810. /* css nomess
  1811. -----------------------------------------------------------------------------*/
  1812. .c-nomess {
  1813. padding: 150px 15px 50px 15px;
  1814. }
  1815. .no-mess {
  1816. position: relative;
  1817. background: #dfdfdf;
  1818. width: 90px;
  1819. height: 90px;
  1820. border-radius: 50%;
  1821. margin: 0 auto;
  1822. }
  1823. .no-mess:after {
  1824. position: absolute;
  1825. content: "";
  1826. background: #fff;
  1827. width: 45px;
  1828. height: 45px;
  1829. top: 23px;
  1830. left: 23px;
  1831. border-radius: 3px;
  1832. }
  1833. .no-mess i {
  1834. position: relative;
  1835. display: inline-block;
  1836. }
  1837. .no-mess-ico1 {
  1838. width: 4px;
  1839. height: 9px;
  1840. background: #fff;
  1841. border: 2px solid #dfdfdf;
  1842. border-radius: 9px;
  1843. top: 16px;
  1844. left: 40px;
  1845. z-index: 110;
  1846. }
  1847. .no-mess-ico1:before,
  1848. .no-mess-ico1:after {
  1849. position: absolute;
  1850. content: "";
  1851. width: 4px;
  1852. height: 9px;
  1853. background: #fff;
  1854. border: 2px solid #dfdfdf;
  1855. border-radius: 9px;
  1856. top: -2px;
  1857. left: -13px;
  1858. z-index: 111;
  1859. }
  1860. .no-mess-ico1:before {
  1861. top: -2px;
  1862. left: 10px;
  1863. }
  1864. .no-mess-ico2 {
  1865. width: 32px;
  1866. height: 5px;
  1867. background: #dfdfdf;
  1868. border-radius: 9px;
  1869. top: 28px;
  1870. left: 19px;
  1871. z-index: 120;
  1872. }
  1873. .no-mess-ico2:before,
  1874. .no-mess-ico2:after {
  1875. position: absolute;
  1876. content: "";
  1877. width: 23px;
  1878. height: 5px;
  1879. background: #dfdfdf;
  1880. border-radius: 9px;
  1881. top: 10px;
  1882. left: 0px;
  1883. z-index: 111;
  1884. }
  1885. .no-mess-ico2:after {
  1886. width: 18px;
  1887. height: 5px;
  1888. background: #dfdfdf;
  1889. border-radius: 9px;
  1890. top: 20px;
  1891. left: 0px;
  1892. z-index: 111;
  1893. }
  1894. .no-mess-ico3 {
  1895. width: 16px;
  1896. height: 4px;
  1897. background: #fff;
  1898. border: 2px solid #dfdfdf;
  1899. border-radius: 9px;
  1900. top: 54px;
  1901. left: 15px;
  1902. transform: rotate(45deg);
  1903. -webkit-transform: rotate(45deg);
  1904. -moz-transform: rotate(45deg);
  1905. -ms-transform: rotate(45deg);
  1906. z-index: 130;
  1907. }
  1908. .no-mess-ico3:before {
  1909. position: absolute;
  1910. content: "";
  1911. width: 4px;
  1912. height: 6px;
  1913. background: #fff;
  1914. border-radius: 9px 9px 0 0;
  1915. border: 2px solid #dfdfdf;
  1916. border-bottom: none;
  1917. top: -8px;
  1918. left: 4px;
  1919. z-index: 131;
  1920. }
  1921. .no-mess-ico3:after {
  1922. position: absolute;
  1923. content: "";
  1924. width: 4px;
  1925. height: 6px;
  1926. background: #fff;
  1927. border-radius: 9px 9px 0 0;
  1928. border: 2px solid #dfdfdf;
  1929. border-bottom: none;
  1930. top: 4px;
  1931. left: 4px;
  1932. z-index: 131;
  1933. transform: rotate(180deg);
  1934. -webkit-transform: rotate(180deg);
  1935. -moz-transform: rotate(180deg);
  1936. -ms-transform: rotate(180deg);
  1937. }
  1938. .c-nomess p {
  1939. text-align: center;
  1940. font-size: 14px;
  1941. color: #666;
  1942. line-height: 20px;
  1943. padding: 5px 0;
  1944. }
  1945. .c-nomess a {
  1946. color: #007cd9;
  1947. margin-left: 2px;
  1948. }
  1949. @media (orientation: landscape) {
  1950. .c-nomess {
  1951. padding: 50px 15px 20px 15px;
  1952. }
  1953. }
  1954. /* css visit time
  1955. -----------------------------------------------------------------------------*/
  1956. .c-mform-time {
  1957. display: box;
  1958. display: -webkit-box;
  1959. border-top: 1px solid #f2f2f2;
  1960. }
  1961. .c-mform-time dt {
  1962. display: block;
  1963. height: 35px;
  1964. line-height: 15px;
  1965. text-align: center;
  1966. box-sizing: border-box;
  1967. -webkit-box-sizing: border-box;
  1968. -moz-box-sizing: border-box;
  1969. -ms-box-sizing: border-box;
  1970. display: box;
  1971. display: -webkit-box;
  1972. -webkit-box-orient: vertical;
  1973. -webkit-box-pack: center;
  1974. border-right: 1px solid #f2f2f2;
  1975. }
  1976. .c-mform-time dd {
  1977. display: block;
  1978. text-align: center;
  1979. box-sizing: border-box;
  1980. -webkit-box-sizing: border-box;
  1981. -moz-box-sizing: border-box;
  1982. -ms-box-sizing: border-box;
  1983. }
  1984. .c-mform-time dd label {
  1985. display: block;
  1986. width: 100%;
  1987. height: 50px;
  1988. display: box;
  1989. display: -webkit-box;
  1990. -webkit-box-orient: vertical;
  1991. -webkit-box-pack: center;
  1992. border-top: 1px solid #f2f2f2;
  1993. border-right: 1px solid #f2f2f2;
  1994. box-sizing: border-box;
  1995. -webkit-box-sizing: border-box;
  1996. -moz-box-sizing: border-box;
  1997. -ms-box-sizing: border-box;
  1998. }
  1999. .c-mform-time .mtleft {
  2000. display: block;
  2001. box-flex: 0;
  2002. -webkit-box-flex: 0;
  2003. -moz-box-flex: 0;
  2004. width: 40px;
  2005. }
  2006. .c-mform-time .mtleft .go-left i {
  2007. margin: 0 0 0 15px;
  2008. -webkit-transform: rotate(-135deg);
  2009. -moz-transform: rotate(-135deg);
  2010. -ms-transform: rotate(-135deg);
  2011. -o-transform: rotate(-135deg);
  2012. transform: rotate(-135deg);
  2013. }
  2014. .c-mform-time .mtright .go-right i {
  2015. margin: 0 0 0 13px;
  2016. }
  2017. .c-mform-time .mtmid {
  2018. box-flex: 1;
  2019. -webkit-box-flex: 1;
  2020. -moz-box-flex: 1;
  2021. overflow: hidden;
  2022. position: relative;
  2023. }
  2024. .c-mform-time .mtmid dl {
  2025. display: block;
  2026. width: 60px;
  2027. float: left;
  2028. }
  2029. .c-mform-time .mtright {
  2030. box-flex: 0;
  2031. -webkit-box-flex: 0;
  2032. -moz-box-flex: 0;
  2033. width: 40px;
  2034. }
  2035. .c-mform-time .mtmid a.mt-open {
  2036. display: inline-block;
  2037. width: 45px;
  2038. height: 26px;
  2039. line-height: 26px;
  2040. text-align: center;
  2041. background-color: #4dcd70;
  2042. color: #fff;
  2043. border: 1px solid #4dcd70;
  2044. border-radius: 6px;
  2045. font-size: 15px;
  2046. }
  2047. .c-mform-time .mtmid a.mt-full {
  2048. display: inline-block;
  2049. width: 45px;
  2050. height: 26px;
  2051. line-height: 26px;
  2052. text-align: center;
  2053. background-color: #fff;
  2054. color: #ff8100;
  2055. border: 1px solid #e1e1e1;
  2056. border-radius: 6px;
  2057. font-size: 15px;
  2058. }
  2059. .h45 {
  2060. height: 45px;
  2061. }
  2062. .demo-comtop {
  2063. width: 100%;
  2064. height: 45px;
  2065. line-height: 44px;
  2066. background: #fff;
  2067. color: #333;
  2068. text-align: center;
  2069. font-size: 16px;
  2070. padding-left: 45px;
  2071. padding-right: 45px;
  2072. position: fixed;
  2073. z-index: 9999;
  2074. box-sizing: border-box;
  2075. -webkit-box-sizing: border-box;
  2076. -moz-box-sizing: border-box;
  2077. -ms-box-sizing: border-box;
  2078. border-bottom: 1px solid #e1e1e1;
  2079. }
  2080. .demo-comtop .mui-action-back {
  2081. display: block;
  2082. width: 45px;
  2083. height: 45px;
  2084. position: absolute;
  2085. left: 0;
  2086. top: 0;
  2087. }
  2088. .demo-comtop .mui-action-back:before {
  2089. content: '';
  2090. display: block;
  2091. width: 12px;
  2092. height: 12px;
  2093. border: solid #17b3ec;
  2094. border-width: 1px 1px 0 0;
  2095. transform: rotate(-135deg);
  2096. -webkit-transform: rotate(-135deg);
  2097. -moz-transform: rotate(-135deg);
  2098. -ms-transform: rotate(-135deg);
  2099. position: absolute;
  2100. left: 18px;
  2101. top: 16px;
  2102. }
  2103. .demo-comtop h1 {
  2104. max-width: 100%;
  2105. overflow: hidden;
  2106. white-space: nowrap;
  2107. text-overflow: ellipsis;
  2108. color: #17b3ec;
  2109. position: relative;
  2110. }
  2111. .header-tabs {
  2112. margin: 5px 30px 0;
  2113. }
  2114. .header-tabs .c-lab-les {
  2115. border-radius: 5px;
  2116. }
  2117. .header-tabs .c-lab-les li {
  2118. width: 0;
  2119. }
  2120. .header-menu-bg,
  2121. .header-title-downbg {
  2122. position: fixed;
  2123. top: 0;
  2124. left: 0;
  2125. right: 0;
  2126. bottom: 0;
  2127. background-color: rgba(0, 0, 0, 0.3);
  2128. }
  2129. .header-menu,
  2130. .header-people,
  2131. .header-group,
  2132. .header-link {
  2133. position: absolute;
  2134. }
  2135. .header-menu,
  2136. .header-people,
  2137. .header-group {
  2138. right: 10px;
  2139. top: 50%;
  2140. margin-top: -9px;
  2141. }
  2142. .header-menu a.menu img {
  2143. width: 20px;
  2144. height: 17px;
  2145. }
  2146. .header-people a.people img {
  2147. width: 20px;
  2148. height: 20px;
  2149. }
  2150. .header-group a.group img {
  2151. width: 27px;
  2152. height: 20px;
  2153. }
  2154. .header-tipBox {
  2155. width: 100px;
  2156. position: absolute;
  2157. right: 5px;
  2158. top: 29px;
  2159. }
  2160. .header-tipBox .bd {
  2161. background: #fff;
  2162. border-color: #e1e1e1;
  2163. }
  2164. .header-tipBox .hd .ui-arrow {
  2165. left: auto;
  2166. right: 10px;
  2167. }
  2168. .header-a-list li {
  2169. border-bottom: 1px solid #e1e1e1;
  2170. line-height: 36px;
  2171. }
  2172. .header-a-list li:last-child {
  2173. border-bottom: 0;
  2174. }
  2175. .header-link {
  2176. top: 0px;
  2177. right: 10px;
  2178. }
  2179. .header-link a.link {
  2180. color: #17b3ec;
  2181. }
  2182. .header-title-down .ui-arrow {
  2183. display: inline-block;
  2184. top: 2px;
  2185. margin-left: 2px;
  2186. }
  2187. .header-title-downbox {
  2188. left: 50%;
  2189. margin-left: -75px;
  2190. top: 28px;
  2191. }
  2192. .header-title-downbox .tipBox {
  2193. width: 150px;
  2194. }
  2195. .header-title-downbox .tipBox .bd {
  2196. background-color: #fff;
  2197. border-color: #e1e1e1;
  2198. }
  2199. .header-title-downbox .tipBox .hd .ui-arrow {
  2200. left: 50%;
  2201. margin-left: -5px;
  2202. }
  2203. .header-title-downbox .tipBox .bd li a {
  2204. color: #333;
  2205. line-height: 34px;
  2206. display: block;
  2207. text-align: left;
  2208. border-bottom: 1px solid #e1e1e1;
  2209. padding-left: 5px;
  2210. }
  2211. .header-title-downbox .tipBox .bd li:last-child a {
  2212. border-bottom: 0;
  2213. }
  2214. .header-title-downbox .tipBox .bd li a img {
  2215. width: 15px;
  2216. height: 15px;
  2217. vertical-align: middle;
  2218. margin-right: 5px;
  2219. }