weui.wxss 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365
  1. /*!
  2. * WeUI v2.3.0 (https://github.com/weui/weui-wxss)
  3. * Copyright 2020 Tencent, Inc.
  4. * Licensed under the MIT license
  5. */
  6. [data-weui-theme=light],
  7. page {
  8. --weui-BTN-DISABLED-FONT-COLOR: rgba(0, 0, 0, .2)
  9. }
  10. [data-weui-theme=dark] {
  11. --weui-BTN-DISABLED-FONT-COLOR: hsla(0, 0%, 100%, .2)
  12. }
  13. [data-weui-theme=light],
  14. page {
  15. --weui-BTN-DEFAULT-BG: #f2f2f2
  16. }
  17. [data-weui-theme=dark] {
  18. --weui-BTN-DEFAULT-BG: hsla(0, 0%, 100%, .08)
  19. }
  20. [data-weui-theme=light],
  21. page {
  22. --weui-BTN-DEFAULT-COLOR: #06ae56
  23. }
  24. [data-weui-theme=dark] {
  25. --weui-BTN-DEFAULT-COLOR: hsla(0, 0%, 100%, .8)
  26. }
  27. [data-weui-theme=light],
  28. page {
  29. --weui-BTN-DEFAULT-ACTIVE-BG: #e6e6e6
  30. }
  31. [data-weui-theme=dark] {
  32. --weui-BTN-DEFAULT-ACTIVE-BG: hsla(0, 0%, 100%, .126)
  33. }
  34. [data-weui-theme=light],
  35. page {
  36. --weui-DIALOG-LINE-COLOR: rgba(0, 0, 0, .1)
  37. }
  38. [data-weui-theme=dark] {
  39. --weui-DIALOG-LINE-COLOR: hsla(0, 0%, 100%, .1)
  40. }
  41. page {
  42. line-height: 1.6;
  43. font-family: -apple-system-font, Helvetica Neue, sans-serif
  44. }
  45. icon {
  46. vertical-align: middle
  47. }
  48. [data-weui-theme=light],
  49. page {
  50. --weui-BG-0: #ededed;
  51. --weui-BG-1: #f7f7f7;
  52. --weui-BG-2: #fff;
  53. --weui-BG-3: #f7f7f7;
  54. --weui-BG-4: #4c4c4c;
  55. --weui-BG-5: #fff;
  56. --weui-FG-0: rgba(0, 0, 0, .9);
  57. --weui-FG-HALF: rgba(0, 0, 0, .9);
  58. --weui-FG-1: rgba(0, 0, 0, .5);
  59. --weui-FG-2: rgba(0, 0, 0, .3);
  60. --weui-FG-3: rgba(0, 0, 0, .1);
  61. --weui-RED: #fa5151;
  62. --weui-ORANGE: #fa9d3b;
  63. --weui-YELLOW: #ffc300;
  64. --weui-GREEN: #91d300;
  65. --weui-LIGHTGREEN: #95ec69;
  66. --weui-BRAND: #07c160;
  67. --weui-BLUE: #10aeff;
  68. --weui-INDIGO: #1485ee;
  69. --weui-PURPLE: #6467f0;
  70. --weui-WHITE: #fff;
  71. --weui-LINK: #576b95;
  72. --weui-TEXTGREEN: #06ae56;
  73. --weui-FG: #000;
  74. --weui-BG: #fff;
  75. --weui-TAG-TEXT-ORANGE: #fa9d3b;
  76. --weui-TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, .1);
  77. --weui-TAG-TEXT-GREEN: #06ae56;
  78. --weui-TAG-BACKGROUND-GREEN: rgba(6, 174, 86, .1);
  79. --weui-TAG-TEXT-BLUE: #10aeff;
  80. --weui-TAG-BACKGROUND-BLUE: rgba(16, 174, 255, .1);
  81. --weui-TAG-TEXT-BLACK: rgba(0, 0, 0, .5);
  82. --weui-TAG-BACKGROUND-BLACK: rgba(0, 0, 0, .05)
  83. }
  84. [data-weui-theme=dark] {
  85. --weui-BG-0: #191919;
  86. --weui-BG-1: #1f1f1f;
  87. --weui-BG-2: #232323;
  88. --weui-BG-3: #2f2f2f;
  89. --weui-BG-4: #606060;
  90. --weui-BG-5: #2c2c2c;
  91. --weui-FG-0: hsla(0, 0%, 100%, .8);
  92. --weui-FG-HALF: hsla(0, 0%, 100%, .6);
  93. --weui-FG-1: hsla(0, 0%, 100%, .5);
  94. --weui-FG-2: hsla(0, 0%, 100%, .3);
  95. --weui-FG-3: hsla(0, 0%, 100%, .05);
  96. --weui-RED: #fa5151;
  97. --weui-ORANGE: #c87d2f;
  98. --weui-YELLOW: #cc9c00;
  99. --weui-GREEN: #74a800;
  100. --weui-LIGHTGREEN: #28b561;
  101. --weui-BRAND: #07c160;
  102. --weui-BLUE: #10aeff;
  103. --weui-INDIGO: #1196ff;
  104. --weui-PURPLE: #8183ff;
  105. --weui-WHITE: hsla(0, 0%, 100%, .8);
  106. --weui-LINK: #7d90a9;
  107. --weui-TEXTGREEN: #259c5c;
  108. --weui-FG: #fff;
  109. --weui-BG: #000;
  110. --weui-TAG-TEXT-ORANGE: rgba(250, 157, 59, .6);
  111. --weui-TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, .1);
  112. --weui-TAG-TEXT-GREEN: rgba(6, 174, 86, .6);
  113. --weui-TAG-BACKGROUND-GREEN: rgba(6, 174, 86, .1);
  114. --weui-TAG-TEXT-BLUE: rgba(16, 174, 255, .6);
  115. --weui-TAG-BACKGROUND-BLUE: rgba(16, 174, 255, .1);
  116. --weui-TAG-TEXT-BLACK: hsla(0, 0%, 100%, .5);
  117. --weui-TAG-BACKGROUND-BLACK: hsla(0, 0%, 100%, .05)
  118. }
  119. [data-weui-theme=light],
  120. page {
  121. --weui-BG-COLOR-ACTIVE: #ececec
  122. }
  123. [data-weui-theme=dark] {
  124. --weui-BG-COLOR-ACTIVE: #373737
  125. }
  126. [class*=" weui-icon-"],
  127. [class^=weui-icon-] {
  128. display: inline-block;
  129. vertical-align: middle;
  130. width: 24px;
  131. height: 24px;
  132. -webkit-mask-position: 50% 50%;
  133. mask-position: 50% 50%;
  134. -webkit-mask-repeat: no-repeat;
  135. mask-repeat: no-repeat;
  136. -webkit-mask-size: 100%;
  137. mask-size: 100%;
  138. background-color: currentColor
  139. }
  140. .weui-icon-circle {
  141. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E);
  142. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E)
  143. }
  144. .weui-icon-download {
  145. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11.25%2012.04l-1.72-1.72-1.06%201.06%202.828%202.83a1%201%200%20001.414-.001l2.828-2.828-1.06-1.061-1.73%201.73V7h-1.5v5.04zm0-5.04V2h1.5v5h6.251c.55%200%20.999.446.999.996v13.008a.998.998%200%2001-.996.996H4.996A.998.998%200%20014%2021.004V7.996A1%201%200%20014.999%207h6.251z%22%2F%3E%3C%2Fsvg%3E);
  146. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11.25%2012.04l-1.72-1.72-1.06%201.06%202.828%202.83a1%201%200%20001.414-.001l2.828-2.828-1.06-1.061-1.73%201.73V7h-1.5v5.04zm0-5.04V2h1.5v5h6.251c.55%200%20.999.446.999.996v13.008a.998.998%200%2001-.996.996H4.996A.998.998%200%20014%2021.004V7.996A1%201%200%20014.999%207h6.251z%22%2F%3E%3C%2Fsvg%3E)
  147. }
  148. .weui-icon-info {
  149. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-.75-12v7h1.5v-7h-1.5zM12%209a1%201%200%20100-2%201%201%200%20000%202z%22%2F%3E%3C%2Fsvg%3E);
  150. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-.75-12v7h1.5v-7h-1.5zM12%209a1%201%200%20100-2%201%201%200%20000%202z%22%2F%3E%3C%2Fsvg%3E)
  151. }
  152. .weui-icon-safe-success {
  153. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201000%201000%22%3E%3Cpath%20d%3D%22M500.9%204.6C315.5%2046.7%20180.4%2093.1%2057.6%20132c0%20129.3.2%20231.7.2%20339.7%200%20304.2%20248.3%20471.6%20443.1%20523.7C695.7%20943.3%20944%20775.9%20944%20471.7c0-108%20.2-210.4.2-339.7C821.4%2093.1%20686.3%2046.7%20500.9%204.6zm248.3%20349.1l-299.7%20295c-2.1%202-5.3%202-7.4-.1L304.4%20506.1c-2-2.1-2.3-5.7-.6-8l18.3-24.9c1.7-2.3%205-2.8%207.2-1l112.2%2086c2.3%201.8%206%201.7%208.1-.1l274.7-228.9c2.2-1.8%205.7-1.7%207.7.3l17%2016.8c2.2%202.1%202.2%205.3.2%207.4z%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23070202%22%2F%3E%3C%2Fsvg%3E);
  154. mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201000%201000%22%3E%3Cpath%20d%3D%22M500.9%204.6C315.5%2046.7%20180.4%2093.1%2057.6%20132c0%20129.3.2%20231.7.2%20339.7%200%20304.2%20248.3%20471.6%20443.1%20523.7C695.7%20943.3%20944%20775.9%20944%20471.7c0-108%20.2-210.4.2-339.7C821.4%2093.1%20686.3%2046.7%20500.9%204.6zm248.3%20349.1l-299.7%20295c-2.1%202-5.3%202-7.4-.1L304.4%20506.1c-2-2.1-2.3-5.7-.6-8l18.3-24.9c1.7-2.3%205-2.8%207.2-1l112.2%2086c2.3%201.8%206%201.7%208.1-.1l274.7-228.9c2.2-1.8%205.7-1.7%207.7.3l17%2016.8c2.2%202.1%202.2%205.3.2%207.4z%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23070202%22%2F%3E%3C%2Fsvg%3E)
  155. }
  156. .weui-icon-safe-warn {
  157. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201000%201000%22%3E%3Cpath%20d%3D%22M500.9%204.5c-185.4%2042-320.4%2088.4-443.2%20127.3%200%20129.3.2%20231.7.2%20339.6%200%20304.1%20248.2%20471.4%20443%20523.6%20194.7-52.2%20443-219.5%20443-523.6%200-107.9.2-210.3.2-339.6C821.3%2092.9%20686.2%2046.5%20500.9%204.5zm-26.1%20271.1h52.1c5.8%200%2010.3%204.7%2010.1%2010.4l-11.6%20313.8c-.1%202.8-2.5%205.2-5.4%205.2h-38.2c-2.9%200-5.3-2.3-5.4-5.2L464.8%20286c-.2-5.8%204.3-10.4%2010-10.4zm26.1%20448.3c-20.2%200-36.5-16.3-36.5-36.5s16.3-36.5%2036.5-36.5%2036.5%2016.3%2036.5%2036.5-16.4%2036.5-36.5%2036.5z%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23020202%22%2F%3E%3C%2Fsvg%3E);
  158. mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201000%201000%22%3E%3Cpath%20d%3D%22M500.9%204.5c-185.4%2042-320.4%2088.4-443.2%20127.3%200%20129.3.2%20231.7.2%20339.6%200%20304.1%20248.2%20471.4%20443%20523.6%20194.7-52.2%20443-219.5%20443-523.6%200-107.9.2-210.3.2-339.6C821.3%2092.9%20686.2%2046.5%20500.9%204.5zm-26.1%20271.1h52.1c5.8%200%2010.3%204.7%2010.1%2010.4l-11.6%20313.8c-.1%202.8-2.5%205.2-5.4%205.2h-38.2c-2.9%200-5.3-2.3-5.4-5.2L464.8%20286c-.2-5.8%204.3-10.4%2010-10.4zm26.1%20448.3c-20.2%200-36.5-16.3-36.5-36.5s16.3-36.5%2036.5-36.5%2036.5%2016.3%2036.5%2036.5-16.4%2036.5-36.5%2036.5z%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23020202%22%2F%3E%3C%2Fsvg%3E)
  159. }
  160. .weui-icon-success {
  161. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E);
  162. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E)
  163. }
  164. .weui-icon-success-circle {
  165. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6zm-1.172-6.242l5.809-5.808.848.849-5.95%205.95a1%201%200%2001-1.414%200L7%2012.426l.849-.849%202.98%202.98z%22%2F%3E%3C%2Fsvg%3E);
  166. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6zm-1.172-6.242l5.809-5.808.848.849-5.95%205.95a1%201%200%2001-1.414%200L7%2012.426l.849-.849%202.98%202.98z%22%2F%3E%3C%2Fsvg%3E)
  167. }
  168. .weui-icon-success-no-circle {
  169. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.657%2018.435L3%2012.778l1.414-1.414%204.95%204.95L20.678%205l1.414%201.414-12.02%2012.021a1%201%200%2001-1.415%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  170. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.657%2018.435L3%2012.778l1.414-1.414%204.95%204.95L20.678%205l1.414%201.414-12.02%2012.021a1%201%200%2001-1.415%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
  171. }
  172. .weui-icon-waiting {
  173. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.75%2011.38V6h-1.5v6l4.243%204.243%201.06-1.06-3.803-3.804zM12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  174. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.75%2011.38V6h-1.5v6l4.243%204.243%201.06-1.06-3.803-3.804zM12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
  175. }
  176. .weui-icon-waiting-circle {
  177. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.6%2011.503l3.891%203.891-.848.849L11.4%2012V6h1.2v5.503zM12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6z%22%2F%3E%3C%2Fsvg%3E);
  178. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.6%2011.503l3.891%203.891-.848.849L11.4%2012V6h1.2v5.503zM12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6z%22%2F%3E%3C%2Fsvg%3E)
  179. }
  180. .weui-icon-warn {
  181. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-.763-15.864l.11%207.596h1.305l.11-7.596h-1.525zm.759%2010.967c.512%200%20.902-.383.902-.882%200-.5-.39-.882-.902-.882a.878.878%200%2000-.896.882c0%20.499.396.882.896.882z%22%2F%3E%3C%2Fsvg%3E);
  182. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-.763-15.864l.11%207.596h1.305l.11-7.596h-1.525zm.759%2010.967c.512%200%20.902-.383.902-.882%200-.5-.39-.882-.902-.882a.878.878%200%2000-.896.882c0%20.499.396.882.896.882z%22%2F%3E%3C%2Fsvg%3E)
  183. }
  184. .weui-icon-info-circle {
  185. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6zM11.4%2010h1.2v7h-1.2v-7zm.6-1a1%201%200%20110-2%201%201%200%20010%202z%22%2F%3E%3C%2Fsvg%3E);
  186. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6zM11.4%2010h1.2v7h-1.2v-7zm.6-1a1%201%200%20110-2%201%201%200%20010%202z%22%2F%3E%3C%2Fsvg%3E)
  187. }
  188. .weui-icon-cancel {
  189. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6z%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22M12.849%2012l3.11%203.111-.848.849L12%2012.849l-3.111%203.11-.849-.848L11.151%2012l-3.11-3.111.848-.849L12%2011.151l3.111-3.11.849.848L12.849%2012z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E);
  190. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6z%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22M12.849%2012l3.11%203.111-.848.849L12%2012.849l-3.111%203.11-.849-.848L11.151%2012l-3.11-3.111.848-.849L12%2011.151l3.111-3.11.849.848L12.849%2012z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)
  191. }
  192. .weui-icon-search {
  193. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M16.31%2015.561l4.114%204.115-.848.848-4.123-4.123a7%207%200%2011.857-.84zM16.8%2011a5.8%205.8%200%2010-11.6%200%205.8%205.8%200%200011.6%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  194. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M16.31%2015.561l4.114%204.115-.848.848-4.123-4.123a7%207%200%2011.857-.84zM16.8%2011a5.8%205.8%200%2010-11.6%200%205.8%205.8%200%200011.6%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
  195. }
  196. .weui-icon-clear {
  197. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.06%2012l3.006-3.005-1.06-1.06L12%2010.938%208.995%207.934l-1.06%201.06L10.938%2012l-3.005%203.005%201.06%201.06L12%2013.062l3.005%203.005%201.06-1.06L13.062%2012zM12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010z%22%2F%3E%3C%2Fsvg%3E);
  198. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13.06%2012l3.006-3.005-1.06-1.06L12%2010.938%208.995%207.934l-1.06%201.06L10.938%2012l-3.005%203.005%201.06%201.06L12%2013.062l3.005%203.005%201.06-1.06L13.062%2012zM12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010z%22%2F%3E%3C%2Fsvg%3E)
  199. }
  200. .weui-icon-back {
  201. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm1.999-6.563L10.68%2012%2014%208.562%2012.953%207.5%209.29%2011.277a1.045%201.045%200%20000%201.446l3.663%203.777L14%2015.437z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  202. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm1.999-6.563L10.68%2012%2014%208.562%2012.953%207.5%209.29%2011.277a1.045%201.045%200%20000%201.446l3.663%203.777L14%2015.437z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
  203. }
  204. .weui-icon-delete {
  205. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6.774%206.4l.812%2013.648a.8.8%200%2000.798.752h7.232a.8.8%200%2000.798-.752L17.226%206.4H6.774zm11.655%200l-.817%2013.719A2%202%200%200115.616%2022H8.384a2%202%200%2001-1.996-1.881L5.571%206.4H3.5v-.7a.5.5%200%2001.5-.5h16a.5.5%200%2001.5.5v.7h-2.071zM14%203a.5.5%200%2001.5.5v.7h-5v-.7A.5.5%200%200110%203h4zM9.5%209h1.2l.5%209H10l-.5-9zm3.8%200h1.2l-.5%209h-1.2l.5-9z%22%2F%3E%3C%2Fsvg%3E);
  206. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6.774%206.4l.812%2013.648a.8.8%200%2000.798.752h7.232a.8.8%200%2000.798-.752L17.226%206.4H6.774zm11.655%200l-.817%2013.719A2%202%200%200115.616%2022H8.384a2%202%200%2001-1.996-1.881L5.571%206.4H3.5v-.7a.5.5%200%2001.5-.5h16a.5.5%200%2001.5.5v.7h-2.071zM14%203a.5.5%200%2001.5.5v.7h-5v-.7A.5.5%200%200110%203h4zM9.5%209h1.2l.5%209H10l-.5-9zm3.8%200h1.2l-.5%209h-1.2l.5-9z%22%2F%3E%3C%2Fsvg%3E)
  207. }
  208. .weui-icon-success-no-circle-thin {
  209. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.864%2016.617l-5.303-5.303-1.061%201.06%205.657%205.657a1%201%200%20001.414%200L21.238%206.364l-1.06-1.06L8.864%2016.616z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  210. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.864%2016.617l-5.303-5.303-1.061%201.06%205.657%205.657a1%201%200%20001.414%200L21.238%206.364l-1.06-1.06L8.864%2016.616z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
  211. }
  212. .weui-icon-arrow {
  213. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  214. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
  215. }
  216. .weui-icon-arrow-bold {
  217. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2212%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.157%2012.711L4.5%2018.368l-1.414-1.414%204.95-4.95-4.95-4.95L4.5%205.64l5.657%205.657a1%201%200%20010%201.414z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  218. mask-image: url(data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2212%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.157%2012.711L4.5%2018.368l-1.414-1.414%204.95-4.95-4.95-4.95L4.5%205.64l5.657%205.657a1%201%200%20010%201.414z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
  219. }
  220. .weui-icon-back-arrow {
  221. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M3.343%2012l7.071%207.071L9%2020.485l-7.778-7.778a1%201%200%20010-1.414L9%203.515l1.414%201.414L3.344%2012z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  222. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M3.343%2012l7.071%207.071L9%2020.485l-7.778-7.778a1%201%200%20010-1.414L9%203.515l1.414%201.414L3.344%2012z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
  223. }
  224. .weui-icon-back-arrow-thin {
  225. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10%2019.438L8.955%2020.5l-7.666-7.79a1.02%201.02%200%20010-1.42L8.955%203.5%2010%204.563%202.682%2012%2010%2019.438z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  226. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10%2019.438L8.955%2020.5l-7.666-7.79a1.02%201.02%200%20010-1.42L8.955%203.5%2010%204.563%202.682%2012%2010%2019.438z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
  227. }
  228. .weui-icon-close {
  229. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2010.586l5.657-5.657%201.414%201.414L13.414%2012l5.657%205.657-1.414%201.414L12%2013.414l-5.657%205.657-1.414-1.414L10.586%2012%204.929%206.343%206.343%204.93%2012%2010.586z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  230. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2010.586l5.657-5.657%201.414%201.414L13.414%2012l5.657%205.657-1.414%201.414L12%2013.414l-5.657%205.657-1.414-1.414L10.586%2012%204.929%206.343%206.343%204.93%2012%2010.586z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
  231. }
  232. .weui-icon-close-thin {
  233. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.25%2010.693L6.057%204.5%205%205.557l6.193%206.193L5%2017.943%206.057%2019l6.193-6.193L18.443%2019l1.057-1.057-6.193-6.193L19.5%205.557%2018.443%204.5z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  234. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.25%2010.693L6.057%204.5%205%205.557l6.193%206.193L5%2017.943%206.057%2019l6.193-6.193L18.443%2019l1.057-1.057-6.193-6.193L19.5%205.557%2018.443%204.5z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
  235. }
  236. .weui-icon-back-circle {
  237. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6zm1.999-5.363L12.953%2016.5%209.29%2012.723a1.045%201.045%200%20010-1.446L12.953%207.5%2014%208.563%2010.68%2012%2014%2015.438z%22%2F%3E%3C%2Fsvg%3E);
  238. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm0-1.2a8.8%208.8%200%20100-17.6%208.8%208.8%200%20000%2017.6zm1.999-5.363L12.953%2016.5%209.29%2012.723a1.045%201.045%200%20010-1.446L12.953%207.5%2014%208.563%2010.68%2012%2014%2015.438z%22%2F%3E%3C%2Fsvg%3E)
  239. }
  240. .weui-icon-success {
  241. color: var(--weui-BRAND)
  242. }
  243. .weui-icon-waiting {
  244. color: var(--weui-BLUE)
  245. }
  246. .weui-icon-warn {
  247. color: var(--weui-RED)
  248. }
  249. .weui-icon-info {
  250. color: var(--weui-BLUE)
  251. }
  252. .weui-icon-success-circle,
  253. .weui-icon-success-no-circle,
  254. .weui-icon-success-no-circle-thin {
  255. color: var(--weui-BRAND)
  256. }
  257. .weui-icon-waiting-circle {
  258. color: var(--weui-BLUE)
  259. }
  260. .weui-icon-circle {
  261. color: var(--weui-FG-2)
  262. }
  263. .weui-icon-download {
  264. color: var(--weui-BRAND)
  265. }
  266. .weui-icon-info-circle {
  267. color: var(--weui-FG-2)
  268. }
  269. .weui-icon-safe-success {
  270. color: var(--weui-BRAND)
  271. }
  272. .weui-icon-safe-warn {
  273. color: var(--weui-YELLOW)
  274. }
  275. .weui-icon-cancel {
  276. color: var(--weui-RED)
  277. }
  278. .weui-icon-search {
  279. color: var(--weui-FG-1)
  280. }
  281. .weui-icon-clear {
  282. color: var(--weui-FG-2)
  283. }
  284. .weui-icon-clear:active {
  285. color: var(--weui-FG-1)
  286. }
  287. .weui-icon-delete.weui-icon_gallery-delete {
  288. color: var(--weui-WHITE)
  289. }
  290. .weui-icon-arrow,
  291. .weui-icon-arrow-bold,
  292. .weui-icon-back-arrow,
  293. .weui-icon-back-arrow-thin {
  294. width: 12px
  295. }
  296. .weui-icon-arrow,
  297. .weui-icon-arrow-bold {
  298. color: var(--weui-FG-2)
  299. }
  300. .weui-icon-back,
  301. .weui-icon-back-arrow,
  302. .weui-icon-back-arrow-thin,
  303. .weui-icon-back-circle {
  304. color: var(--weui-FG-0)
  305. }
  306. .weui-icon_msg {
  307. width: 64px;
  308. height: 64px
  309. }
  310. .weui-icon_msg.weui-icon-warn {
  311. color: var(--weui-RED)
  312. }
  313. .weui-icon_msg-primary {
  314. width: 64px;
  315. height: 64px
  316. }
  317. .weui-icon_msg-primary.weui-icon-warn {
  318. color: var(--weui-YELLOW)
  319. }
  320. .weui-link {
  321. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  322. }
  323. .weui-link,
  324. .weui-link:visited {
  325. color: var(--weui-LINK)
  326. }
  327. .weui-btn {
  328. position: relative;
  329. display: block;
  330. width: 184px;
  331. margin-left: auto;
  332. margin-right: auto;
  333. padding: 8px 24px;
  334. box-sizing: border-box;
  335. font-weight: 700;
  336. font-size: 17px;
  337. text-align: center;
  338. text-decoration: none;
  339. color: #fff;
  340. line-height: 1.41176471;
  341. border-radius: 4px;
  342. overflow: hidden;
  343. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  344. }
  345. .weui-btn_block {
  346. width: auto
  347. }
  348. .weui-btn_inline {
  349. display: inline-block
  350. }
  351. .weui-btn_default {
  352. background-color: var(--weui-BTN-DEFAULT-BG)
  353. }
  354. .weui-btn_default,
  355. .weui-btn_default:not(.weui-btn_disabled):visited {
  356. color: var(--weui-BTN-DEFAULT-COLOR)
  357. }
  358. .weui-btn_default:not(.weui-btn_disabled):active {
  359. background-color: var(--weui-BTN-DEFAULT-ACTIVE-BG)
  360. }
  361. .weui-btn_primary {
  362. background-color: var(--weui-BRAND)
  363. }
  364. .weui-btn_primary:not(.weui-btn_disabled):visited {
  365. color: #fff
  366. }
  367. .weui-btn_primary:not(.weui-btn_disabled):active {
  368. background-color: var(--weui-TAG-TEXT-GREEN)
  369. }
  370. .weui-btn_warn {
  371. background-color: var(--weui-BTN-DEFAULT-BG)
  372. }
  373. .weui-btn_warn,
  374. .weui-btn_warn:not(.weui-btn_disabled):visited {
  375. color: var(--weui-RED)
  376. }
  377. .weui-btn_warn:not(.weui-btn_disabled):active {
  378. background-color: var(--weui-BTN-DEFAULT-ACTIVE-BG)
  379. }
  380. .weui-btn_disabled {
  381. color: var(--weui-BTN-DISABLED-FONT-COLOR);
  382. background-color: var(--weui-BTN-DEFAULT-BG)
  383. }
  384. .weui-btn_loading .weui-loading {
  385. margin: -.2em .34em 0 0
  386. }
  387. .weui-btn_loading.weui-btn_primary {
  388. background-color: var(--weui-TAG-TEXT-GREEN);
  389. color: var(--weui-WHITE)
  390. }
  391. .weui-btn_loading.weui-btn_default,
  392. .weui-btn_loading.weui-btn_warn {
  393. background-color: var(--weui-BTN-DEFAULT-ACTIVE-BG)
  394. }
  395. .weui-btn_cell {
  396. position: relative;
  397. display: block;
  398. margin-left: auto;
  399. margin-right: auto;
  400. box-sizing: border-box;
  401. font-size: 17px;
  402. text-align: center;
  403. text-decoration: none;
  404. color: #fff;
  405. line-height: 1.41176471;
  406. padding: 16px;
  407. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  408. overflow: hidden;
  409. background-color: var(--weui-BG-5)
  410. }
  411. .weui-btn_cell+.weui-btn_cell {
  412. margin-top: 16px
  413. }
  414. .weui-btn_cell:active {
  415. background-color: var(--weui-BG-COLOR-ACTIVE)
  416. }
  417. .weui-btn_cell__icon {
  418. display: inline-block;
  419. vertical-align: middle;
  420. width: 24px;
  421. height: 24px;
  422. margin: -.2em .34em 0 0
  423. }
  424. .weui-btn_cell-default {
  425. color: var(--weui-FG-0)
  426. }
  427. .weui-btn_cell-primary {
  428. color: var(--weui-LINK)
  429. }
  430. .weui-btn_cell-warn {
  431. color: var(--weui-RED)
  432. }
  433. button.weui-btn,
  434. input.weui-btn {
  435. border-width: 0;
  436. outline: 0;
  437. -webkit-appearance: none
  438. }
  439. button.weui-btn:focus,
  440. input.weui-btn:focus {
  441. outline: 0
  442. }
  443. button.weui-btn_inline,
  444. button.weui-btn_mini,
  445. input.weui-btn_inline,
  446. input.weui-btn_mini {
  447. width: auto
  448. }
  449. .weui-btn_mini {
  450. display: inline-block;
  451. width: auto;
  452. padding: 0 .75em;
  453. line-height: 2;
  454. font-size: 16px
  455. }
  456. .weui-btn:not(.weui-btn_mini)+.weui-btn:not(.weui-btn_mini) {
  457. margin-top: 16px
  458. }
  459. .weui-btn.weui-btn_inline+.weui-btn.weui-btn_inline {
  460. margin-top: auto;
  461. margin-left: 16px
  462. }
  463. .weui-btn-area {
  464. margin: 48px 16px 8px
  465. }
  466. .weui-btn-area_inline {
  467. display: -webkit-box;
  468. display: -webkit-flex;
  469. display: flex
  470. }
  471. .weui-btn-area_inline .weui-btn {
  472. margin-top: auto;
  473. margin-right: 16px;
  474. width: 100%;
  475. -webkit-box-flex: 1;
  476. -webkit-flex: 1;
  477. flex: 1
  478. }
  479. .weui-btn-area_inline .weui-btn:last-child {
  480. margin-right: 0
  481. }
  482. .weui-btn_reset {
  483. background: transparent;
  484. border: 0;
  485. padding: 0;
  486. outline: 0
  487. }
  488. .weui-btn_icon {
  489. font-size: 0
  490. }
  491. .weui-btn_icon:active [class*=weui-icon-] {
  492. color: var(--weui-FG-1)
  493. }
  494. .weui-cells {
  495. margin-top: 8px;
  496. background-color: var(--weui-BG-2);
  497. line-height: 1.41176471;
  498. font-size: 17px;
  499. overflow: hidden;
  500. position: relative
  501. }
  502. .weui-cells:before {
  503. top: 0;
  504. border-top: 1px solid var(--weui-FG-3);
  505. -webkit-transform-origin: 0 0;
  506. transform-origin: 0 0;
  507. -webkit-transform: scaleY(.5);
  508. transform: scaleY(.5)
  509. }
  510. .weui-cells:after,
  511. .weui-cells:before {
  512. content: " ";
  513. position: absolute;
  514. left: 0;
  515. right: 0;
  516. height: 1px;
  517. color: var(--weui-FG-3);
  518. z-index: 2
  519. }
  520. .weui-cells:after {
  521. bottom: 0;
  522. border-bottom: 1px solid var(--weui-FG-3);
  523. -webkit-transform-origin: 0 100%;
  524. transform-origin: 0 100%;
  525. -webkit-transform: scaleY(.5);
  526. transform: scaleY(.5)
  527. }
  528. .weui-cells__title {
  529. margin-top: 16px;
  530. margin-bottom: 3px;
  531. padding-left: 16px;
  532. padding-right: 16px;
  533. color: var(--weui-FG-1);
  534. font-size: 14px;
  535. line-height: 1.4
  536. }
  537. .weui-cells__title+.weui-cells {
  538. margin-top: 0
  539. }
  540. .weui-cells__tips {
  541. margin-top: 8px;
  542. color: var(--weui-FG-1);
  543. padding-left: 16px;
  544. padding-right: 16px;
  545. font-size: 14px;
  546. line-height: 1.4
  547. }
  548. .weui-cells__tips a,
  549. .weui-cells__tips navigator {
  550. color: var(--weui-LINK)
  551. }
  552. .weui-cells__tips navigator {
  553. display: inline
  554. }
  555. .weui-cell {
  556. padding: 16px;
  557. position: relative;
  558. display: -webkit-box;
  559. display: -webkit-flex;
  560. display: flex;
  561. -webkit-box-align: center;
  562. -webkit-align-items: center;
  563. align-items: center
  564. }
  565. .weui-cell:before {
  566. content: " ";
  567. position: absolute;
  568. left: 0;
  569. top: 0;
  570. right: 0;
  571. height: 1px;
  572. border-top: 1px solid var(--weui-FG-3);
  573. color: var(--weui-FG-3);
  574. -webkit-transform-origin: 0 0;
  575. transform-origin: 0 0;
  576. -webkit-transform: scaleY(.5);
  577. transform: scaleY(.5);
  578. left: 16px;
  579. z-index: 2
  580. }
  581. .weui-cell:first-child:before {
  582. display: none
  583. }
  584. .weui-cell_active:active {
  585. background-color: var(--weui-BG-COLOR-ACTIVE)
  586. }
  587. .weui-cell_primary {
  588. -webkit-box-align: start;
  589. -webkit-align-items: flex-start;
  590. align-items: flex-start
  591. }
  592. .weui-cell__bd {
  593. -webkit-box-flex: 1;
  594. -webkit-flex: 1;
  595. flex: 1
  596. }
  597. .weui-cell__ft {
  598. text-align: right;
  599. color: var(--weui-FG-1)
  600. }
  601. .weui-cell_swiped {
  602. display: block;
  603. padding: 0
  604. }
  605. .weui-cell_swiped>.weui-cell__bd {
  606. position: relative;
  607. z-index: 1;
  608. background-color: var(--weui-BG-2)
  609. }
  610. .weui-cell_swiped>.weui-cell__ft {
  611. position: absolute;
  612. right: 0;
  613. top: 0;
  614. bottom: 0;
  615. display: -webkit-box;
  616. display: -webkit-flex;
  617. display: flex;
  618. color: #fff
  619. }
  620. .weui-swiped-btn {
  621. display: block;
  622. padding: 16px 1em;
  623. line-height: 1.41176471;
  624. color: inherit
  625. }
  626. .weui-swiped-btn_default {
  627. background-color: var(--weui-BG-0)
  628. }
  629. .weui-swiped-btn_warn {
  630. background-color: var(--weui-RED)
  631. }
  632. .weui-cell_access {
  633. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  634. color: inherit
  635. }
  636. .weui-cell_access:active {
  637. background-color: var(--weui-BG-COLOR-ACTIVE)
  638. }
  639. .weui-cell_access .weui-cell__ft {
  640. padding-right: 22px;
  641. position: relative
  642. }
  643. .weui-cell_access .weui-cell__ft:after {
  644. content: " ";
  645. width: 12px;
  646. height: 24px;
  647. -webkit-mask-position: 0 0;
  648. mask-position: 0 0;
  649. -webkit-mask-repeat: no-repeat;
  650. mask-repeat: no-repeat;
  651. -webkit-mask-size: 100%;
  652. mask-size: 100%;
  653. background-color: currentColor;
  654. color: var(--weui-FG-2);
  655. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  656. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  657. position: absolute;
  658. top: 50%;
  659. right: 0;
  660. margin-top: -12px
  661. }
  662. .weui-cell_link {
  663. color: var(--weui-LINK);
  664. font-size: 17px
  665. }
  666. .weui-cell_link:first-child:before {
  667. display: block
  668. }
  669. .weui-check__label {
  670. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  671. }
  672. .weui-check__label:active {
  673. background-color: var(--weui-BG-COLOR-ACTIVE)
  674. }
  675. .weui-check {
  676. position: absolute;
  677. left: -9999px
  678. }
  679. .weui-cells_radio .weui-cell__ft {
  680. padding-left: 16px;
  681. font-size: 0
  682. }
  683. .weui-cells_radio .weui-check+.weui-icon-checked {
  684. min-width: 16px;
  685. color: transparent
  686. }
  687. .weui-cells_radio .weui-check:checked+.weui-icon-checked,
  688. .weui-cells_radio .weui-check[aria-checked=true]+.weui-icon-checked {
  689. color: var(--weui-BRAND);
  690. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.657%2018.435L3%2012.778l1.414-1.414%204.95%204.95L20.678%205l1.414%201.414-12.02%2012.021a1%201%200%2001-1.415%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  691. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.657%2018.435L3%2012.778l1.414-1.414%204.95%204.95L20.678%205l1.414%201.414-12.02%2012.021a1%201%200%2001-1.415%200z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
  692. }
  693. .weui-cells_checkbox .weui-check__label:before {
  694. left: 55px
  695. }
  696. .weui-cells_checkbox .weui-cell__hd {
  697. padding-right: 16px;
  698. font-size: 0
  699. }
  700. .weui-cells_checkbox .weui-icon-checked {
  701. color: var(--weui-FG-2);
  702. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E);
  703. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E)
  704. }
  705. .weui-cells_checkbox .weui-check:checked+.weui-icon-checked,
  706. .weui-cells_checkbox .weui-check[aria-checked=true]+.weui-icon-checked {
  707. color: var(--weui-BRAND);
  708. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E);
  709. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E)
  710. }
  711. .weui-label {
  712. display: block;
  713. width: 105px;
  714. word-wrap: break-word;
  715. word-break: break-all
  716. }
  717. .weui-input {
  718. width: 100%;
  719. border: 0;
  720. outline: 0;
  721. -webkit-appearance: none;
  722. background-color: transparent;
  723. font-size: inherit;
  724. color: inherit;
  725. height: 1.41176471em;
  726. line-height: 1.41176471
  727. }
  728. .weui-input::-webkit-inner-spin-button,
  729. .weui-input::-webkit-outer-spin-button {
  730. -webkit-appearance: none;
  731. margin: 0
  732. }
  733. .weui-input:focus:not(:placeholder-shown)+.weui-btn_input-clear {
  734. display: inline
  735. }
  736. .weui-input::-webkit-input-placeholder,
  737. .weui-input__placeholder {
  738. color: var(--weui-FG-2)
  739. }
  740. .weui-input::placeholder,
  741. .weui-input__placeholder {
  742. color: var(--weui-FG-2)
  743. }
  744. .weui-textarea {
  745. display: block;
  746. border: 0;
  747. resize: none;
  748. background: transparent;
  749. width: 100%;
  750. color: inherit;
  751. font-size: 1em;
  752. line-height: inherit;
  753. outline: 0
  754. }
  755. .weui-textarea-counter {
  756. color: var(--weui-FG-2);
  757. text-align: right;
  758. font-size: 14px
  759. }
  760. .weui-cell_warn .weui-textarea-counter {
  761. color: var(--weui-RED)
  762. }
  763. .weui-cells_form .weui-cell_disabled:active,
  764. .weui-cells_form .weui-cell_readonly:active,
  765. .weui-cells_form .weui-cell_switch:active,
  766. .weui-cells_form .weui-cell_vcode:active {
  767. background-color: transparent
  768. }
  769. .weui-cells_form .weui-cell__ft {
  770. font-size: 0
  771. }
  772. .weui-cells_form .weui-icon-warn {
  773. display: none
  774. }
  775. .weui-cells_form input,
  776. .weui-cells_form label[for],
  777. .weui-cells_form textarea {
  778. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  779. }
  780. .weui-cell_warn {
  781. color: var(--weui-RED)
  782. }
  783. .weui-cell_warn .weui-icon-warn {
  784. display: inline-block
  785. }
  786. .weui-cell_disabled .weui-input:disabled,
  787. .weui-cell_disabled .weui-textarea:disabled,
  788. .weui-cell_readonly .weui-input:disabled,
  789. .weui-cell_readonly .weui-textarea:disabled {
  790. opacity: 1;
  791. -webkit-text-fill-color: var(--weui-FG-1)
  792. }
  793. .weui-cell_disabled .weui-input[disabled],
  794. .weui-cell_disabled .weui-input[readonly],
  795. .weui-cell_disabled .weui-textarea[disabled],
  796. .weui-cell_disabled .weui-textarea[readonly],
  797. .weui-cell_readonly .weui-input[disabled],
  798. .weui-cell_readonly .weui-input[readonly],
  799. .weui-cell_readonly .weui-textarea[disabled],
  800. .weui-cell_readonly .weui-textarea[readonly] {
  801. color: var(--weui-FG-1)
  802. }
  803. .weui-btn_input-clear {
  804. display: none;
  805. padding-left: 8px
  806. }
  807. .weui-btn_input-clear [class*=weui-icon-] {
  808. width: 18px
  809. }
  810. .weui-form-preview {
  811. position: relative;
  812. background-color: var(--weui-BG-2)
  813. }
  814. .weui-form-preview:before {
  815. top: 0;
  816. border-top: 1px solid var(--weui-FG-3);
  817. -webkit-transform-origin: 0 0;
  818. transform-origin: 0 0;
  819. -webkit-transform: scaleY(.5);
  820. transform: scaleY(.5)
  821. }
  822. .weui-form-preview:after,
  823. .weui-form-preview:before {
  824. content: " ";
  825. position: absolute;
  826. left: 0;
  827. right: 0;
  828. height: 1px;
  829. color: var(--weui-FG-3)
  830. }
  831. .weui-form-preview:after {
  832. bottom: 0;
  833. border-bottom: 1px solid var(--weui-FG-3);
  834. -webkit-transform-origin: 0 100%;
  835. transform-origin: 0 100%;
  836. -webkit-transform: scaleY(.5);
  837. transform: scaleY(.5)
  838. }
  839. .weui-form-preview__hd {
  840. position: relative;
  841. padding: 16px;
  842. text-align: right;
  843. line-height: 2.5em
  844. }
  845. .weui-form-preview__hd:after {
  846. content: " ";
  847. position: absolute;
  848. left: 0;
  849. bottom: 0;
  850. right: 0;
  851. height: 1px;
  852. border-bottom: 1px solid var(--weui-FG-3);
  853. color: var(--weui-FG-3);
  854. -webkit-transform-origin: 0 100%;
  855. transform-origin: 0 100%;
  856. -webkit-transform: scaleY(.5);
  857. transform: scaleY(.5);
  858. left: 16px
  859. }
  860. .weui-form-preview__hd .weui-form-preview__value {
  861. font-style: normal;
  862. font-size: 1.6em
  863. }
  864. .weui-form-preview__bd {
  865. padding: 16px;
  866. font-size: .9em;
  867. text-align: right;
  868. color: var(--weui-FG-1);
  869. line-height: 2
  870. }
  871. .weui-form-preview__ft {
  872. position: relative;
  873. line-height: 50px;
  874. display: -webkit-box;
  875. display: -webkit-flex;
  876. display: flex
  877. }
  878. .weui-form-preview__ft:before {
  879. content: " ";
  880. position: absolute;
  881. left: 0;
  882. top: 0;
  883. right: 0;
  884. height: 1px;
  885. border-top: 1px solid var(--weui-DIALOG-LINE-COLOR);
  886. color: var(--weui-DIALOG-LINE-COLOR);
  887. -webkit-transform-origin: 0 0;
  888. transform-origin: 0 0;
  889. -webkit-transform: scaleY(.5);
  890. transform: scaleY(.5)
  891. }
  892. .weui-form-preview__item {
  893. overflow: hidden
  894. }
  895. .weui-form-preview__label {
  896. float: left;
  897. margin-right: 1em;
  898. min-width: 4em;
  899. color: var(--weui-FG-1);
  900. text-align: justify;
  901. text-align-last: justify
  902. }
  903. .weui-form-preview__value {
  904. display: block;
  905. overflow: hidden;
  906. word-break: normal;
  907. word-wrap: break-word;
  908. color: var(--weui-FG-0)
  909. }
  910. .weui-form-preview__btn {
  911. position: relative;
  912. display: block;
  913. -webkit-box-flex: 1;
  914. -webkit-flex: 1;
  915. flex: 1;
  916. color: var(--weui-LINK);
  917. text-align: center;
  918. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  919. }
  920. button.weui-form-preview__btn {
  921. background-color: transparent;
  922. border: 0;
  923. outline: 0;
  924. line-height: inherit;
  925. font-size: inherit
  926. }
  927. .weui-form-preview__btn:active {
  928. background-color: var(--weui-BG-COLOR-ACTIVE)
  929. }
  930. .weui-form-preview__btn:after {
  931. content: " ";
  932. position: absolute;
  933. left: 0;
  934. top: 0;
  935. width: 1px;
  936. bottom: 0;
  937. border-left: 1px solid var(--weui-DIALOG-LINE-COLOR);
  938. color: var(--weui-DIALOG-LINE-COLOR);
  939. -webkit-transform-origin: 0 0;
  940. transform-origin: 0 0;
  941. -webkit-transform: scaleX(.5);
  942. transform: scaleX(.5)
  943. }
  944. .weui-form-preview__btn:first-child:after {
  945. display: none
  946. }
  947. .weui-form-preview__btn_default {
  948. color: var(--weui-FG-HALF)
  949. }
  950. .weui-form-preview__btn_primary {
  951. color: var(--weui-LINK)
  952. }
  953. .weui-cell_select {
  954. padding: 0
  955. }
  956. .weui-cell_select .weui-select {
  957. padding-right: 30px
  958. }
  959. .weui-cell_select .weui-cell__bd:after {
  960. content: " ";
  961. width: 12px;
  962. height: 24px;
  963. -webkit-mask-position: 0 0;
  964. mask-position: 0 0;
  965. -webkit-mask-repeat: no-repeat;
  966. mask-repeat: no-repeat;
  967. -webkit-mask-size: 100%;
  968. mask-size: 100%;
  969. background-color: currentColor;
  970. color: var(--weui-FG-2);
  971. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  972. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  973. position: absolute;
  974. top: 50%;
  975. right: 16px;
  976. margin-top: -12px
  977. }
  978. .weui-select {
  979. -webkit-appearance: none;
  980. border: 0;
  981. outline: 0;
  982. background-color: transparent;
  983. width: 100%;
  984. font-size: inherit;
  985. height: 56px;
  986. line-height: 56px;
  987. position: relative;
  988. z-index: 1;
  989. padding-left: 16px;
  990. color: var(--weui-FG-0)
  991. }
  992. .weui-cell_select-before {
  993. padding-right: 16px
  994. }
  995. .weui-cell_select-before .weui-select {
  996. width: 105px;
  997. box-sizing: border-box
  998. }
  999. .weui-cell_select-before .weui-cell__hd {
  1000. position: relative
  1001. }
  1002. .weui-cell_select-before .weui-cell__hd:after {
  1003. content: " ";
  1004. position: absolute;
  1005. right: 0;
  1006. top: 0;
  1007. width: 1px;
  1008. bottom: 0;
  1009. border-right: 1px solid var(--weui-FG-3);
  1010. color: var(--weui-FG-3);
  1011. -webkit-transform-origin: 100% 0;
  1012. transform-origin: 100% 0;
  1013. -webkit-transform: scaleX(.5);
  1014. transform: scaleX(.5)
  1015. }
  1016. .weui-cell_select-before .weui-cell__hd:before {
  1017. content: " ";
  1018. width: 12px;
  1019. height: 24px;
  1020. -webkit-mask-position: 0 0;
  1021. mask-position: 0 0;
  1022. -webkit-mask-repeat: no-repeat;
  1023. mask-repeat: no-repeat;
  1024. -webkit-mask-size: 100%;
  1025. mask-size: 100%;
  1026. background-color: currentColor;
  1027. color: var(--weui-FG-2);
  1028. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  1029. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  1030. position: absolute;
  1031. top: 50%;
  1032. right: 16px;
  1033. margin-top: -12px
  1034. }
  1035. .weui-cell_select-before .weui-cell__bd {
  1036. padding-left: 16px
  1037. }
  1038. .weui-cell_select-before .weui-cell__bd:after {
  1039. display: none
  1040. }
  1041. .weui-cell_select-before.weui-cell_access .weui-cell__hd {
  1042. line-height: 56px;
  1043. padding-left: 32px
  1044. }
  1045. .weui-cell_select-after {
  1046. padding-left: 16px
  1047. }
  1048. .weui-cell_select-after .weui-select {
  1049. padding-left: 0
  1050. }
  1051. .weui-cell_select-after.weui-cell_access .weui-cell__bd {
  1052. line-height: 56px
  1053. }
  1054. .weui-cell_vcode {
  1055. padding-top: 0;
  1056. padding-right: 0;
  1057. padding-bottom: 0
  1058. }
  1059. .weui-vcode-btn,
  1060. .weui-vcode-img {
  1061. margin-left: 5px;
  1062. height: 56px;
  1063. vertical-align: middle
  1064. }
  1065. .weui-vcode-btn {
  1066. display: inline-block;
  1067. padding: 0 .6em 0 .7em;
  1068. line-height: 56px;
  1069. font-size: 17px;
  1070. color: var(--weui-LINK);
  1071. position: relative
  1072. }
  1073. .weui-vcode-btn:before {
  1074. content: " ";
  1075. position: absolute;
  1076. left: 0;
  1077. top: 0;
  1078. width: 1px;
  1079. bottom: 0;
  1080. border-left: 1px solid var(--weui-FG-3);
  1081. color: var(--weui-FG-3);
  1082. -webkit-transform-origin: 0 0;
  1083. transform-origin: 0 0;
  1084. -webkit-transform: scaleX(.5);
  1085. transform: scaleX(.5)
  1086. }
  1087. button.weui-vcode-btn {
  1088. background-color: transparent;
  1089. border: 0;
  1090. outline: 0
  1091. }
  1092. .weui-vcode-btn:active {
  1093. color: #767676
  1094. }
  1095. .weui-gallery {
  1096. display: none;
  1097. position: fixed;
  1098. top: 0;
  1099. right: 0;
  1100. bottom: 0;
  1101. left: 0;
  1102. background-color: #000;
  1103. z-index: 1000
  1104. }
  1105. .weui-gallery__img,
  1106. .weui-gallery__opr {
  1107. position: absolute;
  1108. left: 0;
  1109. left: constant(safe-area-inset-left);
  1110. left: env(safe-area-inset-left);
  1111. right: 0;
  1112. right: constant(safe-area-inset-right);
  1113. right: env(safe-area-inset-right)
  1114. }
  1115. .weui-gallery__img {
  1116. top: 0;
  1117. top: constant(safe-area-inset-top);
  1118. top: env(safe-area-inset-top);
  1119. bottom: 60px;
  1120. bottom: calc(60px + constant(safe-area-inset-bottom));
  1121. bottom: calc(60px + env(safe-area-inset-bottom));
  1122. background: 50% no-repeat;
  1123. background-size: contain
  1124. }
  1125. .weui-gallery__opr {
  1126. position: absolute;
  1127. bottom: 0;
  1128. padding-bottom: 0;
  1129. padding-bottom: constant(safe-area-inset-bottom);
  1130. padding-bottom: env(safe-area-inset-bottom);
  1131. background-color: #0d0d0d;
  1132. color: var(--weui-WHITE);
  1133. line-height: 60px;
  1134. text-align: center
  1135. }
  1136. .weui-gallery__del {
  1137. display: block
  1138. }
  1139. .weui-cell_switch {
  1140. padding-top: 12px;
  1141. padding-bottom: 12px
  1142. }
  1143. .weui-switch {
  1144. -webkit-appearance: none;
  1145. appearance: none
  1146. }
  1147. .weui-switch,
  1148. .weui-switch-cp__box {
  1149. position: relative;
  1150. width: 52px;
  1151. height: 32px;
  1152. border: 2px solid var(--weui-FG-3);
  1153. outline: 0;
  1154. border-radius: 16px;
  1155. box-sizing: border-box;
  1156. -webkit-transition: background-color .1s, border .1s;
  1157. transition: background-color .1s, border .1s
  1158. }
  1159. .weui-switch-cp__box:before,
  1160. .weui-switch:before {
  1161. content: " ";
  1162. position: absolute;
  1163. top: 0;
  1164. left: 0;
  1165. bottom: 0;
  1166. right: 0;
  1167. border-radius: 15px;
  1168. background-color: var(--weui-BG-3);
  1169. -webkit-transition: -webkit-transform .35s cubic-bezier(.45, 1, .4, 1);
  1170. transition: -webkit-transform .35s cubic-bezier(.45, 1, .4, 1);
  1171. transition: transform .35s cubic-bezier(.45, 1, .4, 1);
  1172. transition: transform .35s cubic-bezier(.45, 1, .4, 1), -webkit-transform .35s cubic-bezier(.45, 1, .4, 1)
  1173. }
  1174. .weui-switch-cp__box:after,
  1175. .weui-switch:after {
  1176. content: " ";
  1177. position: absolute;
  1178. top: 0;
  1179. left: 0;
  1180. width: 28px;
  1181. height: 28px;
  1182. border-radius: 15px;
  1183. background-color: #fff;
  1184. box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
  1185. -webkit-transition: -webkit-transform .35s cubic-bezier(.4, .4, .25, 1.35);
  1186. transition: -webkit-transform .35s cubic-bezier(.4, .4, .25, 1.35);
  1187. transition: transform .35s cubic-bezier(.4, .4, .25, 1.35);
  1188. transition: transform .35s cubic-bezier(.4, .4, .25, 1.35), -webkit-transform .35s cubic-bezier(.4, .4, .25, 1.35)
  1189. }
  1190. .weui-switch-cp__input:checked+.weui-switch-cp__box,
  1191. .weui-switch-cp__input[aria-checked=true]+.weui-switch-cp__box,
  1192. .weui-switch:checked {
  1193. border-color: var(--weui-BRAND);
  1194. background-color: var(--weui-BRAND)
  1195. }
  1196. .weui-switch-cp__input:checked+.weui-switch-cp__box:before,
  1197. .weui-switch-cp__input[aria-checked=true]+.weui-switch-cp__box:before,
  1198. .weui-switch:checked:before {
  1199. -webkit-transform: scale(0);
  1200. transform: scale(0)
  1201. }
  1202. .weui-switch-cp__input:checked+.weui-switch-cp__box:after,
  1203. .weui-switch-cp__input[aria-checked=true]+.weui-switch-cp__box:after,
  1204. .weui-switch:checked:after {
  1205. -webkit-transform: translateX(20px);
  1206. transform: translateX(20px)
  1207. }
  1208. .weui-switch-cp__input {
  1209. position: absolute;
  1210. left: -9999px
  1211. }
  1212. .weui-switch-cp__box {
  1213. display: block
  1214. }
  1215. .weui-uploader {
  1216. -webkit-box-flex: 1;
  1217. -webkit-flex: 1;
  1218. flex: 1
  1219. }
  1220. .weui-uploader__hd {
  1221. display: -webkit-box;
  1222. display: -webkit-flex;
  1223. display: flex;
  1224. padding-bottom: 16px;
  1225. -webkit-box-align: center;
  1226. -webkit-align-items: center;
  1227. align-items: center
  1228. }
  1229. .weui-uploader__title {
  1230. -webkit-box-flex: 1;
  1231. -webkit-flex: 1;
  1232. flex: 1
  1233. }
  1234. .weui-uploader__info {
  1235. color: var(--weui-FG-2)
  1236. }
  1237. .weui-uploader__bd {
  1238. margin-bottom: -8px;
  1239. margin-right: -8px;
  1240. overflow: hidden
  1241. }
  1242. .weui-uploader__files {
  1243. list-style: none
  1244. }
  1245. .weui-uploader__file {
  1246. float: left;
  1247. margin-right: 8px;
  1248. margin-bottom: 8px;
  1249. width: 96px;
  1250. height: 96px;
  1251. background: no-repeat 50%;
  1252. background-size: cover
  1253. }
  1254. .weui-uploader__file_status {
  1255. position: relative
  1256. }
  1257. .weui-uploader__file_status:before {
  1258. content: " ";
  1259. position: absolute;
  1260. top: 0;
  1261. right: 0;
  1262. bottom: 0;
  1263. left: 0;
  1264. background-color: rgba(0, 0, 0, .5)
  1265. }
  1266. .weui-uploader__file_status .weui-uploader__file-content {
  1267. display: block
  1268. }
  1269. .weui-uploader__file-content {
  1270. display: none;
  1271. position: absolute;
  1272. top: 50%;
  1273. left: 50%;
  1274. -webkit-transform: translate(-50%, -50%);
  1275. transform: translate(-50%, -50%);
  1276. color: var(--weui-WHITE)
  1277. }
  1278. .weui-uploader__file-content .weui-icon-warn {
  1279. display: inline-block
  1280. }
  1281. .weui-uploader__input-box {
  1282. float: left;
  1283. position: relative;
  1284. margin-right: 8px;
  1285. margin-bottom: 8px;
  1286. width: 96px;
  1287. height: 96px;
  1288. box-sizing: border-box;
  1289. background-color: #ededed
  1290. }
  1291. [data-weui-theme=dark] .weui-uploader__input-box {
  1292. background-color: #2e2e2e
  1293. }
  1294. .weui-uploader__input-box:after,
  1295. .weui-uploader__input-box:before {
  1296. content: " ";
  1297. position: absolute;
  1298. top: 50%;
  1299. left: 50%;
  1300. -webkit-transform: translate(-50%, -50%);
  1301. transform: translate(-50%, -50%);
  1302. background-color: #a3a3a3
  1303. }
  1304. [data-weui-theme=dark] .weui-uploader__input-box:after,
  1305. [data-weui-theme=dark] .weui-uploader__input-box:before {
  1306. background-color: #6d6d6d
  1307. }
  1308. .weui-uploader__input-box:before {
  1309. width: 2px;
  1310. height: 32px
  1311. }
  1312. .weui-uploader__input-box:after {
  1313. width: 32px;
  1314. height: 2px
  1315. }
  1316. .weui-uploader__input-box:active:after,
  1317. .weui-uploader__input-box:active:before {
  1318. opacity: .7
  1319. }
  1320. .weui-uploader__input {
  1321. position: absolute;
  1322. z-index: 1;
  1323. top: 0;
  1324. left: 0;
  1325. width: 100%;
  1326. height: 100%;
  1327. opacity: 0;
  1328. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  1329. }
  1330. .weui-msg {
  1331. padding-top: 48px;
  1332. padding: calc(48px + constant(safe-area-inset-top)) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  1333. padding: calc(48px + env(safe-area-inset-top)) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  1334. text-align: center;
  1335. line-height: 1.4;
  1336. min-height: 100%;
  1337. box-sizing: border-box;
  1338. display: -webkit-box;
  1339. display: -webkit-flex;
  1340. display: flex;
  1341. -webkit-box-orient: vertical;
  1342. -webkit-box-direction: normal;
  1343. -webkit-flex-direction: column;
  1344. flex-direction: column;
  1345. background-color: var(--weui-BG-2)
  1346. }
  1347. .weui-msg a:not(.weui-btn) {
  1348. color: var(--weui-LINK);
  1349. display: inline-block;
  1350. vertical-align: baseline
  1351. }
  1352. .weui-msg__icon-area {
  1353. margin-bottom: 32px
  1354. }
  1355. .weui-msg__text-area {
  1356. margin-bottom: 32px;
  1357. padding: 0 32px;
  1358. -webkit-box-flex: 1;
  1359. -webkit-flex: 1;
  1360. flex: 1;
  1361. line-height: 1.6
  1362. }
  1363. .weui-msg__text-area:first-child {
  1364. padding-top: 96px
  1365. }
  1366. .weui-msg__title {
  1367. font-weight: 700;
  1368. font-size: 22px
  1369. }
  1370. .weui-msg__desc,
  1371. .weui-msg__title {
  1372. margin-bottom: 16px;
  1373. color: var(--weui-FG-0);
  1374. word-wrap: break-word;
  1375. word-break: break-all
  1376. }
  1377. .weui-msg__desc {
  1378. font-size: 17px
  1379. }
  1380. .weui-msg__desc-primary {
  1381. font-size: 14px;
  1382. color: var(--weui-FG-1);
  1383. word-wrap: break-word;
  1384. word-break: break-all;
  1385. margin-bottom: 16px
  1386. }
  1387. .weui-msg__opr-area {
  1388. margin-bottom: 16px
  1389. }
  1390. .weui-msg__opr-area .weui-btn-area {
  1391. margin: 0
  1392. }
  1393. .weui-msg__opr-area .weui-btn+.weui-btn {
  1394. margin-bottom: 16px
  1395. }
  1396. .weui-msg__opr-area:last-child {
  1397. margin-bottom: 96px
  1398. }
  1399. .weui-msg__opr-area+.weui-msg__extra-area {
  1400. margin-top: 48px
  1401. }
  1402. .weui-msg__tips-area {
  1403. margin-bottom: 16px;
  1404. padding: 0 40px
  1405. }
  1406. .weui-msg__opr-area+.weui-msg__tips-area {
  1407. margin-bottom: 48px
  1408. }
  1409. .weui-msg__tips-area:last-child {
  1410. margin-bottom: 64px
  1411. }
  1412. .weui-msg__extra-area,
  1413. .weui-msg__tips {
  1414. font-size: 12px;
  1415. color: var(--weui-FG-1)
  1416. }
  1417. .weui-msg__extra-area {
  1418. margin-bottom: 24px
  1419. }
  1420. .weui-msg__extra-area a,
  1421. .weui-msg__extra-area navigator {
  1422. color: var(--weui-LINK)
  1423. }
  1424. .weui-msg__extra-area navigator {
  1425. display: inline
  1426. }
  1427. .weui-cells__group_form:first-child .weui-cells__title {
  1428. margin-top: 0
  1429. }
  1430. .weui-cells__group_form .weui-cells__title {
  1431. margin-top: 24px;
  1432. margin-bottom: 8px;
  1433. padding: 0 32px
  1434. }
  1435. .weui-cells__group_form .weui-cell:before,
  1436. .weui-cells__group_form .weui-cells:before {
  1437. left: 32px;
  1438. right: 32px
  1439. }
  1440. .weui-cells__group_form .weui-cells_checkbox .weui-check__label:before {
  1441. left: 72px
  1442. }
  1443. .weui-cells__group_form .weui-cells:after {
  1444. left: 32px;
  1445. right: 32px
  1446. }
  1447. .weui-cells__group_form .weui-cell {
  1448. padding: 16px 32px
  1449. }
  1450. .weui-cells__group_form .weui-cell:not(.weui-cell_link) {
  1451. color: var(--weui-FG-0)
  1452. }
  1453. .weui-cells__group_form .weui-cell__hd {
  1454. padding-right: 16px
  1455. }
  1456. .weui-cells__group_form .weui-cell__ft {
  1457. padding-left: 16px
  1458. }
  1459. .weui-cells__group_form .weui-cell_warn input {
  1460. color: var(--weui-RED)
  1461. }
  1462. .weui-cells__group_form .weui-label {
  1463. max-width: 5em;
  1464. margin-right: 8px
  1465. }
  1466. .weui-cells__group_form .weui-cells__tips {
  1467. margin-top: 8px;
  1468. padding: 0 32px;
  1469. color: rgba(0, 0, 0, .3)
  1470. }
  1471. .weui-cells__group_form .weui-cells__tips a {
  1472. font-weight: 700
  1473. }
  1474. .weui-cells__group_form .weui-cell_vcode {
  1475. padding: 12px 32px
  1476. }
  1477. .weui-cells__group_form .weui-vcode-btn {
  1478. font-size: 16px;
  1479. padding: 0 12px;
  1480. margin-left: 0;
  1481. height: auto;
  1482. width: auto;
  1483. line-height: 2em;
  1484. color: var(--weui-BTN-DEFAULT-COLOR);
  1485. background-color: var(--weui-BTN-DEFAULT-BG)
  1486. }
  1487. .weui-cells__group_form .weui-vcode-btn:before {
  1488. display: none
  1489. }
  1490. .weui-cells__group_form .weui-cell_select {
  1491. padding: 0
  1492. }
  1493. .weui-cells__group_form .weui-cell_select .weui-select {
  1494. padding: 0 32px
  1495. }
  1496. .weui-cells__group_form .weui-cell_select .weui-cell__bd:after {
  1497. right: 32px
  1498. }
  1499. .weui-cells__group_form .weui-cell_select-before .weui-label {
  1500. margin-right: 24px
  1501. }
  1502. .weui-cells__group_form .weui-cell_select-before .weui-select {
  1503. padding-right: 24px;
  1504. box-sizing: initial
  1505. }
  1506. .weui-cells__group_form .weui-cell_select-after {
  1507. padding-left: 32px
  1508. }
  1509. .weui-cells__group_form .weui-cell_select-after .weui-select {
  1510. padding-left: 0
  1511. }
  1512. .weui-cells__group_form .weui-cell_switch {
  1513. padding: 12px 32px
  1514. }
  1515. .weui-form {
  1516. padding: 56px 0 0;
  1517. padding: calc(56px + constant(safe-area-inset-top)) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  1518. padding: calc(56px + env(safe-area-inset-top)) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  1519. display: -webkit-box;
  1520. display: -webkit-flex;
  1521. display: flex;
  1522. -webkit-box-orient: vertical;
  1523. -webkit-box-direction: normal;
  1524. -webkit-flex-direction: column;
  1525. flex-direction: column;
  1526. line-height: 1.4;
  1527. min-height: 100%;
  1528. box-sizing: border-box;
  1529. background-color: var(--weui-BG-2)
  1530. }
  1531. .weui-form .weui-footer,
  1532. .weui-form .weui-footer__link {
  1533. font-size: 14px
  1534. }
  1535. .weui-form .weui-agree {
  1536. padding: 0
  1537. }
  1538. .weui-form__text-area {
  1539. padding: 0 32px;
  1540. color: var(--weui-FG-0);
  1541. text-align: center
  1542. }
  1543. .weui-form__control-area {
  1544. -webkit-box-flex: 1;
  1545. -webkit-flex: 1;
  1546. flex: 1;
  1547. margin: 48px 0
  1548. }
  1549. .weui-form__tips-area {
  1550. overflow: hidden
  1551. }
  1552. .weui-form__extra-area,
  1553. .weui-form__tips-area {
  1554. margin-bottom: 24px;
  1555. text-align: center
  1556. }
  1557. .weui-form__opr-area {
  1558. margin-bottom: 64px
  1559. }
  1560. .weui-form__opr-area:last-child {
  1561. margin-bottom: 96px
  1562. }
  1563. .weui-form__title {
  1564. font-size: 22px;
  1565. font-weight: 700;
  1566. line-height: 1.36
  1567. }
  1568. .weui-form__desc {
  1569. font-size: 17px;
  1570. margin-top: 16px
  1571. }
  1572. .weui-form__tips {
  1573. color: var(--weui-FG-1);
  1574. font-size: 14px
  1575. }
  1576. .weui-form__tips a,
  1577. .weui-form__tips navigator {
  1578. color: var(--weui-LINK)
  1579. }
  1580. .weui-form__tips navigator {
  1581. display: inline
  1582. }
  1583. .weui-article {
  1584. padding: 24px 16px;
  1585. padding: 24px calc(16px + constant(safe-area-inset-right)) calc(24px + constant(safe-area-inset-bottom)) calc(16px + constant(safe-area-inset-left));
  1586. padding: 24px calc(16px + env(safe-area-inset-right)) calc(24px + env(safe-area-inset-bottom)) calc(16px + env(safe-area-inset-left));
  1587. font-size: 17px;
  1588. color: var(--weui-FG-0)
  1589. }
  1590. .weui-article__section {
  1591. margin-bottom: 1.5em
  1592. }
  1593. .weui-article__h1 {
  1594. font-size: 22px;
  1595. font-weight: 700;
  1596. margin-bottom: .9em;
  1597. line-height: 1.4
  1598. }
  1599. .weui-article__h2 {
  1600. font-size: 17px
  1601. }
  1602. .weui-article__h2,
  1603. .weui-article__h3 {
  1604. font-weight: 700;
  1605. margin-bottom: .34em;
  1606. line-height: 1.4
  1607. }
  1608. .weui-article__h3 {
  1609. font-size: 15px
  1610. }
  1611. .weui-article__p {
  1612. margin: 0 0 .8em
  1613. }
  1614. .weui-tabbar {
  1615. display: -webkit-box;
  1616. display: -webkit-flex;
  1617. display: flex;
  1618. position: relative;
  1619. z-index: 500;
  1620. background-color: var(--weui-BG-1)
  1621. }
  1622. .weui-tabbar:before {
  1623. content: " ";
  1624. position: absolute;
  1625. left: 0;
  1626. top: 0;
  1627. right: 0;
  1628. height: 1px;
  1629. border-top: 1px solid var(--weui-FG-3);
  1630. color: var(--weui-FG-3);
  1631. -webkit-transform-origin: 0 0;
  1632. transform-origin: 0 0;
  1633. -webkit-transform: scaleY(.5);
  1634. transform: scaleY(.5)
  1635. }
  1636. .weui-tabbar__item {
  1637. display: block;
  1638. -webkit-box-flex: 1;
  1639. -webkit-flex: 1;
  1640. flex: 1;
  1641. padding: 8px 0;
  1642. padding-bottom: calc(8px + constant(safe-area-inset-bottom));
  1643. padding-bottom: calc(8px + env(safe-area-inset-bottom));
  1644. font-size: 0;
  1645. color: var(--weui-FG-1);
  1646. text-align: center;
  1647. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  1648. }
  1649. .weui-tabbar__item:first-child {
  1650. padding-left: constant(safe-area-inset-left);
  1651. padding-left: env(safe-area-inset-left)
  1652. }
  1653. .weui-tabbar__item:last-child {
  1654. padding-right: constant(safe-area-inset-right);
  1655. padding-right: env(safe-area-inset-right)
  1656. }
  1657. .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon,
  1658. .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon>i,
  1659. .weui-tabbar__item.weui-bar__item_on .weui-tabbar__label {
  1660. color: var(--weui-BRAND)
  1661. }
  1662. .weui-tabbar__icon {
  1663. display: inline-block;
  1664. width: 28px;
  1665. height: 28px;
  1666. margin-bottom: 2px
  1667. }
  1668. .weui-tabbar__icon>i,
  1669. i.weui-tabbar__icon {
  1670. font-size: 24px;
  1671. color: var(--weui-FG-1)
  1672. }
  1673. .weui-tabbar__icon img {
  1674. width: 100%;
  1675. height: 100%
  1676. }
  1677. .weui-tabbar__label {
  1678. color: var(--weui-FG-0);
  1679. font-size: 10px;
  1680. line-height: 1.4
  1681. }
  1682. .weui-navbar {
  1683. display: -webkit-box;
  1684. display: -webkit-flex;
  1685. display: flex;
  1686. position: relative;
  1687. z-index: 500;
  1688. background-color: var(--weui-BG-2);
  1689. padding-top: constant(safe-area-inset-top);
  1690. padding-top: env(safe-area-inset-top)
  1691. }
  1692. .weui-navbar:after {
  1693. content: " ";
  1694. position: absolute;
  1695. left: 0;
  1696. bottom: 0;
  1697. right: 0;
  1698. height: 1px;
  1699. border-bottom: 1px solid var(--weui-FG-3);
  1700. color: var(--weui-FG-3);
  1701. -webkit-transform-origin: 0 100%;
  1702. transform-origin: 0 100%;
  1703. -webkit-transform: scaleY(.5);
  1704. transform: scaleY(.5)
  1705. }
  1706. .weui-navbar+.weui-tab__panel {
  1707. padding-bottom: constant(safe-area-inset-bottom);
  1708. padding-bottom: env(safe-area-inset-bottom)
  1709. }
  1710. .weui-navbar__item {
  1711. position: relative;
  1712. display: block;
  1713. -webkit-box-flex: 1;
  1714. -webkit-flex: 1;
  1715. flex: 1;
  1716. padding: 16px 0;
  1717. padding-top: calc(16px + constant(safe-area-inset-top));
  1718. padding-top: calc(16px + env(safe-area-inset-top));
  1719. text-align: center;
  1720. font-size: 17px;
  1721. line-height: 1.41176471;
  1722. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  1723. }
  1724. .weui-navbar__item.weui-bar__item_on,
  1725. .weui-navbar__item:active {
  1726. background-color: var(--weui-BG-COLOR-ACTIVE)
  1727. }
  1728. .weui-navbar__item:after {
  1729. content: " ";
  1730. position: absolute;
  1731. right: 0;
  1732. top: 0;
  1733. width: 1px;
  1734. bottom: 0;
  1735. border-right: 1px solid var(--weui-FG-3);
  1736. color: var(--weui-FG-3);
  1737. -webkit-transform-origin: 100% 0;
  1738. transform-origin: 100% 0;
  1739. -webkit-transform: scaleX(.5);
  1740. transform: scaleX(.5)
  1741. }
  1742. .weui-navbar__item:first-child {
  1743. padding-left: constant(safe-area-inset-left);
  1744. padding-left: env(safe-area-inset-left)
  1745. }
  1746. .weui-navbar__item:last-child {
  1747. padding-right: constant(safe-area-inset-right);
  1748. padding-right: env(safe-area-inset-right)
  1749. }
  1750. .weui-navbar__item:last-child:after {
  1751. display: none
  1752. }
  1753. .weui-tab {
  1754. display: -webkit-box;
  1755. display: -webkit-flex;
  1756. display: flex;
  1757. height: 100%;
  1758. box-sizing: border-box;
  1759. -webkit-box-orient: vertical;
  1760. -webkit-box-direction: normal;
  1761. -webkit-flex-direction: column;
  1762. flex-direction: column
  1763. }
  1764. .weui-tab__panel {
  1765. box-sizing: border-box;
  1766. -webkit-box-flex: 1;
  1767. -webkit-flex: 1;
  1768. flex: 1;
  1769. overflow: auto;
  1770. -webkit-overflow-scrolling: touch
  1771. }
  1772. .weui-tab__content {
  1773. display: none
  1774. }
  1775. .weui-progress {
  1776. display: -webkit-box;
  1777. display: -webkit-flex;
  1778. display: flex;
  1779. -webkit-box-align: center;
  1780. -webkit-align-items: center;
  1781. align-items: center
  1782. }
  1783. .weui-progress__bar {
  1784. background-color: var(--weui-BG-0);
  1785. height: 3px;
  1786. -webkit-box-flex: 1;
  1787. -webkit-flex: 1;
  1788. flex: 1
  1789. }
  1790. .weui-progress__inner-bar {
  1791. width: 0;
  1792. height: 100%;
  1793. background-color: var(--weui-BRAND)
  1794. }
  1795. .weui-progress__opr {
  1796. display: block;
  1797. margin-left: 15px;
  1798. font-size: 0
  1799. }
  1800. .weui-panel {
  1801. background-color: var(--weui-BG-2);
  1802. margin-top: 10px;
  1803. position: relative;
  1804. overflow: hidden
  1805. }
  1806. .weui-panel:first-child {
  1807. margin-top: 0
  1808. }
  1809. .weui-panel:before {
  1810. top: 0;
  1811. border-top: 1px solid var(--weui-FG-3);
  1812. -webkit-transform-origin: 0 0;
  1813. transform-origin: 0 0;
  1814. -webkit-transform: scaleY(.5);
  1815. transform: scaleY(.5)
  1816. }
  1817. .weui-panel:after,
  1818. .weui-panel:before {
  1819. content: " ";
  1820. position: absolute;
  1821. left: 0;
  1822. right: 0;
  1823. height: 1px;
  1824. color: var(--weui-FG-3)
  1825. }
  1826. .weui-panel:after {
  1827. bottom: 0;
  1828. border-bottom: 1px solid var(--weui-FG-3);
  1829. -webkit-transform-origin: 0 100%;
  1830. transform-origin: 0 100%;
  1831. -webkit-transform: scaleY(.5);
  1832. transform: scaleY(.5)
  1833. }
  1834. .weui-panel__hd {
  1835. padding: 16px 16px 13px;
  1836. color: var(--weui-FG-0);
  1837. font-size: 15px;
  1838. font-weight: 700;
  1839. position: relative
  1840. }
  1841. .weui-panel__hd:after {
  1842. content: " ";
  1843. position: absolute;
  1844. left: 0;
  1845. bottom: 0;
  1846. right: 0;
  1847. height: 1px;
  1848. border-bottom: 1px solid var(--weui-FG-3);
  1849. color: var(--weui-FG-3);
  1850. -webkit-transform-origin: 0 100%;
  1851. transform-origin: 0 100%;
  1852. -webkit-transform: scaleY(.5);
  1853. transform: scaleY(.5);
  1854. left: 15px
  1855. }
  1856. .weui-media-box {
  1857. padding: 16px;
  1858. position: relative
  1859. }
  1860. .weui-media-box:before {
  1861. content: " ";
  1862. position: absolute;
  1863. left: 0;
  1864. top: 0;
  1865. right: 0;
  1866. height: 1px;
  1867. border-top: 1px solid var(--weui-FG-3);
  1868. color: var(--weui-FG-3);
  1869. -webkit-transform-origin: 0 0;
  1870. transform-origin: 0 0;
  1871. -webkit-transform: scaleY(.5);
  1872. transform: scaleY(.5);
  1873. left: 16px
  1874. }
  1875. .weui-media-box:first-child:before {
  1876. display: none
  1877. }
  1878. a.weui-media-box {
  1879. color: #000;
  1880. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  1881. }
  1882. a.weui-media-box:active {
  1883. background-color: var(--weui-BG-COLOR-ACTIVE)
  1884. }
  1885. .weui-media-box__title {
  1886. font-weight: 400;
  1887. font-size: 17px;
  1888. color: var(--weui-FG-0);
  1889. width: auto;
  1890. white-space: nowrap;
  1891. word-wrap: normal;
  1892. word-wrap: break-word;
  1893. word-break: break-all
  1894. }
  1895. .weui-media-box__desc,
  1896. .weui-media-box__title {
  1897. line-height: 1.4;
  1898. overflow: hidden;
  1899. text-overflow: ellipsis
  1900. }
  1901. .weui-media-box__desc {
  1902. color: var(--weui-FG-2);
  1903. font-size: 14px;
  1904. padding-top: 4px;
  1905. display: -webkit-box;
  1906. -webkit-box-orient: vertical;
  1907. -webkit-line-clamp: 2
  1908. }
  1909. .weui-media-box__info {
  1910. margin-top: 16px;
  1911. padding-bottom: 4px;
  1912. font-size: 13px;
  1913. color: var(--weui-FG-2);
  1914. line-height: 1em;
  1915. list-style: none;
  1916. overflow: hidden
  1917. }
  1918. .weui-media-box__info__meta {
  1919. float: left;
  1920. padding-right: 1em
  1921. }
  1922. .weui-media-box__info__meta_extra {
  1923. padding-left: 1em;
  1924. border-left: 1px solid var(--weui-FG-2)
  1925. }
  1926. .weui-media-box_appmsg {
  1927. display: -webkit-box;
  1928. display: -webkit-flex;
  1929. display: flex;
  1930. -webkit-box-align: center;
  1931. -webkit-align-items: center;
  1932. align-items: center
  1933. }
  1934. .weui-media-box_appmsg .weui-media-box__hd {
  1935. margin-right: 16px;
  1936. width: 60px;
  1937. height: 60px;
  1938. line-height: 60px;
  1939. text-align: center
  1940. }
  1941. .weui-media-box_appmsg .weui-media-box__thumb {
  1942. width: 100%;
  1943. max-height: 100%;
  1944. vertical-align: top
  1945. }
  1946. .weui-media-box_appmsg .weui-media-box__bd {
  1947. -webkit-box-flex: 1;
  1948. -webkit-flex: 1;
  1949. flex: 1;
  1950. min-width: 0
  1951. }
  1952. .weui-media-box_small-appmsg {
  1953. padding: 0
  1954. }
  1955. .weui-media-box_small-appmsg .weui-cells {
  1956. margin-top: 0
  1957. }
  1958. .weui-media-box_small-appmsg .weui-cells:before {
  1959. display: none
  1960. }
  1961. .weui-grids {
  1962. position: relative;
  1963. overflow: hidden
  1964. }
  1965. .weui-grids:before {
  1966. right: 0;
  1967. height: 1px;
  1968. border-top: 1px solid var(--weui-FG-3);
  1969. -webkit-transform-origin: 0 0;
  1970. transform-origin: 0 0;
  1971. -webkit-transform: scaleY(.5);
  1972. transform: scaleY(.5)
  1973. }
  1974. .weui-grids:after,
  1975. .weui-grids:before {
  1976. content: " ";
  1977. position: absolute;
  1978. left: 0;
  1979. top: 0;
  1980. color: var(--weui-FG-3)
  1981. }
  1982. .weui-grids:after {
  1983. width: 1px;
  1984. bottom: 0;
  1985. border-left: 1px solid var(--weui-FG-3);
  1986. -webkit-transform-origin: 0 0;
  1987. transform-origin: 0 0;
  1988. -webkit-transform: scaleX(.5);
  1989. transform: scaleX(.5)
  1990. }
  1991. .weui-grid {
  1992. position: relative;
  1993. float: left;
  1994. padding: 20px 10px;
  1995. width: 33.33333333%;
  1996. box-sizing: border-box
  1997. }
  1998. .weui-grid:before {
  1999. top: 0;
  2000. width: 1px;
  2001. border-right: 1px solid var(--weui-FG-3);
  2002. -webkit-transform-origin: 100% 0;
  2003. transform-origin: 100% 0;
  2004. -webkit-transform: scaleX(.5);
  2005. transform: scaleX(.5)
  2006. }
  2007. .weui-grid:after,
  2008. .weui-grid:before {
  2009. content: " ";
  2010. position: absolute;
  2011. right: 0;
  2012. bottom: 0;
  2013. color: var(--weui-FG-3)
  2014. }
  2015. .weui-grid:after {
  2016. left: 0;
  2017. height: 1px;
  2018. border-bottom: 1px solid var(--weui-FG-3);
  2019. -webkit-transform-origin: 0 100%;
  2020. transform-origin: 0 100%;
  2021. -webkit-transform: scaleY(.5);
  2022. transform: scaleY(.5)
  2023. }
  2024. .weui-grid:active {
  2025. background-color: var(--weui-BG-COLOR-ACTIVE)
  2026. }
  2027. .weui-grid__icon {
  2028. width: 28px;
  2029. height: 28px;
  2030. margin: 0 auto
  2031. }
  2032. .weui-grid__icon img {
  2033. display: block;
  2034. width: 100%;
  2035. height: 100%
  2036. }
  2037. .weui-grid__icon+.weui-grid__label {
  2038. margin-top: 4px
  2039. }
  2040. .weui-grid__label {
  2041. display: block;
  2042. color: var(--weui-FG-0);
  2043. white-space: nowrap;
  2044. text-overflow: ellipsis;
  2045. overflow: hidden
  2046. }
  2047. .weui-footer,
  2048. .weui-grid__label {
  2049. text-align: center;
  2050. font-size: 14px
  2051. }
  2052. .weui-footer {
  2053. color: var(--weui-FG-2);
  2054. line-height: 1.4
  2055. }
  2056. .weui-footer a,
  2057. .weui-footer navigator {
  2058. color: var(--weui-LINK)
  2059. }
  2060. .weui-footer navigator {
  2061. display: inline
  2062. }
  2063. .weui-footer_fixed-bottom {
  2064. position: fixed;
  2065. bottom: 0;
  2066. left: 0;
  2067. right: 0;
  2068. padding-top: 16px;
  2069. padding-bottom: 16px;
  2070. padding-bottom: calc(16px + constant(safe-area-inset-bottom));
  2071. padding-bottom: calc(16px + env(safe-area-inset-bottom));
  2072. left: constant(safe-area-inset-left);
  2073. left: env(safe-area-inset-left);
  2074. right: constant(safe-area-inset-right);
  2075. right: env(safe-area-inset-right)
  2076. }
  2077. .weui-footer__links {
  2078. font-size: 0
  2079. }
  2080. .weui-footer__link {
  2081. display: inline-block;
  2082. vertical-align: top;
  2083. margin: 0 8px;
  2084. position: relative;
  2085. font-size: 14px
  2086. }
  2087. .weui-footer__link:before {
  2088. content: " ";
  2089. position: absolute;
  2090. left: 0;
  2091. top: 0;
  2092. width: 1px;
  2093. bottom: 0;
  2094. border-left: 1px solid var(--weui-FG-3);
  2095. color: var(--weui-FG-3);
  2096. -webkit-transform-origin: 0 0;
  2097. transform-origin: 0 0;
  2098. -webkit-transform: scaleX(.5);
  2099. transform: scaleX(.5);
  2100. left: -8px;
  2101. top: .36em;
  2102. bottom: .36em
  2103. }
  2104. .weui-footer__link:first-child:before {
  2105. display: none
  2106. }
  2107. .weui-footer__text {
  2108. padding: 0 16px;
  2109. font-size: 12px
  2110. }
  2111. .weui-flex {
  2112. display: -webkit-box;
  2113. display: -webkit-flex;
  2114. display: flex
  2115. }
  2116. .weui-flex__item {
  2117. -webkit-box-flex: 1;
  2118. -webkit-flex: 1;
  2119. flex: 1
  2120. }
  2121. .weui-dialog {
  2122. position: fixed;
  2123. z-index: 5000;
  2124. top: 50%;
  2125. left: 16px;
  2126. right: 16px;
  2127. -webkit-transform: translateY(-50%);
  2128. transform: translateY(-50%);
  2129. background-color: var(--weui-BG-2);
  2130. text-align: center;
  2131. border-radius: 12px;
  2132. overflow: hidden;
  2133. display: -webkit-box;
  2134. display: -webkit-flex;
  2135. display: flex;
  2136. -webkit-flex-direction: column;
  2137. -webkit-box-orient: vertical;
  2138. -webkit-box-direction: normal;
  2139. flex-direction: column;
  2140. max-height: 90%
  2141. }
  2142. .weui-dialog__hd {
  2143. padding: 32px 24px 16px
  2144. }
  2145. .weui-dialog__title {
  2146. font-weight: 700;
  2147. font-size: 17px;
  2148. line-height: 1.4
  2149. }
  2150. .weui-dialog__bd {
  2151. overflow-y: auto;
  2152. -webkit-overflow-scrolling: touch;
  2153. padding: 0 24px;
  2154. margin-bottom: 32px;
  2155. font-size: 17px;
  2156. line-height: 1.4;
  2157. word-wrap: break-word;
  2158. -webkit-hyphens: auto;
  2159. hyphens: auto;
  2160. color: var(--weui-FG-1)
  2161. }
  2162. .weui-dialog__bd:first-child {
  2163. min-height: 40px;
  2164. padding: 32px 24px 0;
  2165. font-weight: 700;
  2166. color: var(--weui-FG-0);
  2167. -webkit-flex-direction: column;
  2168. -webkit-box-orient: vertical;
  2169. -webkit-box-direction: normal;
  2170. flex-direction: column;
  2171. -webkit-box-pack: center;
  2172. -webkit-justify-content: center;
  2173. justify-content: center
  2174. }
  2175. .weui-dialog__bd:first-child,
  2176. .weui-dialog__ft {
  2177. display: -webkit-box;
  2178. display: -webkit-flex;
  2179. display: flex
  2180. }
  2181. .weui-dialog__ft {
  2182. position: relative;
  2183. line-height: 56px;
  2184. min-height: 56px;
  2185. font-size: 17px
  2186. }
  2187. .weui-dialog__ft:after {
  2188. content: " ";
  2189. position: absolute;
  2190. left: 0;
  2191. top: 0;
  2192. right: 0;
  2193. height: 1px;
  2194. border-top: 1px solid var(--weui-DIALOG-LINE-COLOR);
  2195. color: var(--weui-DIALOG-LINE-COLOR);
  2196. -webkit-transform-origin: 0 0;
  2197. transform-origin: 0 0;
  2198. -webkit-transform: scaleY(.5);
  2199. transform: scaleY(.5)
  2200. }
  2201. .weui-dialog__btn {
  2202. display: block;
  2203. -webkit-box-flex: 1;
  2204. -webkit-flex: 1;
  2205. flex: 1;
  2206. color: var(--weui-LINK);
  2207. font-weight: 700;
  2208. text-decoration: none;
  2209. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  2210. position: relative
  2211. }
  2212. .weui-dialog__btn:active {
  2213. background-color: var(--weui-BG-COLOR-ACTIVE)
  2214. }
  2215. .weui-dialog__btn:after {
  2216. content: " ";
  2217. position: absolute;
  2218. left: 0;
  2219. top: 0;
  2220. width: 1px;
  2221. bottom: 0;
  2222. border-left: 1px solid var(--weui-DIALOG-LINE-COLOR);
  2223. color: var(--weui-DIALOG-LINE-COLOR);
  2224. -webkit-transform-origin: 0 0;
  2225. transform-origin: 0 0;
  2226. -webkit-transform: scaleX(.5);
  2227. transform: scaleX(.5)
  2228. }
  2229. .weui-dialog__btn:first-child:after {
  2230. display: none
  2231. }
  2232. .weui-dialog__btn_default {
  2233. color: var(--weui-FG-HALF)
  2234. }
  2235. .weui-skin_android .weui-dialog {
  2236. text-align: left;
  2237. box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .1)
  2238. }
  2239. .weui-skin_android .weui-dialog__title {
  2240. font-size: 22px;
  2241. line-height: 1.4
  2242. }
  2243. .weui-skin_android .weui-dialog__hd {
  2244. text-align: left
  2245. }
  2246. .weui-skin_android .weui-dialog__bd {
  2247. color: var(--weui-FG-1);
  2248. text-align: left
  2249. }
  2250. .weui-skin_android .weui-dialog__bd:first-child {
  2251. color: var(--weui-FG-0)
  2252. }
  2253. .weui-skin_android .weui-dialog__ft {
  2254. display: block;
  2255. text-align: right;
  2256. line-height: 40px;
  2257. min-height: 40px;
  2258. padding: 0 24px 16px
  2259. }
  2260. .weui-skin_android .weui-dialog__ft:after {
  2261. display: none
  2262. }
  2263. .weui-skin_android .weui-dialog__btn {
  2264. display: inline-block;
  2265. vertical-align: top;
  2266. padding: 0 .8em
  2267. }
  2268. .weui-skin_android .weui-dialog__btn:after {
  2269. display: none
  2270. }
  2271. .weui-skin_android .weui-dialog__btn:last-child {
  2272. margin-right: -.8em
  2273. }
  2274. .weui-skin_android .weui-dialog__btn_default {
  2275. color: var(--weui-FG-HALF)
  2276. }
  2277. @media screen and (min-width:352px) {
  2278. .weui-dialog {
  2279. width: 320px;
  2280. margin: 0 auto
  2281. }
  2282. }
  2283. .weui-half-screen-dialog {
  2284. position: fixed;
  2285. left: 0;
  2286. right: 0;
  2287. bottom: 0;
  2288. max-height: 75%;
  2289. z-index: 5000;
  2290. line-height: 1.4;
  2291. background-color: var(--weui-BG-2);
  2292. border-top-left-radius: 12px;
  2293. border-top-right-radius: 12px;
  2294. overflow: hidden;
  2295. padding: 0 24px;
  2296. padding: 0 calc(24px + constant(safe-area-inset-right)) constant(safe-area-inset-bottom) calc(24px + constant(safe-area-inset-left));
  2297. padding: 0 calc(24px + env(safe-area-inset-right)) env(safe-area-inset-bottom) calc(24px + env(safe-area-inset-left))
  2298. }
  2299. @media only screen and (max-height:558px) {
  2300. .weui-half-screen-dialog {
  2301. max-height: none
  2302. }
  2303. }
  2304. .weui-half-screen-dialog__hd {
  2305. font-size: 8px;
  2306. height: 8em;
  2307. display: -webkit-box;
  2308. display: -webkit-flex;
  2309. display: flex;
  2310. -webkit-box-align: center;
  2311. -webkit-align-items: center;
  2312. align-items: center
  2313. }
  2314. .weui-half-screen-dialog__hd .weui-icon-btn {
  2315. position: absolute;
  2316. top: 50%;
  2317. -webkit-transform: translateY(-50%);
  2318. transform: translateY(-50%)
  2319. }
  2320. .weui-half-screen-dialog__hd .weui-icon-btn:active {
  2321. opacity: .5
  2322. }
  2323. .weui-half-screen-dialog__hd__side {
  2324. position: relative;
  2325. left: -8px
  2326. }
  2327. .weui-half-screen-dialog__hd__main {
  2328. -webkit-box-flex: 1;
  2329. -webkit-flex: 1;
  2330. flex: 1
  2331. }
  2332. .weui-half-screen-dialog__hd__side+.weui-half-screen-dialog__hd__main {
  2333. text-align: center;
  2334. padding: 0 40px
  2335. }
  2336. .weui-half-screen-dialog__hd__main+.weui-half-screen-dialog__hd__side {
  2337. right: -8px;
  2338. left: auto
  2339. }
  2340. .weui-half-screen-dialog__hd__main+.weui-half-screen-dialog__hd__side .weui-icon-btn {
  2341. right: 0
  2342. }
  2343. .weui-half-screen-dialog__title {
  2344. display: block;
  2345. color: var(--weui-FG-0);
  2346. font-weight: 700;
  2347. font-size: 15px
  2348. }
  2349. .weui-half-screen-dialog__subtitle {
  2350. display: block;
  2351. color: var(--weui-FG-1);
  2352. font-size: 10px
  2353. }
  2354. . {
  2355. word-wrap: break-word;
  2356. -webkit-hyphens: auto;
  2357. hyphens: auto;
  2358. overflow-y: auto;
  2359. padding-top: 4px;
  2360. padding-bottom: 40px;
  2361. font-size: 14px;
  2362. color: var(--weui-FG-0)
  2363. }
  2364. .weui-half-screen-dialog__desc {
  2365. font-size: 17px;
  2366. font-weight: 700;
  2367. color: var(--weui-FG-0);
  2368. line-height: 1.4
  2369. }
  2370. .weui-half-screen-dialog__tips {
  2371. padding-top: 16px;
  2372. font-size: 14px;
  2373. color: var(--weui-FG-2);
  2374. line-height: 1.4
  2375. }
  2376. .weui-half-screen-dialog__ft {
  2377. padding: 0 24px 32px;
  2378. text-align: center
  2379. }
  2380. .weui-half-screen-dialog__ft .weui-btn:nth-last-child(n+2),
  2381. .weui-half-screen-dialog__ft .weui-btn:nth-last-child(n+2)+.weui-btn {
  2382. display: inline-block;
  2383. vertical-align: top;
  2384. margin: 0 8px;
  2385. width: 120px
  2386. }
  2387. .weui-icon-btn {
  2388. outline: 0;
  2389. -webkit-appearance: none;
  2390. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  2391. border-width: 0;
  2392. background-color: transparent;
  2393. color: var(--weui-FG-0);
  2394. font-size: 0
  2395. }
  2396. .weui-icon-more {
  2397. width: 24px;
  2398. -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath fill-opacity='.9' fill-rule='evenodd' d='M5 10.25a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5zm7 0a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5zm7 0a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5z'/%3E%3C/svg%3E") no-repeat 50% 50%;
  2399. mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath fill-opacity='.9' fill-rule='evenodd' d='M5 10.25a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5zm7 0a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5zm7 0a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5z'/%3E%3C/svg%3E") no-repeat 50% 50%;
  2400. -webkit-mask-size: cover;
  2401. mask-size: cover
  2402. }
  2403. .weui-icon-btn_goback,
  2404. .weui-icon-more {
  2405. display: inline-block;
  2406. vertical-align: middle;
  2407. height: 24px;
  2408. background-color: currentColor;
  2409. color: var(--weui-FG-0)
  2410. }
  2411. .weui-icon-btn_goback {
  2412. width: 12px;
  2413. -webkit-mask: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10%2019.438L8.955%2020.5l-7.666-7.79a1.02%201.02%200%20010-1.42L8.955%203.5%2010%204.563%202.682%2012%2010%2019.438z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat 50% 50%;
  2414. mask: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10%2019.438L8.955%2020.5l-7.666-7.79a1.02%201.02%200%20010-1.42L8.955%203.5%2010%204.563%202.682%2012%2010%2019.438z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat 50% 50%;
  2415. -webkit-mask-size: cover;
  2416. mask-size: cover
  2417. }
  2418. .weui-icon-btn_close {
  2419. color: var(--weui-FG-0);
  2420. display: inline-block;
  2421. vertical-align: middle;
  2422. width: 14px;
  2423. height: 24px;
  2424. -webkit-mask: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.25%2010.693L6.057%204.5%205%205.557l6.193%206.193L5%2017.943%206.057%2019l6.193-6.193L18.443%2019l1.057-1.057-6.193-6.193L19.5%205.557%2018.443%204.5z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat 50% 50%;
  2425. mask: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.25%2010.693L6.057%204.5%205%205.557l6.193%206.193L5%2017.943%206.057%2019l6.193-6.193L18.443%2019l1.057-1.057-6.193-6.193L19.5%205.557%2018.443%204.5z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat 50% 50%;
  2426. -webkit-mask-size: cover;
  2427. mask-size: cover;
  2428. background-color: currentColor
  2429. }
  2430. .weui-toast {
  2431. position: fixed;
  2432. z-index: 5000;
  2433. width: 120px;
  2434. height: 120px;
  2435. top: 40%;
  2436. left: 50%;
  2437. -webkit-transform: translate(-50%, -50%);
  2438. transform: translate(-50%, -50%);
  2439. text-align: center;
  2440. border-radius: 5px;
  2441. color: hsla(0, 0%, 100%, .9);
  2442. display: -webkit-box;
  2443. display: -webkit-flex;
  2444. display: flex;
  2445. -webkit-box-orient: vertical;
  2446. -webkit-box-direction: normal;
  2447. -webkit-flex-direction: column;
  2448. flex-direction: column;
  2449. -webkit-box-align: center;
  2450. -webkit-align-items: center;
  2451. align-items: center;
  2452. -webkit-box-pack: center;
  2453. -webkit-justify-content: center;
  2454. justify-content: center;
  2455. background-color: #4c4c4c
  2456. }
  2457. [data-weui-theme=dark] .weui-toast {
  2458. background-color: #606060
  2459. }
  2460. .weui-icon_toast {
  2461. display: block
  2462. }
  2463. .weui-icon_toast.weui-icon-success-no-circle {
  2464. color: hsla(0, 0%, 100%, .9);
  2465. width: 55px;
  2466. height: 55px
  2467. }
  2468. .weui-icon_toast.weui-loading {
  2469. margin: 8px 0;
  2470. width: 38px;
  2471. height: 38px;
  2472. vertical-align: baseline
  2473. }
  2474. .weui-toast__content {
  2475. font-size: 14px
  2476. }
  2477. .weui-mask {
  2478. background: rgba(0, 0, 0, .6)
  2479. }
  2480. .weui-mask,
  2481. .weui-mask_transparent {
  2482. position: fixed;
  2483. z-index: 1000;
  2484. top: 0;
  2485. right: 0;
  2486. left: 0;
  2487. bottom: 0
  2488. }
  2489. .weui-actionsheet {
  2490. position: fixed;
  2491. left: 0;
  2492. bottom: 0;
  2493. -webkit-transform: translateY(100%);
  2494. transform: translateY(100%);
  2495. -webkit-backface-visibility: hidden;
  2496. backface-visibility: hidden;
  2497. z-index: 5000;
  2498. width: 100%;
  2499. background-color: var(--weui-BG-1);
  2500. -webkit-transition: -webkit-transform .3s;
  2501. transition: -webkit-transform .3s;
  2502. transition: transform .3s;
  2503. transition: transform .3s, -webkit-transform .3s;
  2504. border-top-left-radius: 12px;
  2505. border-top-right-radius: 12px;
  2506. overflow: hidden
  2507. }
  2508. .weui-actionsheet__title {
  2509. position: relative;
  2510. height: 56px;
  2511. padding: 0 24px;
  2512. display: -webkit-box;
  2513. display: -webkit-flex;
  2514. display: flex;
  2515. -webkit-box-pack: center;
  2516. -webkit-justify-content: center;
  2517. justify-content: center;
  2518. -webkit-box-orient: vertical;
  2519. -webkit-box-direction: normal;
  2520. -webkit-flex-direction: column;
  2521. flex-direction: column;
  2522. text-align: center;
  2523. font-size: 12px;
  2524. color: var(--weui-FG-1);
  2525. line-height: 1.4;
  2526. background: var(--weui-BG-2)
  2527. }
  2528. .weui-actionsheet__title:before {
  2529. content: " ";
  2530. position: absolute;
  2531. left: 0;
  2532. bottom: 0;
  2533. right: 0;
  2534. height: 1px;
  2535. border-bottom: 1px solid var(--weui-FG-3);
  2536. color: var(--weui-FG-3);
  2537. -webkit-transform-origin: 0 100%;
  2538. transform-origin: 0 100%;
  2539. -webkit-transform: scaleY(.5);
  2540. transform: scaleY(.5)
  2541. }
  2542. .weui-actionsheet__title .weui-actionsheet__title-text {
  2543. overflow: hidden;
  2544. text-overflow: ellipsis;
  2545. display: -webkit-box;
  2546. -webkit-box-orient: vertical;
  2547. -webkit-line-clamp: 2
  2548. }
  2549. .weui-actionsheet__menu {
  2550. color: var(--weui-FG-0);
  2551. background-color: var(--weui-BG-2)
  2552. }
  2553. .weui-actionsheet__action {
  2554. margin-top: 8px;
  2555. background-color: var(--weui-BG-2);
  2556. padding-bottom: constant(safe-area-inset-bottom);
  2557. padding-bottom: env(safe-area-inset-bottom)
  2558. }
  2559. .weui-actionsheet__cell {
  2560. position: relative;
  2561. padding: 16px;
  2562. text-align: center;
  2563. font-size: 17px;
  2564. line-height: 1.41176471
  2565. }
  2566. .weui-actionsheet__cell:before {
  2567. content: " ";
  2568. position: absolute;
  2569. left: 0;
  2570. top: 0;
  2571. right: 0;
  2572. height: 1px;
  2573. border-top: 1px solid var(--weui-FG-3);
  2574. color: var(--weui-FG-3);
  2575. -webkit-transform-origin: 0 0;
  2576. transform-origin: 0 0;
  2577. -webkit-transform: scaleY(.5);
  2578. transform: scaleY(.5)
  2579. }
  2580. .weui-actionsheet__cell:active {
  2581. background-color: var(--weui-BG-COLOR-ACTIVE)
  2582. }
  2583. .weui-actionsheet__cell:first-child:before {
  2584. display: none
  2585. }
  2586. .weui-actionsheet__cell_warn {
  2587. color: var(--weui-RED)
  2588. }
  2589. .weui-skin_android .weui-actionsheet {
  2590. position: fixed;
  2591. left: 50%;
  2592. top: 50%;
  2593. bottom: auto;
  2594. -webkit-transform: translate(-50%, -50%);
  2595. transform: translate(-50%, -50%);
  2596. width: 274px;
  2597. box-sizing: border-box;
  2598. -webkit-backface-visibility: hidden;
  2599. backface-visibility: hidden;
  2600. background: transparent;
  2601. -webkit-transition: -webkit-transform .3s;
  2602. transition: -webkit-transform .3s;
  2603. transition: transform .3s;
  2604. transition: transform .3s, -webkit-transform .3s;
  2605. border-top-left-radius: 0;
  2606. border-top-right-radius: 0
  2607. }
  2608. .weui-skin_android .weui-actionsheet__action {
  2609. display: none
  2610. }
  2611. .weui-skin_android .weui-actionsheet__menu {
  2612. border-radius: 2px;
  2613. box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .1)
  2614. }
  2615. .weui-skin_android .weui-actionsheet__cell {
  2616. padding: 16px;
  2617. font-size: 17px;
  2618. line-height: 1.41176471;
  2619. color: var(--weui-FG-0);
  2620. text-align: left
  2621. }
  2622. .weui-skin_android .weui-actionsheet__cell:first-child {
  2623. border-top-left-radius: 2px;
  2624. border-top-right-radius: 2px
  2625. }
  2626. .weui-skin_android .weui-actionsheet__cell:last-child {
  2627. border-bottom-left-radius: 2px;
  2628. border-bottom-right-radius: 2px
  2629. }
  2630. .weui-actionsheet_toggle {
  2631. -webkit-transform: translate(0);
  2632. transform: translate(0)
  2633. }
  2634. .weui-loadmore {
  2635. width: 65%;
  2636. margin: 1.5em auto;
  2637. line-height: 1.6em;
  2638. font-size: 14px;
  2639. text-align: center
  2640. }
  2641. .weui-loadmore__tips {
  2642. display: inline-block;
  2643. vertical-align: middle;
  2644. color: var(--weui-FG-0)
  2645. }
  2646. .weui-loadmore_line {
  2647. border-top: 1px solid var(--weui-FG-3);
  2648. margin-top: 2.4em
  2649. }
  2650. .weui-loadmore_line .weui-loadmore__tips {
  2651. position: relative;
  2652. top: -.9em;
  2653. padding: 0 .55em;
  2654. background-color: var(--weui-BG-2);
  2655. color: var(--weui-FG-1)
  2656. }
  2657. .weui-loadmore_dot .weui-loadmore__tips {
  2658. padding: 0 .16em
  2659. }
  2660. .weui-loadmore_dot .weui-loadmore__tips:before {
  2661. content: " ";
  2662. width: 4px;
  2663. height: 4px;
  2664. border-radius: 50%;
  2665. background-color: var(--weui-FG-3);
  2666. display: inline-block;
  2667. position: relative;
  2668. vertical-align: 0;
  2669. top: -.16em
  2670. }
  2671. .weui-badge {
  2672. display: inline-block;
  2673. padding: .15em .4em;
  2674. min-width: 8px;
  2675. border-radius: 18px;
  2676. background-color: var(--weui-RED);
  2677. color: #fff;
  2678. line-height: 1.2;
  2679. text-align: center;
  2680. font-size: 12px;
  2681. vertical-align: middle
  2682. }
  2683. .weui-badge_dot {
  2684. padding: .4em;
  2685. min-width: 0
  2686. }
  2687. .weui-toptips {
  2688. display: none;
  2689. position: fixed;
  2690. -webkit-transform: translateZ(0);
  2691. transform: translateZ(0);
  2692. top: 8px;
  2693. left: 8px;
  2694. right: 8px;
  2695. padding: 10px;
  2696. border-radius: 8px;
  2697. font-size: 14px;
  2698. text-align: center;
  2699. color: #fff;
  2700. z-index: 5000;
  2701. word-wrap: break-word;
  2702. word-break: break-all
  2703. }
  2704. .weui-toptips_warn {
  2705. background-color: var(--weui-RED)
  2706. }
  2707. .weui-search-bar {
  2708. position: relative;
  2709. padding: 8px;
  2710. display: -webkit-box;
  2711. display: -webkit-flex;
  2712. display: flex;
  2713. box-sizing: border-box;
  2714. background-color: var(--weui-BG-0);
  2715. -webkit-text-size-adjust: 100%;
  2716. -webkit-box-align: center;
  2717. -webkit-align-items: center;
  2718. align-items: center
  2719. }
  2720. .weui-search-bar.weui-search-bar_focusing .weui-search-bar__cancel-btn {
  2721. display: block
  2722. }
  2723. .weui-search-bar.weui-search-bar_focusing .weui-search-bar__label {
  2724. display: none
  2725. }
  2726. .weui-search-bar .weui-icon-search {
  2727. width: 16px;
  2728. height: 16px
  2729. }
  2730. .weui-search-bar__form {
  2731. position: relative;
  2732. -webkit-box-flex: 1;
  2733. -webkit-flex: auto;
  2734. flex: auto;
  2735. background-color: var(--weui-BG-2);
  2736. border-radius: 4px
  2737. }
  2738. .weui-search-bar__box {
  2739. position: relative;
  2740. padding-left: 28px;
  2741. padding-right: 32px;
  2742. height: 100%;
  2743. width: 100%;
  2744. box-sizing: border-box;
  2745. z-index: 1
  2746. }
  2747. .weui-search-bar__box .weui-search-bar__input {
  2748. padding: 8px 0;
  2749. width: 100%;
  2750. height: 1.14285714em;
  2751. border: 0;
  2752. font-size: 14px;
  2753. line-height: 1.14285714em;
  2754. box-sizing: content-box;
  2755. background: transparent;
  2756. caret-color: var(--weui-BRAND);
  2757. color: var(--weui-FG-0)
  2758. }
  2759. .weui-search-bar__box .weui-search-bar__input:focus {
  2760. outline: none
  2761. }
  2762. .weui-search-bar__box .weui-icon-search {
  2763. position: absolute;
  2764. top: 50%;
  2765. left: 8px;
  2766. margin-top: -8px
  2767. }
  2768. .weui-search-bar__box .weui-icon-clear {
  2769. position: absolute;
  2770. top: 50%;
  2771. right: 0;
  2772. margin-top: -16px;
  2773. padding: 8px;
  2774. width: 16px;
  2775. height: 16px;
  2776. -webkit-mask-size: 16px;
  2777. mask-size: 16px
  2778. }
  2779. .weui-search-bar__label {
  2780. position: absolute;
  2781. top: 0;
  2782. right: 0;
  2783. bottom: 0;
  2784. left: 0;
  2785. z-index: 2;
  2786. font-size: 0;
  2787. border-radius: 4px;
  2788. display: -webkit-box;
  2789. display: -webkit-flex;
  2790. display: flex;
  2791. -webkit-box-align: center;
  2792. -webkit-align-items: center;
  2793. align-items: center;
  2794. -webkit-box-pack: center;
  2795. -webkit-justify-content: center;
  2796. justify-content: center;
  2797. color: var(--weui-FG-1);
  2798. background: var(--weui-BG-2)
  2799. }
  2800. .weui-search-bar__label span {
  2801. display: inline-block;
  2802. font-size: 14px;
  2803. vertical-align: middle
  2804. }
  2805. .weui-search-bar__label .weui-icon-search {
  2806. margin-right: 4px
  2807. }
  2808. .weui-search-bar__cancel-btn {
  2809. display: none;
  2810. margin-left: 8px;
  2811. line-height: 28px;
  2812. color: var(--weui-LINK);
  2813. white-space: nowrap
  2814. }
  2815. .weui-search-bar__input:not(:valid)+.weui-icon-clear {
  2816. display: none
  2817. }
  2818. input[type=search]::-webkit-search-cancel-button,
  2819. input[type=search]::-webkit-search-decoration,
  2820. input[type=search]::-webkit-search-results-button,
  2821. input[type=search]::-webkit-search-results-decoration {
  2822. display: none
  2823. }
  2824. .weui-picker {
  2825. position: fixed;
  2826. width: 100%;
  2827. box-sizing: border-box;
  2828. left: 0;
  2829. bottom: 0;
  2830. z-index: 5000;
  2831. background-color: var(--weui-BG-2);
  2832. padding-bottom: constant(safe-area-inset-bottom);
  2833. padding-bottom: env(safe-area-inset-bottom);
  2834. -webkit-backface-visibility: hidden;
  2835. backface-visibility: hidden;
  2836. -webkit-transform: translateY(100%);
  2837. transform: translateY(100%);
  2838. -webkit-transition: -webkit-transform .3s;
  2839. transition: -webkit-transform .3s;
  2840. transition: transform .3s;
  2841. transition: transform .3s, -webkit-transform .3s
  2842. }
  2843. .weui-picker__hd {
  2844. display: -webkit-box;
  2845. display: -webkit-flex;
  2846. display: flex;
  2847. padding: 16px;
  2848. padding: 16px calc(16px + constant(safe-area-inset-right)) 16px calc(16px + constant(safe-area-inset-left));
  2849. padding: 16px calc(16px + env(safe-area-inset-right)) 16px calc(16px + env(safe-area-inset-left));
  2850. position: relative;
  2851. text-align: center;
  2852. font-size: 17px;
  2853. line-height: 1.4
  2854. }
  2855. .weui-picker__hd:after {
  2856. content: " ";
  2857. position: absolute;
  2858. left: 0;
  2859. bottom: 0;
  2860. right: 0;
  2861. height: 1px;
  2862. border-bottom: 1px solid var(--weui-FG-3);
  2863. color: var(--weui-FG-3);
  2864. -webkit-transform-origin: 0 100%;
  2865. transform-origin: 0 100%;
  2866. -webkit-transform: scaleY(.5);
  2867. transform: scaleY(.5)
  2868. }
  2869. .weui-picker__bd {
  2870. display: -webkit-box;
  2871. display: -webkit-flex;
  2872. display: flex;
  2873. position: relative;
  2874. background-color: var(--weui-BG-2);
  2875. height: 240px;
  2876. overflow: hidden
  2877. }
  2878. .weui-picker__group {
  2879. -webkit-box-flex: 1;
  2880. -webkit-flex: 1;
  2881. flex: 1;
  2882. position: relative;
  2883. height: 100%
  2884. }
  2885. .weui-picker__group:first-child .weui-picker__item {
  2886. padding-left: constant(safe-area-inset-left);
  2887. padding-left: env(safe-area-inset-left)
  2888. }
  2889. .weui-picker__group:last-child .weui-picker__item {
  2890. padding-right: constant(safe-area-inset-right);
  2891. padding-right: env(safe-area-inset-right)
  2892. }
  2893. .weui-picker__mask {
  2894. position: absolute;
  2895. top: 0;
  2896. left: 0;
  2897. width: 100%;
  2898. height: 100%;
  2899. margin: 0 auto;
  2900. z-index: 3;
  2901. background-image: -webkit-linear-gradient(top, hsla(0, 0%, 100%, .95), hsla(0, 0%, 100%, .6)), -webkit-linear-gradient(bottom, hsla(0, 0%, 100%, .95), hsla(0, 0%, 100%, .6));
  2902. background-image: linear-gradient(180deg, hsla(0, 0%, 100%, .95), hsla(0, 0%, 100%, .6)), linear-gradient(0deg, hsla(0, 0%, 100%, .95), hsla(0, 0%, 100%, .6));
  2903. background-position: top, bottom;
  2904. background-size: 100% 92px;
  2905. background-repeat: no-repeat;
  2906. -webkit-transform: translateZ(0);
  2907. transform: translateZ(0)
  2908. }
  2909. [data-weui-theme=dark] .weui-picker__mask {
  2910. background-image: -webkit-linear-gradient(top, rgba(35, 35, 35, .95), rgba(35, 35, 35, .6)), -webkit-linear-gradient(bottom, rgba(35, 35, 35, .95), rgba(35, 35, 35, .6));
  2911. background-image: linear-gradient(180deg, rgba(35, 35, 35, .95), rgba(35, 35, 35, .6)), linear-gradient(0deg, rgba(35, 35, 35, .95), rgba(35, 35, 35, .6))
  2912. }
  2913. .weui-picker__indicator {
  2914. width: 100%;
  2915. height: 56px;
  2916. position: absolute;
  2917. left: 0;
  2918. top: 92px;
  2919. z-index: 3
  2920. }
  2921. .weui-picker__indicator:before {
  2922. top: 0;
  2923. border-top: 1px solid var(--weui-FG-3);
  2924. -webkit-transform-origin: 0 0;
  2925. transform-origin: 0 0;
  2926. -webkit-transform: scaleY(.5);
  2927. transform: scaleY(.5)
  2928. }
  2929. .weui-picker__indicator:after,
  2930. .weui-picker__indicator:before {
  2931. content: " ";
  2932. position: absolute;
  2933. left: 0;
  2934. right: 0;
  2935. height: 1px;
  2936. color: var(--weui-FG-3)
  2937. }
  2938. .weui-picker__indicator:after {
  2939. bottom: 0;
  2940. border-bottom: 1px solid var(--weui-FG-3);
  2941. -webkit-transform-origin: 0 100%;
  2942. transform-origin: 0 100%;
  2943. -webkit-transform: scaleY(.5);
  2944. transform: scaleY(.5)
  2945. }
  2946. .weui-picker__content {
  2947. position: absolute;
  2948. top: 0;
  2949. left: 0;
  2950. width: 100%
  2951. }
  2952. .weui-picker__item {
  2953. height: 48px;
  2954. line-height: 48px;
  2955. text-align: center;
  2956. color: var(--weui-FG-0);
  2957. text-overflow: ellipsis;
  2958. white-space: nowrap;
  2959. overflow: hidden
  2960. }
  2961. .weui-picker__item_disabled {
  2962. color: var(--weui-FG-1)
  2963. }
  2964. @-webkit-keyframes a {
  2965. 0% {
  2966. -webkit-transform: translate3d(0, 100%, 0);
  2967. transform: translate3d(0, 100%, 0)
  2968. }
  2969. to {
  2970. -webkit-transform: translateZ(0);
  2971. transform: translateZ(0)
  2972. }
  2973. }
  2974. @keyframes a {
  2975. 0% {
  2976. -webkit-transform: translate3d(0, 100%, 0);
  2977. transform: translate3d(0, 100%, 0)
  2978. }
  2979. to {
  2980. -webkit-transform: translateZ(0);
  2981. transform: translateZ(0)
  2982. }
  2983. }
  2984. .weui-animate-slide-up {
  2985. -webkit-animation: a ease .3s forwards;
  2986. animation: a ease .3s forwards
  2987. }
  2988. @-webkit-keyframes b {
  2989. 0% {
  2990. -webkit-transform: translateZ(0);
  2991. transform: translateZ(0)
  2992. }
  2993. to {
  2994. -webkit-transform: translate3d(0, 100%, 0);
  2995. transform: translate3d(0, 100%, 0)
  2996. }
  2997. }
  2998. @keyframes b {
  2999. 0% {
  3000. -webkit-transform: translateZ(0);
  3001. transform: translateZ(0)
  3002. }
  3003. to {
  3004. -webkit-transform: translate3d(0, 100%, 0);
  3005. transform: translate3d(0, 100%, 0)
  3006. }
  3007. }
  3008. .weui-animate-slide-down {
  3009. -webkit-animation: b ease .3s forwards;
  3010. animation: b ease .3s forwards
  3011. }
  3012. @-webkit-keyframes c {
  3013. 0% {
  3014. opacity: 0
  3015. }
  3016. to {
  3017. opacity: 1
  3018. }
  3019. }
  3020. @keyframes c {
  3021. 0% {
  3022. opacity: 0
  3023. }
  3024. to {
  3025. opacity: 1
  3026. }
  3027. }
  3028. .weui-animate-fade-in {
  3029. -webkit-animation: c ease .3s forwards;
  3030. animation: c ease .3s forwards
  3031. }
  3032. @-webkit-keyframes d {
  3033. 0% {
  3034. opacity: 1
  3035. }
  3036. to {
  3037. opacity: 0
  3038. }
  3039. }
  3040. @keyframes d {
  3041. 0% {
  3042. opacity: 1
  3043. }
  3044. to {
  3045. opacity: 0
  3046. }
  3047. }
  3048. .weui-animate-fade-out {
  3049. -webkit-animation: d ease .3s forwards;
  3050. animation: d ease .3s forwards
  3051. }
  3052. .weui-agree {
  3053. display: block;
  3054. padding: 8px 15px 0;
  3055. font-size: 14px;
  3056. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  3057. }
  3058. .weui-agree a,
  3059. .weui-agree navigator {
  3060. color: var(--weui-LINK)
  3061. }
  3062. .weui-agree navigator {
  3063. display: inline
  3064. }
  3065. .weui-agree__text {
  3066. color: var(--weui-FG-1);
  3067. margin-left: 2px
  3068. }
  3069. .weui-agree__checkbox {
  3070. -webkit-appearance: none;
  3071. appearance: none;
  3072. display: inline-block;
  3073. border: 0;
  3074. outline: 0;
  3075. vertical-align: middle;
  3076. background-color: currentColor;
  3077. -webkit-mask-position: 0 0;
  3078. mask-position: 0 0;
  3079. -webkit-mask-repeat: no-repeat;
  3080. mask-repeat: no-repeat;
  3081. -webkit-mask-size: 100%;
  3082. mask-size: 100%;
  3083. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E);
  3084. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M500%20916.667C269.881%20916.667%2083.333%20730.119%2083.333%20500%2083.333%20269.881%20269.881%2083.333%20500%2083.333c230.119%200%20416.667%20186.548%20416.667%20416.667%200%20230.119-186.548%20416.667-416.667%20416.667zm0-50c202.504%200%20366.667-164.163%20366.667-366.667%200-202.504-164.163-366.667-366.667-366.667-202.504%200-366.667%20164.163-366.667%20366.667%200%20202.504%20164.163%20366.667%20366.667%20366.667z%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%22.9%22%2F%3E%3C%2Fsvg%3E);
  3085. color: var(--weui-FG-2);
  3086. width: 1em;
  3087. height: 1em;
  3088. font-size: 17px;
  3089. margin-top: -.2em
  3090. }
  3091. .weui-agree__checkbox-check {
  3092. position: absolute;
  3093. left: -9999px
  3094. }
  3095. .weui-agree__checkbox-check[aria-checked=true]+.weui-agree__checkbox,
  3096. .weui-agree__checkbox:checked {
  3097. -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E);
  3098. mask-image: url(data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%2022C6.477%2022%202%2017.523%202%2012S6.477%202%2012%202s10%204.477%2010%2010-4.477%2010-10%2010zm-1.177-7.86l-2.765-2.767L7%2012.431l3.119%203.121a1%201%200%20001.414%200l5.952-5.95-1.062-1.062-5.6%205.6z%22%2F%3E%3C%2Fsvg%3E);
  3099. color: var(--weui-BRAND)
  3100. }
  3101. .weui-agree_animate {
  3102. -webkit-animation: e .3s 1;
  3103. animation: e .3s 1
  3104. }
  3105. @-webkit-keyframes e {
  3106. 0% {
  3107. -webkit-transform: translateX(0);
  3108. transform: translateX(0)
  3109. }
  3110. 16% {
  3111. -webkit-transform: translateX(-8px);
  3112. transform: translateX(-8px)
  3113. }
  3114. 28% {
  3115. -webkit-transform: translateX(-16px);
  3116. transform: translateX(-16px)
  3117. }
  3118. 44% {
  3119. -webkit-transform: translateX(0);
  3120. transform: translateX(0)
  3121. }
  3122. 59% {
  3123. -webkit-transform: translateX(-16px);
  3124. transform: translateX(-16px)
  3125. }
  3126. 73% {
  3127. -webkit-transform: translateX(0);
  3128. transform: translateX(0)
  3129. }
  3130. 82% {
  3131. -webkit-transform: translateX(16px);
  3132. transform: translateX(16px)
  3133. }
  3134. 94% {
  3135. -webkit-transform: translateX(8px);
  3136. transform: translateX(8px)
  3137. }
  3138. to {
  3139. -webkit-transform: translateX(0);
  3140. transform: translateX(0)
  3141. }
  3142. }
  3143. @keyframes e {
  3144. 0% {
  3145. -webkit-transform: translateX(0);
  3146. transform: translateX(0)
  3147. }
  3148. 16% {
  3149. -webkit-transform: translateX(-8px);
  3150. transform: translateX(-8px)
  3151. }
  3152. 28% {
  3153. -webkit-transform: translateX(-16px);
  3154. transform: translateX(-16px)
  3155. }
  3156. 44% {
  3157. -webkit-transform: translateX(0);
  3158. transform: translateX(0)
  3159. }
  3160. 59% {
  3161. -webkit-transform: translateX(-16px);
  3162. transform: translateX(-16px)
  3163. }
  3164. 73% {
  3165. -webkit-transform: translateX(0);
  3166. transform: translateX(0)
  3167. }
  3168. 82% {
  3169. -webkit-transform: translateX(16px);
  3170. transform: translateX(16px)
  3171. }
  3172. 94% {
  3173. -webkit-transform: translateX(8px);
  3174. transform: translateX(8px)
  3175. }
  3176. to {
  3177. -webkit-transform: translateX(0);
  3178. transform: translateX(0)
  3179. }
  3180. }
  3181. .weui-loading {
  3182. width: 20px;
  3183. height: 20px;
  3184. display: inline-block;
  3185. vertical-align: middle;
  3186. -webkit-animation: f 1s steps(12) infinite;
  3187. animation: f 1s steps(12) infinite;
  3188. background: transparent url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E9E9E9' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23989697' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%239B999A' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23A3A1A2' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23ABA9AA' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23B2B2B2' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23BAB8B9' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23C2C0C1' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23CBCBCB' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23D2D2D2' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23DADADA' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E2E2E2' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E") no-repeat;
  3189. background-size: 100%
  3190. }
  3191. .weui-btn_loading.weui-btn_primary .weui-loading,
  3192. .weui-loading.weui-loading_transparent {
  3193. background-image: url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect xmlns='http://www.w3.org/2000/svg' width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.56)' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.5)' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.43)' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.38)' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.32)' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.28)' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.25)' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.2)' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.17)' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.14)' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.1)' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.03)' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E")
  3194. }
  3195. @-webkit-keyframes f {
  3196. 0% {
  3197. -webkit-transform: rotate(0deg);
  3198. transform: rotate(0deg)
  3199. }
  3200. to {
  3201. -webkit-transform: rotate(1turn);
  3202. transform: rotate(1turn)
  3203. }
  3204. }
  3205. @keyframes f {
  3206. 0% {
  3207. -webkit-transform: rotate(0deg);
  3208. transform: rotate(0deg)
  3209. }
  3210. to {
  3211. -webkit-transform: rotate(1turn);
  3212. transform: rotate(1turn)
  3213. }
  3214. }
  3215. .weui-slider {
  3216. padding: 15px 18px;
  3217. -webkit-user-select: none;
  3218. user-select: none
  3219. }
  3220. .weui-slider__inner {
  3221. position: relative;
  3222. height: 2px;
  3223. background-color: var(--weui-FG-3)
  3224. }
  3225. .weui-slider__track {
  3226. height: 2px;
  3227. background-color: var(--weui-BRAND);
  3228. width: 0
  3229. }
  3230. .weui-slider__handler {
  3231. position: absolute;
  3232. left: 0;
  3233. top: 50%;
  3234. width: 28px;
  3235. height: 28px;
  3236. margin-left: -14px;
  3237. margin-top: -14px;
  3238. border-radius: 50%;
  3239. background-color: #fff;
  3240. box-shadow: 0 0 4px var(--weui-FG-3)
  3241. }
  3242. .weui-slider-box {
  3243. display: -webkit-box;
  3244. display: -webkit-flex;
  3245. display: flex;
  3246. -webkit-box-align: center;
  3247. -webkit-align-items: center;
  3248. align-items: center
  3249. }
  3250. .weui-slider-box .weui-slider {
  3251. -webkit-box-flex: 1;
  3252. -webkit-flex: 1;
  3253. flex: 1
  3254. }
  3255. .weui-slider-box__value {
  3256. margin-left: .5em;
  3257. min-width: 24px;
  3258. color: var(--weui-FG-1);
  3259. text-align: center;
  3260. font-size: 14px
  3261. }
  3262. .wx_dot_loading,
  3263. .wx_dot_loading:after,
  3264. .wx_dot_loading:before {
  3265. display: inline-block;
  3266. vertical-align: middle;
  3267. width: 6px;
  3268. height: 6px;
  3269. border-radius: 50%;
  3270. background-color: rgba(0, 0, 0, .3);
  3271. font-size: 0;
  3272. -webkit-animation: h 1.6s step-start infinite;
  3273. animation: h 1.6s step-start infinite
  3274. }
  3275. .wx_dot_loading {
  3276. position: relative
  3277. }
  3278. .wx_dot_loading:before {
  3279. content: "";
  3280. position: absolute;
  3281. left: -12px;
  3282. background-color: rgba(0, 0, 0, .1);
  3283. -webkit-animation: g 1.6s step-start infinite;
  3284. animation: g 1.6s step-start infinite
  3285. }
  3286. .wx_dot_loading:after {
  3287. content: "";
  3288. position: absolute;
  3289. right: -12px;
  3290. background-color: rgba(0, 0, 0, .5);
  3291. -webkit-animation: i 1.6s step-start infinite;
  3292. animation: i 1.6s step-start infinite
  3293. }
  3294. @-webkit-keyframes g {
  3295. 0%,
  3296. to {
  3297. background-color: rgba(0, 0, 0, .1)
  3298. }
  3299. 30% {
  3300. background-color: rgba(0, 0, 0, .5)
  3301. }
  3302. 60% {
  3303. background-color: rgba(0, 0, 0, .3)
  3304. }
  3305. }
  3306. @keyframes g {
  3307. 0%,
  3308. to {
  3309. background-color: rgba(0, 0, 0, .1)
  3310. }
  3311. 30% {
  3312. background-color: rgba(0, 0, 0, .5)
  3313. }
  3314. 60% {
  3315. background-color: rgba(0, 0, 0, .3)
  3316. }
  3317. }
  3318. @-webkit-keyframes h {
  3319. 0%,
  3320. to {
  3321. background-color: rgba(0, 0, 0, .3)
  3322. }
  3323. 30% {
  3324. background-color: rgba(0, 0, 0, .1)
  3325. }
  3326. 60% {
  3327. background-color: rgba(0, 0, 0, .5)
  3328. }
  3329. }
  3330. @keyframes h {
  3331. 0%,
  3332. to {
  3333. background-color: rgba(0, 0, 0, .3)
  3334. }
  3335. 30% {
  3336. background-color: rgba(0, 0, 0, .1)
  3337. }
  3338. 60% {
  3339. background-color: rgba(0, 0, 0, .5)
  3340. }
  3341. }
  3342. @-webkit-keyframes i {
  3343. 0%,
  3344. to {
  3345. background-color: rgba(0, 0, 0, .5)
  3346. }
  3347. 30% {
  3348. background-color: rgba(0, 0, 0, .3)
  3349. }
  3350. 60% {
  3351. background-color: rgba(0, 0, 0, .1)
  3352. }
  3353. }
  3354. @keyframes i {
  3355. 0%,
  3356. to {
  3357. background-color: rgba(0, 0, 0, .5)
  3358. }
  3359. 30% {
  3360. background-color: rgba(0, 0, 0, .3)
  3361. }
  3362. 60% {
  3363. background-color: rgba(0, 0, 0, .1)
  3364. }
  3365. }
  3366. .wx_dot_loading_white {
  3367. background-color: hsla(0, 0%, 100%, .3);
  3368. -webkit-animation: k 1.6s step-start infinite;
  3369. animation: k 1.6s step-start infinite
  3370. }
  3371. .wx_dot_loading_white:before {
  3372. background-color: hsla(0, 0%, 100%, .5);
  3373. -webkit-animation: j 1.6s step-start infinite;
  3374. animation: j 1.6s step-start infinite
  3375. }
  3376. .wx_dot_loading_white:after {
  3377. background-color: hsla(0, 0%, 100%, .1);
  3378. -webkit-animation: l 1.6s step-start infinite;
  3379. animation: l 1.6s step-start infinite
  3380. }
  3381. @-webkit-keyframes j {
  3382. 0%,
  3383. to {
  3384. background-color: hsla(0, 0%, 100%, .5)
  3385. }
  3386. 30% {
  3387. background-color: hsla(0, 0%, 100%, .1)
  3388. }
  3389. 60% {
  3390. background-color: hsla(0, 0%, 100%, .3)
  3391. }
  3392. }
  3393. @keyframes j {
  3394. 0%,
  3395. to {
  3396. background-color: hsla(0, 0%, 100%, .5)
  3397. }
  3398. 30% {
  3399. background-color: hsla(0, 0%, 100%, .1)
  3400. }
  3401. 60% {
  3402. background-color: hsla(0, 0%, 100%, .3)
  3403. }
  3404. }
  3405. @-webkit-keyframes k {
  3406. 0%,
  3407. to {
  3408. background-color: hsla(0, 0%, 100%, .3)
  3409. }
  3410. 30% {
  3411. background-color: hsla(0, 0%, 100%, .5)
  3412. }
  3413. 60% {
  3414. background-color: hsla(0, 0%, 100%, .1)
  3415. }
  3416. }
  3417. @keyframes k {
  3418. 0%,
  3419. to {
  3420. background-color: hsla(0, 0%, 100%, .3)
  3421. }
  3422. 30% {
  3423. background-color: hsla(0, 0%, 100%, .5)
  3424. }
  3425. 60% {
  3426. background-color: hsla(0, 0%, 100%, .1)
  3427. }
  3428. }
  3429. @-webkit-keyframes l {
  3430. 0%,
  3431. to {
  3432. background-color: hsla(0, 0%, 100%, .1)
  3433. }
  3434. 30% {
  3435. background-color: hsla(0, 0%, 100%, .3)
  3436. }
  3437. 60% {
  3438. background-color: hsla(0, 0%, 100%, .5)
  3439. }
  3440. }
  3441. @keyframes l {
  3442. 0%,
  3443. to {
  3444. background-color: hsla(0, 0%, 100%, .1)
  3445. }
  3446. 30% {
  3447. background-color: hsla(0, 0%, 100%, .3)
  3448. }
  3449. 60% {
  3450. background-color: hsla(0, 0%, 100%, .5)
  3451. }
  3452. }
  3453. :host {
  3454. width: 100%
  3455. }
  3456. .weui-slideview {
  3457. position: relative;
  3458. overflow: hidden
  3459. }
  3460. .weui-slideview__left {
  3461. position: relative;
  3462. z-index: 10
  3463. }
  3464. .weui-slideview__right {
  3465. position: absolute;
  3466. z-index: 1;
  3467. left: 100%;
  3468. top: 0;
  3469. height: 100%
  3470. }
  3471. .weui-slideview__btn__wrp {
  3472. position: absolute;
  3473. left: 0;
  3474. bottom: 0;
  3475. text-align: center;
  3476. min-width: 69px;
  3477. height: 100%;
  3478. white-space: nowrap
  3479. }
  3480. .weui-slideview__btn {
  3481. color: #fff;
  3482. padding: 0 17px
  3483. }
  3484. .weui-slideview__btn-group_default .weui-slideview__btn {
  3485. background: #c7c7cc
  3486. }
  3487. [data-weui-theme=dark] .weui-slideview__btn-group_default .weui-slideview__btn {
  3488. background: var(--weui-BG-4)
  3489. }
  3490. .weui-slideview__btn-group_default~.weui-slideview__btn-group_default:before {
  3491. content: " ";
  3492. position: absolute;
  3493. left: 0;
  3494. top: 0;
  3495. width: 1px;
  3496. bottom: 0;
  3497. border-left: 1px solid #fff;
  3498. color: #fff;
  3499. -webkit-transform-origin: 0 0;
  3500. transform-origin: 0 0;
  3501. -webkit-transform: scaleX(.5);
  3502. transform: scaleX(.5)
  3503. }
  3504. [data-weui-theme=dark] .weui-slideview__btn-group_default~.weui-slideview__btn-group_default:before {
  3505. border-left-color: var(--weui-FG-3)
  3506. }
  3507. .weui-slideview__btn-group_default:first-child:before {
  3508. display: none
  3509. }
  3510. .weui-slideview__btn-group_warn .weui-slideview__btn {
  3511. background: #fe3b30
  3512. }
  3513. .weui-slideview__btn-group_warn~.weui-slideview__btn-group_warn:before {
  3514. content: " ";
  3515. position: absolute;
  3516. left: 0;
  3517. top: 0;
  3518. width: 1px;
  3519. bottom: 0;
  3520. border-left: 1px solid #fff;
  3521. color: #fff;
  3522. -webkit-transform-origin: 0 0;
  3523. transform-origin: 0 0;
  3524. -webkit-transform: scaleX(.5);
  3525. transform: scaleX(.5)
  3526. }
  3527. .weui-slideview__btn-group_warn:first-child:before {
  3528. display: none
  3529. }
  3530. .weui-slideview_icon .weui-slideview__btn__wrp {
  3531. background: transparent;
  3532. font-size: 0
  3533. }
  3534. .weui-slideview_icon .weui-slideview__btn__wrp:first-child {
  3535. padding-left: 16px
  3536. }
  3537. .weui-slideview_icon .weui-slideview__btn__wrp:last-child {
  3538. padding-right: 8px
  3539. }
  3540. .weui-slideview_icon .weui-slideview__btn {
  3541. width: 48px;
  3542. height: 48px;
  3543. line-height: 48px;
  3544. padding: 0;
  3545. display: inline-block;
  3546. vertical-align: middle;
  3547. border-radius: 50%;
  3548. background-color: #fff
  3549. }
  3550. [data-weui-theme=dark] .weui-slideview_icon .weui-slideview__btn {
  3551. background-color: var(--weui-BG-4)
  3552. }
  3553. .weui-slideview_icon .weui-slideview__btn__icon {
  3554. display: inline-block;
  3555. vertical-align: middle;
  3556. width: 22px;
  3557. height: 22px
  3558. }
  3559. page {
  3560. --height: 44px;
  3561. --right: 95px
  3562. }
  3563. .weui-navigation-bar {
  3564. overflow: hidden;
  3565. color: var(--weui-FG-0)
  3566. }
  3567. .weui-navigation-bar .android {
  3568. --height: 48px;
  3569. --right: 221px
  3570. }
  3571. .weui-navigation-bar__inner {
  3572. position: fixed;
  3573. top: 0;
  3574. left: 0;
  3575. z-index: 5001;
  3576. height: var(--height);
  3577. padding-right: var(--right);
  3578. width: calc(100% - var(--right))
  3579. }
  3580. .weui-navigation-bar__inner,
  3581. .weui-navigation-bar__inner .weui-navigation-bar__left {
  3582. display: -webkit-box;
  3583. display: -webkit-flex;
  3584. display: flex;
  3585. -webkit-box-align: center;
  3586. -webkit-align-items: center;
  3587. align-items: center
  3588. }
  3589. .weui-navigation-bar__inner .weui-navigation-bar__left {
  3590. position: relative;
  3591. width: var(--right);
  3592. padding-left: 16px
  3593. }
  3594. .weui-navigation-bar__inner .weui-navigation-bar__left .weui-navigation-bar__btn {
  3595. display: inline-block;
  3596. vertical-align: middle;
  3597. background-repeat: no-repeat
  3598. }
  3599. .weui-navigation-bar__inner .weui-navigation-bar__left .weui-navigation-bar__btn_goback {
  3600. font-size: 12px;
  3601. width: 1em;
  3602. height: 2em;
  3603. -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='24' viewBox='0 0 12 24'%3E %3Cpath fill-opacity='.9' fill-rule='evenodd' d='M10 19.438L8.955 20.5l-7.666-7.79a1.02 1.02 0 0 1 0-1.42L8.955 3.5 10 4.563 2.682 12 10 19.438z'/%3E%3C/svg%3E") no-repeat 50% 50%;
  3604. mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='24' viewBox='0 0 12 24'%3E %3Cpath fill-opacity='.9' fill-rule='evenodd' d='M10 19.438L8.955 20.5l-7.666-7.79a1.02 1.02 0 0 1 0-1.42L8.955 3.5 10 4.563 2.682 12 10 19.438z'/%3E%3C/svg%3E") no-repeat 50% 50%;
  3605. -webkit-mask-size: cover;
  3606. mask-size: cover;
  3607. background-color: currentColor
  3608. }
  3609. .weui-navigation-bar__inner .weui-navigation-bar__left .weui-navigation-bar__btn_goback:active {
  3610. opacity: .5
  3611. }
  3612. .weui-navigation-bar__inner .weui-navigation-bar__center {
  3613. font-size: 17px;
  3614. text-align: center;
  3615. position: relative;
  3616. -webkit-box-flex: 1;
  3617. -webkit-flex: 1;
  3618. flex: 1;
  3619. display: -webkit-box;
  3620. display: -webkit-flex;
  3621. display: flex;
  3622. -webkit-box-align: center;
  3623. -webkit-align-items: center;
  3624. align-items: center;
  3625. -webkit-box-pack: center;
  3626. -webkit-justify-content: center;
  3627. justify-content: center
  3628. }
  3629. .weui-navigation-bar__inner .weui-navigation-bar__loading {
  3630. margin-right: 4px;
  3631. font-size: 0
  3632. }
  3633. .weui-navigation-bar__inner .weui-navigation-bar__loading .weui-loading {
  3634. margin-left: 0
  3635. }
  3636. .weui-navigation-bar__inner .weui-navigation-bar__right {
  3637. margin-right: 16px
  3638. }
  3639. .weui-navigation-bar__placeholder {
  3640. height: var(--height);
  3641. background: var(--weui-BG-1);
  3642. position: relative;
  3643. z-index: 50
  3644. }
  3645. .weui-uploader__hd {
  3646. display: block
  3647. }
  3648. .weui-uploader__overview {
  3649. display: -webkit-box;
  3650. display: -webkit-flex;
  3651. display: flex;
  3652. -webkit-box-align: center;
  3653. -webkit-align-items: center;
  3654. align-items: center
  3655. }
  3656. .weui-uploader__tips {
  3657. color: var(--weui-FG-2);
  3658. font-size: 14px;
  3659. line-height: 1.4;
  3660. padding-top: 4px
  3661. }
  3662. .weui-uploader__img {
  3663. display: block;
  3664. width: 100%;
  3665. height: 100%
  3666. }
  3667. .weui-gallery {
  3668. display: -webkit-box;
  3669. display: -webkit-flex;
  3670. display: flex;
  3671. -webkit-box-orient: vertical;
  3672. -webkit-box-direction: normal;
  3673. -webkit-flex-direction: column;
  3674. flex-direction: column;
  3675. -webkit-flex-wrap: nowrap;
  3676. flex-wrap: nowrap
  3677. }
  3678. .weui-gallery__info {
  3679. color: #fff;
  3680. font-size: 17px;
  3681. line-height: 60px;
  3682. min-height: 60px;
  3683. text-align: center
  3684. }
  3685. .weui-gallery__img__wrp {
  3686. -webkit-box-flex: 1;
  3687. -webkit-flex: 1;
  3688. flex: 1;
  3689. position: relative;
  3690. font-size: 0
  3691. }
  3692. .weui-gallery__img {
  3693. position: absolute;
  3694. width: 100%;
  3695. height: 100%
  3696. }
  3697. .weui-gallery__opr {
  3698. position: static
  3699. }
  3700. .weui-search-bar .weui-search-bar__box .weui-search-bar__input {
  3701. height: inherit;
  3702. line-height: inherit
  3703. }
  3704. .weui-search-bar .weui-search-bar__box .weui-icon-clear {
  3705. display: block
  3706. }
  3707. .weui-loadmore .weui-loading {
  3708. margin-right: .3em
  3709. }
  3710. .weui-btn_input-clear {
  3711. display: block
  3712. }