app.css 299 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571
  1. *{margin:0;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}html,body{-webkit-user-select:none;user-select:none;width:100%}html{height:100%;height:100vh;width:100%;width:100vw}body{overflow-x:hidden;background-color:#fff;height:100%}#app{height:100%}input[type=search]::-webkit-search-cancel-button{display:none}.uni-loading,uni-button[loading]:before{background:transparent url(data:image/svg+xml;base64,\ PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=) no-repeat}.uni-loading{width:20px;height:20px;display:inline-block;vertical-align:middle;animation:uni-loading 1s steps(12,end) infinite;background-size:100%}@keyframes uni-loading{0%{transform:rotate3d(0,0,1,0)}to{transform:rotate3d(0,0,1,360deg)}}@media (prefers-color-scheme: dark){html{--UI-BG-COLOR-ACTIVE: #373737;--UI-BORDER-COLOR-1: #373737;--UI-BG: #000;--UI-BG-0: #191919;--UI-BG-1: #1f1f1f;--UI-BG-2: #232323;--UI-BG-3: #2f2f2f;--UI-BG-4: #606060;--UI-BG-5: #2c2c2c;--UI-FG: #fff;--UI-FG-0: hsla(0, 0%, 100%, .8);--UI-FG-HALF: hsla(0, 0%, 100%, .6);--UI-FG-1: hsla(0, 0%, 100%, .5);--UI-FG-2: hsla(0, 0%, 100%, .3);--UI-FG-3: hsla(0, 0%, 100%, .05)}body{background-color:var(--UI-BG-0);color:var(--UI-FG-0)}}[nvue] uni-view,[nvue] uni-label,[nvue] uni-swiper-item,[nvue] uni-scroll-view{display:flex;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}[nvue] uni-button{margin:0}[nvue-dir-row] uni-view,[nvue-dir-row] uni-label,[nvue-dir-row] uni-swiper-item{flex-direction:row}[nvue-dir-column] uni-view,[nvue-dir-column] uni-label,[nvue-dir-column] uni-swiper-item{flex-direction:column}[nvue-dir-row-reverse] uni-view,[nvue-dir-row-reverse] uni-label,[nvue-dir-row-reverse] uni-swiper-item{flex-direction:row-reverse}[nvue-dir-column-reverse] uni-view,[nvue-dir-column-reverse] uni-label,[nvue-dir-column-reverse] uni-swiper-item{flex-direction:column-reverse}[nvue] uni-view,[nvue] uni-image,[nvue] uni-input,[nvue] uni-scroll-view,[nvue] uni-swiper,[nvue] uni-swiper-item,[nvue] uni-text,[nvue] uni-textarea,[nvue] uni-video{position:relative;border:0px solid #000000;box-sizing:border-box}[nvue] uni-swiper-item{position:absolute}@keyframes once-show{0%{top:0}}uni-resize-sensor,uni-resize-sensor>div{position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden}uni-resize-sensor{display:block;z-index:-1;visibility:hidden;animation:once-show 1ms}uni-resize-sensor>div>div{position:absolute;left:0;top:0}uni-resize-sensor>div:first-child>div{width:100000px;height:100000px}uni-resize-sensor>div:last-child>div{width:200%;height:200%}uni-text[selectable]{cursor:auto;-webkit-user-select:text;user-select:text}uni-text{white-space:pre-line}uni-view{display:block}uni-view[hidden]{display:none}uni-button{position:relative;display:block;margin-left:auto;margin-right:auto;padding-left:14px;padding-right:14px;box-sizing:border-box;font-size:18px;text-align:center;text-decoration:none;line-height:2.55555556;border-radius:5px;-webkit-tap-highlight-color:transparent;overflow:hidden;color:#000;background-color:#f8f8f8;cursor:pointer}uni-button[hidden]{display:none!important}uni-button:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border:1px solid rgba(0,0,0,.2);transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:10px}uni-button[native]{padding-left:0;padding-right:0}uni-button[native] .uni-button-cover-view-wrapper{border:inherit;border-color:inherit;border-radius:inherit;background-color:inherit}uni-button[native] .uni-button-cover-view-inner{padding-left:14px;padding-right:14px}uni-button uni-cover-view{line-height:inherit;white-space:inherit}uni-button[type=default]{color:#000;background-color:#f8f8f8}uni-button[type=primary]{color:#fff;background-color:#007aff}uni-button[type=warn]{color:#fff;background-color:#e64340}uni-button[disabled]{color:rgba(255,255,255,.6);cursor:not-allowed}uni-button[disabled][type=default],uni-button[disabled]:not([type]){color:rgba(0,0,0,.3);background-color:#f7f7f7}uni-button[disabled][type=primary]{background-color:rgba(0,122,255,.6)}uni-button[disabled][type=warn]{background-color:#ec8b89}uni-button[type=primary][plain]{color:#007aff;border:1px solid #007aff;background-color:transparent}uni-button[type=primary][plain][disabled]{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}uni-button[type=primary][plain]:after{border-width:0}uni-button[type=default][plain]{color:#353535;border:1px solid #353535;background-color:transparent}uni-button[type=default][plain][disabled]{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}uni-button[type=default][plain]:after{border-width:0}uni-button[plain]{color:#353535;border:1px solid #353535;background-color:transparent}uni-button[plain][disabled]{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}uni-button[plain]:after{border-width:0}uni-button[plain][native] .uni-button-cover-view-inner{padding:0}uni-button[type=warn][plain]{color:#e64340;border:1px solid #e64340;background-color:transparent}uni-button[type=warn][plain][disabled]{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}uni-button[type=warn][plain]:after{border-width:0}uni-button[size=mini]{display:inline-block;line-height:2.3;font-size:13px;padding:0 1.34em}uni-button[size=mini][native]{padding:0}uni-button[size=mini][native] .uni-button-cover-view-inner{padding:0 1.34em}uni-button[loading]:not([disabled]){cursor:progress}uni-button[loading]:before{content:" ";display:inline-block;width:18px;height:18px;vertical-align:middle;animation:uni-loading 1s steps(12,end) infinite;background-size:100%}uni-button[loading][type=primary]{color:rgba(255,255,255,.6);background-color:#0062cc}uni-button[loading][type=primary][plain]{color:#007aff;background-color:transparent}uni-button[loading][type=default]{color:rgba(0,0,0,.6);background-color:#dedede}uni-button[loading][type=default][plain]{color:#353535;background-color:transparent}uni-button[loading][type=warn]{color:rgba(255,255,255,.6);background-color:#ce3c39}uni-button[loading][type=warn][plain]{color:#e64340;background-color:transparent}uni-button[loading][native]:before{content:none}.button-hover{color:rgba(0,0,0,.6);background-color:#dedede}.button-hover[plain]{color:rgba(53,53,53,.6);border-color:rgba(53,53,53,.6);background-color:transparent}.button-hover[type=primary]{color:rgba(255,255,255,.6);background-color:#0062cc}.button-hover[type=primary][plain]{color:rgba(0,122,255,.6);border-color:rgba(0,122,255,.6);background-color:transparent}.button-hover[type=default]{color:rgba(0,0,0,.6);background-color:#dedede}.button-hover[type=default][plain]{color:rgba(53,53,53,.6);border-color:rgba(53,53,53,.6);background-color:transparent}.button-hover[type=warn]{color:rgba(255,255,255,.6);background-color:#ce3c39}.button-hover[type=warn][plain]{color:rgba(230,67,64,.6);border-color:rgba(230,67,64,.6);background-color:transparent}@media (prefers-color-scheme: dark){uni-button,uni-button[type=default]{color:#d6d6d6;background-color:#343434}.button-hover,.button-hover[type=default]{color:#d6d6d6;background-color:rgba(255,255,255,.1)}uni-button[disabled][type=default],uni-button[disabled]:not([type]){color:rgba(255,255,255,.2);background-color:rgba(255,255,255,.08)}uni-button[type=primary][plain][disabled]{color:rgba(255,255,255,.2);border-color:rgba(255,255,255,.2)}uni-button[type=default][plain]{color:#d6d6d6;border:1px solid #d6d6d6}.button-hover[type=default][plain]{color:rgba(150,150,150,.6);border-color:rgba(150,150,150,.6);background-color:rgba(50,50,50,.2)}uni-button[type=default][plain][disabled]{border-color:rgba(255,255,255,.2);color:rgba(255,255,255,.2)}}uni-canvas{width:300px;height:150px;display:block;position:relative}uni-canvas>.uni-canvas-canvas{position:absolute;top:0;left:0;width:100%;height:100%}uni-checkbox{-webkit-tap-highlight-color:transparent;display:inline-block;cursor:pointer}uni-checkbox[hidden]{display:none}uni-checkbox[disabled]{cursor:not-allowed}.uni-checkbox-wrapper{display:inline-flex;align-items:center;vertical-align:middle}.uni-checkbox-input{margin-right:5px;-webkit-appearance:none;appearance:none;outline:0;border:1px solid #d1d1d1;background-color:#fff;border-radius:3px;width:22px;height:22px;position:relative}.uni-checkbox-input svg{color:#007aff;font-size:22px;position:absolute;top:50%;left:50%;transform:translate(-50%,-48%) scale(.73)}@media (hover: hover){uni-checkbox:not([disabled]) .uni-checkbox-input:hover{border-color:var(--HOVER-BD-COLOR, #007aff)!important}}uni-checkbox-group{display:block}uni-checkbox-group[hidden]{display:none}uni-cover-image{display:block;line-height:1.2;overflow:hidden;height:100%;width:100%;pointer-events:auto}uni-cover-image[hidden]{display:none}uni-cover-image .uni-cover-image{width:100%;height:100%}uni-cover-view{display:block;line-height:1.2;overflow:hidden;white-space:nowrap;pointer-events:auto}uni-cover-view[hidden]{display:none}uni-cover-view .uni-cover-view{width:100%;height:100%;visibility:hidden;text-overflow:inherit;white-space:inherit;align-items:inherit;justify-content:inherit;flex-direction:inherit;flex-wrap:inherit;display:inherit;overflow:inherit}.ql-container{display:block;position:relative;box-sizing:border-box;-webkit-user-select:text;user-select:text;outline:none;overflow:hidden;width:100%;height:200px;min-height:200px}.ql-container[hidden]{display:none}.ql-container .ql-editor{position:relative;font-size:inherit;line-height:inherit;font-family:inherit;min-height:inherit;width:100%;height:100%;padding:0;overflow-x:hidden;overflow-y:auto;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-overflow-scrolling:touch}.ql-container .ql-editor::-webkit-scrollbar{width:0!important}.ql-container .ql-editor.scroll-disabled{overflow:hidden}.ql-container .ql-image-overlay{display:flex;position:absolute;box-sizing:border-box;border:1px dashed #ccc;justify-content:center;align-items:center;-webkit-user-select:none;user-select:none}.ql-container .ql-image-overlay .ql-image-size{position:absolute;padding:4px 8px;text-align:center;background-color:#fff;color:#888;border:1px solid #ccc;box-sizing:border-box;opacity:.8;right:4px;top:4px;font-size:12px;display:inline-block;width:auto}.ql-container .ql-image-overlay .ql-image-toolbar{position:relative;text-align:center;box-sizing:border-box;background:#000;border-radius:5px;color:#fff;font-size:0;min-height:24px;z-index:100}.ql-container .ql-image-overlay .ql-image-toolbar span{display:inline-block;cursor:pointer;padding:5px;font-size:12px;border-right:1px solid #fff}.ql-container .ql-image-overlay .ql-image-toolbar span:last-child{border-right:0}.ql-container .ql-image-overlay .ql-image-toolbar span.triangle-up{padding:0;position:absolute;top:-12px;left:50%;transform:translate(-50%);width:0;height:0;border-width:6px;border-style:solid;border-color:transparent transparent black transparent}.ql-container .ql-image-overlay .ql-image-handle{position:absolute;height:12px;width:12px;border-radius:50%;border:1px solid #ccc;box-sizing:border-box;background:#fff}.ql-container img{display:inline-block;max-width:100%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;height:100%;outline:none;overflow-y:auto;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor p,.ql-editor ol,.ql-editor ul,.ql-editor pre,.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{margin:0;padding:0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:"•"}.ql-editor ul[data-checked=true],.ql-editor ul[data-checked=false]{pointer-events:none}.ql-editor ul[data-checked=true]>li *,.ql-editor ul[data-checked=false]>li *{pointer-events:all}.ql-editor ul[data-checked=true]>li:before,.ql-editor ul[data-checked=false]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:"☑"}.ql-editor ul[data-checked=false]>li:before{content:"☐"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:2em}.ql-editor ol li{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment:list-0}.ql-editor ol li:before{content:counter(list-0,decimal) ". "}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) ". "}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) ". "}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) ". "}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) ". "}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) ". "}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) ". "}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) ". "}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) ". "}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) ". "}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:2em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:2em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:2em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:4em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:4em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:4em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:6em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:8em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:8em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:8em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:10em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:10em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:10em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:12em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:14em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:14em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:14em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:16em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:16em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:16em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:18em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;pointer-events:none;position:absolute}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}uni-icon{display:inline-block;font-size:0;box-sizing:border-box}uni-icon[hidden]{display:none}uni-image{width:320px;height:240px;display:inline-block;overflow:hidden;position:relative}uni-image[hidden]{display:none}uni-image>div{width:100%;height:100%;background-repeat:no-repeat}uni-image>img{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;display:block;position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}uni-image>.uni-image-will-change{will-change:transform}uni-input{display:block;font-size:16px;line-height:1.4em;height:1.4em;min-height:1.4em;overflow:hidden}uni-input[hidden]{display:none}.uni-input-wrapper,.uni-input-placeholder,.uni-input-form,.uni-input-input{outline:none;border:none;padding:0;margin:0;text-decoration:inherit}.uni-input-wrapper,.uni-input-form{display:flex;position:relative;width:100%;height:100%;flex-direction:column;justify-content:center}.uni-input-placeholder,.uni-input-input{width:100%}.uni-input-placeholder{position:absolute;top:auto!important;left:0;color:gray;overflow:hidden;text-overflow:clip;white-space:pre;word-break:keep-all;pointer-events:none;line-height:inherit}.uni-input-input{position:relative;display:block;height:100%;background:none;color:inherit;opacity:1;font:inherit;line-height:inherit;letter-spacing:inherit;text-align:inherit;text-indent:inherit;text-transform:inherit;text-shadow:inherit}.uni-input-input[type=search]::-webkit-search-cancel-button,.uni-input-input[type=search]::-webkit-search-decoration{display:none}.uni-input-input::-webkit-outer-spin-button,.uni-input-input::-webkit-inner-spin-button{-webkit-appearance:none;appearance:none;margin:0}.uni-input-input[type=number]{-moz-appearance:textfield}.uni-input-input:disabled{-webkit-text-fill-color:currentcolor}.uni-label-pointer{cursor:pointer}uni-live-pusher{width:320px;height:240px;display:inline-block;line-height:0;overflow:hidden;position:relative}uni-live-pusher[hidden]{display:none}.uni-live-pusher-container{width:100%;height:100%;position:absolute;top:0;left:0;overflow:hidden;background-color:#000}.uni-live-pusher-slot{position:absolute;top:0;width:100%;height:100%;overflow:hidden;pointer-events:none}uni-map{width:300px;height:225px;display:inline-block;line-height:0;overflow:hidden;position:relative}uni-map[hidden]{display:none}.uni-map-container{width:100%;height:100%;position:absolute;top:0;left:0;overflow:hidden;background-color:transparent}.uni-map-slot{position:absolute;top:0;width:100%;height:100%;overflow:hidden;pointer-events:none}uni-map.web{position:relative;width:300px;height:150px;display:block}uni-map.web[hidden]{display:none}uni-map.web .amap-marker-label{padding:0;border:none;background-color:transparent}uni-map.web .amap-marker>.amap-icon>img{left:0!important;top:0!important}uni-map.web .uni-map-control{position:absolute;width:0;height:0;top:0;left:0;z-index:999}uni-map.web .uni-map-control-icon{position:absolute;max-width:initial}.uni-system-choose-location{display:block;position:fixed;left:0;top:0;width:100%;height:100%;background:#f8f8f8;z-index:999}.uni-system-choose-location .map{position:absolute;top:0;left:0;width:100%;height:300px}.uni-system-choose-location .map-location{position:absolute;left:50%;bottom:50%;width:32px;height:52px;margin-left:-16px;cursor:pointer;background-size:100%}.uni-system-choose-location .map-move{position:absolute;bottom:50px;right:10px;width:40px;height:40px;box-sizing:border-box;line-height:40px;background-color:#fff;border-radius:50%;pointer-events:auto;cursor:pointer;box-shadow:0 0 5px 1px rgba(0,0,0,.3)}.uni-system-choose-location .map-move>svg{display:block;width:100%;height:100%;box-sizing:border-box;padding:8px}.uni-system-choose-location .nav{position:absolute;top:0;left:0;width:100%;height:calc(44px + var(--status-bar-height));background-color:transparent;background-image:linear-gradient(to bottom,rgba(0,0,0,.3),rgba(0,0,0,0))}.uni-system-choose-location .nav-btn{position:absolute;box-sizing:border-box;top:var(--status-bar-height);left:0;width:60px;height:44px;padding:6px;line-height:32px;font-size:26px;color:#fff;text-align:center;cursor:pointer}.uni-system-choose-location .nav-btn.confirm{left:auto;right:0}.uni-system-choose-location .nav-btn.disable{opacity:.4}.uni-system-choose-location .nav-btn>svg{display:block;width:100%;height:100%;border-radius:2px;box-sizing:border-box;padding:3px}.uni-system-choose-location .nav-btn.confirm>svg{background-color:#007aff;padding:5px}.uni-system-choose-location .menu{position:absolute;top:300px;left:0;width:100%;bottom:0;background-color:#fff}.uni-system-choose-location .search{display:flex;flex-direction:row;height:50px;padding:8px;line-height:34px;box-sizing:border-box;background-color:#fff}.uni-system-choose-location .search-input{flex:1;height:100%;border-radius:5px;padding:0 5px;background:#ebebeb}.uni-system-choose-location .search-btn{margin-left:5px;color:#007aff;font-size:17px;text-align:center}.uni-system-choose-location .list{position:absolute;top:50px;left:0;width:100%;bottom:0;padding-bottom:10px}.uni-system-choose-location .list-loading{display:flex;height:50px;justify-content:center;align-items:center}.uni-system-choose-location .list-item{position:relative;padding:10px 40px 10px 10px;cursor:pointer}.uni-system-choose-location .list-item>svg{display:none;position:absolute;top:50%;right:10px;width:30px;height:30px;margin-top:-15px;box-sizing:border-box;padding:5px}.uni-system-choose-location .list-item.selected>svg{display:block}.uni-system-choose-location .list-item:not(:last-child):after{position:absolute;content:"";height:1px;left:10px;bottom:0;width:100%;background-color:#d3d3d3}.uni-system-choose-location .list-item-title{font-size:14px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.uni-system-choose-location .list-item-detail{font-size:12px;color:gray;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}@media screen and (min-width: 800px){.uni-system-choose-location .map{top:0;height:100%}.uni-system-choose-location .map-move{bottom:10px;right:320px}.uni-system-choose-location .menu{top:calc(54px + var(--status-bar-height));left:auto;right:10px;width:300px;bottom:10px;max-height:600px;box-shadow:0 0 20px 5px rgba(0,0,0,.3)}}.uni-system-open-location{display:block;position:fixed;left:0;top:0;width:100%;height:100%;background:#f8f8f8;z-index:999}.uni-system-open-location .map{position:absolute;top:0;left:0;width:100%;bottom:80px;height:auto}.uni-system-open-location .info{position:absolute;bottom:0;left:0;width:100%;height:80px;background-color:#fff;padding:15px;box-sizing:border-box;line-height:1.5}.uni-system-open-location .info>.name{font-size:17px;color:#111}.uni-system-open-location .info>.address{font-size:14px;color:#666}.uni-system-open-location .info>.nav{position:absolute;top:50%;right:15px;width:50px;height:50px;border-radius:50%;margin-top:-25px;background-color:#007aff}.uni-system-open-location .info>.nav>svg{display:block;width:100%;height:100%;padding:10px;box-sizing:border-box}.uni-system-open-location .map-move{position:absolute;bottom:50px;right:10px;width:40px;height:40px;box-sizing:border-box;line-height:40px;background-color:#fff;border-radius:50%;pointer-events:auto;cursor:pointer;box-shadow:0 0 5px 1px rgba(0,0,0,.3)}.uni-system-open-location .map-move>svg{display:block;width:100%;height:100%;box-sizing:border-box;padding:8px}.uni-system-open-location .nav-btn-back{position:absolute;box-sizing:border-box;top:var(--status-bar-height);left:0;width:44px;height:44px;padding:6px;cursor:pointer}.uni-system-open-location .nav-btn-back>svg{display:block;width:100%;height:100%;border-radius:50%;background-color:rgba(0,0,0,.5);padding:3px;box-sizing:border-box}.uni-system-open-location .map-content{position:absolute;left:0;top:0;width:100%;bottom:0;overflow:hidden}.uni-system-open-location .map-content.fix-position{top:-74px;bottom:-44px}.uni-system-open-location .map-content>iframe{width:100%;height:100%;border:none}.uni-system-open-location .actTonav{position:absolute;right:16px;bottom:56px;width:60px;height:60px;border-radius:60px}.uni-system-open-location .nav-view{position:absolute;left:0;top:0;width:100%;height:100%;display:flex;flex-direction:column}.uni-system-open-location .nav-view-top-placeholder{width:100%;height:var(--status-bar-height);background-color:#fff}.uni-system-open-location .nav-view-frame{width:100%;flex:1}uni-movable-area{display:block;position:relative;width:10px;height:10px}uni-movable-area[hidden]{display:none}uni-movable-view{display:inline-block;width:10px;height:10px;top:0;left:0;position:absolute;cursor:grab}uni-movable-view[hidden]{display:none}uni-navigator{height:auto;width:auto;display:block;cursor:pointer}uni-navigator[hidden]{display:none}.navigator-hover{background-color:rgba(0,0,0,.1);opacity:.7}.navigator-wrap,.navigator-wrap:link,.navigator-wrap:visited,.navigator-wrap:hover,.navigator-wrap:active{text-decoration:none;color:inherit;cursor:pointer}uni-picker-view{display:block}.uni-picker-view-wrapper{display:flex;position:relative;overflow:hidden;height:100%}uni-picker-view[hidden]{display:none}uni-picker-view-column{flex:1;position:relative;height:100%;overflow:hidden}uni-picker-view-column[hidden]{display:none}.uni-picker-view-group{height:100%;overflow:hidden}.uni-picker-view-mask{transform:translateZ(0)}.uni-picker-view-indicator,.uni-picker-view-mask{position:absolute;left:0;width:100%;z-index:3;pointer-events:none}.uni-picker-view-mask{top:0;height:100%;margin:0 auto;background-image:linear-gradient(180deg,rgba(255,255,255,.95),rgba(255,255,255,.6)),linear-gradient(0deg,rgba(255,255,255,.95),rgba(255,255,255,.6));background-position:top,bottom;background-size:100% 102px;background-repeat:no-repeat;transform:translateZ(0)}.uni-picker-view-indicator{height:34px;top:50%;transform:translateY(-50%)}.uni-picker-view-content{position:absolute;top:0;left:0;width:100%;will-change:transform;padding:102px 0;cursor:pointer}.uni-picker-view-content>*{height:var(--picker-view-column-indicator-height);overflow:hidden}.uni-picker-view-indicator:before{top:0;border-top:1px solid #e5e5e5;transform-origin:0 0;transform:scaleY(.5)}.uni-picker-view-indicator:after{bottom:0;border-bottom:1px solid #e5e5e5;transform-origin:0 100%;transform:scaleY(.5)}.uni-picker-view-indicator:after,.uni-picker-view-indicator:before{content:" ";position:absolute;left:0;right:0;height:1px;color:#e5e5e5}@media (prefers-color-scheme: dark){.uni-picker-view-indicator:before{border-top-color:var(--UI-FG-3)}.uni-picker-view-indicator:after{border-bottom-color:var(--UI-FG-3)}.uni-picker-view-mask{background-image:linear-gradient(180deg,rgba(35,35,35,.95),rgba(35,35,35,.6)),linear-gradient(0deg,rgba(35,35,35,.95),rgba(35,35,35,.6))}}uni-progress{display:flex;align-items:center}uni-progress[hidden]{display:none}.uni-progress-bar{flex:1}.uni-progress-inner-bar{width:0;height:100%}.uni-progress-info{margin-top:0;margin-bottom:0;min-width:2em;margin-left:15px;font-size:16px}uni-radio{-webkit-tap-highlight-color:transparent;display:inline-block;cursor:pointer}uni-radio[hidden]{display:none}uni-radio[disabled]{cursor:not-allowed}.uni-radio-wrapper{display:inline-flex;align-items:center;vertical-align:middle}.uni-radio-input{-webkit-appearance:none;appearance:none;margin-right:5px;outline:0;border:1px solid #d1d1d1;background-color:#fff;border-radius:50%;width:22px;height:22px;position:relative}@media (hover: hover){uni-radio:not([disabled]) .uni-radio-input:hover{border-color:var(--HOVER-BD-COLOR, #007aff)!important}}.uni-radio-input svg{color:#fff;font-size:18px;position:absolute;top:50%;left:50%;transform:translate(-50%,-48%) scale(.73)}.uni-radio-input.uni-radio-input-disabled{background-color:#e1e1e1;border-color:#d1d1d1}.uni-radio-input.uni-radio-input-disabled svg{color:#adadad}uni-radio-group{display:block}uni-radio-group[hidden]{display:none}uni-scroll-view{display:block;width:100%}uni-scroll-view[hidden]{display:none}.uni-scroll-view{position:relative;-webkit-overflow-scrolling:touch;width:100%;height:100%;max-height:inherit}.uni-scroll-view-scrollbar-hidden::-webkit-scrollbar{display:none}.uni-scroll-view-scrollbar-hidden{-moz-scrollbars:none;scrollbar-width:none}.uni-scroll-view-content{width:100%;height:100%}.uni-scroll-view-refresher{position:relative;overflow:hidden;flex-shrink:0}.uni-scroll-view-refresher-container{position:absolute;width:100%;bottom:0;display:flex;flex-direction:column-reverse}.uni-scroll-view-refresh{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;flex-direction:row;justify-content:center;align-items:center}.uni-scroll-view-refresh-inner{display:flex;align-items:center;justify-content:center;line-height:0;width:40px;height:40px;border-radius:50%;background-color:#fff;box-shadow:0 1px 6px rgba(0,0,0,.118),0 1px 4px rgba(0,0,0,.118)}.uni-scroll-view-refresh__spinner{transform-origin:center center;animation:uni-scroll-view-refresh-rotate 2s linear infinite}.uni-scroll-view-refresh__spinner>circle{stroke:currentColor;stroke-linecap:round;animation:uni-scroll-view-refresh-dash 2s linear infinite}@keyframes uni-scroll-view-refresh-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes uni-scroll-view-refresh-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}uni-slider{margin:10px 18px;padding:0;display:block}uni-slider[hidden]{display:none}uni-slider .uni-slider-wrapper{display:flex;align-items:center;min-height:16px}uni-slider .uni-slider-tap-area{flex:1;padding:8px 0}uni-slider .uni-slider-handle-wrapper{position:relative;height:2px;border-radius:5px;background-color:#e9e9e9;cursor:pointer;transition:background-color .3s ease;-webkit-tap-highlight-color:transparent}uni-slider .uni-slider-track{height:100%;border-radius:6px;background-color:#007aff;transition:background-color .3s ease}uni-slider .uni-slider-handle,uni-slider .uni-slider-thumb{position:absolute;left:50%;top:50%;cursor:pointer;border-radius:50%;transition:border-color .3s ease}uni-slider .uni-slider-handle{width:28px;height:28px;margin-top:-14px;margin-left:-14px;background-color:transparent;z-index:3;cursor:grab}uni-slider .uni-slider-thumb{z-index:2;box-shadow:0 0 4px rgba(0,0,0,.2)}uni-slider .uni-slider-step{position:absolute;width:100%;height:2px;background:transparent;z-index:1}uni-slider .uni-slider-value{width:3ch;color:#888;font-size:14px;margin-left:1em}uni-slider .uni-slider-disabled .uni-slider-track{background-color:#ccc}uni-slider .uni-slider-disabled .uni-slider-thumb{background-color:#fff;border-color:#ccc}uni-swiper{display:block;height:150px}uni-swiper[hidden]{display:none}.uni-swiper-wrapper{overflow:hidden;position:relative;width:100%;height:100%;transform:translateZ(0)}.uni-swiper-slides{position:absolute;left:0;top:0;right:0;bottom:0}.uni-swiper-slide-frame{position:absolute;left:0;top:0;width:100%;height:100%;will-change:transform}.uni-swiper-dots{position:absolute;font-size:0}.uni-swiper-dots-horizontal{left:50%;bottom:10px;text-align:center;white-space:nowrap;transform:translate(-50%)}.uni-swiper-dots-horizontal .uni-swiper-dot{margin-right:8px}.uni-swiper-dots-horizontal .uni-swiper-dot:last-child{margin-right:0}.uni-swiper-dots-vertical{right:10px;top:50%;text-align:right;transform:translateY(-50%)}.uni-swiper-dots-vertical .uni-swiper-dot{display:block;margin-bottom:9px}.uni-swiper-dots-vertical .uni-swiper-dot:last-child{margin-bottom:0}.uni-swiper-dot{display:inline-block;width:8px;height:8px;cursor:pointer;transition-property:background-color;transition-timing-function:ease;background:rgba(0,0,0,.3);border-radius:50%}.uni-swiper-dot-active{background-color:#000}.uni-swiper-navigation{width:26px;height:26px;cursor:pointer;position:absolute;top:50%;margin-top:-13px;display:flex;align-items:center;transition:all .2s;border-radius:50%;opacity:1}.uni-swiper-navigation-disabled{opacity:.35;cursor:not-allowed}.uni-swiper-navigation-hide{opacity:0;cursor:auto;pointer-events:none}.uni-swiper-navigation-prev{left:10px}.uni-swiper-navigation-prev svg{margin-left:-1px;left:10px}.uni-swiper-navigation-prev.uni-swiper-navigation-vertical{top:18px;left:50%;margin-left:-13px}.uni-swiper-navigation-prev.uni-swiper-navigation-vertical svg{transform:rotate(90deg);margin-left:auto;margin-top:-2px}.uni-swiper-navigation-next{right:10px}.uni-swiper-navigation-next svg{transform:rotate(180deg)}.uni-swiper-navigation-next.uni-swiper-navigation-vertical{top:auto;bottom:5px;left:50%;margin-left:-13px}.uni-swiper-navigation-next.uni-swiper-navigation-vertical svg{margin-top:2px;transform:rotate(270deg)}uni-swiper-item{display:block;overflow:hidden;will-change:transform;position:absolute;width:100%;height:100%;cursor:grab}uni-swiper-item[hidden]{display:none}uni-switch{-webkit-tap-highlight-color:transparent;display:inline-block;cursor:pointer}uni-switch[hidden]{display:none}uni-switch[disabled]{cursor:not-allowed}uni-switch[disabled] .uni-switch-input{opacity:.7}.uni-switch-wrapper{display:inline-flex;align-items:center;vertical-align:middle}.uni-switch-input{-webkit-appearance:none;appearance:none;position:relative;width:52px;height:32px;margin-right:5px;border:1px solid #dfdfdf;outline:0;border-radius:16px;box-sizing:border-box;background-color:#dfdfdf;transition:background-color .1s,border .1s}.uni-switch-input:before{content:" ";position:absolute;top:0;left:0;width:50px;height:30px;border-radius:15px;background-color:#fdfdfd;transition:transform .3s}.uni-switch-input:after{content:" ";position:absolute;top:0;left:0;width:30px;height:30px;border-radius:15px;background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.4);transition:transform .3s}.uni-switch-input.uni-switch-input-checked{border-color:#007aff;background-color:#007aff}.uni-switch-input.uni-switch-input-checked:before{transform:scale(0)}.uni-switch-input.uni-switch-input-checked:after{transform:translate(20px)}uni-switch .uni-checkbox-input{margin-right:5px;-webkit-appearance:none;appearance:none;outline:0;border:1px solid #d1d1d1;background-color:#fff;border-radius:3px;width:22px;height:22px;position:relative;color:#007aff}uni-switch:not([disabled]) .uni-checkbox-input:hover{border-color:#007aff}uni-switch .uni-checkbox-input svg{fill:#007aff;font-size:22px;position:absolute;top:50%;left:50%;transform:translate(-50%,-48%) scale(.73)}.uni-checkbox-input.uni-checkbox-input-disabled{background-color:#e1e1e1}.uni-checkbox-input.uni-checkbox-input-disabled:before{color:#adadad}@media (prefers-color-scheme: dark){uni-switch .uni-switch-input{border-color:#3b3b3f}uni-switch .uni-switch-input,uni-switch .uni-switch-input:before{background-color:#3b3b3f}uni-switch .uni-switch-input:after{background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.4)}uni-switch .uni-checkbox-input{background-color:#2c2c2c;border:1px solid #656565}}uni-textarea{width:300px;height:150px;display:block;position:relative;font-size:16px;line-height:normal;white-space:pre-wrap;word-break:break-all}uni-textarea[hidden]{display:none}.uni-textarea-wrapper,.uni-textarea-placeholder,.uni-textarea-line,.uni-textarea-compute,.uni-textarea-textarea{outline:none;border:none;padding:0;margin:0;text-decoration:inherit}.uni-textarea-wrapper{display:block;position:relative;width:100%;height:100%;min-height:inherit;overflow-y:hidden}.uni-textarea-placeholder,.uni-textarea-line,.uni-textarea-compute,.uni-textarea-textarea{position:absolute;width:100%;height:100%;left:0;top:0;white-space:inherit;word-break:inherit}.uni-textarea-placeholder{color:gray;overflow:hidden}.uni-textarea-line,.uni-textarea-compute{visibility:hidden;height:auto}.uni-textarea-line{width:1em}.uni-textarea-textarea{resize:none;background:none;color:inherit;opacity:1;font:inherit;line-height:inherit;letter-spacing:inherit;text-align:inherit;text-indent:inherit;text-transform:inherit;text-shadow:inherit}.uni-textarea-textarea-fix-margin{width:auto;right:0;margin:0 -3px}.uni-textarea-textarea:disabled{-webkit-text-fill-color:currentcolor}uni-video{width:300px;height:225px;display:inline-block;line-height:0;overflow:hidden;position:relative}uni-video[hidden]{display:none}.uni-video-container{width:100%;height:100%;position:absolute;top:0;left:0;overflow:hidden;background-color:#000}.uni-video-slot{position:absolute;top:0;width:100%;height:100%;overflow:hidden;pointer-events:none}uni-web-view{display:inline-block;position:absolute;left:0;right:0;top:0;bottom:0}
  2. *,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;} :root { --color-primary-50: 230,244,241;--color-primary-100: 204,232,227;--color-primary-200: 154,209,198;--color-primary-300: 103,187,170;--color-primary-400: 53,164,141;--color-primary-500: 2,141,113;--color-primary-600: 2,113,90;--color-primary-700: 1,85,68;--color-primary-800: 1,56,45;--color-primary-900: 0,28,23;--color-primary-950: 0,14,11;--color-primary: 2,141,113; } .i-carbon-application{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 18H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2M6 6v10h10V6zm20 6v4h-4v-4zm0-2h-4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2m0 12v4h-4v-4zm0-2h-4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2m-10 2v4h-4v-4zm0-2h-4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-automatic{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M26 16h-4a2 2 0 0 0-2 2v12h2v-5h4v5h2V18a2 2 0 0 0-2-2m-4 7v-5h4v5zm-6 4a10.99 10.99 0 0 1-9.216-5H12v-2H4v8h2v-3.685A13.02 13.02 0 0 0 16 29zm4-17h5.216A10.997 10.997 0 0 0 5 16H3a13.005 13.005 0 0 1 23-8.315V4h2v8h-8z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-calendar{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M26 4h-4V2h-2v2h-8V2h-2v2H6c-1.1 0-2 .9-2 2v20c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 22H6V12h20zm0-16H6V6h4v2h2V6h8v2h2V6h4z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-chat{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17.74 30L16 29l4-7h6a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9v2H6a4 4 0 0 1-4-4V8a4 4 0 0 1 4-4h20a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4h-4.84Z'/%3E%3Cpath fill='currentColor' d='M8 10h16v2H8zm0 6h10v2H8z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-checkmark{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m13 24l-9-9l1.414-1.414L13 21.171L26.586 7.586L28 9z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-checkmark-filled{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 2a14 14 0 1 0 14 14A14 14 0 0 0 16 2m-2 19.59l-5-5L10.59 15L14 18.41L21.41 11l1.596 1.586Z'/%3E%3Cpath fill='none' d='m14 21.591l-5-5L10.591 15L14 18.409L21.41 11l1.595 1.585z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-chevron-right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M22 16L12 26l-1.4-1.4l8.6-8.6l-8.6-8.6L12 6z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-clean{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M26 20h-6v-2h6zm4 8h-6v-2h6zm-2-4h-6v-2h6z'/%3E%3Cpath fill='currentColor' d='M17.003 20a4.9 4.9 0 0 0-2.404-4.173L22 3l-1.73-1l-7.577 13.126a5.7 5.7 0 0 0-5.243 1.503C3.706 20.24 3.996 28.682 4.01 29.04a1 1 0 0 0 1 .96h14.991a1 1 0 0 0 .6-1.8c-3.54-2.656-3.598-8.146-3.598-8.2m-5.073-3.003A3.11 3.11 0 0 1 15.004 20c0 .038.002.208.017.469l-5.9-2.624a3.8 3.8 0 0 1 2.809-.848M15.45 28A5.2 5.2 0 0 1 14 25h-2a6.5 6.5 0 0 0 .968 3h-2.223A16.6 16.6 0 0 1 10 24H8a17.3 17.3 0 0 0 .665 4H6c.031-1.836.29-5.892 1.803-8.553l7.533 3.35A13 13 0 0 0 17.596 28Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-close{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17.414 16L24 9.414L22.586 8L16 14.586L9.414 8L8 9.414L14.586 16L8 22.586L9.414 24L16 17.414L22.586 24L24 22.586z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-code{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m31 16l-7 7l-1.41-1.41L28.17 16l-5.58-5.59L24 9zM1 16l7-7l1.41 1.41L3.83 16l5.58 5.59L8 23zm11.42 9.484L17.64 6l1.932.517L14.352 26z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-color-palette{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Ccircle cx='10' cy='12' r='2' fill='currentColor'/%3E%3Ccircle cx='16' cy='9' r='2' fill='currentColor'/%3E%3Ccircle cx='22' cy='12' r='2' fill='currentColor'/%3E%3Ccircle cx='23' cy='18' r='2' fill='currentColor'/%3E%3Ccircle cx='19' cy='23' r='2' fill='currentColor'/%3E%3Cpath fill='currentColor' d='M16.54 2A14 14 0 0 0 2 16a4.82 4.82 0 0 0 6.09 4.65l1.12-.31a3 3 0 0 1 3.79 2.9V27a3 3 0 0 0 3 3a14 14 0 0 0 14-14.54A14.05 14.05 0 0 0 16.54 2m8.11 22.31A11.93 11.93 0 0 1 16 28a1 1 0 0 1-1-1v-3.76a5 5 0 0 0-5-5a5 5 0 0 0-1.33.18l-1.12.31A2.82 2.82 0 0 1 4 16A12 12 0 0 1 16.47 4A12.18 12.18 0 0 1 28 15.53a11.9 11.9 0 0 1-3.35 8.79Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-customer-service{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M26 30h-2v-5a5.006 5.006 0 0 0-5-5h-6a5.006 5.006 0 0 0-5 5v5H6v-5a7.01 7.01 0 0 1 7-7h6a7.01 7.01 0 0 1 7 7zM22 6v4c0 1.103-.897 2-2 2h-1a1 1 0 0 0 0 2h1c2.206 0 4-1.794 4-4V6zm-6 10c-3.86 0-7-3.14-7-7s3.14-7 7-7c1.989 0 3.89.85 5.217 2.333l-1.49 1.334A5 5 0 0 0 16 4c-2.757 0-5 2.243-5 5s2.243 5 5 5z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-data-base{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M24 3H8a2 2 0 0 0-2 2v22a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 2v6H8V5ZM8 19v-6h16v6Zm0 8v-6h16v6Z'/%3E%3Ccircle cx='11' cy='8' r='1' fill='currentColor'/%3E%3Ccircle cx='11' cy='16' r='1' fill='currentColor'/%3E%3Ccircle cx='11' cy='24' r='1' fill='currentColor'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-data-volume{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M30 20h-4v2h4v2h-3a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h5v-8c0-1.103-.897-2-2-2m0 8h-3v-2h3zm-6-6v-2h-3v-2h-2v2h-2v2h2v6c0 1.103.898 2 2 2h3v-2h-3v-6zm-10-2h-4v2h4v2h-3a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h5v-8c0-1.103-.897-2-2-2m0 8h-3v-2h3zM5 16v4H2c-1.102 0-2 .897-2 2v6c0 1.103.898 2 2 2h5V16zm-3 6h3v6H2zm2-8V5h7.586l4 4H28v8h2V9a2 2 0 0 0-2-2H16.414L13 3.586A2 2 0 0 0 11.586 3H4a2 2 0 0 0-2 2v9z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-document{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m25.7 9.3l-7-7c-.2-.2-.4-.3-.7-.3H8c-1.1 0-2 .9-2 2v24c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V10c0-.3-.1-.5-.3-.7M18 4.4l5.6 5.6H18zM24 28H8V4h8v6c0 1.1.9 2 2 2h6z'/%3E%3Cpath fill='currentColor' d='M10 22h12v2H10zm0-6h12v2H10z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-document-blank{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m25.7 9.3l-7-7A.9.9 0 0 0 18 2H8a2.006 2.006 0 0 0-2 2v24a2.006 2.006 0 0 0 2 2h16a2.006 2.006 0 0 0 2-2V10a.9.9 0 0 0-.3-.7M18 4.4l5.6 5.6H18ZM24 28H8V4h8v6a2.006 2.006 0 0 0 2 2h6Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-earth{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 2a14 14 0 1 0 14 14A14.016 14.016 0 0 0 16 2m5 3.106a12 12 0 0 1 2.916 1.899L23.503 8H21Zm-7.622 22.597A11.976 11.976 0 0 1 8.116 6.976L9.465 9h3.342l-1.5 4H7.28l-1.382 4.148L8.465 21h5l1.432 2.148ZM16 28c-.203 0-.402-.02-.602-.03l1.396-4.19a1.99 1.99 0 0 0-.233-1.741l-1.432-2.148A2 2 0 0 0 13.465 19h-3.93l-1.432-2.148L8.721 15H11v2h2v-2.819l2.936-7.83l-1.872-.702L13.557 7h-3.022l-.807-1.21A11.8 11.8 0 0 1 19 4.394V8a2.003 2.003 0 0 0 2 2h2.586A2 2 0 0 0 25 9.414l.14-.14l.282-.68A12 12 0 0 1 27.3 12h-4.701a1.99 1.99 0 0 0-1.972 1.665l-.597 3.441a1.99 1.99 0 0 0 .991 2.086l2.165 1.464l1.458 3.646A11.96 11.96 0 0 1 16 28m8.815-8.656L22.1 17.509l-.1-.06l.599-3.449h5.22a11.74 11.74 0 0 1-1.744 8.495Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-edit{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M2 26h28v2H2zM25.4 9c.8-.8.8-2 0-2.8l-3.6-3.6c-.8-.8-2-.8-2.8 0l-15 15V24h6.4zm-5-5L24 7.6l-3 3L17.4 7zM6 22v-3.6l10-10l3.6 3.6l-10 10z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-education{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M26 30h-2v-3a5.006 5.006 0 0 0-5-5h-6a5.006 5.006 0 0 0-5 5v3H6v-3a7.01 7.01 0 0 1 7-7h6a7.01 7.01 0 0 1 7 7zM5 6a1 1 0 0 0-1 1v9h2V7a1 1 0 0 0-1-1'/%3E%3Cpath fill='currentColor' d='M4 2v2h5v7a7 7 0 0 0 14 0V4h5V2Zm7 2h10v3H11Zm5 12a5 5 0 0 1-5-5V9h10v2a5 5 0 0 1-5 5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-email{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M28 6H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h24a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2m-2.2 2L16 14.78L6.2 8ZM4 24V8.91l11.43 7.91a1 1 0 0 0 1.14 0L28 8.91V24Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-fade{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M8.24 25.14L7 26.67a13.8 13.8 0 0 0 4.18 2.44l.69-1.87a12 12 0 0 1-3.63-2.1M4.19 18l-2 .41A14.1 14.1 0 0 0 3.86 23l1.73-1a12.4 12.4 0 0 1-1.4-4m7.63-13.24l-.69-1.87A13.8 13.8 0 0 0 7 5.33l1.24 1.53a12 12 0 0 1 3.58-2.1M5.59 10L3.86 9a14.4 14.4 0 0 0-1.64 4.59l2 .34A12 12 0 0 1 5.59 10M16 2v2a12 12 0 0 1 0 24v2a14 14 0 0 0 0-28'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-favorite{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M22.45 6a5.47 5.47 0 0 1 3.91 1.64a5.7 5.7 0 0 1 0 8L16 26.13L5.64 15.64a5.7 5.7 0 0 1 0-8a5.48 5.48 0 0 1 7.82 0l2.54 2.6l2.53-2.58A5.44 5.44 0 0 1 22.45 6m0-2a7.47 7.47 0 0 0-5.34 2.24L16 7.36l-1.11-1.12a7.49 7.49 0 0 0-10.68 0a7.72 7.72 0 0 0 0 10.82L16 29l11.79-11.94a7.72 7.72 0 0 0 0-10.82A7.5 7.5 0 0 0 22.45 4'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-favorite-filled{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M22.5 4c-2 0-3.9.8-5.3 2.2L16 7.4l-1.1-1.1c-2.9-3-7.7-3-10.6-.1l-.1.1c-3 3-3 7.8 0 10.8L16 29l11.8-11.9c3-3 3-7.8 0-10.8C26.4 4.8 24.5 4 22.5 4'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-fingerprint-recognition{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M7 5.21a.77.77 0 0 1-.46-1.38A15.46 15.46 0 0 1 16 1c2.66 0 6.48.45 9.5 2.62a.77.77 0 0 1 .18 1.07a.78.78 0 0 1-1.08.17A15 15 0 0 0 16 2.53a14 14 0 0 0-8.5 2.52a.74.74 0 0 1-.5.16'/%3E%3Cpath fill='currentColor' d='M28.23 12.26a.78.78 0 0 1-.63-.33C25.87 9.49 22.78 6.24 16 6.24a14 14 0 0 0-11.63 5.7a.77.77 0 0 1-1.07.17a.76.76 0 0 1-.15-1.11A15.54 15.54 0 0 1 16 4.71c5.61 0 9.81 2.08 12.84 6.34a.77.77 0 0 1-.19 1.07a.8.8 0 0 1-.42.14'/%3E%3Cpath fill='currentColor' d='M12.28 31a.78.78 0 0 1-.72-.49a.75.75 0 0 1 .44-1c4.37-1.68 7-5.12 7-9.21a2.8 2.8 0 0 0-3-3c-1.86 0-2.76 1-3 3.35a4.27 4.27 0 0 1-4.52 3.83a4.27 4.27 0 0 1-4.32-4.59A11.71 11.71 0 0 1 16 8.39a12 12 0 0 1 12 11.93a18.7 18.7 0 0 1-1.39 6.5a.78.78 0 0 1-1 .41a.76.76 0 0 1-.41-1a17.3 17.3 0 0 0 1.27-5.91A10.45 10.45 0 0 0 16 9.92a10.18 10.18 0 0 0-10.38 10a2.77 2.77 0 0 0 2.79 3.06a2.74 2.74 0 0 0 3-2.48c.36-3.11 1.89-4.69 4.56-4.69a4.31 4.31 0 0 1 4.52 4.56c0 4.74-3 8.72-8 10.63a1 1 0 0 1-.21 0'/%3E%3Cpath fill='currentColor' d='M19.77 30.28a.8.8 0 0 1-.52-.2a.76.76 0 0 1 0-1.08a12.63 12.63 0 0 0 3.54-8.68c0-1.56-.48-6.65-6.7-6.65a6.83 6.83 0 0 0-4.94 1.87A6.17 6.17 0 0 0 9.32 20a.77.77 0 0 1-.77.76a.76.76 0 0 1-.77-.76A7.73 7.73 0 0 1 10 14.46a8.34 8.34 0 0 1 6-2.32c6.08 0 8.24 4.4 8.24 8.18a14.1 14.1 0 0 1-3.9 9.68a.75.75 0 0 1-.57.28'/%3E%3Cpath fill='currentColor' d='M8.66 27.74a14 14 0 0 1-1.56-.09a.76.76 0 1 1 .17-1.52c2.49.28 4.45-.16 5.84-1.32a6.37 6.37 0 0 0 2.12-4.53a.75.75 0 0 1 .82-.71a.78.78 0 0 1 .72.81A7.9 7.9 0 0 1 14.09 26a8.2 8.2 0 0 1-5.43 1.74'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-gender-male{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M18 4v2h6.586l-7.688 7.689a8.028 8.028 0 1 0 1.414 1.414L26 7.414V14h2V4Zm-6 22a6 6 0 1 1 6-6a6.007 6.007 0 0 1-6 6'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-help{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 2a14 14 0 1 0 14 14A14 14 0 0 0 16 2m0 26a12 12 0 1 1 12-12a12 12 0 0 1-12 12'/%3E%3Ccircle cx='16' cy='23.5' r='1.5' fill='currentColor'/%3E%3Cpath fill='currentColor' d='M17 8h-1.5a4.49 4.49 0 0 0-4.5 4.5v.5h2v-.5a2.5 2.5 0 0 1 2.5-2.5H17a2.5 2.5 0 0 1 0 5h-2v4.5h2V17a4.5 4.5 0 0 0 0-9'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-identification{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M28 6v20H4V6zm0-2H4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h24a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2'/%3E%3Cpath fill='currentColor' d='M6 10h7v2H6zm0 4h4v2H6zm17 4h-6a3 3 0 0 0-3 3v2h2v-2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2h2v-2a3 3 0 0 0-3-3m-3-1a4 4 0 1 0-4-4a4 4 0 0 0 4 4m0-6a2 2 0 1 1-2 2a2 2 0 0 1 2-2'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-information{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17 22v-8h-4v2h2v6h-3v2h8v-2zM16 8a1.5 1.5 0 1 0 1.5 1.5A1.5 1.5 0 0 0 16 8'/%3E%3Cpath fill='currentColor' d='M16 30a14 14 0 1 1 14-14a14 14 0 0 1-14 14m0-26a12 12 0 1 0 12 12A12 12 0 0 0 16 4'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-list{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M10 6h18v2H10zm0 18h18v2H10zm0-9h18v2H10zm-6 0h2v2H4zm0-9h2v2H4zm0 18h2v2H4z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-location{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 18a5 5 0 1 1 5-5a5.006 5.006 0 0 1-5 5m0-8a3 3 0 1 0 3 3a3.003 3.003 0 0 0-3-3'/%3E%3Cpath fill='currentColor' d='m16 30l-8.436-9.949a35 35 0 0 1-.348-.451A10.9 10.9 0 0 1 5 13a11 11 0 0 1 22 0a10.9 10.9 0 0 1-2.215 6.597l-.001.003s-.3.394-.345.447ZM8.813 18.395s.233.308.286.374L16 26.908l6.91-8.15c.044-.055.278-.365.279-.366A8.9 8.9 0 0 0 25 13a9 9 0 1 0-18 0a8.9 8.9 0 0 0 1.813 5.395'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-locked{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M24 14h-2V8a6 6 0 0 0-12 0v6H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V16a2 2 0 0 0-2-2M12 8a4 4 0 0 1 8 0v6h-8Zm12 20H8V16h16Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-logo-wechat{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M27.086 24.78A6.62 6.62 0 0 0 30 19.465c0-3.88-3.776-7.027-8.434-7.027s-8.434 3.147-8.434 7.027s3.777 7.028 8.434 7.028a10 10 0 0 0 2.754-.385l.247-.037a.9.9 0 0 1 .448.13l1.847 1.066l.162.053a.28.28 0 0 0 .281-.282l-.045-.205l-.38-1.417l-.03-.18a.56.56 0 0 1 .236-.458M12.12 4.68C6.53 4.68 2 8.455 2 13.114a7.94 7.94 0 0 0 3.497 6.374a.67.67 0 0 1 .283.55l-.035.215l-.456 1.701l-.055.246a.34.34 0 0 0 .337.338l.196-.063l2.216-1.28a1.06 1.06 0 0 1 .536-.155l.298.044a12 12 0 0 0 3.304.464l.555-.014a6.5 6.5 0 0 1-.34-2.067c0-4.247 4.133-7.691 9.23-7.691l.55.014c-.762-4.029-4.947-7.11-9.995-7.11m6.633 13.663a1.125 1.125 0 1 1 1.125-1.125a1.124 1.124 0 0 1-1.125 1.125m5.624 0a1.125 1.125 0 1 1 1.123-1.125a1.125 1.125 0 0 1-1.123 1.125m-15.631-6.58a1.35 1.35 0 1 1 1.35-1.348a1.35 1.35 0 0 1-1.35 1.349m6.747 0a1.35 1.35 0 1 1 1.35-1.348a1.35 1.35 0 0 1-1.35 1.349'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-map{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m16 24l-6.09-8.6A8.14 8.14 0 0 1 16 2a8.08 8.08 0 0 1 8 8.13a8.2 8.2 0 0 1-1.8 5.13Zm0-20a6.07 6.07 0 0 0-6 6.13a6.2 6.2 0 0 0 1.49 4L16 20.52L20.63 14A6.24 6.24 0 0 0 22 10.13A6.07 6.07 0 0 0 16 4'/%3E%3Ccircle cx='16' cy='9' r='2' fill='currentColor'/%3E%3Cpath fill='currentColor' d='M28 12h-2v2h2v14H4V14h2v-2H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h24a2 2 0 0 0 2-2V14a2 2 0 0 0-2-2'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-mobile{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M22 4H10a2 2 0 0 0-2 2v22a2 2 0 0 0 2 2h12a2.003 2.003 0 0 0 2-2V6a2 2 0 0 0-2-2m0 2v2H10V6ZM10 28V10h12v18Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-moon{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M13.503 5.414a15.076 15.076 0 0 0 11.593 18.194a11.1 11.1 0 0 1-7.975 3.39c-.138 0-.278.005-.418 0a11.094 11.094 0 0 1-3.2-21.584M14.98 3a1 1 0 0 0-.175.016a13.096 13.096 0 0 0 1.825 25.981c.164.006.328 0 .49 0a13.07 13.07 0 0 0 10.703-5.555a1.01 1.01 0 0 0-.783-1.565A13.08 13.08 0 0 1 15.89 4.38A1.015 1.015 0 0 0 14.98 3'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-notification{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M28.707 19.293L26 16.586V13a10.014 10.014 0 0 0-9-9.95V1h-2v2.05A10.014 10.014 0 0 0 6 13v3.586l-2.707 2.707A1 1 0 0 0 3 20v3a1 1 0 0 0 1 1h7v.777a5.15 5.15 0 0 0 4.5 5.199A5.006 5.006 0 0 0 21 25v-1h7a1 1 0 0 0 1-1v-3a1 1 0 0 0-.293-.707M19 25a3 3 0 0 1-6 0v-1h6Zm8-3H5v-1.586l2.707-2.707A1 1 0 0 0 8 17v-4a8 8 0 0 1 16 0v4a1 1 0 0 0 .293.707L27 20.414Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-notification-new{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M26 16.586V14h-2v3a1 1 0 0 0 .293.707L27 20.414V22H5v-1.586l2.707-2.707A1 1 0 0 0 8 17v-4a7.985 7.985 0 0 1 12-6.917V3.846a9.9 9.9 0 0 0-3-.796V1h-2v2.05A10.014 10.014 0 0 0 6 13v3.586l-2.707 2.707A1 1 0 0 0 3 20v3a1 1 0 0 0 1 1h7v1a5 5 0 0 0 10 0v-1h7a1 1 0 0 0 1-1v-3a1 1 0 0 0-.293-.707ZM19 25a3 3 0 0 1-6 0v-1h6Z'/%3E%3Ccircle cx='26' cy='8' r='4' fill='currentColor'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-overflow-menu-horizontal{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Ccircle cx='8' cy='16' r='2' fill='currentColor'/%3E%3Ccircle cx='16' cy='16' r='2' fill='currentColor'/%3E%3Ccircle cx='24' cy='16' r='2' fill='currentColor'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-paint-brush{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M28.83 23.17L23 17.33V13a1 1 0 0 0-.29-.71l-10-10a1 1 0 0 0-1.42 0l-9 9a1 1 0 0 0 0 1.42l10 10A1 1 0 0 0 13 23h4.34l5.83 5.84a4 4 0 0 0 5.66-5.66ZM6 10.41l2.29 2.3l1.42-1.42L7.41 9L9 7.41l4.29 4.3l1.42-1.42L10.41 6L12 4.41L18.59 11L11 18.59L4.41 12Zm21.41 17a2 2 0 0 1-2.82 0l-6.13-6.12a1.8 1.8 0 0 0-.71-.29h-4.34l-1-1L20 12.41l1 1v4.34a1 1 0 0 0 .29.7l6.12 6.14a2 2 0 0 1 0 2.82'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-password{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M21 2a8.998 8.998 0 0 0-8.612 11.612L2 24v6h6l10.388-10.388A9 9 0 1 0 21 2m0 16a7 7 0 0 1-2.032-.302l-1.147-.348l-.847.847l-3.181 3.181L12.414 20L11 21.414l1.379 1.379l-1.586 1.586L9.414 23L8 24.414l1.379 1.379L7.172 28H4v-3.172l9.802-9.802l.848-.847l-.348-1.147A7 7 0 1 1 21 18'/%3E%3Ccircle cx='22' cy='10' r='2' fill='currentColor'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-phone{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M26 29h-.17C6.18 27.87 3.39 11.29 3 6.23A3 3 0 0 1 5.76 3h5.51a2 2 0 0 1 1.86 1.26L14.65 8a2 2 0 0 1-.44 2.16l-2.13 2.15a9.37 9.37 0 0 0 7.58 7.6l2.17-2.15a2 2 0 0 1 2.17-.41l3.77 1.51A2 2 0 0 1 29 20.72V26a3 3 0 0 1-3 3M6 5a1 1 0 0 0-1 1v.08C5.46 12 8.41 26 25.94 27a1 1 0 0 0 1.06-.94v-5.34l-3.77-1.51l-2.87 2.85l-.48-.06c-8.7-1.09-9.88-9.79-9.88-9.88l-.06-.48l2.84-2.87L11.28 5Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-reset{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M18 28A12 12 0 1 0 6 16v6.2l-3.6-3.6L1 20l6 6l6-6l-1.4-1.4L8 22.2V16a10 10 0 1 1 10 10Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-router{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m21 7l-5-5l-5 5l1.409 1.419L15 5.847V13h2V5.794l2.591 2.625zm0 18l-5 5l-5-5l1.409-1.419L15 26.153V19h2v7.206l2.591-2.625zm3-14l-5 5l5 5l1.419-1.409L22.847 17H30v-2h-7.206l2.625-2.591zM8 11l5 5l-5 5l-1.419-1.409L9.153 17H2v-2h7.206l-2.625-2.591z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-save{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m27.71 9.29l-5-5A1 1 0 0 0 22 4H6a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V10a1 1 0 0 0-.29-.71M12 6h8v4h-8Zm8 20h-8v-8h8Zm2 0v-8a2 2 0 0 0-2-2h-8a2 2 0 0 0-2 2v8H6V6h4v4a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V6.41l4 4V26Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-security{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M14 16.59L11.41 14L10 15.41l4 4l8-8L20.59 10z'/%3E%3Cpath fill='currentColor' d='m16 30l-6.176-3.293A10.98 10.98 0 0 1 4 17V4a2 2 0 0 1 2-2h20a2 2 0 0 1 2 2v13a10.98 10.98 0 0 1-5.824 9.707ZM6 4v13a8.99 8.99 0 0 0 4.766 7.942L16 27.733l5.234-2.79A8.99 8.99 0 0 0 26 17V4Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-send{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m27.45 15.11l-22-11a1 1 0 0 0-1.08.12a1 1 0 0 0-.33 1L7 16L4 26.74A1 1 0 0 0 5 28a1 1 0 0 0 .45-.11l22-11a1 1 0 0 0 0-1.78m-20.9 10L8.76 17H18v-2H8.76L6.55 6.89L24.76 16Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-settings{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M27 16.76v-1.53l1.92-1.68A2 2 0 0 0 29.3 11l-2.36-4a2 2 0 0 0-1.73-1a2 2 0 0 0-.64.1l-2.43.82a11 11 0 0 0-1.31-.75l-.51-2.52a2 2 0 0 0-2-1.61h-4.68a2 2 0 0 0-2 1.61l-.51 2.52a11.5 11.5 0 0 0-1.32.75l-2.38-.86A2 2 0 0 0 6.79 6a2 2 0 0 0-1.73 1L2.7 11a2 2 0 0 0 .41 2.51L5 15.24v1.53l-1.89 1.68A2 2 0 0 0 2.7 21l2.36 4a2 2 0 0 0 1.73 1a2 2 0 0 0 .64-.1l2.43-.82a11 11 0 0 0 1.31.75l.51 2.52a2 2 0 0 0 2 1.61h4.72a2 2 0 0 0 2-1.61l.51-2.52a11.5 11.5 0 0 0 1.32-.75l2.42.82a2 2 0 0 0 .64.1a2 2 0 0 0 1.73-1l2.28-4a2 2 0 0 0-.41-2.51ZM25.21 24l-3.43-1.16a8.9 8.9 0 0 1-2.71 1.57L18.36 28h-4.72l-.71-3.55a9.4 9.4 0 0 1-2.7-1.57L6.79 24l-2.36-4l2.72-2.4a8.9 8.9 0 0 1 0-3.13L4.43 12l2.36-4l3.43 1.16a8.9 8.9 0 0 1 2.71-1.57L13.64 4h4.72l.71 3.55a9.4 9.4 0 0 1 2.7 1.57L25.21 8l2.36 4l-2.72 2.4a8.9 8.9 0 0 1 0 3.13L27.57 20Z'/%3E%3Cpath fill='currentColor' d='M16 22a6 6 0 1 1 6-6a5.94 5.94 0 0 1-6 6m0-10a3.91 3.91 0 0 0-4 4a3.91 3.91 0 0 0 4 4a3.91 3.91 0 0 0 4-4a3.91 3.91 0 0 0-4-4'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-share{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M23 20a5 5 0 0 0-3.89 1.89l-7.31-4.57a4.46 4.46 0 0 0 0-2.64l7.31-4.57A5 5 0 1 0 18 7a4.8 4.8 0 0 0 .2 1.32l-7.31 4.57a5 5 0 1 0 0 6.22l7.31 4.57A4.8 4.8 0 0 0 18 25a5 5 0 1 0 5-5m0-16a3 3 0 1 1-3 3a3 3 0 0 1 3-3M7 19a3 3 0 1 1 3-3a3 3 0 0 1-3 3m16 9a3 3 0 1 1 3-3a3 3 0 0 1-3 3'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-text-font{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M25 12h-5v2h5a1 1 0 0 1 1 1v2h-4a3.003 3.003 0 0 0-3 3v1a3.003 3.003 0 0 0 3 3h6v-9a3.003 3.003 0 0 0-3-3m-3 10a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h4v3zm-6 2h2L12 7h-2L4 24h2l1.694-5h6.613zm-7.629-7l2.497-7.371h.266L13.63 17z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-user{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 4a5 5 0 1 1-5 5a5 5 0 0 1 5-5m0-2a7 7 0 1 0 7 7a7 7 0 0 0-7-7m10 28h-2v-5a5 5 0 0 0-5-5h-6a5 5 0 0 0-5 5v5H6v-5a7 7 0 0 1 7-7h6a7 7 0 0 1 7 7z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-user-identification{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M22 11h4a1 1 0 0 1 1 1v2h-6v-2a1 1 0 0 1 1-1'/%3E%3Ccircle cx='24' cy='8' r='2' fill='currentColor'/%3E%3Cpath fill='currentColor' d='M30 18H18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2.003 2.003 0 0 1-2 2M18 4v12h12.001L30 4zm-3 26h-2v-4a2.947 2.947 0 0 0-3-3H6a2.947 2.947 0 0 0-3 3v4H1v-4a4.95 4.95 0 0 1 5-5h4a4.95 4.95 0 0 1 5 5zM8 11a3 3 0 0 1 0 6a3 3 0 0 1 0-6m0-2a5 5 0 0 0 0 10A5 5 0 0 0 8 9'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-video{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M21 26H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h17a2 2 0 0 1 2 2v4.06l5.42-3.87A1 1 0 0 1 30 9v14a1 1 0 0 1-1.58.81L23 19.94V24a2 2 0 0 1-2 2M4 8v16h17v-6a1 1 0 0 1 1.58-.81L28 21.06V10.94l-5.42 3.87A1 1 0 0 1 21 14V8Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-view{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M30.94 15.66A16.69 16.69 0 0 0 16 5A16.69 16.69 0 0 0 1.06 15.66a1 1 0 0 0 0 .68A16.69 16.69 0 0 0 16 27a16.69 16.69 0 0 0 14.94-10.66a1 1 0 0 0 0-.68M16 25c-5.3 0-10.9-3.93-12.93-9C5.1 10.93 10.7 7 16 7s10.9 3.93 12.93 9C26.9 21.07 21.3 25 16 25'/%3E%3Cpath fill='currentColor' d='M16 10a6 6 0 1 0 6 6a6 6 0 0 0-6-6m0 10a4 4 0 1 1 4-4a4 4 0 0 1-4 4'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.i-carbon-volume-up{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m27.16 8.08l-1.53 1.29a10 10 0 0 1-.29 13.23l1.47 1.4a12 12 0 0 0 .35-15.88Z'/%3E%3Cpath fill='currentColor' d='M21.58 12a6 6 0 0 1-.18 7.94l1.47 1.36a8 8 0 0 0 .23-10.59zM18 30a1 1 0 0 1-.71-.3L9.67 22H3a1 1 0 0 1-1-1V11a1 1 0 0 1 1-1h6.67l7.62-7.7a1 1 0 0 1 1.41 0a1 1 0 0 1 .3.7v26a1 1 0 0 1-1 1M4 20h6.08a1 1 0 0 1 .71.3L17 26.57V5.43l-6.21 6.27a1 1 0 0 1-.71.3H4z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}.container{width:100%;}.inset-0{top:0;bottom:0;left:0;right:0;}@media (min-width: 640px){.container{max-width:640px;}}@media (min-width: 768px){.container{max-width:768px;}}@media (min-width: 1024px){.container{max-width:1024px;}}@media (min-width: 1280px){.container{max-width:1280px;}}@media (min-width: 1536px){.container{max-width:1536px;}}.pointer-events-none{pointer-events:none;}.visible{visibility:visible;}.absolute{position:absolute;}.fixed,.pos-fixed{position:fixed;}.relative{position:relative;}.static{position:static;}.-inset-2{inset:-0.5rem;}.bottom-0{bottom:0;}.bottom-4{bottom:1rem;}.left-0{left:0;}.left-1\/2{left:50%;}.right-0{right:0;}.-right-10{right:-2.5rem;}.right-16{right:4rem;}.right-20{right:5rem;}.-right-8{right:-2rem;}.top-0{top:0;}.-top-10{top:-2.5rem;}.-top-8{top:-2rem;}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2;}.z-10{z-index:10;}.z-20{z-index:20;}.grid{display:grid;}.mx-3{margin-left:0.75rem;margin-right:0.75rem;}.mx-5{margin-left:1.25rem;margin-right:1.25rem;}.m-r-10{margin-right:2.5rem;}.mb-1{margin-bottom:0.25rem;}.mb-10{margin-bottom:2.5rem;}.mb-2{margin-bottom:0.5rem;}.mb-3{margin-bottom:0.75rem;}.mb-4{margin-bottom:1rem;}.mb-5{margin-bottom:1.25rem;}.mb-6{margin-bottom:1.5rem;}.mb-8{margin-bottom:2rem;}.ml-1\.5{margin-left:0.375rem;}.ml-2{margin-left:0.5rem;}.ml-3{margin-left:0.75rem;}.ml-4{margin-left:1rem;}.mr-1{margin-right:0.25rem;}.mr-2{margin-right:0.5rem;}.mt-0\.5{margin-top:0.125rem;}.mt-1{margin-top:0.25rem;}.mt-2{margin-top:0.5rem;}.mt-3{margin-top:0.75rem;}.-mt-4{margin-top:-1rem;}.mt-4,.uni-mp\:mt-4-pass{margin-top:1rem;}.mt-5{margin-top:1.25rem;}.mt-6{margin-top:1.5rem;}.mt-auto{margin-top:auto;}.inline{display:inline;}.block{display:block;}.inline-block{display:inline-block;}.list-item{display:list-item;}.hidden{display:none;}.size-16{width:4rem;height:4rem;}.size-5{width:1.25rem;height:1.25rem;}.size-6{width:1.5rem;height:1.5rem;}.size-full{width:100%;height:100%;}.h-\[--safe-top\]{height:var(--safe-top);}.h-0{height:0;}.h-10{height:2.5rem;}.h-11{height:2.75rem;}.h-12{height:3rem;}.h-16{height:4rem;}.h-18{height:4.5rem;}.h-20{height:5rem;}.h-24{height:6rem;}.h-3{height:0.75rem;}.h-32{height:8rem;}.h-36{height:9rem;}.h-4{height:1rem;}.h-40{height:10rem;}.h-42{height:10.5rem;}.h-5{height:1.25rem;}.h-50{height:12.5rem;}.h-6{height:1.5rem;}.h-7{height:1.75rem;}.h-8{height:2rem;}.h-9{height:2.25rem;}.h-full{height:100%;}.max-w-sm{max-width:24rem;}.min-h-screen{min-height:100vh;}.min-w-0{min-width:0;}.w-0{width:0;}.w-10{width:2.5rem;}.w-12{width:3rem;}.w-16{width:4rem;}.w-18{width:4.5rem;}.w-20{width:5rem;}.w-24{width:6rem;}.w-3{width:0.75rem;}.w-32{width:8rem;}.w-36{width:9rem;}.w-4{width:1rem;}.w-42{width:10.5rem;}.w-5{width:1.25rem;}.w-50{width:12.5rem;}.w-6{width:1.5rem;}.w-7{width:1.75rem;}.w-8{width:2rem;}.w-full{width:100%;}.wxs{width:20rem;}.flex{display:flex;}.inline-flex{display:inline-flex;}.flex-1{flex:1 1 0%;}.flex-none{flex:none;}.flex-shrink{flex-shrink:1;}.flex-shrink-0{flex-shrink:0;}.flex-grow{flex-grow:1;}.flex-col{flex-direction:column;}.flex-wrap{flex-wrap:wrap;}.table{display:table;}.table-cell{display:table-cell;}.table-row{display:table-row;}.table-row-group{display:table-row-group;}.-translate-x-1\/2{--un-translate-x:-50%;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.translate-y-1\/2{--un-translate-y:50%;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.active\:scale-95:active{--un-scale-x:0.95;--un-scale-y:0.95;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.active\:scale-98:active{--un-scale-x:0.98;--un-scale-y:0.98;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.transform{transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}@keyframes bounce{0%, 100% {transform:translateY(-25%);animation-timing-function:cubic-bezier(0.8,0,1,1)} 50% {transform:translateY(0);animation-timing-function:cubic-bezier(0,0,0.2,1)}}.animate-bounce{animation:bounce 1s linear infinite;}@keyframes ping{0%{transform:scale(1);opacity:1}75%,100%{transform:scale(2);opacity:0}}.animate-ping{animation:ping 1s cubic-bezier(0,0,.2,1) infinite;}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite;}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed;}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none;}.resize-none{resize:none;}.items-start{align-items:flex-start;}.items-center{align-items:center;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.gap-2{gap:0.5rem;}.space-x-1>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.25rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.25rem * var(--un-space-x-reverse));}.space-x-2>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.5rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.5rem * var(--un-space-x-reverse));}.space-x-3>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.75rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.75rem * var(--un-space-x-reverse));}.space-x-4>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(1rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(1rem * var(--un-space-x-reverse));}.space-y-3>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(0.75rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(0.75rem * var(--un-space-y-reverse));}.space-y-4>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(1rem * var(--un-space-y-reverse));}.divide-y>:not([hidden])~:not([hidden]){--un-divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--un-divide-y-reverse)));border-bottom-width:calc(1px * var(--un-divide-y-reverse));}.divide-gray-100>:not([hidden])~:not([hidden]){--un-divide-opacity:1;border-color:rgb(243 244 246 / var(--un-divide-opacity));}.overflow-auto{overflow:auto;}.overflow-hidden{overflow:hidden;}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.break-all{word-break:break-all;}.b,.border{border-width:1px;}.border-2{border-width:2px;}.border-3{border-width:3px;}.border-4{border-width:4px;}.border-b{border-bottom-width:1px;}.border-t{border-top-width:1px;}.border-blue-500{--un-border-opacity:1;border-color:rgb(59 130 246 / var(--un-border-opacity));}.border-gray-100{--un-border-opacity:1;border-color:rgb(243 244 246 / var(--un-border-opacity));}.border-gray-200{--un-border-opacity:1;border-color:rgb(229 231 235 / var(--un-border-opacity));}.border-gray-300{--un-border-opacity:1;border-color:rgb(209 213 219 / var(--un-border-opacity));}.border-green-100{--un-border-opacity:1;border-color:rgb(220 252 231 / var(--un-border-opacity));}.border-green-200{--un-border-opacity:1;border-color:rgb(187 247 208 / var(--un-border-opacity));}.border-orange-200{--un-border-opacity:1;border-color:rgb(254 215 170 / var(--un-border-opacity));}.border-primary-500{--un-border-opacity:1;border-color:rgba(var(--color-primary-500), var(--un-border-opacity));}.border-white{--un-border-opacity:1;border-color:rgb(255 255 255 / var(--un-border-opacity));}.border-white\/30{border-color:rgb(255 255 255 / 0.3);}.focus\:border-primary-500:focus{--un-border-opacity:1;border-color:rgba(var(--color-primary-500), var(--un-border-opacity));}.border-t-blue-500{--un-border-opacity:1;--un-border-top-opacity:var(--un-border-opacity);border-top-color:rgb(59 130 246 / var(--un-border-top-opacity));}.border-t-transparent{border-top-color:transparent;}.rounded-2xl{border-radius:1rem;}.rounded-3xl{border-radius:1.5rem;}.rounded-full{border-radius:9999px;}.\!rounded-lg{border-radius:0.5rem !important;}.rounded-lg{border-radius:0.5rem;}.rounded-md{border-radius:0.375rem;}.rounded-xl{border-radius:0.75rem;}.rounded-b-3xl{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem;}.bg-blue{--un-bg-opacity:1;background-color:rgb(96 165 250 / var(--un-bg-opacity));}.bg-blue-50{--un-bg-opacity:1;background-color:rgb(239 246 255 / var(--un-bg-opacity));}.bg-blue-500{--un-bg-opacity:1;background-color:rgb(59 130 246 / var(--un-bg-opacity));}.bg-gray{--un-bg-opacity:1;background-color:rgb(156 163 175 / var(--un-bg-opacity));}.bg-gray-100{--un-bg-opacity:1;background-color:rgb(243 244 246 / var(--un-bg-opacity));}.bg-gray-50{--un-bg-opacity:1;background-color:rgb(249 250 251 / var(--un-bg-opacity));}.bg-green{--un-bg-opacity:1;background-color:rgb(74 222 128 / var(--un-bg-opacity));}.bg-green-500{--un-bg-opacity:1;background-color:rgb(34 197 94 / var(--un-bg-opacity));}.bg-primary-400{--un-bg-opacity:1;background-color:rgba(var(--color-primary-400), var(--un-bg-opacity));}.bg-primary-50{--un-bg-opacity:1;background-color:rgba(var(--color-primary-50), var(--un-bg-opacity));}.bg-primary-500{--un-bg-opacity:1;background-color:rgba(var(--color-primary-500), var(--un-bg-opacity));}.bg-primary-600{--un-bg-opacity:1;background-color:rgba(var(--color-primary-600), var(--un-bg-opacity));}.bg-red{--un-bg-opacity:1;background-color:rgb(248 113 113 / var(--un-bg-opacity));}.bg-red-50{--un-bg-opacity:1;background-color:rgb(254 242 242 / var(--un-bg-opacity));}.bg-red-500{--un-bg-opacity:1;background-color:rgb(239 68 68 / var(--un-bg-opacity));}.bg-red-700{--un-bg-opacity:1;background-color:rgb(185 28 28 / var(--un-bg-opacity));}.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity));}.bg-white\/20{background-color:rgb(255 255 255 / 0.2);}.bg-white\/80{background-color:rgb(255 255 255 / 0.8);}.focus\:bg-white:focus{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity));}.active\:bg-gray-100:active{--un-bg-opacity:1;background-color:rgb(243 244 246 / var(--un-bg-opacity));}.active\:bg-gray-200:active{--un-bg-opacity:1;background-color:rgb(229 231 235 / var(--un-bg-opacity));}.active\:bg-gray-50:active{--un-bg-opacity:1;background-color:rgb(249 250 251 / var(--un-bg-opacity));}.active\:bg-primary-100:active{--un-bg-opacity:1;background-color:rgba(var(--color-primary-100), var(--un-bg-opacity));}.active\:bg-primary-600:active{--un-bg-opacity:1;background-color:rgba(var(--color-primary-600), var(--un-bg-opacity));}.from-black\/0{--un-gradient-from-position:0%;--un-gradient-from:rgb(0 0 0 / 0) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(0 0 0 / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to);}.from-blue-400{--un-gradient-from-position:0%;--un-gradient-from:rgb(96 165 250 / var(--un-from-opacity, 1)) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(96 165 250 / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to);}.from-green-400{--un-gradient-from-position:0%;--un-gradient-from:rgb(74 222 128 / var(--un-from-opacity, 1)) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(74 222 128 / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to);}.from-primary-400{--un-gradient-from-position:0%;--un-gradient-from:rgba(var(--color-primary-400), 1) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(255 255 255 / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to);}.from-primary-500{--un-gradient-from-position:0%;--un-gradient-from:rgba(var(--color-primary-500), 1) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(255 255 255 / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to);}.from-purple-400{--un-gradient-from-position:0%;--un-gradient-from:rgb(192 132 252 / var(--un-from-opacity, 1)) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(192 132 252 / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to);}.from-red-400{--un-gradient-from-position:0%;--un-gradient-from:rgb(248 113 113 / var(--un-from-opacity, 1)) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(248 113 113 / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to);}.to-black\/60{--un-gradient-to-position:100%;--un-gradient-to:rgb(0 0 0 / 0.6) var(--un-gradient-to-position);}.to-blue-600{--un-gradient-to-position:100%;--un-gradient-to:rgb(37 99 235 / var(--un-to-opacity, 1)) var(--un-gradient-to-position);}.to-green-600{--un-gradient-to-position:100%;--un-gradient-to:rgb(22 163 74 / var(--un-to-opacity, 1)) var(--un-gradient-to-position);}.to-primary-400{--un-gradient-to-position:100%;--un-gradient-to:rgba(var(--color-primary-400), 1) var(--un-gradient-to-position);}.to-primary-500{--un-gradient-to-position:100%;--un-gradient-to:rgba(var(--color-primary-500), 1) var(--un-gradient-to-position);}.to-purple-600{--un-gradient-to-position:100%;--un-gradient-to:rgb(147 51 234 / var(--un-to-opacity, 1)) var(--un-gradient-to-position);}.to-red-600{--un-gradient-to-position:100%;--un-gradient-to:rgb(220 38 38 / var(--un-to-opacity, 1)) var(--un-gradient-to-position);}.bg-gradient-to-b{--un-gradient-shape:to bottom;--un-gradient:var(--un-gradient-shape), var(--un-gradient-stops);background-image:linear-gradient(var(--un-gradient));}.bg-gradient-to-br{--un-gradient-shape:to bottom right;--un-gradient:var(--un-gradient-shape), var(--un-gradient-stops);background-image:linear-gradient(var(--un-gradient));}.bg-gradient-to-r{--un-gradient-shape:to right;--un-gradient:var(--un-gradient-shape), var(--un-gradient-stops);background-image:linear-gradient(var(--un-gradient));}.object-cover{-o-object-fit:cover;object-fit:cover;}.p-2{padding:0.5rem;}.p-4{padding:1rem;}.p-5{padding:1.25rem;}.p-6{padding:1.5rem;}.px,.px-4{padding-left:1rem;padding-right:1rem;}.px-1{padding-left:0.25rem;padding-right:0.25rem;}.px-2{padding-left:0.5rem;padding-right:0.5rem;}.px-3{padding-left:0.75rem;padding-right:0.75rem;}.px-5{padding-left:1.25rem;padding-right:1.25rem;}.px-6{padding-left:1.5rem;padding-right:1.5rem;}.py-0\.5{padding-top:0.125rem;padding-bottom:0.125rem;}.py-1{padding-top:0.25rem;padding-bottom:0.25rem;}.py-1\.5{padding-top:0.375rem;padding-bottom:0.375rem;}.py-16{padding-top:4rem;padding-bottom:4rem;}.py-2{padding-top:0.5rem;padding-bottom:0.5rem;}.py-3{padding-top:0.75rem;padding-bottom:0.75rem;}.py-4{padding-top:1rem;padding-bottom:1rem;}.py-6{padding-top:1.5rem;padding-bottom:1.5rem;}.py-8{padding-top:2rem;padding-bottom:2rem;}.pb-12{padding-bottom:3rem;}.pb-3{padding-bottom:0.75rem;}.pb-4{padding-bottom:1rem;}.pb-8{padding-bottom:2rem;}.\!uni-mp\:pr-\[var\(--safe-right\)\]-pass{padding-right:var(--safe-right) !important;}.pt-10{padding-top:2.5rem;}.pt-12{padding-top:3rem;}.pt-16{padding-top:4rem;}.pt-4{padding-top:1rem;}.text-center{text-align:center;}.text-2xl{font-size:1.5rem;line-height:2rem;}.text-base{font-size:1rem;line-height:1.5rem;}.text-lg{font-size:1.125rem;line-height:1.75rem;}.text-sm{font-size:0.875rem;line-height:1.25rem;}.text-xl{font-size:1.25rem;line-height:1.75rem;}.text-xs{font-size:0.75rem;line-height:1rem;}.text-blue{--un-text-opacity:1;color:rgb(96 165 250 / var(--un-text-opacity));}.text-blue-600{--un-text-opacity:1;color:rgb(37 99 235 / var(--un-text-opacity));}.text-blue-700{--un-text-opacity:1;color:rgb(29 78 216 / var(--un-text-opacity));}.text-gray,.text-gray-400{--un-text-opacity:1;color:rgb(156 163 175 / var(--un-text-opacity));}.text-gray-300{--un-text-opacity:1;color:rgb(209 213 219 / var(--un-text-opacity));}.text-gray-50{--un-text-opacity:1;color:rgb(249 250 251 / var(--un-text-opacity));}.text-gray-500{--un-text-opacity:1;color:rgb(107 114 128 / var(--un-text-opacity));}.text-gray-600{--un-text-opacity:1;color:rgb(75 85 99 / var(--un-text-opacity));}.text-gray-700{--un-text-opacity:1;color:rgb(55 65 81 / var(--un-text-opacity));}.text-gray-800{--un-text-opacity:1;color:rgb(31 41 55 / var(--un-text-opacity));}.text-gray-900{--un-text-opacity:1;color:rgb(17 24 39 / var(--un-text-opacity));}.text-green{--un-text-opacity:1;color:rgb(74 222 128 / var(--un-text-opacity));}.text-green-500{--un-text-opacity:1;color:rgb(34 197 94 / var(--un-text-opacity));}.text-orange-500{--un-text-opacity:1;color:rgb(249 115 22 / var(--un-text-opacity));}.text-primary-500{--un-text-opacity:1;color:rgba(var(--color-primary-500), var(--un-text-opacity));}.text-primary-600{--un-text-opacity:1;color:rgba(var(--color-primary-600), var(--un-text-opacity));}.text-red,.text-red-400{--un-text-opacity:1;color:rgb(248 113 113 / var(--un-text-opacity));}.text-red-500{--un-text-opacity:1;color:rgb(239 68 68 / var(--un-text-opacity));}.\!text-white{--un-text-opacity:1 !important;color:rgb(255 255 255 / var(--un-text-opacity)) !important;}.text-white{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity));}.text-white\/70{color:rgb(255 255 255 / 0.7);}.text-white\/80{color:rgb(255 255 255 / 0.8);}.hover\:text-gray-600:hover{--un-text-opacity:1;color:rgb(75 85 99 / var(--un-text-opacity));}.active\:text-primary-700:active{--un-text-opacity:1;color:rgba(var(--color-primary-700), var(--un-text-opacity));}.font-bold{font-weight:700;}.font-medium{font-weight:500;}.font-normal{font-weight:400;}.font-semibold{font-weight:600;}.leading-relaxed{line-height:1.625;}.leading-tight{line-height:1.25;}.italic{font-style:italic;}.line-through{text-decoration-line:line-through;}.underline{text-decoration-line:underline;}.tab{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}.text-shadow{--un-text-shadow:0 0 1px var(--un-text-shadow-color, rgb(0 0 0 / 0.2)),0 0 1px var(--un-text-shadow-color, rgb(1 0 5 / 0.1));text-shadow:var(--un-text-shadow);}.opacity-10{opacity:0.1;}.opacity-50{opacity:0.5;}.opacity-90{opacity:0.9;}.disabled\:opacity-70:disabled{opacity:0.7;}.shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-2xl{--un-shadow:var(--un-shadow-inset) 0 25px 50px -12px var(--un-shadow-color, rgb(0 0 0 / 0.25));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-inner{--un-shadow:inset 0 2px 4px 0 var(--un-shadow-color, rgb(0 0 0 / 0.05));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-lg{--un-shadow:var(--un-shadow-inset) 0 10px 15px -3px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 4px 6px -4px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-md{--un-shadow:var(--un-shadow-inset) 0 4px 6px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 2px 4px -2px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-sm{--un-shadow:var(--un-shadow-inset) 0 1px 2px 0 var(--un-shadow-color, rgb(0 0 0 / 0.05));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-xl{--un-shadow:var(--un-shadow-inset) 0 20px 25px -5px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 8px 10px -6px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.outline{outline-style:solid;}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px;}.backdrop-blur-sm{--un-backdrop-blur:blur(4px);-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);}.blur{--un-blur:blur(8px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}.filter{filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}.backdrop-filter{-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-shadow{transition-property:box-shadow;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.duration-200{transition-duration:200ms;}.ease,.ease-in-out{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);}.placeholder-gray-400::-moz-placeholder{--un-placeholder-opacity:1;color:rgb(156 163 175 / var(--un-placeholder-opacity));}.placeholder-gray-400::placeholder{--un-placeholder-opacity:1;color:rgb(156 163 175 / var(--un-placeholder-opacity));}@keyframes __un_qm{0%{box-shadow:inset 4px 4px #ff1e90, inset -4px -4px #ff1e90}100%{box-shadow:inset 8px 8px #3399ff, inset -8px -8px #3399ff}}.\?{animation:__un_qm 0.5s ease-in-out alternate infinite;}
  3. /**
  4. * 这里是uni-app内置的常用样式变量
  5. *
  6. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  7. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  8. *
  9. */
  10. /**
  11. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  12. *
  13. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  14. */
  15. [data-v-6c90497d]:root,
  16. body[data-v-6c90497d] {
  17. /* 纯色 */
  18. --u-white-color: #ffffff;
  19. --u-black-color: #000000;
  20. --u-main-color: #303133;
  21. --u-content-color: #606266;
  22. --u-tips-color: #909399;
  23. --u-light-color: #c0c4cc;
  24. --u-border-color: #e4e7ed;
  25. --u-divider-color: #e4e7ed;
  26. --u-mask-color: rgba(0, 0, 0, 0.4);
  27. --u-shadow-color: rgba(0, 0, 0, 0.1);
  28. /* 背景色 */
  29. --u-bg-color: #f3f4f6;
  30. --u-bg-white: #ffffff;
  31. --u-bg-gray-light: #f1f1f1;
  32. --u-bg-gray-dark: #2f343c;
  33. --u-bg-black: #000000;
  34. /* 主色 */
  35. --u-type-primary: #2979ff;
  36. --u-type-primary-light: #ecf5ff;
  37. --u-type-primary-disabled: #a0cfff;
  38. --u-type-primary-dark: #2b85e4;
  39. /* 警告色 */
  40. --u-type-warning: #ff9900;
  41. --u-type-warning-disabled: #fcbd71;
  42. --u-type-warning-dark: #f29100;
  43. --u-type-warning-light: #fdf6ec;
  44. /* 成功色 */
  45. --u-type-success: #19be6b;
  46. --u-type-success-disabled: #71d5a1;
  47. --u-type-success-dark: #18b566;
  48. --u-type-success-light: #dbf1e1;
  49. /* 错误色 */
  50. --u-type-error: #fa3534;
  51. --u-type-error-disabled: #fab6b6;
  52. --u-type-error-dark: #dd6161;
  53. --u-type-error-light: #fef0f0;
  54. /* 信息色 */
  55. --u-type-info: #909399;
  56. --u-type-info-disabled: #c8c9cc;
  57. --u-type-info-dark: #82848a;
  58. --u-type-info-light: #f4f4f5;
  59. }
  60. /* 颜色变量 */
  61. /* 行为相关颜色 */
  62. /* 文字基本颜色 */
  63. /* 背景颜色 */
  64. /* 边框颜色 */
  65. /* 尺寸变量 */
  66. /* 文字尺寸 */
  67. /* 图片尺寸 */
  68. /* Border Radius */
  69. /* 水平间距 */
  70. /* 垂直间距 */
  71. /* 透明度 */
  72. /* 文章场景相关 */
  73. .nav-btn[data-v-6c90497d] {
  74. height: 36px;
  75. width: 36px;
  76. background-color: #4f4f4f;
  77. border-radius: 6px;
  78. display: flex;
  79. align-items: center;
  80. justify-content: center;
  81. color: #f1f1f1;
  82. }
  83. /**
  84. * 这里是uni-app内置的常用样式变量
  85. *
  86. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  87. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  88. *
  89. */
  90. /**
  91. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  92. *
  93. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  94. */
  95. [data-v-8337ffeb]:root,
  96. body[data-v-8337ffeb] {
  97. /* 纯色 */
  98. --u-white-color: #ffffff;
  99. --u-black-color: #000000;
  100. --u-main-color: #303133;
  101. --u-content-color: #606266;
  102. --u-tips-color: #909399;
  103. --u-light-color: #c0c4cc;
  104. --u-border-color: #e4e7ed;
  105. --u-divider-color: #e4e7ed;
  106. --u-mask-color: rgba(0, 0, 0, 0.4);
  107. --u-shadow-color: rgba(0, 0, 0, 0.1);
  108. /* 背景色 */
  109. --u-bg-color: #f3f4f6;
  110. --u-bg-white: #ffffff;
  111. --u-bg-gray-light: #f1f1f1;
  112. --u-bg-gray-dark: #2f343c;
  113. --u-bg-black: #000000;
  114. /* 主色 */
  115. --u-type-primary: #2979ff;
  116. --u-type-primary-light: #ecf5ff;
  117. --u-type-primary-disabled: #a0cfff;
  118. --u-type-primary-dark: #2b85e4;
  119. /* 警告色 */
  120. --u-type-warning: #ff9900;
  121. --u-type-warning-disabled: #fcbd71;
  122. --u-type-warning-dark: #f29100;
  123. --u-type-warning-light: #fdf6ec;
  124. /* 成功色 */
  125. --u-type-success: #19be6b;
  126. --u-type-success-disabled: #71d5a1;
  127. --u-type-success-dark: #18b566;
  128. --u-type-success-light: #dbf1e1;
  129. /* 错误色 */
  130. --u-type-error: #fa3534;
  131. --u-type-error-disabled: #fab6b6;
  132. --u-type-error-dark: #dd6161;
  133. --u-type-error-light: #fef0f0;
  134. /* 信息色 */
  135. --u-type-info: #909399;
  136. --u-type-info-disabled: #c8c9cc;
  137. --u-type-info-dark: #82848a;
  138. --u-type-info-light: #f4f4f5;
  139. }
  140. /* 颜色变量 */
  141. /* 行为相关颜色 */
  142. /* 文字基本颜色 */
  143. /* 背景颜色 */
  144. /* 边框颜色 */
  145. /* 尺寸变量 */
  146. /* 文字尺寸 */
  147. /* 图片尺寸 */
  148. /* Border Radius */
  149. /* 水平间距 */
  150. /* 垂直间距 */
  151. /* 透明度 */
  152. /* 文章场景相关 */
  153. .nav-btn[data-v-8337ffeb] {
  154. height: 36px;
  155. width: 36px;
  156. background-color: #4f4f4f;
  157. border-radius: 6px;
  158. display: flex;
  159. align-items: center;
  160. justify-content: center;
  161. color: #f1f1f1;
  162. }
  163. .u-badge[data-v-8337ffeb] {
  164. display: inline-flex;
  165. justify-content: center;
  166. align-items: center;
  167. line-height: 0.75rem;
  168. padding: 0.125rem 0.25rem;
  169. border-radius: 3.125rem;
  170. z-index: 9;
  171. }
  172. .u-badge--bg--primary[data-v-8337ffeb] {
  173. background-color: var(--u-type-primary);
  174. }
  175. .u-badge--bg--error[data-v-8337ffeb] {
  176. background-color: var(--u-type-error);
  177. }
  178. .u-badge--bg--success[data-v-8337ffeb] {
  179. background-color: var(--u-type-success);
  180. }
  181. .u-badge--bg--info[data-v-8337ffeb] {
  182. background-color: var(--u-type-info);
  183. }
  184. .u-badge--bg--warning[data-v-8337ffeb] {
  185. background-color: var(--u-type-warning);
  186. }
  187. .u-badge-dot[data-v-8337ffeb] {
  188. height: 0.5rem;
  189. width: 0.5rem;
  190. border-radius: 3.125rem;
  191. line-height: 1;
  192. }
  193. .u-badge-mini[data-v-8337ffeb] {
  194. transform: scale(0.8);
  195. transform-origin: center center;
  196. }
  197. /**
  198. * 这里是uni-app内置的常用样式变量
  199. *
  200. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  201. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  202. *
  203. */
  204. /**
  205. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  206. *
  207. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  208. */
  209. @font-face {
  210. font-family: 'uicon-iconfont';
  211. font-weight: normal;
  212. font-style: normal;
  213. font-display: auto;
  214. src: url('data:application/x-font-woff2;charset=utf-8;base64,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')
  215. format('woff2');
  216. }
  217. /* 支付宝,百度,头条小程序目前读取大的本地字体文件,导致无法显示图标,故用在线加载的方式-2020-05-12 */
  218. .u-iconfont[data-v-b85e76d0] {
  219. position: relative;
  220. display: flex;
  221. font: normal normal normal 14px/1 'uicon-iconfont';
  222. font-size: inherit;
  223. text-rendering: auto;
  224. -webkit-font-smoothing: antialiased;
  225. -moz-osx-font-smoothing: grayscale;
  226. }
  227. .u-iconfont[data-v-b85e76d0]::before {
  228. display: flex;
  229. align-items: center;
  230. }
  231. .uicon-en[data-v-b85e76d0]:before {
  232. content: '\e70a';
  233. }
  234. .uicon-zh[data-v-b85e76d0]:before {
  235. content: '\e692';
  236. }
  237. .uicon-level[data-v-b85e76d0]:before {
  238. content: '\e693';
  239. }
  240. .uicon-woman[data-v-b85e76d0]:before {
  241. content: '\e69c';
  242. }
  243. .uicon-man[data-v-b85e76d0]:before {
  244. content: '\e697';
  245. }
  246. .uicon-column-line[data-v-b85e76d0]:before {
  247. content: '\e68e';
  248. }
  249. .uicon-empty-page[data-v-b85e76d0]:before {
  250. content: '\e627';
  251. }
  252. .uicon-empty-data[data-v-b85e76d0]:before {
  253. content: '\e62f';
  254. }
  255. .uicon-empty-car[data-v-b85e76d0]:before {
  256. content: '\e602';
  257. }
  258. .uicon-empty-order[data-v-b85e76d0]:before {
  259. content: '\e639';
  260. }
  261. .uicon-empty-address[data-v-b85e76d0]:before {
  262. content: '\e646';
  263. }
  264. .uicon-empty-message[data-v-b85e76d0]:before {
  265. content: '\e6a9';
  266. }
  267. .uicon-empty-search[data-v-b85e76d0]:before {
  268. content: '\e664';
  269. }
  270. .uicon-empty-favor[data-v-b85e76d0]:before {
  271. content: '\e67c';
  272. }
  273. .uicon-empty-coupon[data-v-b85e76d0]:before {
  274. content: '\e682';
  275. }
  276. .uicon-empty-history[data-v-b85e76d0]:before {
  277. content: '\e684';
  278. }
  279. .uicon-empty-permission[data-v-b85e76d0]:before {
  280. content: '\e686';
  281. }
  282. .uicon-empty-news[data-v-b85e76d0]:before {
  283. content: '\e687';
  284. }
  285. .uicon-empty-wifi[data-v-b85e76d0]:before {
  286. content: '\e688';
  287. }
  288. .uicon-empty-list[data-v-b85e76d0]:before {
  289. content: '\e68b';
  290. }
  291. .uicon-arrow-left-double[data-v-b85e76d0]:before {
  292. content: '\e68c';
  293. }
  294. .uicon-arrow-right-double[data-v-b85e76d0]:before {
  295. content: '\e68d';
  296. }
  297. .uicon-red-packet[data-v-b85e76d0]:before {
  298. content: '\e691';
  299. }
  300. .uicon-red-packet-fill[data-v-b85e76d0]:before {
  301. content: '\e690';
  302. }
  303. .uicon-order[data-v-b85e76d0]:before {
  304. content: '\e68f';
  305. }
  306. .uicon-nav-back-arrow[data-v-b85e76d0]:before {
  307. content: '\e67f';
  308. }
  309. .uicon-nav-back[data-v-b85e76d0]:before {
  310. content: '\e683';
  311. }
  312. .uicon-checkbox-mark[data-v-b85e76d0]:before {
  313. content: '\e6a8';
  314. }
  315. .uicon-arrow-up-fill[data-v-b85e76d0]:before {
  316. content: '\e6b0';
  317. }
  318. .uicon-arrow-down-fill[data-v-b85e76d0]:before {
  319. content: '\e600';
  320. }
  321. .uicon-backspace[data-v-b85e76d0]:before {
  322. content: '\e67b';
  323. }
  324. .uicon-android-circle-fill[data-v-b85e76d0]:before {
  325. content: '\e67e';
  326. }
  327. .uicon-android-fill[data-v-b85e76d0]:before {
  328. content: '\e67d';
  329. }
  330. .uicon-question[data-v-b85e76d0]:before {
  331. content: '\e715';
  332. }
  333. .uicon-pause[data-v-b85e76d0]:before {
  334. content: '\e8fa';
  335. }
  336. .uicon-close[data-v-b85e76d0]:before {
  337. content: '\e685';
  338. }
  339. .uicon-volume-up[data-v-b85e76d0]:before {
  340. content: '\e633';
  341. }
  342. .uicon-volume-off[data-v-b85e76d0]:before {
  343. content: '\e644';
  344. }
  345. .uicon-info[data-v-b85e76d0]:before {
  346. content: '\e653';
  347. }
  348. .uicon-error[data-v-b85e76d0]:before {
  349. content: '\e6d3';
  350. }
  351. .uicon-lock-opened-fill[data-v-b85e76d0]:before {
  352. content: '\e974';
  353. }
  354. .uicon-lock-fill[data-v-b85e76d0]:before {
  355. content: '\e979';
  356. }
  357. .uicon-lock[data-v-b85e76d0]:before {
  358. content: '\e97a';
  359. }
  360. .uicon-photo-fill[data-v-b85e76d0]:before {
  361. content: '\e98b';
  362. }
  363. .uicon-photo[data-v-b85e76d0]:before {
  364. content: '\e98d';
  365. }
  366. .uicon-account-fill[data-v-b85e76d0]:before {
  367. content: '\e614';
  368. }
  369. .uicon-minus-people-fill[data-v-b85e76d0]:before {
  370. content: '\e615';
  371. }
  372. .uicon-plus-people-fill[data-v-b85e76d0]:before {
  373. content: '\e626';
  374. }
  375. .uicon-account[data-v-b85e76d0]:before {
  376. content: '\e628';
  377. }
  378. .uicon-thumb-down-fill[data-v-b85e76d0]:before {
  379. content: '\e726';
  380. }
  381. .uicon-thumb-down[data-v-b85e76d0]:before {
  382. content: '\e727';
  383. }
  384. .uicon-thumb-up-fill[data-v-b85e76d0]:before {
  385. content: '\e72f';
  386. }
  387. .uicon-thumb-up[data-v-b85e76d0]:before {
  388. content: '\e733';
  389. }
  390. .uicon-person-delete-fill[data-v-b85e76d0]:before {
  391. content: '\e66a';
  392. }
  393. .uicon-cut[data-v-b85e76d0]:before {
  394. content: '\e948';
  395. }
  396. .uicon-fingerprint[data-v-b85e76d0]:before {
  397. content: '\e955';
  398. }
  399. .uicon-home-fill[data-v-b85e76d0]:before {
  400. content: '\e964';
  401. }
  402. .uicon-home[data-v-b85e76d0]:before {
  403. content: '\e965';
  404. }
  405. .uicon-hourglass-half-fill[data-v-b85e76d0]:before {
  406. content: '\e966';
  407. }
  408. .uicon-hourglass[data-v-b85e76d0]:before {
  409. content: '\e967';
  410. }
  411. .uicon-lock-open[data-v-b85e76d0]:before {
  412. content: '\e973';
  413. }
  414. .uicon-integral-fill[data-v-b85e76d0]:before {
  415. content: '\e703';
  416. }
  417. .uicon-integral[data-v-b85e76d0]:before {
  418. content: '\e704';
  419. }
  420. .uicon-coupon[data-v-b85e76d0]:before {
  421. content: '\e8ae';
  422. }
  423. .uicon-coupon-fill[data-v-b85e76d0]:before {
  424. content: '\e8c4';
  425. }
  426. .uicon-kefu-ermai[data-v-b85e76d0]:before {
  427. content: '\e656';
  428. }
  429. .uicon-scan[data-v-b85e76d0]:before {
  430. content: '\e662';
  431. }
  432. .uicon-rmb[data-v-b85e76d0]:before {
  433. content: '\e608';
  434. }
  435. .uicon-rmb-circle-fill[data-v-b85e76d0]:before {
  436. content: '\e657';
  437. }
  438. .uicon-rmb-circle[data-v-b85e76d0]:before {
  439. content: '\e677';
  440. }
  441. .uicon-gift[data-v-b85e76d0]:before {
  442. content: '\e65b';
  443. }
  444. .uicon-gift-fill[data-v-b85e76d0]:before {
  445. content: '\e65c';
  446. }
  447. .uicon-bookmark-fill[data-v-b85e76d0]:before {
  448. content: '\e63b';
  449. }
  450. .uicon-zhuanfa[data-v-b85e76d0]:before {
  451. content: '\e60b';
  452. }
  453. .uicon-eye-off-outline[data-v-b85e76d0]:before {
  454. content: '\e62b';
  455. }
  456. .uicon-eye-off[data-v-b85e76d0]:before {
  457. content: '\e648';
  458. }
  459. .uicon-pause-circle[data-v-b85e76d0]:before {
  460. content: '\e643';
  461. }
  462. .uicon-play-circle[data-v-b85e76d0]:before {
  463. content: '\e647';
  464. }
  465. .uicon-pause-circle-fill[data-v-b85e76d0]:before {
  466. content: '\e654';
  467. }
  468. .uicon-play-circle-fill[data-v-b85e76d0]:before {
  469. content: '\e655';
  470. }
  471. .uicon-grid[data-v-b85e76d0]:before {
  472. content: '\e673';
  473. }
  474. .uicon-play-right[data-v-b85e76d0]:before {
  475. content: '\e610';
  476. }
  477. .uicon-play-left[data-v-b85e76d0]:before {
  478. content: '\e66d';
  479. }
  480. .uicon-calendar[data-v-b85e76d0]:before {
  481. content: '\e66e';
  482. }
  483. .uicon-rewind-right[data-v-b85e76d0]:before {
  484. content: '\e66f';
  485. }
  486. .uicon-rewind-left[data-v-b85e76d0]:before {
  487. content: '\e671';
  488. }
  489. .uicon-skip-forward-right[data-v-b85e76d0]:before {
  490. content: '\e672';
  491. }
  492. .uicon-skip-back-left[data-v-b85e76d0]:before {
  493. content: '\e674';
  494. }
  495. .uicon-play-left-fill[data-v-b85e76d0]:before {
  496. content: '\e675';
  497. }
  498. .uicon-play-right-fill[data-v-b85e76d0]:before {
  499. content: '\e676';
  500. }
  501. .uicon-grid-fill[data-v-b85e76d0]:before {
  502. content: '\e678';
  503. }
  504. .uicon-rewind-left-fill[data-v-b85e76d0]:before {
  505. content: '\e679';
  506. }
  507. .uicon-rewind-right-fill[data-v-b85e76d0]:before {
  508. content: '\e67a';
  509. }
  510. .uicon-pushpin[data-v-b85e76d0]:before {
  511. content: '\e7e3';
  512. }
  513. .uicon-star[data-v-b85e76d0]:before {
  514. content: '\e65f';
  515. }
  516. .uicon-star-fill[data-v-b85e76d0]:before {
  517. content: '\e669';
  518. }
  519. .uicon-server-fill[data-v-b85e76d0]:before {
  520. content: '\e751';
  521. }
  522. .uicon-server-man[data-v-b85e76d0]:before {
  523. content: '\e6bc';
  524. }
  525. .uicon-edit-pen[data-v-b85e76d0]:before {
  526. content: '\e612';
  527. }
  528. .uicon-edit-pen-fill[data-v-b85e76d0]:before {
  529. content: '\e66b';
  530. }
  531. .uicon-wifi[data-v-b85e76d0]:before {
  532. content: '\e667';
  533. }
  534. .uicon-wifi-off[data-v-b85e76d0]:before {
  535. content: '\e668';
  536. }
  537. .uicon-file-text[data-v-b85e76d0]:before {
  538. content: '\e663';
  539. }
  540. .uicon-file-text-fill[data-v-b85e76d0]:before {
  541. content: '\e665';
  542. }
  543. .uicon-more-dot-fill[data-v-b85e76d0]:before {
  544. content: '\e630';
  545. }
  546. .uicon-minus[data-v-b85e76d0]:before {
  547. content: '\e618';
  548. }
  549. .uicon-minus-circle[data-v-b85e76d0]:before {
  550. content: '\e61b';
  551. }
  552. .uicon-plus[data-v-b85e76d0]:before {
  553. content: '\e62d';
  554. }
  555. .uicon-plus-circle[data-v-b85e76d0]:before {
  556. content: '\e62e';
  557. }
  558. .uicon-minus-circle-fill[data-v-b85e76d0]:before {
  559. content: '\e652';
  560. }
  561. .uicon-plus-circle-fill[data-v-b85e76d0]:before {
  562. content: '\e661';
  563. }
  564. .uicon-email[data-v-b85e76d0]:before {
  565. content: '\e611';
  566. }
  567. .uicon-email-fill[data-v-b85e76d0]:before {
  568. content: '\e642';
  569. }
  570. .uicon-phone[data-v-b85e76d0]:before {
  571. content: '\e622';
  572. }
  573. .uicon-phone-fill[data-v-b85e76d0]:before {
  574. content: '\e64f';
  575. }
  576. .uicon-clock[data-v-b85e76d0]:before {
  577. content: '\e60f';
  578. }
  579. .uicon-car[data-v-b85e76d0]:before {
  580. content: '\e60c';
  581. }
  582. .uicon-car-fill[data-v-b85e76d0]:before {
  583. content: '\e636';
  584. }
  585. .uicon-warning[data-v-b85e76d0]:before {
  586. content: '\e694';
  587. }
  588. .uicon-warning-fill[data-v-b85e76d0]:before {
  589. content: '\e64d';
  590. }
  591. .uicon-search[data-v-b85e76d0]:before {
  592. content: '\e62a';
  593. }
  594. .uicon-baidu-circle-fill[data-v-b85e76d0]:before {
  595. content: '\e680';
  596. }
  597. .uicon-baidu[data-v-b85e76d0]:before {
  598. content: '\e681';
  599. }
  600. .uicon-facebook[data-v-b85e76d0]:before {
  601. content: '\e689';
  602. }
  603. .uicon-facebook-circle-fill[data-v-b85e76d0]:before {
  604. content: '\e68a';
  605. }
  606. .uicon-qzone[data-v-b85e76d0]:before {
  607. content: '\e695';
  608. }
  609. .uicon-qzone-circle-fill[data-v-b85e76d0]:before {
  610. content: '\e696';
  611. }
  612. .uicon-moments-circel-fill[data-v-b85e76d0]:before {
  613. content: '\e69a';
  614. }
  615. .uicon-moments[data-v-b85e76d0]:before {
  616. content: '\e69b';
  617. }
  618. .uicon-qq-circle-fill[data-v-b85e76d0]:before {
  619. content: '\e6a0';
  620. }
  621. .uicon-qq-fill[data-v-b85e76d0]:before {
  622. content: '\e6a1';
  623. }
  624. .uicon-weibo[data-v-b85e76d0]:before {
  625. content: '\e6a4';
  626. }
  627. .uicon-weibo-circle-fill[data-v-b85e76d0]:before {
  628. content: '\e6a5';
  629. }
  630. .uicon-taobao[data-v-b85e76d0]:before {
  631. content: '\e6a6';
  632. }
  633. .uicon-taobao-circle-fill[data-v-b85e76d0]:before {
  634. content: '\e6a7';
  635. }
  636. .uicon-twitter[data-v-b85e76d0]:before {
  637. content: '\e6aa';
  638. }
  639. .uicon-twitter-circle-fill[data-v-b85e76d0]:before {
  640. content: '\e6ab';
  641. }
  642. .uicon-weixin-circle-fill[data-v-b85e76d0]:before {
  643. content: '\e6b1';
  644. }
  645. .uicon-weixin-fill[data-v-b85e76d0]:before {
  646. content: '\e6b2';
  647. }
  648. .uicon-zhifubao-circle-fill[data-v-b85e76d0]:before {
  649. content: '\e6b8';
  650. }
  651. .uicon-zhifubao[data-v-b85e76d0]:before {
  652. content: '\e6b9';
  653. }
  654. .uicon-zhihu[data-v-b85e76d0]:before {
  655. content: '\e6ba';
  656. }
  657. .uicon-zhihu-circle-fill[data-v-b85e76d0]:before {
  658. content: '\e709';
  659. }
  660. .uicon-list[data-v-b85e76d0]:before {
  661. content: '\e650';
  662. }
  663. .uicon-list-dot[data-v-b85e76d0]:before {
  664. content: '\e616';
  665. }
  666. .uicon-setting[data-v-b85e76d0]:before {
  667. content: '\e61f';
  668. }
  669. .uicon-bell[data-v-b85e76d0]:before {
  670. content: '\e609';
  671. }
  672. .uicon-bell-fill[data-v-b85e76d0]:before {
  673. content: '\e640';
  674. }
  675. .uicon-attach[data-v-b85e76d0]:before {
  676. content: '\e632';
  677. }
  678. .uicon-shopping-cart[data-v-b85e76d0]:before {
  679. content: '\e621';
  680. }
  681. .uicon-shopping-cart-fill[data-v-b85e76d0]:before {
  682. content: '\e65d';
  683. }
  684. .uicon-tags[data-v-b85e76d0]:before {
  685. content: '\e629';
  686. }
  687. .uicon-share[data-v-b85e76d0]:before {
  688. content: '\e631';
  689. }
  690. .uicon-question-circle-fill[data-v-b85e76d0]:before {
  691. content: '\e666';
  692. }
  693. .uicon-question-circle[data-v-b85e76d0]:before {
  694. content: '\e625';
  695. }
  696. .uicon-error-circle[data-v-b85e76d0]:before {
  697. content: '\e624';
  698. }
  699. .uicon-checkmark-circle[data-v-b85e76d0]:before {
  700. content: '\e63d';
  701. }
  702. .uicon-close-circle[data-v-b85e76d0]:before {
  703. content: '\e63f';
  704. }
  705. .uicon-info-circle[data-v-b85e76d0]:before {
  706. content: '\e660';
  707. }
  708. .uicon-md-person-add[data-v-b85e76d0]:before {
  709. content: '\e6e4';
  710. }
  711. .uicon-md-person-fill[data-v-b85e76d0]:before {
  712. content: '\e6ea';
  713. }
  714. .uicon-bag-fill[data-v-b85e76d0]:before {
  715. content: '\e617';
  716. }
  717. .uicon-bag[data-v-b85e76d0]:before {
  718. content: '\e619';
  719. }
  720. .uicon-chat-fill[data-v-b85e76d0]:before {
  721. content: '\e61e';
  722. }
  723. .uicon-chat[data-v-b85e76d0]:before {
  724. content: '\e620';
  725. }
  726. .uicon-more-circle[data-v-b85e76d0]:before {
  727. content: '\e63e';
  728. }
  729. .uicon-more-circle-fill[data-v-b85e76d0]:before {
  730. content: '\e645';
  731. }
  732. .uicon-volume[data-v-b85e76d0]:before {
  733. content: '\e66c';
  734. }
  735. .uicon-volume-fill[data-v-b85e76d0]:before {
  736. content: '\e670';
  737. }
  738. .uicon-reload[data-v-b85e76d0]:before {
  739. content: '\e788';
  740. }
  741. .uicon-camera[data-v-b85e76d0]:before {
  742. content: '\e7d7';
  743. }
  744. .uicon-heart[data-v-b85e76d0]:before {
  745. content: '\e7df';
  746. }
  747. .uicon-heart-fill[data-v-b85e76d0]:before {
  748. content: '\e851';
  749. }
  750. .uicon-minus-square-fill[data-v-b85e76d0]:before {
  751. content: '\e855';
  752. }
  753. .uicon-plus-square-fill[data-v-b85e76d0]:before {
  754. content: '\e856';
  755. }
  756. .uicon-pushpin-fill[data-v-b85e76d0]:before {
  757. content: '\e86e';
  758. }
  759. .uicon-camera-fill[data-v-b85e76d0]:before {
  760. content: '\e870';
  761. }
  762. .uicon-setting-fill[data-v-b85e76d0]:before {
  763. content: '\e872';
  764. }
  765. .uicon-google[data-v-b85e76d0]:before {
  766. content: '\e87a';
  767. }
  768. .uicon-ie[data-v-b85e76d0]:before {
  769. content: '\e87b';
  770. }
  771. .uicon-apple-fill[data-v-b85e76d0]:before {
  772. content: '\e881';
  773. }
  774. .uicon-chrome-circle-fill[data-v-b85e76d0]:before {
  775. content: '\e885';
  776. }
  777. .uicon-github-circle-fill[data-v-b85e76d0]:before {
  778. content: '\e887';
  779. }
  780. .uicon-IE-circle-fill[data-v-b85e76d0]:before {
  781. content: '\e889';
  782. }
  783. .uicon-google-circle-fill[data-v-b85e76d0]:before {
  784. content: '\e88a';
  785. }
  786. .uicon-arrow-down[data-v-b85e76d0]:before {
  787. content: '\e60d';
  788. }
  789. .uicon-arrow-left[data-v-b85e76d0]:before {
  790. content: '\e60e';
  791. }
  792. .uicon-map[data-v-b85e76d0]:before {
  793. content: '\e61d';
  794. }
  795. .uicon-man-add-fill[data-v-b85e76d0]:before {
  796. content: '\e64c';
  797. }
  798. .uicon-tags-fill[data-v-b85e76d0]:before {
  799. content: '\e651';
  800. }
  801. .uicon-arrow-leftward[data-v-b85e76d0]:before {
  802. content: '\e601';
  803. }
  804. .uicon-arrow-rightward[data-v-b85e76d0]:before {
  805. content: '\e603';
  806. }
  807. .uicon-arrow-downward[data-v-b85e76d0]:before {
  808. content: '\e604';
  809. }
  810. .uicon-arrow-right[data-v-b85e76d0]:before {
  811. content: '\e605';
  812. }
  813. .uicon-arrow-up[data-v-b85e76d0]:before {
  814. content: '\e606';
  815. }
  816. .uicon-arrow-upward[data-v-b85e76d0]:before {
  817. content: '\e607';
  818. }
  819. .uicon-bookmark[data-v-b85e76d0]:before {
  820. content: '\e60a';
  821. }
  822. .uicon-eye[data-v-b85e76d0]:before {
  823. content: '\e613';
  824. }
  825. .uicon-man-delete[data-v-b85e76d0]:before {
  826. content: '\e61a';
  827. }
  828. .uicon-man-add[data-v-b85e76d0]:before {
  829. content: '\e61c';
  830. }
  831. .uicon-trash[data-v-b85e76d0]:before {
  832. content: '\e623';
  833. }
  834. .uicon-error-circle-fill[data-v-b85e76d0]:before {
  835. content: '\e62c';
  836. }
  837. .uicon-calendar-fill[data-v-b85e76d0]:before {
  838. content: '\e634';
  839. }
  840. .uicon-checkmark-circle-fill[data-v-b85e76d0]:before {
  841. content: '\e635';
  842. }
  843. .uicon-close-circle-fill[data-v-b85e76d0]:before {
  844. content: '\e637';
  845. }
  846. .uicon-clock-fill[data-v-b85e76d0]:before {
  847. content: '\e638';
  848. }
  849. .uicon-checkmark[data-v-b85e76d0]:before {
  850. content: '\e63a';
  851. }
  852. .uicon-download[data-v-b85e76d0]:before {
  853. content: '\e63c';
  854. }
  855. .uicon-eye-fill[data-v-b85e76d0]:before {
  856. content: '\e641';
  857. }
  858. .uicon-mic-off[data-v-b85e76d0]:before {
  859. content: '\e649';
  860. }
  861. .uicon-mic[data-v-b85e76d0]:before {
  862. content: '\e64a';
  863. }
  864. .uicon-info-circle-fill[data-v-b85e76d0]:before {
  865. content: '\e64b';
  866. }
  867. .uicon-map-fill[data-v-b85e76d0]:before {
  868. content: '\e64e';
  869. }
  870. .uicon-trash-fill[data-v-b85e76d0]:before {
  871. content: '\e658';
  872. }
  873. .uicon-volume-off-fill[data-v-b85e76d0]:before {
  874. content: '\e659';
  875. }
  876. .uicon-volume-up-fill[data-v-b85e76d0]:before {
  877. content: '\e65a';
  878. }
  879. .uicon-share-fill[data-v-b85e76d0]:before {
  880. content: '\e65e';
  881. }
  882. [data-v-b85e76d0]:root,
  883. body[data-v-b85e76d0] {
  884. /* 纯色 */
  885. --u-white-color: #ffffff;
  886. --u-black-color: #000000;
  887. --u-main-color: #303133;
  888. --u-content-color: #606266;
  889. --u-tips-color: #909399;
  890. --u-light-color: #c0c4cc;
  891. --u-border-color: #e4e7ed;
  892. --u-divider-color: #e4e7ed;
  893. --u-mask-color: rgba(0, 0, 0, 0.4);
  894. --u-shadow-color: rgba(0, 0, 0, 0.1);
  895. /* 背景色 */
  896. --u-bg-color: #f3f4f6;
  897. --u-bg-white: #ffffff;
  898. --u-bg-gray-light: #f1f1f1;
  899. --u-bg-gray-dark: #2f343c;
  900. --u-bg-black: #000000;
  901. /* 主色 */
  902. --u-type-primary: #2979ff;
  903. --u-type-primary-light: #ecf5ff;
  904. --u-type-primary-disabled: #a0cfff;
  905. --u-type-primary-dark: #2b85e4;
  906. /* 警告色 */
  907. --u-type-warning: #ff9900;
  908. --u-type-warning-disabled: #fcbd71;
  909. --u-type-warning-dark: #f29100;
  910. --u-type-warning-light: #fdf6ec;
  911. /* 成功色 */
  912. --u-type-success: #19be6b;
  913. --u-type-success-disabled: #71d5a1;
  914. --u-type-success-dark: #18b566;
  915. --u-type-success-light: #dbf1e1;
  916. /* 错误色 */
  917. --u-type-error: #fa3534;
  918. --u-type-error-disabled: #fab6b6;
  919. --u-type-error-dark: #dd6161;
  920. --u-type-error-light: #fef0f0;
  921. /* 信息色 */
  922. --u-type-info: #909399;
  923. --u-type-info-disabled: #c8c9cc;
  924. --u-type-info-dark: #82848a;
  925. --u-type-info-light: #f4f4f5;
  926. }
  927. /* 颜色变量 */
  928. /* 行为相关颜色 */
  929. /* 文字基本颜色 */
  930. /* 背景颜色 */
  931. /* 边框颜色 */
  932. /* 尺寸变量 */
  933. /* 文字尺寸 */
  934. /* 图片尺寸 */
  935. /* Border Radius */
  936. /* 水平间距 */
  937. /* 垂直间距 */
  938. /* 透明度 */
  939. /* 文章场景相关 */
  940. .nav-btn[data-v-b85e76d0] {
  941. height: 36px;
  942. width: 36px;
  943. background-color: #4f4f4f;
  944. border-radius: 6px;
  945. display: flex;
  946. align-items: center;
  947. justify-content: center;
  948. color: #f1f1f1;
  949. }
  950. .u-icon[data-v-b85e76d0] {
  951. display: inline-flex;
  952. align-items: center;
  953. }
  954. .u-icon--left[data-v-b85e76d0] {
  955. flex-direction: row-reverse;
  956. align-items: center;
  957. }
  958. .u-icon--right[data-v-b85e76d0] {
  959. flex-direction: row;
  960. align-items: center;
  961. }
  962. .u-icon--top[data-v-b85e76d0] {
  963. flex-direction: column-reverse;
  964. justify-content: center;
  965. }
  966. .u-icon--bottom[data-v-b85e76d0] {
  967. flex-direction: column;
  968. justify-content: center;
  969. }
  970. .u-icon__icon[data-v-b85e76d0] {
  971. position: relative;
  972. }
  973. .u-icon__icon--primary[data-v-b85e76d0] {
  974. color: var(--u-type-primary);
  975. }
  976. .u-icon__icon--success[data-v-b85e76d0] {
  977. color: var(--u-type-success);
  978. }
  979. .u-icon__icon--error[data-v-b85e76d0] {
  980. color: var(--u-type-error);
  981. }
  982. .u-icon__icon--warning[data-v-b85e76d0] {
  983. color: var(--u-type-warning);
  984. }
  985. .u-icon__icon--info[data-v-b85e76d0] {
  986. color: var(--u-type-info);
  987. }
  988. .u-icon__decimal[data-v-b85e76d0] {
  989. position: absolute;
  990. top: 0;
  991. left: 0;
  992. display: inline-block;
  993. overflow: hidden;
  994. }
  995. .u-icon__img[data-v-b85e76d0] {
  996. height: auto;
  997. will-change: transform;
  998. }
  999. .u-icon__label[data-v-b85e76d0] {
  1000. line-height: 1;
  1001. }
  1002. /**
  1003. * 这里是uni-app内置的常用样式变量
  1004. *
  1005. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1006. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1007. *
  1008. */
  1009. /**
  1010. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1011. *
  1012. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1013. */
  1014. [data-v-bf3787de]:root,
  1015. body[data-v-bf3787de] {
  1016. /* 纯色 */
  1017. --u-white-color: #ffffff;
  1018. --u-black-color: #000000;
  1019. --u-main-color: #303133;
  1020. --u-content-color: #606266;
  1021. --u-tips-color: #909399;
  1022. --u-light-color: #c0c4cc;
  1023. --u-border-color: #e4e7ed;
  1024. --u-divider-color: #e4e7ed;
  1025. --u-mask-color: rgba(0, 0, 0, 0.4);
  1026. --u-shadow-color: rgba(0, 0, 0, 0.1);
  1027. /* 背景色 */
  1028. --u-bg-color: #f3f4f6;
  1029. --u-bg-white: #ffffff;
  1030. --u-bg-gray-light: #f1f1f1;
  1031. --u-bg-gray-dark: #2f343c;
  1032. --u-bg-black: #000000;
  1033. /* 主色 */
  1034. --u-type-primary: #2979ff;
  1035. --u-type-primary-light: #ecf5ff;
  1036. --u-type-primary-disabled: #a0cfff;
  1037. --u-type-primary-dark: #2b85e4;
  1038. /* 警告色 */
  1039. --u-type-warning: #ff9900;
  1040. --u-type-warning-disabled: #fcbd71;
  1041. --u-type-warning-dark: #f29100;
  1042. --u-type-warning-light: #fdf6ec;
  1043. /* 成功色 */
  1044. --u-type-success: #19be6b;
  1045. --u-type-success-disabled: #71d5a1;
  1046. --u-type-success-dark: #18b566;
  1047. --u-type-success-light: #dbf1e1;
  1048. /* 错误色 */
  1049. --u-type-error: #fa3534;
  1050. --u-type-error-disabled: #fab6b6;
  1051. --u-type-error-dark: #dd6161;
  1052. --u-type-error-light: #fef0f0;
  1053. /* 信息色 */
  1054. --u-type-info: #909399;
  1055. --u-type-info-disabled: #c8c9cc;
  1056. --u-type-info-dark: #82848a;
  1057. --u-type-info-light: #f4f4f5;
  1058. }
  1059. /* 颜色变量 */
  1060. /* 行为相关颜色 */
  1061. /* 文字基本颜色 */
  1062. /* 背景颜色 */
  1063. /* 边框颜色 */
  1064. /* 尺寸变量 */
  1065. /* 文字尺寸 */
  1066. /* 图片尺寸 */
  1067. /* Border Radius */
  1068. /* 水平间距 */
  1069. /* 垂直间距 */
  1070. /* 透明度 */
  1071. /* 文章场景相关 */
  1072. .nav-btn[data-v-bf3787de] {
  1073. height: 36px;
  1074. width: 36px;
  1075. background-color: #4f4f4f;
  1076. border-radius: 6px;
  1077. display: flex;
  1078. align-items: center;
  1079. justify-content: center;
  1080. color: #f1f1f1;
  1081. }
  1082. .u-fixed-placeholder[data-v-bf3787de] {
  1083. box-sizing: content-box;
  1084. height: 50px;
  1085. }
  1086. .u-tabbar__content[data-v-bf3787de] {
  1087. display: flex;
  1088. flex-direction: row;
  1089. align-items: center;
  1090. position: relative;
  1091. position: fixed;
  1092. bottom: 0;
  1093. left: 0;
  1094. width: 100%;
  1095. z-index: 998;
  1096. box-sizing: content-box;
  1097. }
  1098. .u-tabbar__content__circle__border[data-v-bf3787de] {
  1099. border-radius: 100%;
  1100. width: 4.0625rem;
  1101. height: 4.0625rem;
  1102. top: -1.8125rem;
  1103. position: absolute;
  1104. z-index: 4;
  1105. background-color: var(--u-bg-white);
  1106. left: 50%;
  1107. transform: translateX(-50%);
  1108. }
  1109. .u-tabbar__content__circle__border[data-v-bf3787de]:after {
  1110. border-radius: 100px;
  1111. }
  1112. .u-tabbar__content__item[data-v-bf3787de] {
  1113. flex: 1;
  1114. justify-content: center;
  1115. height: 100%;
  1116. padding: 0.375rem 0;
  1117. display: flex;
  1118. flex-direction: row;
  1119. flex-direction: column;
  1120. align-items: center;
  1121. position: relative;
  1122. }
  1123. .u-tabbar__content__item__container[data-v-bf3787de] {
  1124. display: flex;
  1125. flex-direction: row;
  1126. flex-direction: column;
  1127. align-items: center;
  1128. justify-content: center;
  1129. height: 100%;
  1130. width: 100%;
  1131. position: relative;
  1132. }
  1133. .u-tabbar__content__item__icon[data-v-bf3787de] {
  1134. position: relative;
  1135. display: flex;
  1136. flex-direction: row;
  1137. align-items: center;
  1138. justify-content: center;
  1139. }
  1140. .u-tabbar__content__item__text[data-v-bf3787de] {
  1141. color: var(--u-content-color);
  1142. font-size: 0.8125rem;
  1143. line-height: 0.875rem;
  1144. text-align: center;
  1145. width: 100%;
  1146. }
  1147. .u-tabbar__content__circle[data-v-bf3787de] {
  1148. position: relative;
  1149. display: flex;
  1150. flex-direction: row;
  1151. flex-direction: column;
  1152. justify-content: space-between;
  1153. z-index: 10;
  1154. height: calc(100% - 1px);
  1155. }
  1156. .u-tabbar__content__circle__container[data-v-bf3787de] {
  1157. display: flex;
  1158. flex-direction: row;
  1159. flex-direction: column;
  1160. align-items: center;
  1161. justify-content: center;
  1162. height: 100%;
  1163. width: 100%;
  1164. position: relative;
  1165. box-sizing: border-box;
  1166. }
  1167. .u-tabbar__content__circle__icon[data-v-bf3787de] {
  1168. width: 3.125rem;
  1169. height: 3.125rem;
  1170. border-radius: 100%;
  1171. display: flex;
  1172. flex-direction: row;
  1173. justify-content: center;
  1174. align-items: center;
  1175. background-color: var(--u-bg-white);
  1176. /* 将凸起图标上移,与顶部边框线对齐 */
  1177. position: absolute;
  1178. top: -1.71875rem;
  1179. left: 50%;
  1180. z-index: 6;
  1181. transform: translateX(-50%);
  1182. }
  1183. /**
  1184. * 这里是uni-app内置的常用样式变量
  1185. *
  1186. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1187. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1188. *
  1189. */
  1190. /**
  1191. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1192. *
  1193. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1194. */
  1195. [data-v-4c3bdea0]:root,
  1196. body[data-v-4c3bdea0] {
  1197. /* 纯色 */
  1198. --u-white-color: #ffffff;
  1199. --u-black-color: #000000;
  1200. --u-main-color: #303133;
  1201. --u-content-color: #606266;
  1202. --u-tips-color: #909399;
  1203. --u-light-color: #c0c4cc;
  1204. --u-border-color: #e4e7ed;
  1205. --u-divider-color: #e4e7ed;
  1206. --u-mask-color: rgba(0, 0, 0, 0.4);
  1207. --u-shadow-color: rgba(0, 0, 0, 0.1);
  1208. /* 背景色 */
  1209. --u-bg-color: #f3f4f6;
  1210. --u-bg-white: #ffffff;
  1211. --u-bg-gray-light: #f1f1f1;
  1212. --u-bg-gray-dark: #2f343c;
  1213. --u-bg-black: #000000;
  1214. /* 主色 */
  1215. --u-type-primary: #2979ff;
  1216. --u-type-primary-light: #ecf5ff;
  1217. --u-type-primary-disabled: #a0cfff;
  1218. --u-type-primary-dark: #2b85e4;
  1219. /* 警告色 */
  1220. --u-type-warning: #ff9900;
  1221. --u-type-warning-disabled: #fcbd71;
  1222. --u-type-warning-dark: #f29100;
  1223. --u-type-warning-light: #fdf6ec;
  1224. /* 成功色 */
  1225. --u-type-success: #19be6b;
  1226. --u-type-success-disabled: #71d5a1;
  1227. --u-type-success-dark: #18b566;
  1228. --u-type-success-light: #dbf1e1;
  1229. /* 错误色 */
  1230. --u-type-error: #fa3534;
  1231. --u-type-error-disabled: #fab6b6;
  1232. --u-type-error-dark: #dd6161;
  1233. --u-type-error-light: #fef0f0;
  1234. /* 信息色 */
  1235. --u-type-info: #909399;
  1236. --u-type-info-disabled: #c8c9cc;
  1237. --u-type-info-dark: #82848a;
  1238. --u-type-info-light: #f4f4f5;
  1239. }
  1240. /* 颜色变量 */
  1241. /* 行为相关颜色 */
  1242. /* 文字基本颜色 */
  1243. /* 背景颜色 */
  1244. /* 边框颜色 */
  1245. /* 尺寸变量 */
  1246. /* 文字尺寸 */
  1247. /* 图片尺寸 */
  1248. /* Border Radius */
  1249. /* 水平间距 */
  1250. /* 垂直间距 */
  1251. /* 透明度 */
  1252. /* 文章场景相关 */
  1253. .nav-btn[data-v-4c3bdea0] {
  1254. height: 36px;
  1255. width: 36px;
  1256. background-color: #4f4f4f;
  1257. border-radius: 6px;
  1258. display: flex;
  1259. align-items: center;
  1260. justify-content: center;
  1261. color: #f1f1f1;
  1262. }
  1263. [data-v-4c3bdea0] .u-border:after {
  1264. display: none;
  1265. }
  1266. [data-v-4c3bdea0] .u-tabbar__content__circle__border {
  1267. background: transparent !important;
  1268. }
  1269. [data-v-4c3bdea0] .u-tabbar__content__circle__icon {
  1270. top: -1.2rem !important;
  1271. }
  1272. /**
  1273. * 这里是uni-app内置的常用样式变量
  1274. *
  1275. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1276. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1277. *
  1278. */
  1279. /**
  1280. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1281. *
  1282. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1283. */
  1284. [data-v-db7121f0]:root,
  1285. body[data-v-db7121f0] {
  1286. /* 纯色 */
  1287. --u-white-color: #ffffff;
  1288. --u-black-color: #000000;
  1289. --u-main-color: #303133;
  1290. --u-content-color: #606266;
  1291. --u-tips-color: #909399;
  1292. --u-light-color: #c0c4cc;
  1293. --u-border-color: #e4e7ed;
  1294. --u-divider-color: #e4e7ed;
  1295. --u-mask-color: rgba(0, 0, 0, 0.4);
  1296. --u-shadow-color: rgba(0, 0, 0, 0.1);
  1297. /* 背景色 */
  1298. --u-bg-color: #f3f4f6;
  1299. --u-bg-white: #ffffff;
  1300. --u-bg-gray-light: #f1f1f1;
  1301. --u-bg-gray-dark: #2f343c;
  1302. --u-bg-black: #000000;
  1303. /* 主色 */
  1304. --u-type-primary: #2979ff;
  1305. --u-type-primary-light: #ecf5ff;
  1306. --u-type-primary-disabled: #a0cfff;
  1307. --u-type-primary-dark: #2b85e4;
  1308. /* 警告色 */
  1309. --u-type-warning: #ff9900;
  1310. --u-type-warning-disabled: #fcbd71;
  1311. --u-type-warning-dark: #f29100;
  1312. --u-type-warning-light: #fdf6ec;
  1313. /* 成功色 */
  1314. --u-type-success: #19be6b;
  1315. --u-type-success-disabled: #71d5a1;
  1316. --u-type-success-dark: #18b566;
  1317. --u-type-success-light: #dbf1e1;
  1318. /* 错误色 */
  1319. --u-type-error: #fa3534;
  1320. --u-type-error-disabled: #fab6b6;
  1321. --u-type-error-dark: #dd6161;
  1322. --u-type-error-light: #fef0f0;
  1323. /* 信息色 */
  1324. --u-type-info: #909399;
  1325. --u-type-info-disabled: #c8c9cc;
  1326. --u-type-info-dark: #82848a;
  1327. --u-type-info-light: #f4f4f5;
  1328. }
  1329. /* 颜色变量 */
  1330. /* 行为相关颜色 */
  1331. /* 文字基本颜色 */
  1332. /* 背景颜色 */
  1333. /* 边框颜色 */
  1334. /* 尺寸变量 */
  1335. /* 文字尺寸 */
  1336. /* 图片尺寸 */
  1337. /* Border Radius */
  1338. /* 水平间距 */
  1339. /* 垂直间距 */
  1340. /* 透明度 */
  1341. /* 文章场景相关 */
  1342. .nav-btn[data-v-db7121f0] {
  1343. height: 36px;
  1344. width: 36px;
  1345. background-color: #4f4f4f;
  1346. border-radius: 6px;
  1347. display: flex;
  1348. align-items: center;
  1349. justify-content: center;
  1350. color: #f1f1f1;
  1351. }
  1352. .u-mask[data-v-db7121f0] {
  1353. position: fixed;
  1354. top: 0;
  1355. left: 0;
  1356. right: 0;
  1357. bottom: 0;
  1358. opacity: 0;
  1359. transition: transform 0.3s;
  1360. }
  1361. .u-mask-show[data-v-db7121f0] {
  1362. opacity: 1;
  1363. }
  1364. .u-mask-zoom[data-v-db7121f0] {
  1365. transform: scale(1.2, 1.2);
  1366. }
  1367. /**
  1368. * 这里是uni-app内置的常用样式变量
  1369. *
  1370. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1371. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1372. *
  1373. */
  1374. /**
  1375. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1376. *
  1377. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1378. */
  1379. [data-v-4924bdd9]:root,
  1380. body[data-v-4924bdd9] {
  1381. /* 纯色 */
  1382. --u-white-color: #ffffff;
  1383. --u-black-color: #000000;
  1384. --u-main-color: #303133;
  1385. --u-content-color: #606266;
  1386. --u-tips-color: #909399;
  1387. --u-light-color: #c0c4cc;
  1388. --u-border-color: #e4e7ed;
  1389. --u-divider-color: #e4e7ed;
  1390. --u-mask-color: rgba(0, 0, 0, 0.4);
  1391. --u-shadow-color: rgba(0, 0, 0, 0.1);
  1392. /* 背景色 */
  1393. --u-bg-color: #f3f4f6;
  1394. --u-bg-white: #ffffff;
  1395. --u-bg-gray-light: #f1f1f1;
  1396. --u-bg-gray-dark: #2f343c;
  1397. --u-bg-black: #000000;
  1398. /* 主色 */
  1399. --u-type-primary: #2979ff;
  1400. --u-type-primary-light: #ecf5ff;
  1401. --u-type-primary-disabled: #a0cfff;
  1402. --u-type-primary-dark: #2b85e4;
  1403. /* 警告色 */
  1404. --u-type-warning: #ff9900;
  1405. --u-type-warning-disabled: #fcbd71;
  1406. --u-type-warning-dark: #f29100;
  1407. --u-type-warning-light: #fdf6ec;
  1408. /* 成功色 */
  1409. --u-type-success: #19be6b;
  1410. --u-type-success-disabled: #71d5a1;
  1411. --u-type-success-dark: #18b566;
  1412. --u-type-success-light: #dbf1e1;
  1413. /* 错误色 */
  1414. --u-type-error: #fa3534;
  1415. --u-type-error-disabled: #fab6b6;
  1416. --u-type-error-dark: #dd6161;
  1417. --u-type-error-light: #fef0f0;
  1418. /* 信息色 */
  1419. --u-type-info: #909399;
  1420. --u-type-info-disabled: #c8c9cc;
  1421. --u-type-info-dark: #82848a;
  1422. --u-type-info-light: #f4f4f5;
  1423. }
  1424. /* 颜色变量 */
  1425. /* 行为相关颜色 */
  1426. /* 文字基本颜色 */
  1427. /* 背景颜色 */
  1428. /* 边框颜色 */
  1429. /* 尺寸变量 */
  1430. /* 文字尺寸 */
  1431. /* 图片尺寸 */
  1432. /* Border Radius */
  1433. /* 水平间距 */
  1434. /* 垂直间距 */
  1435. /* 透明度 */
  1436. /* 文章场景相关 */
  1437. .nav-btn[data-v-4924bdd9] {
  1438. height: 36px;
  1439. width: 36px;
  1440. background-color: #4f4f4f;
  1441. border-radius: 6px;
  1442. display: flex;
  1443. align-items: center;
  1444. justify-content: center;
  1445. color: #f1f1f1;
  1446. }
  1447. .u-drawer[data-v-4924bdd9] {
  1448. display: block;
  1449. position: fixed;
  1450. top: 0;
  1451. left: 0;
  1452. right: 0;
  1453. bottom: 0;
  1454. overflow: hidden;
  1455. }
  1456. .u-drawer-content[data-v-4924bdd9] {
  1457. display: block;
  1458. position: absolute;
  1459. z-index: 1003;
  1460. transition: all 0.25s linear;
  1461. }
  1462. .u-drawer__scroll-view[data-v-4924bdd9] {
  1463. width: 100%;
  1464. height: 100%;
  1465. }
  1466. .u-drawer-left[data-v-4924bdd9] {
  1467. top: 0;
  1468. bottom: 0;
  1469. left: 0;
  1470. background-color: var(--u-bg-white);
  1471. }
  1472. .u-drawer-right[data-v-4924bdd9] {
  1473. right: 0;
  1474. top: 0;
  1475. bottom: 0;
  1476. background-color: var(--u-bg-white);
  1477. }
  1478. .u-drawer-top[data-v-4924bdd9] {
  1479. top: 0;
  1480. left: 0;
  1481. right: 0;
  1482. background-color: var(--u-bg-white);
  1483. }
  1484. .u-drawer-bottom[data-v-4924bdd9] {
  1485. bottom: 0;
  1486. left: 0;
  1487. right: 0;
  1488. background-color: var(--u-bg-white);
  1489. }
  1490. .u-drawer-center[data-v-4924bdd9] {
  1491. display: flex;
  1492. flex-direction: row;
  1493. flex-direction: column;
  1494. bottom: 0;
  1495. left: 0;
  1496. right: 0;
  1497. top: 0;
  1498. justify-content: center;
  1499. align-items: center;
  1500. opacity: 0;
  1501. z-index: 99999;
  1502. }
  1503. .u-mode-center-box[data-v-4924bdd9] {
  1504. min-width: 3.125rem;
  1505. min-height: 3.125rem;
  1506. display: block;
  1507. position: relative;
  1508. background-color: var(--u-bg-white);
  1509. }
  1510. .u-drawer-content-visible.u-drawer-center[data-v-4924bdd9] {
  1511. transform: scale(1);
  1512. opacity: 1;
  1513. }
  1514. .u-animation-zoom[data-v-4924bdd9] {
  1515. transform: scale(1.15);
  1516. }
  1517. .u-drawer-content-visible[data-v-4924bdd9] {
  1518. transform: translate3D(0px, 0px, 0px) !important;
  1519. }
  1520. .u-close[data-v-4924bdd9] {
  1521. position: absolute;
  1522. z-index: 3;
  1523. }
  1524. .u-close--top-left[data-v-4924bdd9] {
  1525. top: 0.9375rem;
  1526. left: 0.9375rem;
  1527. }
  1528. .u-close--top-right[data-v-4924bdd9] {
  1529. top: 0.9375rem;
  1530. right: 0.9375rem;
  1531. }
  1532. .u-close--bottom-left[data-v-4924bdd9] {
  1533. bottom: 0.9375rem;
  1534. left: 0.9375rem;
  1535. }
  1536. .u-close--bottom-right[data-v-4924bdd9] {
  1537. right: 0.9375rem;
  1538. bottom: 0.9375rem;
  1539. }
  1540. /**
  1541. * 这里是uni-app内置的常用样式变量
  1542. *
  1543. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1544. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1545. *
  1546. */
  1547. /**
  1548. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1549. *
  1550. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1551. */
  1552. [data-v-9666de9c]:root,
  1553. body[data-v-9666de9c] {
  1554. /* 纯色 */
  1555. --u-white-color: #ffffff;
  1556. --u-black-color: #000000;
  1557. --u-main-color: #303133;
  1558. --u-content-color: #606266;
  1559. --u-tips-color: #909399;
  1560. --u-light-color: #c0c4cc;
  1561. --u-border-color: #e4e7ed;
  1562. --u-divider-color: #e4e7ed;
  1563. --u-mask-color: rgba(0, 0, 0, 0.4);
  1564. --u-shadow-color: rgba(0, 0, 0, 0.1);
  1565. /* 背景色 */
  1566. --u-bg-color: #f3f4f6;
  1567. --u-bg-white: #ffffff;
  1568. --u-bg-gray-light: #f1f1f1;
  1569. --u-bg-gray-dark: #2f343c;
  1570. --u-bg-black: #000000;
  1571. /* 主色 */
  1572. --u-type-primary: #2979ff;
  1573. --u-type-primary-light: #ecf5ff;
  1574. --u-type-primary-disabled: #a0cfff;
  1575. --u-type-primary-dark: #2b85e4;
  1576. /* 警告色 */
  1577. --u-type-warning: #ff9900;
  1578. --u-type-warning-disabled: #fcbd71;
  1579. --u-type-warning-dark: #f29100;
  1580. --u-type-warning-light: #fdf6ec;
  1581. /* 成功色 */
  1582. --u-type-success: #19be6b;
  1583. --u-type-success-disabled: #71d5a1;
  1584. --u-type-success-dark: #18b566;
  1585. --u-type-success-light: #dbf1e1;
  1586. /* 错误色 */
  1587. --u-type-error: #fa3534;
  1588. --u-type-error-disabled: #fab6b6;
  1589. --u-type-error-dark: #dd6161;
  1590. --u-type-error-light: #fef0f0;
  1591. /* 信息色 */
  1592. --u-type-info: #909399;
  1593. --u-type-info-disabled: #c8c9cc;
  1594. --u-type-info-dark: #82848a;
  1595. --u-type-info-light: #f4f4f5;
  1596. }
  1597. /* 颜色变量 */
  1598. /* 行为相关颜色 */
  1599. /* 文字基本颜色 */
  1600. /* 背景颜色 */
  1601. /* 边框颜色 */
  1602. /* 尺寸变量 */
  1603. /* 文字尺寸 */
  1604. /* 图片尺寸 */
  1605. /* Border Radius */
  1606. /* 水平间距 */
  1607. /* 垂直间距 */
  1608. /* 透明度 */
  1609. /* 文章场景相关 */
  1610. .nav-btn[data-v-9666de9c] {
  1611. height: 36px;
  1612. width: 36px;
  1613. background-color: #4f4f4f;
  1614. border-radius: 6px;
  1615. display: flex;
  1616. align-items: center;
  1617. justify-content: center;
  1618. color: #f1f1f1;
  1619. }
  1620. .u-loading-circle[data-v-9666de9c] {
  1621. display: inline-flex;
  1622. vertical-align: middle;
  1623. width: 0.875rem;
  1624. height: 0.875rem;
  1625. background: 0 0;
  1626. border-radius: 50%;
  1627. border: 2px solid;
  1628. border-color: var(--u-divider-color) var(--u-divider-color) var(--u-divider-color) var(--u-tips-color);
  1629. animation: u-circle-9666de9c 1s linear infinite;
  1630. }
  1631. .u-loading-flower[data-v-9666de9c] {
  1632. width: 20px;
  1633. height: 20px;
  1634. display: inline-block;
  1635. vertical-align: middle;
  1636. animation: u-flower-9666de9c 1s steps(12) infinite;
  1637. background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=) no-repeat;
  1638. background-size: 100%;
  1639. }
  1640. @keyframes u-flower-9666de9c {
  1641. 0% {
  1642. transform: rotate(0deg);
  1643. }
  1644. to {
  1645. transform: rotate(1turn);
  1646. }
  1647. }
  1648. @keyframes u-circle-9666de9c {
  1649. 0% {
  1650. transform: rotate(0);
  1651. }
  1652. 100% {
  1653. transform: rotate(360deg);
  1654. }
  1655. }
  1656. /**
  1657. * 这里是uni-app内置的常用样式变量
  1658. *
  1659. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1660. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1661. *
  1662. */
  1663. /**
  1664. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1665. *
  1666. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1667. */
  1668. [data-v-3477805f]:root,
  1669. body[data-v-3477805f] {
  1670. /* 纯色 */
  1671. --u-white-color: #ffffff;
  1672. --u-black-color: #000000;
  1673. --u-main-color: #303133;
  1674. --u-content-color: #606266;
  1675. --u-tips-color: #909399;
  1676. --u-light-color: #c0c4cc;
  1677. --u-border-color: #e4e7ed;
  1678. --u-divider-color: #e4e7ed;
  1679. --u-mask-color: rgba(0, 0, 0, 0.4);
  1680. --u-shadow-color: rgba(0, 0, 0, 0.1);
  1681. /* 背景色 */
  1682. --u-bg-color: #f3f4f6;
  1683. --u-bg-white: #ffffff;
  1684. --u-bg-gray-light: #f1f1f1;
  1685. --u-bg-gray-dark: #2f343c;
  1686. --u-bg-black: #000000;
  1687. /* 主色 */
  1688. --u-type-primary: #2979ff;
  1689. --u-type-primary-light: #ecf5ff;
  1690. --u-type-primary-disabled: #a0cfff;
  1691. --u-type-primary-dark: #2b85e4;
  1692. /* 警告色 */
  1693. --u-type-warning: #ff9900;
  1694. --u-type-warning-disabled: #fcbd71;
  1695. --u-type-warning-dark: #f29100;
  1696. --u-type-warning-light: #fdf6ec;
  1697. /* 成功色 */
  1698. --u-type-success: #19be6b;
  1699. --u-type-success-disabled: #71d5a1;
  1700. --u-type-success-dark: #18b566;
  1701. --u-type-success-light: #dbf1e1;
  1702. /* 错误色 */
  1703. --u-type-error: #fa3534;
  1704. --u-type-error-disabled: #fab6b6;
  1705. --u-type-error-dark: #dd6161;
  1706. --u-type-error-light: #fef0f0;
  1707. /* 信息色 */
  1708. --u-type-info: #909399;
  1709. --u-type-info-disabled: #c8c9cc;
  1710. --u-type-info-dark: #82848a;
  1711. --u-type-info-light: #f4f4f5;
  1712. }
  1713. /* 颜色变量 */
  1714. /* 行为相关颜色 */
  1715. /* 文字基本颜色 */
  1716. /* 背景颜色 */
  1717. /* 边框颜色 */
  1718. /* 尺寸变量 */
  1719. /* 文字尺寸 */
  1720. /* 图片尺寸 */
  1721. /* Border Radius */
  1722. /* 水平间距 */
  1723. /* 垂直间距 */
  1724. /* 透明度 */
  1725. /* 文章场景相关 */
  1726. .nav-btn[data-v-3477805f] {
  1727. height: 36px;
  1728. width: 36px;
  1729. background-color: #4f4f4f;
  1730. border-radius: 6px;
  1731. display: flex;
  1732. align-items: center;
  1733. justify-content: center;
  1734. color: #f1f1f1;
  1735. }
  1736. .u-model[data-v-3477805f] {
  1737. height: auto;
  1738. overflow: hidden;
  1739. font-size: 1rem;
  1740. background-color: var(--u-bg-white);
  1741. }
  1742. .u-model__btn--hover[data-v-3477805f] {
  1743. background-color: rgb(230, 230, 230);
  1744. }
  1745. .u-model__title[data-v-3477805f] {
  1746. padding-top: 1.5rem;
  1747. font-weight: 500;
  1748. text-align: center;
  1749. color: var(--u-main-color);
  1750. }
  1751. .u-model__content__message[data-v-3477805f] {
  1752. padding: 1.5rem;
  1753. font-size: 0.9375rem;
  1754. text-align: center;
  1755. color: var(--u-content-color);
  1756. }
  1757. .u-model__footer[data-v-3477805f] {
  1758. display: flex;
  1759. flex-direction: row;
  1760. }
  1761. .u-model__footer__button[data-v-3477805f] {
  1762. flex: 1;
  1763. height: 3.125rem;
  1764. line-height: 3.125rem;
  1765. font-size: 1rem;
  1766. box-sizing: border-box;
  1767. cursor: pointer;
  1768. text-align: center;
  1769. border-radius: 0.125rem;
  1770. }
  1771. /**
  1772. * 这里是uni-app内置的常用样式变量
  1773. *
  1774. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1775. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1776. *
  1777. */
  1778. /**
  1779. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1780. *
  1781. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1782. */
  1783. [data-v-d205c001]:root,
  1784. body[data-v-d205c001] {
  1785. /* 纯色 */
  1786. --u-white-color: #ffffff;
  1787. --u-black-color: #000000;
  1788. --u-main-color: #303133;
  1789. --u-content-color: #606266;
  1790. --u-tips-color: #909399;
  1791. --u-light-color: #c0c4cc;
  1792. --u-border-color: #e4e7ed;
  1793. --u-divider-color: #e4e7ed;
  1794. --u-mask-color: rgba(0, 0, 0, 0.4);
  1795. --u-shadow-color: rgba(0, 0, 0, 0.1);
  1796. /* 背景色 */
  1797. --u-bg-color: #f3f4f6;
  1798. --u-bg-white: #ffffff;
  1799. --u-bg-gray-light: #f1f1f1;
  1800. --u-bg-gray-dark: #2f343c;
  1801. --u-bg-black: #000000;
  1802. /* 主色 */
  1803. --u-type-primary: #2979ff;
  1804. --u-type-primary-light: #ecf5ff;
  1805. --u-type-primary-disabled: #a0cfff;
  1806. --u-type-primary-dark: #2b85e4;
  1807. /* 警告色 */
  1808. --u-type-warning: #ff9900;
  1809. --u-type-warning-disabled: #fcbd71;
  1810. --u-type-warning-dark: #f29100;
  1811. --u-type-warning-light: #fdf6ec;
  1812. /* 成功色 */
  1813. --u-type-success: #19be6b;
  1814. --u-type-success-disabled: #71d5a1;
  1815. --u-type-success-dark: #18b566;
  1816. --u-type-success-light: #dbf1e1;
  1817. /* 错误色 */
  1818. --u-type-error: #fa3534;
  1819. --u-type-error-disabled: #fab6b6;
  1820. --u-type-error-dark: #dd6161;
  1821. --u-type-error-light: #fef0f0;
  1822. /* 信息色 */
  1823. --u-type-info: #909399;
  1824. --u-type-info-disabled: #c8c9cc;
  1825. --u-type-info-dark: #82848a;
  1826. --u-type-info-light: #f4f4f5;
  1827. }
  1828. /* 颜色变量 */
  1829. /* 行为相关颜色 */
  1830. /* 文字基本颜色 */
  1831. /* 背景颜色 */
  1832. /* 边框颜色 */
  1833. /* 尺寸变量 */
  1834. /* 文字尺寸 */
  1835. /* 图片尺寸 */
  1836. /* Border Radius */
  1837. /* 水平间距 */
  1838. /* 垂直间距 */
  1839. /* 透明度 */
  1840. /* 文章场景相关 */
  1841. .nav-btn[data-v-d205c001] {
  1842. height: 36px;
  1843. width: 36px;
  1844. background-color: #4f4f4f;
  1845. border-radius: 6px;
  1846. display: flex;
  1847. align-items: center;
  1848. justify-content: center;
  1849. color: #f1f1f1;
  1850. }
  1851. .u-input[data-v-d205c001] {
  1852. position: relative;
  1853. flex: 1;
  1854. display: flex;
  1855. flex-direction: row;
  1856. }
  1857. .u-input__select-overlay[data-v-d205c001] {
  1858. position: absolute;
  1859. inset: 0;
  1860. z-index: 1;
  1861. }
  1862. .u-input__input[data-v-d205c001] {
  1863. font-size: 0.875rem;
  1864. color: var(--u-main-color);
  1865. flex: 1;
  1866. }
  1867. .u-input__textarea[data-v-d205c001] {
  1868. width: auto;
  1869. font-size: 0.875rem;
  1870. color: var(--u-main-color);
  1871. line-height: normal;
  1872. flex: 1;
  1873. }
  1874. .u-input__count[data-v-d205c001] {
  1875. position: absolute;
  1876. right: 1px;
  1877. bottom: 0;
  1878. font-size: 12px;
  1879. color: var(--u-tips-color);
  1880. background-color: var(--u-bg-white);
  1881. padding: 1px 4px;
  1882. border-radius: 10px;
  1883. line-height: 16px;
  1884. z-index: 2;
  1885. }
  1886. .u-input--border[data-v-d205c001] {
  1887. border-radius: 4px;
  1888. border: 1px solid var(--u-border-color);
  1889. }
  1890. .u-input--error[data-v-d205c001] {
  1891. border-color: var(--u-type-error) !important;
  1892. }
  1893. .u-input__right-icon[data-v-d205c001] {
  1894. position: relative;
  1895. z-index: 2;
  1896. }
  1897. .u-input__right-icon__item[data-v-d205c001] {
  1898. margin-left: 0.3125rem;
  1899. }
  1900. .u-input__right-icon--select[data-v-d205c001] {
  1901. transition: transform 0.4s;
  1902. }
  1903. .u-input__right-icon--select--reverse[data-v-d205c001] {
  1904. transform: rotate(-180deg);
  1905. }
  1906. /**
  1907. * 这里是uni-app内置的常用样式变量
  1908. *
  1909. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1910. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1911. *
  1912. */
  1913. /**
  1914. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1915. *
  1916. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1917. */
  1918. [data-v-2ea57d76]:root,
  1919. body[data-v-2ea57d76] {
  1920. /* 纯色 */
  1921. --u-white-color: #ffffff;
  1922. --u-black-color: #000000;
  1923. --u-main-color: #303133;
  1924. --u-content-color: #606266;
  1925. --u-tips-color: #909399;
  1926. --u-light-color: #c0c4cc;
  1927. --u-border-color: #e4e7ed;
  1928. --u-divider-color: #e4e7ed;
  1929. --u-mask-color: rgba(0, 0, 0, 0.4);
  1930. --u-shadow-color: rgba(0, 0, 0, 0.1);
  1931. /* 背景色 */
  1932. --u-bg-color: #f3f4f6;
  1933. --u-bg-white: #ffffff;
  1934. --u-bg-gray-light: #f1f1f1;
  1935. --u-bg-gray-dark: #2f343c;
  1936. --u-bg-black: #000000;
  1937. /* 主色 */
  1938. --u-type-primary: #2979ff;
  1939. --u-type-primary-light: #ecf5ff;
  1940. --u-type-primary-disabled: #a0cfff;
  1941. --u-type-primary-dark: #2b85e4;
  1942. /* 警告色 */
  1943. --u-type-warning: #ff9900;
  1944. --u-type-warning-disabled: #fcbd71;
  1945. --u-type-warning-dark: #f29100;
  1946. --u-type-warning-light: #fdf6ec;
  1947. /* 成功色 */
  1948. --u-type-success: #19be6b;
  1949. --u-type-success-disabled: #71d5a1;
  1950. --u-type-success-dark: #18b566;
  1951. --u-type-success-light: #dbf1e1;
  1952. /* 错误色 */
  1953. --u-type-error: #fa3534;
  1954. --u-type-error-disabled: #fab6b6;
  1955. --u-type-error-dark: #dd6161;
  1956. --u-type-error-light: #fef0f0;
  1957. /* 信息色 */
  1958. --u-type-info: #909399;
  1959. --u-type-info-disabled: #c8c9cc;
  1960. --u-type-info-dark: #82848a;
  1961. --u-type-info-light: #f4f4f5;
  1962. }
  1963. /* 颜色变量 */
  1964. /* 行为相关颜色 */
  1965. /* 文字基本颜色 */
  1966. /* 背景颜色 */
  1967. /* 边框颜色 */
  1968. /* 尺寸变量 */
  1969. /* 文字尺寸 */
  1970. /* 图片尺寸 */
  1971. /* Border Radius */
  1972. /* 水平间距 */
  1973. /* 垂直间距 */
  1974. /* 透明度 */
  1975. /* 文章场景相关 */
  1976. .nav-btn[data-v-2ea57d76] {
  1977. height: 36px;
  1978. width: 36px;
  1979. background-color: #4f4f4f;
  1980. border-radius: 6px;
  1981. display: flex;
  1982. align-items: center;
  1983. justify-content: center;
  1984. color: #f1f1f1;
  1985. }
  1986. .u-tag[data-v-2ea57d76] {
  1987. box-sizing: border-box;
  1988. align-items: center;
  1989. border-radius: 0.1875rem;
  1990. display: inline-block;
  1991. line-height: 1;
  1992. }
  1993. .u-size-default[data-v-2ea57d76] {
  1994. font-size: 0.6875rem;
  1995. padding: 0.375rem 0.6875rem;
  1996. }
  1997. .u-size-mini[data-v-2ea57d76] {
  1998. font-size: 0.625rem;
  1999. padding: 0.1875rem 0.375rem;
  2000. }
  2001. .u-mode-light-primary[data-v-2ea57d76] {
  2002. background-color: var(--u-type-primary-light);
  2003. color: var(--u-type-primary);
  2004. border: 1px solid var(--u-type-primary-disabled);
  2005. }
  2006. .u-mode-light-success[data-v-2ea57d76] {
  2007. background-color: var(--u-type-success-light);
  2008. color: var(--u-type-success);
  2009. border: 1px solid var(--u-type-success-disabled);
  2010. }
  2011. .u-mode-light-error[data-v-2ea57d76] {
  2012. background-color: var(--u-type-error-light);
  2013. color: var(--u-type-error);
  2014. border: 1px solid var(--u-type-error-disabled);
  2015. }
  2016. .u-mode-light-warning[data-v-2ea57d76] {
  2017. background-color: var(--u-type-warning-light);
  2018. color: var(--u-type-warning);
  2019. border: 1px solid var(--u-type-warning-disabled);
  2020. }
  2021. .u-mode-light-info[data-v-2ea57d76] {
  2022. background-color: var(--u-type-info-light);
  2023. color: var(--u-type-info);
  2024. border: 1px solid var(--u-type-info-disabled);
  2025. }
  2026. .u-mode-dark-primary[data-v-2ea57d76] {
  2027. background-color: var(--u-type-primary);
  2028. color: var(--u-white-color);
  2029. }
  2030. .u-mode-dark-success[data-v-2ea57d76] {
  2031. background-color: var(--u-type-success);
  2032. color: var(--u-white-color);
  2033. }
  2034. .u-mode-dark-error[data-v-2ea57d76] {
  2035. background-color: var(--u-type-error);
  2036. color: var(--u-white-color);
  2037. }
  2038. .u-mode-dark-warning[data-v-2ea57d76] {
  2039. background-color: var(--u-type-warning);
  2040. color: var(--u-white-color);
  2041. }
  2042. .u-mode-dark-info[data-v-2ea57d76] {
  2043. background-color: var(--u-type-info);
  2044. color: var(--u-white-color);
  2045. }
  2046. .u-mode-plain-primary[data-v-2ea57d76] {
  2047. background-color: var(--u-bg-white);
  2048. color: var(--u-type-primary);
  2049. border: 1px solid var(--u-type-primary);
  2050. }
  2051. .u-mode-plain-success[data-v-2ea57d76] {
  2052. background-color: var(--u-bg-white);
  2053. color: var(--u-type-success);
  2054. border: 1px solid var(--u-type-success);
  2055. }
  2056. .u-mode-plain-error[data-v-2ea57d76] {
  2057. background-color: var(--u-bg-white);
  2058. color: var(--u-type-error);
  2059. border: 1px solid var(--u-type-error);
  2060. }
  2061. .u-mode-plain-warning[data-v-2ea57d76] {
  2062. background-color: var(--u-bg-white);
  2063. color: var(--u-type-warning);
  2064. border: 1px solid var(--u-type-warning);
  2065. }
  2066. .u-mode-plain-info[data-v-2ea57d76] {
  2067. background-color: var(--u-bg-white);
  2068. color: var(--u-type-info);
  2069. border: 1px solid var(--u-type-info);
  2070. }
  2071. .u-disabled[data-v-2ea57d76] {
  2072. opacity: 0.55;
  2073. }
  2074. .u-shape-circle[data-v-2ea57d76] {
  2075. border-radius: 3.125rem;
  2076. }
  2077. .u-shape-circleRight[data-v-2ea57d76] {
  2078. border-radius: 0 3.125rem 3.125rem 0;
  2079. }
  2080. .u-shape-circleLeft[data-v-2ea57d76] {
  2081. border-radius: 3.125rem 0 0 3.125rem;
  2082. }
  2083. .u-close-icon[data-v-2ea57d76] {
  2084. margin-left: 0.4375rem;
  2085. font-size: 0.6875rem;
  2086. color: var(--u-type-success);
  2087. }
  2088. .u-icon-wrap[data-v-2ea57d76] {
  2089. display: inline-flex;
  2090. transform: scale(0.86);
  2091. }
  2092. /**
  2093. * 这里是uni-app内置的常用样式变量
  2094. *
  2095. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2096. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2097. *
  2098. */
  2099. /**
  2100. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2101. *
  2102. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2103. */
  2104. [data-v-5731e8cb]:root,
  2105. body[data-v-5731e8cb] {
  2106. /* 纯色 */
  2107. --u-white-color: #ffffff;
  2108. --u-black-color: #000000;
  2109. --u-main-color: #303133;
  2110. --u-content-color: #606266;
  2111. --u-tips-color: #909399;
  2112. --u-light-color: #c0c4cc;
  2113. --u-border-color: #e4e7ed;
  2114. --u-divider-color: #e4e7ed;
  2115. --u-mask-color: rgba(0, 0, 0, 0.4);
  2116. --u-shadow-color: rgba(0, 0, 0, 0.1);
  2117. /* 背景色 */
  2118. --u-bg-color: #f3f4f6;
  2119. --u-bg-white: #ffffff;
  2120. --u-bg-gray-light: #f1f1f1;
  2121. --u-bg-gray-dark: #2f343c;
  2122. --u-bg-black: #000000;
  2123. /* 主色 */
  2124. --u-type-primary: #2979ff;
  2125. --u-type-primary-light: #ecf5ff;
  2126. --u-type-primary-disabled: #a0cfff;
  2127. --u-type-primary-dark: #2b85e4;
  2128. /* 警告色 */
  2129. --u-type-warning: #ff9900;
  2130. --u-type-warning-disabled: #fcbd71;
  2131. --u-type-warning-dark: #f29100;
  2132. --u-type-warning-light: #fdf6ec;
  2133. /* 成功色 */
  2134. --u-type-success: #19be6b;
  2135. --u-type-success-disabled: #71d5a1;
  2136. --u-type-success-dark: #18b566;
  2137. --u-type-success-light: #dbf1e1;
  2138. /* 错误色 */
  2139. --u-type-error: #fa3534;
  2140. --u-type-error-disabled: #fab6b6;
  2141. --u-type-error-dark: #dd6161;
  2142. --u-type-error-light: #fef0f0;
  2143. /* 信息色 */
  2144. --u-type-info: #909399;
  2145. --u-type-info-disabled: #c8c9cc;
  2146. --u-type-info-dark: #82848a;
  2147. --u-type-info-light: #f4f4f5;
  2148. }
  2149. /* 颜色变量 */
  2150. /* 行为相关颜色 */
  2151. /* 文字基本颜色 */
  2152. /* 背景颜色 */
  2153. /* 边框颜色 */
  2154. /* 尺寸变量 */
  2155. /* 文字尺寸 */
  2156. /* 图片尺寸 */
  2157. /* Border Radius */
  2158. /* 水平间距 */
  2159. /* 垂直间距 */
  2160. /* 透明度 */
  2161. /* 文章场景相关 */
  2162. .nav-btn[data-v-5731e8cb] {
  2163. height: 36px;
  2164. width: 36px;
  2165. background-color: #4f4f4f;
  2166. border-radius: 6px;
  2167. display: flex;
  2168. align-items: center;
  2169. justify-content: center;
  2170. color: #f1f1f1;
  2171. }
  2172. .u-navbar[data-v-5731e8cb] {
  2173. width: 100%;
  2174. }
  2175. .u-navbar-fixed[data-v-5731e8cb] {
  2176. position: fixed;
  2177. left: 0;
  2178. right: 0;
  2179. top: 0;
  2180. z-index: 991;
  2181. }
  2182. .u-status-bar[data-v-5731e8cb] {
  2183. width: 100%;
  2184. }
  2185. .u-navbar-inner[data-v-5731e8cb] {
  2186. display: flex;
  2187. flex-direction: row;
  2188. justify-content: space-between;
  2189. position: relative;
  2190. align-items: center;
  2191. }
  2192. .u-back-wrap[data-v-5731e8cb] {
  2193. display: flex;
  2194. flex-direction: row;
  2195. align-items: center;
  2196. flex: 1;
  2197. flex-grow: 0;
  2198. padding: 0.4375rem 0.4375rem 0.4375rem 0.75rem;
  2199. }
  2200. .u-back-text[data-v-5731e8cb] {
  2201. padding-left: 0.125rem;
  2202. font-size: 0.9375rem;
  2203. }
  2204. .u-navbar-content-title[data-v-5731e8cb] {
  2205. display: flex;
  2206. flex-direction: row;
  2207. align-items: center;
  2208. justify-content: center;
  2209. flex: 1;
  2210. position: absolute;
  2211. left: 0;
  2212. right: 0;
  2213. height: 1.875rem;
  2214. text-align: center;
  2215. flex-shrink: 0;
  2216. }
  2217. .u-navbar-centent-slot[data-v-5731e8cb] {
  2218. flex: 1;
  2219. }
  2220. .u-title[data-v-5731e8cb] {
  2221. line-height: 1.875rem;
  2222. font-size: 1rem;
  2223. flex: 1;
  2224. }
  2225. .u-navbar-right[data-v-5731e8cb] {
  2226. flex: 1;
  2227. display: flex;
  2228. flex-direction: row;
  2229. align-items: center;
  2230. justify-content: flex-end;
  2231. }
  2232. .u-slot-content[data-v-5731e8cb] {
  2233. flex: 1;
  2234. display: flex;
  2235. flex-direction: row;
  2236. align-items: center;
  2237. }
  2238. /**
  2239. * 这里是uni-app内置的常用样式变量
  2240. *
  2241. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2242. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2243. *
  2244. */
  2245. /**
  2246. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2247. *
  2248. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2249. */
  2250. [data-v-2e60fab0]:root,
  2251. body[data-v-2e60fab0] {
  2252. /* 纯色 */
  2253. --u-white-color: #ffffff;
  2254. --u-black-color: #000000;
  2255. --u-main-color: #303133;
  2256. --u-content-color: #606266;
  2257. --u-tips-color: #909399;
  2258. --u-light-color: #c0c4cc;
  2259. --u-border-color: #e4e7ed;
  2260. --u-divider-color: #e4e7ed;
  2261. --u-mask-color: rgba(0, 0, 0, 0.4);
  2262. --u-shadow-color: rgba(0, 0, 0, 0.1);
  2263. /* 背景色 */
  2264. --u-bg-color: #f3f4f6;
  2265. --u-bg-white: #ffffff;
  2266. --u-bg-gray-light: #f1f1f1;
  2267. --u-bg-gray-dark: #2f343c;
  2268. --u-bg-black: #000000;
  2269. /* 主色 */
  2270. --u-type-primary: #2979ff;
  2271. --u-type-primary-light: #ecf5ff;
  2272. --u-type-primary-disabled: #a0cfff;
  2273. --u-type-primary-dark: #2b85e4;
  2274. /* 警告色 */
  2275. --u-type-warning: #ff9900;
  2276. --u-type-warning-disabled: #fcbd71;
  2277. --u-type-warning-dark: #f29100;
  2278. --u-type-warning-light: #fdf6ec;
  2279. /* 成功色 */
  2280. --u-type-success: #19be6b;
  2281. --u-type-success-disabled: #71d5a1;
  2282. --u-type-success-dark: #18b566;
  2283. --u-type-success-light: #dbf1e1;
  2284. /* 错误色 */
  2285. --u-type-error: #fa3534;
  2286. --u-type-error-disabled: #fab6b6;
  2287. --u-type-error-dark: #dd6161;
  2288. --u-type-error-light: #fef0f0;
  2289. /* 信息色 */
  2290. --u-type-info: #909399;
  2291. --u-type-info-disabled: #c8c9cc;
  2292. --u-type-info-dark: #82848a;
  2293. --u-type-info-light: #f4f4f5;
  2294. }
  2295. /* 颜色变量 */
  2296. /* 行为相关颜色 */
  2297. /* 文字基本颜色 */
  2298. /* 背景颜色 */
  2299. /* 边框颜色 */
  2300. /* 尺寸变量 */
  2301. /* 文字尺寸 */
  2302. /* 图片尺寸 */
  2303. /* Border Radius */
  2304. /* 水平间距 */
  2305. /* 垂直间距 */
  2306. /* 透明度 */
  2307. /* 文章场景相关 */
  2308. .nav-btn[data-v-2e60fab0] {
  2309. height: 36px;
  2310. width: 36px;
  2311. background-color: #4f4f4f;
  2312. border-radius: 6px;
  2313. display: flex;
  2314. align-items: center;
  2315. justify-content: center;
  2316. color: #f1f1f1;
  2317. }
  2318. .u-select__action[data-v-2e60fab0] {
  2319. position: relative;
  2320. line-height: 2.1875rem;
  2321. height: 2.1875rem;
  2322. }
  2323. .u-select__action__icon[data-v-2e60fab0] {
  2324. position: absolute;
  2325. right: 0.625rem;
  2326. top: 50%;
  2327. transition: transform 0.4s;
  2328. transform: translateY(-50%);
  2329. z-index: 1;
  2330. }
  2331. .u-select__action__icon--reverse[data-v-2e60fab0] {
  2332. transform: rotate(-180deg) translateY(50%);
  2333. }
  2334. .u-select--border[data-v-2e60fab0] {
  2335. border-radius: 0.1875rem;
  2336. border-radius: 4px;
  2337. border: 1px solid var(--u-border-color);
  2338. }
  2339. .u-select__header[data-v-2e60fab0] {
  2340. display: flex;
  2341. flex-direction: row;
  2342. align-items: center;
  2343. justify-content: space-between;
  2344. height: 2.5rem;
  2345. position: relative;
  2346. }
  2347. .u-select__header__title[data-v-2e60fab0] {
  2348. color: var(--u-content-color);
  2349. }
  2350. .u-select__header__btn[data-v-2e60fab0] {
  2351. min-width: 4.6875rem;
  2352. padding: 0.625rem 0.9375rem;
  2353. }
  2354. .u-select__header[data-v-2e60fab0]::after {
  2355. content: "";
  2356. position: absolute;
  2357. border-bottom: 0.03125rem solid var(--u-border-color);
  2358. transform: scaleY(0.5);
  2359. bottom: 0;
  2360. right: 0;
  2361. left: 0;
  2362. }
  2363. .u-select__body[data-v-2e60fab0] {
  2364. width: 100%;
  2365. height: 15.625rem;
  2366. overflow: hidden;
  2367. background-color: var(--u-bg-white);
  2368. }
  2369. .u-select__body__picker-view[data-v-2e60fab0] {
  2370. height: 100%;
  2371. box-sizing: border-box;
  2372. }
  2373. .u-select__body__picker-view__item[data-v-2e60fab0] {
  2374. display: flex;
  2375. flex-direction: row;
  2376. align-items: center;
  2377. justify-content: center;
  2378. font-size: 1rem;
  2379. color: var(--u-main-color);
  2380. padding: 0 0.25rem;
  2381. }
  2382. /**
  2383. * 这里是uni-app内置的常用样式变量
  2384. *
  2385. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2386. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2387. *
  2388. */
  2389. /**
  2390. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2391. *
  2392. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2393. */
  2394. [data-v-6df07486]:root,
  2395. body[data-v-6df07486] {
  2396. /* 纯色 */
  2397. --u-white-color: #ffffff;
  2398. --u-black-color: #000000;
  2399. --u-main-color: #303133;
  2400. --u-content-color: #606266;
  2401. --u-tips-color: #909399;
  2402. --u-light-color: #c0c4cc;
  2403. --u-border-color: #e4e7ed;
  2404. --u-divider-color: #e4e7ed;
  2405. --u-mask-color: rgba(0, 0, 0, 0.4);
  2406. --u-shadow-color: rgba(0, 0, 0, 0.1);
  2407. /* 背景色 */
  2408. --u-bg-color: #f3f4f6;
  2409. --u-bg-white: #ffffff;
  2410. --u-bg-gray-light: #f1f1f1;
  2411. --u-bg-gray-dark: #2f343c;
  2412. --u-bg-black: #000000;
  2413. /* 主色 */
  2414. --u-type-primary: #2979ff;
  2415. --u-type-primary-light: #ecf5ff;
  2416. --u-type-primary-disabled: #a0cfff;
  2417. --u-type-primary-dark: #2b85e4;
  2418. /* 警告色 */
  2419. --u-type-warning: #ff9900;
  2420. --u-type-warning-disabled: #fcbd71;
  2421. --u-type-warning-dark: #f29100;
  2422. --u-type-warning-light: #fdf6ec;
  2423. /* 成功色 */
  2424. --u-type-success: #19be6b;
  2425. --u-type-success-disabled: #71d5a1;
  2426. --u-type-success-dark: #18b566;
  2427. --u-type-success-light: #dbf1e1;
  2428. /* 错误色 */
  2429. --u-type-error: #fa3534;
  2430. --u-type-error-disabled: #fab6b6;
  2431. --u-type-error-dark: #dd6161;
  2432. --u-type-error-light: #fef0f0;
  2433. /* 信息色 */
  2434. --u-type-info: #909399;
  2435. --u-type-info-disabled: #c8c9cc;
  2436. --u-type-info-dark: #82848a;
  2437. --u-type-info-light: #f4f4f5;
  2438. }
  2439. /* 颜色变量 */
  2440. /* 行为相关颜色 */
  2441. /* 文字基本颜色 */
  2442. /* 背景颜色 */
  2443. /* 边框颜色 */
  2444. /* 尺寸变量 */
  2445. /* 文字尺寸 */
  2446. /* 图片尺寸 */
  2447. /* Border Radius */
  2448. /* 水平间距 */
  2449. /* 垂直间距 */
  2450. /* 透明度 */
  2451. /* 文章场景相关 */
  2452. .nav-btn[data-v-6df07486] {
  2453. height: 36px;
  2454. width: 36px;
  2455. background-color: #4f4f4f;
  2456. border-radius: 6px;
  2457. display: flex;
  2458. align-items: center;
  2459. justify-content: center;
  2460. color: #f1f1f1;
  2461. }
  2462. .u-btn[data-v-6df07486]::after {
  2463. border: none;
  2464. }
  2465. .u-btn[data-v-6df07486] {
  2466. position: relative;
  2467. border: 0;
  2468. display: inline-flex;
  2469. overflow: visible;
  2470. line-height: 1;
  2471. display: flex;
  2472. flex-direction: row;
  2473. align-items: center;
  2474. justify-content: center;
  2475. cursor: pointer;
  2476. padding: 0 1.25rem;
  2477. z-index: 1;
  2478. box-sizing: border-box;
  2479. transition: all 0.15s;
  2480. }
  2481. .u-btn--bold-border[data-v-6df07486] {
  2482. border: 1px solid var(--u-white-color);
  2483. }
  2484. .u-btn--default[data-v-6df07486] {
  2485. color: var(--u-content-color);
  2486. border-color: var(--u-light-color);
  2487. background-color: var(--u-bg-white);
  2488. }
  2489. .u-btn--primary[data-v-6df07486] {
  2490. color: var(--u-white-color);
  2491. border-color: var(--u-type-primary);
  2492. background-color: var(--u-type-primary);
  2493. }
  2494. .u-btn--success[data-v-6df07486] {
  2495. color: var(--u-white-color);
  2496. border-color: var(--u-type-success);
  2497. background-color: var(--u-type-success);
  2498. }
  2499. .u-btn--error[data-v-6df07486] {
  2500. color: var(--u-white-color);
  2501. border-color: var(--u-type-error);
  2502. background-color: var(--u-type-error);
  2503. }
  2504. .u-btn--warning[data-v-6df07486] {
  2505. color: var(--u-white-color);
  2506. border-color: var(--u-type-warning);
  2507. background-color: var(--u-type-warning);
  2508. }
  2509. .u-btn--default--disabled[data-v-6df07486] {
  2510. color: var(--u-white-color);
  2511. border-color: var(--u-border-color);
  2512. background-color: var(--u-bg-white);
  2513. }
  2514. .u-btn--primary--disabled[data-v-6df07486] {
  2515. color: var(--u-white-color) !important;
  2516. border-color: var(--u-type-primary-disabled) !important;
  2517. background-color: var(--u-type-primary-disabled) !important;
  2518. }
  2519. .u-btn--success--disabled[data-v-6df07486] {
  2520. color: var(--u-white-color) !important;
  2521. border-color: var(--u-type-success-disabled) !important;
  2522. background-color: var(--u-type-success-disabled) !important;
  2523. }
  2524. .u-btn--error--disabled[data-v-6df07486] {
  2525. color: var(--u-white-color) !important;
  2526. border-color: var(--u-type-error-disabled) !important;
  2527. background-color: var(--u-type-error-disabled) !important;
  2528. }
  2529. .u-btn--warning--disabled[data-v-6df07486] {
  2530. color: var(--u-white-color) !important;
  2531. border-color: var(--u-type-warning-disabled) !important;
  2532. background-color: var(--u-type-warning-disabled) !important;
  2533. }
  2534. .u-btn--primary--plain[data-v-6df07486] {
  2535. color: var(--u-type-primary) !important;
  2536. border-color: var(--u-type-primary-disabled) !important;
  2537. background-color: var(--u-type-primary-light) !important;
  2538. }
  2539. .u-btn--success--plain[data-v-6df07486] {
  2540. color: var(--u-type-success) !important;
  2541. border-color: var(--u-type-success-disabled) !important;
  2542. background-color: var(--u-type-success-light) !important;
  2543. }
  2544. .u-btn--error--plain[data-v-6df07486] {
  2545. color: var(--u-type-error) !important;
  2546. border-color: var(--u-type-error-disabled) !important;
  2547. background-color: var(--u-type-error-light) !important;
  2548. }
  2549. .u-btn--warning--plain[data-v-6df07486] {
  2550. color: var(--u-type-warning) !important;
  2551. border-color: var(--u-type-warning-disabled) !important;
  2552. background-color: var(--u-type-warning-light) !important;
  2553. }
  2554. .u-hairline-border[data-v-6df07486]:after {
  2555. content: " ";
  2556. position: absolute;
  2557. pointer-events: none;
  2558. box-sizing: border-box;
  2559. transform-origin: 0 0;
  2560. left: 0;
  2561. top: 0;
  2562. width: 199.8%;
  2563. height: 199.7%;
  2564. transform: scale(0.5, 0.5);
  2565. border: 1px solid currentColor;
  2566. z-index: 1;
  2567. }
  2568. .u-wave-ripple[data-v-6df07486] {
  2569. z-index: 0;
  2570. position: absolute;
  2571. border-radius: 100%;
  2572. background-clip: padding-box;
  2573. pointer-events: none;
  2574. -webkit-user-select: none;
  2575. -moz-user-select: none;
  2576. user-select: none;
  2577. transform: scale(0);
  2578. opacity: 1;
  2579. transform-origin: center;
  2580. }
  2581. .u-wave-ripple.u-wave-active[data-v-6df07486] {
  2582. opacity: 0;
  2583. transform: scale(2);
  2584. transition: opacity 1s linear, transform 0.4s linear;
  2585. }
  2586. .u-round-circle[data-v-6df07486] {
  2587. border-radius: 3.125rem;
  2588. }
  2589. .u-round-circle[data-v-6df07486]::after {
  2590. border-radius: 3.125rem;
  2591. }
  2592. .u-loading[data-v-6df07486]::after {
  2593. background-color: hsla(0, 0%, 100%, 0.35);
  2594. }
  2595. .u-size-default[data-v-6df07486] {
  2596. font-size: 0.9375rem;
  2597. height: 2.5rem;
  2598. line-height: 2.5rem;
  2599. }
  2600. .u-size-medium[data-v-6df07486] {
  2601. display: inline-flex;
  2602. width: auto;
  2603. font-size: 0.8125rem;
  2604. height: 2.1875rem;
  2605. line-height: 2.1875rem;
  2606. padding: 0 2.5rem;
  2607. }
  2608. .u-size-mini[data-v-6df07486] {
  2609. display: inline-flex;
  2610. width: auto;
  2611. font-size: 0.6875rem;
  2612. padding-top: 1px;
  2613. height: 1.5625rem;
  2614. line-height: 1.5625rem;
  2615. padding: 0 0.625rem;
  2616. }
  2617. .u-primary-plain-hover[data-v-6df07486] {
  2618. color: var(--u-white-color) !important;
  2619. background: var(--u-type-primary-dark) !important;
  2620. }
  2621. .u-default-plain-hover[data-v-6df07486] {
  2622. color: var(--u-type-primary-dark) !important;
  2623. background: var(--u-type-primary-light) !important;
  2624. }
  2625. .u-success-plain-hover[data-v-6df07486] {
  2626. color: var(--u-white-color) !important;
  2627. background: var(--u-type-success-dark) !important;
  2628. }
  2629. .u-warning-plain-hover[data-v-6df07486] {
  2630. color: var(--u-white-color) !important;
  2631. background: var(--u-type-warning-dark) !important;
  2632. }
  2633. .u-error-plain-hover[data-v-6df07486] {
  2634. color: var(--u-white-color) !important;
  2635. background: var(--u-type-error-dark) !important;
  2636. }
  2637. .u-info-plain-hover[data-v-6df07486] {
  2638. color: var(--u-white-color) !important;
  2639. background: var(--u-type-info-dark) !important;
  2640. }
  2641. .u-default-hover[data-v-6df07486] {
  2642. color: var(--u-type-primary-dark) !important;
  2643. border-color: var(--u-type-primary-dark) !important;
  2644. background-color: var(--u-type-primary-light) !important;
  2645. }
  2646. .u-primary-hover[data-v-6df07486] {
  2647. background: var(--u-type-primary-dark) !important;
  2648. color: var(--u-white-color);
  2649. }
  2650. .u-success-hover[data-v-6df07486] {
  2651. background: var(--u-type-success-dark) !important;
  2652. color: var(--u-white-color);
  2653. }
  2654. .u-info-hover[data-v-6df07486] {
  2655. background: var(--u-type-info-dark) !important;
  2656. color: var(--u-white-color);
  2657. }
  2658. .u-warning-hover[data-v-6df07486] {
  2659. background: var(--u-type-warning-dark) !important;
  2660. color: var(--u-white-color);
  2661. }
  2662. .u-error-hover[data-v-6df07486] {
  2663. background: var(--u-type-error-dark) !important;
  2664. color: var(--u-white-color);
  2665. }
  2666. .notice-mask[data-v-b5e4ee78] {
  2667. position: fixed;
  2668. top: 0;
  2669. left: 0;
  2670. right: 0;
  2671. bottom: 0;
  2672. background-color: rgba(0, 0, 0, 0.6);
  2673. z-index: 99999; /* 确保层级最高 */
  2674. display: flex;
  2675. justify-content: center;
  2676. align-items: center;
  2677. }
  2678. .notice-box[data-v-b5e4ee78] {
  2679. width: 18.75rem;
  2680. background-color: #ffffff;
  2681. border-radius: 0.75rem;
  2682. overflow: hidden;
  2683. display: flex;
  2684. flex-direction: column;
  2685. }
  2686. .notice-header[data-v-b5e4ee78] {
  2687. padding: 0.9375rem;
  2688. font-size: 0.875rem;
  2689. color: #333;
  2690. text-align: center;
  2691. font-weight: bold;
  2692. line-height: 1.5;
  2693. }
  2694. .notice-body[data-v-b5e4ee78] {
  2695. position: relative;
  2696. padding: 0 1.25rem;
  2697. }
  2698. .content-wrapper[data-v-b5e4ee78] {
  2699. padding: 0.625rem 0;
  2700. }
  2701. .paragraph[data-v-b5e4ee78] {
  2702. font-size: 0.75rem;
  2703. color: #333;
  2704. line-height: 1.6;
  2705. }
  2706. .center[data-v-b5e4ee78] { text-align: center;
  2707. }
  2708. .left[data-v-b5e4ee78] { text-align: left;
  2709. }
  2710. .mb-10[data-v-b5e4ee78] { margin-bottom: 0.625rem;
  2711. }
  2712. .highlight[data-v-b5e4ee78] { color: #666;
  2713. }
  2714. /* 模拟左右两侧的箭头 */
  2715. .arrow[data-v-b5e4ee78] {
  2716. position: absolute;
  2717. top: 50%;
  2718. transform: translateY(-50%);
  2719. font-size: 1.25rem;
  2720. color: #999;
  2721. }
  2722. .left-arrow[data-v-b5e4ee78] { left: 0.3125rem;
  2723. }
  2724. .right-arrow[data-v-b5e4ee78] { right: 0.3125rem;
  2725. }
  2726. .notice-footer[data-v-b5e4ee78] {
  2727. padding: 0.9375rem 1.25rem 1.25rem;
  2728. }
  2729. .confirm-btn[data-v-b5e4ee78] {
  2730. width: 100%;
  2731. height: 2.5rem;
  2732. line-height: 2.5rem;
  2733. background-color: #e54d42; /* 图中的红色按钮 */
  2734. color: #ffffff;
  2735. font-size: 0.9375rem;
  2736. border-radius: 0.375rem;
  2737. border: none;
  2738. }
  2739. .confirm-btn[data-v-b5e4ee78]::after {
  2740. border: none;
  2741. }
  2742. /**
  2743. * 这里是uni-app内置的常用样式变量
  2744. *
  2745. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2746. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2747. *
  2748. */
  2749. /**
  2750. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2751. *
  2752. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2753. */
  2754. [data-v-785d6534]:root,
  2755. body[data-v-785d6534] {
  2756. /* 纯色 */
  2757. --u-white-color: #ffffff;
  2758. --u-black-color: #000000;
  2759. --u-main-color: #303133;
  2760. --u-content-color: #606266;
  2761. --u-tips-color: #909399;
  2762. --u-light-color: #c0c4cc;
  2763. --u-border-color: #e4e7ed;
  2764. --u-divider-color: #e4e7ed;
  2765. --u-mask-color: rgba(0, 0, 0, 0.4);
  2766. --u-shadow-color: rgba(0, 0, 0, 0.1);
  2767. /* 背景色 */
  2768. --u-bg-color: #f3f4f6;
  2769. --u-bg-white: #ffffff;
  2770. --u-bg-gray-light: #f1f1f1;
  2771. --u-bg-gray-dark: #2f343c;
  2772. --u-bg-black: #000000;
  2773. /* 主色 */
  2774. --u-type-primary: #2979ff;
  2775. --u-type-primary-light: #ecf5ff;
  2776. --u-type-primary-disabled: #a0cfff;
  2777. --u-type-primary-dark: #2b85e4;
  2778. /* 警告色 */
  2779. --u-type-warning: #ff9900;
  2780. --u-type-warning-disabled: #fcbd71;
  2781. --u-type-warning-dark: #f29100;
  2782. --u-type-warning-light: #fdf6ec;
  2783. /* 成功色 */
  2784. --u-type-success: #19be6b;
  2785. --u-type-success-disabled: #71d5a1;
  2786. --u-type-success-dark: #18b566;
  2787. --u-type-success-light: #dbf1e1;
  2788. /* 错误色 */
  2789. --u-type-error: #fa3534;
  2790. --u-type-error-disabled: #fab6b6;
  2791. --u-type-error-dark: #dd6161;
  2792. --u-type-error-light: #fef0f0;
  2793. /* 信息色 */
  2794. --u-type-info: #909399;
  2795. --u-type-info-disabled: #c8c9cc;
  2796. --u-type-info-dark: #82848a;
  2797. --u-type-info-light: #f4f4f5;
  2798. }
  2799. /* 颜色变量 */
  2800. /* 行为相关颜色 */
  2801. /* 文字基本颜色 */
  2802. /* 背景颜色 */
  2803. /* 边框颜色 */
  2804. /* 尺寸变量 */
  2805. /* 文字尺寸 */
  2806. /* 图片尺寸 */
  2807. /* Border Radius */
  2808. /* 水平间距 */
  2809. /* 垂直间距 */
  2810. /* 透明度 */
  2811. /* 文章场景相关 */
  2812. .nav-btn[data-v-785d6534] {
  2813. height: 36px;
  2814. width: 36px;
  2815. background-color: #4f4f4f;
  2816. border-radius: 6px;
  2817. display: flex;
  2818. align-items: center;
  2819. justify-content: center;
  2820. color: #f1f1f1;
  2821. }
  2822. .image-uploader-container[data-v-785d6534] {
  2823. padding: 0.625rem;
  2824. box-sizing: border-box;
  2825. }
  2826. .image-uploader[data-v-785d6534] {
  2827. justify-content: center;
  2828. }
  2829. .image-uploader .image-list[data-v-785d6534] {
  2830. display: flex;
  2831. flex-wrap: wrap;
  2832. margin-right: -0.625rem;
  2833. }
  2834. .image-uploader .image-item[data-v-785d6534], .image-uploader .upload-btn[data-v-785d6534] {
  2835. position: relative;
  2836. border-radius: 0.375rem;
  2837. overflow: hidden;
  2838. background-color: #f8f8f8;
  2839. display: flex;
  2840. align-items: center;
  2841. justify-content: center;
  2842. margin-bottom: 0.625rem;
  2843. box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.05);
  2844. }
  2845. .image-uploader .image-content[data-v-785d6534] {
  2846. width: 100%;
  2847. height: 100%;
  2848. }
  2849. .image-uploader .delete-btn[data-v-785d6534] {
  2850. position: absolute;
  2851. top: 0.1875rem;
  2852. right: 0.25rem;
  2853. padding: 8px;
  2854. background-color: rgba(0, 0, 0, 0.5);
  2855. border-radius: 50%;
  2856. display: flex;
  2857. align-items: center;
  2858. justify-content: center;
  2859. z-index: 10;
  2860. }
  2861. .image-uploader .upload-btn[data-v-785d6534] {
  2862. border: 1px dashed #d9d9d9;
  2863. flex-direction: column;
  2864. }
  2865. .image-uploader .upload-btn .uni-icons[data-v-785d6534] {
  2866. margin-bottom: 0.3125rem;
  2867. }
  2868. .image-uploader .upload-btn .upload-text[data-v-785d6534] {
  2869. font-size: 0.75rem;
  2870. color: #999;
  2871. }
  2872. .recharge-modal[data-v-6f4bef05] {
  2873. position: fixed;
  2874. top: 0;
  2875. left: 0;
  2876. right: 0;
  2877. bottom: 0;
  2878. background-color: rgba(0, 0, 0, 0.6);
  2879. z-index: 99999;
  2880. display: flex;
  2881. justify-content: center;
  2882. align-items: center;
  2883. padding: 0 1.25rem;
  2884. }
  2885. .recharge-box[data-v-6f4bef05] {
  2886. width: 100%;
  2887. max-width: 18.75rem;
  2888. background-color: #fff;
  2889. border-radius: 0.75rem;
  2890. padding: 1.25rem;
  2891. box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.15);
  2892. }
  2893. .modal-header[data-v-6f4bef05] {
  2894. font-size: 1.125rem;
  2895. font-weight: bold;
  2896. color: #333;
  2897. text-align: center;
  2898. margin-bottom: 0.9375rem;
  2899. }
  2900. .info-container[data-v-6f4bef05] {
  2901. background-color: #f8f9fa;
  2902. border-radius: 0.5rem;
  2903. padding: 0.75rem;
  2904. margin-bottom: 1.25rem;
  2905. }
  2906. .info-item[data-v-6f4bef05] {
  2907. display: flex;
  2908. justify-content: space-between;
  2909. margin-bottom: 0.5rem;
  2910. font-size: 0.875rem;
  2911. }
  2912. .info-item[data-v-6f4bef05]:last-child {
  2913. margin-bottom: 0;
  2914. }
  2915. .label[data-v-6f4bef05] {
  2916. color: #888;
  2917. }
  2918. .value[data-v-6f4bef05] {
  2919. color: #333;
  2920. font-weight: 600;
  2921. }
  2922. .qr-wrapper[data-v-6f4bef05] {
  2923. display: flex;
  2924. flex-direction: column;
  2925. align-items: center;
  2926. margin-top: 0.9375rem;
  2927. }
  2928. .qr-code[data-v-6f4bef05] {
  2929. width: 10rem;
  2930. height: 10rem;
  2931. border-radius: 0.25rem;
  2932. border: 0.03125rem solid #eee;
  2933. }
  2934. .qr-tip[data-v-6f4bef05] {
  2935. font-size: 0.75rem;
  2936. color: #999;
  2937. margin-top: 0.5rem;
  2938. }
  2939. .action-btns[data-v-6f4bef05] {
  2940. display: flex;
  2941. gap: 0.625rem;
  2942. }
  2943. .btn[data-v-6f4bef05] {
  2944. flex: 1;
  2945. }
  2946. /**
  2947. * 这里是uni-app内置的常用样式变量
  2948. *
  2949. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2950. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2951. *
  2952. */
  2953. /**
  2954. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2955. *
  2956. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2957. */
  2958. [data-v-58ed82b7]:root,
  2959. body[data-v-58ed82b7] {
  2960. /* 纯色 */
  2961. --u-white-color: #ffffff;
  2962. --u-black-color: #000000;
  2963. --u-main-color: #303133;
  2964. --u-content-color: #606266;
  2965. --u-tips-color: #909399;
  2966. --u-light-color: #c0c4cc;
  2967. --u-border-color: #e4e7ed;
  2968. --u-divider-color: #e4e7ed;
  2969. --u-mask-color: rgba(0, 0, 0, 0.4);
  2970. --u-shadow-color: rgba(0, 0, 0, 0.1);
  2971. /* 背景色 */
  2972. --u-bg-color: #f3f4f6;
  2973. --u-bg-white: #ffffff;
  2974. --u-bg-gray-light: #f1f1f1;
  2975. --u-bg-gray-dark: #2f343c;
  2976. --u-bg-black: #000000;
  2977. /* 主色 */
  2978. --u-type-primary: #2979ff;
  2979. --u-type-primary-light: #ecf5ff;
  2980. --u-type-primary-disabled: #a0cfff;
  2981. --u-type-primary-dark: #2b85e4;
  2982. /* 警告色 */
  2983. --u-type-warning: #ff9900;
  2984. --u-type-warning-disabled: #fcbd71;
  2985. --u-type-warning-dark: #f29100;
  2986. --u-type-warning-light: #fdf6ec;
  2987. /* 成功色 */
  2988. --u-type-success: #19be6b;
  2989. --u-type-success-disabled: #71d5a1;
  2990. --u-type-success-dark: #18b566;
  2991. --u-type-success-light: #dbf1e1;
  2992. /* 错误色 */
  2993. --u-type-error: #fa3534;
  2994. --u-type-error-disabled: #fab6b6;
  2995. --u-type-error-dark: #dd6161;
  2996. --u-type-error-light: #fef0f0;
  2997. /* 信息色 */
  2998. --u-type-info: #909399;
  2999. --u-type-info-disabled: #c8c9cc;
  3000. --u-type-info-dark: #82848a;
  3001. --u-type-info-light: #f4f4f5;
  3002. }
  3003. /* 颜色变量 */
  3004. /* 行为相关颜色 */
  3005. /* 文字基本颜色 */
  3006. /* 背景颜色 */
  3007. /* 边框颜色 */
  3008. /* 尺寸变量 */
  3009. /* 文字尺寸 */
  3010. /* 图片尺寸 */
  3011. /* Border Radius */
  3012. /* 水平间距 */
  3013. /* 垂直间距 */
  3014. /* 透明度 */
  3015. /* 文章场景相关 */
  3016. .nav-btn[data-v-58ed82b7] {
  3017. height: 36px;
  3018. width: 36px;
  3019. background-color: #4f4f4f;
  3020. border-radius: 6px;
  3021. display: flex;
  3022. align-items: center;
  3023. justify-content: center;
  3024. color: #f1f1f1;
  3025. }
  3026. .guide-content[data-v-58ed82b7] {
  3027. /* 由于 u-popup 默认可能有白色背景,如果你传入的是一张带透明通道的引导图
  3028. 可以通过设置 padding 或者背景色透明来微调展示效果 */
  3029. width: 100%;
  3030. display: flex;
  3031. justify-content: center;
  3032. align-items: center;
  3033. background-color: transparent;
  3034. }
  3035. /**
  3036. * 这里是uni-app内置的常用样式变量
  3037. *
  3038. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  3039. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  3040. *
  3041. */
  3042. /**
  3043. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  3044. *
  3045. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  3046. */
  3047. [data-v-2d50370a]:root,
  3048. body[data-v-2d50370a] {
  3049. /* 纯色 */
  3050. --u-white-color: #ffffff;
  3051. --u-black-color: #000000;
  3052. --u-main-color: #303133;
  3053. --u-content-color: #606266;
  3054. --u-tips-color: #909399;
  3055. --u-light-color: #c0c4cc;
  3056. --u-border-color: #e4e7ed;
  3057. --u-divider-color: #e4e7ed;
  3058. --u-mask-color: rgba(0, 0, 0, 0.4);
  3059. --u-shadow-color: rgba(0, 0, 0, 0.1);
  3060. /* 背景色 */
  3061. --u-bg-color: #f3f4f6;
  3062. --u-bg-white: #ffffff;
  3063. --u-bg-gray-light: #f1f1f1;
  3064. --u-bg-gray-dark: #2f343c;
  3065. --u-bg-black: #000000;
  3066. /* 主色 */
  3067. --u-type-primary: #2979ff;
  3068. --u-type-primary-light: #ecf5ff;
  3069. --u-type-primary-disabled: #a0cfff;
  3070. --u-type-primary-dark: #2b85e4;
  3071. /* 警告色 */
  3072. --u-type-warning: #ff9900;
  3073. --u-type-warning-disabled: #fcbd71;
  3074. --u-type-warning-dark: #f29100;
  3075. --u-type-warning-light: #fdf6ec;
  3076. /* 成功色 */
  3077. --u-type-success: #19be6b;
  3078. --u-type-success-disabled: #71d5a1;
  3079. --u-type-success-dark: #18b566;
  3080. --u-type-success-light: #dbf1e1;
  3081. /* 错误色 */
  3082. --u-type-error: #fa3534;
  3083. --u-type-error-disabled: #fab6b6;
  3084. --u-type-error-dark: #dd6161;
  3085. --u-type-error-light: #fef0f0;
  3086. /* 信息色 */
  3087. --u-type-info: #909399;
  3088. --u-type-info-disabled: #c8c9cc;
  3089. --u-type-info-dark: #82848a;
  3090. --u-type-info-light: #f4f4f5;
  3091. }
  3092. /* 颜色变量 */
  3093. /* 行为相关颜色 */
  3094. /* 文字基本颜色 */
  3095. /* 背景颜色 */
  3096. /* 边框颜色 */
  3097. /* 尺寸变量 */
  3098. /* 文字尺寸 */
  3099. /* 图片尺寸 */
  3100. /* Border Radius */
  3101. /* 水平间距 */
  3102. /* 垂直间距 */
  3103. /* 透明度 */
  3104. /* 文章场景相关 */
  3105. .nav-btn[data-v-2d50370a] {
  3106. height: 36px;
  3107. width: 36px;
  3108. background-color: #4f4f4f;
  3109. border-radius: 6px;
  3110. display: flex;
  3111. align-items: center;
  3112. justify-content: center;
  3113. color: #f1f1f1;
  3114. }
  3115. .global-app-banner[data-v-2d50370a] {
  3116. width: 100%;
  3117. height: 50px;
  3118. background-color: #212121;
  3119. display: flex;
  3120. align-items: center;
  3121. padding: 0 12px;
  3122. box-sizing: border-box;
  3123. }
  3124. .global-app-banner .banner-content[data-v-2d50370a] {
  3125. display: flex;
  3126. justify-content: space-between;
  3127. align-items: center;
  3128. width: 100%;
  3129. }
  3130. .global-app-banner .banner-content .left-section[data-v-2d50370a] {
  3131. display: flex;
  3132. align-items: center;
  3133. }
  3134. .global-app-banner .banner-content .left-section .close-btn[data-v-2d50370a] {
  3135. margin-right: 12px;
  3136. }
  3137. .global-app-banner .banner-content .left-section .app-icon[data-v-2d50370a] {
  3138. width: 34px;
  3139. height: 34px;
  3140. border-radius: 6px;
  3141. margin-right: 10px;
  3142. }
  3143. .global-app-banner .banner-content .left-section .app-info[data-v-2d50370a] {
  3144. display: flex;
  3145. flex-direction: column;
  3146. justify-content: center;
  3147. }
  3148. .global-app-banner .banner-content .left-section .app-info .app-name[data-v-2d50370a] {
  3149. color: #fff;
  3150. font-size: 14px;
  3151. font-weight: bold;
  3152. line-height: 1.2;
  3153. }
  3154. .global-app-banner .banner-content .left-section .app-info .app-tips[data-v-2d50370a] {
  3155. color: #999;
  3156. font-size: 11px;
  3157. margin-top: 2px;
  3158. }
  3159. .global-app-banner .banner-content .download-btn[data-v-2d50370a] {
  3160. background-color: #f8b932;
  3161. color: #212121;
  3162. padding: 0 12px;
  3163. height: 28px;
  3164. line-height: 28px;
  3165. border-radius: 14px;
  3166. font-size: 12px;
  3167. font-weight: bold;
  3168. }
  3169. /**
  3170. * 这里是uni-app内置的常用样式变量
  3171. *
  3172. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  3173. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  3174. *
  3175. */
  3176. /**
  3177. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  3178. *
  3179. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  3180. */
  3181. [data-v-633a219d]:root,
  3182. body[data-v-633a219d] {
  3183. /* 纯色 */
  3184. --u-white-color: #ffffff;
  3185. --u-black-color: #000000;
  3186. --u-main-color: #303133;
  3187. --u-content-color: #606266;
  3188. --u-tips-color: #909399;
  3189. --u-light-color: #c0c4cc;
  3190. --u-border-color: #e4e7ed;
  3191. --u-divider-color: #e4e7ed;
  3192. --u-mask-color: rgba(0, 0, 0, 0.4);
  3193. --u-shadow-color: rgba(0, 0, 0, 0.1);
  3194. /* 背景色 */
  3195. --u-bg-color: #f3f4f6;
  3196. --u-bg-white: #ffffff;
  3197. --u-bg-gray-light: #f1f1f1;
  3198. --u-bg-gray-dark: #2f343c;
  3199. --u-bg-black: #000000;
  3200. /* 主色 */
  3201. --u-type-primary: #2979ff;
  3202. --u-type-primary-light: #ecf5ff;
  3203. --u-type-primary-disabled: #a0cfff;
  3204. --u-type-primary-dark: #2b85e4;
  3205. /* 警告色 */
  3206. --u-type-warning: #ff9900;
  3207. --u-type-warning-disabled: #fcbd71;
  3208. --u-type-warning-dark: #f29100;
  3209. --u-type-warning-light: #fdf6ec;
  3210. /* 成功色 */
  3211. --u-type-success: #19be6b;
  3212. --u-type-success-disabled: #71d5a1;
  3213. --u-type-success-dark: #18b566;
  3214. --u-type-success-light: #dbf1e1;
  3215. /* 错误色 */
  3216. --u-type-error: #fa3534;
  3217. --u-type-error-disabled: #fab6b6;
  3218. --u-type-error-dark: #dd6161;
  3219. --u-type-error-light: #fef0f0;
  3220. /* 信息色 */
  3221. --u-type-info: #909399;
  3222. --u-type-info-disabled: #c8c9cc;
  3223. --u-type-info-dark: #82848a;
  3224. --u-type-info-light: #f4f4f5;
  3225. }
  3226. /* 颜色变量 */
  3227. /* 行为相关颜色 */
  3228. /* 文字基本颜色 */
  3229. /* 背景颜色 */
  3230. /* 边框颜色 */
  3231. /* 尺寸变量 */
  3232. /* 文字尺寸 */
  3233. /* 图片尺寸 */
  3234. /* Border Radius */
  3235. /* 水平间距 */
  3236. /* 垂直间距 */
  3237. /* 透明度 */
  3238. /* 文章场景相关 */
  3239. .nav-btn[data-v-633a219d] {
  3240. height: 36px;
  3241. width: 36px;
  3242. background-color: #4f4f4f;
  3243. border-radius: 6px;
  3244. display: flex;
  3245. align-items: center;
  3246. justify-content: center;
  3247. color: #f1f1f1;
  3248. }
  3249. .global-page-container-tabbar[data-v-633a219d] {
  3250. height: 100vh;
  3251. overflow-y: hidden;
  3252. }
  3253. .global-page-container[data-v-633a219d] {
  3254. width: 100vw;
  3255. background-color: #f9f9f9;
  3256. box-sizing: border-box;
  3257. overflow-y: hidden;
  3258. }
  3259. .logo-container[data-v-633a219d] {
  3260. box-sizing: border-box;
  3261. padding-left: 0px;
  3262. width: 100px;
  3263. height: 40px;
  3264. display: flex;
  3265. align-items: center;
  3266. overflow: hidden;
  3267. }
  3268. .logo-container svg[data-v-633a219d] {
  3269. width: 100%;
  3270. height: 100%;
  3271. }
  3272. .navbar-right[data-v-633a219d] {
  3273. display: flex;
  3274. align-items: center;
  3275. box-sizing: border-box;
  3276. padding-right: 10px;
  3277. }
  3278. .sub-navbar[data-v-633a219d] {
  3279. display: flex;
  3280. justify-content: space-between;
  3281. box-sizing: border-box;
  3282. align-items: center;
  3283. height: 50px;
  3284. width: 100%;
  3285. background-color: #2e2e2e;
  3286. padding: 0 12px;
  3287. position: fixed;
  3288. z-index: 9999;
  3289. top: calc(var(--status-bar-height) + 44px);
  3290. }
  3291. .sub-navbar-left[data-v-633a219d] {
  3292. display: flex;
  3293. align-items: center;
  3294. gap: 16px;
  3295. color: #f1f1f1;
  3296. font-weight: 600;
  3297. }
  3298. .content-box[data-v-633a219d] {
  3299. overscroll-behavior: none;
  3300. height: calc(100vh - 94px - var(--status-bar-height));
  3301. }
  3302. .tabbar-content-box[data-v-633a219d] {
  3303. height: calc(100vh - 44px - var(--status-bar-height));
  3304. }
  3305. .sticky-header-bar[data-v-633a219d] {
  3306. position: fixed;
  3307. left: 0;
  3308. width: 100%;
  3309. z-index: 990;
  3310. background-color: #fff;
  3311. bottom: calc(env(safe-area-inset-bottom) + 50px);
  3312. }
  3313. .bet-list[data-v-633a219d] {
  3314. padding: 130px 10px 60px; /* increased to accommodate new fixed header */
  3315. }
  3316. .popup-betting-sheet-header[data-v-633a219d] {
  3317. position: fixed;
  3318. top: 0;
  3319. z-index: 99;
  3320. width: 100%;
  3321. background-color: #f9f9f9;
  3322. }
  3323. .betting-sheet-header[data-v-633a219d] {
  3324. height: 50px;
  3325. width: 100%;
  3326. background: #fff;
  3327. display: flex;
  3328. align-items: center;
  3329. justify-content: space-between;
  3330. padding: 0 16px;
  3331. box-sizing: border-box;
  3332. box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.05);
  3333. }
  3334. .betting-sheet-header.border-bottom[data-v-633a219d] {
  3335. border-bottom: 1px solid #eee;
  3336. }
  3337. .betting-sheet-header-left[data-v-633a219d] {
  3338. display: flex;
  3339. align-items: center;
  3340. gap: 8px;
  3341. }
  3342. .betting-sheet-header-left .header-text[data-v-633a219d] {
  3343. font-size: 14px;
  3344. color: #333;
  3345. margin: 0 4px;
  3346. font-weight: bold;
  3347. }
  3348. .betting-sheet-header .sheet-badge[data-v-633a219d] {
  3349. background-color: #ffbc00;
  3350. color: #000;
  3351. font-size: 12px;
  3352. height: 18px;
  3353. min-width: 18px;
  3354. border-radius: 9px;
  3355. display: flex;
  3356. align-items: center;
  3357. justify-content: center;
  3358. padding: 0 4px;
  3359. font-weight: bold;
  3360. }
  3361. .betting-sheet-header-right .settings-btn[data-v-633a219d] {
  3362. display: flex;
  3363. align-items: center;
  3364. color: #333;
  3365. }
  3366. .empty-sheet[data-v-633a219d] {
  3367. display: flex;
  3368. justify-content: center;
  3369. align-items: center;
  3370. height: 150px;
  3371. color: #999;
  3372. font-size: 14px;
  3373. }
  3374. .isDetail[data-v-633a219d] {
  3375. bottom: env(safe-area-inset-bottom) !important;
  3376. }
  3377. .sheet-action-bar[data-v-633a219d] {
  3378. background-color: #faf9f9;
  3379. padding: 10px 16px;
  3380. box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.05);
  3381. z-index: 99;
  3382. position: fixed;
  3383. bottom: 0;
  3384. bottom: 50px;
  3385. width: 100%;
  3386. }
  3387. .sheet-action-bar .total-odds-row[data-v-633a219d] {
  3388. display: flex;
  3389. justify-content: space-between;
  3390. margin-bottom: 10px;
  3391. padding: 0 4px;
  3392. font-size: 14px;
  3393. }
  3394. .sheet-action-bar .total-odds-row .label[data-v-633a219d] {
  3395. color: #333;
  3396. font-weight: bold;
  3397. }
  3398. .sheet-action-bar .total-odds-row .val[data-v-633a219d] {
  3399. color: #ffbc00;
  3400. font-weight: bold;
  3401. font-size: 16px;
  3402. }
  3403. .auto-accept-box[data-v-633a219d] {
  3404. display: flex;
  3405. align-items: center;
  3406. margin-bottom: 12px;
  3407. padding: 0 4px;
  3408. }
  3409. .auto-accept-box .auto-accept-text[data-v-633a219d] {
  3410. font-size: 13px;
  3411. color: #666;
  3412. margin-left: 6px;
  3413. }
  3414. .batch-stake-box[data-v-633a219d] {
  3415. display: flex;
  3416. align-items: center;
  3417. justify-content: space-between;
  3418. background-color: #fff;
  3419. border-radius: 8px;
  3420. padding: 12px;
  3421. margin: 10px;
  3422. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  3423. }
  3424. .batch-stake-box .batch-label[data-v-633a219d] {
  3425. font-size: 14px;
  3426. color: #333;
  3427. font-weight: bold;
  3428. }
  3429. .batch-stake-box .batch-input-wrapper[data-v-633a219d] {
  3430. flex: 1;
  3431. margin-left: 16px;
  3432. height: 36px;
  3433. border: 1px solid #e2e8f0;
  3434. border-radius: 6px;
  3435. background-color: #f8fafc;
  3436. overflow: hidden;
  3437. }
  3438. .batch-stake-box .batch-input-wrapper .batch-input[data-v-633a219d] {
  3439. width: 100%;
  3440. height: 100%;
  3441. text-align: center;
  3442. font-size: 14px;
  3443. color: #1e293b;
  3444. }
  3445. .bet-item[data-v-633a219d] {
  3446. position: relative;
  3447. background-color: #fff;
  3448. border-radius: 8px;
  3449. padding: 12px;
  3450. margin-bottom: 12px;
  3451. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  3452. overflow: hidden;
  3453. }
  3454. .bet-item .lock-overlay[data-v-633a219d] {
  3455. position: absolute;
  3456. top: 0;
  3457. left: 0;
  3458. width: 100%;
  3459. height: 100%;
  3460. background-color: rgba(0, 0, 0, 0.55);
  3461. z-index: 10;
  3462. display: flex;
  3463. flex-direction: column;
  3464. justify-content: center;
  3465. align-items: center;
  3466. }
  3467. .bet-item .lock-overlay .lock-text[data-v-633a219d] {
  3468. color: #fff;
  3469. font-size: 13px;
  3470. margin-top: 6px;
  3471. font-weight: bold;
  3472. letter-spacing: 1px;
  3473. }
  3474. .bet-item .fail-msg-box[data-v-633a219d] {
  3475. display: flex;
  3476. align-items: center;
  3477. background-color: #fef0f0;
  3478. padding: 8px 12px;
  3479. border-radius: 6px;
  3480. margin-bottom: 12px;
  3481. gap: 8px;
  3482. border: 1px dashed #f56c6c;
  3483. }
  3484. .bet-item .fail-msg-box .fail-text[data-v-633a219d] {
  3485. color: #fa3534;
  3486. font-size: 13px;
  3487. font-weight: bold;
  3488. }
  3489. .bet-item .item-header[data-v-633a219d] {
  3490. display: flex;
  3491. justify-content: space-between;
  3492. align-items: center;
  3493. margin-bottom: 8px;
  3494. }
  3495. .bet-item .item-header .team-names[data-v-633a219d] {
  3496. font-weight: 600;
  3497. font-size: 14px;
  3498. color: #333;
  3499. }
  3500. .bet-item .item-header .close-btn[data-v-633a219d] {
  3501. position: relative;
  3502. z-index: 12;
  3503. background: rgba(255, 255, 255, 0.9);
  3504. border-radius: 50%;
  3505. width: 24px;
  3506. height: 24px;
  3507. display: flex;
  3508. align-items: center;
  3509. justify-content: center;
  3510. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  3511. }
  3512. .bet-item .item-info[data-v-633a219d] {
  3513. display: flex;
  3514. justify-content: space-between;
  3515. margin-bottom: 6px;
  3516. font-size: 13px;
  3517. }
  3518. .bet-item .item-info .type-name[data-v-633a219d] {
  3519. color: #666;
  3520. }
  3521. .bet-item .item-info .odds-val[data-v-633a219d] {
  3522. font-weight: bold;
  3523. color: #ffbc00;
  3524. font-size: 16px;
  3525. }
  3526. .bet-item .league-info[data-v-633a219d] {
  3527. display: flex;
  3528. justify-content: space-between;
  3529. font-size: 12px;
  3530. color: #999;
  3531. margin-bottom: 12px;
  3532. }
  3533. .bet-item .stake-input-box[data-v-633a219d] {
  3534. display: flex;
  3535. align-items: center;
  3536. border: 1px solid #e2e8f0;
  3537. border-radius: 6px;
  3538. height: 40px;
  3539. background-color: #f8fafc;
  3540. overflow: hidden;
  3541. }
  3542. .bet-item .stake-input-box.error-border[data-v-633a219d] {
  3543. border-color: #fa3534;
  3544. background-color: #fef0f0;
  3545. }
  3546. .bet-item .stake-input-box .stepper-btn[data-v-633a219d] {
  3547. width: 44px;
  3548. height: 100%;
  3549. display: flex;
  3550. align-items: center;
  3551. justify-content: center;
  3552. background-color: #f1f5f9;
  3553. transition: background-color 0.2s;
  3554. }
  3555. .bet-item .stake-input-box .stake-input[data-v-633a219d] {
  3556. flex: 1;
  3557. height: 100%;
  3558. text-align: center;
  3559. font-size: 15px;
  3560. font-weight: bold;
  3561. color: #1e293b;
  3562. background: #ffffff;
  3563. border-left: 1px solid #e2e8f0;
  3564. border-right: 1px solid #e2e8f0;
  3565. }
  3566. .bet-item .item-footer[data-v-633a219d] {
  3567. margin-top: 8px;
  3568. display: flex;
  3569. justify-content: space-between;
  3570. align-items: center;
  3571. font-size: 12px;
  3572. }
  3573. .bet-item .item-footer .err-msg[data-v-633a219d] {
  3574. color: #fa3534;
  3575. }
  3576. .bet-item .item-footer .potential-win[data-v-633a219d] {
  3577. color: #606266;
  3578. }
  3579. .bet-item .item-footer .potential-win .win-amount[data-v-633a219d] {
  3580. color: #19be6b;
  3581. font-weight: bold;
  3582. font-size: 14px;
  3583. margin-left: 4px;
  3584. }
  3585. .safe-modal-content[data-v-633a219d] {
  3586. width: 100%;
  3587. padding: 20px 14px;
  3588. display: flex;
  3589. flex-direction: column;
  3590. }
  3591. .safe-modal-content .safe-tips[data-v-633a219d] {
  3592. font-size: 14px;
  3593. color: #666;
  3594. margin-bottom: 16px;
  3595. text-align: center;
  3596. }
  3597. .retry-modal-content[data-v-633a219d] {
  3598. width: 100%;
  3599. padding: 10px 14px 20px;
  3600. display: flex;
  3601. flex-direction: column;
  3602. }
  3603. .retry-tips[data-v-633a219d] {
  3604. font-size: 14px;
  3605. color: #fa3534;
  3606. margin-bottom: 12px;
  3607. text-align: center;
  3608. font-weight: bold;
  3609. }
  3610. .retry-list[data-v-633a219d] {
  3611. max-height: 200px;
  3612. }
  3613. .retry-item[data-v-633a219d] {
  3614. background: #f8fafc;
  3615. padding: 10px;
  3616. border-radius: 6px;
  3617. margin-bottom: 8px;
  3618. display: flex;
  3619. flex-direction: column;
  3620. border: 1px solid #e2e8f0;
  3621. position: relative;
  3622. overflow: hidden;
  3623. }
  3624. .retry-lock-overlay[data-v-633a219d] {
  3625. position: absolute;
  3626. top: 0;
  3627. left: 0;
  3628. width: 100%;
  3629. height: 100%;
  3630. background-color: rgba(0, 0, 0, 0.65);
  3631. z-index: 10;
  3632. display: flex;
  3633. justify-content: center;
  3634. align-items: center;
  3635. }
  3636. .retry-lock-text[data-v-633a219d] {
  3637. color: #ffffff;
  3638. font-size: 13px;
  3639. font-weight: bold;
  3640. letter-spacing: 1px;
  3641. }
  3642. .retry-item .err-val[data-v-633a219d] {
  3643. font-size: 14px;
  3644. font-weight: bold;
  3645. color: #333;
  3646. margin-bottom: 4px;
  3647. }
  3648. .retry-item .err-msg[data-v-633a219d] {
  3649. font-size: 12px;
  3650. color: #fa3534;
  3651. }
  3652. [data-v-633a219d] .uni-scroll-view-content {
  3653. position: relative;
  3654. }
  3655. [data-v-633a219d] .u-drawer-bottom {
  3656. background-color: #f9f9f9;
  3657. }
  3658. .sportDetail-cart-bar[data-v-633a219d] {
  3659. bottom: 0;
  3660. padding-bottom: env(safe-area-inset-bottom);
  3661. }
  3662. /**
  3663. * 这里是uni-app内置的常用样式变量
  3664. *
  3665. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  3666. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  3667. *
  3668. */
  3669. /**
  3670. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  3671. *
  3672. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  3673. */
  3674. uni-button::after {
  3675. all: unset;
  3676. }
  3677. /*
  3678. 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  3679. 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
  3680. 2. [UnoCSS]: allow to override the default border color with css var `--un-default-border-color`
  3681. */
  3682. body,
  3683. uni-cover-image,
  3684. uni-cover-view,
  3685. grid-view,
  3686. uni-list-view,
  3687. match-media,
  3688. uni-movable-area,
  3689. uni-movable-view,
  3690. page-container,
  3691. root-portal,
  3692. uni-scroll-view,
  3693. share-element,
  3694. snapshot,
  3695. span,
  3696. uni-sticky-header,
  3697. uni-sticky-section,
  3698. uni-swiper,
  3699. uni-swiper-item,
  3700. uni-view,
  3701. uni-icon,
  3702. uni-progress,
  3703. uni-rich-text,
  3704. uni-text,
  3705. uni-button,
  3706. uni-checkbox,
  3707. uni-checkbox-group,
  3708. uni-editor,
  3709. uni-form,
  3710. uni-input,
  3711. keyboard-accessory,
  3712. uni-label,
  3713. uni-picker,
  3714. uni-picker-view,
  3715. uni-picker-view-column,
  3716. uni-radio,
  3717. uni-radio-group,
  3718. uni-slider,
  3719. uni-switch,
  3720. uni-textarea,
  3721. uni-functional-page-navigator,
  3722. uni-navigator,::before,::after {
  3723. box-sizing: border-box; /* 1 */
  3724. border-width: 0; /* 2 */
  3725. border-style: solid; /* 2 */
  3726. border-color: var(--un-default-border-color, #e5e7eb); /* 2 */
  3727. }
  3728. /*
  3729. 1. Use a consistent sensible line-height in all browsers.
  3730. 2. Prevent adjustments of font size after orientation changes in iOS.
  3731. 3. Use a more readable tab size.
  3732. 4. Use the user's configured `sans` font-family by default.
  3733. */
  3734. body {
  3735. line-height: 1.5; /* 1 */
  3736. -webkit-text-size-adjust: 100%; /* 2 */
  3737. -moz-text-size-adjust: 100%;
  3738. text-size-adjust: 100%; /* 2 */
  3739. -moz-tab-size: 4; /* 3 */
  3740. -o-tab-size: 4;
  3741. tab-size: 4; /* 3 */
  3742. font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  3743. }
  3744. /*
  3745. 1. Remove the margin in all browsers.
  3746. 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
  3747. */
  3748. body {
  3749. margin: 0; /* 1 */
  3750. line-height: inherit; /* 2 */
  3751. }
  3752. /*
  3753. 1. Add the correct height in Firefox.
  3754. 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  3755. 3. Ensure horizontal rules are visible by default.
  3756. */
  3757. /*
  3758. Add the correct text decoration in Chrome, Edge, and Safari.
  3759. */
  3760. /*
  3761. Remove the default font size and weight for headings.
  3762. */
  3763. /*
  3764. Reset links to optimize for opt-in styling instead of opt-out.
  3765. */
  3766. uni-functional-page-navigator,
  3767. uni-navigator {
  3768. color: inherit;
  3769. text-decoration: inherit;
  3770. }
  3771. /*
  3772. Add the correct font weight in Edge and Safari.
  3773. */
  3774. /*
  3775. 1. Use the user's configured `mono` font family by default.
  3776. 2. Correct the odd `em` font sizing in all browsers.
  3777. */
  3778. /*
  3779. Add the correct font size in all browsers.
  3780. */
  3781. /*
  3782. Prevent `sub` and `sup` elements from affecting the line height in all browsers.
  3783. */
  3784. /*
  3785. 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
  3786. 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
  3787. 3. Remove gaps between table borders by default.
  3788. */
  3789. /*
  3790. 1. Change the font styles in all browsers.
  3791. 2. Remove the margin in Firefox and Safari.
  3792. 3. Remove default padding in all browsers.
  3793. */
  3794. uni-button,
  3795. uni-input,
  3796. uni-textarea {
  3797. font-family: inherit; /* 1 */
  3798. font-feature-settings: inherit; /* 1 */
  3799. font-variation-settings: inherit; /* 1 */
  3800. font-size: 100%; /* 1 */
  3801. font-weight: inherit; /* 1 */
  3802. line-height: inherit; /* 1 */
  3803. color: inherit; /* 1 */
  3804. margin: 0; /* 2 */
  3805. padding: 0; /* 3 */
  3806. }
  3807. /*
  3808. Remove the inheritance of text transform in Edge and Firefox.
  3809. */
  3810. /*
  3811. 1. Correct the inability to style clickable types in iOS and Safari.
  3812. 2. Remove default button styles.
  3813. */
  3814. uni-button,
  3815. [type='button'],
  3816. [type='reset'],
  3817. [type='submit'] {
  3818. -webkit-appearance: button; /* 1 */
  3819. /*background-color: transparent; !* 2 *!*/
  3820. background-image: none; /* 2 */
  3821. }
  3822. /*
  3823. Use the modern Firefox focus style for all focusable elements.
  3824. */
  3825. :-moz-focusring {
  3826. outline: auto;
  3827. }
  3828. /*
  3829. Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
  3830. */
  3831. :-moz-ui-invalid {
  3832. box-shadow: none;
  3833. }
  3834. /*
  3835. Add the correct vertical alignment in Chrome and Firefox.
  3836. */
  3837. uni-progress {
  3838. vertical-align: baseline;
  3839. }
  3840. /*
  3841. Correct the cursor style of increment and decrement buttons in Safari.
  3842. */
  3843. ::-webkit-inner-spin-button,::-webkit-outer-spin-button {
  3844. height: auto;
  3845. }
  3846. /*
  3847. 1. Correct the odd appearance in Chrome and Safari.
  3848. 2. Correct the outline style in Safari.
  3849. */
  3850. [type='search'] {
  3851. -webkit-appearance: textfield; /* 1 */
  3852. outline-offset: -2px; /* 2 */
  3853. }
  3854. /*
  3855. Remove the inner padding in Chrome and Safari on macOS.
  3856. */
  3857. ::-webkit-search-decoration {
  3858. -webkit-appearance: none;
  3859. }
  3860. /*
  3861. 1. Correct the inability to style clickable types in iOS and Safari.
  3862. 2. Change font properties to `inherit` in Safari.
  3863. */
  3864. ::-webkit-file-upload-button {
  3865. -webkit-appearance: button; /* 1 */
  3866. font: inherit; /* 2 */
  3867. }
  3868. /*
  3869. Add the correct display in Chrome and Safari.
  3870. */
  3871. /*
  3872. Removes the default spacing and border for appropriate elements.
  3873. */
  3874. /*
  3875. Prevent resizing textareas horizontally by default.
  3876. */
  3877. uni-textarea {
  3878. resize: vertical;
  3879. }
  3880. /*
  3881. 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
  3882. 2. Set the default placeholder color to the user's configured gray 400 color.
  3883. */
  3884. uni-input::-moz-placeholder, uni-textarea::-moz-placeholder {
  3885. opacity: 1; /* 1 */
  3886. color: #9ca3af; /* 2 */
  3887. }
  3888. uni-input::placeholder,
  3889. uni-textarea::placeholder {
  3890. opacity: 1; /* 1 */
  3891. color: #9ca3af; /* 2 */
  3892. }
  3893. /*
  3894. Set the default cursor for buttons.
  3895. */
  3896. uni-button,
  3897. [role="button"] {
  3898. cursor: pointer;
  3899. }
  3900. /*
  3901. Make sure disabled buttons don't get the pointer cursor.
  3902. */
  3903. :disabled {
  3904. cursor: default;
  3905. }
  3906. /*
  3907. 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  3908. 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
  3909. This can trigger a poorly considered lint error in some tools but is included by design.
  3910. */
  3911. uni-image,
  3912. uni-video,
  3913. uni-canvas,
  3914. uni-audio {
  3915. display: block; /* 1 */
  3916. vertical-align: middle; /* 2 */
  3917. }
  3918. /*
  3919. Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
  3920. */
  3921. uni-image,
  3922. uni-video {
  3923. max-width: 100%;
  3924. height: auto;
  3925. }
  3926. /* Make elements with the HTML hidden attribute stay hidden by default */
  3927. [hidden] {
  3928. display: none;
  3929. }
  3930. :root svg, body svg {
  3931. display:inline;
  3932. }
  3933. :root uni-button, body uni-button {
  3934. line-height:inherit;}
  3935. :root,
  3936. body {
  3937. --wot-color-theme: rgba(var(--primary-color-500), 1);
  3938. --safe-top: var(--status-bar-height);
  3939. --safe-bottom: env(safe-area-inset-bottom);
  3940. --tmc: #f8b932;
  3941. --bmc: #f8b932;
  3942. --b21: #212121;
  3943. --tc: #9ca3af;
  3944. }
  3945. /* 主要文字颜色 */
  3946. .tmc{
  3947. color: #f8b932;
  3948. }
  3949. /* 主要背景颜色 */
  3950. .bmc{
  3951. background: #f8b932;
  3952. }
  3953. /* 背景颜色 */
  3954. .b21{
  3955. background: #212121;
  3956. }
  3957. /* 文字颜色 */
  3958. .tc{
  3959. color: #9ca3af;
  3960. }
  3961. body {
  3962. font-size: 1rem;
  3963. position:relative;width:100%;height:100%;--un-bg-opacity:1;background-color:rgb(249 250 251 / var(--un-bg-opacity));
  3964. }
  3965. .uni-modal{
  3966. }
  3967. uni-modal{
  3968. z-index: 999991!important;
  3969. }
  3970. .safe-b{
  3971. bottom: env(safe-area-inset-bottom);
  3972. }
  3973. .safe-pb{
  3974. padding-bottom: env(safe-area-inset-bottom);
  3975. }
  3976. .safe-hb{
  3977. height: env(safe-area-inset-bottom);
  3978. }
  3979. .safe-ht{
  3980. height: env(safe-area-inset-top);
  3981. }
  3982. body{
  3983. overflow-y: hidden;
  3984. }
  3985. .home-hb { height: 100px;
  3986. }
  3987. .digital-bottom,.hkdigital-bottom { height: 10px;}
  3988. .zp-back-to-top{
  3989. bottom: 140px!important;
  3990. }
  3991. .is-standalone .home-hb{
  3992. height: 50px;
  3993. }
  3994. .is-standalone .digital-bottom,.is-standalone .hkdigital-bottom,.is-standalone .my-bottom,.is-standalone .withdrawalHistory-bottom,.is-standalone .pc28-rule{
  3995. height: calc(50px + env(safe-area-inset-bottom));
  3996. }
  3997. .is-standalone .digital-cart-bottom,.is-standalone .pc28-cart-bottom{
  3998. padding-bottom: env(safe-area-inset-bottom)!important;
  3999. }
  4000. .is-standalone .zp-back-to-top{
  4001. bottom: calc(120px + env(safe-area-inset-bottom))!important;
  4002. }
  4003. .is-standalone .zp-paging-container-content{
  4004. padding-bottom: calc(50px + env(safe-area-inset-bottom))!important;
  4005. }
  4006. :root,
  4007. body {
  4008. /* 纯色 */
  4009. --u-white-color: #ffffff;
  4010. --u-black-color: #000000;
  4011. --u-main-color: #303133;
  4012. --u-content-color: #606266;
  4013. --u-tips-color: #909399;
  4014. --u-light-color: #c0c4cc;
  4015. --u-border-color: #e4e7ed;
  4016. --u-divider-color: #e4e7ed;
  4017. --u-mask-color: rgba(0, 0, 0, 0.4);
  4018. --u-shadow-color: rgba(0, 0, 0, 0.1);
  4019. /* 背景色 */
  4020. --u-bg-color: #f3f4f6;
  4021. --u-bg-white: #ffffff;
  4022. --u-bg-gray-light: #f1f1f1;
  4023. --u-bg-gray-dark: #2f343c;
  4024. --u-bg-black: #000000;
  4025. /* 主色 */
  4026. --u-type-primary: #2979ff;
  4027. --u-type-primary-light: #ecf5ff;
  4028. --u-type-primary-disabled: #a0cfff;
  4029. --u-type-primary-dark: #2b85e4;
  4030. /* 警告色 */
  4031. --u-type-warning: #ff9900;
  4032. --u-type-warning-disabled: #fcbd71;
  4033. --u-type-warning-dark: #f29100;
  4034. --u-type-warning-light: #fdf6ec;
  4035. /* 成功色 */
  4036. --u-type-success: #19be6b;
  4037. --u-type-success-disabled: #71d5a1;
  4038. --u-type-success-dark: #18b566;
  4039. --u-type-success-light: #dbf1e1;
  4040. /* 错误色 */
  4041. --u-type-error: #fa3534;
  4042. --u-type-error-disabled: #fab6b6;
  4043. --u-type-error-dark: #dd6161;
  4044. --u-type-error-light: #fef0f0;
  4045. /* 信息色 */
  4046. --u-type-info: #909399;
  4047. --u-type-info-disabled: #c8c9cc;
  4048. --u-type-info-dark: #82848a;
  4049. --u-type-info-light: #f4f4f5;
  4050. }
  4051. /* 颜色变量 */
  4052. /* 行为相关颜色 */
  4053. /* 文字基本颜色 */
  4054. /* 背景颜色 */
  4055. /* 边框颜色 */
  4056. /* 尺寸变量 */
  4057. /* 文字尺寸 */
  4058. /* 图片尺寸 */
  4059. /* Border Radius */
  4060. /* 水平间距 */
  4061. /* 垂直间距 */
  4062. /* 透明度 */
  4063. /* 文章场景相关 */
  4064. .nav-btn {
  4065. height: 36px;
  4066. width: 36px;
  4067. background-color: #4f4f4f;
  4068. border-radius: 6px;
  4069. display: flex;
  4070. align-items: center;
  4071. justify-content: center;
  4072. color: #f1f1f1;
  4073. }
  4074. body {
  4075. color: var(--u-main-color);
  4076. background-color: var(--u-bg-color);
  4077. font-size: 0.875rem;
  4078. }
  4079. body.u-theme-dark,
  4080. :root.u-theme-dark body,
  4081. :root[data-u-theme-mode=dark] body {
  4082. background-color: var(--u-bg-color);
  4083. color: var(--u-main-color);
  4084. }
  4085. .u-config-provider {
  4086. color: var(--u-main-color);
  4087. background-color: var(--u-bg-white, #ffffff);
  4088. }
  4089. .u-config-provider.u-theme-dark {
  4090. background-color: var(--u-bg-white, #0f1115);
  4091. color: var(--u-main-color);
  4092. }
  4093. .u-picker-view-mask,
  4094. .uni-picker-view-mask {
  4095. background-image: linear-gradient(180deg, rgba(var(--u-bg-white-rgb), 0.95), rgba(var(--u-bg-white-rgb), 0.6)), linear-gradient(0deg, rgba(var(--u-bg-white-rgb), 0.95), rgba(var(--u-bg-white-rgb), 0.6)) !important;
  4096. }
  4097. .u-picker-view-indicator {
  4098. border: rgba(var(--u-bg-white-rgb), 0.6) !important;
  4099. }
  4100. .u-picker-view-indicator::before,
  4101. .uni-picker-view-indicator::before {
  4102. border-top: 1px solid var(--u-border-color) !important;
  4103. }
  4104. .u-picker-view-indicator::after,
  4105. .uni-picker-view-indicator::after {
  4106. border-bottom: 1px solid var(--u-border-color) !important;
  4107. }
  4108. .u-relative,
  4109. .u-rela {
  4110. position: relative;
  4111. }
  4112. .u-absolute,
  4113. .u-abso {
  4114. position: absolute;
  4115. }
  4116. uni-image {
  4117. display: inline-block;
  4118. }
  4119. uni-view,
  4120. uni-text {
  4121. box-sizing: border-box;
  4122. }
  4123. .u-font-xs {
  4124. font-size: 0.6875rem;
  4125. }
  4126. .u-font-sm {
  4127. font-size: 0.8125rem;
  4128. }
  4129. .u-font-md {
  4130. font-size: 0.875rem;
  4131. }
  4132. .u-font-lg {
  4133. font-size: 0.9375rem;
  4134. }
  4135. .u-font-xl {
  4136. font-size: 1.0625rem;
  4137. }
  4138. .u-flex {
  4139. display: flex;
  4140. flex-direction: row;
  4141. align-items: center;
  4142. }
  4143. .u-flex-wrap {
  4144. flex-wrap: wrap;
  4145. }
  4146. .u-flex-nowrap {
  4147. flex-wrap: nowrap;
  4148. }
  4149. .u-col-center {
  4150. align-items: center;
  4151. }
  4152. .u-col-top {
  4153. align-items: flex-start;
  4154. }
  4155. .u-col-bottom {
  4156. align-items: flex-end;
  4157. }
  4158. .u-row-center {
  4159. justify-content: center;
  4160. }
  4161. .u-row-left {
  4162. justify-content: flex-start;
  4163. }
  4164. .u-row-right {
  4165. justify-content: flex-end;
  4166. }
  4167. .u-row-between {
  4168. justify-content: space-between;
  4169. }
  4170. .u-row-around {
  4171. justify-content: space-around;
  4172. }
  4173. .u-text-left {
  4174. text-align: left;
  4175. }
  4176. .u-text-center {
  4177. text-align: center;
  4178. }
  4179. .u-text-right {
  4180. text-align: right;
  4181. }
  4182. .u-flex-col {
  4183. display: flex;
  4184. flex-direction: column;
  4185. }
  4186. .u-flex-0 {
  4187. flex: 0;
  4188. }
  4189. .u-flex-1 {
  4190. flex: 1;
  4191. }
  4192. .u-flex-2 {
  4193. flex: 2;
  4194. }
  4195. .u-flex-3 {
  4196. flex: 3;
  4197. }
  4198. .u-flex-4 {
  4199. flex: 4;
  4200. }
  4201. .u-flex-5 {
  4202. flex: 5;
  4203. }
  4204. .u-flex-6 {
  4205. flex: 6;
  4206. }
  4207. .u-flex-7 {
  4208. flex: 7;
  4209. }
  4210. .u-flex-8 {
  4211. flex: 8;
  4212. }
  4213. .u-flex-9 {
  4214. flex: 9;
  4215. }
  4216. .u-flex-10 {
  4217. flex: 10;
  4218. }
  4219. .u-flex-11 {
  4220. flex: 11;
  4221. }
  4222. .u-flex-12 {
  4223. flex: 12;
  4224. }
  4225. .u-font-9 {
  4226. font-size: 9px;
  4227. }
  4228. .u-font-10 {
  4229. font-size: 10px;
  4230. }
  4231. .u-font-11 {
  4232. font-size: 11px;
  4233. }
  4234. .u-font-12 {
  4235. font-size: 12px;
  4236. }
  4237. .u-font-13 {
  4238. font-size: 13px;
  4239. }
  4240. .u-font-14 {
  4241. font-size: 14px;
  4242. }
  4243. .u-font-15 {
  4244. font-size: 15px;
  4245. }
  4246. .u-font-16 {
  4247. font-size: 16px;
  4248. }
  4249. .u-font-17 {
  4250. font-size: 17px;
  4251. }
  4252. .u-font-18 {
  4253. font-size: 18px;
  4254. }
  4255. .u-font-19 {
  4256. font-size: 19px;
  4257. }
  4258. .u-font-20 {
  4259. font-size: 0.625rem;
  4260. }
  4261. .u-font-21 {
  4262. font-size: 0.65625rem;
  4263. }
  4264. .u-font-22 {
  4265. font-size: 0.6875rem;
  4266. }
  4267. .u-font-23 {
  4268. font-size: 0.71875rem;
  4269. }
  4270. .u-font-24 {
  4271. font-size: 0.75rem;
  4272. }
  4273. .u-font-25 {
  4274. font-size: 0.78125rem;
  4275. }
  4276. .u-font-26 {
  4277. font-size: 0.8125rem;
  4278. }
  4279. .u-font-27 {
  4280. font-size: 0.84375rem;
  4281. }
  4282. .u-font-28 {
  4283. font-size: 0.875rem;
  4284. }
  4285. .u-font-29 {
  4286. font-size: 0.90625rem;
  4287. }
  4288. .u-font-30 {
  4289. font-size: 0.9375rem;
  4290. }
  4291. .u-font-31 {
  4292. font-size: 0.96875rem;
  4293. }
  4294. .u-font-32 {
  4295. font-size: 1rem;
  4296. }
  4297. .u-font-33 {
  4298. font-size: 1.03125rem;
  4299. }
  4300. .u-font-34 {
  4301. font-size: 1.0625rem;
  4302. }
  4303. .u-font-35 {
  4304. font-size: 1.09375rem;
  4305. }
  4306. .u-font-36 {
  4307. font-size: 1.125rem;
  4308. }
  4309. .u-font-37 {
  4310. font-size: 1.15625rem;
  4311. }
  4312. .u-font-38 {
  4313. font-size: 1.1875rem;
  4314. }
  4315. .u-font-39 {
  4316. font-size: 1.21875rem;
  4317. }
  4318. .u-font-40 {
  4319. font-size: 1.25rem;
  4320. }
  4321. .u-margin-0,
  4322. .u-m-0 {
  4323. margin: 0 !important;
  4324. }
  4325. .u-padding-0,
  4326. .u-p-0 {
  4327. padding: 0 !important;
  4328. }
  4329. .u-m-l-0 {
  4330. margin-left: 0 !important;
  4331. }
  4332. .u-p-l-0 {
  4333. padding-left: 0 !important;
  4334. }
  4335. .u-margin-left-0 {
  4336. margin-left: 0 !important;
  4337. }
  4338. .u-padding-left-0 {
  4339. padding-left: 0 !important;
  4340. }
  4341. .u-m-t-0 {
  4342. margin-top: 0 !important;
  4343. }
  4344. .u-p-t-0 {
  4345. padding-top: 0 !important;
  4346. }
  4347. .u-margin-top-0 {
  4348. margin-top: 0 !important;
  4349. }
  4350. .u-padding-top-0 {
  4351. padding-top: 0 !important;
  4352. }
  4353. .u-m-r-0 {
  4354. margin-right: 0 !important;
  4355. }
  4356. .u-p-r-0 {
  4357. padding-right: 0 !important;
  4358. }
  4359. .u-margin-right-0 {
  4360. margin-right: 0 !important;
  4361. }
  4362. .u-padding-right-0 {
  4363. padding-right: 0 !important;
  4364. }
  4365. .u-m-b-0 {
  4366. margin-bottom: 0 !important;
  4367. }
  4368. .u-p-b-0 {
  4369. padding-bottom: 0 !important;
  4370. }
  4371. .u-margin-bottom-0 {
  4372. margin-bottom: 0 !important;
  4373. }
  4374. .u-padding-bottom-0 {
  4375. padding-bottom: 0 !important;
  4376. }
  4377. .u-margin-2,
  4378. .u-m-2 {
  4379. margin: 0.0625rem !important;
  4380. }
  4381. .u-padding-2,
  4382. .u-p-2 {
  4383. padding: 0.0625rem !important;
  4384. }
  4385. .u-m-l-2 {
  4386. margin-left: 0.0625rem !important;
  4387. }
  4388. .u-p-l-2 {
  4389. padding-left: 0.0625rem !important;
  4390. }
  4391. .u-margin-left-2 {
  4392. margin-left: 0.0625rem !important;
  4393. }
  4394. .u-padding-left-2 {
  4395. padding-left: 0.0625rem !important;
  4396. }
  4397. .u-m-t-2 {
  4398. margin-top: 0.0625rem !important;
  4399. }
  4400. .u-p-t-2 {
  4401. padding-top: 0.0625rem !important;
  4402. }
  4403. .u-margin-top-2 {
  4404. margin-top: 0.0625rem !important;
  4405. }
  4406. .u-padding-top-2 {
  4407. padding-top: 0.0625rem !important;
  4408. }
  4409. .u-m-r-2 {
  4410. margin-right: 0.0625rem !important;
  4411. }
  4412. .u-p-r-2 {
  4413. padding-right: 0.0625rem !important;
  4414. }
  4415. .u-margin-right-2 {
  4416. margin-right: 0.0625rem !important;
  4417. }
  4418. .u-padding-right-2 {
  4419. padding-right: 0.0625rem !important;
  4420. }
  4421. .u-m-b-2 {
  4422. margin-bottom: 0.0625rem !important;
  4423. }
  4424. .u-p-b-2 {
  4425. padding-bottom: 0.0625rem !important;
  4426. }
  4427. .u-margin-bottom-2 {
  4428. margin-bottom: 0.0625rem !important;
  4429. }
  4430. .u-padding-bottom-2 {
  4431. padding-bottom: 0.0625rem !important;
  4432. }
  4433. .u-margin-4,
  4434. .u-m-4 {
  4435. margin: 0.125rem !important;
  4436. }
  4437. .u-padding-4,
  4438. .u-p-4 {
  4439. padding: 0.125rem !important;
  4440. }
  4441. .u-m-l-4 {
  4442. margin-left: 0.125rem !important;
  4443. }
  4444. .u-p-l-4 {
  4445. padding-left: 0.125rem !important;
  4446. }
  4447. .u-margin-left-4 {
  4448. margin-left: 0.125rem !important;
  4449. }
  4450. .u-padding-left-4 {
  4451. padding-left: 0.125rem !important;
  4452. }
  4453. .u-m-t-4 {
  4454. margin-top: 0.125rem !important;
  4455. }
  4456. .u-p-t-4 {
  4457. padding-top: 0.125rem !important;
  4458. }
  4459. .u-margin-top-4 {
  4460. margin-top: 0.125rem !important;
  4461. }
  4462. .u-padding-top-4 {
  4463. padding-top: 0.125rem !important;
  4464. }
  4465. .u-m-r-4 {
  4466. margin-right: 0.125rem !important;
  4467. }
  4468. .u-p-r-4 {
  4469. padding-right: 0.125rem !important;
  4470. }
  4471. .u-margin-right-4 {
  4472. margin-right: 0.125rem !important;
  4473. }
  4474. .u-padding-right-4 {
  4475. padding-right: 0.125rem !important;
  4476. }
  4477. .u-m-b-4 {
  4478. margin-bottom: 0.125rem !important;
  4479. }
  4480. .u-p-b-4 {
  4481. padding-bottom: 0.125rem !important;
  4482. }
  4483. .u-margin-bottom-4 {
  4484. margin-bottom: 0.125rem !important;
  4485. }
  4486. .u-padding-bottom-4 {
  4487. padding-bottom: 0.125rem !important;
  4488. }
  4489. .u-margin-5,
  4490. .u-m-5 {
  4491. margin: 0.15625rem !important;
  4492. }
  4493. .u-padding-5,
  4494. .u-p-5 {
  4495. padding: 0.15625rem !important;
  4496. }
  4497. .u-m-l-5 {
  4498. margin-left: 0.15625rem !important;
  4499. }
  4500. .u-p-l-5 {
  4501. padding-left: 0.15625rem !important;
  4502. }
  4503. .u-margin-left-5 {
  4504. margin-left: 0.15625rem !important;
  4505. }
  4506. .u-padding-left-5 {
  4507. padding-left: 0.15625rem !important;
  4508. }
  4509. .u-m-t-5 {
  4510. margin-top: 0.15625rem !important;
  4511. }
  4512. .u-p-t-5 {
  4513. padding-top: 0.15625rem !important;
  4514. }
  4515. .u-margin-top-5 {
  4516. margin-top: 0.15625rem !important;
  4517. }
  4518. .u-padding-top-5 {
  4519. padding-top: 0.15625rem !important;
  4520. }
  4521. .u-m-r-5 {
  4522. margin-right: 0.15625rem !important;
  4523. }
  4524. .u-p-r-5 {
  4525. padding-right: 0.15625rem !important;
  4526. }
  4527. .u-margin-right-5 {
  4528. margin-right: 0.15625rem !important;
  4529. }
  4530. .u-padding-right-5 {
  4531. padding-right: 0.15625rem !important;
  4532. }
  4533. .u-m-b-5 {
  4534. margin-bottom: 0.15625rem !important;
  4535. }
  4536. .u-p-b-5 {
  4537. padding-bottom: 0.15625rem !important;
  4538. }
  4539. .u-margin-bottom-5 {
  4540. margin-bottom: 0.15625rem !important;
  4541. }
  4542. .u-padding-bottom-5 {
  4543. padding-bottom: 0.15625rem !important;
  4544. }
  4545. .u-margin-6,
  4546. .u-m-6 {
  4547. margin: 0.1875rem !important;
  4548. }
  4549. .u-padding-6,
  4550. .u-p-6 {
  4551. padding: 0.1875rem !important;
  4552. }
  4553. .u-m-l-6 {
  4554. margin-left: 0.1875rem !important;
  4555. }
  4556. .u-p-l-6 {
  4557. padding-left: 0.1875rem !important;
  4558. }
  4559. .u-margin-left-6 {
  4560. margin-left: 0.1875rem !important;
  4561. }
  4562. .u-padding-left-6 {
  4563. padding-left: 0.1875rem !important;
  4564. }
  4565. .u-m-t-6 {
  4566. margin-top: 0.1875rem !important;
  4567. }
  4568. .u-p-t-6 {
  4569. padding-top: 0.1875rem !important;
  4570. }
  4571. .u-margin-top-6 {
  4572. margin-top: 0.1875rem !important;
  4573. }
  4574. .u-padding-top-6 {
  4575. padding-top: 0.1875rem !important;
  4576. }
  4577. .u-m-r-6 {
  4578. margin-right: 0.1875rem !important;
  4579. }
  4580. .u-p-r-6 {
  4581. padding-right: 0.1875rem !important;
  4582. }
  4583. .u-margin-right-6 {
  4584. margin-right: 0.1875rem !important;
  4585. }
  4586. .u-padding-right-6 {
  4587. padding-right: 0.1875rem !important;
  4588. }
  4589. .u-m-b-6 {
  4590. margin-bottom: 0.1875rem !important;
  4591. }
  4592. .u-p-b-6 {
  4593. padding-bottom: 0.1875rem !important;
  4594. }
  4595. .u-margin-bottom-6 {
  4596. margin-bottom: 0.1875rem !important;
  4597. }
  4598. .u-padding-bottom-6 {
  4599. padding-bottom: 0.1875rem !important;
  4600. }
  4601. .u-margin-8,
  4602. .u-m-8 {
  4603. margin: 0.25rem !important;
  4604. }
  4605. .u-padding-8,
  4606. .u-p-8 {
  4607. padding: 0.25rem !important;
  4608. }
  4609. .u-m-l-8 {
  4610. margin-left: 0.25rem !important;
  4611. }
  4612. .u-p-l-8 {
  4613. padding-left: 0.25rem !important;
  4614. }
  4615. .u-margin-left-8 {
  4616. margin-left: 0.25rem !important;
  4617. }
  4618. .u-padding-left-8 {
  4619. padding-left: 0.25rem !important;
  4620. }
  4621. .u-m-t-8 {
  4622. margin-top: 0.25rem !important;
  4623. }
  4624. .u-p-t-8 {
  4625. padding-top: 0.25rem !important;
  4626. }
  4627. .u-margin-top-8 {
  4628. margin-top: 0.25rem !important;
  4629. }
  4630. .u-padding-top-8 {
  4631. padding-top: 0.25rem !important;
  4632. }
  4633. .u-m-r-8 {
  4634. margin-right: 0.25rem !important;
  4635. }
  4636. .u-p-r-8 {
  4637. padding-right: 0.25rem !important;
  4638. }
  4639. .u-margin-right-8 {
  4640. margin-right: 0.25rem !important;
  4641. }
  4642. .u-padding-right-8 {
  4643. padding-right: 0.25rem !important;
  4644. }
  4645. .u-m-b-8 {
  4646. margin-bottom: 0.25rem !important;
  4647. }
  4648. .u-p-b-8 {
  4649. padding-bottom: 0.25rem !important;
  4650. }
  4651. .u-margin-bottom-8 {
  4652. margin-bottom: 0.25rem !important;
  4653. }
  4654. .u-padding-bottom-8 {
  4655. padding-bottom: 0.25rem !important;
  4656. }
  4657. .u-margin-10,
  4658. .u-m-10 {
  4659. margin: 0.3125rem !important;
  4660. }
  4661. .u-padding-10,
  4662. .u-p-10 {
  4663. padding: 0.3125rem !important;
  4664. }
  4665. .u-m-l-10 {
  4666. margin-left: 0.3125rem !important;
  4667. }
  4668. .u-p-l-10 {
  4669. padding-left: 0.3125rem !important;
  4670. }
  4671. .u-margin-left-10 {
  4672. margin-left: 0.3125rem !important;
  4673. }
  4674. .u-padding-left-10 {
  4675. padding-left: 0.3125rem !important;
  4676. }
  4677. .u-m-t-10 {
  4678. margin-top: 0.3125rem !important;
  4679. }
  4680. .u-p-t-10 {
  4681. padding-top: 0.3125rem !important;
  4682. }
  4683. .u-margin-top-10 {
  4684. margin-top: 0.3125rem !important;
  4685. }
  4686. .u-padding-top-10 {
  4687. padding-top: 0.3125rem !important;
  4688. }
  4689. .u-m-r-10 {
  4690. margin-right: 0.3125rem !important;
  4691. }
  4692. .u-p-r-10 {
  4693. padding-right: 0.3125rem !important;
  4694. }
  4695. .u-margin-right-10 {
  4696. margin-right: 0.3125rem !important;
  4697. }
  4698. .u-padding-right-10 {
  4699. padding-right: 0.3125rem !important;
  4700. }
  4701. .u-m-b-10 {
  4702. margin-bottom: 0.3125rem !important;
  4703. }
  4704. .u-p-b-10 {
  4705. padding-bottom: 0.3125rem !important;
  4706. }
  4707. .u-margin-bottom-10 {
  4708. margin-bottom: 0.3125rem !important;
  4709. }
  4710. .u-padding-bottom-10 {
  4711. padding-bottom: 0.3125rem !important;
  4712. }
  4713. .u-margin-12,
  4714. .u-m-12 {
  4715. margin: 0.375rem !important;
  4716. }
  4717. .u-padding-12,
  4718. .u-p-12 {
  4719. padding: 0.375rem !important;
  4720. }
  4721. .u-m-l-12 {
  4722. margin-left: 0.375rem !important;
  4723. }
  4724. .u-p-l-12 {
  4725. padding-left: 0.375rem !important;
  4726. }
  4727. .u-margin-left-12 {
  4728. margin-left: 0.375rem !important;
  4729. }
  4730. .u-padding-left-12 {
  4731. padding-left: 0.375rem !important;
  4732. }
  4733. .u-m-t-12 {
  4734. margin-top: 0.375rem !important;
  4735. }
  4736. .u-p-t-12 {
  4737. padding-top: 0.375rem !important;
  4738. }
  4739. .u-margin-top-12 {
  4740. margin-top: 0.375rem !important;
  4741. }
  4742. .u-padding-top-12 {
  4743. padding-top: 0.375rem !important;
  4744. }
  4745. .u-m-r-12 {
  4746. margin-right: 0.375rem !important;
  4747. }
  4748. .u-p-r-12 {
  4749. padding-right: 0.375rem !important;
  4750. }
  4751. .u-margin-right-12 {
  4752. margin-right: 0.375rem !important;
  4753. }
  4754. .u-padding-right-12 {
  4755. padding-right: 0.375rem !important;
  4756. }
  4757. .u-m-b-12 {
  4758. margin-bottom: 0.375rem !important;
  4759. }
  4760. .u-p-b-12 {
  4761. padding-bottom: 0.375rem !important;
  4762. }
  4763. .u-margin-bottom-12 {
  4764. margin-bottom: 0.375rem !important;
  4765. }
  4766. .u-padding-bottom-12 {
  4767. padding-bottom: 0.375rem !important;
  4768. }
  4769. .u-margin-14,
  4770. .u-m-14 {
  4771. margin: 0.4375rem !important;
  4772. }
  4773. .u-padding-14,
  4774. .u-p-14 {
  4775. padding: 0.4375rem !important;
  4776. }
  4777. .u-m-l-14 {
  4778. margin-left: 0.4375rem !important;
  4779. }
  4780. .u-p-l-14 {
  4781. padding-left: 0.4375rem !important;
  4782. }
  4783. .u-margin-left-14 {
  4784. margin-left: 0.4375rem !important;
  4785. }
  4786. .u-padding-left-14 {
  4787. padding-left: 0.4375rem !important;
  4788. }
  4789. .u-m-t-14 {
  4790. margin-top: 0.4375rem !important;
  4791. }
  4792. .u-p-t-14 {
  4793. padding-top: 0.4375rem !important;
  4794. }
  4795. .u-margin-top-14 {
  4796. margin-top: 0.4375rem !important;
  4797. }
  4798. .u-padding-top-14 {
  4799. padding-top: 0.4375rem !important;
  4800. }
  4801. .u-m-r-14 {
  4802. margin-right: 0.4375rem !important;
  4803. }
  4804. .u-p-r-14 {
  4805. padding-right: 0.4375rem !important;
  4806. }
  4807. .u-margin-right-14 {
  4808. margin-right: 0.4375rem !important;
  4809. }
  4810. .u-padding-right-14 {
  4811. padding-right: 0.4375rem !important;
  4812. }
  4813. .u-m-b-14 {
  4814. margin-bottom: 0.4375rem !important;
  4815. }
  4816. .u-p-b-14 {
  4817. padding-bottom: 0.4375rem !important;
  4818. }
  4819. .u-margin-bottom-14 {
  4820. margin-bottom: 0.4375rem !important;
  4821. }
  4822. .u-padding-bottom-14 {
  4823. padding-bottom: 0.4375rem !important;
  4824. }
  4825. .u-margin-15,
  4826. .u-m-15 {
  4827. margin: 0.46875rem !important;
  4828. }
  4829. .u-padding-15,
  4830. .u-p-15 {
  4831. padding: 0.46875rem !important;
  4832. }
  4833. .u-m-l-15 {
  4834. margin-left: 0.46875rem !important;
  4835. }
  4836. .u-p-l-15 {
  4837. padding-left: 0.46875rem !important;
  4838. }
  4839. .u-margin-left-15 {
  4840. margin-left: 0.46875rem !important;
  4841. }
  4842. .u-padding-left-15 {
  4843. padding-left: 0.46875rem !important;
  4844. }
  4845. .u-m-t-15 {
  4846. margin-top: 0.46875rem !important;
  4847. }
  4848. .u-p-t-15 {
  4849. padding-top: 0.46875rem !important;
  4850. }
  4851. .u-margin-top-15 {
  4852. margin-top: 0.46875rem !important;
  4853. }
  4854. .u-padding-top-15 {
  4855. padding-top: 0.46875rem !important;
  4856. }
  4857. .u-m-r-15 {
  4858. margin-right: 0.46875rem !important;
  4859. }
  4860. .u-p-r-15 {
  4861. padding-right: 0.46875rem !important;
  4862. }
  4863. .u-margin-right-15 {
  4864. margin-right: 0.46875rem !important;
  4865. }
  4866. .u-padding-right-15 {
  4867. padding-right: 0.46875rem !important;
  4868. }
  4869. .u-m-b-15 {
  4870. margin-bottom: 0.46875rem !important;
  4871. }
  4872. .u-p-b-15 {
  4873. padding-bottom: 0.46875rem !important;
  4874. }
  4875. .u-margin-bottom-15 {
  4876. margin-bottom: 0.46875rem !important;
  4877. }
  4878. .u-padding-bottom-15 {
  4879. padding-bottom: 0.46875rem !important;
  4880. }
  4881. .u-margin-16,
  4882. .u-m-16 {
  4883. margin: 0.5rem !important;
  4884. }
  4885. .u-padding-16,
  4886. .u-p-16 {
  4887. padding: 0.5rem !important;
  4888. }
  4889. .u-m-l-16 {
  4890. margin-left: 0.5rem !important;
  4891. }
  4892. .u-p-l-16 {
  4893. padding-left: 0.5rem !important;
  4894. }
  4895. .u-margin-left-16 {
  4896. margin-left: 0.5rem !important;
  4897. }
  4898. .u-padding-left-16 {
  4899. padding-left: 0.5rem !important;
  4900. }
  4901. .u-m-t-16 {
  4902. margin-top: 0.5rem !important;
  4903. }
  4904. .u-p-t-16 {
  4905. padding-top: 0.5rem !important;
  4906. }
  4907. .u-margin-top-16 {
  4908. margin-top: 0.5rem !important;
  4909. }
  4910. .u-padding-top-16 {
  4911. padding-top: 0.5rem !important;
  4912. }
  4913. .u-m-r-16 {
  4914. margin-right: 0.5rem !important;
  4915. }
  4916. .u-p-r-16 {
  4917. padding-right: 0.5rem !important;
  4918. }
  4919. .u-margin-right-16 {
  4920. margin-right: 0.5rem !important;
  4921. }
  4922. .u-padding-right-16 {
  4923. padding-right: 0.5rem !important;
  4924. }
  4925. .u-m-b-16 {
  4926. margin-bottom: 0.5rem !important;
  4927. }
  4928. .u-p-b-16 {
  4929. padding-bottom: 0.5rem !important;
  4930. }
  4931. .u-margin-bottom-16 {
  4932. margin-bottom: 0.5rem !important;
  4933. }
  4934. .u-padding-bottom-16 {
  4935. padding-bottom: 0.5rem !important;
  4936. }
  4937. .u-margin-18,
  4938. .u-m-18 {
  4939. margin: 0.5625rem !important;
  4940. }
  4941. .u-padding-18,
  4942. .u-p-18 {
  4943. padding: 0.5625rem !important;
  4944. }
  4945. .u-m-l-18 {
  4946. margin-left: 0.5625rem !important;
  4947. }
  4948. .u-p-l-18 {
  4949. padding-left: 0.5625rem !important;
  4950. }
  4951. .u-margin-left-18 {
  4952. margin-left: 0.5625rem !important;
  4953. }
  4954. .u-padding-left-18 {
  4955. padding-left: 0.5625rem !important;
  4956. }
  4957. .u-m-t-18 {
  4958. margin-top: 0.5625rem !important;
  4959. }
  4960. .u-p-t-18 {
  4961. padding-top: 0.5625rem !important;
  4962. }
  4963. .u-margin-top-18 {
  4964. margin-top: 0.5625rem !important;
  4965. }
  4966. .u-padding-top-18 {
  4967. padding-top: 0.5625rem !important;
  4968. }
  4969. .u-m-r-18 {
  4970. margin-right: 0.5625rem !important;
  4971. }
  4972. .u-p-r-18 {
  4973. padding-right: 0.5625rem !important;
  4974. }
  4975. .u-margin-right-18 {
  4976. margin-right: 0.5625rem !important;
  4977. }
  4978. .u-padding-right-18 {
  4979. padding-right: 0.5625rem !important;
  4980. }
  4981. .u-m-b-18 {
  4982. margin-bottom: 0.5625rem !important;
  4983. }
  4984. .u-p-b-18 {
  4985. padding-bottom: 0.5625rem !important;
  4986. }
  4987. .u-margin-bottom-18 {
  4988. margin-bottom: 0.5625rem !important;
  4989. }
  4990. .u-padding-bottom-18 {
  4991. padding-bottom: 0.5625rem !important;
  4992. }
  4993. .u-margin-20,
  4994. .u-m-20 {
  4995. margin: 0.625rem !important;
  4996. }
  4997. .u-padding-20,
  4998. .u-p-20 {
  4999. padding: 0.625rem !important;
  5000. }
  5001. .u-m-l-20 {
  5002. margin-left: 0.625rem !important;
  5003. }
  5004. .u-p-l-20 {
  5005. padding-left: 0.625rem !important;
  5006. }
  5007. .u-margin-left-20 {
  5008. margin-left: 0.625rem !important;
  5009. }
  5010. .u-padding-left-20 {
  5011. padding-left: 0.625rem !important;
  5012. }
  5013. .u-m-t-20 {
  5014. margin-top: 0.625rem !important;
  5015. }
  5016. .u-p-t-20 {
  5017. padding-top: 0.625rem !important;
  5018. }
  5019. .u-margin-top-20 {
  5020. margin-top: 0.625rem !important;
  5021. }
  5022. .u-padding-top-20 {
  5023. padding-top: 0.625rem !important;
  5024. }
  5025. .u-m-r-20 {
  5026. margin-right: 0.625rem !important;
  5027. }
  5028. .u-p-r-20 {
  5029. padding-right: 0.625rem !important;
  5030. }
  5031. .u-margin-right-20 {
  5032. margin-right: 0.625rem !important;
  5033. }
  5034. .u-padding-right-20 {
  5035. padding-right: 0.625rem !important;
  5036. }
  5037. .u-m-b-20 {
  5038. margin-bottom: 0.625rem !important;
  5039. }
  5040. .u-p-b-20 {
  5041. padding-bottom: 0.625rem !important;
  5042. }
  5043. .u-margin-bottom-20 {
  5044. margin-bottom: 0.625rem !important;
  5045. }
  5046. .u-padding-bottom-20 {
  5047. padding-bottom: 0.625rem !important;
  5048. }
  5049. .u-margin-22,
  5050. .u-m-22 {
  5051. margin: 0.6875rem !important;
  5052. }
  5053. .u-padding-22,
  5054. .u-p-22 {
  5055. padding: 0.6875rem !important;
  5056. }
  5057. .u-m-l-22 {
  5058. margin-left: 0.6875rem !important;
  5059. }
  5060. .u-p-l-22 {
  5061. padding-left: 0.6875rem !important;
  5062. }
  5063. .u-margin-left-22 {
  5064. margin-left: 0.6875rem !important;
  5065. }
  5066. .u-padding-left-22 {
  5067. padding-left: 0.6875rem !important;
  5068. }
  5069. .u-m-t-22 {
  5070. margin-top: 0.6875rem !important;
  5071. }
  5072. .u-p-t-22 {
  5073. padding-top: 0.6875rem !important;
  5074. }
  5075. .u-margin-top-22 {
  5076. margin-top: 0.6875rem !important;
  5077. }
  5078. .u-padding-top-22 {
  5079. padding-top: 0.6875rem !important;
  5080. }
  5081. .u-m-r-22 {
  5082. margin-right: 0.6875rem !important;
  5083. }
  5084. .u-p-r-22 {
  5085. padding-right: 0.6875rem !important;
  5086. }
  5087. .u-margin-right-22 {
  5088. margin-right: 0.6875rem !important;
  5089. }
  5090. .u-padding-right-22 {
  5091. padding-right: 0.6875rem !important;
  5092. }
  5093. .u-m-b-22 {
  5094. margin-bottom: 0.6875rem !important;
  5095. }
  5096. .u-p-b-22 {
  5097. padding-bottom: 0.6875rem !important;
  5098. }
  5099. .u-margin-bottom-22 {
  5100. margin-bottom: 0.6875rem !important;
  5101. }
  5102. .u-padding-bottom-22 {
  5103. padding-bottom: 0.6875rem !important;
  5104. }
  5105. .u-margin-24,
  5106. .u-m-24 {
  5107. margin: 0.75rem !important;
  5108. }
  5109. .u-padding-24,
  5110. .u-p-24 {
  5111. padding: 0.75rem !important;
  5112. }
  5113. .u-m-l-24 {
  5114. margin-left: 0.75rem !important;
  5115. }
  5116. .u-p-l-24 {
  5117. padding-left: 0.75rem !important;
  5118. }
  5119. .u-margin-left-24 {
  5120. margin-left: 0.75rem !important;
  5121. }
  5122. .u-padding-left-24 {
  5123. padding-left: 0.75rem !important;
  5124. }
  5125. .u-m-t-24 {
  5126. margin-top: 0.75rem !important;
  5127. }
  5128. .u-p-t-24 {
  5129. padding-top: 0.75rem !important;
  5130. }
  5131. .u-margin-top-24 {
  5132. margin-top: 0.75rem !important;
  5133. }
  5134. .u-padding-top-24 {
  5135. padding-top: 0.75rem !important;
  5136. }
  5137. .u-m-r-24 {
  5138. margin-right: 0.75rem !important;
  5139. }
  5140. .u-p-r-24 {
  5141. padding-right: 0.75rem !important;
  5142. }
  5143. .u-margin-right-24 {
  5144. margin-right: 0.75rem !important;
  5145. }
  5146. .u-padding-right-24 {
  5147. padding-right: 0.75rem !important;
  5148. }
  5149. .u-m-b-24 {
  5150. margin-bottom: 0.75rem !important;
  5151. }
  5152. .u-p-b-24 {
  5153. padding-bottom: 0.75rem !important;
  5154. }
  5155. .u-margin-bottom-24 {
  5156. margin-bottom: 0.75rem !important;
  5157. }
  5158. .u-padding-bottom-24 {
  5159. padding-bottom: 0.75rem !important;
  5160. }
  5161. .u-margin-25,
  5162. .u-m-25 {
  5163. margin: 0.78125rem !important;
  5164. }
  5165. .u-padding-25,
  5166. .u-p-25 {
  5167. padding: 0.78125rem !important;
  5168. }
  5169. .u-m-l-25 {
  5170. margin-left: 0.78125rem !important;
  5171. }
  5172. .u-p-l-25 {
  5173. padding-left: 0.78125rem !important;
  5174. }
  5175. .u-margin-left-25 {
  5176. margin-left: 0.78125rem !important;
  5177. }
  5178. .u-padding-left-25 {
  5179. padding-left: 0.78125rem !important;
  5180. }
  5181. .u-m-t-25 {
  5182. margin-top: 0.78125rem !important;
  5183. }
  5184. .u-p-t-25 {
  5185. padding-top: 0.78125rem !important;
  5186. }
  5187. .u-margin-top-25 {
  5188. margin-top: 0.78125rem !important;
  5189. }
  5190. .u-padding-top-25 {
  5191. padding-top: 0.78125rem !important;
  5192. }
  5193. .u-m-r-25 {
  5194. margin-right: 0.78125rem !important;
  5195. }
  5196. .u-p-r-25 {
  5197. padding-right: 0.78125rem !important;
  5198. }
  5199. .u-margin-right-25 {
  5200. margin-right: 0.78125rem !important;
  5201. }
  5202. .u-padding-right-25 {
  5203. padding-right: 0.78125rem !important;
  5204. }
  5205. .u-m-b-25 {
  5206. margin-bottom: 0.78125rem !important;
  5207. }
  5208. .u-p-b-25 {
  5209. padding-bottom: 0.78125rem !important;
  5210. }
  5211. .u-margin-bottom-25 {
  5212. margin-bottom: 0.78125rem !important;
  5213. }
  5214. .u-padding-bottom-25 {
  5215. padding-bottom: 0.78125rem !important;
  5216. }
  5217. .u-margin-26,
  5218. .u-m-26 {
  5219. margin: 0.8125rem !important;
  5220. }
  5221. .u-padding-26,
  5222. .u-p-26 {
  5223. padding: 0.8125rem !important;
  5224. }
  5225. .u-m-l-26 {
  5226. margin-left: 0.8125rem !important;
  5227. }
  5228. .u-p-l-26 {
  5229. padding-left: 0.8125rem !important;
  5230. }
  5231. .u-margin-left-26 {
  5232. margin-left: 0.8125rem !important;
  5233. }
  5234. .u-padding-left-26 {
  5235. padding-left: 0.8125rem !important;
  5236. }
  5237. .u-m-t-26 {
  5238. margin-top: 0.8125rem !important;
  5239. }
  5240. .u-p-t-26 {
  5241. padding-top: 0.8125rem !important;
  5242. }
  5243. .u-margin-top-26 {
  5244. margin-top: 0.8125rem !important;
  5245. }
  5246. .u-padding-top-26 {
  5247. padding-top: 0.8125rem !important;
  5248. }
  5249. .u-m-r-26 {
  5250. margin-right: 0.8125rem !important;
  5251. }
  5252. .u-p-r-26 {
  5253. padding-right: 0.8125rem !important;
  5254. }
  5255. .u-margin-right-26 {
  5256. margin-right: 0.8125rem !important;
  5257. }
  5258. .u-padding-right-26 {
  5259. padding-right: 0.8125rem !important;
  5260. }
  5261. .u-m-b-26 {
  5262. margin-bottom: 0.8125rem !important;
  5263. }
  5264. .u-p-b-26 {
  5265. padding-bottom: 0.8125rem !important;
  5266. }
  5267. .u-margin-bottom-26 {
  5268. margin-bottom: 0.8125rem !important;
  5269. }
  5270. .u-padding-bottom-26 {
  5271. padding-bottom: 0.8125rem !important;
  5272. }
  5273. .u-margin-28,
  5274. .u-m-28 {
  5275. margin: 0.875rem !important;
  5276. }
  5277. .u-padding-28,
  5278. .u-p-28 {
  5279. padding: 0.875rem !important;
  5280. }
  5281. .u-m-l-28 {
  5282. margin-left: 0.875rem !important;
  5283. }
  5284. .u-p-l-28 {
  5285. padding-left: 0.875rem !important;
  5286. }
  5287. .u-margin-left-28 {
  5288. margin-left: 0.875rem !important;
  5289. }
  5290. .u-padding-left-28 {
  5291. padding-left: 0.875rem !important;
  5292. }
  5293. .u-m-t-28 {
  5294. margin-top: 0.875rem !important;
  5295. }
  5296. .u-p-t-28 {
  5297. padding-top: 0.875rem !important;
  5298. }
  5299. .u-margin-top-28 {
  5300. margin-top: 0.875rem !important;
  5301. }
  5302. .u-padding-top-28 {
  5303. padding-top: 0.875rem !important;
  5304. }
  5305. .u-m-r-28 {
  5306. margin-right: 0.875rem !important;
  5307. }
  5308. .u-p-r-28 {
  5309. padding-right: 0.875rem !important;
  5310. }
  5311. .u-margin-right-28 {
  5312. margin-right: 0.875rem !important;
  5313. }
  5314. .u-padding-right-28 {
  5315. padding-right: 0.875rem !important;
  5316. }
  5317. .u-m-b-28 {
  5318. margin-bottom: 0.875rem !important;
  5319. }
  5320. .u-p-b-28 {
  5321. padding-bottom: 0.875rem !important;
  5322. }
  5323. .u-margin-bottom-28 {
  5324. margin-bottom: 0.875rem !important;
  5325. }
  5326. .u-padding-bottom-28 {
  5327. padding-bottom: 0.875rem !important;
  5328. }
  5329. .u-margin-30,
  5330. .u-m-30 {
  5331. margin: 0.9375rem !important;
  5332. }
  5333. .u-padding-30,
  5334. .u-p-30 {
  5335. padding: 0.9375rem !important;
  5336. }
  5337. .u-m-l-30 {
  5338. margin-left: 0.9375rem !important;
  5339. }
  5340. .u-p-l-30 {
  5341. padding-left: 0.9375rem !important;
  5342. }
  5343. .u-margin-left-30 {
  5344. margin-left: 0.9375rem !important;
  5345. }
  5346. .u-padding-left-30 {
  5347. padding-left: 0.9375rem !important;
  5348. }
  5349. .u-m-t-30 {
  5350. margin-top: 0.9375rem !important;
  5351. }
  5352. .u-p-t-30 {
  5353. padding-top: 0.9375rem !important;
  5354. }
  5355. .u-margin-top-30 {
  5356. margin-top: 0.9375rem !important;
  5357. }
  5358. .u-padding-top-30 {
  5359. padding-top: 0.9375rem !important;
  5360. }
  5361. .u-m-r-30 {
  5362. margin-right: 0.9375rem !important;
  5363. }
  5364. .u-p-r-30 {
  5365. padding-right: 0.9375rem !important;
  5366. }
  5367. .u-margin-right-30 {
  5368. margin-right: 0.9375rem !important;
  5369. }
  5370. .u-padding-right-30 {
  5371. padding-right: 0.9375rem !important;
  5372. }
  5373. .u-m-b-30 {
  5374. margin-bottom: 0.9375rem !important;
  5375. }
  5376. .u-p-b-30 {
  5377. padding-bottom: 0.9375rem !important;
  5378. }
  5379. .u-margin-bottom-30 {
  5380. margin-bottom: 0.9375rem !important;
  5381. }
  5382. .u-padding-bottom-30 {
  5383. padding-bottom: 0.9375rem !important;
  5384. }
  5385. .u-margin-32,
  5386. .u-m-32 {
  5387. margin: 1rem !important;
  5388. }
  5389. .u-padding-32,
  5390. .u-p-32 {
  5391. padding: 1rem !important;
  5392. }
  5393. .u-m-l-32 {
  5394. margin-left: 1rem !important;
  5395. }
  5396. .u-p-l-32 {
  5397. padding-left: 1rem !important;
  5398. }
  5399. .u-margin-left-32 {
  5400. margin-left: 1rem !important;
  5401. }
  5402. .u-padding-left-32 {
  5403. padding-left: 1rem !important;
  5404. }
  5405. .u-m-t-32 {
  5406. margin-top: 1rem !important;
  5407. }
  5408. .u-p-t-32 {
  5409. padding-top: 1rem !important;
  5410. }
  5411. .u-margin-top-32 {
  5412. margin-top: 1rem !important;
  5413. }
  5414. .u-padding-top-32 {
  5415. padding-top: 1rem !important;
  5416. }
  5417. .u-m-r-32 {
  5418. margin-right: 1rem !important;
  5419. }
  5420. .u-p-r-32 {
  5421. padding-right: 1rem !important;
  5422. }
  5423. .u-margin-right-32 {
  5424. margin-right: 1rem !important;
  5425. }
  5426. .u-padding-right-32 {
  5427. padding-right: 1rem !important;
  5428. }
  5429. .u-m-b-32 {
  5430. margin-bottom: 1rem !important;
  5431. }
  5432. .u-p-b-32 {
  5433. padding-bottom: 1rem !important;
  5434. }
  5435. .u-margin-bottom-32 {
  5436. margin-bottom: 1rem !important;
  5437. }
  5438. .u-padding-bottom-32 {
  5439. padding-bottom: 1rem !important;
  5440. }
  5441. .u-margin-34,
  5442. .u-m-34 {
  5443. margin: 1.0625rem !important;
  5444. }
  5445. .u-padding-34,
  5446. .u-p-34 {
  5447. padding: 1.0625rem !important;
  5448. }
  5449. .u-m-l-34 {
  5450. margin-left: 1.0625rem !important;
  5451. }
  5452. .u-p-l-34 {
  5453. padding-left: 1.0625rem !important;
  5454. }
  5455. .u-margin-left-34 {
  5456. margin-left: 1.0625rem !important;
  5457. }
  5458. .u-padding-left-34 {
  5459. padding-left: 1.0625rem !important;
  5460. }
  5461. .u-m-t-34 {
  5462. margin-top: 1.0625rem !important;
  5463. }
  5464. .u-p-t-34 {
  5465. padding-top: 1.0625rem !important;
  5466. }
  5467. .u-margin-top-34 {
  5468. margin-top: 1.0625rem !important;
  5469. }
  5470. .u-padding-top-34 {
  5471. padding-top: 1.0625rem !important;
  5472. }
  5473. .u-m-r-34 {
  5474. margin-right: 1.0625rem !important;
  5475. }
  5476. .u-p-r-34 {
  5477. padding-right: 1.0625rem !important;
  5478. }
  5479. .u-margin-right-34 {
  5480. margin-right: 1.0625rem !important;
  5481. }
  5482. .u-padding-right-34 {
  5483. padding-right: 1.0625rem !important;
  5484. }
  5485. .u-m-b-34 {
  5486. margin-bottom: 1.0625rem !important;
  5487. }
  5488. .u-p-b-34 {
  5489. padding-bottom: 1.0625rem !important;
  5490. }
  5491. .u-margin-bottom-34 {
  5492. margin-bottom: 1.0625rem !important;
  5493. }
  5494. .u-padding-bottom-34 {
  5495. padding-bottom: 1.0625rem !important;
  5496. }
  5497. .u-margin-35,
  5498. .u-m-35 {
  5499. margin: 1.09375rem !important;
  5500. }
  5501. .u-padding-35,
  5502. .u-p-35 {
  5503. padding: 1.09375rem !important;
  5504. }
  5505. .u-m-l-35 {
  5506. margin-left: 1.09375rem !important;
  5507. }
  5508. .u-p-l-35 {
  5509. padding-left: 1.09375rem !important;
  5510. }
  5511. .u-margin-left-35 {
  5512. margin-left: 1.09375rem !important;
  5513. }
  5514. .u-padding-left-35 {
  5515. padding-left: 1.09375rem !important;
  5516. }
  5517. .u-m-t-35 {
  5518. margin-top: 1.09375rem !important;
  5519. }
  5520. .u-p-t-35 {
  5521. padding-top: 1.09375rem !important;
  5522. }
  5523. .u-margin-top-35 {
  5524. margin-top: 1.09375rem !important;
  5525. }
  5526. .u-padding-top-35 {
  5527. padding-top: 1.09375rem !important;
  5528. }
  5529. .u-m-r-35 {
  5530. margin-right: 1.09375rem !important;
  5531. }
  5532. .u-p-r-35 {
  5533. padding-right: 1.09375rem !important;
  5534. }
  5535. .u-margin-right-35 {
  5536. margin-right: 1.09375rem !important;
  5537. }
  5538. .u-padding-right-35 {
  5539. padding-right: 1.09375rem !important;
  5540. }
  5541. .u-m-b-35 {
  5542. margin-bottom: 1.09375rem !important;
  5543. }
  5544. .u-p-b-35 {
  5545. padding-bottom: 1.09375rem !important;
  5546. }
  5547. .u-margin-bottom-35 {
  5548. margin-bottom: 1.09375rem !important;
  5549. }
  5550. .u-padding-bottom-35 {
  5551. padding-bottom: 1.09375rem !important;
  5552. }
  5553. .u-margin-36,
  5554. .u-m-36 {
  5555. margin: 1.125rem !important;
  5556. }
  5557. .u-padding-36,
  5558. .u-p-36 {
  5559. padding: 1.125rem !important;
  5560. }
  5561. .u-m-l-36 {
  5562. margin-left: 1.125rem !important;
  5563. }
  5564. .u-p-l-36 {
  5565. padding-left: 1.125rem !important;
  5566. }
  5567. .u-margin-left-36 {
  5568. margin-left: 1.125rem !important;
  5569. }
  5570. .u-padding-left-36 {
  5571. padding-left: 1.125rem !important;
  5572. }
  5573. .u-m-t-36 {
  5574. margin-top: 1.125rem !important;
  5575. }
  5576. .u-p-t-36 {
  5577. padding-top: 1.125rem !important;
  5578. }
  5579. .u-margin-top-36 {
  5580. margin-top: 1.125rem !important;
  5581. }
  5582. .u-padding-top-36 {
  5583. padding-top: 1.125rem !important;
  5584. }
  5585. .u-m-r-36 {
  5586. margin-right: 1.125rem !important;
  5587. }
  5588. .u-p-r-36 {
  5589. padding-right: 1.125rem !important;
  5590. }
  5591. .u-margin-right-36 {
  5592. margin-right: 1.125rem !important;
  5593. }
  5594. .u-padding-right-36 {
  5595. padding-right: 1.125rem !important;
  5596. }
  5597. .u-m-b-36 {
  5598. margin-bottom: 1.125rem !important;
  5599. }
  5600. .u-p-b-36 {
  5601. padding-bottom: 1.125rem !important;
  5602. }
  5603. .u-margin-bottom-36 {
  5604. margin-bottom: 1.125rem !important;
  5605. }
  5606. .u-padding-bottom-36 {
  5607. padding-bottom: 1.125rem !important;
  5608. }
  5609. .u-margin-38,
  5610. .u-m-38 {
  5611. margin: 1.1875rem !important;
  5612. }
  5613. .u-padding-38,
  5614. .u-p-38 {
  5615. padding: 1.1875rem !important;
  5616. }
  5617. .u-m-l-38 {
  5618. margin-left: 1.1875rem !important;
  5619. }
  5620. .u-p-l-38 {
  5621. padding-left: 1.1875rem !important;
  5622. }
  5623. .u-margin-left-38 {
  5624. margin-left: 1.1875rem !important;
  5625. }
  5626. .u-padding-left-38 {
  5627. padding-left: 1.1875rem !important;
  5628. }
  5629. .u-m-t-38 {
  5630. margin-top: 1.1875rem !important;
  5631. }
  5632. .u-p-t-38 {
  5633. padding-top: 1.1875rem !important;
  5634. }
  5635. .u-margin-top-38 {
  5636. margin-top: 1.1875rem !important;
  5637. }
  5638. .u-padding-top-38 {
  5639. padding-top: 1.1875rem !important;
  5640. }
  5641. .u-m-r-38 {
  5642. margin-right: 1.1875rem !important;
  5643. }
  5644. .u-p-r-38 {
  5645. padding-right: 1.1875rem !important;
  5646. }
  5647. .u-margin-right-38 {
  5648. margin-right: 1.1875rem !important;
  5649. }
  5650. .u-padding-right-38 {
  5651. padding-right: 1.1875rem !important;
  5652. }
  5653. .u-m-b-38 {
  5654. margin-bottom: 1.1875rem !important;
  5655. }
  5656. .u-p-b-38 {
  5657. padding-bottom: 1.1875rem !important;
  5658. }
  5659. .u-margin-bottom-38 {
  5660. margin-bottom: 1.1875rem !important;
  5661. }
  5662. .u-padding-bottom-38 {
  5663. padding-bottom: 1.1875rem !important;
  5664. }
  5665. .u-margin-40,
  5666. .u-m-40 {
  5667. margin: 1.25rem !important;
  5668. }
  5669. .u-padding-40,
  5670. .u-p-40 {
  5671. padding: 1.25rem !important;
  5672. }
  5673. .u-m-l-40 {
  5674. margin-left: 1.25rem !important;
  5675. }
  5676. .u-p-l-40 {
  5677. padding-left: 1.25rem !important;
  5678. }
  5679. .u-margin-left-40 {
  5680. margin-left: 1.25rem !important;
  5681. }
  5682. .u-padding-left-40 {
  5683. padding-left: 1.25rem !important;
  5684. }
  5685. .u-m-t-40 {
  5686. margin-top: 1.25rem !important;
  5687. }
  5688. .u-p-t-40 {
  5689. padding-top: 1.25rem !important;
  5690. }
  5691. .u-margin-top-40 {
  5692. margin-top: 1.25rem !important;
  5693. }
  5694. .u-padding-top-40 {
  5695. padding-top: 1.25rem !important;
  5696. }
  5697. .u-m-r-40 {
  5698. margin-right: 1.25rem !important;
  5699. }
  5700. .u-p-r-40 {
  5701. padding-right: 1.25rem !important;
  5702. }
  5703. .u-margin-right-40 {
  5704. margin-right: 1.25rem !important;
  5705. }
  5706. .u-padding-right-40 {
  5707. padding-right: 1.25rem !important;
  5708. }
  5709. .u-m-b-40 {
  5710. margin-bottom: 1.25rem !important;
  5711. }
  5712. .u-p-b-40 {
  5713. padding-bottom: 1.25rem !important;
  5714. }
  5715. .u-margin-bottom-40 {
  5716. margin-bottom: 1.25rem !important;
  5717. }
  5718. .u-padding-bottom-40 {
  5719. padding-bottom: 1.25rem !important;
  5720. }
  5721. .u-margin-42,
  5722. .u-m-42 {
  5723. margin: 1.3125rem !important;
  5724. }
  5725. .u-padding-42,
  5726. .u-p-42 {
  5727. padding: 1.3125rem !important;
  5728. }
  5729. .u-m-l-42 {
  5730. margin-left: 1.3125rem !important;
  5731. }
  5732. .u-p-l-42 {
  5733. padding-left: 1.3125rem !important;
  5734. }
  5735. .u-margin-left-42 {
  5736. margin-left: 1.3125rem !important;
  5737. }
  5738. .u-padding-left-42 {
  5739. padding-left: 1.3125rem !important;
  5740. }
  5741. .u-m-t-42 {
  5742. margin-top: 1.3125rem !important;
  5743. }
  5744. .u-p-t-42 {
  5745. padding-top: 1.3125rem !important;
  5746. }
  5747. .u-margin-top-42 {
  5748. margin-top: 1.3125rem !important;
  5749. }
  5750. .u-padding-top-42 {
  5751. padding-top: 1.3125rem !important;
  5752. }
  5753. .u-m-r-42 {
  5754. margin-right: 1.3125rem !important;
  5755. }
  5756. .u-p-r-42 {
  5757. padding-right: 1.3125rem !important;
  5758. }
  5759. .u-margin-right-42 {
  5760. margin-right: 1.3125rem !important;
  5761. }
  5762. .u-padding-right-42 {
  5763. padding-right: 1.3125rem !important;
  5764. }
  5765. .u-m-b-42 {
  5766. margin-bottom: 1.3125rem !important;
  5767. }
  5768. .u-p-b-42 {
  5769. padding-bottom: 1.3125rem !important;
  5770. }
  5771. .u-margin-bottom-42 {
  5772. margin-bottom: 1.3125rem !important;
  5773. }
  5774. .u-padding-bottom-42 {
  5775. padding-bottom: 1.3125rem !important;
  5776. }
  5777. .u-margin-44,
  5778. .u-m-44 {
  5779. margin: 1.375rem !important;
  5780. }
  5781. .u-padding-44,
  5782. .u-p-44 {
  5783. padding: 1.375rem !important;
  5784. }
  5785. .u-m-l-44 {
  5786. margin-left: 1.375rem !important;
  5787. }
  5788. .u-p-l-44 {
  5789. padding-left: 1.375rem !important;
  5790. }
  5791. .u-margin-left-44 {
  5792. margin-left: 1.375rem !important;
  5793. }
  5794. .u-padding-left-44 {
  5795. padding-left: 1.375rem !important;
  5796. }
  5797. .u-m-t-44 {
  5798. margin-top: 1.375rem !important;
  5799. }
  5800. .u-p-t-44 {
  5801. padding-top: 1.375rem !important;
  5802. }
  5803. .u-margin-top-44 {
  5804. margin-top: 1.375rem !important;
  5805. }
  5806. .u-padding-top-44 {
  5807. padding-top: 1.375rem !important;
  5808. }
  5809. .u-m-r-44 {
  5810. margin-right: 1.375rem !important;
  5811. }
  5812. .u-p-r-44 {
  5813. padding-right: 1.375rem !important;
  5814. }
  5815. .u-margin-right-44 {
  5816. margin-right: 1.375rem !important;
  5817. }
  5818. .u-padding-right-44 {
  5819. padding-right: 1.375rem !important;
  5820. }
  5821. .u-m-b-44 {
  5822. margin-bottom: 1.375rem !important;
  5823. }
  5824. .u-p-b-44 {
  5825. padding-bottom: 1.375rem !important;
  5826. }
  5827. .u-margin-bottom-44 {
  5828. margin-bottom: 1.375rem !important;
  5829. }
  5830. .u-padding-bottom-44 {
  5831. padding-bottom: 1.375rem !important;
  5832. }
  5833. .u-margin-45,
  5834. .u-m-45 {
  5835. margin: 1.40625rem !important;
  5836. }
  5837. .u-padding-45,
  5838. .u-p-45 {
  5839. padding: 1.40625rem !important;
  5840. }
  5841. .u-m-l-45 {
  5842. margin-left: 1.40625rem !important;
  5843. }
  5844. .u-p-l-45 {
  5845. padding-left: 1.40625rem !important;
  5846. }
  5847. .u-margin-left-45 {
  5848. margin-left: 1.40625rem !important;
  5849. }
  5850. .u-padding-left-45 {
  5851. padding-left: 1.40625rem !important;
  5852. }
  5853. .u-m-t-45 {
  5854. margin-top: 1.40625rem !important;
  5855. }
  5856. .u-p-t-45 {
  5857. padding-top: 1.40625rem !important;
  5858. }
  5859. .u-margin-top-45 {
  5860. margin-top: 1.40625rem !important;
  5861. }
  5862. .u-padding-top-45 {
  5863. padding-top: 1.40625rem !important;
  5864. }
  5865. .u-m-r-45 {
  5866. margin-right: 1.40625rem !important;
  5867. }
  5868. .u-p-r-45 {
  5869. padding-right: 1.40625rem !important;
  5870. }
  5871. .u-margin-right-45 {
  5872. margin-right: 1.40625rem !important;
  5873. }
  5874. .u-padding-right-45 {
  5875. padding-right: 1.40625rem !important;
  5876. }
  5877. .u-m-b-45 {
  5878. margin-bottom: 1.40625rem !important;
  5879. }
  5880. .u-p-b-45 {
  5881. padding-bottom: 1.40625rem !important;
  5882. }
  5883. .u-margin-bottom-45 {
  5884. margin-bottom: 1.40625rem !important;
  5885. }
  5886. .u-padding-bottom-45 {
  5887. padding-bottom: 1.40625rem !important;
  5888. }
  5889. .u-margin-46,
  5890. .u-m-46 {
  5891. margin: 1.4375rem !important;
  5892. }
  5893. .u-padding-46,
  5894. .u-p-46 {
  5895. padding: 1.4375rem !important;
  5896. }
  5897. .u-m-l-46 {
  5898. margin-left: 1.4375rem !important;
  5899. }
  5900. .u-p-l-46 {
  5901. padding-left: 1.4375rem !important;
  5902. }
  5903. .u-margin-left-46 {
  5904. margin-left: 1.4375rem !important;
  5905. }
  5906. .u-padding-left-46 {
  5907. padding-left: 1.4375rem !important;
  5908. }
  5909. .u-m-t-46 {
  5910. margin-top: 1.4375rem !important;
  5911. }
  5912. .u-p-t-46 {
  5913. padding-top: 1.4375rem !important;
  5914. }
  5915. .u-margin-top-46 {
  5916. margin-top: 1.4375rem !important;
  5917. }
  5918. .u-padding-top-46 {
  5919. padding-top: 1.4375rem !important;
  5920. }
  5921. .u-m-r-46 {
  5922. margin-right: 1.4375rem !important;
  5923. }
  5924. .u-p-r-46 {
  5925. padding-right: 1.4375rem !important;
  5926. }
  5927. .u-margin-right-46 {
  5928. margin-right: 1.4375rem !important;
  5929. }
  5930. .u-padding-right-46 {
  5931. padding-right: 1.4375rem !important;
  5932. }
  5933. .u-m-b-46 {
  5934. margin-bottom: 1.4375rem !important;
  5935. }
  5936. .u-p-b-46 {
  5937. padding-bottom: 1.4375rem !important;
  5938. }
  5939. .u-margin-bottom-46 {
  5940. margin-bottom: 1.4375rem !important;
  5941. }
  5942. .u-padding-bottom-46 {
  5943. padding-bottom: 1.4375rem !important;
  5944. }
  5945. .u-margin-48,
  5946. .u-m-48 {
  5947. margin: 1.5rem !important;
  5948. }
  5949. .u-padding-48,
  5950. .u-p-48 {
  5951. padding: 1.5rem !important;
  5952. }
  5953. .u-m-l-48 {
  5954. margin-left: 1.5rem !important;
  5955. }
  5956. .u-p-l-48 {
  5957. padding-left: 1.5rem !important;
  5958. }
  5959. .u-margin-left-48 {
  5960. margin-left: 1.5rem !important;
  5961. }
  5962. .u-padding-left-48 {
  5963. padding-left: 1.5rem !important;
  5964. }
  5965. .u-m-t-48 {
  5966. margin-top: 1.5rem !important;
  5967. }
  5968. .u-p-t-48 {
  5969. padding-top: 1.5rem !important;
  5970. }
  5971. .u-margin-top-48 {
  5972. margin-top: 1.5rem !important;
  5973. }
  5974. .u-padding-top-48 {
  5975. padding-top: 1.5rem !important;
  5976. }
  5977. .u-m-r-48 {
  5978. margin-right: 1.5rem !important;
  5979. }
  5980. .u-p-r-48 {
  5981. padding-right: 1.5rem !important;
  5982. }
  5983. .u-margin-right-48 {
  5984. margin-right: 1.5rem !important;
  5985. }
  5986. .u-padding-right-48 {
  5987. padding-right: 1.5rem !important;
  5988. }
  5989. .u-m-b-48 {
  5990. margin-bottom: 1.5rem !important;
  5991. }
  5992. .u-p-b-48 {
  5993. padding-bottom: 1.5rem !important;
  5994. }
  5995. .u-margin-bottom-48 {
  5996. margin-bottom: 1.5rem !important;
  5997. }
  5998. .u-padding-bottom-48 {
  5999. padding-bottom: 1.5rem !important;
  6000. }
  6001. .u-margin-50,
  6002. .u-m-50 {
  6003. margin: 1.5625rem !important;
  6004. }
  6005. .u-padding-50,
  6006. .u-p-50 {
  6007. padding: 1.5625rem !important;
  6008. }
  6009. .u-m-l-50 {
  6010. margin-left: 1.5625rem !important;
  6011. }
  6012. .u-p-l-50 {
  6013. padding-left: 1.5625rem !important;
  6014. }
  6015. .u-margin-left-50 {
  6016. margin-left: 1.5625rem !important;
  6017. }
  6018. .u-padding-left-50 {
  6019. padding-left: 1.5625rem !important;
  6020. }
  6021. .u-m-t-50 {
  6022. margin-top: 1.5625rem !important;
  6023. }
  6024. .u-p-t-50 {
  6025. padding-top: 1.5625rem !important;
  6026. }
  6027. .u-margin-top-50 {
  6028. margin-top: 1.5625rem !important;
  6029. }
  6030. .u-padding-top-50 {
  6031. padding-top: 1.5625rem !important;
  6032. }
  6033. .u-m-r-50 {
  6034. margin-right: 1.5625rem !important;
  6035. }
  6036. .u-p-r-50 {
  6037. padding-right: 1.5625rem !important;
  6038. }
  6039. .u-margin-right-50 {
  6040. margin-right: 1.5625rem !important;
  6041. }
  6042. .u-padding-right-50 {
  6043. padding-right: 1.5625rem !important;
  6044. }
  6045. .u-m-b-50 {
  6046. margin-bottom: 1.5625rem !important;
  6047. }
  6048. .u-p-b-50 {
  6049. padding-bottom: 1.5625rem !important;
  6050. }
  6051. .u-margin-bottom-50 {
  6052. margin-bottom: 1.5625rem !important;
  6053. }
  6054. .u-padding-bottom-50 {
  6055. padding-bottom: 1.5625rem !important;
  6056. }
  6057. .u-margin-52,
  6058. .u-m-52 {
  6059. margin: 1.625rem !important;
  6060. }
  6061. .u-padding-52,
  6062. .u-p-52 {
  6063. padding: 1.625rem !important;
  6064. }
  6065. .u-m-l-52 {
  6066. margin-left: 1.625rem !important;
  6067. }
  6068. .u-p-l-52 {
  6069. padding-left: 1.625rem !important;
  6070. }
  6071. .u-margin-left-52 {
  6072. margin-left: 1.625rem !important;
  6073. }
  6074. .u-padding-left-52 {
  6075. padding-left: 1.625rem !important;
  6076. }
  6077. .u-m-t-52 {
  6078. margin-top: 1.625rem !important;
  6079. }
  6080. .u-p-t-52 {
  6081. padding-top: 1.625rem !important;
  6082. }
  6083. .u-margin-top-52 {
  6084. margin-top: 1.625rem !important;
  6085. }
  6086. .u-padding-top-52 {
  6087. padding-top: 1.625rem !important;
  6088. }
  6089. .u-m-r-52 {
  6090. margin-right: 1.625rem !important;
  6091. }
  6092. .u-p-r-52 {
  6093. padding-right: 1.625rem !important;
  6094. }
  6095. .u-margin-right-52 {
  6096. margin-right: 1.625rem !important;
  6097. }
  6098. .u-padding-right-52 {
  6099. padding-right: 1.625rem !important;
  6100. }
  6101. .u-m-b-52 {
  6102. margin-bottom: 1.625rem !important;
  6103. }
  6104. .u-p-b-52 {
  6105. padding-bottom: 1.625rem !important;
  6106. }
  6107. .u-margin-bottom-52 {
  6108. margin-bottom: 1.625rem !important;
  6109. }
  6110. .u-padding-bottom-52 {
  6111. padding-bottom: 1.625rem !important;
  6112. }
  6113. .u-margin-54,
  6114. .u-m-54 {
  6115. margin: 1.6875rem !important;
  6116. }
  6117. .u-padding-54,
  6118. .u-p-54 {
  6119. padding: 1.6875rem !important;
  6120. }
  6121. .u-m-l-54 {
  6122. margin-left: 1.6875rem !important;
  6123. }
  6124. .u-p-l-54 {
  6125. padding-left: 1.6875rem !important;
  6126. }
  6127. .u-margin-left-54 {
  6128. margin-left: 1.6875rem !important;
  6129. }
  6130. .u-padding-left-54 {
  6131. padding-left: 1.6875rem !important;
  6132. }
  6133. .u-m-t-54 {
  6134. margin-top: 1.6875rem !important;
  6135. }
  6136. .u-p-t-54 {
  6137. padding-top: 1.6875rem !important;
  6138. }
  6139. .u-margin-top-54 {
  6140. margin-top: 1.6875rem !important;
  6141. }
  6142. .u-padding-top-54 {
  6143. padding-top: 1.6875rem !important;
  6144. }
  6145. .u-m-r-54 {
  6146. margin-right: 1.6875rem !important;
  6147. }
  6148. .u-p-r-54 {
  6149. padding-right: 1.6875rem !important;
  6150. }
  6151. .u-margin-right-54 {
  6152. margin-right: 1.6875rem !important;
  6153. }
  6154. .u-padding-right-54 {
  6155. padding-right: 1.6875rem !important;
  6156. }
  6157. .u-m-b-54 {
  6158. margin-bottom: 1.6875rem !important;
  6159. }
  6160. .u-p-b-54 {
  6161. padding-bottom: 1.6875rem !important;
  6162. }
  6163. .u-margin-bottom-54 {
  6164. margin-bottom: 1.6875rem !important;
  6165. }
  6166. .u-padding-bottom-54 {
  6167. padding-bottom: 1.6875rem !important;
  6168. }
  6169. .u-margin-55,
  6170. .u-m-55 {
  6171. margin: 1.71875rem !important;
  6172. }
  6173. .u-padding-55,
  6174. .u-p-55 {
  6175. padding: 1.71875rem !important;
  6176. }
  6177. .u-m-l-55 {
  6178. margin-left: 1.71875rem !important;
  6179. }
  6180. .u-p-l-55 {
  6181. padding-left: 1.71875rem !important;
  6182. }
  6183. .u-margin-left-55 {
  6184. margin-left: 1.71875rem !important;
  6185. }
  6186. .u-padding-left-55 {
  6187. padding-left: 1.71875rem !important;
  6188. }
  6189. .u-m-t-55 {
  6190. margin-top: 1.71875rem !important;
  6191. }
  6192. .u-p-t-55 {
  6193. padding-top: 1.71875rem !important;
  6194. }
  6195. .u-margin-top-55 {
  6196. margin-top: 1.71875rem !important;
  6197. }
  6198. .u-padding-top-55 {
  6199. padding-top: 1.71875rem !important;
  6200. }
  6201. .u-m-r-55 {
  6202. margin-right: 1.71875rem !important;
  6203. }
  6204. .u-p-r-55 {
  6205. padding-right: 1.71875rem !important;
  6206. }
  6207. .u-margin-right-55 {
  6208. margin-right: 1.71875rem !important;
  6209. }
  6210. .u-padding-right-55 {
  6211. padding-right: 1.71875rem !important;
  6212. }
  6213. .u-m-b-55 {
  6214. margin-bottom: 1.71875rem !important;
  6215. }
  6216. .u-p-b-55 {
  6217. padding-bottom: 1.71875rem !important;
  6218. }
  6219. .u-margin-bottom-55 {
  6220. margin-bottom: 1.71875rem !important;
  6221. }
  6222. .u-padding-bottom-55 {
  6223. padding-bottom: 1.71875rem !important;
  6224. }
  6225. .u-margin-56,
  6226. .u-m-56 {
  6227. margin: 1.75rem !important;
  6228. }
  6229. .u-padding-56,
  6230. .u-p-56 {
  6231. padding: 1.75rem !important;
  6232. }
  6233. .u-m-l-56 {
  6234. margin-left: 1.75rem !important;
  6235. }
  6236. .u-p-l-56 {
  6237. padding-left: 1.75rem !important;
  6238. }
  6239. .u-margin-left-56 {
  6240. margin-left: 1.75rem !important;
  6241. }
  6242. .u-padding-left-56 {
  6243. padding-left: 1.75rem !important;
  6244. }
  6245. .u-m-t-56 {
  6246. margin-top: 1.75rem !important;
  6247. }
  6248. .u-p-t-56 {
  6249. padding-top: 1.75rem !important;
  6250. }
  6251. .u-margin-top-56 {
  6252. margin-top: 1.75rem !important;
  6253. }
  6254. .u-padding-top-56 {
  6255. padding-top: 1.75rem !important;
  6256. }
  6257. .u-m-r-56 {
  6258. margin-right: 1.75rem !important;
  6259. }
  6260. .u-p-r-56 {
  6261. padding-right: 1.75rem !important;
  6262. }
  6263. .u-margin-right-56 {
  6264. margin-right: 1.75rem !important;
  6265. }
  6266. .u-padding-right-56 {
  6267. padding-right: 1.75rem !important;
  6268. }
  6269. .u-m-b-56 {
  6270. margin-bottom: 1.75rem !important;
  6271. }
  6272. .u-p-b-56 {
  6273. padding-bottom: 1.75rem !important;
  6274. }
  6275. .u-margin-bottom-56 {
  6276. margin-bottom: 1.75rem !important;
  6277. }
  6278. .u-padding-bottom-56 {
  6279. padding-bottom: 1.75rem !important;
  6280. }
  6281. .u-margin-58,
  6282. .u-m-58 {
  6283. margin: 1.8125rem !important;
  6284. }
  6285. .u-padding-58,
  6286. .u-p-58 {
  6287. padding: 1.8125rem !important;
  6288. }
  6289. .u-m-l-58 {
  6290. margin-left: 1.8125rem !important;
  6291. }
  6292. .u-p-l-58 {
  6293. padding-left: 1.8125rem !important;
  6294. }
  6295. .u-margin-left-58 {
  6296. margin-left: 1.8125rem !important;
  6297. }
  6298. .u-padding-left-58 {
  6299. padding-left: 1.8125rem !important;
  6300. }
  6301. .u-m-t-58 {
  6302. margin-top: 1.8125rem !important;
  6303. }
  6304. .u-p-t-58 {
  6305. padding-top: 1.8125rem !important;
  6306. }
  6307. .u-margin-top-58 {
  6308. margin-top: 1.8125rem !important;
  6309. }
  6310. .u-padding-top-58 {
  6311. padding-top: 1.8125rem !important;
  6312. }
  6313. .u-m-r-58 {
  6314. margin-right: 1.8125rem !important;
  6315. }
  6316. .u-p-r-58 {
  6317. padding-right: 1.8125rem !important;
  6318. }
  6319. .u-margin-right-58 {
  6320. margin-right: 1.8125rem !important;
  6321. }
  6322. .u-padding-right-58 {
  6323. padding-right: 1.8125rem !important;
  6324. }
  6325. .u-m-b-58 {
  6326. margin-bottom: 1.8125rem !important;
  6327. }
  6328. .u-p-b-58 {
  6329. padding-bottom: 1.8125rem !important;
  6330. }
  6331. .u-margin-bottom-58 {
  6332. margin-bottom: 1.8125rem !important;
  6333. }
  6334. .u-padding-bottom-58 {
  6335. padding-bottom: 1.8125rem !important;
  6336. }
  6337. .u-margin-60,
  6338. .u-m-60 {
  6339. margin: 1.875rem !important;
  6340. }
  6341. .u-padding-60,
  6342. .u-p-60 {
  6343. padding: 1.875rem !important;
  6344. }
  6345. .u-m-l-60 {
  6346. margin-left: 1.875rem !important;
  6347. }
  6348. .u-p-l-60 {
  6349. padding-left: 1.875rem !important;
  6350. }
  6351. .u-margin-left-60 {
  6352. margin-left: 1.875rem !important;
  6353. }
  6354. .u-padding-left-60 {
  6355. padding-left: 1.875rem !important;
  6356. }
  6357. .u-m-t-60 {
  6358. margin-top: 1.875rem !important;
  6359. }
  6360. .u-p-t-60 {
  6361. padding-top: 1.875rem !important;
  6362. }
  6363. .u-margin-top-60 {
  6364. margin-top: 1.875rem !important;
  6365. }
  6366. .u-padding-top-60 {
  6367. padding-top: 1.875rem !important;
  6368. }
  6369. .u-m-r-60 {
  6370. margin-right: 1.875rem !important;
  6371. }
  6372. .u-p-r-60 {
  6373. padding-right: 1.875rem !important;
  6374. }
  6375. .u-margin-right-60 {
  6376. margin-right: 1.875rem !important;
  6377. }
  6378. .u-padding-right-60 {
  6379. padding-right: 1.875rem !important;
  6380. }
  6381. .u-m-b-60 {
  6382. margin-bottom: 1.875rem !important;
  6383. }
  6384. .u-p-b-60 {
  6385. padding-bottom: 1.875rem !important;
  6386. }
  6387. .u-margin-bottom-60 {
  6388. margin-bottom: 1.875rem !important;
  6389. }
  6390. .u-padding-bottom-60 {
  6391. padding-bottom: 1.875rem !important;
  6392. }
  6393. .u-margin-62,
  6394. .u-m-62 {
  6395. margin: 1.9375rem !important;
  6396. }
  6397. .u-padding-62,
  6398. .u-p-62 {
  6399. padding: 1.9375rem !important;
  6400. }
  6401. .u-m-l-62 {
  6402. margin-left: 1.9375rem !important;
  6403. }
  6404. .u-p-l-62 {
  6405. padding-left: 1.9375rem !important;
  6406. }
  6407. .u-margin-left-62 {
  6408. margin-left: 1.9375rem !important;
  6409. }
  6410. .u-padding-left-62 {
  6411. padding-left: 1.9375rem !important;
  6412. }
  6413. .u-m-t-62 {
  6414. margin-top: 1.9375rem !important;
  6415. }
  6416. .u-p-t-62 {
  6417. padding-top: 1.9375rem !important;
  6418. }
  6419. .u-margin-top-62 {
  6420. margin-top: 1.9375rem !important;
  6421. }
  6422. .u-padding-top-62 {
  6423. padding-top: 1.9375rem !important;
  6424. }
  6425. .u-m-r-62 {
  6426. margin-right: 1.9375rem !important;
  6427. }
  6428. .u-p-r-62 {
  6429. padding-right: 1.9375rem !important;
  6430. }
  6431. .u-margin-right-62 {
  6432. margin-right: 1.9375rem !important;
  6433. }
  6434. .u-padding-right-62 {
  6435. padding-right: 1.9375rem !important;
  6436. }
  6437. .u-m-b-62 {
  6438. margin-bottom: 1.9375rem !important;
  6439. }
  6440. .u-p-b-62 {
  6441. padding-bottom: 1.9375rem !important;
  6442. }
  6443. .u-margin-bottom-62 {
  6444. margin-bottom: 1.9375rem !important;
  6445. }
  6446. .u-padding-bottom-62 {
  6447. padding-bottom: 1.9375rem !important;
  6448. }
  6449. .u-margin-64,
  6450. .u-m-64 {
  6451. margin: 2rem !important;
  6452. }
  6453. .u-padding-64,
  6454. .u-p-64 {
  6455. padding: 2rem !important;
  6456. }
  6457. .u-m-l-64 {
  6458. margin-left: 2rem !important;
  6459. }
  6460. .u-p-l-64 {
  6461. padding-left: 2rem !important;
  6462. }
  6463. .u-margin-left-64 {
  6464. margin-left: 2rem !important;
  6465. }
  6466. .u-padding-left-64 {
  6467. padding-left: 2rem !important;
  6468. }
  6469. .u-m-t-64 {
  6470. margin-top: 2rem !important;
  6471. }
  6472. .u-p-t-64 {
  6473. padding-top: 2rem !important;
  6474. }
  6475. .u-margin-top-64 {
  6476. margin-top: 2rem !important;
  6477. }
  6478. .u-padding-top-64 {
  6479. padding-top: 2rem !important;
  6480. }
  6481. .u-m-r-64 {
  6482. margin-right: 2rem !important;
  6483. }
  6484. .u-p-r-64 {
  6485. padding-right: 2rem !important;
  6486. }
  6487. .u-margin-right-64 {
  6488. margin-right: 2rem !important;
  6489. }
  6490. .u-padding-right-64 {
  6491. padding-right: 2rem !important;
  6492. }
  6493. .u-m-b-64 {
  6494. margin-bottom: 2rem !important;
  6495. }
  6496. .u-p-b-64 {
  6497. padding-bottom: 2rem !important;
  6498. }
  6499. .u-margin-bottom-64 {
  6500. margin-bottom: 2rem !important;
  6501. }
  6502. .u-padding-bottom-64 {
  6503. padding-bottom: 2rem !important;
  6504. }
  6505. .u-margin-65,
  6506. .u-m-65 {
  6507. margin: 2.03125rem !important;
  6508. }
  6509. .u-padding-65,
  6510. .u-p-65 {
  6511. padding: 2.03125rem !important;
  6512. }
  6513. .u-m-l-65 {
  6514. margin-left: 2.03125rem !important;
  6515. }
  6516. .u-p-l-65 {
  6517. padding-left: 2.03125rem !important;
  6518. }
  6519. .u-margin-left-65 {
  6520. margin-left: 2.03125rem !important;
  6521. }
  6522. .u-padding-left-65 {
  6523. padding-left: 2.03125rem !important;
  6524. }
  6525. .u-m-t-65 {
  6526. margin-top: 2.03125rem !important;
  6527. }
  6528. .u-p-t-65 {
  6529. padding-top: 2.03125rem !important;
  6530. }
  6531. .u-margin-top-65 {
  6532. margin-top: 2.03125rem !important;
  6533. }
  6534. .u-padding-top-65 {
  6535. padding-top: 2.03125rem !important;
  6536. }
  6537. .u-m-r-65 {
  6538. margin-right: 2.03125rem !important;
  6539. }
  6540. .u-p-r-65 {
  6541. padding-right: 2.03125rem !important;
  6542. }
  6543. .u-margin-right-65 {
  6544. margin-right: 2.03125rem !important;
  6545. }
  6546. .u-padding-right-65 {
  6547. padding-right: 2.03125rem !important;
  6548. }
  6549. .u-m-b-65 {
  6550. margin-bottom: 2.03125rem !important;
  6551. }
  6552. .u-p-b-65 {
  6553. padding-bottom: 2.03125rem !important;
  6554. }
  6555. .u-margin-bottom-65 {
  6556. margin-bottom: 2.03125rem !important;
  6557. }
  6558. .u-padding-bottom-65 {
  6559. padding-bottom: 2.03125rem !important;
  6560. }
  6561. .u-margin-66,
  6562. .u-m-66 {
  6563. margin: 2.0625rem !important;
  6564. }
  6565. .u-padding-66,
  6566. .u-p-66 {
  6567. padding: 2.0625rem !important;
  6568. }
  6569. .u-m-l-66 {
  6570. margin-left: 2.0625rem !important;
  6571. }
  6572. .u-p-l-66 {
  6573. padding-left: 2.0625rem !important;
  6574. }
  6575. .u-margin-left-66 {
  6576. margin-left: 2.0625rem !important;
  6577. }
  6578. .u-padding-left-66 {
  6579. padding-left: 2.0625rem !important;
  6580. }
  6581. .u-m-t-66 {
  6582. margin-top: 2.0625rem !important;
  6583. }
  6584. .u-p-t-66 {
  6585. padding-top: 2.0625rem !important;
  6586. }
  6587. .u-margin-top-66 {
  6588. margin-top: 2.0625rem !important;
  6589. }
  6590. .u-padding-top-66 {
  6591. padding-top: 2.0625rem !important;
  6592. }
  6593. .u-m-r-66 {
  6594. margin-right: 2.0625rem !important;
  6595. }
  6596. .u-p-r-66 {
  6597. padding-right: 2.0625rem !important;
  6598. }
  6599. .u-margin-right-66 {
  6600. margin-right: 2.0625rem !important;
  6601. }
  6602. .u-padding-right-66 {
  6603. padding-right: 2.0625rem !important;
  6604. }
  6605. .u-m-b-66 {
  6606. margin-bottom: 2.0625rem !important;
  6607. }
  6608. .u-p-b-66 {
  6609. padding-bottom: 2.0625rem !important;
  6610. }
  6611. .u-margin-bottom-66 {
  6612. margin-bottom: 2.0625rem !important;
  6613. }
  6614. .u-padding-bottom-66 {
  6615. padding-bottom: 2.0625rem !important;
  6616. }
  6617. .u-margin-68,
  6618. .u-m-68 {
  6619. margin: 2.125rem !important;
  6620. }
  6621. .u-padding-68,
  6622. .u-p-68 {
  6623. padding: 2.125rem !important;
  6624. }
  6625. .u-m-l-68 {
  6626. margin-left: 2.125rem !important;
  6627. }
  6628. .u-p-l-68 {
  6629. padding-left: 2.125rem !important;
  6630. }
  6631. .u-margin-left-68 {
  6632. margin-left: 2.125rem !important;
  6633. }
  6634. .u-padding-left-68 {
  6635. padding-left: 2.125rem !important;
  6636. }
  6637. .u-m-t-68 {
  6638. margin-top: 2.125rem !important;
  6639. }
  6640. .u-p-t-68 {
  6641. padding-top: 2.125rem !important;
  6642. }
  6643. .u-margin-top-68 {
  6644. margin-top: 2.125rem !important;
  6645. }
  6646. .u-padding-top-68 {
  6647. padding-top: 2.125rem !important;
  6648. }
  6649. .u-m-r-68 {
  6650. margin-right: 2.125rem !important;
  6651. }
  6652. .u-p-r-68 {
  6653. padding-right: 2.125rem !important;
  6654. }
  6655. .u-margin-right-68 {
  6656. margin-right: 2.125rem !important;
  6657. }
  6658. .u-padding-right-68 {
  6659. padding-right: 2.125rem !important;
  6660. }
  6661. .u-m-b-68 {
  6662. margin-bottom: 2.125rem !important;
  6663. }
  6664. .u-p-b-68 {
  6665. padding-bottom: 2.125rem !important;
  6666. }
  6667. .u-margin-bottom-68 {
  6668. margin-bottom: 2.125rem !important;
  6669. }
  6670. .u-padding-bottom-68 {
  6671. padding-bottom: 2.125rem !important;
  6672. }
  6673. .u-margin-70,
  6674. .u-m-70 {
  6675. margin: 2.1875rem !important;
  6676. }
  6677. .u-padding-70,
  6678. .u-p-70 {
  6679. padding: 2.1875rem !important;
  6680. }
  6681. .u-m-l-70 {
  6682. margin-left: 2.1875rem !important;
  6683. }
  6684. .u-p-l-70 {
  6685. padding-left: 2.1875rem !important;
  6686. }
  6687. .u-margin-left-70 {
  6688. margin-left: 2.1875rem !important;
  6689. }
  6690. .u-padding-left-70 {
  6691. padding-left: 2.1875rem !important;
  6692. }
  6693. .u-m-t-70 {
  6694. margin-top: 2.1875rem !important;
  6695. }
  6696. .u-p-t-70 {
  6697. padding-top: 2.1875rem !important;
  6698. }
  6699. .u-margin-top-70 {
  6700. margin-top: 2.1875rem !important;
  6701. }
  6702. .u-padding-top-70 {
  6703. padding-top: 2.1875rem !important;
  6704. }
  6705. .u-m-r-70 {
  6706. margin-right: 2.1875rem !important;
  6707. }
  6708. .u-p-r-70 {
  6709. padding-right: 2.1875rem !important;
  6710. }
  6711. .u-margin-right-70 {
  6712. margin-right: 2.1875rem !important;
  6713. }
  6714. .u-padding-right-70 {
  6715. padding-right: 2.1875rem !important;
  6716. }
  6717. .u-m-b-70 {
  6718. margin-bottom: 2.1875rem !important;
  6719. }
  6720. .u-p-b-70 {
  6721. padding-bottom: 2.1875rem !important;
  6722. }
  6723. .u-margin-bottom-70 {
  6724. margin-bottom: 2.1875rem !important;
  6725. }
  6726. .u-padding-bottom-70 {
  6727. padding-bottom: 2.1875rem !important;
  6728. }
  6729. .u-margin-72,
  6730. .u-m-72 {
  6731. margin: 2.25rem !important;
  6732. }
  6733. .u-padding-72,
  6734. .u-p-72 {
  6735. padding: 2.25rem !important;
  6736. }
  6737. .u-m-l-72 {
  6738. margin-left: 2.25rem !important;
  6739. }
  6740. .u-p-l-72 {
  6741. padding-left: 2.25rem !important;
  6742. }
  6743. .u-margin-left-72 {
  6744. margin-left: 2.25rem !important;
  6745. }
  6746. .u-padding-left-72 {
  6747. padding-left: 2.25rem !important;
  6748. }
  6749. .u-m-t-72 {
  6750. margin-top: 2.25rem !important;
  6751. }
  6752. .u-p-t-72 {
  6753. padding-top: 2.25rem !important;
  6754. }
  6755. .u-margin-top-72 {
  6756. margin-top: 2.25rem !important;
  6757. }
  6758. .u-padding-top-72 {
  6759. padding-top: 2.25rem !important;
  6760. }
  6761. .u-m-r-72 {
  6762. margin-right: 2.25rem !important;
  6763. }
  6764. .u-p-r-72 {
  6765. padding-right: 2.25rem !important;
  6766. }
  6767. .u-margin-right-72 {
  6768. margin-right: 2.25rem !important;
  6769. }
  6770. .u-padding-right-72 {
  6771. padding-right: 2.25rem !important;
  6772. }
  6773. .u-m-b-72 {
  6774. margin-bottom: 2.25rem !important;
  6775. }
  6776. .u-p-b-72 {
  6777. padding-bottom: 2.25rem !important;
  6778. }
  6779. .u-margin-bottom-72 {
  6780. margin-bottom: 2.25rem !important;
  6781. }
  6782. .u-padding-bottom-72 {
  6783. padding-bottom: 2.25rem !important;
  6784. }
  6785. .u-margin-74,
  6786. .u-m-74 {
  6787. margin: 2.3125rem !important;
  6788. }
  6789. .u-padding-74,
  6790. .u-p-74 {
  6791. padding: 2.3125rem !important;
  6792. }
  6793. .u-m-l-74 {
  6794. margin-left: 2.3125rem !important;
  6795. }
  6796. .u-p-l-74 {
  6797. padding-left: 2.3125rem !important;
  6798. }
  6799. .u-margin-left-74 {
  6800. margin-left: 2.3125rem !important;
  6801. }
  6802. .u-padding-left-74 {
  6803. padding-left: 2.3125rem !important;
  6804. }
  6805. .u-m-t-74 {
  6806. margin-top: 2.3125rem !important;
  6807. }
  6808. .u-p-t-74 {
  6809. padding-top: 2.3125rem !important;
  6810. }
  6811. .u-margin-top-74 {
  6812. margin-top: 2.3125rem !important;
  6813. }
  6814. .u-padding-top-74 {
  6815. padding-top: 2.3125rem !important;
  6816. }
  6817. .u-m-r-74 {
  6818. margin-right: 2.3125rem !important;
  6819. }
  6820. .u-p-r-74 {
  6821. padding-right: 2.3125rem !important;
  6822. }
  6823. .u-margin-right-74 {
  6824. margin-right: 2.3125rem !important;
  6825. }
  6826. .u-padding-right-74 {
  6827. padding-right: 2.3125rem !important;
  6828. }
  6829. .u-m-b-74 {
  6830. margin-bottom: 2.3125rem !important;
  6831. }
  6832. .u-p-b-74 {
  6833. padding-bottom: 2.3125rem !important;
  6834. }
  6835. .u-margin-bottom-74 {
  6836. margin-bottom: 2.3125rem !important;
  6837. }
  6838. .u-padding-bottom-74 {
  6839. padding-bottom: 2.3125rem !important;
  6840. }
  6841. .u-margin-75,
  6842. .u-m-75 {
  6843. margin: 2.34375rem !important;
  6844. }
  6845. .u-padding-75,
  6846. .u-p-75 {
  6847. padding: 2.34375rem !important;
  6848. }
  6849. .u-m-l-75 {
  6850. margin-left: 2.34375rem !important;
  6851. }
  6852. .u-p-l-75 {
  6853. padding-left: 2.34375rem !important;
  6854. }
  6855. .u-margin-left-75 {
  6856. margin-left: 2.34375rem !important;
  6857. }
  6858. .u-padding-left-75 {
  6859. padding-left: 2.34375rem !important;
  6860. }
  6861. .u-m-t-75 {
  6862. margin-top: 2.34375rem !important;
  6863. }
  6864. .u-p-t-75 {
  6865. padding-top: 2.34375rem !important;
  6866. }
  6867. .u-margin-top-75 {
  6868. margin-top: 2.34375rem !important;
  6869. }
  6870. .u-padding-top-75 {
  6871. padding-top: 2.34375rem !important;
  6872. }
  6873. .u-m-r-75 {
  6874. margin-right: 2.34375rem !important;
  6875. }
  6876. .u-p-r-75 {
  6877. padding-right: 2.34375rem !important;
  6878. }
  6879. .u-margin-right-75 {
  6880. margin-right: 2.34375rem !important;
  6881. }
  6882. .u-padding-right-75 {
  6883. padding-right: 2.34375rem !important;
  6884. }
  6885. .u-m-b-75 {
  6886. margin-bottom: 2.34375rem !important;
  6887. }
  6888. .u-p-b-75 {
  6889. padding-bottom: 2.34375rem !important;
  6890. }
  6891. .u-margin-bottom-75 {
  6892. margin-bottom: 2.34375rem !important;
  6893. }
  6894. .u-padding-bottom-75 {
  6895. padding-bottom: 2.34375rem !important;
  6896. }
  6897. .u-margin-76,
  6898. .u-m-76 {
  6899. margin: 2.375rem !important;
  6900. }
  6901. .u-padding-76,
  6902. .u-p-76 {
  6903. padding: 2.375rem !important;
  6904. }
  6905. .u-m-l-76 {
  6906. margin-left: 2.375rem !important;
  6907. }
  6908. .u-p-l-76 {
  6909. padding-left: 2.375rem !important;
  6910. }
  6911. .u-margin-left-76 {
  6912. margin-left: 2.375rem !important;
  6913. }
  6914. .u-padding-left-76 {
  6915. padding-left: 2.375rem !important;
  6916. }
  6917. .u-m-t-76 {
  6918. margin-top: 2.375rem !important;
  6919. }
  6920. .u-p-t-76 {
  6921. padding-top: 2.375rem !important;
  6922. }
  6923. .u-margin-top-76 {
  6924. margin-top: 2.375rem !important;
  6925. }
  6926. .u-padding-top-76 {
  6927. padding-top: 2.375rem !important;
  6928. }
  6929. .u-m-r-76 {
  6930. margin-right: 2.375rem !important;
  6931. }
  6932. .u-p-r-76 {
  6933. padding-right: 2.375rem !important;
  6934. }
  6935. .u-margin-right-76 {
  6936. margin-right: 2.375rem !important;
  6937. }
  6938. .u-padding-right-76 {
  6939. padding-right: 2.375rem !important;
  6940. }
  6941. .u-m-b-76 {
  6942. margin-bottom: 2.375rem !important;
  6943. }
  6944. .u-p-b-76 {
  6945. padding-bottom: 2.375rem !important;
  6946. }
  6947. .u-margin-bottom-76 {
  6948. margin-bottom: 2.375rem !important;
  6949. }
  6950. .u-padding-bottom-76 {
  6951. padding-bottom: 2.375rem !important;
  6952. }
  6953. .u-margin-78,
  6954. .u-m-78 {
  6955. margin: 2.4375rem !important;
  6956. }
  6957. .u-padding-78,
  6958. .u-p-78 {
  6959. padding: 2.4375rem !important;
  6960. }
  6961. .u-m-l-78 {
  6962. margin-left: 2.4375rem !important;
  6963. }
  6964. .u-p-l-78 {
  6965. padding-left: 2.4375rem !important;
  6966. }
  6967. .u-margin-left-78 {
  6968. margin-left: 2.4375rem !important;
  6969. }
  6970. .u-padding-left-78 {
  6971. padding-left: 2.4375rem !important;
  6972. }
  6973. .u-m-t-78 {
  6974. margin-top: 2.4375rem !important;
  6975. }
  6976. .u-p-t-78 {
  6977. padding-top: 2.4375rem !important;
  6978. }
  6979. .u-margin-top-78 {
  6980. margin-top: 2.4375rem !important;
  6981. }
  6982. .u-padding-top-78 {
  6983. padding-top: 2.4375rem !important;
  6984. }
  6985. .u-m-r-78 {
  6986. margin-right: 2.4375rem !important;
  6987. }
  6988. .u-p-r-78 {
  6989. padding-right: 2.4375rem !important;
  6990. }
  6991. .u-margin-right-78 {
  6992. margin-right: 2.4375rem !important;
  6993. }
  6994. .u-padding-right-78 {
  6995. padding-right: 2.4375rem !important;
  6996. }
  6997. .u-m-b-78 {
  6998. margin-bottom: 2.4375rem !important;
  6999. }
  7000. .u-p-b-78 {
  7001. padding-bottom: 2.4375rem !important;
  7002. }
  7003. .u-margin-bottom-78 {
  7004. margin-bottom: 2.4375rem !important;
  7005. }
  7006. .u-padding-bottom-78 {
  7007. padding-bottom: 2.4375rem !important;
  7008. }
  7009. .u-margin-80,
  7010. .u-m-80 {
  7011. margin: 2.5rem !important;
  7012. }
  7013. .u-padding-80,
  7014. .u-p-80 {
  7015. padding: 2.5rem !important;
  7016. }
  7017. .u-m-l-80 {
  7018. margin-left: 2.5rem !important;
  7019. }
  7020. .u-p-l-80 {
  7021. padding-left: 2.5rem !important;
  7022. }
  7023. .u-margin-left-80 {
  7024. margin-left: 2.5rem !important;
  7025. }
  7026. .u-padding-left-80 {
  7027. padding-left: 2.5rem !important;
  7028. }
  7029. .u-m-t-80 {
  7030. margin-top: 2.5rem !important;
  7031. }
  7032. .u-p-t-80 {
  7033. padding-top: 2.5rem !important;
  7034. }
  7035. .u-margin-top-80 {
  7036. margin-top: 2.5rem !important;
  7037. }
  7038. .u-padding-top-80 {
  7039. padding-top: 2.5rem !important;
  7040. }
  7041. .u-m-r-80 {
  7042. margin-right: 2.5rem !important;
  7043. }
  7044. .u-p-r-80 {
  7045. padding-right: 2.5rem !important;
  7046. }
  7047. .u-margin-right-80 {
  7048. margin-right: 2.5rem !important;
  7049. }
  7050. .u-padding-right-80 {
  7051. padding-right: 2.5rem !important;
  7052. }
  7053. .u-m-b-80 {
  7054. margin-bottom: 2.5rem !important;
  7055. }
  7056. .u-p-b-80 {
  7057. padding-bottom: 2.5rem !important;
  7058. }
  7059. .u-margin-bottom-80 {
  7060. margin-bottom: 2.5rem !important;
  7061. }
  7062. .u-padding-bottom-80 {
  7063. padding-bottom: 2.5rem !important;
  7064. }
  7065. .u-reset-nvue {
  7066. flex-direction: row;
  7067. align-items: center;
  7068. }
  7069. .u-type-primary-light {
  7070. color: var(--u-type-primary-light);
  7071. }
  7072. .u-type-warning-light {
  7073. color: var(--u-type-warning-light);
  7074. }
  7075. .u-type-success-light {
  7076. color: var(--u-type-success-light);
  7077. }
  7078. .u-type-error-light {
  7079. color: var(--u-type-error-light);
  7080. }
  7081. .u-type-info-light {
  7082. color: var(--u-type-info-light);
  7083. }
  7084. .u-type-primary-light-bg {
  7085. background-color: var(--u-type-primary-light);
  7086. }
  7087. .u-type-warning-light-bg {
  7088. background-color: var(--u-type-warning-light);
  7089. }
  7090. .u-type-success-light-bg {
  7091. background-color: var(--u-type-success-light);
  7092. }
  7093. .u-type-error-light-bg {
  7094. background-color: var(--u-type-error-light);
  7095. }
  7096. .u-type-info-light-bg {
  7097. background-color: var(--u-type-info-light);
  7098. }
  7099. .u-type-primary-dark {
  7100. color: var(--u-type-primary-dark);
  7101. }
  7102. .u-type-warning-dark {
  7103. color: var(--u-type-warning-dark);
  7104. }
  7105. .u-type-success-dark {
  7106. color: var(--u-type-success-dark);
  7107. }
  7108. .u-type-error-dark {
  7109. color: var(--u-type-error-dark);
  7110. }
  7111. .u-type-info-dark {
  7112. color: var(--u-type-info-dark);
  7113. }
  7114. .u-type-primary-dark-bg {
  7115. background-color: var(--u-type-primary-dark);
  7116. }
  7117. .u-type-warning-dark-bg {
  7118. background-color: var(--u-type-warning-dark);
  7119. }
  7120. .u-type-success-dark-bg {
  7121. background-color: var(--u-type-success-dark);
  7122. }
  7123. .u-type-error-dark-bg {
  7124. background-color: var(--u-type-error-dark);
  7125. }
  7126. .u-type-info-dark-bg {
  7127. background-color: var(--u-type-info-dark);
  7128. }
  7129. .u-type-primary-disabled {
  7130. color: var(--u-type-primary-disabled);
  7131. }
  7132. .u-type-warning-disabled {
  7133. color: var(--u-type-warning-disabled);
  7134. }
  7135. .u-type-success-disabled {
  7136. color: var(--u-type-success-disabled);
  7137. }
  7138. .u-type-error-disabled {
  7139. color: var(--u-type-error-disabled);
  7140. }
  7141. .u-type-info-disabled {
  7142. color: var(--u-type-info-disabled);
  7143. }
  7144. .u-type-primary {
  7145. color: var(--u-type-primary);
  7146. }
  7147. .u-type-warning {
  7148. color: var(--u-type-warning);
  7149. }
  7150. .u-type-success {
  7151. color: var(--u-type-success);
  7152. }
  7153. .u-type-error {
  7154. color: var(--u-type-error);
  7155. }
  7156. .u-type-info {
  7157. color: var(--u-type-info);
  7158. }
  7159. .u-type-primary-bg {
  7160. background-color: var(--u-type-primary);
  7161. }
  7162. .u-type-warning-bg {
  7163. background-color: var(--u-type-warning);
  7164. }
  7165. .u-type-success-bg {
  7166. background-color: var(--u-type-success);
  7167. }
  7168. .u-type-error-bg {
  7169. background-color: var(--u-type-error);
  7170. }
  7171. .u-type-info-bg {
  7172. background-color: var(--u-type-info);
  7173. }
  7174. .u-main-color {
  7175. color: var(--u-main-color);
  7176. }
  7177. .u-content-color {
  7178. color: var(--u-content-color);
  7179. }
  7180. .u-tips-color {
  7181. color: var(--u-tips-color);
  7182. }
  7183. .u-light-color {
  7184. color: var(--u-light-color);
  7185. }
  7186. body {
  7187. color: var(--u-main-color);
  7188. font-size: 0.875rem;
  7189. }
  7190. /* start--去除webkit的默认样式--start */
  7191. .u-fix-ios-appearance {
  7192. -webkit-appearance: none;
  7193. }
  7194. /* end--去除webkit的默认样式--end */
  7195. /* start--icon图标外层套一个view,让其达到更好的垂直居中的效果--start */
  7196. .u-icon-wrap {
  7197. display: flex;
  7198. align-items: center;
  7199. }
  7200. /* end-icon图标外层套一个view,让其达到更好的垂直居中的效果--end */
  7201. /* start--iPhoneX底部安全区定义--start */
  7202. .safe-area-inset-top {
  7203. padding-top: 0;
  7204. padding-top: constant(safe-area-inset-top);
  7205. padding-top: env(safe-area-inset-top);
  7206. }
  7207. .safe-area-inset-right {
  7208. padding-right: 0;
  7209. padding-right: constant(safe-area-inset-right);
  7210. padding-right: env(safe-area-inset-right);
  7211. }
  7212. .safe-area-inset-bottom {
  7213. padding-bottom: 0;
  7214. padding-bottom: constant(safe-area-inset-bottom);
  7215. padding-bottom: env(safe-area-inset-bottom);
  7216. }
  7217. .safe-area-inset-left {
  7218. padding-left: 0;
  7219. padding-left: constant(safe-area-inset-left);
  7220. padding-left: env(safe-area-inset-left);
  7221. }
  7222. /* end-iPhoneX底部安全区定义--end */
  7223. /* start--各种hover点击反馈相关的类名-start */
  7224. .u-hover-class {
  7225. opacity: 0.6;
  7226. }
  7227. .u-cell-hover {
  7228. background-color: var(--u-bg-gray-light) !important;
  7229. }
  7230. /* end--各种hover点击反馈相关的类名--end */
  7231. /* start--文本行数限制--start */
  7232. .u-line-1 {
  7233. overflow: hidden;
  7234. white-space: nowrap;
  7235. text-overflow: ellipsis;
  7236. }
  7237. .u-line-2 {
  7238. display: -webkit-box;
  7239. overflow: hidden;
  7240. text-overflow: ellipsis;
  7241. word-break: break-all;
  7242. -webkit-line-clamp: 2;
  7243. -webkit-box-orient: vertical;
  7244. }
  7245. .u-line-3 {
  7246. display: -webkit-box;
  7247. overflow: hidden;
  7248. text-overflow: ellipsis;
  7249. word-break: break-all;
  7250. -webkit-line-clamp: 3;
  7251. -webkit-box-orient: vertical;
  7252. }
  7253. .u-line-4 {
  7254. display: -webkit-box;
  7255. overflow: hidden;
  7256. text-overflow: ellipsis;
  7257. word-break: break-all;
  7258. -webkit-line-clamp: 4;
  7259. -webkit-box-orient: vertical;
  7260. }
  7261. .u-line-5 {
  7262. display: -webkit-box;
  7263. overflow: hidden;
  7264. text-overflow: ellipsis;
  7265. word-break: break-all;
  7266. -webkit-line-clamp: 5;
  7267. -webkit-box-orient: vertical;
  7268. }
  7269. .u-line-force {
  7270. display: -webkit-box !important;
  7271. -webkit-box-orient: vertical !important;
  7272. }
  7273. /* end--文本行数限制--end */
  7274. /* start--Retina 屏幕下的 1px 边框--start */
  7275. .u-border,
  7276. .u-border-bottom,
  7277. .u-border-left,
  7278. .u-border-right,
  7279. .u-border-top,
  7280. .u-border-top-bottom {
  7281. position: relative;
  7282. }
  7283. .u-border-bottom:after,
  7284. .u-border-left:after,
  7285. .u-border-right:after,
  7286. .u-border-top-bottom:after,
  7287. .u-border-top:after,
  7288. .u-border:after {
  7289. content: " ";
  7290. position: absolute;
  7291. left: 0;
  7292. top: 0;
  7293. pointer-events: none;
  7294. box-sizing: border-box;
  7295. transform-origin: 0 0;
  7296. width: 199.8%;
  7297. height: 199.7%;
  7298. transform: scale(0.5, 0.5);
  7299. border: 0 solid var(--u-border-color);
  7300. z-index: 2;
  7301. }
  7302. .u-border-top:after {
  7303. border-top-width: 1px;
  7304. }
  7305. .u-border-left:after {
  7306. border-left-width: 1px;
  7307. }
  7308. .u-border-right:after {
  7309. border-right-width: 1px;
  7310. }
  7311. .u-border-bottom:after {
  7312. border-bottom-width: 1px;
  7313. }
  7314. .u-border-top-bottom:after {
  7315. border-width: 1px 0;
  7316. }
  7317. .u-border:after {
  7318. border-width: 1px;
  7319. }
  7320. /* end--Retina 屏幕下的 1px 边框--end */
  7321. /* start--clearfix--start */
  7322. .u-clearfix:after,
  7323. .clearfix:after {
  7324. content: "";
  7325. display: table;
  7326. clear: both;
  7327. }
  7328. /* end--clearfix--end */
  7329. /* start--高斯模糊tabbar底部处理--start */
  7330. .u-blur-effect-inset {
  7331. width: 23.4375rem;
  7332. height: var(--window-bottom);
  7333. background-color: #ffffff;
  7334. }
  7335. /* end--高斯模糊tabbar底部处理--end */
  7336. /* start--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--start */
  7337. /* end--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--end */
  7338. /* start--去除button的所有默认样式--start */
  7339. .u-reset-button {
  7340. padding: 0;
  7341. margin: 0;
  7342. background-color: transparent;
  7343. }
  7344. .u-reset-button::after {
  7345. border: none;
  7346. }
  7347. /* end--去除button的所有默认样式--end */
  7348. /* 针对 H5 端 PWA 模式下的原生 Tabbar 安全区适配 */