weui.css 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  1. /*!
  2. * WeUI v0.4.2 (https://github.com/weui/weui)
  3. * Copyright 2016 Tencent, Inc.
  4. * Licensed under the MIT license
  5. */
  6. html {
  7. -ms-text-size-adjust: 100%;
  8. -webkit-text-size-adjust: 100%;
  9. }
  10. body {
  11. line-height: 1.6;
  12. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  13. }
  14. * {
  15. margin: 0;
  16. padding: 0;
  17. }
  18. a img {
  19. border: 0;
  20. }
  21. a {
  22. text-decoration: none;
  23. }
  24. @font-face {
  25. font-weight: normal;
  26. font-style: normal;
  27. font-family: "weui";
  28. src: url('data:application/octet-stream;base64,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') format('truetype');
  29. }
  30. [class^="weui_icon_"]:before,
  31. [class*=" weui_icon_"]:before {
  32. font-family: "weui";
  33. font-style: normal;
  34. font-weight: normal;
  35. speak: none;
  36. display: inline-block;
  37. vertical-align: middle;
  38. text-decoration: inherit;
  39. width: 1em;
  40. margin-right: .2em;
  41. text-align: center;
  42. /* opacity: .8; */
  43. /* For safety - reset parent styles, that can break glyph codes*/
  44. font-variant: normal;
  45. text-transform: none;
  46. /* fix buttons height, for twitter bootstrap */
  47. line-height: 1em;
  48. /* Animation center compensation - margins should be symmetric */
  49. /* remove if not needed */
  50. margin-left: .2em;
  51. /* you can be more comfortable with increased icons size */
  52. /* font-size: 120%; */
  53. /* Uncomment for 3D effect */
  54. /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  55. }
  56. .weui_icon_circle:before {
  57. content: "\EA01";
  58. }
  59. /* '' */
  60. .weui_icon_download:before {
  61. content: "\EA02";
  62. }
  63. /* '' */
  64. .weui_icon_info:before {
  65. content: "\EA03";
  66. }
  67. /* '' */
  68. .weui_icon_safe_success:before {
  69. content: "\EA04";
  70. }
  71. /* '' */
  72. .weui_icon_safe_warn:before {
  73. content: "\EA05";
  74. }
  75. /* '' */
  76. .weui_icon_success:before {
  77. content: "\EA06";
  78. }
  79. /* '' */
  80. .weui_icon_success_circle:before {
  81. content: "\EA07";
  82. }
  83. /* '' */
  84. .weui_icon_success_no_circle:before {
  85. content: "\EA08";
  86. }
  87. /* '' */
  88. .weui_icon_waiting:before {
  89. content: "\EA09";
  90. }
  91. /* '' */
  92. .weui_icon_waiting_circle:before {
  93. content: "\EA0A";
  94. }
  95. /* '' */
  96. .weui_icon_warn:before {
  97. content: "\EA0B";
  98. }
  99. /* '' */
  100. .weui_icon_info_circle:before {
  101. content: "\EA0C";
  102. }
  103. /* '' */
  104. .weui_icon_cancel:before {
  105. content: "\EA0D";
  106. }
  107. /* '' */
  108. .weui_icon_search:before {
  109. content: "\EA0E";
  110. }
  111. /* '' */
  112. .weui_icon_clear:before {
  113. content: "\EA0F";
  114. }
  115. /* '' */
  116. [class^="weui_icon_"]:before,
  117. [class*=" weui_icon_"]:before {
  118. margin: 0;
  119. }
  120. .weui_icon_success:before {
  121. font-size: 23px;
  122. color: #09BB07;
  123. }
  124. .weui_icon_waiting:before {
  125. font-size: 23px;
  126. color: #10AEFF;
  127. }
  128. .weui_icon_warn:before {
  129. font-size: 23px;
  130. color: #F43530;
  131. }
  132. .weui_icon_info:before {
  133. font-size: 23px;
  134. color: #10AEFF;
  135. }
  136. .weui_icon_success_circle:before {
  137. font-size: 23px;
  138. color: #09BB07;
  139. }
  140. .weui_icon_success_no_circle:before {
  141. font-size: 23px;
  142. color: #09BB07;
  143. }
  144. .weui_icon_waiting_circle:before {
  145. font-size: 23px;
  146. color: #10AEFF;
  147. }
  148. .weui_icon_circle:before {
  149. font-size: 23px;
  150. color: #C9C9C9;
  151. }
  152. .weui_icon_download:before {
  153. font-size: 23px;
  154. color: #09BB07;
  155. }
  156. .weui_icon_info_circle:before {
  157. font-size: 23px;
  158. color: #09BB07;
  159. }
  160. .weui_icon_safe_success:before {
  161. color: #09BB07;
  162. }
  163. .weui_icon_safe_warn:before {
  164. color: #FFBE00;
  165. }
  166. .weui_icon_cancel:before {
  167. color: #F43530;
  168. font-size: 22px;
  169. }
  170. .weui_icon_search:before {
  171. color: #B2B2B2;
  172. font-size: 14px;
  173. }
  174. .weui_icon_clear:before {
  175. color: #B2B2B2;
  176. font-size: 14px;
  177. }
  178. .weui_icon_msg:before {
  179. font-size: 104px;
  180. }
  181. .weui_icon_warn.weui_icon_msg:before {
  182. color: #F76260;
  183. }
  184. .weui_icon_safe:before {
  185. font-size: 104px;
  186. }
  187. .weui_btn.weui_btn_mini {
  188. line-height: 1.9;
  189. font-size: 14px;
  190. padding: 0 .75em;
  191. display: inline-block;
  192. }
  193. button.weui_btn,
  194. input.weui_btn {
  195. width: 100%;
  196. border-width: 0;
  197. outline: 0;
  198. -webkit-appearance: none;
  199. }
  200. button.weui_btn:focus,
  201. input.weui_btn:focus {
  202. outline: 0;
  203. }
  204. button.weui_btn_inline,
  205. input.weui_btn_inline,
  206. button.weui_btn_mini,
  207. input.weui_btn_mini {
  208. width: auto;
  209. }
  210. /*gap between btn*/
  211. .weui_btn + .weui_btn {
  212. margin-top: 15px;
  213. }
  214. .weui_btn.weui_btn_inline + .weui_btn.weui_btn_inline {
  215. margin-top: auto;
  216. margin-left: 15px;
  217. }
  218. .weui_btn_area {
  219. margin: 1.17647059em 15px 0.3em;
  220. }
  221. .weui_btn_area.weui_btn_area_inline {
  222. display: -webkit-box;
  223. display: -webkit-flex;
  224. display: -ms-flexbox;
  225. display: flex;
  226. }
  227. .weui_btn_area.weui_btn_area_inline .weui_btn {
  228. margin-top: auto;
  229. margin-right: 15px;
  230. width: 100%;
  231. -webkit-box-flex: 1;
  232. -webkit-flex: 1;
  233. -ms-flex: 1;
  234. flex: 1;
  235. }
  236. .weui_btn_area.weui_btn_area_inline .weui_btn:last-child {
  237. margin-right: 0;
  238. }
  239. .weui_btn {
  240. position: relative;
  241. display: block;
  242. margin-left: auto;
  243. margin-right: auto;
  244. padding-left: 14px;
  245. padding-right: 14px;
  246. box-sizing: border-box;
  247. font-size: 18px;
  248. text-align: center;
  249. text-decoration: none;
  250. color: #FFFFFF;
  251. line-height: 2.33333333;
  252. border-radius: 5px;
  253. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  254. overflow: hidden;
  255. }
  256. .weui_btn:after {
  257. content: " ";
  258. width: 200%;
  259. height: 200%;
  260. position: absolute;
  261. top: 0;
  262. left: 0;
  263. border: 1px solid rgba(0, 0, 0, 0.2);
  264. -webkit-transform: scale(0.5);
  265. transform: scale(0.5);
  266. -webkit-transform-origin: 0 0;
  267. transform-origin: 0 0;
  268. box-sizing: border-box;
  269. border-radius: 10px;
  270. }
  271. .weui_btn.weui_btn_inline {
  272. display: inline-block;
  273. }
  274. .weui_btn_default {
  275. background-color: #F7F7F7;
  276. color: #454545;
  277. }
  278. .weui_btn_default:not(.weui_btn_disabled):visited {
  279. color: #454545;
  280. }
  281. .weui_btn_default:not(.weui_btn_disabled):active {
  282. color: #A1A1A1;
  283. background-color: #DEDEDE;
  284. }
  285. .weui_btn_primary {
  286. background-color: #04BE02;
  287. }
  288. .weui_btn_primary:not(.weui_btn_disabled):visited {
  289. color: #FFFFFF;
  290. }
  291. .weui_btn_primary:not(.weui_btn_disabled):active {
  292. color: rgba(255, 255, 255, 0.4);
  293. background-color: #039702;
  294. }
  295. .weui_btn_warn {
  296. background-color: #EF4F4F;
  297. }
  298. .weui_btn_warn:not(.weui_btn_disabled):visited {
  299. color: #FFFFFF;
  300. }
  301. .weui_btn_warn:not(.weui_btn_disabled):active {
  302. color: rgba(255, 255, 255, 0.4);
  303. background-color: #C13E3E;
  304. }
  305. .weui_btn_disabled {
  306. color: rgba(255, 255, 255, 0.6);
  307. }
  308. .weui_btn_disabled.weui_btn_default {
  309. color: #C9C9C9;
  310. }
  311. .weui_btn_plain_primary {
  312. color: #04BE02;
  313. border: 1px solid #04BE02;
  314. }
  315. button.weui_btn_plain_primary,
  316. input.weui_btn_plain_primary {
  317. border-width: 1px;
  318. background-color: transparent;
  319. }
  320. .weui_btn_plain_primary:active {
  321. border-color: #039702;
  322. }
  323. .weui_btn_plain_primary:after {
  324. border-width: 0;
  325. }
  326. .weui_btn_plain_default {
  327. color: #5A5A5A;
  328. border: 1px solid #5A5A5A;
  329. }
  330. button.weui_btn_plain_default,
  331. input.weui_btn_plain_default {
  332. border-width: 1px;
  333. background-color: transparent;
  334. }
  335. .weui_btn_plain_default:after {
  336. border-width: 0;
  337. }
  338. .weui_cell {
  339. position: relative;
  340. }
  341. .weui_cell:before {
  342. content: " ";
  343. position: absolute;
  344. left: 0;
  345. top: 0;
  346. width: 100%;
  347. height: 1px;
  348. border-top: 1px solid #D9D9D9;
  349. color: #D9D9D9;
  350. -webkit-transform-origin: 0 0;
  351. transform-origin: 0 0;
  352. -webkit-transform: scaleY(0.5);
  353. transform: scaleY(0.5);
  354. left: 15px;
  355. }
  356. .weui_cell:first-child:before {
  357. display: none;
  358. }
  359. .weui_cells {
  360. margin-top: 1.17647059em;
  361. background-color: #FFFFFF;
  362. line-height: 1.41176471;
  363. font-size: 17px;
  364. overflow: hidden;
  365. position: relative;
  366. }
  367. .weui_cells:before {
  368. content: " ";
  369. position: absolute;
  370. left: 0;
  371. top: 0;
  372. width: 100%;
  373. height: 1px;
  374. border-top: 1px solid #D9D9D9;
  375. color: #D9D9D9;
  376. -webkit-transform-origin: 0 0;
  377. transform-origin: 0 0;
  378. -webkit-transform: scaleY(0.5);
  379. transform: scaleY(0.5);
  380. }
  381. .weui_cells:after {
  382. content: " ";
  383. position: absolute;
  384. left: 0;
  385. bottom: 0;
  386. width: 100%;
  387. height: 1px;
  388. border-bottom: 1px solid #D9D9D9;
  389. color: #D9D9D9;
  390. -webkit-transform-origin: 0 100%;
  391. transform-origin: 0 100%;
  392. -webkit-transform: scaleY(0.5);
  393. transform: scaleY(0.5);
  394. }
  395. .weui_cells_title {
  396. margin-top: .77em;
  397. margin-bottom: .3em;
  398. padding-left: 15px;
  399. padding-right: 15px;
  400. color: #888;
  401. font-size: 14px;
  402. }
  403. .weui_cells_title + .weui_cells {
  404. margin-top: 0;
  405. }
  406. .weui_cells_tips {
  407. margin-top: .3em;
  408. color: #888;
  409. padding-left: 15px;
  410. padding-right: 15px;
  411. font-size: 14px;
  412. }
  413. .weui_cell {
  414. padding: 10px 15px;
  415. position: relative;
  416. display: -webkit-box;
  417. display: -webkit-flex;
  418. display: -ms-flexbox;
  419. display: flex;
  420. -webkit-box-align: center;
  421. -webkit-align-items: center;
  422. -ms-flex-align: center;
  423. align-items: center;
  424. }
  425. .weui_cell_ft {
  426. text-align: right;
  427. color: #888;
  428. }
  429. .weui_cell_primary {
  430. -webkit-box-flex: 1;
  431. -webkit-flex: 1;
  432. -ms-flex: 1;
  433. flex: 1;
  434. }
  435. .weui_cells_access .weui_cell:not(.no_access) {
  436. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  437. }
  438. .weui_cells_access .weui_cell:not(.no_access):active {
  439. background-color: #ECECEC;
  440. }
  441. .weui_cells_access a.weui_cell {
  442. color: inherit;
  443. }
  444. .weui_cells_access .weui_cell_ft:after {
  445. content: " ";
  446. display: inline-block;
  447. -webkit-transform: rotate(45deg);
  448. transform: rotate(45deg);
  449. height: 6px;
  450. width: 6px;
  451. border-width: 2px 2px 0 0;
  452. border-color: #C8C8CD;
  453. border-style: solid;
  454. position: relative;
  455. top: -2px;
  456. top: -1px;
  457. margin-left: .3em;
  458. }
  459. .weui_check_label {
  460. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  461. }
  462. .weui_check {
  463. position: absolute;
  464. left: -9999em;
  465. }
  466. .weui_cells_radio .weui_cell_ft {
  467. padding-left: 0.35em;
  468. }
  469. .weui_cells_radio .weui_cell:active {
  470. background-color: #ECECEC;
  471. }
  472. .weui_cells_radio .weui_check:checked + .weui_icon_checked:before {
  473. display: block;
  474. content: '\EA08';
  475. color: #09BB07;
  476. font-size: 16px;
  477. }
  478. .weui_cells_checkbox .weui_cell_hd {
  479. padding-right: 0.35em;
  480. }
  481. .weui_cells_checkbox .weui_cell:active {
  482. background-color: #ECECEC;
  483. }
  484. .weui_cells_checkbox .weui_icon_checked:before {
  485. content: '\EA01';
  486. color: #C9C9C9;
  487. font-size: 23px;
  488. display: block;
  489. }
  490. .weui_cells_checkbox .weui_check:checked + .weui_icon_checked:before {
  491. content: '\EA06';
  492. color: #09BB07;
  493. }
  494. .weui_label {
  495. display: block;
  496. width: 105px;
  497. word-wrap: break-word;
  498. word-break: break-all;
  499. }
  500. .weui_input {
  501. width: 100%;
  502. border: 0;
  503. outline: 0;
  504. -webkit-appearance: none;
  505. background-color: transparent;
  506. font-size: inherit;
  507. color: inherit;
  508. height: 1.41176471em;
  509. line-height: 1.41176471;
  510. }
  511. .weui_input::-webkit-outer-spin-button,
  512. .weui_input::-webkit-inner-spin-button {
  513. -webkit-appearance: none;
  514. margin: 0;
  515. }
  516. .weui_textarea {
  517. display: block;
  518. border: 0;
  519. resize: none;
  520. width: 100%;
  521. color: inherit;
  522. font-size: 1em;
  523. line-height: inherit;
  524. outline: 0;
  525. }
  526. .weui_textarea_counter {
  527. color: #B2B2B2;
  528. text-align: right;
  529. }
  530. .weui_cell_warn .weui_textarea_counter {
  531. color: #E64340;
  532. }
  533. .weui_toptips {
  534. display: none;
  535. position: fixed;
  536. -webkit-transform: translateZ(0);
  537. width: 100%;
  538. top: 0;
  539. line-height: 2.3;
  540. font-size: 14px;
  541. text-align: center;
  542. color: #FFF;
  543. z-index: 2;
  544. }
  545. .weui_toptips.weui_warn {
  546. background-color: #E64340;
  547. }
  548. .weui_cells_form .weui_cell_warn {
  549. color: #E64340;
  550. }
  551. .weui_cells_form .weui_cell_warn .weui_icon_warn {
  552. display: inline-block;
  553. }
  554. .weui_cells_form .weui_cell_ft {
  555. font-size: 0;
  556. }
  557. .weui_cells_form .weui_icon_warn {
  558. display: none;
  559. }
  560. .weui_cells_form input,
  561. .weui_cells_form textarea,
  562. .weui_cells_form label[for] {
  563. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  564. }
  565. .weui_cell_select {
  566. padding: 0;
  567. }
  568. .weui_cell_select .weui_select {
  569. padding-right: 30px;
  570. }
  571. .weui_cell_select .weui_cell_bd:after {
  572. content: " ";
  573. display: inline-block;
  574. -webkit-transform: rotate(45deg);
  575. transform: rotate(45deg);
  576. height: 6px;
  577. width: 6px;
  578. border-width: 2px 2px 0 0;
  579. border-color: #C8C8CD;
  580. border-style: solid;
  581. position: relative;
  582. top: -2px;
  583. position: absolute;
  584. top: 50%;
  585. right: 15px;
  586. margin-top: -3px;
  587. }
  588. .weui_select {
  589. -webkit-appearance: none;
  590. border: 0;
  591. outline: 0;
  592. background-color: transparent;
  593. width: 100%;
  594. font-size: inherit;
  595. height: 44px;
  596. line-height: 44px;
  597. position: relative;
  598. z-index: 1;
  599. padding-left: 15px;
  600. }
  601. .weui_select_before {
  602. padding-right: 15px;
  603. }
  604. .weui_select_before .weui_select {
  605. width: 105px;
  606. box-sizing: border-box;
  607. }
  608. .weui_select_before .weui_cell_hd {
  609. position: relative;
  610. }
  611. .weui_select_before .weui_cell_hd:after {
  612. content: " ";
  613. position: absolute;
  614. right: 0;
  615. top: 0;
  616. width: 1px;
  617. height: 100%;
  618. border-right: 1px solid #D9D9D9;
  619. color: #D9D9D9;
  620. -webkit-transform-origin: 100% 0;
  621. transform-origin: 100% 0;
  622. -webkit-transform: scaleX(0.5);
  623. transform: scaleX(0.5);
  624. }
  625. .weui_select_before .weui_cell_hd:before {
  626. content: " ";
  627. display: inline-block;
  628. -webkit-transform: rotate(45deg);
  629. transform: rotate(45deg);
  630. height: 6px;
  631. width: 6px;
  632. border-width: 2px 2px 0 0;
  633. border-color: #C8C8CD;
  634. border-style: solid;
  635. position: relative;
  636. top: -2px;
  637. position: absolute;
  638. top: 50%;
  639. right: 15px;
  640. margin-top: -3px;
  641. }
  642. .weui_select_before .weui_cell_bd {
  643. padding-left: 15px;
  644. }
  645. .weui_select_before .weui_cell_bd:after {
  646. display: none;
  647. }
  648. .weui_select_after {
  649. padding-left: 15px;
  650. }
  651. .weui_select_after .weui_select {
  652. padding-left: 0;
  653. }
  654. .weui_vcode {
  655. padding-top: 0;
  656. padding-right: 0;
  657. padding-bottom: 0;
  658. }
  659. .weui_vcode .weui_cell_ft img {
  660. margin-left: 5px;
  661. height: 44px;
  662. vertical-align: middle;
  663. }
  664. .weui_cell_switch {
  665. padding-top: 6px;
  666. padding-bottom: 6px;
  667. }
  668. .weui_switch {
  669. -webkit-appearance: none;
  670. -moz-appearance: none;
  671. appearance: none;
  672. position: relative;
  673. width: 52px;
  674. height: 32px;
  675. border: 1px solid #DFDFDF;
  676. outline: 0;
  677. border-radius: 16px;
  678. box-sizing: border-box;
  679. background: #DFDFDF;
  680. }
  681. .weui_switch:before {
  682. content: " ";
  683. position: absolute;
  684. top: 0;
  685. left: 0;
  686. width: 50px;
  687. height: 30px;
  688. border-radius: 15px;
  689. background-color: #FDFDFD;
  690. -webkit-transition: -webkit-transform .3s;
  691. transition: -webkit-transform .3s;
  692. transition: transform .3s;
  693. transition: transform .3s, -webkit-transform .3s;
  694. }
  695. .weui_switch:after {
  696. content: " ";
  697. position: absolute;
  698. top: 0;
  699. left: 0;
  700. width: 30px;
  701. height: 30px;
  702. border-radius: 15px;
  703. background-color: #FFFFFF;
  704. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  705. -webkit-transition: -webkit-transform .3s;
  706. transition: -webkit-transform .3s;
  707. transition: transform .3s;
  708. transition: transform .3s, -webkit-transform .3s;
  709. }
  710. .weui_switch:checked {
  711. border-color: #04BE02;
  712. background-color: #04BE02;
  713. }
  714. .weui_switch:checked:before {
  715. -webkit-transform: scale(0);
  716. transform: scale(0);
  717. }
  718. .weui_switch:checked:after {
  719. -webkit-transform: translateX(20px);
  720. transform: translateX(20px);
  721. }
  722. .weui_uploader_hd {
  723. padding-top: 0;
  724. padding-right: 0;
  725. padding-left: 0;
  726. }
  727. .weui_uploader_hd .weui_cell_ft {
  728. font-size: 1em;
  729. }
  730. .weui_uploader_bd {
  731. margin-bottom: -4px;
  732. margin-right: -9px;
  733. overflow: hidden;
  734. }
  735. .weui_uploader_files {
  736. list-style: none;
  737. }
  738. .weui_uploader_file {
  739. float: left;
  740. margin-right: 9px;
  741. margin-bottom: 9px;
  742. width: 79px;
  743. height: 79px;
  744. background: no-repeat center center;
  745. background-size: cover;
  746. }
  747. .weui_uploader_status {
  748. position: relative;
  749. }
  750. .weui_uploader_status:before {
  751. content: " ";
  752. position: absolute;
  753. top: 0;
  754. right: 0;
  755. bottom: 0;
  756. left: 0;
  757. background-color: rgba(0, 0, 0, 0.5);
  758. }
  759. .weui_uploader_status .weui_uploader_status_content {
  760. position: absolute;
  761. top: 50%;
  762. left: 50%;
  763. -webkit-transform: translate(-50%, -50%);
  764. transform: translate(-50%, -50%);
  765. color: #FFFFFF;
  766. }
  767. .weui_uploader_status .weui_icon_warn {
  768. display: block;
  769. }
  770. .weui_uploader_input_wrp {
  771. float: left;
  772. position: relative;
  773. margin-right: 9px;
  774. margin-bottom: 9px;
  775. width: 77px;
  776. height: 77px;
  777. border: 1px solid #D9D9D9;
  778. }
  779. .weui_uploader_input_wrp:before,
  780. .weui_uploader_input_wrp:after {
  781. content: " ";
  782. position: absolute;
  783. top: 50%;
  784. left: 50%;
  785. -webkit-transform: translate(-50%, -50%);
  786. transform: translate(-50%, -50%);
  787. background-color: #D9D9D9;
  788. }
  789. .weui_uploader_input_wrp:before {
  790. width: 2px;
  791. height: 39.5px;
  792. }
  793. .weui_uploader_input_wrp:after {
  794. width: 39.5px;
  795. height: 2px;
  796. }
  797. .weui_uploader_input_wrp:active {
  798. border-color: #999999;
  799. }
  800. .weui_uploader_input_wrp:active:before,
  801. .weui_uploader_input_wrp:active:after {
  802. background-color: #999999;
  803. }
  804. .weui_uploader_input {
  805. position: absolute;
  806. z-index: 1;
  807. top: 0;
  808. left: 0;
  809. width: 100%;
  810. height: 100%;
  811. opacity: 0;
  812. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  813. }
  814. .weui_msg {
  815. padding-top: 36px;
  816. text-align: center;
  817. }
  818. .weui_msg .weui_icon_area {
  819. margin-bottom: 30px;
  820. }
  821. .weui_msg .weui_text_area {
  822. margin-bottom: 25px;
  823. padding: 0 20px;
  824. }
  825. .weui_msg .weui_msg_title {
  826. margin-bottom: 5px;
  827. font-weight: 400;
  828. font-size: 20px;
  829. }
  830. .weui_msg .weui_msg_desc {
  831. font-size: 14px;
  832. color: #888;
  833. }
  834. .weui_msg .weui_opr_area {
  835. margin-bottom: 25px;
  836. }
  837. .weui_msg .weui_extra_area {
  838. margin-bottom: 15px;
  839. font-size: 14px;
  840. color: #888;
  841. }
  842. .weui_msg .weui_extra_area a {
  843. color: #61749B;
  844. }
  845. @media screen and (min-height: 438px) {
  846. .weui_extra_area {
  847. position: fixed;
  848. left: 0;
  849. bottom: 0;
  850. width: 100%;
  851. text-align: center;
  852. }
  853. }
  854. .weui_article {
  855. padding: 20px 15px;
  856. font-size: 15px;
  857. }
  858. .weui_article section {
  859. margin-bottom: 1.5em;
  860. }
  861. .weui_article h1 {
  862. font-size: 17px;
  863. font-weight: 400;
  864. margin-bottom: .75em;
  865. }
  866. .weui_article h2 {
  867. font-size: 16px;
  868. font-weight: 400;
  869. margin-bottom: .3em;
  870. }
  871. .weui_article h3 {
  872. font-weight: 400;
  873. font-size: 15px;
  874. }
  875. .weui_article * {
  876. max-width: 100%;
  877. box-sizing: border-box;
  878. word-wrap: break-word;
  879. }
  880. .weui_article p {
  881. margin: 10px 0;
  882. }
  883. .weui_tabbar {
  884. display: -webkit-box;
  885. display: -webkit-flex;
  886. display: -ms-flexbox;
  887. display: flex;
  888. position: absolute;
  889. bottom: 0;
  890. width: 100%;
  891. background-color: #f7f7fa;
  892. }
  893. .weui_tabbar:before {
  894. content: " ";
  895. position: absolute;
  896. left: 0;
  897. top: 0;
  898. width: 100%;
  899. height: 1px;
  900. border-top: 1px solid #979797;
  901. color: #979797;
  902. -webkit-transform-origin: 0 0;
  903. transform-origin: 0 0;
  904. -webkit-transform: scaleY(0.5);
  905. transform: scaleY(0.5);
  906. }
  907. .weui_tabbar_item {
  908. display: block;
  909. -webkit-box-flex: 1;
  910. -webkit-flex: 1;
  911. -ms-flex: 1;
  912. flex: 1;
  913. padding: 7px 0 0;
  914. -webkit-tap-highlight-color: transparent;
  915. }
  916. .weui_tabbar_item.weui_bar_item_on .weui_tabbar_label {
  917. color: #09BB07;
  918. }
  919. .weui_tabbar_icon {
  920. margin: 0 auto;
  921. width: 24px;
  922. height: 24px;
  923. }
  924. .weui_tabbar_icon img {
  925. display: block;
  926. width: 100%;
  927. height: 100%;
  928. }
  929. .weui_tabbar_icon + .weui_tabbar_label {
  930. margin-top: 5px;
  931. }
  932. .weui_tabbar_label {
  933. text-align: center;
  934. color: #888;
  935. font-size: 12px;
  936. }
  937. .weui_navbar {
  938. display: -webkit-box;
  939. display: -webkit-flex;
  940. display: -ms-flexbox;
  941. display: flex;
  942. position: absolute;
  943. z-index: 1;
  944. top: 0;
  945. width: 100%;
  946. background-color: #fafafa;
  947. }
  948. .weui_navbar:after {
  949. content: " ";
  950. position: absolute;
  951. left: 0;
  952. bottom: 0;
  953. width: 100%;
  954. height: 1px;
  955. border-bottom: 1px solid #BCBAB6;
  956. color: #BCBAB6;
  957. -webkit-transform-origin: 0 100%;
  958. transform-origin: 0 100%;
  959. -webkit-transform: scaleY(0.5);
  960. transform: scaleY(0.5);
  961. }
  962. .weui_navbar + .weui_tab_bd {
  963. padding-top: 50px;
  964. padding-bottom: 0;
  965. }
  966. .weui_navbar_item {
  967. position: relative;
  968. display: block;
  969. -webkit-box-flex: 1;
  970. -webkit-flex: 1;
  971. -ms-flex: 1;
  972. flex: 1;
  973. padding: 13px 0;
  974. text-align: center;
  975. font-size: 15px;
  976. -webkit-tap-highlight-color: transparent;
  977. }
  978. .weui_navbar_item:active {
  979. background-color: #ededed;
  980. }
  981. .weui_navbar_item.weui_bar_item_on {
  982. background-color: #eaeaea;
  983. }
  984. .weui_navbar_item:after {
  985. content: " ";
  986. position: absolute;
  987. right: 0;
  988. top: 0;
  989. width: 1px;
  990. height: 100%;
  991. border-right: 1px solid #cccccc;
  992. color: #cccccc;
  993. -webkit-transform-origin: 100% 0;
  994. transform-origin: 100% 0;
  995. -webkit-transform: scaleX(0.5);
  996. transform: scaleX(0.5);
  997. }
  998. .weui_navbar_item:last-child:after {
  999. display: none;
  1000. }
  1001. .weui_tab {
  1002. position: relative;
  1003. height: 100%;
  1004. }
  1005. .weui_tab_bd {
  1006. box-sizing: border-box;
  1007. height: 100%;
  1008. padding-bottom: 55px;
  1009. overflow: auto;
  1010. -webkit-overflow-scrolling: touch;
  1011. }
  1012. .weui_tab_bd_item {
  1013. display: none;
  1014. }
  1015. .weui_progress {
  1016. display: -webkit-box;
  1017. display: -webkit-flex;
  1018. display: -ms-flexbox;
  1019. display: flex;
  1020. -webkit-box-align: center;
  1021. -webkit-align-items: center;
  1022. -ms-flex-align: center;
  1023. align-items: center;
  1024. }
  1025. .weui_progress_bar {
  1026. background-color: #EBEBEB;
  1027. height: 3px;
  1028. -webkit-box-flex: 1;
  1029. -webkit-flex: 1;
  1030. -ms-flex: 1;
  1031. flex: 1;
  1032. }
  1033. .weui_progress_inner_bar {
  1034. width: 0;
  1035. height: 100%;
  1036. background-color: #09BB07;
  1037. }
  1038. .weui_progress_opr {
  1039. display: block;
  1040. margin-left: 15px;
  1041. font-size: 0;
  1042. }
  1043. .weui_panel {
  1044. background-color: #FFFFFF;
  1045. margin-top: 10px;
  1046. position: relative;
  1047. overflow: hidden;
  1048. }
  1049. .weui_panel:first-child {
  1050. margin-top: 0;
  1051. }
  1052. .weui_panel:before {
  1053. content: " ";
  1054. position: absolute;
  1055. left: 0;
  1056. top: 0;
  1057. width: 100%;
  1058. height: 1px;
  1059. border-top: 1px solid #E5E5E5;
  1060. color: #E5E5E5;
  1061. -webkit-transform-origin: 0 0;
  1062. transform-origin: 0 0;
  1063. -webkit-transform: scaleY(0.5);
  1064. transform: scaleY(0.5);
  1065. }
  1066. .weui_panel:after {
  1067. content: " ";
  1068. position: absolute;
  1069. left: 0;
  1070. bottom: 0;
  1071. width: 100%;
  1072. height: 1px;
  1073. border-bottom: 1px solid #E5E5E5;
  1074. color: #E5E5E5;
  1075. -webkit-transform-origin: 0 100%;
  1076. transform-origin: 0 100%;
  1077. -webkit-transform: scaleY(0.5);
  1078. transform: scaleY(0.5);
  1079. }
  1080. .weui_panel_hd {
  1081. padding: 14px 15px 10px;
  1082. color: #999999;
  1083. font-size: 13px;
  1084. position: relative;
  1085. }
  1086. .weui_panel_hd:after {
  1087. content: " ";
  1088. position: absolute;
  1089. left: 0;
  1090. bottom: 0;
  1091. width: 100%;
  1092. height: 1px;
  1093. border-bottom: 1px solid #E5E5E5;
  1094. color: #E5E5E5;
  1095. -webkit-transform-origin: 0 100%;
  1096. transform-origin: 0 100%;
  1097. -webkit-transform: scaleY(0.5);
  1098. transform: scaleY(0.5);
  1099. left: 15px;
  1100. }
  1101. .weui_panel_ft {
  1102. padding: 10px 15px 12px;
  1103. color: #999999;
  1104. font-size: 14px;
  1105. position: relative;
  1106. }
  1107. .weui_panel_ft:before {
  1108. content: " ";
  1109. position: absolute;
  1110. left: 0;
  1111. top: 0;
  1112. width: 100%;
  1113. height: 1px;
  1114. border-top: 1px solid #E5E5E5;
  1115. color: #E5E5E5;
  1116. -webkit-transform-origin: 0 0;
  1117. transform-origin: 0 0;
  1118. -webkit-transform: scaleY(0.5);
  1119. transform: scaleY(0.5);
  1120. left: 15px;
  1121. }
  1122. .weui_panel_access .weui_panel_ft {
  1123. display: block;
  1124. color: #586C94;
  1125. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1126. }
  1127. .weui_panel_access .weui_panel_ft:active {
  1128. background-color: #ECECEC;
  1129. }
  1130. .weui_panel_access .weui_panel_ft:after {
  1131. content: " ";
  1132. display: inline-block;
  1133. -webkit-transform: rotate(45deg);
  1134. transform: rotate(45deg);
  1135. height: 6px;
  1136. width: 6px;
  1137. border-width: 2px 2px 0 0;
  1138. border-color: #C7C7CC;
  1139. border-style: solid;
  1140. position: relative;
  1141. top: -2px;
  1142. position: absolute;
  1143. right: 15px;
  1144. top: 50%;
  1145. margin-top: -4px;
  1146. }
  1147. .weui_media_box {
  1148. padding: 15px;
  1149. position: relative;
  1150. }
  1151. .weui_media_box:before {
  1152. content: " ";
  1153. position: absolute;
  1154. left: 0;
  1155. top: 0;
  1156. width: 100%;
  1157. height: 1px;
  1158. border-top: 1px solid #E5E5E5;
  1159. color: #E5E5E5;
  1160. -webkit-transform-origin: 0 0;
  1161. transform-origin: 0 0;
  1162. -webkit-transform: scaleY(0.5);
  1163. transform: scaleY(0.5);
  1164. left: 15px;
  1165. }
  1166. .weui_media_box:first-child:before {
  1167. display: none;
  1168. }
  1169. a.weui_media_box {
  1170. color: #000000;
  1171. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1172. }
  1173. a.weui_media_box:active {
  1174. background-color: #ECECEC;
  1175. }
  1176. .weui_media_box .weui_media_title {
  1177. font-weight: 400;
  1178. font-size: 17px;
  1179. width: auto;
  1180. overflow: hidden;
  1181. text-overflow: ellipsis;
  1182. white-space: nowrap;
  1183. word-wrap: normal;
  1184. word-wrap: break-word;
  1185. word-break: break-all;
  1186. }
  1187. .weui_media_box .weui_media_desc {
  1188. color: #999999;
  1189. font-size: 13px;
  1190. line-height: 1.2;
  1191. overflow: hidden;
  1192. text-overflow: ellipsis;
  1193. display: -webkit-box;
  1194. -webkit-box-orient: vertical;
  1195. -webkit-line-clamp: 2;
  1196. }
  1197. .weui_media_box.weui_media_text .weui_media_title {
  1198. margin-bottom: 8px;
  1199. }
  1200. .weui_media_box.weui_media_text .weui_media_info {
  1201. margin-top: 15px;
  1202. padding-bottom: 5px;
  1203. font-size: 13px;
  1204. color: #CECECE;
  1205. line-height: 1em;
  1206. list-style: none;
  1207. overflow: hidden;
  1208. }
  1209. .weui_media_box.weui_media_text .weui_media_info_meta {
  1210. float: left;
  1211. padding-right: 1em;
  1212. }
  1213. .weui_media_box.weui_media_text .weui_media_info_meta.weui_media_info_meta_extra {
  1214. padding-left: 1em;
  1215. border-left: 1px solid #CECECE;
  1216. }
  1217. .weui_media_box.weui_media_appmsg {
  1218. display: -webkit-box;
  1219. display: -webkit-flex;
  1220. display: -ms-flexbox;
  1221. display: flex;
  1222. -webkit-box-align: center;
  1223. -webkit-align-items: center;
  1224. -ms-flex-align: center;
  1225. align-items: center;
  1226. }
  1227. .weui_media_box.weui_media_appmsg .weui_media_hd {
  1228. margin-right: .8em;
  1229. width: 60px;
  1230. height: 60px;
  1231. line-height: 60px;
  1232. text-align: center;
  1233. }
  1234. .weui_media_box.weui_media_appmsg .weui_media_appmsg_thumb {
  1235. width: 100%;
  1236. max-height: 100%;
  1237. vertical-align: middle;
  1238. }
  1239. .weui_media_box.weui_media_appmsg .weui_media_bd {
  1240. -webkit-box-flex: 1;
  1241. -webkit-flex: 1;
  1242. -ms-flex: 1;
  1243. flex: 1;
  1244. min-width: 0;
  1245. }
  1246. .weui_media_box.weui_media_small_appmsg {
  1247. padding: 0;
  1248. }
  1249. .weui_media_box.weui_media_small_appmsg .weui_cells {
  1250. margin-top: 0;
  1251. }
  1252. .weui_media_box.weui_media_small_appmsg .weui_cells:before {
  1253. display: none;
  1254. }
  1255. .weui_grids {
  1256. position: relative;
  1257. overflow: hidden;
  1258. }
  1259. .weui_grids:before {
  1260. content: " ";
  1261. position: absolute;
  1262. left: 0;
  1263. top: 0;
  1264. width: 100%;
  1265. height: 1px;
  1266. border-top: 1px solid #D9D9D9;
  1267. color: #D9D9D9;
  1268. -webkit-transform-origin: 0 0;
  1269. transform-origin: 0 0;
  1270. -webkit-transform: scaleY(0.5);
  1271. transform: scaleY(0.5);
  1272. }
  1273. .weui_grids:after {
  1274. content: " ";
  1275. position: absolute;
  1276. left: 0;
  1277. top: 0;
  1278. width: 1px;
  1279. height: 100%;
  1280. border-left: 1px solid #D9D9D9;
  1281. color: #D9D9D9;
  1282. -webkit-transform-origin: 0 0;
  1283. transform-origin: 0 0;
  1284. -webkit-transform: scaleX(0.5);
  1285. transform: scaleX(0.5);
  1286. }
  1287. .weui_grid {
  1288. position: relative;
  1289. float: left;
  1290. padding: 20px 10px;
  1291. width: 33.33333333%;
  1292. box-sizing: border-box;
  1293. }
  1294. .weui_grid:before {
  1295. content: " ";
  1296. position: absolute;
  1297. right: 0;
  1298. top: 0;
  1299. width: 1px;
  1300. height: 100%;
  1301. border-right: 1px solid #D9D9D9;
  1302. color: #D9D9D9;
  1303. -webkit-transform-origin: 100% 0;
  1304. transform-origin: 100% 0;
  1305. -webkit-transform: scaleX(0.5);
  1306. transform: scaleX(0.5);
  1307. }
  1308. .weui_grid:after {
  1309. content: " ";
  1310. position: absolute;
  1311. left: 0;
  1312. bottom: 0;
  1313. width: 100%;
  1314. height: 1px;
  1315. border-bottom: 1px solid #D9D9D9;
  1316. color: #D9D9D9;
  1317. -webkit-transform-origin: 0 100%;
  1318. transform-origin: 0 100%;
  1319. -webkit-transform: scaleY(0.5);
  1320. transform: scaleY(0.5);
  1321. }
  1322. .weui_grid:active {
  1323. background-color: #E4E4E4;
  1324. }
  1325. .weui_grid_icon {
  1326. width: 28px;
  1327. height: 28px;
  1328. margin: 0 auto;
  1329. }
  1330. .weui_grid_icon img {
  1331. display: block;
  1332. width: 100%;
  1333. height: 100%;
  1334. }
  1335. .weui_grid_icon + .weui_grid_label {
  1336. margin-top: 5px;
  1337. }
  1338. .weui_grid_label {
  1339. display: block;
  1340. text-align: center;
  1341. color: #000;
  1342. font-size: 14px;
  1343. }
  1344. .weui_dialog {
  1345. position: fixed;
  1346. z-index: 13;
  1347. width: 85%;
  1348. top: 50%;
  1349. left: 50%;
  1350. -webkit-transform: translate(-50%, -50%);
  1351. transform: translate(-50%, -50%);
  1352. background-color: #FAFAFC;
  1353. text-align: center;
  1354. border-radius: 3px;
  1355. overflow: hidden;
  1356. }
  1357. .weui_dialog_confirm .weui_dialog .weui_dialog_hd {
  1358. padding: 1.2em 20px .5em;
  1359. }
  1360. .weui_dialog_confirm .weui_dialog .weui_dialog_bd {
  1361. text-align: left;
  1362. }
  1363. .weui_dialog_hd {
  1364. padding: 1.2em 0 .5em;
  1365. }
  1366. .weui_dialog_title {
  1367. font-weight: 400;
  1368. font-size: 17px;
  1369. }
  1370. .weui_dialog_bd {
  1371. padding: 0 20px;
  1372. font-size: 15px;
  1373. color: #888;
  1374. word-wrap: break-word;
  1375. word-break: break-all;
  1376. }
  1377. .weui_dialog_ft {
  1378. position: relative;
  1379. line-height: 42px;
  1380. margin-top: 20px;
  1381. font-size: 17px;
  1382. display: -webkit-box;
  1383. display: -webkit-flex;
  1384. display: -ms-flexbox;
  1385. display: flex;
  1386. }
  1387. .weui_dialog_ft a {
  1388. display: block;
  1389. -webkit-box-flex: 1;
  1390. -webkit-flex: 1;
  1391. -ms-flex: 1;
  1392. flex: 1;
  1393. color: #3CC51F;
  1394. text-decoration: none;
  1395. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1396. }
  1397. .weui_dialog_ft a:active {
  1398. background-color: #EEEEEE;
  1399. }
  1400. .weui_dialog_ft:after {
  1401. content: " ";
  1402. position: absolute;
  1403. left: 0;
  1404. top: 0;
  1405. width: 100%;
  1406. height: 1px;
  1407. border-top: 1px solid #D5D5D6;
  1408. color: #D5D5D6;
  1409. -webkit-transform-origin: 0 0;
  1410. transform-origin: 0 0;
  1411. -webkit-transform: scaleY(0.5);
  1412. transform: scaleY(0.5);
  1413. }
  1414. .weui_dialog_confirm .weui_dialog_ft a {
  1415. position: relative;
  1416. }
  1417. .weui_dialog_confirm .weui_dialog_ft a:after {
  1418. content: " ";
  1419. position: absolute;
  1420. left: 0;
  1421. top: 0;
  1422. width: 1px;
  1423. height: 100%;
  1424. border-left: 1px solid #D5D5D6;
  1425. color: #D5D5D6;
  1426. -webkit-transform-origin: 0 0;
  1427. transform-origin: 0 0;
  1428. -webkit-transform: scaleX(0.5);
  1429. transform: scaleX(0.5);
  1430. }
  1431. .weui_dialog_confirm .weui_dialog_ft a:first-child:after {
  1432. display: none;
  1433. }
  1434. .weui_btn_dialog.default {
  1435. color: #353535;
  1436. }
  1437. .weui_btn_dialog.primary {
  1438. color: #0BB20C;
  1439. }
  1440. @media screen and (min-width: 1024px) {
  1441. .weui_dialog {
  1442. width: 35%;
  1443. }
  1444. }
  1445. .weui_toast {
  1446. position: fixed;
  1447. z-index: 3;
  1448. width: 7.6em;
  1449. min-height: 7.6em;
  1450. top: 180px;
  1451. left: 50%;
  1452. margin-left: -3.8em;
  1453. background: rgba(40, 40, 40, 0.75);
  1454. text-align: center;
  1455. border-radius: 5px;
  1456. color: #FFFFFF;
  1457. }
  1458. .weui_icon_toast {
  1459. margin: 22px 0 0;
  1460. display: block;
  1461. }
  1462. .weui_icon_toast:before {
  1463. content: '\EA08';
  1464. color: #FFFFFF;
  1465. font-size: 55px;
  1466. }
  1467. .weui_toast_content {
  1468. margin: 0 0 15px;
  1469. }
  1470. .weui_loading_toast .weui_toast_content {
  1471. margin-top: 64%;
  1472. font-size: 14px;
  1473. }
  1474. .weui_loading {
  1475. position: absolute;
  1476. width: 0px;
  1477. z-index: 2000000000;
  1478. left: 50%;
  1479. top: 38%;
  1480. }
  1481. .weui_loading_leaf {
  1482. position: absolute;
  1483. top: -1px;
  1484. opacity: 0.25;
  1485. }
  1486. .weui_loading_leaf:before {
  1487. content: " ";
  1488. position: absolute;
  1489. width: 8.14px;
  1490. height: 3.08px;
  1491. background: #d1d1d5;
  1492. box-shadow: rgba(0, 0, 0, 0.0980392) 0px 0px 1px;
  1493. border-radius: 1px;
  1494. -webkit-transform-origin: left 50% 0px;
  1495. transform-origin: left 50% 0px;
  1496. }
  1497. .weui_loading_leaf_0 {
  1498. -webkit-animation: opacity-60-25-0-12 1.25s linear infinite;
  1499. animation: opacity-60-25-0-12 1.25s linear infinite;
  1500. }
  1501. .weui_loading_leaf_0:before {
  1502. -webkit-transform: rotate(0deg) translate(7.92px, 0px);
  1503. transform: rotate(0deg) translate(7.92px, 0px);
  1504. }
  1505. .weui_loading_leaf_1 {
  1506. -webkit-animation: opacity-60-25-1-12 1.25s linear infinite;
  1507. animation: opacity-60-25-1-12 1.25s linear infinite;
  1508. }
  1509. .weui_loading_leaf_1:before {
  1510. -webkit-transform: rotate(30deg) translate(7.92px, 0px);
  1511. transform: rotate(30deg) translate(7.92px, 0px);
  1512. }
  1513. .weui_loading_leaf_2 {
  1514. -webkit-animation: opacity-60-25-2-12 1.25s linear infinite;
  1515. animation: opacity-60-25-2-12 1.25s linear infinite;
  1516. }
  1517. .weui_loading_leaf_2:before {
  1518. -webkit-transform: rotate(60deg) translate(7.92px, 0px);
  1519. transform: rotate(60deg) translate(7.92px, 0px);
  1520. }
  1521. .weui_loading_leaf_3 {
  1522. -webkit-animation: opacity-60-25-3-12 1.25s linear infinite;
  1523. animation: opacity-60-25-3-12 1.25s linear infinite;
  1524. }
  1525. .weui_loading_leaf_3:before {
  1526. -webkit-transform: rotate(90deg) translate(7.92px, 0px);
  1527. transform: rotate(90deg) translate(7.92px, 0px);
  1528. }
  1529. .weui_loading_leaf_4 {
  1530. -webkit-animation: opacity-60-25-4-12 1.25s linear infinite;
  1531. animation: opacity-60-25-4-12 1.25s linear infinite;
  1532. }
  1533. .weui_loading_leaf_4:before {
  1534. -webkit-transform: rotate(120deg) translate(7.92px, 0px);
  1535. transform: rotate(120deg) translate(7.92px, 0px);
  1536. }
  1537. .weui_loading_leaf_5 {
  1538. -webkit-animation: opacity-60-25-5-12 1.25s linear infinite;
  1539. animation: opacity-60-25-5-12 1.25s linear infinite;
  1540. }
  1541. .weui_loading_leaf_5:before {
  1542. -webkit-transform: rotate(150deg) translate(7.92px, 0px);
  1543. transform: rotate(150deg) translate(7.92px, 0px);
  1544. }
  1545. .weui_loading_leaf_6 {
  1546. -webkit-animation: opacity-60-25-6-12 1.25s linear infinite;
  1547. animation: opacity-60-25-6-12 1.25s linear infinite;
  1548. }
  1549. .weui_loading_leaf_6:before {
  1550. -webkit-transform: rotate(180deg) translate(7.92px, 0px);
  1551. transform: rotate(180deg) translate(7.92px, 0px);
  1552. }
  1553. .weui_loading_leaf_7 {
  1554. -webkit-animation: opacity-60-25-7-12 1.25s linear infinite;
  1555. animation: opacity-60-25-7-12 1.25s linear infinite;
  1556. }
  1557. .weui_loading_leaf_7:before {
  1558. -webkit-transform: rotate(210deg) translate(7.92px, 0px);
  1559. transform: rotate(210deg) translate(7.92px, 0px);
  1560. }
  1561. .weui_loading_leaf_8 {
  1562. -webkit-animation: opacity-60-25-8-12 1.25s linear infinite;
  1563. animation: opacity-60-25-8-12 1.25s linear infinite;
  1564. }
  1565. .weui_loading_leaf_8:before {
  1566. -webkit-transform: rotate(240deg) translate(7.92px, 0px);
  1567. transform: rotate(240deg) translate(7.92px, 0px);
  1568. }
  1569. .weui_loading_leaf_9 {
  1570. -webkit-animation: opacity-60-25-9-12 1.25s linear infinite;
  1571. animation: opacity-60-25-9-12 1.25s linear infinite;
  1572. }
  1573. .weui_loading_leaf_9:before {
  1574. -webkit-transform: rotate(270deg) translate(7.92px, 0px);
  1575. transform: rotate(270deg) translate(7.92px, 0px);
  1576. }
  1577. .weui_loading_leaf_10 {
  1578. -webkit-animation: opacity-60-25-10-12 1.25s linear infinite;
  1579. animation: opacity-60-25-10-12 1.25s linear infinite;
  1580. }
  1581. .weui_loading_leaf_10:before {
  1582. -webkit-transform: rotate(300deg) translate(7.92px, 0px);
  1583. transform: rotate(300deg) translate(7.92px, 0px);
  1584. }
  1585. .weui_loading_leaf_11 {
  1586. -webkit-animation: opacity-60-25-11-12 1.25s linear infinite;
  1587. animation: opacity-60-25-11-12 1.25s linear infinite;
  1588. }
  1589. .weui_loading_leaf_11:before {
  1590. -webkit-transform: rotate(330deg) translate(7.92px, 0px);
  1591. transform: rotate(330deg) translate(7.92px, 0px);
  1592. }
  1593. @-webkit-keyframes opacity-60-25-0-12 {
  1594. 0% {
  1595. opacity: 0.25;
  1596. }
  1597. 0.01% {
  1598. opacity: 0.25;
  1599. }
  1600. 0.02% {
  1601. opacity: 1;
  1602. }
  1603. 60.01% {
  1604. opacity: 0.25;
  1605. }
  1606. 100% {
  1607. opacity: 0.25;
  1608. }
  1609. }
  1610. @-webkit-keyframes opacity-60-25-1-12 {
  1611. 0% {
  1612. opacity: 0.25;
  1613. }
  1614. 8.34333% {
  1615. opacity: 0.25;
  1616. }
  1617. 8.35333% {
  1618. opacity: 1;
  1619. }
  1620. 68.3433% {
  1621. opacity: 0.25;
  1622. }
  1623. 100% {
  1624. opacity: 0.25;
  1625. }
  1626. }
  1627. @-webkit-keyframes opacity-60-25-2-12 {
  1628. 0% {
  1629. opacity: 0.25;
  1630. }
  1631. 16.6767% {
  1632. opacity: 0.25;
  1633. }
  1634. 16.6867% {
  1635. opacity: 1;
  1636. }
  1637. 76.6767% {
  1638. opacity: 0.25;
  1639. }
  1640. 100% {
  1641. opacity: 0.25;
  1642. }
  1643. }
  1644. @-webkit-keyframes opacity-60-25-3-12 {
  1645. 0% {
  1646. opacity: 0.25;
  1647. }
  1648. 25.01% {
  1649. opacity: 0.25;
  1650. }
  1651. 25.02% {
  1652. opacity: 1;
  1653. }
  1654. 85.01% {
  1655. opacity: 0.25;
  1656. }
  1657. 100% {
  1658. opacity: 0.25;
  1659. }
  1660. }
  1661. @-webkit-keyframes opacity-60-25-4-12 {
  1662. 0% {
  1663. opacity: 0.25;
  1664. }
  1665. 33.3433% {
  1666. opacity: 0.25;
  1667. }
  1668. 33.3533% {
  1669. opacity: 1;
  1670. }
  1671. 93.3433% {
  1672. opacity: 0.25;
  1673. }
  1674. 100% {
  1675. opacity: 0.25;
  1676. }
  1677. }
  1678. @-webkit-keyframes opacity-60-25-5-12 {
  1679. 0% {
  1680. opacity: 0.270958333333333;
  1681. }
  1682. 41.6767% {
  1683. opacity: 0.25;
  1684. }
  1685. 41.6867% {
  1686. opacity: 1;
  1687. }
  1688. 1.67667% {
  1689. opacity: 0.25;
  1690. }
  1691. 100% {
  1692. opacity: 0.270958333333333;
  1693. }
  1694. }
  1695. @-webkit-keyframes opacity-60-25-6-12 {
  1696. 0% {
  1697. opacity: 0.375125;
  1698. }
  1699. 50.01% {
  1700. opacity: 0.25;
  1701. }
  1702. 50.02% {
  1703. opacity: 1;
  1704. }
  1705. 10.01% {
  1706. opacity: 0.25;
  1707. }
  1708. 100% {
  1709. opacity: 0.375125;
  1710. }
  1711. }
  1712. @-webkit-keyframes opacity-60-25-7-12 {
  1713. 0% {
  1714. opacity: 0.479291666666667;
  1715. }
  1716. 58.3433% {
  1717. opacity: 0.25;
  1718. }
  1719. 58.3533% {
  1720. opacity: 1;
  1721. }
  1722. 18.3433% {
  1723. opacity: 0.25;
  1724. }
  1725. 100% {
  1726. opacity: 0.479291666666667;
  1727. }
  1728. }
  1729. @-webkit-keyframes opacity-60-25-8-12 {
  1730. 0% {
  1731. opacity: 0.583458333333333;
  1732. }
  1733. 66.6767% {
  1734. opacity: 0.25;
  1735. }
  1736. 66.6867% {
  1737. opacity: 1;
  1738. }
  1739. 26.6767% {
  1740. opacity: 0.25;
  1741. }
  1742. 100% {
  1743. opacity: 0.583458333333333;
  1744. }
  1745. }
  1746. @-webkit-keyframes opacity-60-25-9-12 {
  1747. 0% {
  1748. opacity: 0.687625;
  1749. }
  1750. 75.01% {
  1751. opacity: 0.25;
  1752. }
  1753. 75.02% {
  1754. opacity: 1;
  1755. }
  1756. 35.01% {
  1757. opacity: 0.25;
  1758. }
  1759. 100% {
  1760. opacity: 0.687625;
  1761. }
  1762. }
  1763. @-webkit-keyframes opacity-60-25-10-12 {
  1764. 0% {
  1765. opacity: 0.791791666666667;
  1766. }
  1767. 83.3433% {
  1768. opacity: 0.25;
  1769. }
  1770. 83.3533% {
  1771. opacity: 1;
  1772. }
  1773. 43.3433% {
  1774. opacity: 0.25;
  1775. }
  1776. 100% {
  1777. opacity: 0.791791666666667;
  1778. }
  1779. }
  1780. @-webkit-keyframes opacity-60-25-11-12 {
  1781. 0% {
  1782. opacity: 0.895958333333333;
  1783. }
  1784. 91.6767% {
  1785. opacity: 0.25;
  1786. }
  1787. 91.6867% {
  1788. opacity: 1;
  1789. }
  1790. 51.6767% {
  1791. opacity: 0.25;
  1792. }
  1793. 100% {
  1794. opacity: 0.895958333333333;
  1795. }
  1796. }
  1797. .weui_mask {
  1798. position: fixed;
  1799. z-index: 1;
  1800. width: 100%;
  1801. height: 100%;
  1802. top: 0;
  1803. left: 0;
  1804. background: rgba(0, 0, 0, 0.6);
  1805. }
  1806. .weui_mask_transparent {
  1807. position: fixed;
  1808. z-index: 1;
  1809. width: 100%;
  1810. height: 100%;
  1811. top: 0;
  1812. left: 0;
  1813. }
  1814. .weui_mask_transition {
  1815. display: none;
  1816. position: fixed;
  1817. z-index: 1;
  1818. width: 100%;
  1819. height: 100%;
  1820. top: 0;
  1821. left: 0;
  1822. background: rgba(0, 0, 0, 0);
  1823. -webkit-transition: background .3s;
  1824. transition: background .3s;
  1825. }
  1826. .weui_fade_toggle {
  1827. background: rgba(0, 0, 0, 0.6);
  1828. }
  1829. .weui_actionsheet {
  1830. position: fixed;
  1831. left: 0;
  1832. bottom: 0;
  1833. -webkit-transform: translate(0, 100%);
  1834. transform: translate(0, 100%);
  1835. -webkit-backface-visibility: hidden;
  1836. backface-visibility: hidden;
  1837. z-index: 2;
  1838. width: 100%;
  1839. background-color: #EFEFF4;
  1840. -webkit-transition: -webkit-transform .3s;
  1841. transition: -webkit-transform .3s;
  1842. transition: transform .3s;
  1843. transition: transform .3s, -webkit-transform .3s;
  1844. }
  1845. .weui_actionsheet_menu {
  1846. background-color: #FFFFFF;
  1847. }
  1848. .weui_actionsheet_action {
  1849. margin-top: 6px;
  1850. background-color: #FFFFFF;
  1851. }
  1852. .weui_actionsheet_cell {
  1853. position: relative;
  1854. padding: 10px 0;
  1855. text-align: center;
  1856. font-size: 18px;
  1857. }
  1858. .weui_actionsheet_cell:before {
  1859. content: " ";
  1860. position: absolute;
  1861. left: 0;
  1862. top: 0;
  1863. width: 100%;
  1864. height: 1px;
  1865. border-top: 1px solid #D9D9D9;
  1866. color: #D9D9D9;
  1867. -webkit-transform-origin: 0 0;
  1868. transform-origin: 0 0;
  1869. -webkit-transform: scaleY(0.5);
  1870. transform: scaleY(0.5);
  1871. }
  1872. .weui_actionsheet_cell:active {
  1873. background-color: #ECECEC;
  1874. }
  1875. .weui_actionsheet_cell:first-child:before {
  1876. display: none;
  1877. }
  1878. .weui_actionsheet_toggle {
  1879. -webkit-transform: translate(0, 0);
  1880. transform: translate(0, 0);
  1881. }
  1882. .weui_search_bar {
  1883. position: relative;
  1884. padding: 8px 10px;
  1885. display: -webkit-box;
  1886. display: -webkit-flex;
  1887. display: -ms-flexbox;
  1888. display: flex;
  1889. box-sizing: border-box;
  1890. background-color: #EFEFF4;
  1891. z-index: 2;
  1892. }
  1893. .weui_search_bar:before {
  1894. content: " ";
  1895. position: absolute;
  1896. left: 0;
  1897. top: 0;
  1898. width: 100%;
  1899. height: 1px;
  1900. border-top: 1px solid #C7C7C7;
  1901. color: #C7C7C7;
  1902. -webkit-transform-origin: 0 0;
  1903. transform-origin: 0 0;
  1904. -webkit-transform: scaleY(0.5);
  1905. transform: scaleY(0.5);
  1906. }
  1907. .weui_search_bar:after {
  1908. content: " ";
  1909. position: absolute;
  1910. left: 0;
  1911. bottom: 0;
  1912. width: 100%;
  1913. height: 1px;
  1914. border-bottom: 1px solid #C7C7C7;
  1915. color: #C7C7C7;
  1916. -webkit-transform-origin: 0 100%;
  1917. transform-origin: 0 100%;
  1918. -webkit-transform: scaleY(0.5);
  1919. transform: scaleY(0.5);
  1920. }
  1921. .weui_search_bar.weui_search_focusing .weui_search_cancel {
  1922. display: block;
  1923. }
  1924. .weui_search_bar.weui_search_focusing .weui_search_text {
  1925. display: none;
  1926. }
  1927. .weui_search_outer {
  1928. position: relative;
  1929. -webkit-box-flex: 1;
  1930. -webkit-flex: auto;
  1931. -ms-flex: auto;
  1932. flex: auto;
  1933. background-color: #EFEFF4;
  1934. }
  1935. .weui_search_outer:after {
  1936. content: '';
  1937. position: absolute;
  1938. left: 0;
  1939. top: 0;
  1940. width: 200%;
  1941. height: 200%;
  1942. -webkit-transform: scale(0.5);
  1943. transform: scale(0.5);
  1944. -webkit-transform-origin: 0 0;
  1945. transform-origin: 0 0;
  1946. border-radius: 10px;
  1947. border: 1px solid #E6E6EA;
  1948. box-sizing: border-box;
  1949. background: #FFFFFF;
  1950. }
  1951. .weui_search_inner {
  1952. position: relative;
  1953. padding-left: 30px;
  1954. padding-right: 30px;
  1955. height: 100%;
  1956. width: 100%;
  1957. box-sizing: border-box;
  1958. z-index: 1;
  1959. }
  1960. .weui_search_inner .weui_search_input {
  1961. padding: 4px 0;
  1962. width: 100%;
  1963. height: 1.42857143em;
  1964. border: 0;
  1965. font-size: 14px;
  1966. line-height: 1.42857143em;
  1967. box-sizing: content-box;
  1968. background: transparent;
  1969. }
  1970. .weui_search_inner .weui_search_input:focus {
  1971. outline: none;
  1972. }
  1973. .weui_search_inner .weui_icon_search {
  1974. position: absolute;
  1975. left: 10px;
  1976. top: -2px;
  1977. line-height: 28px;
  1978. }
  1979. .weui_search_inner .weui_icon_clear {
  1980. position: absolute;
  1981. top: -2px;
  1982. right: 0;
  1983. padding: 0 10px;
  1984. line-height: 28px;
  1985. }
  1986. .weui_search_text {
  1987. position: absolute;
  1988. top: 1px;
  1989. right: 1px;
  1990. bottom: 1px;
  1991. left: 1px;
  1992. z-index: 2;
  1993. border-radius: 3px;
  1994. text-align: center;
  1995. color: #9B9B9B;
  1996. background: #FFFFFF;
  1997. }
  1998. .weui_search_text span {
  1999. display: inline-block;
  2000. font-size: 14px;
  2001. vertical-align: middle;
  2002. }
  2003. .weui_search_text .weui_icon_search {
  2004. margin-right: 5px;
  2005. }
  2006. .weui_search_cancel {
  2007. display: none;
  2008. margin-left: 10px;
  2009. line-height: 28px;
  2010. white-space: nowrap;
  2011. color: #09BB07;
  2012. }
  2013. .weui_search_input:not(:valid) ~ .weui_icon_clear {
  2014. display: none;
  2015. }
  2016. input[type="search"]::-webkit-search-decoration,
  2017. input[type="search"]::-webkit-search-cancel-button,
  2018. input[type="search"]::-webkit-search-results-button,
  2019. input[type="search"]::-webkit-search-results-decoration {
  2020. display: none;
  2021. }