1
0

privacyPopup.wxss 156 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202
  1. /*!
  2. * WeUI v2.5.16 (https://github.com/weui/weui-wxss)
  3. * Copyright 2023 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, 0.2);
  9. }
  10. [data-weui-theme='dark'] {
  11. --weui-BTN-DISABLED-FONT-COLOR: hsla(0, 0%, 100%, 0.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%, 0.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%, 0.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%, 0.126);
  33. }
  34. [data-weui-theme='light'],
  35. page {
  36. --weui-BTN-ACTIVE-MASK: rgba(0, 0, 0, 0.1);
  37. }
  38. [data-weui-theme='dark'] {
  39. --weui-BTN-ACTIVE-MASK: hsla(0, 0%, 100%, 0.05);
  40. }
  41. [data-weui-theme='light'][data-weui-mode='care'],
  42. page[data-weui-mode='care'] {
  43. --weui-BTN-DEFAULT-COLOR: #018942;
  44. }
  45. [data-weui-theme='dark'][data-weui-mode='care'] {
  46. --weui-BTN-DEFAULT-COLOR: hsla(0, 0%, 100%, 0.8);
  47. }
  48. [data-weui-theme='light'],
  49. page {
  50. --weui-DIALOG-LINE-COLOR: rgba(0, 0, 0, 0.1);
  51. }
  52. [data-weui-theme='dark'] {
  53. --weui-DIALOG-LINE-COLOR: hsla(0, 0%, 100%, 0.1);
  54. }
  55. page {
  56. line-height: 1.6;
  57. font-family: system-ui, -apple-system, Helvetica Neue, sans-serif;
  58. }
  59. icon {
  60. vertical-align: middle;
  61. }
  62. .weui-input__placeholder {
  63. color: var(--weui-FG-2);
  64. }
  65. [data-weui-theme='light'],
  66. page {
  67. --weui-BG-0: #ededed;
  68. --weui-BG-1: #f7f7f7;
  69. --weui-BG-2: #fff;
  70. --weui-BG-3: #f7f7f7;
  71. --weui-BG-4: #4c4c4c;
  72. --weui-BG-5: #fff;
  73. --weui-FG-0: rgba(0, 0, 0, 0.9);
  74. --weui-FG-HALF: rgba(0, 0, 0, 0.9);
  75. --weui-FG-1: rgba(0, 0, 0, 0.5);
  76. --weui-FG-2: rgba(0, 0, 0, 0.3);
  77. --weui-FG-3: rgba(0, 0, 0, 0.1);
  78. --weui-FG-4: rgba(0, 0, 0, 0.15);
  79. --weui-RED: #fa5151;
  80. --weui-REDORANGE: #ff6146;
  81. --weui-ORANGE: #fa9d3b;
  82. --weui-YELLOW: #ffc300;
  83. --weui-GREEN: #91d300;
  84. --weui-LIGHTGREEN: #95ec69;
  85. --weui-BRAND: #07c160;
  86. --weui-BLUE: #10aeff;
  87. --weui-INDIGO: #1485ee;
  88. --weui-PURPLE: #6467f0;
  89. --weui-WHITE: #fff;
  90. --weui-LINK: #576b95;
  91. --weui-TEXTGREEN: #06ae56;
  92. --weui-FG: #000;
  93. --weui-BG: #fff;
  94. --weui-TAG-TEXT-ORANGE: #fa9d3b;
  95. --weui-TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, 0.1);
  96. --weui-TAG-TEXT-GREEN: #06ae56;
  97. --weui-TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
  98. --weui-TAG-TEXT-BLUE: #10aeff;
  99. --weui-TAG-BACKGROUND-BLUE: rgba(16, 174, 255, 0.1);
  100. --weui-TAG-TEXT-BLACK: rgba(0, 0, 0, 0.5);
  101. --weui-TAG-BACKGROUND-BLACK: rgba(0, 0, 0, 0.05);
  102. }
  103. [data-weui-theme='dark'] {
  104. --weui-BG-0: #111;
  105. --weui-BG-1: #1e1e1e;
  106. --weui-BG-2: #191919;
  107. --weui-BG-3: #202020;
  108. --weui-BG-4: #404040;
  109. --weui-BG-5: #2c2c2c;
  110. --weui-FG-0: hsla(0, 0%, 100%, 0.8);
  111. --weui-FG-HALF: hsla(0, 0%, 100%, 0.6);
  112. --weui-FG-1: hsla(0, 0%, 100%, 0.5);
  113. --weui-FG-2: hsla(0, 0%, 100%, 0.3);
  114. --weui-FG-3: hsla(0, 0%, 100%, 0.1);
  115. --weui-FG-4: hsla(0, 0%, 100%, 0.15);
  116. --weui-RED: #fa5151;
  117. --weui-REDORANGE: #ff6146;
  118. --weui-ORANGE: #c87d2f;
  119. --weui-YELLOW: #cc9c00;
  120. --weui-GREEN: #74a800;
  121. --weui-LIGHTGREEN: #3eb575;
  122. --weui-BRAND: #07c160;
  123. --weui-BLUE: #10aeff;
  124. --weui-INDIGO: #1196ff;
  125. --weui-PURPLE: #8183ff;
  126. --weui-WHITE: hsla(0, 0%, 100%, 0.8);
  127. --weui-LINK: #7d90a9;
  128. --weui-TEXTGREEN: #259c5c;
  129. --weui-FG: #fff;
  130. --weui-BG: #000;
  131. --weui-TAG-TEXT-ORANGE: rgba(250, 157, 59, 0.6);
  132. --weui-TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, 0.1);
  133. --weui-TAG-TEXT-GREEN: rgba(6, 174, 86, 0.6);
  134. --weui-TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
  135. --weui-TAG-TEXT-BLUE: rgba(16, 174, 255, 0.6);
  136. --weui-TAG-BACKGROUND-BLUE: rgba(16, 174, 255, 0.1);
  137. --weui-TAG-TEXT-BLACK: hsla(0, 0%, 100%, 0.5);
  138. --weui-TAG-BACKGROUND-BLACK: hsla(0, 0%, 100%, 0.05);
  139. }
  140. [data-weui-theme='light'][data-weui-mode='care'],
  141. page[data-weui-mode='care'] {
  142. --weui-BG-0: #ededed;
  143. --weui-BG-1: #f7f7f7;
  144. --weui-BG-2: #fff;
  145. --weui-BG-3: #f7f7f7;
  146. --weui-BG-4: #4c4c4c;
  147. --weui-BG-5: #fff;
  148. --weui-FG-0: #000;
  149. --weui-FG-HALF: #000;
  150. --weui-FG-1: rgba(0, 0, 0, 0.6);
  151. --weui-FG-2: rgba(0, 0, 0, 0.42);
  152. --weui-FG-3: rgba(0, 0, 0, 0.1);
  153. --weui-FG-4: rgba(0, 0, 0, 0.15);
  154. --weui-RED: #dc3636;
  155. --weui-REDORANGE: #ff6146;
  156. --weui-ORANGE: #e17719;
  157. --weui-YELLOW: #bb8e00;
  158. --weui-GREEN: #4f8400;
  159. --weui-LIGHTGREEN: #2e8800;
  160. --weui-BRAND: #018942;
  161. --weui-BLUE: #007dbb;
  162. --weui-INDIGO: #0075e2;
  163. --weui-PURPLE: #6265f1;
  164. --weui-WHITE: #fff;
  165. --weui-LINK: #576b95;
  166. --weui-TEXTGREEN: #06ae56;
  167. --weui-FG: #000;
  168. --weui-BG: #fff;
  169. --weui-TAG-TEXT-ORANGE: #e17719;
  170. --weui-TAG-BACKGROUND-ORANGE: rgba(225, 119, 25, 0.1);
  171. --weui-TAG-TEXT-GREEN: #06ae56;
  172. --weui-TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
  173. --weui-TAG-TEXT-BLUE: #007dbb;
  174. --weui-TAG-BACKGROUND-BLUE: rgba(0, 125, 187, 0.1);
  175. --weui-TAG-TEXT-BLACK: rgba(0, 0, 0, 0.5);
  176. --weui-TAG-BACKGROUND-BLACK: rgba(0, 0, 0, 0.05);
  177. }
  178. [data-weui-theme='dark'][data-weui-mode='care'] {
  179. --weui-BG-0: #111;
  180. --weui-BG-1: #1e1e1e;
  181. --weui-BG-2: #191919;
  182. --weui-BG-3: #202020;
  183. --weui-BG-4: #404040;
  184. --weui-BG-5: #2c2c2c;
  185. --weui-FG-0: hsla(0, 0%, 100%, 0.85);
  186. --weui-FG-HALF: hsla(0, 0%, 100%, 0.65);
  187. --weui-FG-1: hsla(0, 0%, 100%, 0.55);
  188. --weui-FG-2: hsla(0, 0%, 100%, 0.35);
  189. --weui-FG-3: hsla(0, 0%, 100%, 0.1);
  190. --weui-FG-4: hsla(0, 0%, 100%, 0.15);
  191. --weui-RED: #fa5151;
  192. --weui-REDORANGE: #ff6146;
  193. --weui-ORANGE: #c87d2f;
  194. --weui-YELLOW: #cc9c00;
  195. --weui-GREEN: #74a800;
  196. --weui-LIGHTGREEN: #3eb575;
  197. --weui-BRAND: #07c160;
  198. --weui-BLUE: #10aeff;
  199. --weui-INDIGO: #1196ff;
  200. --weui-PURPLE: #8183ff;
  201. --weui-WHITE: hsla(0, 0%, 100%, 0.8);
  202. --weui-LINK: #7d90a9;
  203. --weui-TEXTGREEN: #259c5c;
  204. --weui-FG: #fff;
  205. --weui-BG: #000;
  206. --weui-TAG-TEXT-ORANGE: rgba(250, 157, 59, 0.6);
  207. --weui-TAG-BACKGROUND-ORANGE: rgba(250, 157, 59, 0.1);
  208. --weui-TAG-TEXT-GREEN: rgba(6, 174, 86, 0.6);
  209. --weui-TAG-BACKGROUND-GREEN: rgba(6, 174, 86, 0.1);
  210. --weui-TAG-TEXT-BLUE: rgba(16, 174, 255, 0.6);
  211. --weui-TAG-BACKGROUND-BLUE: rgba(16, 174, 255, 0.1);
  212. --weui-TAG-TEXT-BLACK: hsla(0, 0%, 100%, 0.5);
  213. --weui-TAG-BACKGROUND-BLACK: hsla(0, 0%, 100%, 0.05);
  214. }
  215. [data-weui-theme='light'],
  216. page {
  217. --weui-BG-COLOR-ACTIVE: #ececec;
  218. }
  219. [data-weui-theme='dark'] {
  220. --weui-BG-COLOR-ACTIVE: #373737;
  221. }
  222. [class*=' weui-icon-'][class*=' weui-icon-'],
  223. [class*=' weui-icon-'][class^='weui-icon-'],
  224. [class^='weui-icon-'][class*=' weui-icon-'],
  225. [class^='weui-icon-'][class^='weui-icon-'] {
  226. display: inline-block;
  227. vertical-align: middle;
  228. font-size: 20rpx;
  229. width: 2.4em;
  230. height: 2.4em;
  231. -webkit-mask-position: 50% 50%;
  232. mask-position: 50% 50%;
  233. -webkit-mask-repeat: no-repeat;
  234. mask-repeat: no-repeat;
  235. -webkit-mask-size: 100%;
  236. mask-size: 100%;
  237. background-color: currentColor;
  238. }
  239. .weui-icon-circle {
  240. -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);
  241. 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);
  242. }
  243. .weui-icon-download {
  244. -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);
  245. 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);
  246. }
  247. .weui-icon-info {
  248. -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);
  249. 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);
  250. }
  251. .weui-icon-safe-success {
  252. -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);
  253. 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);
  254. }
  255. .weui-icon-safe-warn {
  256. -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);
  257. 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);
  258. }
  259. .weui-icon-success {
  260. -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);
  261. 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);
  262. }
  263. .weui-icon-success-circle {
  264. -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);
  265. 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);
  266. }
  267. .weui-icon-success-no-circle {
  268. -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);
  269. 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);
  270. }
  271. .weui-icon-waiting {
  272. -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);
  273. 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);
  274. }
  275. .weui-icon-waiting-circle {
  276. -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);
  277. 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);
  278. }
  279. .weui-icon-warn {
  280. -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);
  281. 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);
  282. }
  283. .weui-icon-info-circle {
  284. -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);
  285. 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);
  286. }
  287. .weui-icon-cancel {
  288. -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);
  289. 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);
  290. }
  291. .weui-icon-search {
  292. -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);
  293. 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);
  294. }
  295. .weui-icon-clear {
  296. -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);
  297. 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);
  298. }
  299. .weui-icon-back {
  300. -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);
  301. 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);
  302. }
  303. .weui-icon-delete {
  304. -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);
  305. 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);
  306. }
  307. .weui-icon-success-no-circle-thin {
  308. -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);
  309. 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);
  310. }
  311. .weui-icon-arrow {
  312. -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);
  313. 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);
  314. }
  315. .weui-icon-arrow-bold {
  316. -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);
  317. 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);
  318. }
  319. .weui-icon-back-arrow {
  320. -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);
  321. 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);
  322. }
  323. .weui-icon-back-arrow-thin {
  324. -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);
  325. 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);
  326. }
  327. .weui-icon-close {
  328. -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);
  329. 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);
  330. }
  331. .weui-icon-close-thin {
  332. -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);
  333. 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);
  334. }
  335. .weui-icon-back-circle {
  336. -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);
  337. 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);
  338. }
  339. .weui-icon-success {
  340. color: var(--weui-BRAND);
  341. }
  342. .weui-icon-waiting {
  343. color: var(--weui-BLUE);
  344. }
  345. .weui-icon-warn {
  346. color: var(--weui-RED);
  347. }
  348. .weui-icon-info {
  349. color: var(--weui-BLUE);
  350. }
  351. .weui-icon-success-circle,
  352. .weui-icon-success-no-circle,
  353. .weui-icon-success-no-circle-thin {
  354. color: var(--weui-BRAND);
  355. }
  356. .weui-icon-waiting-circle {
  357. color: var(--weui-BLUE);
  358. }
  359. .weui-icon-circle {
  360. color: var(--weui-FG-2);
  361. }
  362. .weui-icon-download {
  363. color: var(--weui-BRAND);
  364. }
  365. .weui-icon-info-circle {
  366. color: var(--weui-FG-2);
  367. }
  368. .weui-icon-safe-success {
  369. color: var(--weui-BRAND);
  370. }
  371. .weui-icon-safe-warn {
  372. color: var(--weui-YELLOW);
  373. }
  374. .weui-icon-cancel {
  375. color: var(--weui-RED);
  376. }
  377. .weui-icon-search {
  378. color: var(--weui-FG-1);
  379. }
  380. .weui-icon-clear {
  381. color: var(--weui-FG-2);
  382. }
  383. .weui-icon-clear:active {
  384. color: var(--weui-FG-1);
  385. }
  386. .weui-icon-delete.weui-icon_gallery-delete {
  387. color: var(--weui-WHITE);
  388. }
  389. .weui-icon-arrow-bold.weui-icon-arrow,
  390. .weui-icon-arrow-bold.weui-icon-arrow-bold,
  391. .weui-icon-arrow-bold.weui-icon-back-arrow,
  392. .weui-icon-arrow-bold.weui-icon-back-arrow-thin,
  393. .weui-icon-arrow.weui-icon-arrow,
  394. .weui-icon-arrow.weui-icon-arrow-bold,
  395. .weui-icon-arrow.weui-icon-back-arrow,
  396. .weui-icon-arrow.weui-icon-back-arrow-thin,
  397. .weui-icon-back-arrow-thin.weui-icon-arrow,
  398. .weui-icon-back-arrow-thin.weui-icon-arrow-bold,
  399. .weui-icon-back-arrow-thin.weui-icon-back-arrow,
  400. .weui-icon-back-arrow-thin.weui-icon-back-arrow-thin,
  401. .weui-icon-back-arrow.weui-icon-arrow,
  402. .weui-icon-back-arrow.weui-icon-arrow-bold,
  403. .weui-icon-back-arrow.weui-icon-back-arrow,
  404. .weui-icon-back-arrow.weui-icon-back-arrow-thin {
  405. width: 1.2em;
  406. }
  407. .weui-icon-arrow,
  408. .weui-icon-arrow-bold {
  409. color: var(--weui-FG-2);
  410. }
  411. .weui-icon-back,
  412. .weui-icon-back-arrow,
  413. .weui-icon-back-arrow-thin,
  414. .weui-icon-back-circle {
  415. color: var(--weui-FG-0);
  416. }
  417. .weui-icon_msg.weui-icon_msg {
  418. width: 6.4em;
  419. height: 6.4em;
  420. }
  421. .weui-half-screen-dialog__mask {
  422. width: 100vw;
  423. height: 100vh;
  424. position: fixed;
  425. background-color: rgba(0,0,0,0.4);
  426. top: 0em;
  427. left: 0em;
  428. z-index: 99999;
  429. }
  430. .weui-icon_msg.weui-icon_msg.weui-icon-warn {
  431. color: var(--weui-RED);
  432. }
  433. .weui-icon_msg.weui-icon_msg.weui-icon-info-circle {
  434. color: var(--weui-BLUE);
  435. }
  436. .weui-icon_msg-primary.weui-icon_msg-primary {
  437. width: 6.4em;
  438. height: 6.4em;
  439. }
  440. .weui-icon_msg-primary.weui-icon_msg-primary.weui-icon-warn {
  441. color: var(--weui-YELLOW);
  442. }
  443. .weui-hidden_abs {
  444. opacity: 0;
  445. position: absolute;
  446. width: 2rpx;
  447. height: 2rpx;
  448. overflow: hidden;
  449. }
  450. .weui-a11y_ref {
  451. display: none;
  452. }
  453. .weui-hidden-space:empty:before {
  454. content: '\00A0';
  455. position: absolute;
  456. width: 2rpx;
  457. height: 2rpx;
  458. overflow: hidden;
  459. }
  460. .weui-a11y-combo {
  461. position: relative;
  462. }
  463. .weui-a11y-combo__helper {
  464. opacity: 0;
  465. position: absolute;
  466. width: 100%;
  467. height: 100%;
  468. overflow: hidden;
  469. }
  470. .weui-a11y-combo__content {
  471. position: relative;
  472. z-index: 1;
  473. }
  474. .weui-wa-hotarea-el {
  475. position: absolute;
  476. top: 50%;
  477. left: 50%;
  478. -webkit-transform: translate(-50%, -50%);
  479. transform: translate(-50%, -50%);
  480. min-width: 88rpx;
  481. min-height: 88rpx;
  482. width: 100%;
  483. height: 100%;
  484. }
  485. .weui-wa-hotarea,
  486. .weui-wa-hotarea-el__wrp,
  487. .weui-wa-hotarea_before {
  488. position: relative;
  489. }
  490. .weui-wa-hotarea-el__wrp a,
  491. .weui-wa-hotarea-el__wrp button,
  492. .weui-wa-hotarea-el__wrp navigator,
  493. .weui-wa-hotarea_before a,
  494. .weui-wa-hotarea_before button,
  495. .weui-wa-hotarea_before navigator,
  496. .weui-wa-hotarea a,
  497. .weui-wa-hotarea button,
  498. .weui-wa-hotarea navigator {
  499. position: relative;
  500. z-index: 1;
  501. }
  502. .weui-wa-hotarea:after,
  503. .weui-wa-hotarea_before:before {
  504. content: '';
  505. pointer-events: auto;
  506. position: absolute;
  507. top: 50%;
  508. left: 50%;
  509. -webkit-transform: translate(-50%, -50%);
  510. transform: translate(-50%, -50%);
  511. min-width: 88rpx;
  512. min-height: 88rpx;
  513. width: 100%;
  514. height: 100%;
  515. }
  516. .weui-link {
  517. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  518. }
  519. .weui-link,
  520. .weui-link:visited {
  521. color: var(--weui-LINK);
  522. }
  523. .weui-link:active {
  524. opacity: 0.5;
  525. }
  526. .weui-btn {
  527. position: relative;
  528. display: block;
  529. width: 368rpx;
  530. margin-left: auto;
  531. margin-right: auto;
  532. padding: 16rpx 48rpx;
  533. box-sizing: border-box;
  534. font-weight: 700;
  535. font-size: 34rpx;
  536. text-align: center;
  537. text-decoration: none;
  538. color: #fff;
  539. line-height: 1.88235294;
  540. border-radius: 16rpx;
  541. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  542. -webkit-user-select: none;
  543. user-select: none;
  544. }
  545. .weui-btn:before {
  546. position: absolute;
  547. top: 0;
  548. left: 0;
  549. width: 100%;
  550. height: 100%;
  551. background-color: var(--weui-BTN-ACTIVE-MASK);
  552. border-radius: 16rpx;
  553. }
  554. .weui-btn:not(.weui-btn_disabled):not(.weui-btn_loading):active:before,
  555. .weui-btn:not([disabled]):not(.weui-btn_loading):active:before {
  556. content: '';
  557. }
  558. .weui-btn_block {
  559. width: auto;
  560. }
  561. .weui-btn_inline {
  562. display: inline-block;
  563. }
  564. .weui-btn_default {
  565. background-color: var(--weui-BTN-DEFAULT-BG);
  566. }
  567. .weui-btn_default,
  568. .weui-btn_default:not(.weui-btn_disabled):visited {
  569. color: var(--weui-BTN-DEFAULT-COLOR);
  570. }
  571. .weui-btn_primary {
  572. background-color: var(--weui-BRAND);
  573. }
  574. .weui-btn_primary:not(.weui-btn_disabled):visited {
  575. color: #fff;
  576. }
  577. .weui-btn_warn {
  578. background-color: var(--weui-BTN-DEFAULT-BG);
  579. }
  580. .weui-btn_warn,
  581. .weui-btn_warn:not(.weui-btn_disabled):visited {
  582. color: var(--weui-RED);
  583. }
  584. .weui-btn[disabled],
  585. .weui-btn_disabled {
  586. color: var(--weui-BTN-DISABLED-FONT-COLOR);
  587. background-color: var(--weui-BTN-DEFAULT-BG);
  588. }
  589. .weui-btn_loading .weui-loading {
  590. margin: -0.2em 16rpx 0 0;
  591. }
  592. .weui-btn_loading .weui-mask-loading {
  593. margin: -0.2em 16rpx 0 0;
  594. color: currentColor;
  595. }
  596. .weui-btn_loading .weui-primary-loading {
  597. margin: -0.2em 16rpx 0 0;
  598. vertical-align: middle;
  599. color: currentColor;
  600. }
  601. .weui-btn_loading .weui-primary-loading:before {
  602. content: '';
  603. }
  604. .weui-btn_loading.weui-btn_primary {
  605. color: var(--weui-WHITE);
  606. }
  607. .weui-btn_cell {
  608. position: relative;
  609. display: block;
  610. margin-left: auto;
  611. margin-right: auto;
  612. box-sizing: border-box;
  613. font-size: 34rpx;
  614. text-align: center;
  615. text-decoration: none;
  616. color: #fff;
  617. line-height: 1.41176471;
  618. padding: 32rpx;
  619. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  620. overflow: hidden;
  621. background-color: var(--weui-BG-5);
  622. }
  623. .weui-btn_cell + .weui-btn_cell {
  624. margin-top: 32rpx;
  625. }
  626. .weui-btn_cell:active {
  627. background-color: var(--weui-BG-COLOR-ACTIVE);
  628. }
  629. .weui-btn_cell__icon {
  630. display: inline-block;
  631. vertical-align: middle;
  632. width: 48rpx;
  633. height: 48rpx;
  634. margin: -0.2em 0.34em 0 0;
  635. }
  636. .weui-btn_cell-default {
  637. color: var(--weui-FG-0);
  638. }
  639. .weui-btn_cell-primary {
  640. color: var(--weui-LINK);
  641. }
  642. .weui-btn_cell-warn {
  643. color: var(--weui-RED);
  644. }
  645. .weui-bottom-fixed-opr-page {
  646. height: 100%;
  647. display: -webkit-box;
  648. display: -webkit-flex;
  649. display: flex;
  650. -webkit-box-orient: vertical;
  651. -webkit-box-direction: normal;
  652. -webkit-flex-direction: column;
  653. flex-direction: column;
  654. }
  655. .weui-bottom-fixed-opr-page__content {
  656. min-height: 0;
  657. -webkit-box-flex: 1;
  658. -webkit-flex: 1;
  659. flex: 1;
  660. padding-bottom: 160rpx;
  661. box-sizing: border-box;
  662. overflow-y: auto;
  663. -webkit-overflow-scrolling: touch;
  664. }
  665. .weui-bottom-fixed-opr {
  666. padding: 32rpx 64rpx 48rpx;
  667. padding: 32rpx calc(64rpx + constant(safe-area-inset-right))
  668. calc(48rpx + constant(safe-area-inset-bottom))
  669. calc(64rpx + constant(safe-area-inset-left));
  670. padding: 32rpx calc(64rpx + env(safe-area-inset-right))
  671. calc(48rpx + env(safe-area-inset-bottom))
  672. calc(64rpx + env(safe-area-inset-left));
  673. background: #fff;
  674. position: relative;
  675. }
  676. .weui-bottom-fixed-opr:before {
  677. content: '';
  678. height: 160rpx;
  679. background: -webkit-linear-gradient(bottom, #fff, hsla(0, 0%, 100%, 0));
  680. background: linear-gradient(0deg, #fff, hsla(0, 0%, 100%, 0));
  681. position: absolute;
  682. bottom: calc(100% - 2rpx);
  683. left: 0;
  684. right: 0;
  685. -webkit-transform: translateZ(0);
  686. transform: translateZ(0);
  687. }
  688. [data-weui-theme='dark'] .weui-bottom-fixed-opr {
  689. background: #191919;
  690. }
  691. [data-weui-theme='dark'] .weui-bottom-fixed-opr:before {
  692. background: -webkit-linear-gradient(bottom, #191919, rgba(25, 25, 25, 0));
  693. background: linear-gradient(0deg, #191919, rgba(25, 25, 25, 0));
  694. }
  695. .weui-bottom-fixed-opr-page .weui-bottom-fixed-opr {
  696. display: -webkit-box;
  697. display: -webkit-flex;
  698. display: flex;
  699. -webkit-box-align: center;
  700. -webkit-align-items: center;
  701. align-items: center;
  702. -webkit-box-pack: center;
  703. -webkit-justify-content: center;
  704. justify-content: center;
  705. }
  706. .weui-bottom-fixed-opr-page .weui-bottom-fixed-opr .weui-btn {
  707. width: 368rpx;
  708. padding-left: 32rpx;
  709. padding-right: 32rpx;
  710. }
  711. .weui-bottom-fixed-opr-page
  712. .weui-bottom-fixed-opr
  713. .weui-btn:nth-last-child(n + 2),
  714. .weui-bottom-fixed-opr-page
  715. .weui-bottom-fixed-opr
  716. .weui-btn:nth-last-child(n + 2)
  717. + .weui-btn {
  718. margin: 0 16rpx;
  719. width: 272rpx;
  720. }
  721. .weui-bottom-fixed-opr-page
  722. .weui-bottom-fixed-opr
  723. .weui-btn:nth-last-child(n + 2)
  724. + .weui-btn:first-child,
  725. .weui-bottom-fixed-opr-page
  726. .weui-bottom-fixed-opr
  727. .weui-btn:nth-last-child(n + 2):first-child {
  728. margin-left: 0;
  729. }
  730. .weui-bottom-fixed-opr-page
  731. .weui-bottom-fixed-opr
  732. .weui-btn:nth-last-child(n + 2)
  733. + .weui-btn:last-child,
  734. .weui-bottom-fixed-opr-page
  735. .weui-bottom-fixed-opr
  736. .weui-btn:nth-last-child(n + 2):last-child {
  737. margin-right: 0;
  738. }
  739. .weui-bottom-fixed-opr-page_btn-wrap .weui-bottom-fixed-opr {
  740. -webkit-box-orient: vertical;
  741. -webkit-box-direction: normal;
  742. -webkit-flex-direction: column;
  743. flex-direction: column;
  744. }
  745. .weui-bottom-fixed-opr-page_btn-wrap
  746. .weui-bottom-fixed-opr
  747. .weui-btn:nth-last-child(n + 2),
  748. .weui-bottom-fixed-opr-page_btn-wrap
  749. .weui-bottom-fixed-opr
  750. .weui-btn:nth-last-child(n + 2)
  751. + .weui-btn {
  752. width: 368rpx;
  753. margin: 32rpx 0 0;
  754. }
  755. .weui-bottom-fixed-opr-page_btn-wrap
  756. .weui-bottom-fixed-opr
  757. .weui-btn:nth-last-child(n + 2)
  758. + .weui-btn:first-child,
  759. .weui-bottom-fixed-opr-page_btn-wrap
  760. .weui-bottom-fixed-opr
  761. .weui-btn:nth-last-child(n + 2):first-child {
  762. margin-top: 0;
  763. }
  764. .weui-half-screen-dialog.weui-half-screen-dialog_bottom-fixed {
  765. padding: 0;
  766. }
  767. .weui-half-screen-dialog.weui-half-screen-dialog_bottom-fixed
  768. .weui-half-screen-dialog__hd {
  769. padding: 0 48rpx;
  770. padding: 0 calc(48rpx + constant(safe-area-inset-right)) 0
  771. calc(48rpx + constant(safe-area-inset-left));
  772. padding: 0 calc(48rpx + env(safe-area-inset-right)) 0
  773. calc(48rpx + env(safe-area-inset-left));
  774. }
  775. .weui-half-screen-dialog.weui-half-screen-dialog_bottom-fixed
  776. .weui-half-screen-dialog__bd {
  777. padding-bottom: 0;
  778. display: -webkit-box;
  779. display: -webkit-flex;
  780. display: flex;
  781. -webkit-box-orient: vertical;
  782. -webkit-box-direction: normal;
  783. -webkit-flex-direction: column;
  784. flex-direction: column;
  785. }
  786. .weui-half-screen-dialog.weui-half-screen-dialog_bottom-fixed
  787. .weui-half-screen-dialog__ft {
  788. padding: 0;
  789. }
  790. .weui-half-screen-dialog.weui-half-screen-dialog_bottom-fixed
  791. .weui-bottom-fixed-opr-page {
  792. -webkit-box-flex: 1;
  793. -webkit-flex: 1;
  794. flex: 1;
  795. min-height: 0;
  796. }
  797. .weui-half-screen-dialog.weui-half-screen-dialog_bottom-fixed
  798. .weui-bottom-fixed-opr-page__content {
  799. padding: 0 48rpx;
  800. padding: 0 calc(48rpx + constant(safe-area-inset-right)) 0
  801. calc(48rpx + constant(safe-area-inset-left));
  802. padding: 0 calc(48rpx + env(safe-area-inset-right)) 0
  803. calc(48rpx + env(safe-area-inset-left));
  804. }
  805. .weui-half-screen-dialog.weui-half-screen-dialog_bottom-fixed
  806. .weui-bottom-fixed-opr {
  807. padding: 32rpx 0 128rpx;
  808. padding: 32rpx 0 calc(128rpx + constant(safe-area-inset-bottom));
  809. padding: 32rpx 0 calc(128rpx + env(safe-area-inset-bottom));
  810. }
  811. button.weui-btn,
  812. input.weui-btn {
  813. border-width: 0;
  814. outline: 0;
  815. -webkit-appearance: none;
  816. }
  817. button.weui-btn:focus,
  818. input.weui-btn:focus {
  819. outline: 0;
  820. }
  821. button.weui-btn_inline,
  822. button.weui-btn_mini,
  823. input.weui-btn_inline,
  824. input.weui-btn_mini {
  825. width: auto;
  826. }
  827. .weui-btn_mini {
  828. line-height: 1.375;
  829. padding: 10rpx 24rpx;
  830. font-size: 32rpx;
  831. border-radius: 12rpx;
  832. }
  833. .weui-btn_mini,
  834. .weui-btn_xmini {
  835. display: inline-block;
  836. width: auto;
  837. }
  838. .weui-btn_xmini {
  839. padding: 8rpx 24rpx;
  840. line-height: 1.42857;
  841. font-size: 28rpx;
  842. font-weight: 500;
  843. border-radius: 8rpx;
  844. }
  845. .weui-btn + .weui-btn {
  846. margin-top: 32rpx;
  847. }
  848. .weui-btn.weui-btn_mini + .weui-btn.weui-btn_mini,
  849. .weui-btn.weui-btn_xmini + .weui-btn.weui-btn_xmini {
  850. margin-top: auto;
  851. }
  852. .weui-btn.weui-btn_inline + .weui-btn.weui-btn_inline {
  853. margin-left: 32rpx;
  854. }
  855. .weui-btn-area {
  856. margin: 96rpx 32rpx 16rpx;
  857. }
  858. .weui-btn-area_inline {
  859. display: -webkit-box;
  860. display: -webkit-flex;
  861. display: flex;
  862. }
  863. .weui-btn-area_inline .weui-btn {
  864. margin-top: auto;
  865. margin-right: 32rpx;
  866. width: 100%;
  867. -webkit-box-flex: 1;
  868. -webkit-flex: 1;
  869. flex: 1;
  870. }
  871. .weui-btn-area_inline .weui-btn:last-child {
  872. margin-right: 0;
  873. }
  874. .weui-btn_reset {
  875. font-size: inherit;
  876. }
  877. .weui-btn_icon,
  878. .weui-btn_reset {
  879. background: transparent;
  880. border: 0;
  881. padding: 0;
  882. outline: 0;
  883. }
  884. .weui-btn_icon {
  885. font-size: 0;
  886. }
  887. .weui-btn_icon:active [class*='weui-icon-'] {
  888. color: var(--weui-FG-1);
  889. }
  890. .weui-cells {
  891. margin-top: 16rpx;
  892. background-color: var(--weui-BG-2);
  893. overflow: hidden;
  894. position: relative;
  895. }
  896. .weui-cells:before {
  897. top: 0;
  898. border-top: 2rpx solid var(--weui-FG-3);
  899. -webkit-transform-origin: 0 0;
  900. transform-origin: 0 0;
  901. -webkit-transform: scaleY(0.5);
  902. transform: scaleY(0.5);
  903. }
  904. .weui-cells:after,
  905. .weui-cells:before {
  906. content: ' ';
  907. position: absolute;
  908. left: 0;
  909. right: 0;
  910. height: 2rpx;
  911. color: var(--weui-FG-3);
  912. z-index: 2;
  913. }
  914. .weui-cells:after {
  915. bottom: 0;
  916. border-bottom: 2rpx solid var(--weui-FG-3);
  917. -webkit-transform-origin: 0 100%;
  918. transform-origin: 0 100%;
  919. -webkit-transform: scaleY(0.5);
  920. transform: scaleY(0.5);
  921. }
  922. .weui-cells__title {
  923. margin-top: 32rpx;
  924. margin-bottom: 6rpx;
  925. padding-left: 32rpx;
  926. padding-right: 32rpx;
  927. color: var(--weui-FG-1);
  928. font-size: 28rpx;
  929. line-height: 1.4;
  930. }
  931. .weui-cells__title + .weui-cells {
  932. margin-top: 0;
  933. }
  934. .weui-cells__tips {
  935. margin-top: 16rpx;
  936. color: var(--weui-FG-1);
  937. padding-left: 32rpx;
  938. padding-right: 32rpx;
  939. font-size: 28rpx;
  940. line-height: 1.4;
  941. }
  942. .weui-cells__tips a,
  943. .weui-cells__tips navigator {
  944. color: var(--weui-LINK);
  945. }
  946. .weui-cells__tips navigator {
  947. display: inline;
  948. }
  949. .weui-cell {
  950. padding: 32rpx;
  951. position: relative;
  952. display: -webkit-box;
  953. display: -webkit-flex;
  954. display: flex;
  955. -webkit-box-align: center;
  956. -webkit-align-items: center;
  957. align-items: center;
  958. line-height: 1.41176471;
  959. font-size: 34rpx;
  960. color: var(--weui-FG-0);
  961. }
  962. .weui-cell:before {
  963. content: ' ';
  964. position: absolute;
  965. left: 0;
  966. top: 0;
  967. right: 0;
  968. height: 2rpx;
  969. border-top: 2rpx solid var(--weui-FG-3);
  970. color: var(--weui-FG-3);
  971. -webkit-transform-origin: 0 0;
  972. transform-origin: 0 0;
  973. -webkit-transform: scaleY(0.5);
  974. transform: scaleY(0.5);
  975. left: 32rpx;
  976. z-index: 2;
  977. }
  978. .weui-cell:first-child:before {
  979. display: none;
  980. }
  981. .weui-cell_active:active:after {
  982. content: '';
  983. position: absolute;
  984. left: 0;
  985. right: 0;
  986. top: 0;
  987. bottom: 0;
  988. background: var(--weui-FG-3);
  989. pointer-events: none;
  990. }
  991. .weui-cell_primary {
  992. -webkit-box-align: start;
  993. -webkit-align-items: flex-start;
  994. align-items: flex-start;
  995. }
  996. .weui-cell__bd {
  997. -webkit-box-flex: 1;
  998. -webkit-flex: 1;
  999. flex: 1;
  1000. min-width: 0;
  1001. }
  1002. .weui-cell__ft {
  1003. text-align: right;
  1004. color: var(--weui-FG-1);
  1005. }
  1006. .weui-cell__ft button {
  1007. vertical-align: bottom;
  1008. }
  1009. .weui-cell__desc {
  1010. font-size: 24rpx;
  1011. color: var(--weui-FG-2);
  1012. line-height: 1.4;
  1013. padding-top: 8rpx;
  1014. }
  1015. .weui-cell_swiped {
  1016. display: block;
  1017. padding: 0;
  1018. }
  1019. .weui-cell_swiped > .weui-cell__bd {
  1020. position: relative;
  1021. z-index: 1;
  1022. background-color: var(--weui-BG-2);
  1023. }
  1024. .weui-cell_swiped > .weui-cell__ft {
  1025. position: absolute;
  1026. right: 0;
  1027. top: 0;
  1028. bottom: 0;
  1029. color: #fff;
  1030. }
  1031. .weui-cell_swiped > .weui-cell__ft,
  1032. .weui-swiped-btn {
  1033. display: -webkit-box;
  1034. display: -webkit-flex;
  1035. display: flex;
  1036. }
  1037. .weui-swiped-btn {
  1038. -webkit-box-align: center;
  1039. -webkit-align-items: center;
  1040. align-items: center;
  1041. padding: 32rpx 1em;
  1042. line-height: 1.41176471;
  1043. color: inherit;
  1044. }
  1045. .weui-swiped-btn_default {
  1046. background-color: var(--weui-BG-0);
  1047. }
  1048. .weui-swiped-btn_warn {
  1049. background-color: var(--weui-RED);
  1050. }
  1051. .weui-cell_access {
  1052. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1053. color: inherit;
  1054. }
  1055. .weui-cell_access:active:after {
  1056. content: '';
  1057. position: absolute;
  1058. left: 0;
  1059. right: 0;
  1060. top: 0;
  1061. bottom: 0;
  1062. background: var(--weui-FG-3);
  1063. pointer-events: none;
  1064. }
  1065. .weui-cell_access .weui-cell__ft {
  1066. padding-right: 48rpx;
  1067. position: relative;
  1068. }
  1069. .weui-cell_access .weui-cell__ft:after {
  1070. content: ' ';
  1071. width: 24rpx;
  1072. height: 48rpx;
  1073. -webkit-mask-position: 0 0;
  1074. mask-position: 0 0;
  1075. -webkit-mask-repeat: no-repeat;
  1076. mask-repeat: no-repeat;
  1077. -webkit-mask-size: 100%;
  1078. mask-size: 100%;
  1079. background-color: currentColor;
  1080. color: var(--weui-FG-2);
  1081. -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);
  1082. 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);
  1083. position: absolute;
  1084. top: 50%;
  1085. right: 0;
  1086. margin-top: -24rpx;
  1087. }
  1088. .weui-cell_link {
  1089. color: var(--weui-LINK);
  1090. }
  1091. .weui-cell_link:first-child:before {
  1092. display: block;
  1093. }
  1094. .weui-check__label {
  1095. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1096. }
  1097. .weui-check__label.weui-cell_disabled,
  1098. .weui-check__label.weui-cell_readonly {
  1099. color: var(--weui-FG-3);
  1100. }
  1101. .weui-check {
  1102. opacity: 0;
  1103. position: absolute;
  1104. width: 0;
  1105. height: 0;
  1106. overflow: hidden;
  1107. }
  1108. .weui-check[disabled] + .weui-icon-checked {
  1109. opacity: 0.1;
  1110. }
  1111. .weui-cells_radio .weui-cell__ft {
  1112. padding-left: 32rpx;
  1113. font-size: 0;
  1114. }
  1115. .weui-cells_radio .weui-check + .weui-icon-checked {
  1116. min-width: 32rpx;
  1117. color: transparent;
  1118. }
  1119. .weui-cells_radio .weui-check:checked + .weui-icon-checked,
  1120. .weui-cells_radio .weui-check[aria-checked='true'] + .weui-icon-checked {
  1121. color: var(--weui-BRAND);
  1122. -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);
  1123. 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);
  1124. }
  1125. .weui-cells_checkbox .weui-check__label:before {
  1126. left: 110rpx;
  1127. }
  1128. .weui-cells_checkbox .weui-cell__hd {
  1129. padding-right: 32rpx;
  1130. font-size: 0;
  1131. }
  1132. .weui-cells_checkbox .weui-icon-checked {
  1133. color: var(--weui-FG-2);
  1134. -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);
  1135. 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);
  1136. }
  1137. .weui-cells_checkbox .weui-check:checked + .weui-icon-checked,
  1138. .weui-cells_checkbox .weui-check[aria-checked='true'] + .weui-icon-checked {
  1139. color: var(--weui-BRAND);
  1140. -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);
  1141. 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);
  1142. }
  1143. .weui-label {
  1144. display: block;
  1145. width: 210rpx;
  1146. word-wrap: break-word;
  1147. word-break: break-all;
  1148. }
  1149. .weui-input {
  1150. width: 100%;
  1151. border: 0;
  1152. outline: 0;
  1153. -webkit-appearance: none;
  1154. background-color: transparent;
  1155. font-size: inherit;
  1156. color: inherit;
  1157. height: 1.41176471em;
  1158. line-height: 1.41176471;
  1159. }
  1160. .weui-input::-webkit-inner-spin-button,
  1161. .weui-input::-webkit-outer-spin-button {
  1162. -webkit-appearance: none;
  1163. margin: 0;
  1164. }
  1165. .weui-input:focus:not(:placeholder-shown) + .weui-btn_input-clear {
  1166. display: inline;
  1167. }
  1168. .weui-textarea {
  1169. display: block;
  1170. border: 0;
  1171. resize: none;
  1172. background: transparent;
  1173. width: 100%;
  1174. color: inherit;
  1175. font-size: 1em;
  1176. line-height: inherit;
  1177. height: 160rpx;
  1178. outline: 0;
  1179. }
  1180. .weui-textarea-counter {
  1181. color: var(--weui-FG-2);
  1182. text-align: right;
  1183. font-size: 28rpx;
  1184. }
  1185. .weui-cell_warn,
  1186. .weui-cell_warn .weui-textarea-counter {
  1187. color: var(--weui-RED);
  1188. }
  1189. .weui-cell_warn .weui-icon-warn {
  1190. display: inline-block;
  1191. }
  1192. .weui-cell_disabled .weui-input:disabled,
  1193. .weui-cell_disabled .weui-textarea:disabled,
  1194. .weui-cell_readonly .weui-input:disabled,
  1195. .weui-cell_readonly .weui-textarea:disabled {
  1196. opacity: 1;
  1197. -webkit-text-fill-color: var(--weui-FG-1);
  1198. }
  1199. .weui-cell_disabled .weui-input[disabled],
  1200. .weui-cell_disabled .weui-input[readonly],
  1201. .weui-cell_disabled .weui-textarea[disabled],
  1202. .weui-cell_disabled .weui-textarea[readonly],
  1203. .weui-cell_readonly .weui-input[disabled],
  1204. .weui-cell_readonly .weui-input[readonly],
  1205. .weui-cell_readonly .weui-textarea[disabled],
  1206. .weui-cell_readonly .weui-textarea[readonly] {
  1207. color: var(--weui-FG-1);
  1208. }
  1209. .weui-btn_input-clear {
  1210. display: none;
  1211. padding-left: 16rpx;
  1212. }
  1213. .weui-btn_input-clear [class*='weui-icon-'] {
  1214. width: 36rpx;
  1215. }
  1216. .weui-cells_form .weui-cell_disabled:active,
  1217. .weui-cells_form .weui-cell_readonly:active,
  1218. .weui-cells_form .weui-cell_switch:active,
  1219. .weui-cells_form .weui-cell_vcode:active {
  1220. background-color: transparent;
  1221. }
  1222. .weui-cells_form .weui-cell__ft {
  1223. font-size: 0;
  1224. }
  1225. .weui-cells_form .weui-icon-warn {
  1226. display: none;
  1227. }
  1228. .weui-cells_form input,
  1229. .weui-cells_form label[for],
  1230. .weui-cells_form textarea {
  1231. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1232. }
  1233. .weui-form-preview {
  1234. position: relative;
  1235. background-color: var(--weui-BG-2);
  1236. }
  1237. .weui-form-preview:before {
  1238. top: 0;
  1239. border-top: 2rpx solid var(--weui-FG-3);
  1240. -webkit-transform-origin: 0 0;
  1241. transform-origin: 0 0;
  1242. -webkit-transform: scaleY(0.5);
  1243. transform: scaleY(0.5);
  1244. }
  1245. .weui-form-preview:after,
  1246. .weui-form-preview:before {
  1247. content: ' ';
  1248. position: absolute;
  1249. left: 0;
  1250. right: 0;
  1251. height: 2rpx;
  1252. color: var(--weui-FG-3);
  1253. }
  1254. .weui-form-preview:after {
  1255. bottom: 0;
  1256. border-bottom: 2rpx solid var(--weui-FG-3);
  1257. -webkit-transform-origin: 0 100%;
  1258. transform-origin: 0 100%;
  1259. -webkit-transform: scaleY(0.5);
  1260. transform: scaleY(0.5);
  1261. }
  1262. .weui-form-preview__hd {
  1263. position: relative;
  1264. padding: 32rpx;
  1265. text-align: right;
  1266. line-height: 2.5em;
  1267. }
  1268. .weui-form-preview__hd:after {
  1269. content: ' ';
  1270. position: absolute;
  1271. left: 0;
  1272. bottom: 0;
  1273. right: 0;
  1274. height: 2rpx;
  1275. border-bottom: 2rpx solid var(--weui-FG-3);
  1276. color: var(--weui-FG-3);
  1277. -webkit-transform-origin: 0 100%;
  1278. transform-origin: 0 100%;
  1279. -webkit-transform: scaleY(0.5);
  1280. transform: scaleY(0.5);
  1281. left: 32rpx;
  1282. }
  1283. .weui-form-preview__hd .weui-form-preview__value {
  1284. font-style: normal;
  1285. font-size: 1.6em;
  1286. }
  1287. .weui-form-preview__bd {
  1288. padding: 32rpx;
  1289. font-size: 0.9em;
  1290. text-align: right;
  1291. color: var(--weui-FG-1);
  1292. line-height: 2;
  1293. }
  1294. .weui-form-preview__ft {
  1295. position: relative;
  1296. line-height: 100rpx;
  1297. display: -webkit-box;
  1298. display: -webkit-flex;
  1299. display: flex;
  1300. }
  1301. .weui-form-preview__ft:before {
  1302. content: ' ';
  1303. position: absolute;
  1304. left: 0;
  1305. top: 0;
  1306. right: 0;
  1307. height: 2rpx;
  1308. border-top: 2rpx solid var(--weui-DIALOG-LINE-COLOR);
  1309. color: var(--weui-DIALOG-LINE-COLOR);
  1310. -webkit-transform-origin: 0 0;
  1311. transform-origin: 0 0;
  1312. -webkit-transform: scaleY(0.5);
  1313. transform: scaleY(0.5);
  1314. }
  1315. .weui-form-preview__item {
  1316. overflow: hidden;
  1317. }
  1318. .weui-form-preview__label {
  1319. float: left;
  1320. margin-right: 1em;
  1321. width: 4.2em;
  1322. color: var(--weui-FG-1);
  1323. text-align: left;
  1324. }
  1325. .weui-form-preview__value {
  1326. display: block;
  1327. overflow: hidden;
  1328. word-break: normal;
  1329. word-wrap: break-word;
  1330. color: var(--weui-FG-0);
  1331. }
  1332. .weui-form-preview__btn {
  1333. position: relative;
  1334. display: block;
  1335. -webkit-box-flex: 1;
  1336. -webkit-flex: 1;
  1337. flex: 1;
  1338. color: var(--weui-LINK);
  1339. text-align: center;
  1340. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1341. }
  1342. button.weui-form-preview__btn {
  1343. background-color: transparent;
  1344. border: 0;
  1345. outline: 0;
  1346. line-height: inherit;
  1347. font-size: inherit;
  1348. }
  1349. .weui-form-preview__btn:active {
  1350. background-color: var(--weui-BG-COLOR-ACTIVE);
  1351. }
  1352. .weui-form-preview__btn:after {
  1353. content: ' ';
  1354. position: absolute;
  1355. left: 0;
  1356. top: 0;
  1357. width: 2rpx;
  1358. bottom: 0;
  1359. border-left: 2rpx solid var(--weui-DIALOG-LINE-COLOR);
  1360. color: var(--weui-DIALOG-LINE-COLOR);
  1361. -webkit-transform-origin: 0 0;
  1362. transform-origin: 0 0;
  1363. -webkit-transform: scaleX(0.5);
  1364. transform: scaleX(0.5);
  1365. }
  1366. .weui-form-preview__btn:first-child:after {
  1367. display: none;
  1368. }
  1369. .weui-form-preview__btn_default {
  1370. color: var(--weui-FG-HALF);
  1371. }
  1372. .weui-form-preview__btn_primary {
  1373. color: var(--weui-LINK);
  1374. }
  1375. .weui-form-preview__list {
  1376. padding-top: 48rpx;
  1377. padding-bottom: 48rpx;
  1378. line-height: 1.4;
  1379. font-size: 28rpx;
  1380. position: relative;
  1381. }
  1382. .weui-form-preview__list:before {
  1383. content: '';
  1384. content: ' ';
  1385. position: absolute;
  1386. left: 0;
  1387. top: 0;
  1388. right: 0;
  1389. height: 2rpx;
  1390. border-top: 2rpx solid var(--weui-FG-3);
  1391. color: var(--weui-FG-3);
  1392. -webkit-transform-origin: 0 0;
  1393. transform-origin: 0 0;
  1394. -webkit-transform: scaleY(0.5);
  1395. transform: scaleY(0.5);
  1396. }
  1397. .weui-form-preview__list:last-child {
  1398. padding-bottom: 0;
  1399. }
  1400. .weui-form-preview__list .weui-form-preview__label {
  1401. text-align: left;
  1402. width: 6em;
  1403. }
  1404. .weui-form-preview__list .weui-form-preview__value {
  1405. -webkit-hyphens: auto;
  1406. hyphens: auto;
  1407. }
  1408. .weui-form-preview__list .weui-form-preview__item {
  1409. margin-top: 24rpx;
  1410. }
  1411. .weui-form-preview__list .weui-form-preview__item:first-child,
  1412. .weui-form-preview__list > .weui-cells__title:first-child {
  1413. margin-top: 0;
  1414. }
  1415. .weui-cell_select {
  1416. padding: 0;
  1417. }
  1418. .weui-cell_select .weui-cell__bd:after {
  1419. content: ' ';
  1420. width: 24rpx;
  1421. height: 48rpx;
  1422. -webkit-mask-position: 0 0;
  1423. mask-position: 0 0;
  1424. -webkit-mask-repeat: no-repeat;
  1425. mask-repeat: no-repeat;
  1426. -webkit-mask-size: 100%;
  1427. mask-size: 100%;
  1428. background-color: currentColor;
  1429. color: var(--weui-FG-2);
  1430. -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);
  1431. 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);
  1432. position: absolute;
  1433. top: 50%;
  1434. right: 32rpx;
  1435. margin-top: -24rpx;
  1436. }
  1437. .weui-select {
  1438. -webkit-appearance: none;
  1439. border: 0;
  1440. outline: 0;
  1441. background-color: transparent;
  1442. width: 100%;
  1443. font-size: inherit;
  1444. min-height: 112rpx;
  1445. line-height: 112rpx;
  1446. position: relative;
  1447. z-index: 1;
  1448. padding-left: 32rpx;
  1449. padding-right: 80rpx;
  1450. color: var(--weui-FG-0);
  1451. vertical-align: bottom;
  1452. box-sizing: border-box;
  1453. }
  1454. .weui-cell_select-before .weui-cell__hd {
  1455. padding-left: 0;
  1456. position: relative;
  1457. }
  1458. .weui-cell_select-before .weui-cell__hd:after {
  1459. content: ' ';
  1460. position: absolute;
  1461. right: 0;
  1462. top: 0;
  1463. width: 2rpx;
  1464. bottom: 0;
  1465. border-right: 2rpx solid var(--weui-FG-3);
  1466. color: var(--weui-FG-3);
  1467. -webkit-transform-origin: 100% 0;
  1468. transform-origin: 100% 0;
  1469. -webkit-transform: scaleX(0.5);
  1470. transform: scaleX(0.5);
  1471. }
  1472. .weui-cell_select-before .weui-cell__hd:before {
  1473. content: ' ';
  1474. width: 24rpx;
  1475. height: 48rpx;
  1476. -webkit-mask-position: 0 0;
  1477. mask-position: 0 0;
  1478. -webkit-mask-repeat: no-repeat;
  1479. mask-repeat: no-repeat;
  1480. -webkit-mask-size: 100%;
  1481. mask-size: 100%;
  1482. background-color: currentColor;
  1483. color: var(--weui-FG-2);
  1484. -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);
  1485. 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);
  1486. position: absolute;
  1487. top: 50%;
  1488. right: 32rpx;
  1489. margin-top: -24rpx;
  1490. }
  1491. .weui-cell_select-before .weui-cell__bd {
  1492. padding-left: 32rpx;
  1493. }
  1494. .weui-cell_select-before .weui-cell__bd:after {
  1495. display: none;
  1496. }
  1497. .weui-cell_select-before .weui-select {
  1498. max-width: 5em;
  1499. width: 210rpx;
  1500. box-sizing: content-box;
  1501. }
  1502. .weui-cell_select-after .weui-cell__hd {
  1503. padding-left: 32rpx;
  1504. }
  1505. .weui-cell_select-after .weui-select {
  1506. padding-left: 0;
  1507. }
  1508. .weui-cell_vcode {
  1509. padding-top: 0;
  1510. padding-right: 0;
  1511. padding-bottom: 0;
  1512. }
  1513. .weui-vcode-btn,
  1514. .weui-vcode-img {
  1515. margin-left: 10rpx;
  1516. height: 112rpx;
  1517. vertical-align: middle;
  1518. }
  1519. .weui-vcode-btn {
  1520. display: inline-block;
  1521. padding: 0 0.6em 0 0.7em;
  1522. line-height: 112rpx;
  1523. font-size: 34rpx;
  1524. color: var(--weui-LINK);
  1525. position: relative;
  1526. }
  1527. .weui-vcode-btn:before {
  1528. content: ' ';
  1529. position: absolute;
  1530. left: 0;
  1531. top: 0;
  1532. width: 2rpx;
  1533. bottom: 0;
  1534. border-left: 2rpx solid var(--weui-FG-3);
  1535. color: var(--weui-FG-3);
  1536. -webkit-transform-origin: 0 0;
  1537. transform-origin: 0 0;
  1538. -webkit-transform: scaleX(0.5);
  1539. transform: scaleX(0.5);
  1540. }
  1541. button.weui-vcode-btn {
  1542. background-color: transparent;
  1543. border: 0;
  1544. outline: 0;
  1545. }
  1546. .weui-vcode-btn:active {
  1547. color: var(--weui-LINK-ACTIVE);
  1548. }
  1549. .weui-gallery {
  1550. display: none;
  1551. position: fixed;
  1552. top: 0;
  1553. right: 0;
  1554. bottom: 0;
  1555. left: 0;
  1556. background-color: #000;
  1557. z-index: 1000;
  1558. }
  1559. .weui-gallery__img,
  1560. .weui-gallery__opr {
  1561. position: absolute;
  1562. left: 0;
  1563. left: constant(safe-area-inset-left);
  1564. left: env(safe-area-inset-left);
  1565. right: 0;
  1566. right: constant(safe-area-inset-right);
  1567. right: env(safe-area-inset-right);
  1568. }
  1569. .weui-gallery__img {
  1570. top: 0;
  1571. top: constant(safe-area-inset-top);
  1572. top: env(safe-area-inset-top);
  1573. bottom: 120rpx;
  1574. bottom: calc(120rpx + constant(safe-area-inset-bottom));
  1575. bottom: calc(120rpx + env(safe-area-inset-bottom));
  1576. background: 50% no-repeat;
  1577. background-size: contain;
  1578. }
  1579. .weui-gallery__opr {
  1580. position: absolute;
  1581. bottom: 0;
  1582. background-color: #0d0d0d;
  1583. color: var(--weui-WHITE);
  1584. line-height: 120rpx;
  1585. text-align: center;
  1586. }
  1587. .weui-gallery__del {
  1588. display: block;
  1589. padding-bottom: 0;
  1590. padding-bottom: constant(safe-area-inset-bottom);
  1591. padding-bottom: env(safe-area-inset-bottom);
  1592. }
  1593. .weui-gallery__del:active {
  1594. opacity: 0.5;
  1595. }
  1596. .weui-cell_switch {
  1597. padding-top: 24rpx;
  1598. padding-bottom: 24rpx;
  1599. }
  1600. .weui-cell_switch.weui-cell_disabled,
  1601. .weui-cell_switch.weui-cell_readonly {
  1602. color: var(--weui-FG-3);
  1603. }
  1604. .weui-switch {
  1605. -webkit-appearance: none;
  1606. appearance: none;
  1607. }
  1608. .weui-switch,
  1609. .weui-switch-cp__box {
  1610. vertical-align: bottom;
  1611. position: relative;
  1612. width: 104rpx;
  1613. height: 64rpx;
  1614. background-color: var(--weui-FG-3);
  1615. border: 0;
  1616. padding: 4rpx;
  1617. outline: 0;
  1618. border-radius: 32rpx;
  1619. box-sizing: border-box;
  1620. -webkit-transition: background-color 0.1s, border 0.1s;
  1621. transition: background-color 0.1s, border 0.1s;
  1622. }
  1623. .weui-switch-cp__box:after,
  1624. .weui-switch:after {
  1625. content: ' ';
  1626. position: absolute;
  1627. top: 4rpx;
  1628. left: 4rpx;
  1629. width: 56rpx;
  1630. height: 56rpx;
  1631. border-radius: 30rpx;
  1632. background-color: #fff;
  1633. box-shadow: 0 4rpx 6rpx 0 rgba(0, 0, 0, 0.06);
  1634. -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
  1635. transition: -webkit-transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
  1636. transition: transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
  1637. transition: transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35),
  1638. -webkit-transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
  1639. }
  1640. .weui-switch-cp__input:checked + .weui-switch-cp__box,
  1641. .weui-switch-cp__input[aria-checked='true'] + .weui-switch-cp__box,
  1642. .weui-switch:checked {
  1643. background-color: var(--weui-BRAND);
  1644. }
  1645. .weui-switch-cp__input:checked + .weui-switch-cp__box:after,
  1646. .weui-switch-cp__input[aria-checked='true'] + .weui-switch-cp__box:after,
  1647. .weui-switch:checked:after {
  1648. -webkit-transform: translateX(40rpx);
  1649. transform: translateX(40rpx);
  1650. }
  1651. .weui-switch-cp__input[aria-disabled='true'] + .weui-switch-cp__box,
  1652. .weui-switch-cp__input[disabled] + .weui-switch-cp__box,
  1653. .weui-switch[disabled] {
  1654. opacity: 0.1;
  1655. }
  1656. .weui-switch-cp__input {
  1657. position: absolute;
  1658. width: 0;
  1659. height: 0;
  1660. opacity: 0;
  1661. overflow: hidden;
  1662. }
  1663. .weui-switch-cp__box {
  1664. display: block;
  1665. }
  1666. .weui-cell_uploader {
  1667. padding-bottom: 48rpx;
  1668. }
  1669. .weui-uploader {
  1670. -webkit-box-flex: 1;
  1671. -webkit-flex: 1;
  1672. flex: 1;
  1673. }
  1674. .weui-uploader__hd {
  1675. display: -webkit-box;
  1676. display: -webkit-flex;
  1677. display: flex;
  1678. padding-bottom: 32rpx;
  1679. -webkit-box-align: center;
  1680. -webkit-align-items: center;
  1681. align-items: center;
  1682. }
  1683. .weui-uploader__title {
  1684. -webkit-box-flex: 1;
  1685. -webkit-flex: 1;
  1686. flex: 1;
  1687. }
  1688. .weui-uploader__info {
  1689. color: var(--weui-FG-2);
  1690. }
  1691. .weui-uploader__bd {
  1692. margin-bottom: -16rpx;
  1693. margin-right: -16rpx;
  1694. overflow: hidden;
  1695. }
  1696. .weui-uploader__files {
  1697. list-style: none;
  1698. }
  1699. .weui-uploader__file {
  1700. float: left;
  1701. margin-right: 16rpx;
  1702. margin-bottom: 16rpx;
  1703. width: 192rpx;
  1704. height: 192rpx;
  1705. background: no-repeat 50%;
  1706. background-size: cover;
  1707. }
  1708. .weui-uploader__file_status {
  1709. position: relative;
  1710. }
  1711. .weui-uploader__file_status:before {
  1712. content: ' ';
  1713. position: absolute;
  1714. top: 0;
  1715. right: 0;
  1716. bottom: 0;
  1717. left: 0;
  1718. background-color: rgba(0, 0, 0, 0.5);
  1719. }
  1720. .weui-uploader__file_status .weui-uploader__file-content {
  1721. display: block;
  1722. }
  1723. .weui-uploader__file-content {
  1724. display: none;
  1725. position: absolute;
  1726. top: 50%;
  1727. left: 50%;
  1728. -webkit-transform: translate(-50%, -50%);
  1729. transform: translate(-50%, -50%);
  1730. color: var(--weui-WHITE);
  1731. }
  1732. .weui-uploader__file-content .weui-icon-warn {
  1733. display: inline-block;
  1734. }
  1735. .weui-uploader__input-box {
  1736. float: left;
  1737. position: relative;
  1738. margin-right: 16rpx;
  1739. margin-bottom: 16rpx;
  1740. width: 192rpx;
  1741. height: 192rpx;
  1742. box-sizing: border-box;
  1743. background-color: #ededed;
  1744. }
  1745. [data-weui-theme='dark'] .weui-uploader__input-box {
  1746. background-color: #2e2e2e;
  1747. }
  1748. .weui-uploader__input-box:after,
  1749. .weui-uploader__input-box:before {
  1750. content: ' ';
  1751. position: absolute;
  1752. top: 50%;
  1753. left: 50%;
  1754. -webkit-transform: translate(-50%, -50%);
  1755. transform: translate(-50%, -50%);
  1756. background-color: #a3a3a3;
  1757. }
  1758. [data-weui-theme='dark'] .weui-uploader__input-box:after,
  1759. [data-weui-theme='dark'] .weui-uploader__input-box:before {
  1760. background-color: #6d6d6d;
  1761. }
  1762. .weui-uploader__input-box:before {
  1763. width: 4rpx;
  1764. height: 33.33%;
  1765. }
  1766. .weui-uploader__input-box:after {
  1767. width: 33.33%;
  1768. height: 4rpx;
  1769. }
  1770. .weui-uploader__input-box:active:after,
  1771. .weui-uploader__input-box:active:before {
  1772. opacity: 0.7;
  1773. }
  1774. .weui-uploader__input {
  1775. position: absolute;
  1776. z-index: 1;
  1777. top: 0;
  1778. left: 0;
  1779. width: 100%;
  1780. height: 100%;
  1781. opacity: 0;
  1782. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1783. }
  1784. .weui-msg__desc-primary a,
  1785. .weui-msg__desc a,
  1786. .weui-msg__tips a,
  1787. .weui-msg__desc-primary .a,
  1788. .weui-msg__desc .a,
  1789. .weui-msg__tips .a {
  1790. color: var(--weui-LINK);
  1791. display: inline-block;
  1792. vertical-align: baseline;
  1793. }
  1794. .weui-msg {
  1795. padding-top: 96rpx;
  1796. padding: calc(96rpx + constant(safe-area-inset-top))
  1797. constant(safe-area-inset-right) constant(safe-area-inset-bottom)
  1798. constant(safe-area-inset-left);
  1799. padding: calc(96rpx + env(safe-area-inset-top)) env(safe-area-inset-right)
  1800. env(safe-area-inset-bottom) env(safe-area-inset-left);
  1801. text-align: center;
  1802. line-height: 1.4;
  1803. min-height: 100%;
  1804. box-sizing: border-box;
  1805. display: -webkit-box;
  1806. display: -webkit-flex;
  1807. display: flex;
  1808. -webkit-box-orient: vertical;
  1809. -webkit-box-direction: normal;
  1810. -webkit-flex-direction: column;
  1811. flex-direction: column;
  1812. background-color: var(--weui-BG-2);
  1813. }
  1814. .weui-msg__icon-area {
  1815. margin-bottom: 64rpx;
  1816. }
  1817. .weui-msg__text-area {
  1818. margin-bottom: 64rpx;
  1819. padding: 0 64rpx;
  1820. -webkit-box-flex: 1;
  1821. -webkit-flex: 1;
  1822. flex: 1;
  1823. line-height: 1.6;
  1824. word-wrap: break-word;
  1825. -webkit-hyphens: auto;
  1826. hyphens: auto;
  1827. }
  1828. .weui-msg__text-area:first-child {
  1829. padding-top: 192rpx;
  1830. }
  1831. .weui-msg__title {
  1832. font-weight: 500;
  1833. font-size: 44rpx;
  1834. }
  1835. .weui-msg__desc,
  1836. .weui-msg__title {
  1837. margin-bottom: 32rpx;
  1838. color: var(--weui-FG-0);
  1839. }
  1840. .weui-msg__desc {
  1841. font-size: 34rpx;
  1842. font-weight: 400;
  1843. }
  1844. .weui-msg__desc-primary {
  1845. font-size: 28rpx;
  1846. color: var(--weui-FG-1);
  1847. margin-bottom: 32rpx;
  1848. }
  1849. .weui-msg__custom-area {
  1850. text-align: left;
  1851. word-wrap: break-word;
  1852. -webkit-hyphens: auto;
  1853. hyphens: auto;
  1854. margin-bottom: 32rpx;
  1855. }
  1856. .weui-msg__title + .weui-msg__custom-area {
  1857. margin-top: 96rpx;
  1858. }
  1859. .weui-msg__desc + .weui-msg__custom-area,
  1860. .weui-msg__desc-primary + .weui-msg__custom-area {
  1861. margin-top: 80rpx;
  1862. }
  1863. .weui-msg__custom-area .weui-cells__group_form .weui-cells {
  1864. margin: 0;
  1865. }
  1866. .weui-msg__opr-area {
  1867. margin-bottom: 32rpx;
  1868. }
  1869. .weui-msg__opr-area .weui-btn-area {
  1870. margin: 0;
  1871. }
  1872. .weui-msg__opr-area .weui-btn + .weui-btn {
  1873. margin-bottom: 32rpx;
  1874. }
  1875. .weui-msg__opr-area:last-child {
  1876. margin-bottom: 192rpx;
  1877. }
  1878. .weui-msg__opr-area + .weui-msg__extra-area {
  1879. margin-top: 96rpx;
  1880. }
  1881. .weui-msg__tips-area {
  1882. margin-bottom: 32rpx;
  1883. padding: 0 80rpx;
  1884. word-wrap: break-word;
  1885. -webkit-hyphens: auto;
  1886. hyphens: auto;
  1887. }
  1888. .weui-msg__opr-area + .weui-msg__tips-area {
  1889. margin-bottom: 96rpx;
  1890. }
  1891. .weui-msg__tips-area:last-child {
  1892. margin-bottom: 128rpx;
  1893. }
  1894. .weui-msg__tips {
  1895. font-size: 28rpx;
  1896. color: var(--weui-FG-1);
  1897. }
  1898. .weui-msg__extra-area {
  1899. margin-bottom: 48rpx;
  1900. padding: 0 64rpx;
  1901. box-sizing: border-box;
  1902. font-size: 24rpx;
  1903. color: var(--weui-FG-1);
  1904. }
  1905. .weui-msg__extra-area a,
  1906. .weui-msg__extra-area navigator {
  1907. color: var(--weui-LINK);
  1908. }
  1909. .weui-msg__extra-area navigator {
  1910. display: inline;
  1911. }
  1912. .weui-msg_align-top .weui-msg__text-area:first-child {
  1913. padding-top: 0;
  1914. }
  1915. body,
  1916. page {
  1917. --weui-STEPS-DEFAULT-COLOR: var(--weui-FG-3);
  1918. --weui-STEPS-HIGHLIGHT-COLOR: var(--weui-BRAND);
  1919. --weui-STEPS-FONT-SIZE: 17;
  1920. --weui-STEPS-LINEHEIGHT: 1.4;
  1921. --weui-STEPS-DOT-SIZE: calc(8 / var(--weui-STEPS-FONT-SIZE) * 1em);
  1922. --weui-STEPS-ICON-SIZE: 40;
  1923. --weui-STEPS-VERTICAL-DOT-GAP: calc((1em - var(--weui-STEPS-DOT-SIZE)) / 2);
  1924. --weui-STEPS-HORIZONAL-DOT-GAP: 8rpx;
  1925. }
  1926. .weui-steps {
  1927. line-height: var(--weui-STEPS-LINEHEIGHT);
  1928. font-size: calc(2rpx * var(--weui-STEPS-FONT-SIZE));
  1929. }
  1930. .weui-steps__item__desc,
  1931. .weui-steps__item__title {
  1932. display: block;
  1933. }
  1934. .weui-steps__item__title {
  1935. font-weight: 500;
  1936. }
  1937. .weui-steps__item__desc {
  1938. font-size: 28rpx;
  1939. color: var(--weui-FG-2);
  1940. margin-top: 8rpx;
  1941. }
  1942. .weui-steps_vertical {
  1943. position: relative;
  1944. }
  1945. .weui-steps_vertical .weui-steps__item {
  1946. position: relative;
  1947. padding-bottom: 64rpx;
  1948. }
  1949. .weui-steps_vertical .weui-steps__item:before {
  1950. content: '';
  1951. content: ' ';
  1952. position: absolute;
  1953. left: 0;
  1954. top: 0;
  1955. width: 2rpx;
  1956. bottom: 0;
  1957. border-left: 2rpx solid var(--weui-STEPS-DEFAULT-COLOR);
  1958. color: var(--weui-STEPS-DEFAULT-COLOR);
  1959. -webkit-transform-origin: 0 0;
  1960. transform-origin: 0 0;
  1961. -webkit-transform: scaleX(0.5);
  1962. transform: scaleX(0.5);
  1963. top: calc(
  1964. (var(--weui-STEPS-LINEHEIGHT) - (var(--weui-STEPS-LINEHEIGHT) - 1) / 2) *
  1965. 1em
  1966. );
  1967. bottom: calc((var(--weui-STEPS-LINEHEIGHT) - 1) / 2 * -1em);
  1968. }
  1969. .weui-steps_vertical
  1970. .weui-steps__item:first-child:not(.weui-steps__item_success)
  1971. .weui-steps__item__inner:before {
  1972. background-color: var(--weui-STEPS-HIGHLIGHT-COLOR);
  1973. }
  1974. .weui-steps_vertical .weui-steps__item:last-child:before {
  1975. display: none;
  1976. }
  1977. .weui-steps_vertical .weui-steps__item__inner {
  1978. position: relative;
  1979. z-index: 1;
  1980. padding-left: 72rpx;
  1981. }
  1982. .weui-steps_vertical .weui-steps__item__inner:before {
  1983. content: '';
  1984. width: var(--weui-STEPS-DOT-SIZE);
  1985. height: var(--weui-STEPS-DOT-SIZE);
  1986. border-radius: 100%;
  1987. background-color: var(--weui-STEPS-DEFAULT-COLOR);
  1988. }
  1989. .weui-steps_vertical .weui-steps__icon,
  1990. .weui-steps_vertical .weui-steps__item__inner:before {
  1991. position: absolute;
  1992. z-index: 1;
  1993. left: 0;
  1994. top: calc(var(--weui-STEPS-LINEHEIGHT) / 2 * 1em);
  1995. -webkit-transform: translate(-50%, -50%);
  1996. transform: translate(-50%, -50%);
  1997. }
  1998. .weui-steps_vertical .weui-steps__icon {
  1999. font-size: calc(2rpx * var(--weui-STEPS-FONT-SIZE));
  2000. width: calc(var(--weui-STEPS-ICON-SIZE) / var(--weui-STEPS-FONT-SIZE) * 1em);
  2001. height: calc(var(--weui-STEPS-ICON-SIZE) / var(--weui-STEPS-FONT-SIZE) * 1em);
  2002. margin-top: calc(
  2003. (var(--weui-STEPS-ICON-SIZE) / var(--weui-STEPS-FONT-SIZE) * 1em - 1em) / 2 -
  2004. 0.28em
  2005. );
  2006. }
  2007. .weui-steps_vertical .weui-steps__item_icon:before {
  2008. top: calc(
  2009. var(--weui-STEPS-VERTICAL-DOT-GAP) + var(--weui-STEPS-ICON-SIZE) /
  2010. var(--weui-STEPS-FONT-SIZE) * 1em - 0.14em
  2011. );
  2012. }
  2013. .weui-steps_vertical .weui-steps__item_icon .weui-steps__item__inner:before {
  2014. display: none;
  2015. }
  2016. .weui-steps_vertical .weui-steps__item_icon-prev:before {
  2017. bottom: calc(
  2018. var(--weui-STEPS-VERTICAL-DOT-GAP) - (var(--weui-STEPS-LINEHEIGHT) - 1) / 2 *
  2019. 1em + 0.14em
  2020. );
  2021. }
  2022. .weui-steps_vertical .weui-steps__item_success:before {
  2023. border-color: var(--weui-STEPS-HIGHLIGHT-COLOR);
  2024. }
  2025. .weui-steps_vertical
  2026. .weui-steps__item_success
  2027. + .weui-steps__item
  2028. .weui-steps__item__inner:before,
  2029. .weui-steps_vertical .weui-steps__item_success .weui-steps__item__inner:before {
  2030. background-color: var(--weui-STEPS-HIGHLIGHT-COLOR);
  2031. }
  2032. .weui-steps_horizonal,
  2033. .weui-steps_horizonal .weui-steps__item {
  2034. display: -webkit-box;
  2035. display: -webkit-flex;
  2036. display: flex;
  2037. }
  2038. .weui-steps_horizonal .weui-steps__item {
  2039. -webkit-box-flex: 1;
  2040. -webkit-flex: 1;
  2041. flex: 1;
  2042. -webkit-box-align: center;
  2043. -webkit-align-items: center;
  2044. align-items: center;
  2045. }
  2046. .weui-steps_horizonal .weui-steps__item:before {
  2047. content: '';
  2048. display: block;
  2049. width: var(--weui-STEPS-DOT-SIZE);
  2050. height: var(--weui-STEPS-DOT-SIZE);
  2051. border-radius: 100%;
  2052. background-color: var(--weui-STEPS-DEFAULT-COLOR);
  2053. -webkit-flex-shrink: 0;
  2054. flex-shrink: 0;
  2055. }
  2056. .weui-steps_horizonal .weui-steps__item:after {
  2057. content: '';
  2058. height: 1rpx;
  2059. -webkit-box-flex: 1;
  2060. -webkit-flex: 1;
  2061. flex: 1;
  2062. margin: 0 var(--weui-STEPS-HORIZONAL-DOT-GAP);
  2063. background: var(--weui-STEPS-DEFAULT-COLOR);
  2064. }
  2065. .weui-steps_horizonal .weui-steps__item:last-child {
  2066. -webkit-box-flex: 0;
  2067. -webkit-flex: none;
  2068. flex: none;
  2069. }
  2070. .weui-steps_horizonal .weui-steps__item:last-child:after {
  2071. display: none;
  2072. }
  2073. .weui-steps_horizonal
  2074. .weui-steps__item:first-child:not(.weui-steps__item_success):before {
  2075. background: var(--weui-STEPS-HIGHLIGHT-COLOR);
  2076. }
  2077. .weui-steps_horizonal .weui-steps__item__inner {
  2078. margin-left: 16rpx;
  2079. }
  2080. .weui-steps_horizonal .weui-steps__item_success + .weui-steps__item:before,
  2081. .weui-steps_horizonal .weui-steps__item_success:after,
  2082. .weui-steps_horizonal .weui-steps__item_success:before {
  2083. background: var(--weui-STEPS-HIGHLIGHT-COLOR);
  2084. }
  2085. .weui-steps_horizonal-primary {
  2086. display: -webkit-box;
  2087. display: -webkit-flex;
  2088. display: flex;
  2089. }
  2090. .weui-steps_horizonal-primary .weui-steps__item {
  2091. -webkit-box-flex: 1;
  2092. -webkit-flex: 1;
  2093. flex: 1;
  2094. position: relative;
  2095. }
  2096. .weui-steps_horizonal-primary .weui-steps__item:before {
  2097. content: ' ';
  2098. position: absolute;
  2099. left: 0;
  2100. top: 0;
  2101. right: 0;
  2102. height: 2rpx;
  2103. border-top: 2rpx solid var(--weui-STEPS-DEFAULT-COLOR);
  2104. color: var(--weui-STEPS-DEFAULT-COLOR);
  2105. -webkit-transform-origin: 0 0;
  2106. transform-origin: 0 0;
  2107. -webkit-transform: scaleY(0.5);
  2108. transform: scaleY(0.5);
  2109. }
  2110. .weui-steps_horizonal-primary .weui-steps__item:last-child {
  2111. -webkit-box-flex: 0;
  2112. -webkit-flex: none;
  2113. flex: none;
  2114. }
  2115. .weui-steps_horizonal-primary .weui-steps__item:last-child:before {
  2116. display: none;
  2117. }
  2118. .weui-steps_horizonal-primary .weui-steps__item__inner {
  2119. position: relative;
  2120. padding-top: 72rpx;
  2121. }
  2122. .weui-steps_horizonal-primary .weui-steps__item__inner:before {
  2123. content: '';
  2124. position: absolute;
  2125. z-index: 1;
  2126. width: var(--weui-STEPS-DOT-SIZE);
  2127. height: var(--weui-STEPS-DOT-SIZE);
  2128. border-radius: 100%;
  2129. background-color: var(--weui-STEPS-DEFAULT-COLOR);
  2130. top: 0;
  2131. left: 0;
  2132. -webkit-transform: translateY(-50%);
  2133. transform: translateY(-50%);
  2134. }
  2135. .weui-steps_horizonal-primary .weui-steps__item__inner:after {
  2136. content: '';
  2137. background-color: var(--weui-BG-2);
  2138. width: calc(
  2139. var(--weui-STEPS-DOT-SIZE) + 2 * var(--weui-STEPS-HORIZONAL-DOT-GAP)
  2140. );
  2141. height: calc(
  2142. var(--weui-STEPS-DOT-SIZE) + 2 * var(--weui-STEPS-HORIZONAL-DOT-GAP)
  2143. );
  2144. position: absolute;
  2145. top: 0;
  2146. left: 0;
  2147. -webkit-transform: translate(
  2148. calc(-50% + var(--weui-STEPS-DOT-SIZE) / 2),
  2149. -50%
  2150. );
  2151. transform: translate(calc(-50% + var(--weui-STEPS-DOT-SIZE) / 2), -50%);
  2152. }
  2153. .weui-steps_horizonal-primary .weui-steps__item_success:before {
  2154. border-color: var(--weui-STEPS-HIGHLIGHT-COLOR);
  2155. }
  2156. .weui-steps_horizonal-primary
  2157. .weui-steps__item_success
  2158. + .weui-steps__item
  2159. .weui-steps__item__inner:before,
  2160. .weui-steps_horizonal-primary
  2161. .weui-steps__item_success
  2162. .weui-steps__item__inner:before {
  2163. background: var(--weui-STEPS-HIGHLIGHT-COLOR);
  2164. }
  2165. .weui-steps_horizonal-center {
  2166. display: -webkit-box;
  2167. display: -webkit-flex;
  2168. display: flex;
  2169. text-align: center;
  2170. }
  2171. .weui-steps_horizonal-center .weui-steps__item {
  2172. -webkit-box-flex: 1;
  2173. -webkit-flex: 1;
  2174. flex: 1;
  2175. position: relative;
  2176. }
  2177. .weui-steps_horizonal-center .weui-steps__item:after,
  2178. .weui-steps_horizonal-center .weui-steps__item:before {
  2179. content: ' ';
  2180. position: absolute;
  2181. left: 0;
  2182. top: 0;
  2183. right: 0;
  2184. height: 2rpx;
  2185. border-top: 2rpx solid var(--weui-STEPS-DEFAULT-COLOR);
  2186. color: var(--weui-STEPS-DEFAULT-COLOR);
  2187. -webkit-transform-origin: 0 0;
  2188. transform-origin: 0 0;
  2189. -webkit-transform: scaleY(0.5);
  2190. transform: scaleY(0.5);
  2191. }
  2192. .weui-steps_horizonal-center .weui-steps__item:before {
  2193. right: 50%;
  2194. }
  2195. .weui-steps_horizonal-center .weui-steps__item:after {
  2196. left: 50%;
  2197. }
  2198. .weui-steps_horizonal-center .weui-steps__item:first-child:before,
  2199. .weui-steps_horizonal-center .weui-steps__item:last-child:after {
  2200. display: none;
  2201. }
  2202. .weui-steps_horizonal-center .weui-steps__item__inner {
  2203. position: relative;
  2204. z-index: 1;
  2205. padding-top: 72rpx;
  2206. }
  2207. .weui-steps_horizonal-center .weui-steps__item__inner:before {
  2208. content: '';
  2209. position: absolute;
  2210. z-index: 1;
  2211. width: var(--weui-STEPS-DOT-SIZE);
  2212. height: var(--weui-STEPS-DOT-SIZE);
  2213. border-radius: 100%;
  2214. background-color: var(--weui-STEPS-DEFAULT-COLOR);
  2215. top: 0;
  2216. left: 50%;
  2217. -webkit-transform: translate(-50%, -50%);
  2218. transform: translate(-50%, -50%);
  2219. }
  2220. .weui-steps_horizonal-center .weui-steps__item__inner:after {
  2221. content: '';
  2222. background-color: var(--weui-BG-2);
  2223. width: calc(
  2224. var(--weui-STEPS-DOT-SIZE) + 2 * var(--weui-STEPS-HORIZONAL-DOT-GAP)
  2225. );
  2226. height: calc(
  2227. var(--weui-STEPS-DOT-SIZE) + 2 * var(--weui-STEPS-HORIZONAL-DOT-GAP)
  2228. );
  2229. position: absolute;
  2230. top: 0;
  2231. left: 50%;
  2232. -webkit-transform: translate(-50%, -50%);
  2233. transform: translate(-50%, -50%);
  2234. }
  2235. .weui-steps_horizonal-center
  2236. .weui-steps__item_success
  2237. + .weui-steps__item
  2238. .weui-steps__item__inner:before,
  2239. .weui-steps_horizonal-center
  2240. .weui-steps__item_success
  2241. + .weui-steps__item:before,
  2242. .weui-steps_horizonal-center
  2243. .weui-steps__item_success
  2244. .weui-steps__item__inner:before,
  2245. .weui-steps_horizonal-center .weui-steps__item_success:after,
  2246. .weui-steps_horizonal-center .weui-steps__item_success:before {
  2247. background: var(--weui-STEPS-HIGHLIGHT-COLOR);
  2248. }
  2249. body,
  2250. page {
  2251. --weui-cellMarginLR: 32rpx;
  2252. --weui-cellPaddingLR: 32rpx;
  2253. }
  2254. .weui-cells__group {
  2255. border: 0;
  2256. }
  2257. .weui-cells__group:first-child {
  2258. margin-top: 0;
  2259. }
  2260. .weui-cells__group_form {
  2261. margin-top: 48rpx;
  2262. }
  2263. .weui-cells__group_form .weui-cells {
  2264. margin-left: var(--weui-cellMarginLR);
  2265. margin-right: var(--weui-cellMarginLR);
  2266. }
  2267. .weui-cells__group_form .weui-cells:after,
  2268. .weui-cells__group_form .weui-cells:before {
  2269. left: var(--weui-cellPaddingLR);
  2270. right: var(--weui-cellPaddingLR);
  2271. }
  2272. .weui-cells__group_form .weui-cell {
  2273. padding: 32rpx var(--weui-cellPaddingLR);
  2274. }
  2275. .weui-cells__group_form .weui-cell:before {
  2276. left: var(--weui-cellPaddingLR);
  2277. right: var(--weui-cellPaddingLR);
  2278. }
  2279. .weui-cells__group_form .weui-cell__hd {
  2280. padding-right: 32rpx;
  2281. }
  2282. .weui-cells__group_form .weui-cell__ft {
  2283. padding-left: 32rpx;
  2284. }
  2285. .weui-cells__group_form .weui-cells__title {
  2286. margin-top: 48rpx;
  2287. margin-bottom: 16rpx;
  2288. padding: 0 64rpx;
  2289. }
  2290. .weui-cells__group_form:first-child .weui-cells__title {
  2291. margin-top: 0;
  2292. }
  2293. .weui-cells__group_form .weui-cells__tips {
  2294. margin-top: 16rpx;
  2295. padding: 0 calc(var(--weui-cellMarginLR) + var(--weui-cellPaddingLR));
  2296. color: var(--weui-FG-2);
  2297. }
  2298. .weui-cells__group_form .weui-cells__tips a, .weui-cells__group_form .weui-cells__tips .a {
  2299. font-weight: 700;
  2300. }
  2301. .weui-cells__group_form .weui-cells__tips_warn {
  2302. color: var(--weui-RED);
  2303. }
  2304. .weui-cells__group_form .weui-label {
  2305. max-width: 5em;
  2306. margin-right: 16rpx;
  2307. }
  2308. .weui-cells__group_form .weui-cell_access:active:after,
  2309. .weui-cells__group_form .weui-cell_active:active:after {
  2310. border-radius: 16rpx;
  2311. }
  2312. .weui-cells__group_form .weui-cell_warn input {
  2313. color: var(--weui-RED);
  2314. }
  2315. .weui-cells__group_form .weui-cell_disabled:active:after,
  2316. .weui-cells__group_form .weui-cell_readonly:active:after,
  2317. .weui-cells__group_form .weui-cell_switch:active:after,
  2318. .weui-cells__group_form .weui-cell_vcode:active:after,
  2319. .weui-cells__group_form .weui-icon-warn {
  2320. display: none;
  2321. }
  2322. .weui-cells__group_form input,
  2323. .weui-cells__group_form label[for],
  2324. .weui-cells__group_form textarea {
  2325. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  2326. }
  2327. .weui-cells__group_form .weui-cell_wrap {
  2328. -webkit-box-align: initial;
  2329. -webkit-align-items: initial;
  2330. align-items: initial;
  2331. padding-top: 16rpx;
  2332. padding-bottom: 16rpx;
  2333. }
  2334. .weui-cells__group_form .weui-cell_wrap .weui-cell__hd {
  2335. padding-right: 0;
  2336. }
  2337. .weui-cells__group_form .weui-cell_wrap .weui-label {
  2338. margin-top: 16rpx;
  2339. }
  2340. .weui-cells__group_form .weui-cell_wrap .weui-cell__bd {
  2341. display: -webkit-box;
  2342. display: -webkit-flex;
  2343. display: flex;
  2344. -webkit-flex-wrap: wrap;
  2345. flex-wrap: wrap;
  2346. -webkit-box-align: center;
  2347. -webkit-align-items: center;
  2348. align-items: center;
  2349. }
  2350. .weui-cells__group_form .weui-cell__control {
  2351. margin: 16rpx 0 16rpx 32rpx;
  2352. }
  2353. .weui-cells__group_form .weui-cell__control_flex {
  2354. -webkit-box-flex: 1;
  2355. -webkit-flex: 1;
  2356. flex: 1;
  2357. min-width: 30vw;
  2358. }
  2359. .weui-cells__group_form .weui-vcode-btn {
  2360. font-size: 32rpx;
  2361. padding: 0 24rpx;
  2362. height: auto;
  2363. width: auto;
  2364. line-height: 2;
  2365. border-radius: 12rpx;
  2366. color: var(--weui-BTN-DEFAULT-COLOR);
  2367. background-color: var(--weui-BTN-DEFAULT-BG);
  2368. }
  2369. .weui-cells__group_form .weui-vcode-btn:before {
  2370. display: none;
  2371. }
  2372. .weui-cells__group_form .weui-cell_vcode.weui-cell_wrap {
  2373. padding-top: 8rpx;
  2374. padding-bottom: 8rpx;
  2375. }
  2376. .weui-cells__group_form .weui-cell_vcode.weui-cell_wrap .weui-label {
  2377. margin-top: 24rpx;
  2378. }
  2379. .weui-cells__group_form .weui-cell_vcode.weui-cell_wrap .weui-input {
  2380. font-size: 34rpx;
  2381. min-height: 1.88235294em;
  2382. }
  2383. .weui-cells__group_form .weui-cells_checkbox .weui-check__label:before {
  2384. left: calc(80rpx + var(--weui-cellPaddingLR));
  2385. }
  2386. .weui-cells__group_form .weui-cell_select {
  2387. padding: 0;
  2388. }
  2389. .weui-cells__group_form .weui-cell_select-before .weui-cell__hd {
  2390. padding-right: 0;
  2391. }
  2392. .weui-cells__group_form .weui-cell_switch {
  2393. padding: 24rpx 32rpx;
  2394. }
  2395. .weui-cells__group_form-primary {
  2396. margin-top: 64rpx;
  2397. }
  2398. .weui-cells__group_form-primary .weui-cells {
  2399. background: var(--weui-BG-1);
  2400. border-radius: 16rpx;
  2401. overflow: hidden;
  2402. }
  2403. .weui-cells__group_form-primary .weui-cells:after,
  2404. .weui-cells__group_form-primary .weui-cells:before {
  2405. display: none;
  2406. }
  2407. .weui-cells__group_form-primary .weui-cell_access:active:after,
  2408. .weui-cells__group_form-primary .weui-cell_active:active:after {
  2409. border-radius: 0;
  2410. }
  2411. .weui-form {
  2412. padding: 112rpx 0 0;
  2413. padding: calc(112rpx + constant(safe-area-inset-top))
  2414. constant(safe-area-inset-right) constant(safe-area-inset-bottom)
  2415. constant(safe-area-inset-left);
  2416. padding: calc(112rpx + env(safe-area-inset-top)) env(safe-area-inset-right)
  2417. env(safe-area-inset-bottom) env(safe-area-inset-left);
  2418. display: -webkit-box;
  2419. display: -webkit-flex;
  2420. display: flex;
  2421. -webkit-box-orient: vertical;
  2422. -webkit-box-direction: normal;
  2423. -webkit-flex-direction: column;
  2424. flex-direction: column;
  2425. line-height: 1.4;
  2426. min-height: 100%;
  2427. box-sizing: border-box;
  2428. background-color: var(--weui-BG-2);
  2429. }
  2430. .weui-form .weui-footer,
  2431. .weui-form .weui-footer__link {
  2432. font-size: 28rpx;
  2433. }
  2434. .weui-form .weui-agree {
  2435. padding: 0;
  2436. display: -webkit-box;
  2437. display: -webkit-flex;
  2438. display: flex;
  2439. text-align: justify;
  2440. -webkit-box-pack: center;
  2441. -webkit-justify-content: center;
  2442. justify-content: center;
  2443. line-height: 1.6;
  2444. -webkit-box-align: center;
  2445. -webkit-align-items: center;
  2446. align-items: center;
  2447. word-wrap: break-word;
  2448. -webkit-hyphens: auto;
  2449. hyphens: auto;
  2450. }
  2451. .weui-form .weui-agree__checkbox {
  2452. -webkit-flex-shrink: 0;
  2453. flex-shrink: 0;
  2454. margin-top: 0;
  2455. }
  2456. .weui-form .weui-agree__text {
  2457. min-width: 0;
  2458. }
  2459. .weui-form__text-area {
  2460. padding: 0 64rpx;
  2461. color: var(--weui-FG-0);
  2462. text-align: center;
  2463. }
  2464. .weui-form__control-area {
  2465. -webkit-box-flex: 1;
  2466. -webkit-flex: 1;
  2467. flex: 1;
  2468. margin: 96rpx 0;
  2469. }
  2470. .weui-form__extra-area,
  2471. .weui-form__tips-area {
  2472. margin-bottom: 48rpx;
  2473. padding: 0 64rpx;
  2474. text-align: center;
  2475. }
  2476. .weui-form__extra-area {
  2477. margin-top: 104rpx;
  2478. }
  2479. .weui-form__opr-area {
  2480. padding: 0 64rpx;
  2481. }
  2482. .weui-form__opr-area:last-child {
  2483. margin-bottom: 192rpx;
  2484. }
  2485. .weui-form__opr-area + .weui-form__tips-area {
  2486. margin-top: 32rpx;
  2487. margin-bottom: 0;
  2488. }
  2489. .weui-form__tips-area + .weui-form__extra-area {
  2490. margin-top: 64rpx;
  2491. }
  2492. .weui-form__tips-area:last-child {
  2493. margin-bottom: 120rpx;
  2494. }
  2495. .weui-form__title {
  2496. font-size: 44rpx;
  2497. font-weight: 700;
  2498. line-height: 1.36;
  2499. }
  2500. .weui-form__desc {
  2501. font-size: 34rpx;
  2502. margin-top: 32rpx;
  2503. }
  2504. .weui-form__tips {
  2505. color: var(--weui-FG-1);
  2506. font-size: 28rpx;
  2507. }
  2508. .weui-form__tips a,
  2509. .weui-form__tips navigator {
  2510. color: var(--weui-LINK);
  2511. }
  2512. .weui-form__tips navigator {
  2513. display: inline;
  2514. }
  2515. .weui-article {
  2516. padding: 96rpx 48rpx;
  2517. padding: 96rpx calc(48rpx + constant(safe-area-inset-right))
  2518. calc(96rpx + constant(safe-area-inset-bottom))
  2519. calc(48rpx + constant(safe-area-inset-left));
  2520. padding: 96rpx calc(48rpx + env(safe-area-inset-right))
  2521. calc(96rpx + env(safe-area-inset-bottom))
  2522. calc(48rpx + env(safe-area-inset-left));
  2523. color: var(--weui-FG-0);
  2524. font-size: 34rpx;
  2525. line-height: 1.4;
  2526. word-wrap: break-word;
  2527. -webkit-hyphens: auto;
  2528. hyphens: auto;
  2529. }
  2530. .weui-article image {
  2531. margin: 0;
  2532. vertical-align: bottom;
  2533. }
  2534. .weui-article__section {
  2535. margin-bottom: 96rpx;
  2536. }
  2537. .weui-article__section .weui-article__section {
  2538. margin-bottom: 64rpx;
  2539. }
  2540. .weui-article__section .weui-article__section .weui-article__section {
  2541. margin-bottom: 48rpx;
  2542. }
  2543. .weui-article__h1 {
  2544. font-size: 44rpx;
  2545. font-weight: 500;
  2546. margin-bottom: 96rpx;
  2547. text-align: center;
  2548. }
  2549. .weui-article__h2 {
  2550. font-size: 40rpx;
  2551. font-weight: 500;
  2552. margin-bottom: 32rpx;
  2553. }
  2554. .weui-article__h3 {
  2555. font-size: 34rpx;
  2556. font-weight: 500;
  2557. margin-bottom: 16rpx;
  2558. }
  2559. .weui-article__h4 {
  2560. margin-bottom: 8rpx;
  2561. }
  2562. .weui-article__h4,
  2563. .weui-article__h5,
  2564. .weui-article__h6 {
  2565. font-size: 34rpx;
  2566. font-weight: 400;
  2567. }
  2568. .weui-article__p {
  2569. margin: 0 0 48rpx;
  2570. line-height: 1.6;
  2571. }
  2572. .weui-article__ol,
  2573. .weui-article__ul {
  2574. margin-left: 1.2em;
  2575. margin-bottom: 48rpx;
  2576. }
  2577. .weui-article__ol .weui-article__ol,
  2578. .weui-article__ol .weui-article__ul,
  2579. .weui-article__ul .weui-article__ol,
  2580. .weui-article__ul .weui-article__ul {
  2581. margin: 0.5em 0 0.5em 1.2em;
  2582. }
  2583. .weui-article__ol {
  2584. list-style: decimal;
  2585. }
  2586. .weui-article__ul {
  2587. list-style: disc;
  2588. }
  2589. .weui-article__li {
  2590. display: list-item;
  2591. margin: 0.5em 0;
  2592. }
  2593. .weui-article__list_inside .weui-article__li {
  2594. list-style-position: inside;
  2595. }
  2596. .weui-article__list_none .weui-article__li {
  2597. list-style: none;
  2598. }
  2599. .weui-tabbar {
  2600. display: -webkit-box;
  2601. display: -webkit-flex;
  2602. display: flex;
  2603. position: relative;
  2604. z-index: 500;
  2605. background-color: var(--weui-BG-1);
  2606. }
  2607. .weui-tabbar:before {
  2608. content: ' ';
  2609. position: absolute;
  2610. left: 0;
  2611. top: 0;
  2612. right: 0;
  2613. height: 2rpx;
  2614. border-top: 2rpx solid var(--weui-FG-3);
  2615. color: var(--weui-FG-3);
  2616. -webkit-transform-origin: 0 0;
  2617. transform-origin: 0 0;
  2618. -webkit-transform: scaleY(0.5);
  2619. transform: scaleY(0.5);
  2620. }
  2621. .weui-tabbar__item {
  2622. display: block;
  2623. -webkit-box-flex: 1;
  2624. -webkit-flex: 1;
  2625. flex: 1;
  2626. padding: 16rpx 0;
  2627. padding-bottom: calc(16rpx + constant(safe-area-inset-bottom));
  2628. padding-bottom: calc(16rpx + env(safe-area-inset-bottom));
  2629. font-size: 0;
  2630. color: var(--weui-FG-1);
  2631. text-align: center;
  2632. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  2633. }
  2634. .weui-tabbar__item:first-child {
  2635. padding-left: constant(safe-area-inset-left);
  2636. padding-left: env(safe-area-inset-left);
  2637. }
  2638. .weui-tabbar__item:last-child {
  2639. padding-right: constant(safe-area-inset-right);
  2640. padding-right: env(safe-area-inset-right);
  2641. }
  2642. .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon,
  2643. .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon > i,
  2644. .weui-tabbar__item.weui-bar__item_on .weui-tabbar__label {
  2645. color: var(--weui-BRAND);
  2646. }
  2647. .weui-tabbar__icon {
  2648. display: inline-block;
  2649. font-size: 20rpx;
  2650. width: 2.8em;
  2651. height: 2.8em;
  2652. margin-bottom: 4rpx;
  2653. }
  2654. .weui-tabbar__icon > i,
  2655. i.weui-tabbar__icon {
  2656. font-size: 48rpx;
  2657. color: var(--weui-FG-1);
  2658. }
  2659. .weui-tabbar__icon img, .weui-tabbar__icon .img {
  2660. width: 100%;
  2661. height: 100%;
  2662. }
  2663. .weui-tabbar__label {
  2664. color: var(--weui-FG-0);
  2665. font-size: 20rpx;
  2666. line-height: 1.4;
  2667. }
  2668. .weui-navbar {
  2669. display: -webkit-box;
  2670. display: -webkit-flex;
  2671. display: flex;
  2672. position: relative;
  2673. z-index: 500;
  2674. background-color: var(--weui-BG-2);
  2675. padding-top: constant(safe-area-inset-top);
  2676. padding-top: env(safe-area-inset-top);
  2677. }
  2678. .weui-navbar:after {
  2679. content: ' ';
  2680. position: absolute;
  2681. left: 0;
  2682. bottom: 0;
  2683. right: 0;
  2684. height: 2rpx;
  2685. border-bottom: 2rpx solid var(--weui-FG-3);
  2686. color: var(--weui-FG-3);
  2687. -webkit-transform-origin: 0 100%;
  2688. transform-origin: 0 100%;
  2689. -webkit-transform: scaleY(0.5);
  2690. transform: scaleY(0.5);
  2691. }
  2692. .weui-navbar + .weui-tab__panel {
  2693. padding-bottom: constant(safe-area-inset-bottom);
  2694. padding-bottom: env(safe-area-inset-bottom);
  2695. }
  2696. .weui-navbar__item {
  2697. position: relative;
  2698. display: block;
  2699. -webkit-box-flex: 1;
  2700. -webkit-flex: 1;
  2701. flex: 1;
  2702. padding: 32rpx 0;
  2703. padding-top: calc(32rpx + constant(safe-area-inset-top));
  2704. padding-top: calc(32rpx + env(safe-area-inset-top));
  2705. text-align: center;
  2706. font-size: 34rpx;
  2707. line-height: 1.41176471;
  2708. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  2709. }
  2710. .weui-navbar__item.weui-bar__item_on,
  2711. .weui-navbar__item:active {
  2712. background-color: var(--weui-BG-COLOR-ACTIVE);
  2713. }
  2714. .weui-navbar__item:after {
  2715. content: ' ';
  2716. position: absolute;
  2717. right: 0;
  2718. top: 0;
  2719. width: 2rpx;
  2720. bottom: 0;
  2721. border-right: 2rpx solid var(--weui-FG-3);
  2722. color: var(--weui-FG-3);
  2723. -webkit-transform-origin: 100% 0;
  2724. transform-origin: 100% 0;
  2725. -webkit-transform: scaleX(0.5);
  2726. transform: scaleX(0.5);
  2727. }
  2728. .weui-navbar__item:first-child {
  2729. padding-left: constant(safe-area-inset-left);
  2730. padding-left: env(safe-area-inset-left);
  2731. }
  2732. .weui-navbar__item:last-child {
  2733. padding-right: constant(safe-area-inset-right);
  2734. padding-right: env(safe-area-inset-right);
  2735. }
  2736. .weui-navbar__item:last-child:after {
  2737. display: none;
  2738. }
  2739. .weui-tab {
  2740. display: -webkit-box;
  2741. display: -webkit-flex;
  2742. display: flex;
  2743. height: 100%;
  2744. box-sizing: border-box;
  2745. -webkit-box-orient: vertical;
  2746. -webkit-box-direction: normal;
  2747. -webkit-flex-direction: column;
  2748. flex-direction: column;
  2749. }
  2750. .weui-tab__panel {
  2751. box-sizing: border-box;
  2752. -webkit-box-flex: 1;
  2753. -webkit-flex: 1;
  2754. flex: 1;
  2755. overflow: auto;
  2756. -webkit-overflow-scrolling: touch;
  2757. }
  2758. .weui-tab__content {
  2759. display: none;
  2760. }
  2761. .weui-progress {
  2762. display: -webkit-box;
  2763. display: -webkit-flex;
  2764. display: flex;
  2765. -webkit-box-align: center;
  2766. -webkit-align-items: center;
  2767. align-items: center;
  2768. }
  2769. .weui-progress__bar {
  2770. background-color: var(--weui-BG-0);
  2771. height: 6rpx;
  2772. -webkit-box-flex: 1;
  2773. -webkit-flex: 1;
  2774. flex: 1;
  2775. }
  2776. .weui-progress__inner-bar {
  2777. width: 0;
  2778. height: 100%;
  2779. background-color: var(--weui-BRAND);
  2780. }
  2781. .weui-progress__opr {
  2782. display: block;
  2783. margin-left: 30rpx;
  2784. font-size: 0;
  2785. }
  2786. .weui-panel {
  2787. background-color: var(--weui-BG-2);
  2788. margin-top: 20rpx;
  2789. position: relative;
  2790. overflow: hidden;
  2791. }
  2792. .weui-panel:first-child {
  2793. margin-top: 0;
  2794. }
  2795. .weui-panel:before {
  2796. top: 0;
  2797. border-top: 2rpx solid var(--weui-FG-3);
  2798. -webkit-transform-origin: 0 0;
  2799. transform-origin: 0 0;
  2800. -webkit-transform: scaleY(0.5);
  2801. transform: scaleY(0.5);
  2802. }
  2803. .weui-panel:after,
  2804. .weui-panel:before {
  2805. content: ' ';
  2806. position: absolute;
  2807. left: 0;
  2808. right: 0;
  2809. height: 2rpx;
  2810. color: var(--weui-FG-3);
  2811. }
  2812. .weui-panel:after {
  2813. bottom: 0;
  2814. border-bottom: 2rpx solid var(--weui-FG-3);
  2815. -webkit-transform-origin: 0 100%;
  2816. transform-origin: 0 100%;
  2817. -webkit-transform: scaleY(0.5);
  2818. transform: scaleY(0.5);
  2819. }
  2820. .weui-panel .weui-cells:after {
  2821. display: none;
  2822. }
  2823. .weui-panel__hd {
  2824. padding: 32rpx 32rpx 26rpx;
  2825. color: var(--weui-FG-0);
  2826. font-size: 30rpx;
  2827. font-weight: 500;
  2828. position: relative;
  2829. }
  2830. .weui-panel__hd:after {
  2831. content: ' ';
  2832. position: absolute;
  2833. left: 0;
  2834. bottom: 0;
  2835. right: 0;
  2836. height: 2rpx;
  2837. border-bottom: 2rpx solid var(--weui-FG-3);
  2838. color: var(--weui-FG-3);
  2839. -webkit-transform-origin: 0 100%;
  2840. transform-origin: 0 100%;
  2841. -webkit-transform: scaleY(0.5);
  2842. transform: scaleY(0.5);
  2843. left: 30rpx;
  2844. }
  2845. .weui-media-box {
  2846. padding: 32rpx;
  2847. position: relative;
  2848. }
  2849. .weui-media-box:before {
  2850. content: ' ';
  2851. position: absolute;
  2852. left: 0;
  2853. top: 0;
  2854. right: 0;
  2855. height: 2rpx;
  2856. border-top: 2rpx solid var(--weui-FG-3);
  2857. color: var(--weui-FG-3);
  2858. -webkit-transform-origin: 0 0;
  2859. transform-origin: 0 0;
  2860. -webkit-transform: scaleY(0.5);
  2861. transform: scaleY(0.5);
  2862. left: 32rpx;
  2863. }
  2864. .weui-media-box:first-child:before {
  2865. display: none;
  2866. }
  2867. a.weui-media-box {
  2868. color: #000;
  2869. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  2870. }
  2871. a.weui-media-box:active {
  2872. background-color: var(--weui-BG-COLOR-ACTIVE);
  2873. }
  2874. .weui-media-box__title {
  2875. display: block;
  2876. font-weight: 400;
  2877. font-size: 34rpx;
  2878. color: var(--weui-FG-0);
  2879. width: auto;
  2880. white-space: nowrap;
  2881. word-wrap: normal;
  2882. }
  2883. .weui-media-box__desc,
  2884. .weui-media-box__title {
  2885. line-height: 1.4;
  2886. overflow: hidden;
  2887. text-overflow: ellipsis;
  2888. word-wrap: break-word;
  2889. -webkit-hyphens: auto;
  2890. hyphens: auto;
  2891. }
  2892. .weui-media-box__desc {
  2893. color: var(--weui-FG-2);
  2894. font-size: 28rpx;
  2895. padding-top: 8rpx;
  2896. display: -webkit-box;
  2897. -webkit-box-orient: vertical;
  2898. -webkit-line-clamp: 2;
  2899. }
  2900. .weui-media-box__info {
  2901. display: block;
  2902. margin-top: 32rpx;
  2903. padding-bottom: 8rpx;
  2904. font-size: 26rpx;
  2905. color: var(--weui-FG-2);
  2906. line-height: 1em;
  2907. list-style: none;
  2908. overflow: hidden;
  2909. }
  2910. .weui-media-box__info__meta {
  2911. float: left;
  2912. padding-right: 1em;
  2913. }
  2914. .weui-media-box__info__meta_extra {
  2915. padding-left: 1em;
  2916. border-left: 2rpx solid var(--weui-FG-2);
  2917. }
  2918. .weui-media-box_appmsg {
  2919. display: -webkit-box;
  2920. display: -webkit-flex;
  2921. display: flex;
  2922. -webkit-box-align: center;
  2923. -webkit-align-items: center;
  2924. align-items: center;
  2925. }
  2926. .weui-media-box_appmsg .weui-media-box__hd {
  2927. margin-right: 32rpx;
  2928. width: 120rpx;
  2929. height: 120rpx;
  2930. line-height: 120rpx;
  2931. text-align: center;
  2932. }
  2933. .weui-media-box_appmsg .weui-media-box__thumb {
  2934. width: 100%;
  2935. max-height: 100%;
  2936. vertical-align: top;
  2937. }
  2938. .weui-media-box_appmsg .weui-media-box__bd {
  2939. -webkit-box-flex: 1;
  2940. -webkit-flex: 1;
  2941. flex: 1;
  2942. min-width: 0;
  2943. }
  2944. .weui-media-box_small-appmsg {
  2945. padding: 0;
  2946. }
  2947. .weui-media-box_small-appmsg .weui-cells {
  2948. margin-top: 0;
  2949. }
  2950. .weui-media-box_small-appmsg .weui-cells:before {
  2951. display: none;
  2952. }
  2953. .weui-grids {
  2954. position: relative;
  2955. overflow: hidden;
  2956. }
  2957. .weui-grids:before {
  2958. right: 0;
  2959. height: 2rpx;
  2960. border-top: 2rpx solid var(--weui-FG-3);
  2961. -webkit-transform-origin: 0 0;
  2962. transform-origin: 0 0;
  2963. -webkit-transform: scaleY(0.5);
  2964. transform: scaleY(0.5);
  2965. }
  2966. .weui-grids:after,
  2967. .weui-grids:before {
  2968. content: ' ';
  2969. position: absolute;
  2970. left: 0;
  2971. top: 0;
  2972. color: var(--weui-FG-3);
  2973. }
  2974. .weui-grids:after {
  2975. width: 2rpx;
  2976. bottom: 0;
  2977. border-left: 2rpx solid var(--weui-FG-3);
  2978. -webkit-transform-origin: 0 0;
  2979. transform-origin: 0 0;
  2980. -webkit-transform: scaleX(0.5);
  2981. transform: scaleX(0.5);
  2982. }
  2983. .weui-grid {
  2984. position: relative;
  2985. float: left;
  2986. padding: 40rpx 20rpx;
  2987. width: 33.33333333%;
  2988. box-sizing: border-box;
  2989. }
  2990. .weui-grid:before {
  2991. top: 0;
  2992. width: 2rpx;
  2993. border-right: 2rpx solid var(--weui-FG-3);
  2994. -webkit-transform-origin: 100% 0;
  2995. transform-origin: 100% 0;
  2996. -webkit-transform: scaleX(0.5);
  2997. transform: scaleX(0.5);
  2998. }
  2999. .weui-grid:after,
  3000. .weui-grid:before {
  3001. content: ' ';
  3002. position: absolute;
  3003. right: 0;
  3004. bottom: 0;
  3005. color: var(--weui-FG-3);
  3006. }
  3007. .weui-grid:after {
  3008. left: 0;
  3009. height: 2rpx;
  3010. border-bottom: 2rpx solid var(--weui-FG-3);
  3011. -webkit-transform-origin: 0 100%;
  3012. transform-origin: 0 100%;
  3013. -webkit-transform: scaleY(0.5);
  3014. transform: scaleY(0.5);
  3015. }
  3016. .weui-grid:active {
  3017. background-color: var(--weui-BG-COLOR-ACTIVE);
  3018. }
  3019. .weui-grid__icon {
  3020. width: 56rpx;
  3021. height: 56rpx;
  3022. margin: 0 auto;
  3023. }
  3024. .weui-grid__icon img {
  3025. display: block;
  3026. width: 100%;
  3027. height: 100%;
  3028. }
  3029. .weui-grid__icon + .weui-grid__label {
  3030. margin-top: 8rpx;
  3031. }
  3032. .weui-grid__label {
  3033. display: block;
  3034. color: var(--weui-FG-0);
  3035. white-space: nowrap;
  3036. text-overflow: ellipsis;
  3037. overflow: hidden;
  3038. }
  3039. .weui-footer,
  3040. .weui-grid__label {
  3041. text-align: center;
  3042. font-size: 28rpx;
  3043. }
  3044. .weui-footer {
  3045. color: rgba(0, 0, 0, 0.2);
  3046. line-height: 1.4;
  3047. }
  3048. [data-weui-theme='dark'] .weui-footer {
  3049. color: hsla(0, 0%, 100%, 0.2);
  3050. }
  3051. .weui-footer a,
  3052. .weui-footer navigator {
  3053. color: var(--weui-LINK);
  3054. }
  3055. .weui-footer navigator {
  3056. display: inline;
  3057. }
  3058. .weui-footer_fixed-bottom {
  3059. position: fixed;
  3060. bottom: 0;
  3061. left: 0;
  3062. right: 0;
  3063. padding-top: 32rpx;
  3064. padding-bottom: 32rpx;
  3065. padding-bottom: calc(32rpx + constant(safe-area-inset-bottom));
  3066. padding-bottom: calc(32rpx + env(safe-area-inset-bottom));
  3067. left: constant(safe-area-inset-left);
  3068. left: env(safe-area-inset-left);
  3069. right: constant(safe-area-inset-right);
  3070. right: env(safe-area-inset-right);
  3071. }
  3072. .weui-footer__links {
  3073. font-size: 0;
  3074. }
  3075. .weui-footer__link {
  3076. display: inline-block;
  3077. vertical-align: top;
  3078. margin: 0 16rpx;
  3079. position: relative;
  3080. font-size: 28rpx;
  3081. }
  3082. .weui-footer__link:before {
  3083. content: ' ';
  3084. position: absolute;
  3085. left: 0;
  3086. top: 0;
  3087. width: 2rpx;
  3088. bottom: 0;
  3089. border-left: 2rpx solid var(--weui-FG-3);
  3090. color: var(--weui-FG-3);
  3091. -webkit-transform-origin: 0 0;
  3092. transform-origin: 0 0;
  3093. -webkit-transform: scaleX(0.5);
  3094. transform: scaleX(0.5);
  3095. left: -16rpx;
  3096. top: 0.36em;
  3097. bottom: 0.36em;
  3098. }
  3099. .weui-footer__link:first-child:before {
  3100. display: none;
  3101. }
  3102. .weui-footer__text {
  3103. padding: 0 32rpx;
  3104. font-size: 24rpx;
  3105. }
  3106. .weui-flex {
  3107. display: -webkit-box;
  3108. display: -webkit-flex;
  3109. display: flex;
  3110. }
  3111. .weui-flex__item {
  3112. -webkit-box-flex: 1;
  3113. -webkit-flex: 1;
  3114. flex: 1;
  3115. min-width: 0;
  3116. }
  3117. .weui-dialog {
  3118. position: fixed;
  3119. z-index: 5000;
  3120. top: 50%;
  3121. left: 32rpx;
  3122. right: 32rpx;
  3123. -webkit-transform: translateY(-50%);
  3124. transform: translateY(-50%);
  3125. background-color: var(--weui-BG-2);
  3126. text-align: center;
  3127. border-radius: 24rpx;
  3128. overflow: hidden;
  3129. display: -webkit-box;
  3130. display: -webkit-flex;
  3131. display: flex;
  3132. -webkit-flex-direction: column;
  3133. -webkit-box-orient: vertical;
  3134. -webkit-box-direction: normal;
  3135. flex-direction: column;
  3136. max-height: 90%;
  3137. outline: 0;
  3138. }
  3139. .weui-dialog__hd {
  3140. padding: 64rpx 48rpx 32rpx;
  3141. }
  3142. .weui-dialog__title {
  3143. font-weight: 700;
  3144. font-size: 34rpx;
  3145. line-height: 1.4;
  3146. color: var(--weui-FG-0);
  3147. }
  3148. .weui-dialog__bd {
  3149. overflow-y: auto;
  3150. -webkit-overflow-scrolling: touch;
  3151. padding: 0 48rpx;
  3152. margin-bottom: 104rpx;
  3153. font-size: 34rpx;
  3154. line-height: 1.4;
  3155. word-wrap: break-word;
  3156. -webkit-hyphens: auto;
  3157. hyphens: auto;
  3158. color: var(--weui-FG-1);
  3159. }
  3160. .weui-dialog__bd:first-child {
  3161. min-height: 100rpx;
  3162. padding: 64rpx 48rpx 0;
  3163. font-weight: 700;
  3164. color: var(--weui-FG-0);
  3165. -webkit-flex-direction: column;
  3166. -webkit-box-orient: vertical;
  3167. -webkit-box-direction: normal;
  3168. flex-direction: column;
  3169. -webkit-box-pack: center;
  3170. -webkit-justify-content: center;
  3171. justify-content: center;
  3172. }
  3173. .weui-dialog__bd:first-child,
  3174. .weui-dialog__ft {
  3175. display: -webkit-box;
  3176. display: -webkit-flex;
  3177. display: flex;
  3178. }
  3179. .weui-dialog__ft {
  3180. position: relative;
  3181. }
  3182. .weui-dialog__ft:after {
  3183. content: ' ';
  3184. position: absolute;
  3185. left: 0;
  3186. top: 0;
  3187. right: 0;
  3188. height: 2rpx;
  3189. border-top: 2rpx solid var(--weui-DIALOG-LINE-COLOR);
  3190. color: var(--weui-DIALOG-LINE-COLOR);
  3191. -webkit-transform-origin: 0 0;
  3192. transform-origin: 0 0;
  3193. -webkit-transform: scaleY(0.5);
  3194. transform: scaleY(0.5);
  3195. }
  3196. .weui-dialog__btn {
  3197. -webkit-box-flex: 1;
  3198. -webkit-flex: 1;
  3199. flex: 1;
  3200. display: block;
  3201. line-height: 1.41176471;
  3202. padding: 32rpx 0;
  3203. font-size: 34rpx;
  3204. color: var(--weui-LINK);
  3205. font-weight: 700;
  3206. text-decoration: none;
  3207. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  3208. -webkit-user-select: none;
  3209. user-select: none;
  3210. position: relative;
  3211. overflow: hidden;
  3212. }
  3213. .weui-dialog__btn:active {
  3214. background-color: var(--weui-BG-COLOR-ACTIVE);
  3215. }
  3216. .weui-dialog__btn:after {
  3217. content: ' ';
  3218. position: absolute;
  3219. left: 0;
  3220. top: 0;
  3221. width: 2rpx;
  3222. bottom: 0;
  3223. border-left: 2rpx solid var(--weui-DIALOG-LINE-COLOR);
  3224. color: var(--weui-DIALOG-LINE-COLOR);
  3225. -webkit-transform-origin: 0 0;
  3226. transform-origin: 0 0;
  3227. -webkit-transform: scaleX(0.5);
  3228. transform: scaleX(0.5);
  3229. }
  3230. .weui-dialog__btn:first-child:after {
  3231. display: none;
  3232. }
  3233. .weui-dialog__btn_default {
  3234. color: var(--weui-FG-HALF);
  3235. }
  3236. .weui-skin_android .weui-dialog {
  3237. text-align: left;
  3238. box-shadow: 0 12rpx 60rpx 0 rgba(0, 0, 0, 0.1);
  3239. }
  3240. .weui-skin_android .weui-dialog__title {
  3241. font-size: 44rpx;
  3242. line-height: 1.4;
  3243. }
  3244. .weui-skin_android .weui-dialog__hd {
  3245. text-align: left;
  3246. }
  3247. .weui-skin_android .weui-dialog__bd {
  3248. color: var(--weui-FG-1);
  3249. text-align: left;
  3250. }
  3251. .weui-skin_android .weui-dialog__bd:first-child {
  3252. color: var(--weui-FG-0);
  3253. }
  3254. .weui-skin_android .weui-dialog__ft {
  3255. display: block;
  3256. text-align: right;
  3257. line-height: 80rpx;
  3258. min-height: 80rpx;
  3259. padding: 0 48rpx 32rpx;
  3260. }
  3261. .weui-skin_android .weui-dialog__ft:after {
  3262. display: none;
  3263. }
  3264. .weui-skin_android .weui-dialog__btn {
  3265. display: inline-block;
  3266. vertical-align: top;
  3267. padding: 0 0.8em;
  3268. }
  3269. .weui-skin_android .weui-dialog__btn:after {
  3270. display: none;
  3271. }
  3272. .weui-skin_android .weui-dialog__btn:last-child {
  3273. margin-right: -0.8em;
  3274. }
  3275. .weui-skin_android .weui-dialog__btn_default {
  3276. color: var(--weui-FG-HALF);
  3277. }
  3278. @media screen and (min-width: 704rpx) {
  3279. .weui-dialog {
  3280. width: 640rpx;
  3281. margin: 0 auto;
  3282. }
  3283. }
  3284. .weui-half-screen-dialog {
  3285. position: fixed;
  3286. left: 0;
  3287. right: 0;
  3288. bottom: 0;
  3289. min-height: 510rpx;
  3290. max-height: 75%;
  3291. z-index: 5000;
  3292. line-height: 1.4;
  3293. background-color: var(--weui-BG-2);
  3294. color: var(--weui-FG-0);
  3295. border-top-left-radius: 24rpx;
  3296. border-top-right-radius: 24rpx;
  3297. overflow: hidden;
  3298. padding: 0 48rpx;
  3299. padding: 0 calc(48rpx + constant(safe-area-inset-right))
  3300. constant(safe-area-inset-bottom)
  3301. calc(48rpx + constant(safe-area-inset-left));
  3302. padding: 0 calc(48rpx + env(safe-area-inset-right))
  3303. env(safe-area-inset-bottom) calc(48rpx + env(safe-area-inset-left));
  3304. box-sizing: border-box;
  3305. display: -webkit-box;
  3306. display: -webkit-flex;
  3307. display: flex;
  3308. -webkit-box-orient: vertical;
  3309. -webkit-box-direction: normal;
  3310. -webkit-flex-direction: column;
  3311. flex-direction: column;
  3312. outline: 0;
  3313. }
  3314. .weui-half-screen-dialog__hd {
  3315. min-height: 128rpx;
  3316. display: -webkit-box;
  3317. display: -webkit-flex;
  3318. display: flex;
  3319. -webkit-box-align: center;
  3320. -webkit-align-items: center;
  3321. align-items: center;
  3322. -webkit-flex-shrink: 0;
  3323. flex-shrink: 0;
  3324. }
  3325. .weui-half-screen-dialog__hd .weui-btn_icon {
  3326. position: absolute;
  3327. top: 50%;
  3328. -webkit-transform: translateY(-50%);
  3329. transform: translateY(-50%);
  3330. color: inherit;
  3331. }
  3332. .weui-half-screen-dialog__hd .weui-btn_icon:active {
  3333. opacity: 0.5;
  3334. }
  3335. .weui-half-screen-dialog__hd__side {
  3336. position: relative;
  3337. left: -16rpx;
  3338. }
  3339. .weui-half-screen-dialog__hd__main {
  3340. -webkit-box-flex: 1;
  3341. -webkit-flex: 1;
  3342. flex: 1;
  3343. }
  3344. .weui-half-screen-dialog__hd__side + .weui-half-screen-dialog__hd__main {
  3345. text-align: center;
  3346. padding: 0 80rpx;
  3347. }
  3348. .weui-half-screen-dialog__hd__main + .weui-half-screen-dialog__hd__side {
  3349. right: -16rpx;
  3350. left: auto;
  3351. }
  3352. .weui-half-screen-dialog__hd__main
  3353. + .weui-half-screen-dialog__hd__side
  3354. .weui-btn_icon,
  3355. .weui-half-screen-dialog__hd__main
  3356. + .weui-half-screen-dialog__hd__side
  3357. .weui-icon-btn {
  3358. right: 0;
  3359. }
  3360. .weui-half-screen-dialog__title {
  3361. display: block;
  3362. color: var(--weui-FG-0);
  3363. font-weight: 500;
  3364. font-size: 30rpx;
  3365. }
  3366. .weui-half-screen-dialog__subtitle {
  3367. display: block;
  3368. color: var(--weui-FG-1);
  3369. font-size: 20rpx;
  3370. }
  3371. .weui-half-screen-dialog__bd {
  3372. -webkit-box-flex: 1;
  3373. -webkit-flex: 1;
  3374. flex: 1;
  3375. min-height: 0;
  3376. overflow-y: auto;
  3377. word-wrap: break-word;
  3378. -webkit-hyphens: auto;
  3379. hyphens: auto;
  3380. padding-bottom: 112rpx;
  3381. font-size: 28rpx;
  3382. color: var(--weui-FG-0);
  3383. }
  3384. .weui-half-screen-dialog__desc {
  3385. font-size: 34rpx;
  3386. font-weight: 700;
  3387. color: var(--weui-FG-0);
  3388. line-height: 1.4;
  3389. }
  3390. .weui-half-screen-dialog__tips {
  3391. padding-top: 32rpx;
  3392. font-size: 28rpx;
  3393. color: var(--weui-FG-2);
  3394. line-height: 1.4;
  3395. }
  3396. .weui-half-screen-dialog__ft {
  3397. padding: 0 0 68rpx;
  3398. text-align: center;
  3399. }
  3400. .weui-half-screen-dialog__ft .weui-btn:nth-last-child(n + 2),
  3401. .weui-half-screen-dialog__ft .weui-btn:nth-last-child(n + 2) + .weui-btn {
  3402. display: inline-block;
  3403. vertical-align: top;
  3404. margin: 0 16rpx;
  3405. width: 240rpx;
  3406. }
  3407. .weui-half-screen-dialog__btn-area {
  3408. display: -webkit-box;
  3409. display: -webkit-flex;
  3410. display: flex;
  3411. -webkit-box-align: center;
  3412. -webkit-align-items: center;
  3413. align-items: center;
  3414. -webkit-box-pack: center;
  3415. -webkit-justify-content: center;
  3416. justify-content: center;
  3417. }
  3418. .weui-half-screen-dialog__btn-area .weui-btn {
  3419. width: 368rpx;
  3420. padding-left: 32rpx;
  3421. padding-right: 32rpx;
  3422. }
  3423. .weui-half-screen-dialog__btn-area .weui-btn:nth-last-child(n + 2),
  3424. .weui-half-screen-dialog__btn-area .weui-btn:nth-last-child(n + 2) + .weui-btn {
  3425. margin: 0 16rpx;
  3426. width: 272rpx;
  3427. }
  3428. .weui-half-screen-dialog__btn-area
  3429. .weui-btn:nth-last-child(n + 2)
  3430. + .weui-btn:first-child,
  3431. .weui-half-screen-dialog__btn-area .weui-btn:nth-last-child(n + 2):first-child {
  3432. margin-left: 0;
  3433. }
  3434. .weui-half-screen-dialog__btn-area
  3435. .weui-btn:nth-last-child(n + 2)
  3436. + .weui-btn:last-child,
  3437. .weui-half-screen-dialog__btn-area .weui-btn:nth-last-child(n + 2):last-child {
  3438. margin-right: 0;
  3439. }
  3440. .weui-half-screen-dialog__btn-area + .weui-half-screen-dialog__attachment-area {
  3441. margin-top: 48rpx;
  3442. margin-bottom: -68rpx;
  3443. }
  3444. .weui-half-screen-dialog_btn-wrap .weui-half-screen-dialog__btn-area {
  3445. -webkit-box-orient: vertical;
  3446. -webkit-box-direction: normal;
  3447. -webkit-flex-direction: column;
  3448. flex-direction: column;
  3449. }
  3450. .weui-half-screen-dialog_large {
  3451. max-height: none;
  3452. top: 32rpx;
  3453. }
  3454. .weui-half-screen-dialog_slide .weui-half-screen-dialog__hd {
  3455. min-height: 0;
  3456. padding: 24rpx 32rpx 32rpx;
  3457. -webkit-box-pack: center;
  3458. -webkit-justify-content: center;
  3459. justify-content: center;
  3460. }
  3461. .weui-half-screen-dialog_slide .weui-half-screen-dialog__slide-icon {
  3462. position: absolute;
  3463. top: 24rpx;
  3464. display: -webkit-box;
  3465. display: -webkit-flex;
  3466. display: flex;
  3467. width: 80rpx;
  3468. height: 8rpx;
  3469. border-radius: 4rpx;
  3470. background: var(--weui-BG-0);
  3471. -webkit-box-pack: center;
  3472. -webkit-justify-content: center;
  3473. justify-content: center;
  3474. -webkit-box-align: center;
  3475. -webkit-align-items: center;
  3476. align-items: center;
  3477. }
  3478. [data-weui-theme='dark']
  3479. .weui-half-screen-dialog_slide
  3480. .weui-half-screen-dialog__slide-icon {
  3481. background: var(--weui-FG-3);
  3482. }
  3483. .weui-half-screen-dialog_slide
  3484. .weui-half-screen-dialog__slide-icon
  3485. .weui-icon-arrow {
  3486. -webkit-transform: rotate(90deg);
  3487. transform: rotate(90deg);
  3488. width: 0.8em;
  3489. height: 1.6em;
  3490. opacity: 0;
  3491. }
  3492. .weui-icon-more {
  3493. -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")
  3494. no-repeat 50% 50%;
  3495. 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")
  3496. no-repeat 50% 50%;
  3497. }
  3498. .weui-icon-slide-down {
  3499. -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3E %3Cdefs%3E %3Crect id='dda90263-a290-4594-926f-6aba8cb4779f-a' width='24' height='24' x='0' y='0' rx='12'/%3E %3C/defs%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cmask id='dda90263-a290-4594-926f-6aba8cb4779f-b' fill='%23fff'%3E %3Cuse xlink:href='%23dda90263-a290-4594-926f-6aba8cb4779f-a'/%3E %3C/mask%3E %3Cuse fill='%23000' fill-opacity='.05' xlink:href='%23dda90263-a290-4594-926f-6aba8cb4779f-a'/%3E %3Cg fill-opacity='.9' mask='url(%23dda90263-a290-4594-926f-6aba8cb4779f-b)'%3E %3Cpath fill='%23000' d='M11.407 15.464L6.693 10.75l1.179-1.179 4.125 4.125 4.124-4.125L17.3 10.75l-4.714 4.714a.833.833 0 0 1-1.179 0z'/%3E %3C/g%3E %3C/g%3E%3C/svg%3E");
  3500. mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'%3E %3Cdefs%3E %3Crect id='dda90263-a290-4594-926f-6aba8cb4779f-a' width='24' height='24' x='0' y='0' rx='12'/%3E %3C/defs%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cmask id='dda90263-a290-4594-926f-6aba8cb4779f-b' fill='%23fff'%3E %3Cuse xlink:href='%23dda90263-a290-4594-926f-6aba8cb4779f-a'/%3E %3C/mask%3E %3Cuse fill='%23000' fill-opacity='.05' xlink:href='%23dda90263-a290-4594-926f-6aba8cb4779f-a'/%3E %3Cg fill-opacity='.9' mask='url(%23dda90263-a290-4594-926f-6aba8cb4779f-b)'%3E %3Cpath fill='%23000' d='M11.407 15.464L6.693 10.75l1.179-1.179 4.125 4.125 4.124-4.125L17.3 10.75l-4.714 4.714a.833.833 0 0 1-1.179 0z'/%3E %3C/g%3E %3C/g%3E%3C/svg%3E");
  3501. }
  3502. .weui-half-screen-dialog__hd .weui-icon-btn {
  3503. position: absolute;
  3504. top: 50%;
  3505. -webkit-transform: translateY(-50%);
  3506. transform: translateY(-50%);
  3507. color: inherit;
  3508. }
  3509. .weui-half-screen-dialog__hd .weui-icon-btn:active {
  3510. opacity: 0.5;
  3511. }
  3512. .weui-half-screen-dialog__hd .weui-icon-btn:after {
  3513. content: '';
  3514. position: absolute;
  3515. top: 50%;
  3516. left: 50%;
  3517. -webkit-transform: translate(-50%, -50%);
  3518. transform: translate(-50%, -50%);
  3519. min-width: 88rpx;
  3520. min-height: 88rpx;
  3521. width: 100%;
  3522. height: 100%;
  3523. }
  3524. .weui-icon-btn.weui-icon-btn {
  3525. outline: 0;
  3526. -webkit-appearance: none;
  3527. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  3528. border-width: 0;
  3529. background-color: transparent;
  3530. color: var(--weui-FG-0);
  3531. font-size: 0;
  3532. width: auto;
  3533. height: auto;
  3534. }
  3535. .weui-icon-btn_goback.weui-icon-btn_goback {
  3536. color: var(--weui-FG-0);
  3537. background-color: currentColor;
  3538. width: 0.71rem;
  3539. height: 1.42rem;
  3540. -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')
  3541. no-repeat 50% 50%;
  3542. 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')
  3543. no-repeat 50% 50%;
  3544. -webkit-mask-size: 100%;
  3545. mask-size: 100%;
  3546. }
  3547. .weui-icon-btn_close.weui-icon-btn_close {
  3548. color: var(--weui-FG-0);
  3549. background-color: currentColor;
  3550. width: 1.42rem;
  3551. height: 1.42rem;
  3552. -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')
  3553. no-repeat 50% 50%;
  3554. 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')
  3555. no-repeat 50% 50%;
  3556. -webkit-mask-size: 100%;
  3557. mask-size: 100%;
  3558. }
  3559. .weui-toast {
  3560. position: fixed;
  3561. z-index: 5500;
  3562. font-size: 20rpx;
  3563. width: 13.6em;
  3564. height: 13.6em;
  3565. top: 40%;
  3566. left: 50%;
  3567. -webkit-transform: translate(-50%, -50%);
  3568. transform: translate(-50%, -50%);
  3569. text-align: center;
  3570. border-radius: 24rpx;
  3571. color: hsla(0, 0%, 100%, 0.9);
  3572. display: -webkit-box;
  3573. display: -webkit-flex;
  3574. display: flex;
  3575. -webkit-box-orient: vertical;
  3576. -webkit-box-direction: normal;
  3577. -webkit-flex-direction: column;
  3578. flex-direction: column;
  3579. -webkit-box-align: center;
  3580. -webkit-align-items: center;
  3581. align-items: center;
  3582. -webkit-box-pack: center;
  3583. -webkit-justify-content: center;
  3584. justify-content: center;
  3585. background-color: var(--weui-BG-4);
  3586. box-sizing: border-box;
  3587. line-height: 1.4;
  3588. }
  3589. .weui-toast_text {
  3590. width: auto;
  3591. height: auto;
  3592. min-width: 304rpx;
  3593. max-width: 432rpx;
  3594. padding: 24rpx 0;
  3595. border-radius: 16rpx;
  3596. }
  3597. .weui-toast_text .weui-toast__content {
  3598. font-size: 28rpx;
  3599. padding: 0 40rpx;
  3600. }
  3601. .weui-icon_toast {
  3602. display: block;
  3603. margin-bottom: 32rpx;
  3604. }
  3605. .weui-icon_toast.weui-icon_toast {
  3606. width: 4em;
  3607. height: 4em;
  3608. }
  3609. .weui-icon_toast.weui-icon-success-no-circle,
  3610. .weui-icon_toast.weui-icon-warn {
  3611. color: hsla(0, 0%, 100%, 0.9);
  3612. }
  3613. .weui-icon_toast.weui-loading {
  3614. width: 1em;
  3615. height: 1em;
  3616. font-size: 80rpx;
  3617. }
  3618. .weui-icon_toast.weui-primary-loading {
  3619. display: -webkit-box;
  3620. display: -webkit-flex;
  3621. display: flex;
  3622. width: 1em;
  3623. height: 1em;
  3624. font-size: 80rpx;
  3625. color: #ededed;
  3626. }
  3627. .weui-icon_toast.weui-primary-loading:before {
  3628. border-width: 8rpx 0 8rpx 8rpx;
  3629. }
  3630. .weui-icon_toast.weui-primary-loading:after {
  3631. border-width: 8rpx 8rpx 8rpx 0;
  3632. }
  3633. .weui-icon_toast.weui-primary-loading .weui-primary-loading__dot {
  3634. width: 8rpx;
  3635. height: 8rpx;
  3636. border-top-right-radius: 8rpx;
  3637. border-bottom-right-radius: 8rpx;
  3638. }
  3639. .weui-toast__content {
  3640. font-size: 34rpx;
  3641. padding: 0 24rpx;
  3642. word-wrap: break-word;
  3643. -webkit-hyphens: auto;
  3644. hyphens: auto;
  3645. }
  3646. .weui-toast_text-more .weui-icon_toast {
  3647. margin-bottom: 24rpx;
  3648. }
  3649. .weui-toast_text-more .weui-toast__content {
  3650. font-size: 28rpx;
  3651. line-height: 1.6;
  3652. }
  3653. .weui-mask {
  3654. background: rgba(0, 0, 0, 0.6);
  3655. }
  3656. .weui-mask,
  3657. .weui-mask_transparent {
  3658. position: fixed;
  3659. z-index: 1000;
  3660. top: 0;
  3661. right: 0;
  3662. left: 0;
  3663. bottom: 0;
  3664. }
  3665. .weui-actionsheet {
  3666. position: fixed;
  3667. left: 0;
  3668. bottom: 0;
  3669. -webkit-transform: translateY(100%);
  3670. transform: translateY(100%);
  3671. -webkit-backface-visibility: hidden;
  3672. backface-visibility: hidden;
  3673. z-index: 5000;
  3674. width: 100%;
  3675. background-color: var(--weui-BG-1);
  3676. -webkit-transition: -webkit-transform 0.3s;
  3677. transition: -webkit-transform 0.3s;
  3678. transition: transform 0.3s;
  3679. transition: transform 0.3s, -webkit-transform 0.3s;
  3680. border-top-left-radius: 24rpx;
  3681. border-top-right-radius: 24rpx;
  3682. overflow: hidden;
  3683. outline: 0;
  3684. }
  3685. .weui-actionsheet__title {
  3686. position: relative;
  3687. height: 112rpx;
  3688. padding: 16rpx 48rpx;
  3689. padding: 16rpx calc(48rpx + constant(safe-area-inset-right)) 16rpx
  3690. calc(48rpx + constant(safe-area-inset-left));
  3691. padding: 16rpx calc(48rpx + env(safe-area-inset-right)) 16rpx
  3692. calc(48rpx + env(safe-area-inset-left));
  3693. box-sizing: border-box;
  3694. display: -webkit-box;
  3695. display: -webkit-flex;
  3696. display: flex;
  3697. -webkit-box-pack: center;
  3698. -webkit-justify-content: center;
  3699. justify-content: center;
  3700. -webkit-box-orient: vertical;
  3701. -webkit-box-direction: normal;
  3702. -webkit-flex-direction: column;
  3703. flex-direction: column;
  3704. text-align: center;
  3705. font-size: 24rpx;
  3706. color: var(--weui-FG-1);
  3707. line-height: 1.4;
  3708. background: var(--weui-BG-2);
  3709. }
  3710. .weui-actionsheet__title:before {
  3711. content: ' ';
  3712. position: absolute;
  3713. left: 0;
  3714. bottom: 0;
  3715. right: 0;
  3716. height: 2rpx;
  3717. border-bottom: 2rpx solid var(--weui-FG-3);
  3718. color: var(--weui-FG-3);
  3719. -webkit-transform-origin: 0 100%;
  3720. transform-origin: 0 100%;
  3721. -webkit-transform: scaleY(0.5);
  3722. transform: scaleY(0.5);
  3723. }
  3724. .weui-actionsheet__title .weui-actionsheet__title-text {
  3725. overflow: hidden;
  3726. text-overflow: ellipsis;
  3727. display: -webkit-box;
  3728. -webkit-box-orient: vertical;
  3729. -webkit-line-clamp: 2;
  3730. }
  3731. .weui-actionsheet__action,
  3732. .weui-actionsheet__menu {
  3733. color: var(--weui-FG-0);
  3734. background-color: var(--weui-BG-2);
  3735. }
  3736. .weui-actionsheet__action {
  3737. margin-top: 16rpx;
  3738. }
  3739. .weui-actionsheet__action .weui-actionsheet__cell:last-child {
  3740. padding-bottom: calc(32rpx + constant(safe-area-inset-bottom));
  3741. padding-bottom: calc(32rpx + env(safe-area-inset-bottom));
  3742. }
  3743. .weui-actionsheet__cell {
  3744. position: relative;
  3745. padding: 32rpx;
  3746. padding: 32rpx calc(32rpx + constant(safe-area-inset-right)) 32rpx
  3747. calc(32rpx + constant(safe-area-inset-left));
  3748. padding: 32rpx calc(32rpx + env(safe-area-inset-right)) 32rpx
  3749. calc(32rpx + env(safe-area-inset-left));
  3750. text-align: center;
  3751. font-size: 34rpx;
  3752. line-height: 1.41176471;
  3753. overflow: hidden;
  3754. }
  3755. .weui-actionsheet__cell:before {
  3756. content: ' ';
  3757. position: absolute;
  3758. left: 0;
  3759. top: 0;
  3760. right: 0;
  3761. height: 2rpx;
  3762. border-top: 2rpx solid var(--weui-FG-3);
  3763. color: var(--weui-FG-3);
  3764. -webkit-transform-origin: 0 0;
  3765. transform-origin: 0 0;
  3766. -webkit-transform: scaleY(0.5);
  3767. transform: scaleY(0.5);
  3768. }
  3769. .weui-actionsheet__cell:active {
  3770. background-color: var(--weui-BG-COLOR-ACTIVE);
  3771. }
  3772. .weui-actionsheet__cell:first-child:before {
  3773. display: none;
  3774. }
  3775. .weui-actionsheet__cell_warn {
  3776. color: var(--weui-RED);
  3777. }
  3778. .weui-skin_android .weui-actionsheet {
  3779. position: fixed;
  3780. left: 50%;
  3781. top: 50%;
  3782. bottom: auto;
  3783. -webkit-transform: translate(-50%, -50%);
  3784. transform: translate(-50%, -50%);
  3785. width: 548rpx;
  3786. box-sizing: border-box;
  3787. -webkit-backface-visibility: hidden;
  3788. backface-visibility: hidden;
  3789. background: transparent;
  3790. -webkit-transition: -webkit-transform 0.3s;
  3791. transition: -webkit-transform 0.3s;
  3792. transition: transform 0.3s;
  3793. transition: transform 0.3s, -webkit-transform 0.3s;
  3794. border-top-left-radius: 0;
  3795. border-top-right-radius: 0;
  3796. }
  3797. .weui-skin_android .weui-actionsheet__action {
  3798. display: none;
  3799. }
  3800. .weui-skin_android .weui-actionsheet__menu {
  3801. border-radius: 4rpx;
  3802. box-shadow: 0 12rpx 60rpx 0 rgba(0, 0, 0, 0.1);
  3803. }
  3804. .weui-skin_android .weui-actionsheet__cell {
  3805. padding: 32rpx;
  3806. font-size: 34rpx;
  3807. line-height: 1.41176471;
  3808. color: var(--weui-FG-0);
  3809. text-align: left;
  3810. }
  3811. .weui-skin_android .weui-actionsheet__cell:first-child {
  3812. border-top-left-radius: 4rpx;
  3813. border-top-right-radius: 4rpx;
  3814. }
  3815. .weui-skin_android .weui-actionsheet__cell:last-child {
  3816. border-bottom-left-radius: 4rpx;
  3817. border-bottom-right-radius: 4rpx;
  3818. }
  3819. .weui-actionsheet_toggle {
  3820. -webkit-transform: translate(0);
  3821. transform: translate(0);
  3822. }
  3823. .weui-loadmore {
  3824. width: 65%;
  3825. margin: 40rpx auto;
  3826. text-align: center;
  3827. font-size: 0;
  3828. }
  3829. .weui-loadmore .weui-loading,
  3830. .weui-loadmore .weui-primary-loading {
  3831. margin-right: 16rpx;
  3832. }
  3833. .weui-loadmore__tips {
  3834. display: inline-block;
  3835. vertical-align: middle;
  3836. font-size: 28rpx;
  3837. line-height: 1.6;
  3838. color: var(--weui-FG-1);
  3839. }
  3840. .weui-loadmore_line {
  3841. border-top: 2rpx solid var(--weui-FG-3);
  3842. margin-top: 64rpx;
  3843. }
  3844. .weui-loadmore_line .weui-loadmore__tips {
  3845. position: relative;
  3846. top: -0.9em;
  3847. padding: 0 16rpx;
  3848. background-color: var(--weui-BG-2);
  3849. }
  3850. .weui-loadmore_dot .weui-loadmore__tips:before {
  3851. content: ' ';
  3852. width: 8rpx;
  3853. height: 8rpx;
  3854. border-radius: 50%;
  3855. background-color: var(--weui-FG-3);
  3856. display: inline-block;
  3857. position: relative;
  3858. vertical-align: 0;
  3859. top: -0.16em;
  3860. }
  3861. .weui-badge {
  3862. display: inline-block;
  3863. padding: 0.15em 0.4em;
  3864. min-width: 0.66666667em;
  3865. border-radius: 36rpx;
  3866. background-color: var(--weui-RED);
  3867. color: #fff;
  3868. line-height: 1.2;
  3869. text-align: center;
  3870. font-size: 24rpx;
  3871. vertical-align: middle;
  3872. }
  3873. .weui-badge_dot {
  3874. padding: 0.4em;
  3875. min-width: 0;
  3876. }
  3877. .weui-toptips {
  3878. display: none;
  3879. position: fixed;
  3880. -webkit-transform: translateZ(0);
  3881. transform: translateZ(0);
  3882. top: 16rpx;
  3883. left: 16rpx;
  3884. right: 16rpx;
  3885. padding: 20rpx;
  3886. border-radius: 16rpx;
  3887. font-size: 28rpx;
  3888. text-align: center;
  3889. color: #fff;
  3890. z-index: 5500;
  3891. word-wrap: break-word;
  3892. word-break: break-all;
  3893. }
  3894. .weui-toptips_warn {
  3895. background-color: var(--weui-RED);
  3896. }
  3897. .weui-list-tips {
  3898. list-style: none;
  3899. padding-top: 48rpx;
  3900. padding-bottom: 48rpx;
  3901. line-height: 1.4;
  3902. font-size: 28rpx;
  3903. color: var(--weui-FG-1);
  3904. position: relative;
  3905. }
  3906. .weui-list-tips:before {
  3907. content: '';
  3908. content: ' ';
  3909. position: absolute;
  3910. left: 0;
  3911. top: 0;
  3912. right: 0;
  3913. height: 2rpx;
  3914. border-top: 2rpx solid var(--weui-FG-3);
  3915. color: var(--weui-FG-3);
  3916. -webkit-transform-origin: 0 0;
  3917. transform-origin: 0 0;
  3918. -webkit-transform: scaleY(0.5);
  3919. transform: scaleY(0.5);
  3920. }
  3921. .weui-list-tips:last-child {
  3922. padding-bottom: 0;
  3923. }
  3924. .weui-list-tips__item {
  3925. position: relative;
  3926. padding-left: 30rpx;
  3927. margin: 32rpx 0;
  3928. }
  3929. .weui-list-tips__item:before {
  3930. content: '\2022';
  3931. position: absolute;
  3932. left: 0;
  3933. top: -0.1em;
  3934. }
  3935. .weui-list-tips__item:first-child {
  3936. margin-top: 0;
  3937. }
  3938. .weui-form-preview__list + .weui-list-tips > .weui-list-tips__item:first-child {
  3939. margin-top: 12rpx;
  3940. }
  3941. .weui-search-bar {
  3942. position: relative;
  3943. padding: 16rpx;
  3944. display: -webkit-box;
  3945. display: -webkit-flex;
  3946. display: flex;
  3947. box-sizing: border-box;
  3948. background-color: var(--weui-BG-0);
  3949. -webkit-box-align: center;
  3950. -webkit-align-items: center;
  3951. align-items: center;
  3952. }
  3953. .weui-search-bar.weui-search-bar_focusing .weui-search-bar__cancel-btn {
  3954. display: block;
  3955. }
  3956. .weui-search-bar.weui-search-bar_focusing .weui-search-bar__label {
  3957. display: none;
  3958. }
  3959. .weui-search-bar .weui-icon-search {
  3960. font-size: 20rpx;
  3961. width: 1.6em;
  3962. height: 1.6em;
  3963. margin-left: 16rpx;
  3964. margin-right: 8rpx;
  3965. -webkit-flex-shrink: 0;
  3966. flex-shrink: 0;
  3967. }
  3968. .weui-search-bar__form {
  3969. position: relative;
  3970. -webkit-box-flex: 1;
  3971. -webkit-flex: 1;
  3972. flex: 1;
  3973. min-width: 0;
  3974. background-color: var(--weui-BG-2);
  3975. border-radius: 8rpx;
  3976. }
  3977. .weui-search-bar__box {
  3978. position: relative;
  3979. z-index: 1;
  3980. display: -webkit-box;
  3981. display: -webkit-flex;
  3982. display: flex;
  3983. -webkit-box-align: center;
  3984. -webkit-align-items: center;
  3985. align-items: center;
  3986. }
  3987. .weui-search-bar__box .weui-search-bar__input {
  3988. padding: 16rpx 0;
  3989. width: 100%;
  3990. height: 1.14285714em;
  3991. border: 0;
  3992. font-size: 28rpx;
  3993. line-height: 1.14285714em;
  3994. box-sizing: content-box;
  3995. background: transparent;
  3996. caret-color: var(--weui-BRAND);
  3997. color: var(--weui-FG-0);
  3998. }
  3999. .weui-search-bar__box .weui-search-bar__input:focus {
  4000. outline: none;
  4001. }
  4002. .weui-search-bar__box .weui-icon-clear {
  4003. -webkit-flex-shrink: 0;
  4004. flex-shrink: 0;
  4005. font-size: 20rpx;
  4006. width: 2em;
  4007. height: 2em;
  4008. margin-left: 16rpx;
  4009. -webkit-mask-size: 2em;
  4010. mask-size: 2em;
  4011. -webkit-mask-position: calc(100% - 16rpx) 0;
  4012. mask-position: calc(100% - 16rpx) 0;
  4013. min-width: 88rpx;
  4014. }
  4015. .weui-search-bar__box .weui-icon-clear:after {
  4016. content: '';
  4017. position: absolute;
  4018. top: 0;
  4019. bottom: 0;
  4020. width: 88rpx;
  4021. }
  4022. .weui-search-bar__label {
  4023. position: absolute;
  4024. top: 0;
  4025. right: 0;
  4026. bottom: 0;
  4027. left: 0;
  4028. z-index: 2;
  4029. font-size: 0;
  4030. border-radius: 8rpx;
  4031. display: -webkit-box;
  4032. display: -webkit-flex;
  4033. display: flex;
  4034. -webkit-box-align: center;
  4035. -webkit-align-items: center;
  4036. align-items: center;
  4037. -webkit-box-pack: center;
  4038. -webkit-justify-content: center;
  4039. justify-content: center;
  4040. color: var(--weui-FG-1);
  4041. background: var(--weui-BG-2);
  4042. }
  4043. .weui-search-bar__label span, .weui-search-bar__label .span {
  4044. display: inline-block;
  4045. font-size: 28rpx;
  4046. vertical-align: middle;
  4047. }
  4048. .weui-search-bar__cancel-btn {
  4049. -webkit-flex-shrink: 0;
  4050. flex-shrink: 0;
  4051. display: none;
  4052. margin-left: 16rpx;
  4053. line-height: 56rpx;
  4054. color: var(--weui-LINK);
  4055. }
  4056. .weui-search-bar__input:not(:valid) + .weui-icon-clear {
  4057. display: none;
  4058. }
  4059. input[type='search']::-webkit-search-cancel-button,
  4060. input[type='search']::-webkit-search-decoration,
  4061. input[type='search']::-webkit-search-results-button,
  4062. input[type='search']::-webkit-search-results-decoration {
  4063. display: none;
  4064. }
  4065. .weui-picker {
  4066. position: fixed;
  4067. width: 100%;
  4068. box-sizing: border-box;
  4069. left: 0;
  4070. bottom: 0;
  4071. z-index: 5000;
  4072. background-color: var(--weui-BG-2);
  4073. padding-left: 0;
  4074. padding-left: constant(safe-area-inset-left);
  4075. padding-left: env(safe-area-inset-left);
  4076. padding-right: 0;
  4077. padding-right: constant(safe-area-inset-right);
  4078. padding-right: env(safe-area-inset-right);
  4079. -webkit-backface-visibility: hidden;
  4080. backface-visibility: hidden;
  4081. -webkit-transform: translateY(100%);
  4082. transform: translateY(100%);
  4083. -webkit-transition: -webkit-transform 0.3s;
  4084. transition: -webkit-transform 0.3s;
  4085. transition: transform 0.3s;
  4086. transition: transform 0.3s, -webkit-transform 0.3s;
  4087. outline: 0;
  4088. }
  4089. .weui-picker .weui-half-screen-dialog__hd {
  4090. padding-left: 48rpx;
  4091. padding-right: 48rpx;
  4092. }
  4093. .weui-picker .weui-half-screen-dialog__bd {
  4094. overflow: visible;
  4095. }
  4096. .weui-picker__hd {
  4097. display: -webkit-box;
  4098. display: -webkit-flex;
  4099. display: flex;
  4100. padding: 32rpx;
  4101. padding: 32rpx calc(32rpx + constant(safe-area-inset-right)) 32rpx
  4102. calc(32rpx + constant(safe-area-inset-left));
  4103. padding: 32rpx calc(32rpx + env(safe-area-inset-right)) 32rpx
  4104. calc(32rpx + env(safe-area-inset-left));
  4105. position: relative;
  4106. text-align: center;
  4107. font-size: 34rpx;
  4108. line-height: 1.4;
  4109. }
  4110. .weui-picker__hd:after {
  4111. content: ' ';
  4112. position: absolute;
  4113. left: 0;
  4114. bottom: 0;
  4115. right: 0;
  4116. height: 2rpx;
  4117. border-bottom: 2rpx solid var(--weui-FG-3);
  4118. color: var(--weui-FG-3);
  4119. -webkit-transform-origin: 0 100%;
  4120. transform-origin: 0 100%;
  4121. -webkit-transform: scaleY(0.5);
  4122. transform: scaleY(0.5);
  4123. }
  4124. .weui-picker__bd {
  4125. display: -webkit-box;
  4126. display: -webkit-flex;
  4127. display: flex;
  4128. position: relative;
  4129. background-color: var(--weui-BG-2);
  4130. height: 480rpx;
  4131. overflow: hidden;
  4132. }
  4133. .weui-picker__group {
  4134. -webkit-box-flex: 1;
  4135. -webkit-flex: 1;
  4136. flex: 1;
  4137. position: relative;
  4138. height: 100%;
  4139. font-size: 34rpx;
  4140. }
  4141. .weui-picker__group:first-child .weui-picker__indicator {
  4142. left: 16rpx;
  4143. border-top-left-radius: 16rpx;
  4144. border-bottom-left-radius: 16rpx;
  4145. }
  4146. .weui-picker__group:last-child .weui-picker__indicator {
  4147. right: 16rpx;
  4148. border-top-right-radius: 16rpx;
  4149. border-bottom-right-radius: 16rpx;
  4150. }
  4151. .weui-picker__mask {
  4152. position: absolute;
  4153. top: 0;
  4154. left: 0;
  4155. width: 100%;
  4156. height: 100%;
  4157. margin: 0 auto;
  4158. z-index: 3;
  4159. background-image: -webkit-linear-gradient(
  4160. top,
  4161. hsla(0, 0%, 100%, 0.95),
  4162. hsla(0, 0%, 100%, 0.6)
  4163. ),
  4164. -webkit-linear-gradient(bottom, hsla(0, 0%, 100%, 0.95), hsla(0, 0%, 100%, 0.6));
  4165. background-image: linear-gradient(
  4166. 180deg,
  4167. hsla(0, 0%, 100%, 0.95),
  4168. hsla(0, 0%, 100%, 0.6)
  4169. ),
  4170. linear-gradient(0deg, hsla(0, 0%, 100%, 0.95), hsla(0, 0%, 100%, 0.6));
  4171. background-position: top, bottom;
  4172. background-size: 100% 224rpx;
  4173. background-repeat: no-repeat;
  4174. -webkit-transform: translateZ(0);
  4175. transform: translateZ(0);
  4176. }
  4177. [data-weui-theme='dark'] .weui-picker__mask {
  4178. background-image: -webkit-linear-gradient(
  4179. top,
  4180. rgba(25, 25, 25, 0.95),
  4181. rgba(25, 25, 25, 0.6)
  4182. ),
  4183. -webkit-linear-gradient(bottom, rgba(25, 25, 25, 0.95), rgba(25, 25, 25, 0.6));
  4184. background-image: linear-gradient(
  4185. 180deg,
  4186. rgba(25, 25, 25, 0.95),
  4187. rgba(25, 25, 25, 0.6)
  4188. ),
  4189. linear-gradient(0deg, rgba(25, 25, 25, 0.95), rgba(25, 25, 25, 0.6));
  4190. }
  4191. .weui-picker__indicator {
  4192. height: 112rpx;
  4193. position: absolute;
  4194. top: 224rpx;
  4195. left: 0;
  4196. right: 0;
  4197. z-index: 1;
  4198. background: var(--weui-BG-3);
  4199. }
  4200. .weui-picker__content {
  4201. position: absolute;
  4202. top: 0;
  4203. left: 0;
  4204. width: 100%;
  4205. z-index: 2;
  4206. }
  4207. .weui-picker__item {
  4208. height: 112rpx;
  4209. line-height: 112rpx;
  4210. text-align: center;
  4211. color: var(--weui-FG-0);
  4212. text-overflow: ellipsis;
  4213. white-space: nowrap;
  4214. overflow: hidden;
  4215. }
  4216. .weui-picker__item_disabled {
  4217. color: var(--weui-FG-1);
  4218. }
  4219. @-webkit-keyframes weuiSlideUp {
  4220. 0% {
  4221. -webkit-transform: translate3d(0, 100%, 0);
  4222. transform: translate3d(0, 100%, 0);
  4223. }
  4224. to {
  4225. -webkit-transform: translateZ(0);
  4226. transform: translateZ(0);
  4227. }
  4228. }
  4229. @keyframes weuiSlideUp {
  4230. 0% {
  4231. -webkit-transform: translate3d(0, 100%, 0);
  4232. transform: translate3d(0, 100%, 0);
  4233. }
  4234. to {
  4235. -webkit-transform: translateZ(0);
  4236. transform: translateZ(0);
  4237. }
  4238. }
  4239. .weui-animate-slide-up,
  4240. .weui-animate_slide-up {
  4241. -webkit-animation: ease 0.3s forwards;
  4242. animation: ease 0.3s forwards;
  4243. }
  4244. @-webkit-keyframes weuiSlideDown {
  4245. 0% {
  4246. -webkit-transform: translateZ(0);
  4247. transform: translateZ(0);
  4248. }
  4249. to {
  4250. -webkit-transform: translate3d(0, 100%, 0);
  4251. transform: translate3d(0, 100%, 0);
  4252. }
  4253. }
  4254. @keyframes weuiSlideDown {
  4255. 0% {
  4256. -webkit-transform: translateZ(0);
  4257. transform: translateZ(0);
  4258. }
  4259. to {
  4260. -webkit-transform: translate3d(0, 100%, 0);
  4261. transform: translate3d(0, 100%, 0);
  4262. }
  4263. }
  4264. .weui-animate-slide-down,
  4265. .weui-animate_slide-down {
  4266. -webkit-animation: ease 0.3s forwards;
  4267. animation: ease 0.3s forwards;
  4268. }
  4269. .weui-animate-fade-in,
  4270. .weui-animate_fade-in {
  4271. -webkit-animation: fadeIn ease 0.3s forwards;
  4272. animation: fadeIn ease 0.3s forwards;
  4273. }
  4274. .weui-animate-fade-out,
  4275. .weui-animate_fade-out {
  4276. -webkit-animation: fadeOut ease 0.3s forwards;
  4277. animation: fadeOut ease 0.3s forwards;
  4278. }
  4279. .weui-transition.weui-mask {
  4280. -webkit-transition: opacity 0.3s, visibility 0.3s;
  4281. transition: opacity 0.3s, visibility 0.3s;
  4282. opacity: 0;
  4283. visibility: hidden;
  4284. }
  4285. .weui-transition.weui-half-screen-dialog {
  4286. -webkit-transition: -webkit-transform 0.3s;
  4287. transition: -webkit-transform 0.3s;
  4288. transition: transform 0.3s;
  4289. transition: transform 0.3s, -webkit-transform 0.3s;
  4290. -webkit-transform: translateY(100%);
  4291. transform: translateY(100%);
  4292. }
  4293. .weui-transition_show.weui-mask {
  4294. opacity: 1;
  4295. visibility: visible;
  4296. }
  4297. .weui-transition_show.weui-half-screen-dialog {
  4298. -webkit-transform: translateY(0);
  4299. transform: translateY(0);
  4300. }
  4301. .weui-agree {
  4302. display: block;
  4303. padding: 16rpx 30rpx 0;
  4304. font-size: 28rpx;
  4305. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  4306. }
  4307. .weui-agree a,
  4308. .weui-agree navigator {
  4309. color: var(--weui-LINK);
  4310. }
  4311. .weui-agree navigator {
  4312. display: inline;
  4313. }
  4314. .weui-agree__text {
  4315. color: var(--weui-FG-1);
  4316. margin-left: 4rpx;
  4317. }
  4318. .weui-agree__checkbox {
  4319. -webkit-appearance: none;
  4320. appearance: none;
  4321. display: inline-block;
  4322. border: 0;
  4323. outline: 0;
  4324. vertical-align: middle;
  4325. background-color: currentColor;
  4326. -webkit-mask-position: 0 0;
  4327. mask-position: 0 0;
  4328. -webkit-mask-repeat: no-repeat;
  4329. mask-repeat: no-repeat;
  4330. -webkit-mask-size: 100%;
  4331. mask-size: 100%;
  4332. -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);
  4333. 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);
  4334. color: var(--weui-FG-2);
  4335. width: 1em;
  4336. height: 1em;
  4337. font-size: 34rpx;
  4338. margin-top: -0.2em;
  4339. }
  4340. .weui-agree__checkbox-check {
  4341. opacity: 0;
  4342. position: absolute;
  4343. width: 2rpx;
  4344. height: 2rpx;
  4345. overflow: hidden;
  4346. }
  4347. .weui-agree__checkbox-check[aria-checked='true'] + .weui-agree__checkbox,
  4348. .weui-agree__checkbox:checked {
  4349. -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);
  4350. 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);
  4351. color: var(--weui-BRAND);
  4352. }
  4353. .weui-agree_animate {
  4354. -webkit-animation: weuiAgree 0.3s 1;
  4355. animation: weuiAgree 0.3s 1;
  4356. }
  4357. @-webkit-keyframes weuiAgree {
  4358. 0% {
  4359. -webkit-transform: translateX(0);
  4360. transform: translateX(0);
  4361. }
  4362. 16% {
  4363. -webkit-transform: translateX(-16rpx);
  4364. transform: translateX(-16rpx);
  4365. }
  4366. 28% {
  4367. -webkit-transform: translateX(-32rpx);
  4368. transform: translateX(-32rpx);
  4369. }
  4370. 44% {
  4371. -webkit-transform: translateX(0);
  4372. transform: translateX(0);
  4373. }
  4374. 59% {
  4375. -webkit-transform: translateX(-32rpx);
  4376. transform: translateX(-32rpx);
  4377. }
  4378. 73% {
  4379. -webkit-transform: translateX(0);
  4380. transform: translateX(0);
  4381. }
  4382. 82% {
  4383. -webkit-transform: translateX(32rpx);
  4384. transform: translateX(32rpx);
  4385. }
  4386. 94% {
  4387. -webkit-transform: translateX(16rpx);
  4388. transform: translateX(16rpx);
  4389. }
  4390. to {
  4391. -webkit-transform: translateX(0);
  4392. transform: translateX(0);
  4393. }
  4394. }
  4395. @keyframes weuiAgree {
  4396. 0% {
  4397. -webkit-transform: translateX(0);
  4398. transform: translateX(0);
  4399. }
  4400. 16% {
  4401. -webkit-transform: translateX(-16rpx);
  4402. transform: translateX(-16rpx);
  4403. }
  4404. 28% {
  4405. -webkit-transform: translateX(-32rpx);
  4406. transform: translateX(-32rpx);
  4407. }
  4408. 44% {
  4409. -webkit-transform: translateX(0);
  4410. transform: translateX(0);
  4411. }
  4412. 59% {
  4413. -webkit-transform: translateX(-32rpx);
  4414. transform: translateX(-32rpx);
  4415. }
  4416. 73% {
  4417. -webkit-transform: translateX(0);
  4418. transform: translateX(0);
  4419. }
  4420. 82% {
  4421. -webkit-transform: translateX(32rpx);
  4422. transform: translateX(32rpx);
  4423. }
  4424. 94% {
  4425. -webkit-transform: translateX(16rpx);
  4426. transform: translateX(16rpx);
  4427. }
  4428. to {
  4429. -webkit-transform: translateX(0);
  4430. transform: translateX(0);
  4431. }
  4432. }
  4433. .weui-primary-loading {
  4434. font-size: 32rpx;
  4435. display: -webkit-inline-box;
  4436. display: -webkit-inline-flex;
  4437. display: inline-flex;
  4438. position: relative;
  4439. width: 1em;
  4440. height: 1em;
  4441. vertical-align: middle;
  4442. color: #606060;
  4443. -webkit-animation: circleLoading 1s steps(60) infinite;
  4444. animation: circleLoading 1s steps(60) infinite;
  4445. }
  4446. .weui-primary-loading:after,
  4447. .weui-primary-loading:before {
  4448. content: '';
  4449. display: block;
  4450. width: 0.5em;
  4451. height: 1em;
  4452. box-sizing: border-box;
  4453. border: 0.0875em solid;
  4454. border-color: currentColor;
  4455. }
  4456. .weui-primary-loading:before {
  4457. border-right-width: 0;
  4458. border-top-left-radius: 1em;
  4459. border-bottom-left-radius: 1em;
  4460. -webkit-mask-image: -webkit-linear-gradient(
  4461. top,
  4462. #000 8%,
  4463. rgba(0, 0, 0, 0.3) 95%
  4464. );
  4465. }
  4466. .weui-primary-loading:after {
  4467. border-left-width: 0;
  4468. border-top-right-radius: 1em;
  4469. border-bottom-right-radius: 1em;
  4470. -webkit-mask-image: -webkit-linear-gradient(
  4471. top,
  4472. transparent 8%,
  4473. rgba(0, 0, 0, 0.3) 95%
  4474. );
  4475. }
  4476. .weui-primary-loading__dot {
  4477. position: absolute;
  4478. top: 0;
  4479. left: 50%;
  4480. margin-left: -0.04375em;
  4481. width: 0.0875em;
  4482. height: 0.0875em;
  4483. border-top-right-radius: 100%;
  4484. border-bottom-right-radius: 100%;
  4485. background: currentColor;
  4486. }
  4487. @-webkit-keyframes circleLoading {
  4488. 0% {
  4489. -webkit-transform: rotate(0deg);
  4490. transform: rotate(0deg);
  4491. }
  4492. to {
  4493. -webkit-transform: rotate(1turn);
  4494. transform: rotate(1turn);
  4495. }
  4496. }
  4497. @keyframes circleLoading {
  4498. 0% {
  4499. -webkit-transform: rotate(0deg);
  4500. transform: rotate(0deg);
  4501. }
  4502. to {
  4503. -webkit-transform: rotate(1turn);
  4504. transform: rotate(1turn);
  4505. }
  4506. }
  4507. .weui-primary-loading_brand {
  4508. color: var(--weui-BRAND);
  4509. }
  4510. .weui-primary-loading_transparent {
  4511. color: #ededed;
  4512. }
  4513. .weui-loading {
  4514. font-size: 32rpx;
  4515. width: 1em;
  4516. height: 1em;
  4517. display: inline-block;
  4518. vertical-align: middle;
  4519. background: transparent
  4520. url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='160rpx' height='160rpx' viewBox='0 0 80 80' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Eloading%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='94.0869141%25' y1='0%25' x2='94.0869141%25' y2='90.559082%25' id='linearGradient-1'%3E%3Cstop stop-color='%23606060' stop-opacity='0' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23606060' stop-opacity='0.3' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3ClinearGradient x1='100%25' y1='8.67370605%25' x2='100%25' y2='90.6286621%25' id='linearGradient-2'%3E%3Cstop stop-color='%23606060' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23606060' stop-opacity='0.3' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' opacity='0.9'%3E%3Cg%3E%3Cpath d='M40,0 C62.09139,0 80,17.90861 80,40 C80,62.09139 62.09139,80 40,80 L40,73 C58.2253967,73 73,58.2253967 73,40 C73,21.7746033 58.2253967,7 40,7 L40,0 Z' fill='url(%23linearGradient-1)'%3E%3C/path%3E%3Cpath d='M40,0 L40,7 C21.7746033,7 7,21.7746033 7,40 C7,58.2253967 21.7746033,73 40,73 L40,80 C17.90861,80 0,62.09139 0,40 C0,17.90861 17.90861,0 40,0 Z' fill='url(%23linearGradient-2)'%3E%3C/path%3E%3Ccircle id='Oval' fill='%23606060' cx='40.5' cy='3.5' r='3.5'%3E%3C/circle%3E%3C/g%3E%3CanimateTransform attributeName='transform' begin='0s' dur='1s' type='rotate' values='0 40 40;360 40 40' repeatCount='indefinite'/%3E%3C/g%3E%3C/svg%3E%0A")
  4521. no-repeat;
  4522. background-size: 100%;
  4523. }
  4524. .weui-btn_loading.weui-btn_primary .weui-loading,
  4525. .weui-loading.weui-icon_toast,
  4526. .weui-loading.weui-loading_transparent {
  4527. background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='160rpx' height='160rpx' viewBox='0 0 80 80' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Eloading%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='94.0869141%25' y1='0%25' x2='94.0869141%25' y2='90.559082%25' id='linearGradient-1'%3E%3Cstop stop-color='%23ededed' stop-opacity='0' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23ededed' stop-opacity='0.3' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3ClinearGradient x1='100%25' y1='8.67370605%25' x2='100%25' y2='90.6286621%25' id='linearGradient-2'%3E%3Cstop stop-color='%23ededed' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23ededed' stop-opacity='0.3' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' opacity='0.9'%3E%3Cg%3E%3Cpath d='M40,0 C62.09139,0 80,17.90861 80,40 C80,62.09139 62.09139,80 40,80 L40,73 C58.2253967,73 73,58.2253967 73,40 C73,21.7746033 58.2253967,7 40,7 L40,0 Z' fill='url(%23linearGradient-1)'%3E%3C/path%3E%3Cpath d='M40,0 L40,7 C21.7746033,7 7,21.7746033 7,40 C7,58.2253967 21.7746033,73 40,73 L40,80 C17.90861,80 0,62.09139 0,40 C0,17.90861 17.90861,0 40,0 Z' fill='url(%23linearGradient-2)'%3E%3C/path%3E%3Ccircle id='Oval' fill='%23ededed' cx='40.5' cy='3.5' r='3.5'%3E%3C/circle%3E%3C/g%3E%3CanimateTransform attributeName='transform' begin='0s' dur='1s' type='rotate' values='0 40 40;360 40 40' repeatCount='indefinite'/%3E%3C/g%3E%3C/svg%3E%0A");
  4528. }
  4529. .weui-mask-loading {
  4530. display: inline-block;
  4531. vertical-align: middle;
  4532. font-size: 32rpx;
  4533. width: 1em;
  4534. height: 1em;
  4535. -webkit-mask: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='160rpx' height='160rpx' viewBox='0 0 80 80' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Eloading%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='94.0869141%25' y1='0%25' x2='94.0869141%25' y2='90.559082%25' id='linearGradient-1'%3E%3Cstop stop-color='%23606060' stop-opacity='0' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23606060' stop-opacity='0.3' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3ClinearGradient x1='100%25' y1='8.67370605%25' x2='100%25' y2='90.6286621%25' id='linearGradient-2'%3E%3Cstop stop-color='%23606060' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23606060' stop-opacity='0.3' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' opacity='0.9'%3E%3Cg%3E%3Cpath d='M40,0 C62.09139,0 80,17.90861 80,40 C80,62.09139 62.09139,80 40,80 L40,73 C58.2253967,73 73,58.2253967 73,40 C73,21.7746033 58.2253967,7 40,7 L40,0 Z' fill='url(%23linearGradient-1)'%3E%3C/path%3E%3Cpath d='M40,0 L40,7 C21.7746033,7 7,21.7746033 7,40 C7,58.2253967 21.7746033,73 40,73 L40,80 C17.90861,80 0,62.09139 0,40 C0,17.90861 17.90861,0 40,0 Z' fill='url(%23linearGradient-2)'%3E%3C/path%3E%3Ccircle id='Oval' fill='%23606060' cx='40.5' cy='3.5' r='3.5'%3E%3C/circle%3E%3C/g%3E%3CanimateTransform attributeName='transform' begin='0s' dur='1s' type='rotate' values='0 40 40;360 40 40' repeatCount='indefinite'/%3E%3C/g%3E%3C/svg%3E%0A")
  4536. 0 0 no-repeat;
  4537. mask: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='160rpx' height='160rpx' viewBox='0 0 80 80' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Eloading%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='94.0869141%25' y1='0%25' x2='94.0869141%25' y2='90.559082%25' id='linearGradient-1'%3E%3Cstop stop-color='%23606060' stop-opacity='0' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23606060' stop-opacity='0.3' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3ClinearGradient x1='100%25' y1='8.67370605%25' x2='100%25' y2='90.6286621%25' id='linearGradient-2'%3E%3Cstop stop-color='%23606060' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23606060' stop-opacity='0.3' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' opacity='0.9'%3E%3Cg%3E%3Cpath d='M40,0 C62.09139,0 80,17.90861 80,40 C80,62.09139 62.09139,80 40,80 L40,73 C58.2253967,73 73,58.2253967 73,40 C73,21.7746033 58.2253967,7 40,7 L40,0 Z' fill='url(%23linearGradient-1)'%3E%3C/path%3E%3Cpath d='M40,0 L40,7 C21.7746033,7 7,21.7746033 7,40 C7,58.2253967 21.7746033,73 40,73 L40,80 C17.90861,80 0,62.09139 0,40 C0,17.90861 17.90861,0 40,0 Z' fill='url(%23linearGradient-2)'%3E%3C/path%3E%3Ccircle id='Oval' fill='%23606060' cx='40.5' cy='3.5' r='3.5'%3E%3C/circle%3E%3C/g%3E%3CanimateTransform attributeName='transform' begin='0s' dur='1s' type='rotate' values='0 40 40;360 40 40' repeatCount='indefinite'/%3E%3C/g%3E%3C/svg%3E%0A")
  4538. 0 0 no-repeat;
  4539. -webkit-mask-size: cover;
  4540. mask-size: cover;
  4541. background-color: currentColor;
  4542. color: #606060;
  4543. }
  4544. .weui-slider {
  4545. padding: 30rpx 36rpx;
  4546. -webkit-user-select: none;
  4547. user-select: none;
  4548. }
  4549. .weui-slider__inner {
  4550. position: relative;
  4551. height: 4rpx;
  4552. background-color: var(--weui-FG-3);
  4553. }
  4554. .weui-slider__track {
  4555. height: 100%;
  4556. background-color: var(--weui-BRAND);
  4557. width: 0;
  4558. }
  4559. .weui-slider__handler {
  4560. position: absolute;
  4561. left: 0;
  4562. top: 50%;
  4563. width: 56rpx;
  4564. height: 56rpx;
  4565. margin-left: -28rpx;
  4566. margin-top: -28rpx;
  4567. border-radius: 50%;
  4568. background-color: #fff;
  4569. box-shadow: 0 0 8rpx var(--weui-FG-3);
  4570. }
  4571. .weui-slider-box {
  4572. display: -webkit-box;
  4573. display: -webkit-flex;
  4574. display: flex;
  4575. -webkit-box-align: center;
  4576. -webkit-align-items: center;
  4577. align-items: center;
  4578. }
  4579. .weui-slider-box .weui-slider {
  4580. -webkit-box-flex: 1;
  4581. -webkit-flex: 1;
  4582. flex: 1;
  4583. }
  4584. .weui-slider-box__value {
  4585. margin-left: 0.5em;
  4586. min-width: 48rpx;
  4587. color: var(--weui-FG-1);
  4588. text-align: center;
  4589. font-size: 28rpx;
  4590. }
  4591. .wx_dot_loading,
  4592. .wx_dot_loading:after,
  4593. .wx_dot_loading:before {
  4594. display: inline-block;
  4595. vertical-align: middle;
  4596. width: 12rpx;
  4597. height: 12rpx;
  4598. border-radius: 50%;
  4599. background-color: rgba(0, 0, 0, 0.3);
  4600. font-size: 0;
  4601. -webkit-animation: dot2 1.6s step-start infinite;
  4602. animation: dot2 1.6s step-start infinite;
  4603. }
  4604. .wx_dot_loading {
  4605. position: relative;
  4606. }
  4607. .wx_dot_loading:before {
  4608. content: '';
  4609. position: absolute;
  4610. left: -24rpx;
  4611. background-color: rgba(0, 0, 0, 0.1);
  4612. -webkit-animation: dot1 1.6s step-start infinite;
  4613. animation: dot1 1.6s step-start infinite;
  4614. }
  4615. .wx_dot_loading:after {
  4616. content: '';
  4617. position: absolute;
  4618. right: -24rpx;
  4619. background-color: rgba(0, 0, 0, 0.5);
  4620. -webkit-animation: dot3 1.6s step-start infinite;
  4621. animation: dot3 1.6s step-start infinite;
  4622. }
  4623. @-webkit-keyframes dot1 {
  4624. 0%,
  4625. to {
  4626. background-color: rgba(0, 0, 0, 0.1);
  4627. }
  4628. 30% {
  4629. background-color: rgba(0, 0, 0, 0.5);
  4630. }
  4631. 60% {
  4632. background-color: rgba(0, 0, 0, 0.3);
  4633. }
  4634. }
  4635. @keyframes dot1 {
  4636. 0%,
  4637. to {
  4638. background-color: rgba(0, 0, 0, 0.1);
  4639. }
  4640. 30% {
  4641. background-color: rgba(0, 0, 0, 0.5);
  4642. }
  4643. 60% {
  4644. background-color: rgba(0, 0, 0, 0.3);
  4645. }
  4646. }
  4647. @-webkit-keyframes dot2 {
  4648. 0%,
  4649. to {
  4650. background-color: rgba(0, 0, 0, 0.3);
  4651. }
  4652. 30% {
  4653. background-color: rgba(0, 0, 0, 0.1);
  4654. }
  4655. 60% {
  4656. background-color: rgba(0, 0, 0, 0.5);
  4657. }
  4658. }
  4659. @keyframes dot2 {
  4660. 0%,
  4661. to {
  4662. background-color: rgba(0, 0, 0, 0.3);
  4663. }
  4664. 30% {
  4665. background-color: rgba(0, 0, 0, 0.1);
  4666. }
  4667. 60% {
  4668. background-color: rgba(0, 0, 0, 0.5);
  4669. }
  4670. }
  4671. @-webkit-keyframes dot3 {
  4672. 0%,
  4673. to {
  4674. background-color: rgba(0, 0, 0, 0.5);
  4675. }
  4676. 30% {
  4677. background-color: rgba(0, 0, 0, 0.3);
  4678. }
  4679. 60% {
  4680. background-color: rgba(0, 0, 0, 0.1);
  4681. }
  4682. }
  4683. @keyframes dot3 {
  4684. 0%,
  4685. to {
  4686. background-color: rgba(0, 0, 0, 0.5);
  4687. }
  4688. 30% {
  4689. background-color: rgba(0, 0, 0, 0.3);
  4690. }
  4691. 60% {
  4692. background-color: rgba(0, 0, 0, 0.1);
  4693. }
  4694. }
  4695. .wx_dot_loading_white {
  4696. background-color: hsla(0, 0%, 100%, 0.3);
  4697. -webkit-animation: dotw2 1.6s step-start infinite;
  4698. animation: dotw2 1.6s step-start infinite;
  4699. }
  4700. .wx_dot_loading_white:before {
  4701. background-color: hsla(0, 0%, 100%, 0.5);
  4702. -webkit-animation: dotw1 1.6s step-start infinite;
  4703. animation: dotw1 1.6s step-start infinite;
  4704. }
  4705. .wx_dot_loading_white:after {
  4706. background-color: hsla(0, 0%, 100%, 0.1);
  4707. -webkit-animation: dotw3 1.6s step-start infinite;
  4708. animation: dotw3 1.6s step-start infinite;
  4709. }
  4710. @-webkit-keyframes dotw1 {
  4711. 0%,
  4712. to {
  4713. background-color: hsla(0, 0%, 100%, 0.5);
  4714. }
  4715. 30% {
  4716. background-color: hsla(0, 0%, 100%, 0.1);
  4717. }
  4718. 60% {
  4719. background-color: hsla(0, 0%, 100%, 0.3);
  4720. }
  4721. }
  4722. @keyframes dotw1 {
  4723. 0%,
  4724. to {
  4725. background-color: hsla(0, 0%, 100%, 0.5);
  4726. }
  4727. 30% {
  4728. background-color: hsla(0, 0%, 100%, 0.1);
  4729. }
  4730. 60% {
  4731. background-color: hsla(0, 0%, 100%, 0.3);
  4732. }
  4733. }
  4734. @-webkit-keyframes dotw2 {
  4735. 0%,
  4736. to {
  4737. background-color: hsla(0, 0%, 100%, 0.3);
  4738. }
  4739. 30% {
  4740. background-color: hsla(0, 0%, 100%, 0.5);
  4741. }
  4742. 60% {
  4743. background-color: hsla(0, 0%, 100%, 0.1);
  4744. }
  4745. }
  4746. @keyframes dotw2 {
  4747. 0%,
  4748. to {
  4749. background-color: hsla(0, 0%, 100%, 0.3);
  4750. }
  4751. 30% {
  4752. background-color: hsla(0, 0%, 100%, 0.5);
  4753. }
  4754. 60% {
  4755. background-color: hsla(0, 0%, 100%, 0.1);
  4756. }
  4757. }
  4758. @-webkit-keyframes dotw3 {
  4759. 0%,
  4760. to {
  4761. background-color: hsla(0, 0%, 100%, 0.1);
  4762. }
  4763. 30% {
  4764. background-color: hsla(0, 0%, 100%, 0.3);
  4765. }
  4766. 60% {
  4767. background-color: hsla(0, 0%, 100%, 0.5);
  4768. }
  4769. }
  4770. @keyframes dotw3 {
  4771. 0%,
  4772. to {
  4773. background-color: hsla(0, 0%, 100%, 0.1);
  4774. }
  4775. 30% {
  4776. background-color: hsla(0, 0%, 100%, 0.3);
  4777. }
  4778. 60% {
  4779. background-color: hsla(0, 0%, 100%, 0.5);
  4780. }
  4781. }
  4782. :host {
  4783. width: 100%;
  4784. }
  4785. .weui-slideview {
  4786. position: relative;
  4787. overflow: hidden;
  4788. }
  4789. .weui-slideview__left {
  4790. position: relative;
  4791. z-index: 10;
  4792. }
  4793. .weui-slideview__right {
  4794. position: absolute;
  4795. z-index: 1;
  4796. left: 100%;
  4797. top: 0;
  4798. height: 100%;
  4799. }
  4800. .weui-slideview__buttons {
  4801. height: 100%;
  4802. }
  4803. .weui-slideview__btn,
  4804. .weui-slideview__btn__wrp {
  4805. height: 100%;
  4806. display: -webkit-box;
  4807. display: -webkit-flex;
  4808. display: flex;
  4809. -webkit-box-align: center;
  4810. -webkit-align-items: center;
  4811. align-items: center;
  4812. -webkit-box-pack: center;
  4813. -webkit-justify-content: center;
  4814. justify-content: center;
  4815. }
  4816. .weui-slideview__btn__wrp {
  4817. position: absolute;
  4818. left: 0;
  4819. bottom: 0;
  4820. min-width: 138rpx;
  4821. white-space: nowrap;
  4822. }
  4823. .weui-slideview__btn {
  4824. -webkit-box-flex: 1;
  4825. -webkit-flex: 1;
  4826. flex: 1;
  4827. min-width: 0;
  4828. color: #fff;
  4829. padding: 0 34rpx;
  4830. text-align: center;
  4831. }
  4832. .weui-slideview__btn-group_default .weui-slideview__btn {
  4833. background: #c7c7cc;
  4834. }
  4835. [data-weui-theme='dark']
  4836. .weui-slideview__btn-group_default
  4837. .weui-slideview__btn {
  4838. background: var(--weui-BG-4);
  4839. }
  4840. .weui-slideview__btn-group_default ~ .weui-slideview__btn-group_default:before {
  4841. content: ' ';
  4842. position: absolute;
  4843. left: 0;
  4844. top: 0;
  4845. width: 2rpx;
  4846. bottom: 0;
  4847. border-left: 2rpx solid #fff;
  4848. color: #fff;
  4849. -webkit-transform-origin: 0 0;
  4850. transform-origin: 0 0;
  4851. -webkit-transform: scaleX(0.5);
  4852. transform: scaleX(0.5);
  4853. }
  4854. [data-weui-theme='dark']
  4855. .weui-slideview__btn-group_default
  4856. ~ .weui-slideview__btn-group_default:before {
  4857. border-left-color: var(--weui-FG-3);
  4858. }
  4859. .weui-slideview__btn-group_default:first-child:before {
  4860. display: none;
  4861. }
  4862. .weui-slideview__btn-group_warn .weui-slideview__btn {
  4863. background: #fe3b30;
  4864. }
  4865. .weui-slideview__btn-group_warn ~ .weui-slideview__btn-group_warn:before {
  4866. content: ' ';
  4867. position: absolute;
  4868. left: 0;
  4869. top: 0;
  4870. width: 2rpx;
  4871. bottom: 0;
  4872. border-left: 2rpx solid #fff;
  4873. color: #fff;
  4874. -webkit-transform-origin: 0 0;
  4875. transform-origin: 0 0;
  4876. -webkit-transform: scaleX(0.5);
  4877. transform: scaleX(0.5);
  4878. }
  4879. .weui-slideview__btn-group_warn:first-child:before {
  4880. display: none;
  4881. }
  4882. .weui-slideview_icon .weui-slideview__btn__wrp {
  4883. background: transparent;
  4884. font-size: 0;
  4885. }
  4886. .weui-slideview_icon .weui-slideview__btn__wrp:first-child {
  4887. padding-left: 32rpx;
  4888. }
  4889. .weui-slideview_icon .weui-slideview__btn__wrp:last-child {
  4890. padding-right: 16rpx;
  4891. }
  4892. .weui-slideview_icon .weui-slideview__btn {
  4893. -webkit-box-flex: 0;
  4894. -webkit-flex: none;
  4895. flex: none;
  4896. width: 96rpx;
  4897. height: 96rpx;
  4898. line-height: 96rpx;
  4899. padding: 0;
  4900. display: inline-block;
  4901. vertical-align: middle;
  4902. border-radius: 50%;
  4903. background-color: #fff;
  4904. }
  4905. [data-weui-theme='dark'] .weui-slideview_icon .weui-slideview__btn {
  4906. background-color: var(--weui-BG-4);
  4907. }
  4908. .weui-slideview_icon .weui-slideview__btn__icon {
  4909. display: inline-block;
  4910. vertical-align: middle;
  4911. width: 44rpx;
  4912. height: 44rpx;
  4913. }
  4914. page {
  4915. --height: 88rpx;
  4916. --right: 190rpx;
  4917. }
  4918. .weui-navigation-bar {
  4919. overflow: hidden;
  4920. color: var(--weui-FG-0);
  4921. }
  4922. .weui-navigation-bar .android {
  4923. --height: 96rpx;
  4924. --right: 222rpx;
  4925. }
  4926. .weui-navigation-bar__inner {
  4927. position: fixed;
  4928. top: 0;
  4929. left: 0;
  4930. z-index: 5001;
  4931. height: var(--height);
  4932. padding-right: var(--right);
  4933. width: calc(100% - var(--right));
  4934. }
  4935. .weui-navigation-bar__inner,
  4936. .weui-navigation-bar__inner .weui-navigation-bar__left {
  4937. display: -webkit-box;
  4938. display: -webkit-flex;
  4939. display: flex;
  4940. -webkit-box-align: center;
  4941. -webkit-align-items: center;
  4942. align-items: center;
  4943. }
  4944. .weui-navigation-bar__inner .weui-navigation-bar__left {
  4945. position: relative;
  4946. width: var(--right);
  4947. padding-left: 32rpx;
  4948. }
  4949. .weui-navigation-bar__inner
  4950. .weui-navigation-bar__left
  4951. .weui-navigation-bar__btn {
  4952. display: inline-block;
  4953. vertical-align: middle;
  4954. background-repeat: no-repeat;
  4955. }
  4956. .weui-navigation-bar__inner
  4957. .weui-navigation-bar__left
  4958. .weui-navigation-bar__btn_goback {
  4959. font-size: 24rpx;
  4960. width: 1em;
  4961. height: 2em;
  4962. -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")
  4963. no-repeat 50% 50%;
  4964. 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")
  4965. no-repeat 50% 50%;
  4966. -webkit-mask-size: cover;
  4967. mask-size: cover;
  4968. background-color: currentColor;
  4969. }
  4970. .weui-navigation-bar__inner
  4971. .weui-navigation-bar__left
  4972. .weui-navigation-bar__btn_goback:active {
  4973. opacity: 0.5;
  4974. }
  4975. .weui-navigation-bar__inner .weui-navigation-bar__center {
  4976. font-size: 34rpx;
  4977. text-align: center;
  4978. position: relative;
  4979. -webkit-box-flex: 1;
  4980. -webkit-flex: 1;
  4981. flex: 1;
  4982. display: -webkit-box;
  4983. display: -webkit-flex;
  4984. display: flex;
  4985. -webkit-box-align: center;
  4986. -webkit-align-items: center;
  4987. align-items: center;
  4988. -webkit-box-pack: center;
  4989. -webkit-justify-content: center;
  4990. justify-content: center;
  4991. }
  4992. .weui-navigation-bar__inner .weui-navigation-bar__loading {
  4993. margin-right: 8rpx;
  4994. display: -webkit-inline-box;
  4995. display: -webkit-inline-flex;
  4996. display: inline-flex;
  4997. -webkit-box-align: center;
  4998. -webkit-align-items: center;
  4999. align-items: center;
  5000. }
  5001. .weui-navigation-bar__inner .weui-navigation-bar__loading .weui-loading {
  5002. margin-left: 0;
  5003. }
  5004. .weui-navigation-bar__inner .weui-navigation-bar__right {
  5005. margin-right: 32rpx;
  5006. }
  5007. .weui-navigation-bar__placeholder {
  5008. height: var(--height);
  5009. background: var(--weui-BG-1);
  5010. position: relative;
  5011. z-index: 50;
  5012. }
  5013. .weui-uploader__hd {
  5014. display: block;
  5015. }
  5016. .weui-uploader__overview {
  5017. display: -webkit-box;
  5018. display: -webkit-flex;
  5019. display: flex;
  5020. -webkit-box-align: center;
  5021. -webkit-align-items: center;
  5022. align-items: center;
  5023. }
  5024. .weui-uploader__tips {
  5025. color: var(--weui-FG-2);
  5026. font-size: 28rpx;
  5027. line-height: 1.4;
  5028. padding-top: 8rpx;
  5029. }
  5030. .weui-uploader__img {
  5031. display: block;
  5032. width: 100%;
  5033. height: 100%;
  5034. }
  5035. .weui-gallery {
  5036. display: -webkit-box;
  5037. display: -webkit-flex;
  5038. display: flex;
  5039. -webkit-box-orient: vertical;
  5040. -webkit-box-direction: normal;
  5041. -webkit-flex-direction: column;
  5042. flex-direction: column;
  5043. -webkit-flex-wrap: nowrap;
  5044. flex-wrap: nowrap;
  5045. }
  5046. .weui-gallery__info {
  5047. color: #fff;
  5048. font-size: 34rpx;
  5049. line-height: 120rpx;
  5050. min-height: 120rpx;
  5051. text-align: center;
  5052. }
  5053. .weui-gallery__img__wrp {
  5054. -webkit-box-flex: 1;
  5055. -webkit-flex: 1;
  5056. flex: 1;
  5057. position: relative;
  5058. font-size: 0;
  5059. }
  5060. .weui-gallery__img {
  5061. position: absolute;
  5062. width: 100%;
  5063. height: 100%;
  5064. }
  5065. .weui-gallery__opr {
  5066. position: static;
  5067. }
  5068. .weui-search-bar .weui-search-bar__box .weui-search-bar__input {
  5069. height: inherit;
  5070. line-height: inherit;
  5071. }
  5072. .weui-search-bar .weui-search-bar__box .weui-icon-clear {
  5073. display: block;
  5074. }
  5075. .weui-loadmore .weui-loading {
  5076. margin-right: 0.3em;
  5077. }
  5078. .weui-btn_input-clear {
  5079. display: block;
  5080. }
  5081. .weui-agree__text {
  5082. display: inline;
  5083. }
  5084. @supports (-webkit-overflow-scrolling: touch) {
  5085. .weui-form .weui-agree__checkbox {
  5086. margin-top: -2rpx;
  5087. }
  5088. }
  5089. page {
  5090. height: 100%;
  5091. }
  5092. .page {
  5093. min-height: 100%;
  5094. background-color: var(--weui-BG-0);
  5095. color: var(--weui-FG-0);
  5096. font-size: 32rpx;
  5097. font-family: system-ui, -apple-system, Helvetica Neue, sans-serif;
  5098. }
  5099. image {
  5100. max-width: 100%;
  5101. max-height: 100%;
  5102. }
  5103. .link {
  5104. display: inline;
  5105. color: var(--weui-LINK);
  5106. }
  5107. .fadeIn {
  5108. -webkit-animation: fadeIn 0.3s forwards;
  5109. animation: fadeIn 0.3s forwards;
  5110. }
  5111. .fadeOut {
  5112. -webkit-animation: fadeOut 0.3s forwards;
  5113. animation: fadeOut 0.3s forwards;
  5114. }
  5115. @-webkit-keyframes fadeIn {
  5116. 0% {
  5117. opacity: 0;
  5118. }
  5119. to {
  5120. opacity: 1;
  5121. }
  5122. }
  5123. @keyframes fadeIn {
  5124. 0% {
  5125. opacity: 0;
  5126. }
  5127. to {
  5128. opacity: 1;
  5129. }
  5130. }
  5131. @-webkit-keyframes fadeOut {
  5132. 0% {
  5133. opacity: 1;
  5134. }
  5135. to {
  5136. opacity: 0;
  5137. }
  5138. }
  5139. @keyframes fadeOut {
  5140. 0% {
  5141. opacity: 1;
  5142. }
  5143. to {
  5144. opacity: 0;
  5145. }
  5146. }
  5147. .weui-msg__extra-area {
  5148. position: static;
  5149. }
  5150. .page__hd {
  5151. padding: 80rpx;
  5152. }
  5153. .page__bd {
  5154. padding-bottom: 80rpx;
  5155. }
  5156. .page__bd_spacing {
  5157. padding-left: 30rpx;
  5158. padding-right: 30rpx;
  5159. }
  5160. .page__ft {
  5161. padding-top: 80rpx;
  5162. padding-bottom: 20rpx;
  5163. padding-bottom: calc(20rpx + constant(safe-area-inset-bottom));
  5164. padding-bottom: calc(20rpx + env(safe-area-inset-bottom));
  5165. text-align: center;
  5166. }
  5167. [data-weui-theme='dark'] .page__ft image {
  5168. -webkit-filter: invert(100) hue-rotate(180deg);
  5169. filter: invert(100) hue-rotate(180deg);
  5170. }
  5171. .page__title {
  5172. text-align: left;
  5173. font-size: 40rpx;
  5174. font-weight: 400;
  5175. }
  5176. .page__desc {
  5177. margin-top: 10rpx;
  5178. color: var(--weui-FG-1);
  5179. text-align: left;
  5180. font-size: 28rpx;
  5181. }
  5182. .weui-cell_example:before {
  5183. left: 104rpx;
  5184. }
  5185. .weui-btn-info {
  5186. color: #4AC165 !important;
  5187. }
  5188. .weui-btn-bg-primary {
  5189. background-color: #4AC165 !important;
  5190. color: #fff !important;
  5191. }
  5192. .weui-dialog__mask {
  5193. width: 100vw;
  5194. height: 100vh;
  5195. position: fixed;
  5196. top: 0px;
  5197. left: 0rpx;
  5198. z-index: 999999 !important;
  5199. background-color: rgba(0, 0, 0, 0.7);
  5200. }