goods-collect.css 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .score-img[data-v-8a2df41e] {
  27. width: 1.125rem;
  28. height: 1.125rem;
  29. margin: 0 0.125rem;
  30. }
  31. .ss-order-card-warp[data-v-8a2df41e] {
  32. padding: 0.625rem;
  33. }
  34. .ss-order-card-warp .img-box[data-v-8a2df41e] {
  35. width: 5.125rem;
  36. height: 5.125rem;
  37. border-radius: 0.3125rem;
  38. overflow: hidden;
  39. }
  40. .ss-order-card-warp .img-box .order-img[data-v-8a2df41e] {
  41. width: 5.125rem;
  42. height: 5.125rem;
  43. }
  44. .ss-order-card-warp .box-right[data-v-8a2df41e] {
  45. flex: 1;
  46. position: relative;
  47. }
  48. .ss-order-card-warp .box-right .tool-box[data-v-8a2df41e] {
  49. position: absolute;
  50. right: 0;
  51. bottom: -0.3125rem;
  52. }
  53. .ss-order-card-warp .title-text[data-v-8a2df41e] {
  54. font-size: 0.875rem;
  55. font-weight: 500;
  56. line-height: 1.25rem;
  57. }
  58. .ss-order-card-warp .spec-text[data-v-8a2df41e] {
  59. font-size: 0.75rem;
  60. font-weight: 400;
  61. color: #999999;
  62. min-width: 0;
  63. overflow: hidden;
  64. text-overflow: ellipsis;
  65. display: -webkit-box;
  66. -webkit-line-clamp: 1;
  67. -webkit-box-orient: vertical;
  68. }
  69. .ss-order-card-warp .price-text[data-v-8a2df41e] {
  70. font-size: 0.75rem;
  71. font-weight: 500;
  72. font-family: OPPOSANS;
  73. }
  74. .ss-order-card-warp .total-text[data-v-8a2df41e] {
  75. font-size: 0.75rem;
  76. font-weight: 500;
  77. line-height: 0.75rem;
  78. color: #ff3000;
  79. margin-left: 0.25rem;
  80. font-family: OPPOSANS;
  81. }
  82. /**
  83. * 这里是uni-app内置的常用样式变量
  84. *
  85. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  86. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  87. *
  88. */
  89. /**
  90. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  91. *
  92. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  93. */
  94. /* 颜色变量 */
  95. /* 行为相关颜色 */
  96. /* 文字基本颜色 */
  97. /* 背景颜色 */
  98. /* 边框颜色 */
  99. /* 尺寸变量 */
  100. /* 文字尺寸 */
  101. /* 图片尺寸 */
  102. /* Border Radius */
  103. /* 水平间距 */
  104. /* 垂直间距 */
  105. /* 透明度 */
  106. /* 文章场景相关 */
  107. .ui-fixed .ui-fixed-box[data-v-96c3469f] {
  108. position: relative;
  109. width: 100%;
  110. }
  111. .ui-fixed .ui-fixed-box.fixed[data-v-96c3469f] {
  112. position: fixed;
  113. }
  114. .ui-fixed .ui-fixed-box .ui-fixed-content[data-v-96c3469f] {
  115. position: relative;
  116. }
  117. .ui-fixed .ui-fixed-box .ui-fixed-bg[data-v-96c3469f] {
  118. position: absolute;
  119. width: 100%;
  120. height: 100%;
  121. top: 0;
  122. z-index: 1;
  123. pointer-events: none;
  124. }
  125. .inset-bottom[data-v-96c3469f] {
  126. background: #fff;
  127. }
  128. /**
  129. * 这里是uni-app内置的常用样式变量
  130. *
  131. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  132. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  133. *
  134. */
  135. /**
  136. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  137. *
  138. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  139. */
  140. /* 颜色变量 */
  141. /* 行为相关颜色 */
  142. /* 文字基本颜色 */
  143. /* 背景颜色 */
  144. /* 边框颜色 */
  145. /* 尺寸变量 */
  146. /* 文字尺寸 */
  147. /* 图片尺寸 */
  148. /* Border Radius */
  149. /* 水平间距 */
  150. /* 垂直间距 */
  151. /* 透明度 */
  152. /* 文章场景相关 */
  153. .uni-load-more[data-v-9245e42c] {
  154. display: flex;
  155. flex-direction: row;
  156. height: 40px;
  157. align-items: center;
  158. justify-content: center;
  159. }
  160. .uni-load-more__text[data-v-9245e42c] {
  161. font-size: 14px;
  162. margin-left: 8px;
  163. }
  164. .uni-load-more__img[data-v-9245e42c] {
  165. width: 24px;
  166. height: 24px;
  167. }
  168. .uni-load-more__img--nvue[data-v-9245e42c] {
  169. color: #666666;
  170. }
  171. .uni-load-more__img--android[data-v-9245e42c],
  172. .uni-load-more__img--ios[data-v-9245e42c] {
  173. width: 24px;
  174. height: 24px;
  175. transform: rotate(0deg);
  176. }
  177. .uni-load-more__img--android[data-v-9245e42c] {
  178. animation: loading-ios 1s 0s linear infinite;
  179. }
  180. @keyframes loading-android-9245e42c {
  181. 0% {
  182. transform: rotate(0deg);
  183. }
  184. 100% {
  185. transform: rotate(360deg);
  186. }
  187. }
  188. .uni-load-more__img--ios-H5[data-v-9245e42c] {
  189. position: relative;
  190. animation: loading-ios-H5-9245e42c 1s 0s step-end infinite;
  191. }
  192. .uni-load-more__img--ios-H5 uni-image[data-v-9245e42c] {
  193. position: absolute;
  194. width: 100%;
  195. height: 100%;
  196. left: 0;
  197. top: 0;
  198. }
  199. @keyframes loading-ios-H5-9245e42c {
  200. 0% {
  201. transform: rotate(0deg);
  202. }
  203. 8% {
  204. transform: rotate(30deg);
  205. }
  206. 16% {
  207. transform: rotate(60deg);
  208. }
  209. 24% {
  210. transform: rotate(90deg);
  211. }
  212. 32% {
  213. transform: rotate(120deg);
  214. }
  215. 40% {
  216. transform: rotate(150deg);
  217. }
  218. 48% {
  219. transform: rotate(180deg);
  220. }
  221. 56% {
  222. transform: rotate(210deg);
  223. }
  224. 64% {
  225. transform: rotate(240deg);
  226. }
  227. 73% {
  228. transform: rotate(270deg);
  229. }
  230. 82% {
  231. transform: rotate(300deg);
  232. }
  233. 91% {
  234. transform: rotate(330deg);
  235. }
  236. 100% {
  237. transform: rotate(360deg);
  238. }
  239. }
  240. .uni-load-more__img--android-MP[data-v-9245e42c] {
  241. position: relative;
  242. width: 24px;
  243. height: 24px;
  244. transform: rotate(0deg);
  245. animation: loading-ios 1s 0s ease infinite;
  246. }
  247. .uni-load-more__img--android-MP .uni-load-more__img-icon[data-v-9245e42c] {
  248. position: absolute;
  249. box-sizing: border-box;
  250. width: 100%;
  251. height: 100%;
  252. border-radius: 50%;
  253. border: solid 2px transparent;
  254. border-top: solid 2px #777777;
  255. transform-origin: center;
  256. }
  257. .uni-load-more__img--android-MP .uni-load-more__img-icon[data-v-9245e42c]:nth-child(1) {
  258. animation: loading-android-MP-1-9245e42c 1s 0s linear infinite;
  259. }
  260. .uni-load-more__img--android-MP .uni-load-more__img-icon[data-v-9245e42c]:nth-child(2) {
  261. animation: loading-android-MP-2-9245e42c 1s 0s linear infinite;
  262. }
  263. .uni-load-more__img--android-MP .uni-load-more__img-icon[data-v-9245e42c]:nth-child(3) {
  264. animation: loading-android-MP-3-9245e42c 1s 0s linear infinite;
  265. }
  266. @keyframes loading-android-9245e42c {
  267. 0% {
  268. transform: rotate(0deg);
  269. }
  270. 100% {
  271. transform: rotate(360deg);
  272. }
  273. }
  274. @keyframes loading-android-MP-1-9245e42c {
  275. 0% {
  276. transform: rotate(0deg);
  277. }
  278. 50% {
  279. transform: rotate(90deg);
  280. }
  281. 100% {
  282. transform: rotate(360deg);
  283. }
  284. }
  285. @keyframes loading-android-MP-2-9245e42c {
  286. 0% {
  287. transform: rotate(0deg);
  288. }
  289. 50% {
  290. transform: rotate(180deg);
  291. }
  292. 100% {
  293. transform: rotate(360deg);
  294. }
  295. }
  296. @keyframes loading-android-MP-3-9245e42c {
  297. 0% {
  298. transform: rotate(0deg);
  299. }
  300. 50% {
  301. transform: rotate(270deg);
  302. }
  303. 100% {
  304. transform: rotate(360deg);
  305. }
  306. }
  307. /**
  308. * 这里是uni-app内置的常用样式变量
  309. *
  310. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  311. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  312. *
  313. */
  314. /**
  315. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  316. *
  317. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  318. */
  319. /* 颜色变量 */
  320. /* 行为相关颜色 */
  321. /* 文字基本颜色 */
  322. /* 背景颜色 */
  323. /* 边框颜色 */
  324. /* 尺寸变量 */
  325. /* 文字尺寸 */
  326. /* 图片尺寸 */
  327. /* Border Radius */
  328. /* 水平间距 */
  329. /* 垂直间距 */
  330. /* 透明度 */
  331. /* 文章场景相关 */
  332. .empty-box[data-v-5cc178a8] {
  333. width: 100%;
  334. }
  335. .empty-icon[data-v-5cc178a8] {
  336. width: 7.5rem;
  337. }
  338. .empty-text[data-v-5cc178a8] {
  339. font-size: 0.8125rem;
  340. font-weight: 500;
  341. color: #999999;
  342. }
  343. .empty-btn[data-v-5cc178a8] {
  344. width: 10rem;
  345. height: 2.1875rem;
  346. border: 0.0625rem solid var(--5cc178a8-buttonColor);
  347. border-radius: 1.09375rem;
  348. font-weight: 500;
  349. color: var(--5cc178a8-buttonColor);
  350. font-size: 0.875rem;
  351. }
  352. /**
  353. * 这里是uni-app内置的常用样式变量
  354. *
  355. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  356. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  357. *
  358. */
  359. /**
  360. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  361. *
  362. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  363. */
  364. /* 颜色变量 */
  365. /* 行为相关颜色 */
  366. /* 文字基本颜色 */
  367. /* 背景颜色 */
  368. /* 边框颜色 */
  369. /* 尺寸变量 */
  370. /* 文字尺寸 */
  371. /* 图片尺寸 */
  372. /* Border Radius */
  373. /* 水平间距 */
  374. /* 垂直间距 */
  375. /* 透明度 */
  376. /* 文章场景相关 */
  377. .uni-status-bar[data-v-78e027a3] {
  378. height: var(--status-bar-height);
  379. }
  380. /**
  381. * 这里是uni-app内置的常用样式变量
  382. *
  383. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  384. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  385. *
  386. */
  387. /**
  388. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  389. *
  390. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  391. */
  392. /* 颜色变量 */
  393. /* 行为相关颜色 */
  394. /* 文字基本颜色 */
  395. /* 背景颜色 */
  396. /* 边框颜色 */
  397. /* 尺寸变量 */
  398. /* 文字尺寸 */
  399. /* 图片尺寸 */
  400. /* Border Radius */
  401. /* 水平间距 */
  402. /* 垂直间距 */
  403. /* 透明度 */
  404. /* 文章场景相关 */
  405. .uniui-color[data-v-d31e1c47]:before {
  406. content: "\e6cf";
  407. }
  408. .uniui-wallet[data-v-d31e1c47]:before {
  409. content: "\e6b1";
  410. }
  411. .uniui-settings-filled[data-v-d31e1c47]:before {
  412. content: "\e6ce";
  413. }
  414. .uniui-auth-filled[data-v-d31e1c47]:before {
  415. content: "\e6cc";
  416. }
  417. .uniui-shop-filled[data-v-d31e1c47]:before {
  418. content: "\e6cd";
  419. }
  420. .uniui-staff-filled[data-v-d31e1c47]:before {
  421. content: "\e6cb";
  422. }
  423. .uniui-vip-filled[data-v-d31e1c47]:before {
  424. content: "\e6c6";
  425. }
  426. .uniui-plus-filled[data-v-d31e1c47]:before {
  427. content: "\e6c7";
  428. }
  429. .uniui-folder-add-filled[data-v-d31e1c47]:before {
  430. content: "\e6c8";
  431. }
  432. .uniui-color-filled[data-v-d31e1c47]:before {
  433. content: "\e6c9";
  434. }
  435. .uniui-tune-filled[data-v-d31e1c47]:before {
  436. content: "\e6ca";
  437. }
  438. .uniui-calendar-filled[data-v-d31e1c47]:before {
  439. content: "\e6c0";
  440. }
  441. .uniui-notification-filled[data-v-d31e1c47]:before {
  442. content: "\e6c1";
  443. }
  444. .uniui-wallet-filled[data-v-d31e1c47]:before {
  445. content: "\e6c2";
  446. }
  447. .uniui-medal-filled[data-v-d31e1c47]:before {
  448. content: "\e6c3";
  449. }
  450. .uniui-gift-filled[data-v-d31e1c47]:before {
  451. content: "\e6c4";
  452. }
  453. .uniui-fire-filled[data-v-d31e1c47]:before {
  454. content: "\e6c5";
  455. }
  456. .uniui-refreshempty[data-v-d31e1c47]:before {
  457. content: "\e6bf";
  458. }
  459. .uniui-location-filled[data-v-d31e1c47]:before {
  460. content: "\e6af";
  461. }
  462. .uniui-person-filled[data-v-d31e1c47]:before {
  463. content: "\e69d";
  464. }
  465. .uniui-personadd-filled[data-v-d31e1c47]:before {
  466. content: "\e698";
  467. }
  468. .uniui-back[data-v-d31e1c47]:before {
  469. content: "\e6b9";
  470. }
  471. .uniui-forward[data-v-d31e1c47]:before {
  472. content: "\e6ba";
  473. }
  474. .uniui-arrow-right[data-v-d31e1c47]:before {
  475. content: "\e6bb";
  476. }
  477. .uniui-arrowthinright[data-v-d31e1c47]:before {
  478. content: "\e6bb";
  479. }
  480. .uniui-arrow-left[data-v-d31e1c47]:before {
  481. content: "\e6bc";
  482. }
  483. .uniui-arrowthinleft[data-v-d31e1c47]:before {
  484. content: "\e6bc";
  485. }
  486. .uniui-arrow-up[data-v-d31e1c47]:before {
  487. content: "\e6bd";
  488. }
  489. .uniui-arrowthinup[data-v-d31e1c47]:before {
  490. content: "\e6bd";
  491. }
  492. .uniui-arrow-down[data-v-d31e1c47]:before {
  493. content: "\e6be";
  494. }
  495. .uniui-arrowthindown[data-v-d31e1c47]:before {
  496. content: "\e6be";
  497. }
  498. .uniui-bottom[data-v-d31e1c47]:before {
  499. content: "\e6b8";
  500. }
  501. .uniui-arrowdown[data-v-d31e1c47]:before {
  502. content: "\e6b8";
  503. }
  504. .uniui-right[data-v-d31e1c47]:before {
  505. content: "\e6b5";
  506. }
  507. .uniui-arrowright[data-v-d31e1c47]:before {
  508. content: "\e6b5";
  509. }
  510. .uniui-top[data-v-d31e1c47]:before {
  511. content: "\e6b6";
  512. }
  513. .uniui-arrowup[data-v-d31e1c47]:before {
  514. content: "\e6b6";
  515. }
  516. .uniui-left[data-v-d31e1c47]:before {
  517. content: "\e6b7";
  518. }
  519. .uniui-arrowleft[data-v-d31e1c47]:before {
  520. content: "\e6b7";
  521. }
  522. .uniui-eye[data-v-d31e1c47]:before {
  523. content: "\e651";
  524. }
  525. .uniui-eye-filled[data-v-d31e1c47]:before {
  526. content: "\e66a";
  527. }
  528. .uniui-eye-slash[data-v-d31e1c47]:before {
  529. content: "\e6b3";
  530. }
  531. .uniui-eye-slash-filled[data-v-d31e1c47]:before {
  532. content: "\e6b4";
  533. }
  534. .uniui-info-filled[data-v-d31e1c47]:before {
  535. content: "\e649";
  536. }
  537. .uniui-reload[data-v-d31e1c47]:before {
  538. content: "\e6b2";
  539. }
  540. .uniui-micoff-filled[data-v-d31e1c47]:before {
  541. content: "\e6b0";
  542. }
  543. .uniui-map-pin-ellipse[data-v-d31e1c47]:before {
  544. content: "\e6ac";
  545. }
  546. .uniui-map-pin[data-v-d31e1c47]:before {
  547. content: "\e6ad";
  548. }
  549. .uniui-location[data-v-d31e1c47]:before {
  550. content: "\e6ae";
  551. }
  552. .uniui-starhalf[data-v-d31e1c47]:before {
  553. content: "\e683";
  554. }
  555. .uniui-star[data-v-d31e1c47]:before {
  556. content: "\e688";
  557. }
  558. .uniui-star-filled[data-v-d31e1c47]:before {
  559. content: "\e68f";
  560. }
  561. .uniui-calendar[data-v-d31e1c47]:before {
  562. content: "\e6a0";
  563. }
  564. .uniui-fire[data-v-d31e1c47]:before {
  565. content: "\e6a1";
  566. }
  567. .uniui-medal[data-v-d31e1c47]:before {
  568. content: "\e6a2";
  569. }
  570. .uniui-font[data-v-d31e1c47]:before {
  571. content: "\e6a3";
  572. }
  573. .uniui-gift[data-v-d31e1c47]:before {
  574. content: "\e6a4";
  575. }
  576. .uniui-link[data-v-d31e1c47]:before {
  577. content: "\e6a5";
  578. }
  579. .uniui-notification[data-v-d31e1c47]:before {
  580. content: "\e6a6";
  581. }
  582. .uniui-staff[data-v-d31e1c47]:before {
  583. content: "\e6a7";
  584. }
  585. .uniui-vip[data-v-d31e1c47]:before {
  586. content: "\e6a8";
  587. }
  588. .uniui-folder-add[data-v-d31e1c47]:before {
  589. content: "\e6a9";
  590. }
  591. .uniui-tune[data-v-d31e1c47]:before {
  592. content: "\e6aa";
  593. }
  594. .uniui-auth[data-v-d31e1c47]:before {
  595. content: "\e6ab";
  596. }
  597. .uniui-person[data-v-d31e1c47]:before {
  598. content: "\e699";
  599. }
  600. .uniui-email-filled[data-v-d31e1c47]:before {
  601. content: "\e69a";
  602. }
  603. .uniui-phone-filled[data-v-d31e1c47]:before {
  604. content: "\e69b";
  605. }
  606. .uniui-phone[data-v-d31e1c47]:before {
  607. content: "\e69c";
  608. }
  609. .uniui-email[data-v-d31e1c47]:before {
  610. content: "\e69e";
  611. }
  612. .uniui-personadd[data-v-d31e1c47]:before {
  613. content: "\e69f";
  614. }
  615. .uniui-chatboxes-filled[data-v-d31e1c47]:before {
  616. content: "\e692";
  617. }
  618. .uniui-contact[data-v-d31e1c47]:before {
  619. content: "\e693";
  620. }
  621. .uniui-chatbubble-filled[data-v-d31e1c47]:before {
  622. content: "\e694";
  623. }
  624. .uniui-contact-filled[data-v-d31e1c47]:before {
  625. content: "\e695";
  626. }
  627. .uniui-chatboxes[data-v-d31e1c47]:before {
  628. content: "\e696";
  629. }
  630. .uniui-chatbubble[data-v-d31e1c47]:before {
  631. content: "\e697";
  632. }
  633. .uniui-upload-filled[data-v-d31e1c47]:before {
  634. content: "\e68e";
  635. }
  636. .uniui-upload[data-v-d31e1c47]:before {
  637. content: "\e690";
  638. }
  639. .uniui-weixin[data-v-d31e1c47]:before {
  640. content: "\e691";
  641. }
  642. .uniui-compose[data-v-d31e1c47]:before {
  643. content: "\e67f";
  644. }
  645. .uniui-qq[data-v-d31e1c47]:before {
  646. content: "\e680";
  647. }
  648. .uniui-download-filled[data-v-d31e1c47]:before {
  649. content: "\e681";
  650. }
  651. .uniui-pyq[data-v-d31e1c47]:before {
  652. content: "\e682";
  653. }
  654. .uniui-sound[data-v-d31e1c47]:before {
  655. content: "\e684";
  656. }
  657. .uniui-trash-filled[data-v-d31e1c47]:before {
  658. content: "\e685";
  659. }
  660. .uniui-sound-filled[data-v-d31e1c47]:before {
  661. content: "\e686";
  662. }
  663. .uniui-trash[data-v-d31e1c47]:before {
  664. content: "\e687";
  665. }
  666. .uniui-videocam-filled[data-v-d31e1c47]:before {
  667. content: "\e689";
  668. }
  669. .uniui-spinner-cycle[data-v-d31e1c47]:before {
  670. content: "\e68a";
  671. }
  672. .uniui-weibo[data-v-d31e1c47]:before {
  673. content: "\e68b";
  674. }
  675. .uniui-videocam[data-v-d31e1c47]:before {
  676. content: "\e68c";
  677. }
  678. .uniui-download[data-v-d31e1c47]:before {
  679. content: "\e68d";
  680. }
  681. .uniui-help[data-v-d31e1c47]:before {
  682. content: "\e679";
  683. }
  684. .uniui-navigate-filled[data-v-d31e1c47]:before {
  685. content: "\e67a";
  686. }
  687. .uniui-plusempty[data-v-d31e1c47]:before {
  688. content: "\e67b";
  689. }
  690. .uniui-smallcircle[data-v-d31e1c47]:before {
  691. content: "\e67c";
  692. }
  693. .uniui-minus-filled[data-v-d31e1c47]:before {
  694. content: "\e67d";
  695. }
  696. .uniui-micoff[data-v-d31e1c47]:before {
  697. content: "\e67e";
  698. }
  699. .uniui-closeempty[data-v-d31e1c47]:before {
  700. content: "\e66c";
  701. }
  702. .uniui-clear[data-v-d31e1c47]:before {
  703. content: "\e66d";
  704. }
  705. .uniui-navigate[data-v-d31e1c47]:before {
  706. content: "\e66e";
  707. }
  708. .uniui-minus[data-v-d31e1c47]:before {
  709. content: "\e66f";
  710. }
  711. .uniui-image[data-v-d31e1c47]:before {
  712. content: "\e670";
  713. }
  714. .uniui-mic[data-v-d31e1c47]:before {
  715. content: "\e671";
  716. }
  717. .uniui-paperplane[data-v-d31e1c47]:before {
  718. content: "\e672";
  719. }
  720. .uniui-close[data-v-d31e1c47]:before {
  721. content: "\e673";
  722. }
  723. .uniui-help-filled[data-v-d31e1c47]:before {
  724. content: "\e674";
  725. }
  726. .uniui-paperplane-filled[data-v-d31e1c47]:before {
  727. content: "\e675";
  728. }
  729. .uniui-plus[data-v-d31e1c47]:before {
  730. content: "\e676";
  731. }
  732. .uniui-mic-filled[data-v-d31e1c47]:before {
  733. content: "\e677";
  734. }
  735. .uniui-image-filled[data-v-d31e1c47]:before {
  736. content: "\e678";
  737. }
  738. .uniui-locked-filled[data-v-d31e1c47]:before {
  739. content: "\e668";
  740. }
  741. .uniui-info[data-v-d31e1c47]:before {
  742. content: "\e669";
  743. }
  744. .uniui-locked[data-v-d31e1c47]:before {
  745. content: "\e66b";
  746. }
  747. .uniui-camera-filled[data-v-d31e1c47]:before {
  748. content: "\e658";
  749. }
  750. .uniui-chat-filled[data-v-d31e1c47]:before {
  751. content: "\e659";
  752. }
  753. .uniui-camera[data-v-d31e1c47]:before {
  754. content: "\e65a";
  755. }
  756. .uniui-circle[data-v-d31e1c47]:before {
  757. content: "\e65b";
  758. }
  759. .uniui-checkmarkempty[data-v-d31e1c47]:before {
  760. content: "\e65c";
  761. }
  762. .uniui-chat[data-v-d31e1c47]:before {
  763. content: "\e65d";
  764. }
  765. .uniui-circle-filled[data-v-d31e1c47]:before {
  766. content: "\e65e";
  767. }
  768. .uniui-flag[data-v-d31e1c47]:before {
  769. content: "\e65f";
  770. }
  771. .uniui-flag-filled[data-v-d31e1c47]:before {
  772. content: "\e660";
  773. }
  774. .uniui-gear-filled[data-v-d31e1c47]:before {
  775. content: "\e661";
  776. }
  777. .uniui-home[data-v-d31e1c47]:before {
  778. content: "\e662";
  779. }
  780. .uniui-home-filled[data-v-d31e1c47]:before {
  781. content: "\e663";
  782. }
  783. .uniui-gear[data-v-d31e1c47]:before {
  784. content: "\e664";
  785. }
  786. .uniui-smallcircle-filled[data-v-d31e1c47]:before {
  787. content: "\e665";
  788. }
  789. .uniui-map-filled[data-v-d31e1c47]:before {
  790. content: "\e666";
  791. }
  792. .uniui-map[data-v-d31e1c47]:before {
  793. content: "\e667";
  794. }
  795. .uniui-refresh-filled[data-v-d31e1c47]:before {
  796. content: "\e656";
  797. }
  798. .uniui-refresh[data-v-d31e1c47]:before {
  799. content: "\e657";
  800. }
  801. .uniui-cloud-upload[data-v-d31e1c47]:before {
  802. content: "\e645";
  803. }
  804. .uniui-cloud-download-filled[data-v-d31e1c47]:before {
  805. content: "\e646";
  806. }
  807. .uniui-cloud-download[data-v-d31e1c47]:before {
  808. content: "\e647";
  809. }
  810. .uniui-cloud-upload-filled[data-v-d31e1c47]:before {
  811. content: "\e648";
  812. }
  813. .uniui-redo[data-v-d31e1c47]:before {
  814. content: "\e64a";
  815. }
  816. .uniui-images-filled[data-v-d31e1c47]:before {
  817. content: "\e64b";
  818. }
  819. .uniui-undo-filled[data-v-d31e1c47]:before {
  820. content: "\e64c";
  821. }
  822. .uniui-more[data-v-d31e1c47]:before {
  823. content: "\e64d";
  824. }
  825. .uniui-more-filled[data-v-d31e1c47]:before {
  826. content: "\e64e";
  827. }
  828. .uniui-undo[data-v-d31e1c47]:before {
  829. content: "\e64f";
  830. }
  831. .uniui-images[data-v-d31e1c47]:before {
  832. content: "\e650";
  833. }
  834. .uniui-paperclip[data-v-d31e1c47]:before {
  835. content: "\e652";
  836. }
  837. .uniui-settings[data-v-d31e1c47]:before {
  838. content: "\e653";
  839. }
  840. .uniui-search[data-v-d31e1c47]:before {
  841. content: "\e654";
  842. }
  843. .uniui-redo-filled[data-v-d31e1c47]:before {
  844. content: "\e655";
  845. }
  846. .uniui-list[data-v-d31e1c47]:before {
  847. content: "\e644";
  848. }
  849. .uniui-mail-open-filled[data-v-d31e1c47]:before {
  850. content: "\e63a";
  851. }
  852. .uniui-hand-down-filled[data-v-d31e1c47]:before {
  853. content: "\e63c";
  854. }
  855. .uniui-hand-down[data-v-d31e1c47]:before {
  856. content: "\e63d";
  857. }
  858. .uniui-hand-up-filled[data-v-d31e1c47]:before {
  859. content: "\e63e";
  860. }
  861. .uniui-hand-up[data-v-d31e1c47]:before {
  862. content: "\e63f";
  863. }
  864. .uniui-heart-filled[data-v-d31e1c47]:before {
  865. content: "\e641";
  866. }
  867. .uniui-mail-open[data-v-d31e1c47]:before {
  868. content: "\e643";
  869. }
  870. .uniui-heart[data-v-d31e1c47]:before {
  871. content: "\e639";
  872. }
  873. .uniui-loop[data-v-d31e1c47]:before {
  874. content: "\e633";
  875. }
  876. .uniui-pulldown[data-v-d31e1c47]:before {
  877. content: "\e632";
  878. }
  879. .uniui-scan[data-v-d31e1c47]:before {
  880. content: "\e62a";
  881. }
  882. .uniui-bars[data-v-d31e1c47]:before {
  883. content: "\e627";
  884. }
  885. .uniui-cart-filled[data-v-d31e1c47]:before {
  886. content: "\e629";
  887. }
  888. .uniui-checkbox[data-v-d31e1c47]:before {
  889. content: "\e62b";
  890. }
  891. .uniui-checkbox-filled[data-v-d31e1c47]:before {
  892. content: "\e62c";
  893. }
  894. .uniui-shop[data-v-d31e1c47]:before {
  895. content: "\e62f";
  896. }
  897. .uniui-headphones[data-v-d31e1c47]:before {
  898. content: "\e630";
  899. }
  900. .uniui-cart[data-v-d31e1c47]:before {
  901. content: "\e631";
  902. }
  903. @font-face {
  904. font-family: uniicons;
  905. src: url("../../assets/uniicons.89ed7d6d.ttf") format("truetype");
  906. }
  907. .uni-icons[data-v-d31e1c47] {
  908. font-family: uniicons;
  909. text-decoration: none;
  910. text-align: center;
  911. }
  912. /**
  913. * 这里是uni-app内置的常用样式变量
  914. *
  915. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  916. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  917. *
  918. */
  919. /**
  920. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  921. *
  922. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  923. */
  924. /* 颜色变量 */
  925. /* 行为相关颜色 */
  926. /* 文字基本颜色 */
  927. /* 背景颜色 */
  928. /* 边框颜色 */
  929. /* 尺寸变量 */
  930. /* 文字尺寸 */
  931. /* 图片尺寸 */
  932. /* Border Radius */
  933. /* 水平间距 */
  934. /* 垂直间距 */
  935. /* 透明度 */
  936. /* 文章场景相关 */
  937. .uni-searchbar[data-v-f07ef577] {
  938. display: flex;
  939. flex-direction: row;
  940. position: relative;
  941. padding: 5px;
  942. }
  943. .uni-searchbar__box[data-v-f07ef577] {
  944. display: flex;
  945. box-sizing: border-box;
  946. overflow: hidden;
  947. position: relative;
  948. flex: 1;
  949. flex-direction: row;
  950. align-items: center;
  951. height: 36px;
  952. padding: 5px 8px 5px 0px;
  953. }
  954. .uni-searchbar__box-icon-search[data-v-f07ef577] {
  955. display: flex;
  956. flex-direction: row;
  957. padding: 0 8px;
  958. justify-content: center;
  959. align-items: center;
  960. color: #B3B3B3;
  961. }
  962. .uni-searchbar__box-search-input[data-v-f07ef577] {
  963. flex: 1;
  964. font-size: 14px;
  965. color: #333;
  966. }
  967. .uni-searchbar__box-icon-clear[data-v-f07ef577] {
  968. align-items: center;
  969. line-height: 24px;
  970. padding-left: 8px;
  971. }
  972. .uni-searchbar__text-placeholder[data-v-f07ef577] {
  973. font-size: 14px;
  974. color: #B3B3B3;
  975. margin-left: 5px;
  976. }
  977. .uni-searchbar__cancel[data-v-f07ef577] {
  978. padding-left: 10px;
  979. line-height: 36px;
  980. font-size: 14px;
  981. color: #333333;
  982. }
  983. /**
  984. * 这里是uni-app内置的常用样式变量
  985. *
  986. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  987. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  988. *
  989. */
  990. /**
  991. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  992. *
  993. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  994. */
  995. /* 颜色变量 */
  996. /* 行为相关颜色 */
  997. /* 文字基本颜色 */
  998. /* 背景颜色 */
  999. /* 边框颜色 */
  1000. /* 尺寸变量 */
  1001. /* 文字尺寸 */
  1002. /* 图片尺寸 */
  1003. /* Border Radius */
  1004. /* 水平间距 */
  1005. /* 垂直间距 */
  1006. /* 透明度 */
  1007. /* 文章场景相关 */
  1008. .bg-main[data-v-305eaf98] {
  1009. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient)) !important;
  1010. color: #fff !important;
  1011. }
  1012. .icon-box[data-v-305eaf98] {
  1013. background: #ffffff;
  1014. box-shadow: 0px 0px 0.125rem rgba(51, 51, 51, 0.08), 0px 0.125rem 0.1875rem 0.0625rem rgba(102, 102, 102, 0.12);
  1015. border-radius: 0.9375rem;
  1016. width: 4.1875rem;
  1017. height: 1.75rem;
  1018. margin-left: 0.25rem;
  1019. }
  1020. .icon-box .line[data-v-305eaf98] {
  1021. width: 0.0625rem;
  1022. height: 0.75rem;
  1023. background: #e5e5e7;
  1024. }
  1025. .icon-box .sicon-back[data-v-305eaf98] {
  1026. font-size: 1rem;
  1027. color: #000;
  1028. }
  1029. .icon-box .sicon-home[data-v-305eaf98] {
  1030. font-size: 1rem;
  1031. color: #000;
  1032. }
  1033. .icon-box .sicon-more[data-v-305eaf98] {
  1034. font-size: 1rem;
  1035. color: #000;
  1036. }
  1037. .icon-box .icon-button[data-v-305eaf98] {
  1038. width: 2.09375rem;
  1039. height: 1.75rem;
  1040. }
  1041. .icon-box .icon-button-left[data-v-305eaf98]:hover {
  1042. background: rgba(0, 0, 0, 0.16);
  1043. border-radius: 0.9375rem 0px 0px 0.9375rem;
  1044. }
  1045. .icon-box .icon-button-right[data-v-305eaf98]:hover {
  1046. background: rgba(0, 0, 0, 0.16);
  1047. border-radius: 0px 0.9375rem 0.9375rem 0px;
  1048. }
  1049. .fixed-bg[data-v-305eaf98] {
  1050. position: absolute;
  1051. width: 100%;
  1052. height: 100%;
  1053. top: 0;
  1054. z-index: 1;
  1055. pointer-events: none;
  1056. }
  1057. .uni-nav-bar-text[data-v-305eaf98] {
  1058. font-size: 1.0625rem;
  1059. }
  1060. .uni-nav-bar-right-text[data-v-305eaf98] {
  1061. font-size: 12px;
  1062. }
  1063. .uni-navbar__content[data-v-305eaf98] {
  1064. position: relative;
  1065. background-color: transparent;
  1066. }
  1067. .uni-navbar-btn-text[data-v-305eaf98] {
  1068. display: flex;
  1069. flex-direction: column;
  1070. justify-content: flex-start;
  1071. align-items: center;
  1072. line-height: 18px;
  1073. }
  1074. .uni-navbar__header[data-v-305eaf98] {
  1075. display: flex;
  1076. padding: 0 10px;
  1077. flex-direction: row;
  1078. justify-content: space-between;
  1079. height: 44px;
  1080. font-size: 12px;
  1081. position: relative;
  1082. z-index: 2;
  1083. }
  1084. .uni-navbar__header-btns[data-v-305eaf98] {
  1085. overflow: hidden;
  1086. display: flex;
  1087. flex-wrap: nowrap;
  1088. flex-direction: row;
  1089. min-width: 1.25rem;
  1090. justify-content: center;
  1091. align-items: center;
  1092. }
  1093. .uni-navbar__header-btns-left[data-v-305eaf98] {
  1094. display: flex;
  1095. width: 3.75rem;
  1096. justify-content: flex-start;
  1097. align-items: center;
  1098. }
  1099. .uni-navbar__header-btns-right[data-v-305eaf98] {
  1100. display: flex;
  1101. flex-direction: row;
  1102. justify-content: flex-end;
  1103. align-items: center;
  1104. }
  1105. .uni-navbar__header-container[data-v-305eaf98] {
  1106. position: absolute;
  1107. left: 50%;
  1108. transform: translateX(-50%) translateY(-50%);
  1109. top: 50%;
  1110. }
  1111. .uni-navbar__header-container-inner[data-v-305eaf98] {
  1112. display: flex;
  1113. flex: 1;
  1114. flex-direction: row;
  1115. align-items: center;
  1116. justify-content: center;
  1117. font-size: 12px;
  1118. overflow: hidden;
  1119. }
  1120. .uni-navbar__placeholder-view[data-v-305eaf98] {
  1121. height: 44px;
  1122. }
  1123. .uni-navbar--fixed[data-v-305eaf98] {
  1124. position: fixed;
  1125. z-index: 998;
  1126. left: 0;
  1127. right: 0;
  1128. }
  1129. .uni-navbar--shadow[data-v-305eaf98] {
  1130. box-shadow: 0 1px 6px #ccc;
  1131. }
  1132. .uni-navbar--border[data-v-305eaf98] {
  1133. border-bottom-width: 0.03125rem;
  1134. border-bottom-style: solid;
  1135. border-bottom-color: #eee;
  1136. }
  1137. .uni-ellipsis-1[data-v-305eaf98] {
  1138. overflow: hidden;
  1139. white-space: nowrap;
  1140. text-overflow: ellipsis;
  1141. }
  1142. /**
  1143. * 这里是uni-app内置的常用样式变量
  1144. *
  1145. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1146. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1147. *
  1148. */
  1149. /**
  1150. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1151. *
  1152. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1153. */
  1154. /* 颜色变量 */
  1155. /* 行为相关颜色 */
  1156. /* 文字基本颜色 */
  1157. /* 背景颜色 */
  1158. /* 边框颜色 */
  1159. /* 尺寸变量 */
  1160. /* 文字尺寸 */
  1161. /* 图片尺寸 */
  1162. /* Border Radius */
  1163. /* 水平间距 */
  1164. /* 垂直间距 */
  1165. /* 透明度 */
  1166. /* 文章场景相关 */
  1167. .ui-navbar-box[data-v-81e1f503] {
  1168. background-color: transparent;
  1169. width: 100%;
  1170. }
  1171. .ui-navbar-box .ui-bar[data-v-81e1f503] {
  1172. position: relative;
  1173. z-index: 2;
  1174. white-space: nowrap;
  1175. display: flex;
  1176. position: relative;
  1177. align-items: center;
  1178. justify-content: space-between;
  1179. }
  1180. .ui-navbar-box .ui-bar .left[data-v-81e1f503] {
  1181. position: relative;
  1182. display: flex;
  1183. align-items: center;
  1184. justify-content: space-between;
  1185. }
  1186. .ui-navbar-box .ui-bar .left .back[data-v-81e1f503] {
  1187. position: relative;
  1188. display: flex;
  1189. align-items: center;
  1190. justify-content: space-between;
  1191. }
  1192. .ui-navbar-box .ui-bar .left .back .back-icon[data-v-81e1f503] {
  1193. display: flex;
  1194. align-items: center;
  1195. justify-content: center;
  1196. width: 1.75rem;
  1197. height: 1.75rem;
  1198. margin: 0 0.3125rem;
  1199. font-size: 1.4375rem !important;
  1200. }
  1201. .ui-navbar-box .ui-bar .left .back .back-icon.opacityIcon[data-v-81e1f503] {
  1202. position: relative;
  1203. border-radius: 50%;
  1204. background-color: rgba(127, 127, 127, 0.5);
  1205. }
  1206. .ui-navbar-box .ui-bar .left .back .back-icon.opacityIcon[data-v-81e1f503]::after {
  1207. content: "";
  1208. display: block;
  1209. position: absolute;
  1210. height: 200%;
  1211. width: 200%;
  1212. left: 0;
  1213. top: 0;
  1214. border-radius: inherit;
  1215. transform: scale(0.5);
  1216. transform-origin: 0 0;
  1217. opacity: 0.1;
  1218. border: 1px solid currentColor;
  1219. pointer-events: none;
  1220. }
  1221. .ui-navbar-box .ui-bar .left .back .back-icon.opacityIcon[data-v-81e1f503]::before {
  1222. transform: scale(0.9);
  1223. }
  1224. .ui-navbar-box .ui-bar .left .capsule[data-v-81e1f503] {
  1225. position: relative;
  1226. display: flex;
  1227. align-items: center;
  1228. justify-content: space-between;
  1229. border-radius: 100px;
  1230. position: relative;
  1231. }
  1232. .ui-navbar-box .ui-bar .left .capsule.dark[data-v-81e1f503] {
  1233. background-color: rgba(255, 255, 255, 0.5);
  1234. }
  1235. .ui-navbar-box .ui-bar .left .capsule.light[data-v-81e1f503] {
  1236. background-color: rgba(0, 0, 0, 0.15);
  1237. }
  1238. .ui-navbar-box .ui-bar .left .capsule[data-v-81e1f503]::after {
  1239. content: "";
  1240. display: block;
  1241. position: absolute;
  1242. height: 60%;
  1243. width: 1px;
  1244. left: 50%;
  1245. top: 20%;
  1246. background-color: currentColor;
  1247. opacity: 0.1;
  1248. pointer-events: none;
  1249. }
  1250. .ui-navbar-box .ui-bar .left .capsule[data-v-81e1f503]::before {
  1251. content: "";
  1252. display: block;
  1253. position: absolute;
  1254. height: 200%;
  1255. width: 200%;
  1256. left: 0;
  1257. top: 0;
  1258. border-radius: inherit;
  1259. transform: scale(0.5);
  1260. transform-origin: 0 0;
  1261. opacity: 0.1;
  1262. border: 1px solid currentColor;
  1263. pointer-events: none;
  1264. }
  1265. .ui-navbar-box .ui-bar .left .capsule .capsule-back[data-v-81e1f503],
  1266. .ui-navbar-box .ui-bar .left .capsule .capsule-home[data-v-81e1f503] {
  1267. display: flex;
  1268. align-items: center;
  1269. justify-content: center;
  1270. flex: 1;
  1271. }
  1272. .ui-navbar-box .ui-bar .left .capsule.isFristPage .capsule-back[data-v-81e1f503], .ui-navbar-box .ui-bar .left .capsule.isFristPage[data-v-81e1f503]::after {
  1273. display: none;
  1274. }
  1275. .ui-navbar-box .ui-bar .right[data-v-81e1f503] {
  1276. position: relative;
  1277. display: flex;
  1278. align-items: center;
  1279. justify-content: space-between;
  1280. }
  1281. .ui-navbar-box .ui-bar .right .right-content[data-v-81e1f503] {
  1282. display: flex;
  1283. flex-direction: row;
  1284. flex-direction: row-reverse;
  1285. }
  1286. .ui-navbar-box .ui-bar .center[data-v-81e1f503] {
  1287. display: flex;
  1288. align-items: center;
  1289. justify-content: center;
  1290. text-overflow: ellipsis;
  1291. text-align: center;
  1292. flex: 1;
  1293. }
  1294. .ui-navbar-box .ui-bar .center .image[data-v-81e1f503] {
  1295. display: block;
  1296. height: 36px;
  1297. max-width: calc(100vw - 200px);
  1298. }
  1299. .ui-navbar-box .ui-bar-bg[data-v-81e1f503] {
  1300. position: absolute;
  1301. width: 100%;
  1302. height: 100%;
  1303. top: 0;
  1304. z-index: 1;
  1305. pointer-events: none;
  1306. }
  1307. /**
  1308. * 这里是uni-app内置的常用样式变量
  1309. *
  1310. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1311. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1312. *
  1313. */
  1314. /**
  1315. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1316. *
  1317. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1318. */
  1319. /* 颜色变量 */
  1320. /* 行为相关颜色 */
  1321. /* 文字基本颜色 */
  1322. /* 背景颜色 */
  1323. /* 边框颜色 */
  1324. /* 尺寸变量 */
  1325. /* 文字尺寸 */
  1326. /* 图片尺寸 */
  1327. /* Border Radius */
  1328. /* 水平间距 */
  1329. /* 垂直间距 */
  1330. /* 透明度 */
  1331. /* 文章场景相关 */
  1332. .border-content[data-v-1f3fe5bf] {
  1333. border: 0.0625rem solid #eee;
  1334. }
  1335. .search-content[data-v-1f3fe5bf] {
  1336. flex: 1;
  1337. position: relative;
  1338. }
  1339. .search-content .search-icon[data-v-1f3fe5bf] {
  1340. font-size: 1.1875rem;
  1341. margin-right: 0.625rem;
  1342. }
  1343. .search-content .keyword-link[data-v-1f3fe5bf] {
  1344. position: absolute;
  1345. right: 0.5rem;
  1346. top: 0.5625rem;
  1347. }
  1348. .search-content .search-input[data-v-1f3fe5bf] {
  1349. font-size: 0.875rem;
  1350. }
  1351. /**
  1352. * 这里是uni-app内置的常用样式变量
  1353. *
  1354. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1355. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1356. *
  1357. */
  1358. /**
  1359. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1360. *
  1361. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1362. */
  1363. /* 颜色变量 */
  1364. /* 行为相关颜色 */
  1365. /* 文字基本颜色 */
  1366. /* 背景颜色 */
  1367. /* 边框颜色 */
  1368. /* 尺寸变量 */
  1369. /* 文字尺寸 */
  1370. /* 图片尺寸 */
  1371. /* Border Radius */
  1372. /* 水平间距 */
  1373. /* 垂直间距 */
  1374. /* 透明度 */
  1375. /* 文章场景相关 */
  1376. .nav-title[data-v-c063d35d] {
  1377. font-size: 1.125rem;
  1378. color: #333;
  1379. text-align: center;
  1380. }
  1381. .menu-icon-wrap .nav-image[data-v-c063d35d] {
  1382. height: 24px;
  1383. }
  1384. /**
  1385. * 这里是uni-app内置的常用样式变量
  1386. *
  1387. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1388. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1389. *
  1390. */
  1391. /**
  1392. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1393. *
  1394. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1395. */
  1396. /* 颜色变量 */
  1397. /* 行为相关颜色 */
  1398. /* 文字基本颜色 */
  1399. /* 背景颜色 */
  1400. /* 边框颜色 */
  1401. /* 尺寸变量 */
  1402. /* 文字尺寸 */
  1403. /* 图片尺寸 */
  1404. /* Border Radius */
  1405. /* 水平间距 */
  1406. /* 垂直间距 */
  1407. /* 透明度 */
  1408. /* 文章场景相关 */
  1409. .nav-box[data-v-6417c6b5] {
  1410. width: 23.4375rem;
  1411. position: relative;
  1412. height: 100%;
  1413. }
  1414. .nav-box .nav-item[data-v-6417c6b5] {
  1415. position: absolute;
  1416. top: 50%;
  1417. transform: translateY(-50%);
  1418. }
  1419. .nav-box .nav-icon[data-v-6417c6b5] {
  1420. position: absolute;
  1421. top: 50%;
  1422. transform: translateY(-50%);
  1423. left: 0.625rem;
  1424. }
  1425. .nav-box .nav-icon .inner-icon-box[data-v-6417c6b5] {
  1426. border: 1px solid rgba(255, 255, 255, 0.4);
  1427. background: none !important;
  1428. }
  1429. .nav-box .nav-icon .icon-box[data-v-6417c6b5] {
  1430. background: #ffffff;
  1431. box-shadow: 0px 0px 0.125rem rgba(51, 51, 51, 0.08), 0px 0.125rem 0.1875rem 0.0625rem rgba(102, 102, 102, 0.12);
  1432. border-radius: 0.9375rem;
  1433. width: 4.1875rem;
  1434. height: 1.75rem;
  1435. margin-left: 0.25rem;
  1436. }
  1437. .nav-box .nav-icon .icon-box .line[data-v-6417c6b5] {
  1438. width: 0.0625rem;
  1439. height: 0.75rem;
  1440. background: #e5e5e7;
  1441. }
  1442. .nav-box .nav-icon .icon-box .sicon-back[data-v-6417c6b5] {
  1443. font-size: 1rem;
  1444. }
  1445. .nav-box .nav-icon .icon-box .sicon-home[data-v-6417c6b5] {
  1446. font-size: 1rem;
  1447. }
  1448. .nav-box .nav-icon .icon-box .sicon-more[data-v-6417c6b5] {
  1449. font-size: 1rem;
  1450. }
  1451. .nav-box .nav-icon .icon-box .icon-button[data-v-6417c6b5] {
  1452. width: 2.09375rem;
  1453. height: 1.75rem;
  1454. }
  1455. .nav-box .nav-icon .icon-box .icon-button-left[data-v-6417c6b5]:hover {
  1456. background: rgba(0, 0, 0, 0.16);
  1457. border-radius: 0.9375rem 0px 0px 0.9375rem;
  1458. }
  1459. .nav-box .nav-icon .icon-box .icon-button-right[data-v-6417c6b5]:hover {
  1460. background: rgba(0, 0, 0, 0.16);
  1461. border-radius: 0px 0.9375rem 0.9375rem 0px;
  1462. }
  1463. /**
  1464. * 这里是uni-app内置的常用样式变量
  1465. *
  1466. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1467. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1468. *
  1469. */
  1470. /**
  1471. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1472. *
  1473. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1474. */
  1475. /* 颜色变量 */
  1476. /* 行为相关颜色 */
  1477. /* 文字基本颜色 */
  1478. /* 背景颜色 */
  1479. /* 边框颜色 */
  1480. /* 尺寸变量 */
  1481. /* 文字尺寸 */
  1482. /* 图片尺寸 */
  1483. /* Border Radius */
  1484. /* 水平间距 */
  1485. /* 垂直间距 */
  1486. /* 透明度 */
  1487. /* 文章场景相关 */
  1488. .icon-box[data-v-374b2fee] {
  1489. box-shadow: 0px 0px 0.125rem rgba(51, 51, 51, 0.08), 0px 0.125rem 0.1875rem 0.0625rem rgba(102, 102, 102, 0.12);
  1490. border-radius: 0.9375rem;
  1491. width: 4.1875rem;
  1492. height: 1.75rem;
  1493. margin-left: 0.25rem;
  1494. border: 1px solid rgba(255, 255, 255, 0.4);
  1495. }
  1496. .icon-box .line[data-v-374b2fee] {
  1497. width: 0.0625rem;
  1498. height: 0.75rem;
  1499. background: #e5e5e7;
  1500. }
  1501. .icon-box .sicon-back[data-v-374b2fee] {
  1502. font-size: 1rem;
  1503. }
  1504. .icon-box .sicon-home[data-v-374b2fee] {
  1505. font-size: 1rem;
  1506. }
  1507. .icon-box .sicon-more[data-v-374b2fee] {
  1508. font-size: 1rem;
  1509. }
  1510. .icon-box .icon-button[data-v-374b2fee] {
  1511. width: 2.09375rem;
  1512. height: 1.75rem;
  1513. }
  1514. .icon-box .icon-button-left[data-v-374b2fee]:hover {
  1515. background: rgba(0, 0, 0, 0.16);
  1516. border-radius: 0.9375rem 0px 0px 0.9375rem;
  1517. }
  1518. .icon-box .icon-button-right[data-v-374b2fee]:hover {
  1519. background: rgba(0, 0, 0, 0.16);
  1520. border-radius: 0px 0.9375rem 0.9375rem 0px;
  1521. }
  1522. .navbar-title[data-v-374b2fee] {
  1523. font-size: 1.125rem;
  1524. }
  1525. .tools-icon[data-v-374b2fee] {
  1526. font-size: 1.25rem;
  1527. }
  1528. .ui-navbar-box[data-v-374b2fee] {
  1529. background-color: transparent;
  1530. width: 100%;
  1531. }
  1532. .ui-navbar-box .ui-bar[data-v-374b2fee] {
  1533. position: relative;
  1534. z-index: 2;
  1535. white-space: nowrap;
  1536. display: flex;
  1537. position: relative;
  1538. align-items: center;
  1539. justify-content: space-between;
  1540. }
  1541. .ui-navbar-box .ui-bar .left[data-v-374b2fee] {
  1542. position: relative;
  1543. display: flex;
  1544. align-items: center;
  1545. justify-content: space-between;
  1546. }
  1547. .ui-navbar-box .ui-bar .left .back[data-v-374b2fee] {
  1548. position: relative;
  1549. display: flex;
  1550. align-items: center;
  1551. justify-content: space-between;
  1552. }
  1553. .ui-navbar-box .ui-bar .left .back .back-icon[data-v-374b2fee] {
  1554. display: flex;
  1555. align-items: center;
  1556. justify-content: center;
  1557. width: 1.75rem;
  1558. height: 1.75rem;
  1559. margin: 0 0.3125rem;
  1560. font-size: 1.4375rem !important;
  1561. }
  1562. .ui-navbar-box .ui-bar .left .back .back-icon.opacityIcon[data-v-374b2fee] {
  1563. position: relative;
  1564. border-radius: 50%;
  1565. background-color: rgba(127, 127, 127, 0.5);
  1566. }
  1567. .ui-navbar-box .ui-bar .left .back .back-icon.opacityIcon[data-v-374b2fee]::after {
  1568. content: "";
  1569. display: block;
  1570. position: absolute;
  1571. height: 200%;
  1572. width: 200%;
  1573. left: 0;
  1574. top: 0;
  1575. border-radius: inherit;
  1576. transform: scale(0.5);
  1577. transform-origin: 0 0;
  1578. opacity: 0.1;
  1579. border: 1px solid currentColor;
  1580. pointer-events: none;
  1581. }
  1582. .ui-navbar-box .ui-bar .left .back .back-icon.opacityIcon[data-v-374b2fee]::before {
  1583. transform: scale(0.9);
  1584. }
  1585. .ui-navbar-box .ui-bar .left .capsule[data-v-374b2fee] {
  1586. position: relative;
  1587. display: flex;
  1588. align-items: center;
  1589. justify-content: space-between;
  1590. border-radius: 100px;
  1591. position: relative;
  1592. }
  1593. .ui-navbar-box .ui-bar .left .capsule.dark[data-v-374b2fee] {
  1594. background-color: rgba(255, 255, 255, 0.5);
  1595. }
  1596. .ui-navbar-box .ui-bar .left .capsule.light[data-v-374b2fee] {
  1597. background-color: rgba(0, 0, 0, 0.15);
  1598. }
  1599. .ui-navbar-box .ui-bar .left .capsule[data-v-374b2fee]::after {
  1600. content: "";
  1601. display: block;
  1602. position: absolute;
  1603. height: 60%;
  1604. width: 1px;
  1605. left: 50%;
  1606. top: 20%;
  1607. background-color: currentColor;
  1608. opacity: 0.1;
  1609. pointer-events: none;
  1610. }
  1611. .ui-navbar-box .ui-bar .left .capsule[data-v-374b2fee]::before {
  1612. content: "";
  1613. display: block;
  1614. position: absolute;
  1615. height: 200%;
  1616. width: 200%;
  1617. left: 0;
  1618. top: 0;
  1619. border-radius: inherit;
  1620. transform: scale(0.5);
  1621. transform-origin: 0 0;
  1622. opacity: 0.1;
  1623. border: 1px solid currentColor;
  1624. pointer-events: none;
  1625. }
  1626. .ui-navbar-box .ui-bar .left .capsule .capsule-back[data-v-374b2fee],
  1627. .ui-navbar-box .ui-bar .left .capsule .capsule-home[data-v-374b2fee] {
  1628. display: flex;
  1629. align-items: center;
  1630. justify-content: center;
  1631. flex: 1;
  1632. }
  1633. .ui-navbar-box .ui-bar .left .capsule.isFristPage .capsule-back[data-v-374b2fee], .ui-navbar-box .ui-bar .left .capsule.isFristPage[data-v-374b2fee]::after {
  1634. display: none;
  1635. }
  1636. .ui-navbar-box .ui-bar .right[data-v-374b2fee] {
  1637. position: relative;
  1638. display: flex;
  1639. align-items: center;
  1640. justify-content: space-between;
  1641. }
  1642. .ui-navbar-box .ui-bar .right .right-content[data-v-374b2fee] {
  1643. display: flex;
  1644. flex-direction: row;
  1645. flex-direction: row-reverse;
  1646. }
  1647. .ui-navbar-box .ui-bar .center[data-v-374b2fee] {
  1648. display: flex;
  1649. align-items: center;
  1650. justify-content: center;
  1651. text-overflow: ellipsis;
  1652. position: absolute;
  1653. left: 50%;
  1654. transform: translateX(-50%);
  1655. }
  1656. .ui-navbar-box .ui-bar .center .image[data-v-374b2fee] {
  1657. display: block;
  1658. height: 36px;
  1659. max-width: calc(100vw - 200px);
  1660. }
  1661. .ui-navbar-box .ui-bar-bg[data-v-374b2fee] {
  1662. position: absolute;
  1663. width: 100%;
  1664. height: 100%;
  1665. top: 0;
  1666. z-index: 1;
  1667. pointer-events: none;
  1668. }
  1669. /**
  1670. * 这里是uni-app内置的常用样式变量
  1671. *
  1672. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1673. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1674. *
  1675. */
  1676. /**
  1677. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1678. *
  1679. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1680. */
  1681. /* 颜色变量 */
  1682. /* 行为相关颜色 */
  1683. /* 文字基本颜色 */
  1684. /* 背景颜色 */
  1685. /* 边框颜色 */
  1686. /* 尺寸变量 */
  1687. /* 文字尺寸 */
  1688. /* 图片尺寸 */
  1689. /* Border Radius */
  1690. /* 水平间距 */
  1691. /* 垂直间距 */
  1692. /* 透明度 */
  1693. /* 文章场景相关 */
  1694. .tabbar-center-item[data-v-a62e13d6] {
  1695. height: 40px;
  1696. width: 40px;
  1697. display: flex;
  1698. align-items: center;
  1699. justify-content: center;
  1700. border-radius: 50%;
  1701. background-color: rebeccapurple;
  1702. transform: scale(1.3) translateY(-6px);
  1703. position: absolute;
  1704. z-index: 2;
  1705. }
  1706. .tabbar-center-item .center-image[data-v-a62e13d6] {
  1707. width: 25px;
  1708. height: 25px;
  1709. }
  1710. .u-tabbar-item[data-v-a62e13d6] {
  1711. display: flex;
  1712. flex-direction: column;
  1713. align-items: center;
  1714. justify-content: center;
  1715. flex: 1;
  1716. position: relative;
  1717. z-index: 1;
  1718. }
  1719. .u-tabbar-item__icon[data-v-a62e13d6] {
  1720. display: flex;
  1721. position: relative;
  1722. width: 4.6875rem;
  1723. justify-content: center;
  1724. }
  1725. .u-tabbar-item__text[data-v-a62e13d6] {
  1726. margin-top: 2px;
  1727. font-size: 12px;
  1728. color: var(--textSize);
  1729. }
  1730. /**
  1731. * 这里是uni-app内置的常用样式变量
  1732. *
  1733. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1734. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1735. *
  1736. */
  1737. /**
  1738. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1739. *
  1740. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1741. */
  1742. /* 颜色变量 */
  1743. /* 行为相关颜色 */
  1744. /* 文字基本颜色 */
  1745. /* 背景颜色 */
  1746. /* 边框颜色 */
  1747. /* 尺寸变量 */
  1748. /* 文字尺寸 */
  1749. /* 图片尺寸 */
  1750. /* Border Radius */
  1751. /* 水平间距 */
  1752. /* 垂直间距 */
  1753. /* 透明度 */
  1754. /* 文章场景相关 */
  1755. .u-tabbar[data-v-b5af0eb7] {
  1756. display: flex;
  1757. flex: 1;
  1758. justify-content: center;
  1759. }
  1760. .u-tabbar__content[data-v-b5af0eb7] {
  1761. display: flex;
  1762. flex-direction: column;
  1763. background-color: #fff;
  1764. box-shadow: 0px -2px 4px 0px rgba(51, 51, 51, 0.06);
  1765. }
  1766. .u-tabbar__content__item-wrapper[data-v-b5af0eb7] {
  1767. height: 50px;
  1768. display: flex;
  1769. justify-content: space-around;
  1770. align-items: center;
  1771. }
  1772. .u-tabbar .mid-tabbar[data-v-b5af0eb7] {
  1773. border-radius: 0.9375rem 0.9375rem 0 0;
  1774. }
  1775. .u-tabbar--fixed[data-v-b5af0eb7] {
  1776. position: fixed;
  1777. bottom: -1px;
  1778. left: 0;
  1779. right: 0;
  1780. }
  1781. /**
  1782. * 这里是uni-app内置的常用样式变量
  1783. *
  1784. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1785. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1786. *
  1787. */
  1788. /**
  1789. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1790. *
  1791. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1792. */
  1793. /* 颜色变量 */
  1794. /* 行为相关颜色 */
  1795. /* 文字基本颜色 */
  1796. /* 背景颜色 */
  1797. /* 边框颜色 */
  1798. /* 尺寸变量 */
  1799. /* 文字尺寸 */
  1800. /* 图片尺寸 */
  1801. /* Border Radius */
  1802. /* 水平间距 */
  1803. /* 垂直间距 */
  1804. /* 透明度 */
  1805. /* 文章场景相关 */
  1806. .u-page[data-v-434f93ee] {
  1807. padding: 0;
  1808. }
  1809. .u-page__item__title[data-v-434f93ee] {
  1810. color: var(--textSize);
  1811. background-color: #fff;
  1812. padding: 15px;
  1813. font-size: 15px;
  1814. }
  1815. .u-page__item__title__slot-title[data-v-434f93ee] {
  1816. color: var(--textSize);
  1817. font-size: 14px;
  1818. }
  1819. .u-page__item__slot-icon[data-v-434f93ee] {
  1820. width: 25px;
  1821. height: 25px;
  1822. }
  1823. /**
  1824. * 这里是uni-app内置的常用样式变量
  1825. *
  1826. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1827. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1828. *
  1829. */
  1830. /**
  1831. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1832. *
  1833. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1834. */
  1835. /* 颜色变量 */
  1836. /* 行为相关颜色 */
  1837. /* 文字基本颜色 */
  1838. /* 背景颜色 */
  1839. /* 边框颜色 */
  1840. /* 尺寸变量 */
  1841. /* 文字尺寸 */
  1842. /* 图片尺寸 */
  1843. /* Border Radius */
  1844. /* 水平间距 */
  1845. /* 垂直间距 */
  1846. /* 透明度 */
  1847. /* 文章场景相关 */
  1848. .close-icon[data-v-f2bacd7c] {
  1849. position: absolute;
  1850. left: 50%;
  1851. transform: translateX(-50%);
  1852. bottom: -2.5rem;
  1853. z-index: 100;
  1854. }
  1855. .uni-popup[data-v-f2bacd7c] {
  1856. position: fixed;
  1857. z-index: 99;
  1858. }
  1859. .uni-popup.top[data-v-f2bacd7c], .uni-popup.left[data-v-f2bacd7c], .uni-popup.right[data-v-f2bacd7c] {
  1860. top: 0;
  1861. }
  1862. .uni-popup .uni-popup__wrapper[data-v-f2bacd7c] {
  1863. display: block;
  1864. position: relative;
  1865. background: var(--f2bacd7c-backgroundImage) no-repeat;
  1866. background-size: 100% 100%;
  1867. /* iphonex 等安全区设置,底部安全区适配 */
  1868. }
  1869. .uni-popup .uni-popup__wrapper.left[data-v-f2bacd7c], .uni-popup .uni-popup__wrapper.right[data-v-f2bacd7c] {
  1870. padding-top: 0;
  1871. flex: 1;
  1872. }
  1873. .fixforpc-z-index[data-v-f2bacd7c] {
  1874. z-index: 999;
  1875. }
  1876. .fixforpc-top[data-v-f2bacd7c] {
  1877. top: 0;
  1878. }
  1879. /**
  1880. * 这里是uni-app内置的常用样式变量
  1881. *
  1882. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1883. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1884. *
  1885. */
  1886. /**
  1887. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1888. *
  1889. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1890. */
  1891. /* 颜色变量 */
  1892. /* 行为相关颜色 */
  1893. /* 文字基本颜色 */
  1894. /* 背景颜色 */
  1895. /* 边框颜色 */
  1896. /* 尺寸变量 */
  1897. /* 文字尺寸 */
  1898. /* 图片尺寸 */
  1899. /* Border Radius */
  1900. /* 水平间距 */
  1901. /* 垂直间距 */
  1902. /* 透明度 */
  1903. /* 文章场景相关 */
  1904. .model-box[data-v-bd9b951b] {
  1905. width: 16.25rem;
  1906. background: linear-gradient(177deg, #ff6000 0%, #fe832a 100%);
  1907. border-radius: 0.3125rem;
  1908. }
  1909. .model-box .cicon-check-round[data-v-bd9b951b] {
  1910. color: #fff;
  1911. }
  1912. .model-box .score-title[data-v-bd9b951b] {
  1913. font-size: 1.0625rem;
  1914. font-family: OPPOSANS;
  1915. font-weight: 500;
  1916. color: #fcff00;
  1917. }
  1918. .model-box .model-title[data-v-bd9b951b] {
  1919. font-weight: 500;
  1920. color: #ffffff;
  1921. }
  1922. .model-box .model-bg[data-v-bd9b951b] {
  1923. width: 16.25rem;
  1924. height: 6.75rem;
  1925. background-size: 100% 100%;
  1926. background-image: var(--bd9b951b-headerBg);
  1927. background-repeat: no-repeat;
  1928. border-radius: 0 0 0.3125rem 0.3125rem;
  1929. }
  1930. .model-box .model-bg .title[data-v-bd9b951b] {
  1931. font-size: 1.0625rem;
  1932. font-weight: bold;
  1933. color: #ff6000;
  1934. }
  1935. .model-box .model-bg .subtitle[data-v-bd9b951b] {
  1936. font-size: 0.8125rem;
  1937. font-weight: 500;
  1938. color: #999999;
  1939. }
  1940. .model-box .model-bg .cancel-btn[data-v-bd9b951b] {
  1941. width: 6.875rem;
  1942. height: 2.1875rem;
  1943. border: 0.0625rem solid #ff6000;
  1944. border-radius: 1.09375rem;
  1945. font-size: 0.875rem;
  1946. font-weight: 500;
  1947. color: #ff6000;
  1948. line-height: normal;
  1949. margin-right: 0.3125rem;
  1950. }
  1951. .model-box .model-bg .confirm-btn[data-v-bd9b951b] {
  1952. width: 9.375rem;
  1953. height: 2.1875rem;
  1954. background: linear-gradient(90deg, #ff6000, #fe832a);
  1955. box-shadow: 0 0.2em 0.5em rgba(255, 96, 0, 0.4);
  1956. border-radius: 1.09375rem;
  1957. font-size: 0.875rem;
  1958. font-weight: 500;
  1959. color: #ffffff;
  1960. line-height: normal;
  1961. }
  1962. /**
  1963. * 这里是uni-app内置的常用样式变量
  1964. *
  1965. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  1966. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  1967. *
  1968. */
  1969. /**
  1970. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  1971. *
  1972. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  1973. */
  1974. /* 颜色变量 */
  1975. /* 行为相关颜色 */
  1976. /* 文字基本颜色 */
  1977. /* 背景颜色 */
  1978. /* 边框颜色 */
  1979. /* 尺寸变量 */
  1980. /* 文字尺寸 */
  1981. /* 图片尺寸 */
  1982. /* Border Radius */
  1983. /* 水平间距 */
  1984. /* 垂直间距 */
  1985. /* 透明度 */
  1986. /* 文章场景相关 */
  1987. .model-box[data-v-a1af371b] {
  1988. width: 16.25rem;
  1989. background: linear-gradient(177deg, #ff6000 0%, #fe832a 100%);
  1990. border-radius: 0.3125rem;
  1991. }
  1992. .model-box .cicon-check-round[data-v-a1af371b] {
  1993. font-size: 2.1875rem;
  1994. color: #fff;
  1995. }
  1996. .model-box .score-title[data-v-a1af371b] {
  1997. font-size: 1.0625rem;
  1998. font-family: OPPOSANS;
  1999. font-weight: 500;
  2000. color: #fcff00;
  2001. }
  2002. .model-box .model-title[data-v-a1af371b] {
  2003. font-size: 0.875rem;
  2004. font-weight: 500;
  2005. color: #ffffff;
  2006. }
  2007. .model-box .model-bg[data-v-a1af371b] {
  2008. width: 16.25rem;
  2009. height: 6.75rem;
  2010. background-size: 100% 100%;
  2011. background-image: var(--a1af371b-headerBg);
  2012. background-repeat: no-repeat;
  2013. border-radius: 0 0 0.3125rem 0.3125rem;
  2014. }
  2015. .model-box .model-bg .title[data-v-a1af371b] {
  2016. font-size: 1.0625rem;
  2017. font-weight: bold;
  2018. color: #ff6000;
  2019. }
  2020. .model-box .model-bg .subtitle[data-v-a1af371b] {
  2021. font-size: 0.8125rem;
  2022. font-weight: 500;
  2023. color: #999999;
  2024. }
  2025. .model-box .model-bg .cancel-btn[data-v-a1af371b] {
  2026. width: 6.875rem;
  2027. height: 2.1875rem;
  2028. border: 0.0625rem solid #ff6000;
  2029. border-radius: 1.09375rem;
  2030. font-size: 0.875rem;
  2031. font-weight: 500;
  2032. color: #ff6000;
  2033. line-height: normal;
  2034. margin-right: 0.3125rem;
  2035. }
  2036. .model-box .model-bg .confirm-btn[data-v-a1af371b] {
  2037. width: 9.375rem;
  2038. height: 2.1875rem;
  2039. background: linear-gradient(90deg, #ff6000, #fe832a);
  2040. box-shadow: 0 0.2em 0.5em rgba(255, 96, 0, 0.4);
  2041. border-radius: 1.09375rem;
  2042. font-size: 0.875rem;
  2043. font-weight: 500;
  2044. color: #ffffff;
  2045. line-height: normal;
  2046. }
  2047. /**
  2048. * 这里是uni-app内置的常用样式变量
  2049. *
  2050. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2051. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2052. *
  2053. */
  2054. /**
  2055. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2056. *
  2057. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2058. */
  2059. /* 颜色变量 */
  2060. /* 行为相关颜色 */
  2061. /* 文字基本颜色 */
  2062. /* 背景颜色 */
  2063. /* 边框颜色 */
  2064. /* 尺寸变量 */
  2065. /* 文字尺寸 */
  2066. /* 图片尺寸 */
  2067. /* Border Radius */
  2068. /* 水平间距 */
  2069. /* 垂直间距 */
  2070. /* 透明度 */
  2071. /* 文章场景相关 */
  2072. .hideCanvas[data-v-7b106c15] {
  2073. position: fixed;
  2074. top: -3124.96875rem;
  2075. left: -3124.96875rem;
  2076. z-index: -99999;
  2077. }
  2078. .login-wrap[data-v-7b106c15] {
  2079. padding: 1.5625rem 1.0625rem;
  2080. min-height: 15.625rem;
  2081. background-color: #fff;
  2082. border-radius: 0.625rem 0.625rem 0 0;
  2083. }
  2084. .head-box .head-title[data-v-7b106c15] {
  2085. min-width: 5rem;
  2086. font-size: 1.125rem;
  2087. font-weight: bold;
  2088. color: #333333;
  2089. line-height: 1.125rem;
  2090. }
  2091. .head-box .head-title-active[data-v-7b106c15] {
  2092. width: 5rem;
  2093. font-size: 1rem;
  2094. font-weight: 600;
  2095. color: #999;
  2096. line-height: 1.125rem;
  2097. }
  2098. .head-box .head-title-animation[data-v-7b106c15] {
  2099. animation-name: title-animation;
  2100. animation-duration: 0.1s;
  2101. animation-timing-function: ease-out;
  2102. animation-fill-mode: forwards;
  2103. }
  2104. .head-box .head-title-line[data-v-7b106c15] {
  2105. position: relative;
  2106. }
  2107. .head-box .head-title-line[data-v-7b106c15]::before {
  2108. content: "";
  2109. width: 0.03125rem;
  2110. height: 1.0625rem;
  2111. background-color: #e4e7ed;
  2112. position: absolute;
  2113. left: -0.9375rem;
  2114. top: 50%;
  2115. transform: translateY(-50%);
  2116. }
  2117. .head-box .head-subtitle[data-v-7b106c15] {
  2118. font-size: 0.8125rem;
  2119. font-weight: 400;
  2120. color: #afb6c0;
  2121. text-align: left;
  2122. display: flex;
  2123. }
  2124. /**
  2125. * 这里是uni-app内置的常用样式变量
  2126. *
  2127. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2128. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2129. *
  2130. */
  2131. /**
  2132. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2133. *
  2134. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2135. */
  2136. /* 颜色变量 */
  2137. /* 行为相关颜色 */
  2138. /* 文字基本颜色 */
  2139. /* 背景颜色 */
  2140. /* 边框颜色 */
  2141. /* 尺寸变量 */
  2142. /* 文字尺寸 */
  2143. /* 图片尺寸 */
  2144. /* Border Radius */
  2145. /* 水平间距 */
  2146. /* 垂直间距 */
  2147. /* 透明度 */
  2148. /* 文章场景相关 */
  2149. .uni-easyinput[data-v-09fd5285] {
  2150. width: 100%;
  2151. flex: 1;
  2152. position: relative;
  2153. text-align: left;
  2154. color: #333;
  2155. font-size: 14px;
  2156. }
  2157. .uni-easyinput__content[data-v-09fd5285] {
  2158. flex: 1;
  2159. width: 100%;
  2160. display: flex;
  2161. box-sizing: border-box;
  2162. min-height: 2.25rem;
  2163. flex-direction: row;
  2164. align-items: center;
  2165. }
  2166. .uni-easyinput__content-input[data-v-09fd5285] {
  2167. width: auto;
  2168. position: relative;
  2169. overflow: hidden;
  2170. flex: 1;
  2171. line-height: 1.75rem;
  2172. font-size: 0.875rem;
  2173. height: 1.75rem;
  2174. }
  2175. .uni-easyinput__placeholder-class[data-v-09fd5285] {
  2176. color: #bbbbbb;
  2177. font-size: 0.875rem;
  2178. font-weight: 400;
  2179. line-height: normal;
  2180. }
  2181. .is-textarea[data-v-09fd5285] {
  2182. align-items: flex-start;
  2183. }
  2184. .is-textarea-icon[data-v-09fd5285] {
  2185. margin-top: 5px;
  2186. }
  2187. .uni-easyinput__content-textarea[data-v-09fd5285] {
  2188. position: relative;
  2189. overflow: hidden;
  2190. flex: 1;
  2191. line-height: 1.5;
  2192. font-size: 14px;
  2193. padding-top: 6px;
  2194. padding-bottom: 10px;
  2195. height: 80px;
  2196. min-height: 80px;
  2197. width: auto;
  2198. }
  2199. .input-padding[data-v-09fd5285] {
  2200. padding-left: 10px;
  2201. }
  2202. .content-clear-icon[data-v-09fd5285] {
  2203. padding: 0 5px;
  2204. }
  2205. .label-icon[data-v-09fd5285] {
  2206. margin-right: 5px;
  2207. margin-top: -1px;
  2208. }
  2209. .is-input-border[data-v-09fd5285] {
  2210. display: flex;
  2211. box-sizing: border-box;
  2212. flex-direction: row;
  2213. align-items: center;
  2214. border: 1px solid #dcdfe6;
  2215. border-radius: 4px;
  2216. }
  2217. .uni-error-message[data-v-09fd5285] {
  2218. position: absolute;
  2219. bottom: -17px;
  2220. left: 0;
  2221. line-height: 12px;
  2222. color: #e43d33;
  2223. font-size: 12px;
  2224. text-align: left;
  2225. }
  2226. .uni-error-msg--boeder[data-v-09fd5285] {
  2227. position: relative;
  2228. bottom: 0;
  2229. line-height: 22px;
  2230. }
  2231. .is-input-error-border[data-v-09fd5285] {
  2232. border-color: #e43d33;
  2233. }
  2234. .uni-easyinput--border[data-v-09fd5285] {
  2235. margin-bottom: 0;
  2236. padding: 10px 15px;
  2237. border-top: 1px #eee solid;
  2238. }
  2239. .uni-easyinput-error[data-v-09fd5285] {
  2240. padding-bottom: 0;
  2241. }
  2242. .is-first-border[data-v-09fd5285] {
  2243. border: none;
  2244. }
  2245. .is-disabled[data-v-09fd5285] {
  2246. border-color: red;
  2247. color: #d5d5d5;
  2248. }
  2249. .is-disabled .uni-easyinput__placeholder-class[data-v-09fd5285] {
  2250. color: #d5d5d5;
  2251. font-size: 12px;
  2252. }
  2253. /**
  2254. * 这里是uni-app内置的常用样式变量
  2255. *
  2256. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2257. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2258. *
  2259. */
  2260. /**
  2261. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2262. *
  2263. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2264. */
  2265. /* 颜色变量 */
  2266. /* 行为相关颜色 */
  2267. /* 文字基本颜色 */
  2268. /* 背景颜色 */
  2269. /* 边框颜色 */
  2270. /* 尺寸变量 */
  2271. /* 文字尺寸 */
  2272. /* 图片尺寸 */
  2273. /* Border Radius */
  2274. /* 水平间距 */
  2275. /* 垂直间距 */
  2276. /* 透明度 */
  2277. /* 文章场景相关 */
  2278. .uni-forms-item[data-v-462874dd] {
  2279. position: relative;
  2280. padding: 0px;
  2281. text-align: left;
  2282. color: #333;
  2283. font-size: 14px;
  2284. }
  2285. .uni-forms-item__box[data-v-462874dd] {
  2286. position: relative;
  2287. }
  2288. .uni-forms-item__inner[data-v-462874dd] {
  2289. display: flex;
  2290. padding-bottom: 22px;
  2291. }
  2292. .is-direction-left[data-v-462874dd] {
  2293. flex-direction: row;
  2294. }
  2295. .is-direction-top[data-v-462874dd] {
  2296. flex-direction: column;
  2297. }
  2298. .uni-forms-item__label[data-v-462874dd] {
  2299. display: flex;
  2300. flex-shrink: 0;
  2301. box-sizing: border-box;
  2302. flex-direction: row;
  2303. align-items: center;
  2304. width: 65px;
  2305. padding: 5px 0;
  2306. height: 2.25rem;
  2307. }
  2308. .uni-forms-item__label .label-text[data-v-462874dd] {
  2309. font-size: 0.875rem;
  2310. color: #333333;
  2311. }
  2312. .uni-forms-item__label .label-seat[data-v-462874dd] {
  2313. margin-right: 5px;
  2314. }
  2315. .uni-forms-item__content[data-v-462874dd] {
  2316. width: 100%;
  2317. box-sizing: border-box;
  2318. min-height: 36px;
  2319. flex: 1;
  2320. }
  2321. .label-icon[data-v-462874dd] {
  2322. margin-right: 5px;
  2323. margin-top: -1px;
  2324. }
  2325. .is-required[data-v-462874dd] {
  2326. color: #dd524d;
  2327. font-weight: bold;
  2328. }
  2329. .uni-error-message[data-v-462874dd] {
  2330. position: absolute;
  2331. bottom: 0px;
  2332. left: 0;
  2333. text-align: left;
  2334. }
  2335. .uni-error-message-text[data-v-462874dd] {
  2336. line-height: 1.375rem;
  2337. color: #dd524d;
  2338. font-size: 0.75rem;
  2339. }
  2340. .uni-error-msg--boeder[data-v-462874dd] {
  2341. position: relative;
  2342. bottom: 0;
  2343. line-height: 22px;
  2344. }
  2345. .is-input-error-border[data-v-462874dd] {
  2346. border-color: #dd524d;
  2347. }
  2348. .uni-forms-item--border[data-v-462874dd] {
  2349. margin-bottom: 0;
  2350. padding: 10px 0;
  2351. border-top: 1px #eee solid;
  2352. }
  2353. .uni-forms-item--border .uni-forms-item__inner[data-v-462874dd] {
  2354. padding: 0;
  2355. }
  2356. .is-first-border[data-v-462874dd] {
  2357. border: none;
  2358. }
  2359. .uni-forms--no-padding[data-v-462874dd] {
  2360. padding: 0;
  2361. }
  2362. /**
  2363. * 这里是uni-app内置的常用样式变量
  2364. *
  2365. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2366. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2367. *
  2368. */
  2369. /**
  2370. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2371. *
  2372. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2373. */
  2374. /* 颜色变量 */
  2375. /* 行为相关颜色 */
  2376. /* 文字基本颜色 */
  2377. /* 背景颜色 */
  2378. /* 边框颜色 */
  2379. /* 尺寸变量 */
  2380. /* 文字尺寸 */
  2381. /* 图片尺寸 */
  2382. /* Border Radius */
  2383. /* 水平间距 */
  2384. /* 垂直间距 */
  2385. /* 透明度 */
  2386. /* 文章场景相关 */
  2387. /**
  2388. * 这里是uni-app内置的常用样式变量
  2389. *
  2390. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2391. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2392. *
  2393. */
  2394. /**
  2395. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2396. *
  2397. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2398. */
  2399. /* 颜色变量 */
  2400. /* 行为相关颜色 */
  2401. /* 文字基本颜色 */
  2402. /* 背景颜色 */
  2403. /* 边框颜色 */
  2404. /* 尺寸变量 */
  2405. /* 文字尺寸 */
  2406. /* 图片尺寸 */
  2407. /* Border Radius */
  2408. /* 水平间距 */
  2409. /* 垂直间距 */
  2410. /* 透明度 */
  2411. /* 文章场景相关 */
  2412. @keyframes title-animation-f21c903c {
  2413. 0% {
  2414. font-size: 1rem;
  2415. }
  2416. 100% {
  2417. font-size: 1.125rem;
  2418. }
  2419. }
  2420. .login-wrap[data-v-f21c903c] {
  2421. padding: 1.5625rem 1.0625rem;
  2422. min-height: 15.625rem;
  2423. background-color: #fff;
  2424. border-radius: 0.625rem 0.625rem 0 0;
  2425. }
  2426. .head-box .head-title[data-v-f21c903c] {
  2427. font-size: 1.125rem;
  2428. font-weight: bold;
  2429. color: #333333;
  2430. line-height: 1.125rem;
  2431. }
  2432. .head-box .head-title-active[data-v-f21c903c] {
  2433. font-size: 1rem;
  2434. font-weight: 600;
  2435. color: #999;
  2436. line-height: 1.125rem;
  2437. }
  2438. .head-box .head-title-animation[data-v-f21c903c] {
  2439. animation-name: title-animation-f21c903c;
  2440. animation-duration: 0.1s;
  2441. animation-timing-function: ease-out;
  2442. animation-fill-mode: forwards;
  2443. }
  2444. .head-box .head-title-line[data-v-f21c903c] {
  2445. position: relative;
  2446. }
  2447. .head-box .head-title-line[data-v-f21c903c]::before {
  2448. content: "";
  2449. width: 0.03125rem;
  2450. height: 1.0625rem;
  2451. background-color: #e4e7ed;
  2452. position: absolute;
  2453. left: -0.9375rem;
  2454. top: 50%;
  2455. transform: translateY(-50%);
  2456. }
  2457. .head-box .head-subtitle[data-v-f21c903c] {
  2458. font-size: 0.8125rem;
  2459. font-weight: 400;
  2460. color: #afb6c0;
  2461. text-align: left;
  2462. display: flex;
  2463. }
  2464. .code-btn-start[data-v-f21c903c] {
  2465. width: 5rem;
  2466. height: 1.75rem;
  2467. line-height: normal;
  2468. border: 0.0625rem solid var(--ui-BG-Main);
  2469. border-radius: 0.875rem;
  2470. font-size: 0.8125rem;
  2471. font-weight: 400;
  2472. color: var(--ui-BG-Main);
  2473. opacity: 1;
  2474. }
  2475. .forgot-btn[data-v-f21c903c] {
  2476. width: 5rem;
  2477. line-height: 1.75rem;
  2478. font-size: 0.9375rem;
  2479. font-weight: 500;
  2480. color: #999;
  2481. }
  2482. .login-btn-start[data-v-f21c903c] {
  2483. width: 4.9375rem;
  2484. height: 1.75rem;
  2485. line-height: normal;
  2486. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  2487. border-radius: 0.875rem;
  2488. font-size: 0.8125rem;
  2489. font-weight: 500;
  2490. color: #fff;
  2491. }
  2492. .type-btn[data-v-f21c903c] {
  2493. padding: 0.625rem;
  2494. margin: 1.25rem auto;
  2495. font-size: 0.9375rem;
  2496. font-weight: 500;
  2497. color: #999999;
  2498. }
  2499. .auto-login-box[data-v-f21c903c] {
  2500. width: 100%;
  2501. }
  2502. .auto-login-box .auto-login-btn[data-v-f21c903c] {
  2503. width: 2.125rem;
  2504. height: 2.125rem;
  2505. border-radius: 50%;
  2506. margin: 0 0.9375rem;
  2507. }
  2508. .auto-login-box .auto-login-img[data-v-f21c903c] {
  2509. width: 2.125rem;
  2510. height: 2.125rem;
  2511. border-radius: 50%;
  2512. }
  2513. .agreement-box[data-v-f21c903c] {
  2514. margin: 2.5rem auto 0;
  2515. }
  2516. .agreement-box .protocol-check[data-v-f21c903c] {
  2517. transform: scale(0.7);
  2518. }
  2519. .agreement-box .agreement-text[data-v-f21c903c] {
  2520. font-size: 0.8125rem;
  2521. font-weight: 500;
  2522. color: #999999;
  2523. }
  2524. .agreement-box .agreement-text .tcp-text[data-v-f21c903c] {
  2525. color: var(--ui-BG-Main);
  2526. }
  2527. .editPwd-btn-box .save-btn[data-v-f21c903c] {
  2528. width: 21.5625rem;
  2529. line-height: 2.1875rem;
  2530. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  2531. border-radius: 1.09375rem;
  2532. font-size: 0.875rem;
  2533. font-weight: 500;
  2534. color: #ffffff;
  2535. }
  2536. .editPwd-btn-box .forgot-btn[data-v-f21c903c] {
  2537. width: 21.5625rem;
  2538. line-height: 2.1875rem;
  2539. font-size: 0.875rem;
  2540. font-weight: 500;
  2541. color: #999999;
  2542. }
  2543. .login-btn-start[data-v-f21c903c] {
  2544. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  2545. width: 100%;
  2546. height: 2.5rem;
  2547. font-size: 1rem;
  2548. }
  2549. .loginUniForm[data-v-f21c903c] {
  2550. border: 0.03125rem solid #d6d6d6;
  2551. padding: 0.3125rem 0.46875rem;
  2552. border-radius: 0.3125rem;
  2553. }
  2554. .loginUniFormItem[data-v-f21c903c]:first-child {
  2555. border-bottom: 0.03125rem solid #d6d6d6;
  2556. padding-bottom: 0.3125rem;
  2557. }
  2558. .loginUniFormItem[data-v-f21c903c]:last-child {
  2559. padding-top: 0.3125rem;
  2560. }
  2561. [data-v-f21c903c] .loginUniFormItem .uni-forms-item__inner {
  2562. padding-bottom: 0;
  2563. }
  2564. [data-v-f21c903c] .loginUniFormItem .uni-error-message {
  2565. bottom: -0.625rem;
  2566. }
  2567. /**
  2568. * 这里是uni-app内置的常用样式变量
  2569. *
  2570. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2571. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2572. *
  2573. */
  2574. /**
  2575. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2576. *
  2577. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2578. */
  2579. /* 颜色变量 */
  2580. /* 行为相关颜色 */
  2581. /* 文字基本颜色 */
  2582. /* 背景颜色 */
  2583. /* 边框颜色 */
  2584. /* 尺寸变量 */
  2585. /* 文字尺寸 */
  2586. /* 图片尺寸 */
  2587. /* Border Radius */
  2588. /* 水平间距 */
  2589. /* 垂直间距 */
  2590. /* 透明度 */
  2591. /* 文章场景相关 */
  2592. @keyframes title-animation-5db53ad8 {
  2593. 0% {
  2594. font-size: 1rem;
  2595. }
  2596. 100% {
  2597. font-size: 1.125rem;
  2598. }
  2599. }
  2600. .login-wrap[data-v-5db53ad8] {
  2601. padding: 1.5625rem 1.0625rem;
  2602. min-height: 15.625rem;
  2603. background-color: #fff;
  2604. border-radius: 0.625rem 0.625rem 0 0;
  2605. }
  2606. .head-box .head-title[data-v-5db53ad8] {
  2607. font-size: 1.125rem;
  2608. font-weight: bold;
  2609. color: #333333;
  2610. line-height: 1.125rem;
  2611. }
  2612. .head-box .head-title-active[data-v-5db53ad8] {
  2613. font-size: 1rem;
  2614. font-weight: 600;
  2615. color: #999;
  2616. line-height: 1.125rem;
  2617. }
  2618. .head-box .head-title-animation[data-v-5db53ad8] {
  2619. animation-name: title-animation-5db53ad8;
  2620. animation-duration: 0.1s;
  2621. animation-timing-function: ease-out;
  2622. animation-fill-mode: forwards;
  2623. }
  2624. .head-box .head-title-line[data-v-5db53ad8] {
  2625. position: relative;
  2626. }
  2627. .head-box .head-title-line[data-v-5db53ad8]::before {
  2628. content: "";
  2629. width: 0.03125rem;
  2630. height: 1.0625rem;
  2631. background-color: #e4e7ed;
  2632. position: absolute;
  2633. left: -0.9375rem;
  2634. top: 50%;
  2635. transform: translateY(-50%);
  2636. }
  2637. .head-box .head-subtitle[data-v-5db53ad8] {
  2638. font-size: 0.8125rem;
  2639. font-weight: 400;
  2640. color: #afb6c0;
  2641. text-align: left;
  2642. display: flex;
  2643. }
  2644. .code-btn-start[data-v-5db53ad8] {
  2645. width: 5rem;
  2646. height: 1.75rem;
  2647. line-height: normal;
  2648. border: 0.0625rem solid var(--ui-BG-Main);
  2649. border-radius: 0.875rem;
  2650. font-size: 0.8125rem;
  2651. font-weight: 400;
  2652. color: var(--ui-BG-Main);
  2653. opacity: 1;
  2654. }
  2655. .forgot-btn[data-v-5db53ad8] {
  2656. width: 5rem;
  2657. line-height: 1.75rem;
  2658. font-size: 0.9375rem;
  2659. font-weight: 500;
  2660. color: #999;
  2661. }
  2662. .login-btn-start[data-v-5db53ad8] {
  2663. width: 4.9375rem;
  2664. height: 1.75rem;
  2665. line-height: normal;
  2666. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  2667. border-radius: 0.875rem;
  2668. font-size: 0.8125rem;
  2669. font-weight: 500;
  2670. color: #fff;
  2671. }
  2672. .type-btn[data-v-5db53ad8] {
  2673. padding: 0.625rem;
  2674. margin: 1.25rem auto;
  2675. font-size: 0.9375rem;
  2676. font-weight: 500;
  2677. color: #999999;
  2678. }
  2679. .auto-login-box[data-v-5db53ad8] {
  2680. width: 100%;
  2681. }
  2682. .auto-login-box .auto-login-btn[data-v-5db53ad8] {
  2683. width: 2.125rem;
  2684. height: 2.125rem;
  2685. border-radius: 50%;
  2686. margin: 0 0.9375rem;
  2687. }
  2688. .auto-login-box .auto-login-img[data-v-5db53ad8] {
  2689. width: 2.125rem;
  2690. height: 2.125rem;
  2691. border-radius: 50%;
  2692. }
  2693. .agreement-box[data-v-5db53ad8] {
  2694. margin: 2.5rem auto 0;
  2695. }
  2696. .agreement-box .protocol-check[data-v-5db53ad8] {
  2697. transform: scale(0.7);
  2698. }
  2699. .agreement-box .agreement-text[data-v-5db53ad8] {
  2700. font-size: 0.8125rem;
  2701. font-weight: 500;
  2702. color: #999999;
  2703. }
  2704. .agreement-box .agreement-text .tcp-text[data-v-5db53ad8] {
  2705. color: var(--ui-BG-Main);
  2706. }
  2707. .editPwd-btn-box .save-btn[data-v-5db53ad8] {
  2708. width: 21.5625rem;
  2709. line-height: 2.1875rem;
  2710. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  2711. border-radius: 1.09375rem;
  2712. font-size: 0.875rem;
  2713. font-weight: 500;
  2714. color: #ffffff;
  2715. }
  2716. .editPwd-btn-box .forgot-btn[data-v-5db53ad8] {
  2717. width: 21.5625rem;
  2718. line-height: 2.1875rem;
  2719. font-size: 0.875rem;
  2720. font-weight: 500;
  2721. color: #999999;
  2722. }
  2723. .code-btn-start[data-v-5db53ad8] {
  2724. color: var(--ui-BG-Main);
  2725. border: 1px solid var(--ui-BG-Main);
  2726. }
  2727. .disabled[data-v-5db53ad8] {
  2728. border: 1px solid #f7f7f7;
  2729. }
  2730. .loginUniForm[data-v-5db53ad8] {
  2731. border: 0.03125rem solid #d6d6d6;
  2732. padding: 0.3125rem 0.46875rem;
  2733. border-radius: 0.3125rem;
  2734. }
  2735. .loginUniFormItem[data-v-5db53ad8] {
  2736. border-bottom: 0.03125rem solid #d6d6d6;
  2737. padding-bottom: 0.3125rem;
  2738. }
  2739. .loginUniFormItem[data-v-5db53ad8]:last-child {
  2740. border-bottom: none;
  2741. padding-top: 0.3125rem;
  2742. }
  2743. [data-v-5db53ad8] .loginUniFormItem .uni-forms-item__inner {
  2744. padding-bottom: 0;
  2745. }
  2746. [data-v-5db53ad8] .loginUniFormItem .uni-error-message {
  2747. bottom: -0.625rem;
  2748. }
  2749. /**
  2750. * 这里是uni-app内置的常用样式变量
  2751. *
  2752. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2753. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2754. *
  2755. */
  2756. /**
  2757. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2758. *
  2759. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2760. */
  2761. /* 颜色变量 */
  2762. /* 行为相关颜色 */
  2763. /* 文字基本颜色 */
  2764. /* 背景颜色 */
  2765. /* 边框颜色 */
  2766. /* 尺寸变量 */
  2767. /* 文字尺寸 */
  2768. /* 图片尺寸 */
  2769. /* Border Radius */
  2770. /* 水平间距 */
  2771. /* 垂直间距 */
  2772. /* 透明度 */
  2773. /* 文章场景相关 */
  2774. @keyframes title-animation-7636e637 {
  2775. 0% {
  2776. font-size: 1rem;
  2777. }
  2778. 100% {
  2779. font-size: 1.125rem;
  2780. }
  2781. }
  2782. .login-wrap[data-v-7636e637] {
  2783. padding: 1.5625rem 1.0625rem;
  2784. min-height: 15.625rem;
  2785. background-color: #fff;
  2786. border-radius: 0.625rem 0.625rem 0 0;
  2787. }
  2788. .head-box .head-title[data-v-7636e637] {
  2789. font-size: 1.125rem;
  2790. font-weight: bold;
  2791. color: #333333;
  2792. line-height: 1.125rem;
  2793. }
  2794. .head-box .head-title-active[data-v-7636e637] {
  2795. font-size: 1rem;
  2796. font-weight: 600;
  2797. color: #999;
  2798. line-height: 1.125rem;
  2799. }
  2800. .head-box .head-title-animation[data-v-7636e637] {
  2801. animation-name: title-animation-7636e637;
  2802. animation-duration: 0.1s;
  2803. animation-timing-function: ease-out;
  2804. animation-fill-mode: forwards;
  2805. }
  2806. .head-box .head-title-line[data-v-7636e637] {
  2807. position: relative;
  2808. }
  2809. .head-box .head-title-line[data-v-7636e637]::before {
  2810. content: "";
  2811. width: 0.03125rem;
  2812. height: 1.0625rem;
  2813. background-color: #e4e7ed;
  2814. position: absolute;
  2815. left: -0.9375rem;
  2816. top: 50%;
  2817. transform: translateY(-50%);
  2818. }
  2819. .head-box .head-subtitle[data-v-7636e637] {
  2820. font-size: 0.8125rem;
  2821. font-weight: 400;
  2822. color: #afb6c0;
  2823. text-align: left;
  2824. display: flex;
  2825. }
  2826. .code-btn-start[data-v-7636e637] {
  2827. width: 5rem;
  2828. height: 1.75rem;
  2829. line-height: normal;
  2830. border: 0.0625rem solid var(--ui-BG-Main);
  2831. border-radius: 0.875rem;
  2832. font-size: 0.8125rem;
  2833. font-weight: 400;
  2834. color: var(--ui-BG-Main);
  2835. opacity: 1;
  2836. }
  2837. .forgot-btn[data-v-7636e637] {
  2838. width: 5rem;
  2839. line-height: 1.75rem;
  2840. font-size: 0.9375rem;
  2841. font-weight: 500;
  2842. color: #999;
  2843. }
  2844. .login-btn-start[data-v-7636e637] {
  2845. width: 4.9375rem;
  2846. height: 1.75rem;
  2847. line-height: normal;
  2848. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  2849. border-radius: 0.875rem;
  2850. font-size: 0.8125rem;
  2851. font-weight: 500;
  2852. color: #fff;
  2853. }
  2854. .type-btn[data-v-7636e637] {
  2855. padding: 0.625rem;
  2856. margin: 1.25rem auto;
  2857. font-size: 0.9375rem;
  2858. font-weight: 500;
  2859. color: #999999;
  2860. }
  2861. .auto-login-box[data-v-7636e637] {
  2862. width: 100%;
  2863. }
  2864. .auto-login-box .auto-login-btn[data-v-7636e637] {
  2865. width: 2.125rem;
  2866. height: 2.125rem;
  2867. border-radius: 50%;
  2868. margin: 0 0.9375rem;
  2869. }
  2870. .auto-login-box .auto-login-img[data-v-7636e637] {
  2871. width: 2.125rem;
  2872. height: 2.125rem;
  2873. border-radius: 50%;
  2874. }
  2875. .agreement-box[data-v-7636e637] {
  2876. margin: 2.5rem auto 0;
  2877. }
  2878. .agreement-box .protocol-check[data-v-7636e637] {
  2879. transform: scale(0.7);
  2880. }
  2881. .agreement-box .agreement-text[data-v-7636e637] {
  2882. font-size: 0.8125rem;
  2883. font-weight: 500;
  2884. color: #999999;
  2885. }
  2886. .agreement-box .agreement-text .tcp-text[data-v-7636e637] {
  2887. color: var(--ui-BG-Main);
  2888. }
  2889. .editPwd-btn-box .save-btn[data-v-7636e637] {
  2890. width: 21.5625rem;
  2891. line-height: 2.1875rem;
  2892. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  2893. border-radius: 1.09375rem;
  2894. font-size: 0.875rem;
  2895. font-weight: 500;
  2896. color: #ffffff;
  2897. }
  2898. .editPwd-btn-box .forgot-btn[data-v-7636e637] {
  2899. width: 21.5625rem;
  2900. line-height: 2.1875rem;
  2901. font-size: 0.875rem;
  2902. font-weight: 500;
  2903. color: #999999;
  2904. }
  2905. .disabled[data-v-7636e637] {
  2906. border: 1px solid #f7f7f7 !important;
  2907. }
  2908. .code-btn-start[data-v-7636e637] {
  2909. color: #55b774;
  2910. border: 1px solid #55b774;
  2911. }
  2912. .icon[data-v-7636e637] {
  2913. display: flex;
  2914. align-items: center;
  2915. margin-right: 0.21875rem;
  2916. }
  2917. .icon uni-image[data-v-7636e637] {
  2918. width: 1.09375rem;
  2919. height: 1.09375rem;
  2920. }
  2921. .agreement-box[data-v-7636e637] {
  2922. margin: 0.625rem 0;
  2923. }
  2924. .login-btn-start[data-v-7636e637] {
  2925. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  2926. width: 100%;
  2927. height: 2.5rem;
  2928. font-size: 1rem;
  2929. }
  2930. .loginUniForm[data-v-7636e637] {
  2931. border: 0.03125rem solid #d6d6d6;
  2932. padding: 0.3125rem 0.46875rem;
  2933. border-radius: 0.3125rem;
  2934. }
  2935. .loginUniFormItem[data-v-7636e637] {
  2936. border-bottom: 0.03125rem solid #d6d6d6;
  2937. padding-bottom: 0.3125rem;
  2938. }
  2939. .loginUniFormItem[data-v-7636e637]:last-child {
  2940. border-bottom: none;
  2941. padding-top: 0.3125rem;
  2942. }
  2943. [data-v-7636e637] .loginUniFormItem .uni-forms-item__inner {
  2944. padding-bottom: 0;
  2945. }
  2946. [data-v-7636e637] .loginUniFormItem .uni-error-message {
  2947. bottom: -0.625rem;
  2948. }
  2949. /**
  2950. * 这里是uni-app内置的常用样式变量
  2951. *
  2952. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  2953. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  2954. *
  2955. */
  2956. /**
  2957. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  2958. *
  2959. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  2960. */
  2961. /* 颜色变量 */
  2962. /* 行为相关颜色 */
  2963. /* 文字基本颜色 */
  2964. /* 背景颜色 */
  2965. /* 边框颜色 */
  2966. /* 尺寸变量 */
  2967. /* 文字尺寸 */
  2968. /* 图片尺寸 */
  2969. /* Border Radius */
  2970. /* 水平间距 */
  2971. /* 垂直间距 */
  2972. /* 透明度 */
  2973. /* 文章场景相关 */
  2974. @keyframes title-animation-5a48a10b {
  2975. 0% {
  2976. font-size: 1rem;
  2977. }
  2978. 100% {
  2979. font-size: 1.125rem;
  2980. }
  2981. }
  2982. .login-wrap[data-v-5a48a10b] {
  2983. padding: 1.5625rem 1.0625rem;
  2984. min-height: 15.625rem;
  2985. background-color: #fff;
  2986. border-radius: 0.625rem 0.625rem 0 0;
  2987. }
  2988. .head-box .head-title[data-v-5a48a10b] {
  2989. font-size: 1.125rem;
  2990. font-weight: bold;
  2991. color: #333333;
  2992. line-height: 1.125rem;
  2993. }
  2994. .head-box .head-title-active[data-v-5a48a10b] {
  2995. font-size: 1rem;
  2996. font-weight: 600;
  2997. color: #999;
  2998. line-height: 1.125rem;
  2999. }
  3000. .head-box .head-title-animation[data-v-5a48a10b] {
  3001. animation-name: title-animation-5a48a10b;
  3002. animation-duration: 0.1s;
  3003. animation-timing-function: ease-out;
  3004. animation-fill-mode: forwards;
  3005. }
  3006. .head-box .head-title-line[data-v-5a48a10b] {
  3007. position: relative;
  3008. }
  3009. .head-box .head-title-line[data-v-5a48a10b]::before {
  3010. content: "";
  3011. width: 0.03125rem;
  3012. height: 1.0625rem;
  3013. background-color: #e4e7ed;
  3014. position: absolute;
  3015. left: -0.9375rem;
  3016. top: 50%;
  3017. transform: translateY(-50%);
  3018. }
  3019. .head-box .head-subtitle[data-v-5a48a10b] {
  3020. font-size: 0.8125rem;
  3021. font-weight: 400;
  3022. color: #afb6c0;
  3023. text-align: left;
  3024. display: flex;
  3025. }
  3026. .code-btn-start[data-v-5a48a10b] {
  3027. width: 5rem;
  3028. height: 1.75rem;
  3029. line-height: normal;
  3030. border: 0.0625rem solid var(--ui-BG-Main);
  3031. border-radius: 0.875rem;
  3032. font-size: 0.8125rem;
  3033. font-weight: 400;
  3034. color: var(--ui-BG-Main);
  3035. opacity: 1;
  3036. }
  3037. .forgot-btn[data-v-5a48a10b] {
  3038. width: 5rem;
  3039. line-height: 1.75rem;
  3040. font-size: 0.9375rem;
  3041. font-weight: 500;
  3042. color: #999;
  3043. }
  3044. .login-btn-start[data-v-5a48a10b] {
  3045. width: 4.9375rem;
  3046. height: 1.75rem;
  3047. line-height: normal;
  3048. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3049. border-radius: 0.875rem;
  3050. font-size: 0.8125rem;
  3051. font-weight: 500;
  3052. color: #fff;
  3053. }
  3054. .type-btn[data-v-5a48a10b] {
  3055. padding: 0.625rem;
  3056. margin: 1.25rem auto;
  3057. font-size: 0.9375rem;
  3058. font-weight: 500;
  3059. color: #999999;
  3060. }
  3061. .auto-login-box[data-v-5a48a10b] {
  3062. width: 100%;
  3063. }
  3064. .auto-login-box .auto-login-btn[data-v-5a48a10b] {
  3065. width: 2.125rem;
  3066. height: 2.125rem;
  3067. border-radius: 50%;
  3068. margin: 0 0.9375rem;
  3069. }
  3070. .auto-login-box .auto-login-img[data-v-5a48a10b] {
  3071. width: 2.125rem;
  3072. height: 2.125rem;
  3073. border-radius: 50%;
  3074. }
  3075. .agreement-box[data-v-5a48a10b] {
  3076. margin: 2.5rem auto 0;
  3077. }
  3078. .agreement-box .protocol-check[data-v-5a48a10b] {
  3079. transform: scale(0.7);
  3080. }
  3081. .agreement-box .agreement-text[data-v-5a48a10b] {
  3082. font-size: 0.8125rem;
  3083. font-weight: 500;
  3084. color: #999999;
  3085. }
  3086. .agreement-box .agreement-text .tcp-text[data-v-5a48a10b] {
  3087. color: var(--ui-BG-Main);
  3088. }
  3089. .editPwd-btn-box .save-btn[data-v-5a48a10b] {
  3090. width: 21.5625rem;
  3091. line-height: 2.1875rem;
  3092. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3093. border-radius: 1.09375rem;
  3094. font-size: 0.875rem;
  3095. font-weight: 500;
  3096. color: #ffffff;
  3097. }
  3098. .editPwd-btn-box .forgot-btn[data-v-5a48a10b] {
  3099. width: 21.5625rem;
  3100. line-height: 2.1875rem;
  3101. font-size: 0.875rem;
  3102. font-weight: 500;
  3103. color: #999999;
  3104. }
  3105. .code-btn-start[data-v-5a48a10b] {
  3106. color: #55b774;
  3107. border: 1px solid #55b774;
  3108. }
  3109. .disabled[data-v-5a48a10b] {
  3110. border: 1px solid #f7f7f7;
  3111. }
  3112. .icon[data-v-5a48a10b] {
  3113. display: flex;
  3114. align-items: center;
  3115. margin-right: 0.21875rem;
  3116. }
  3117. .icon uni-image[data-v-5a48a10b] {
  3118. width: 1.09375rem;
  3119. height: 1.09375rem;
  3120. }
  3121. .agreement-box[data-v-5a48a10b] {
  3122. margin: 0.625rem 0;
  3123. }
  3124. .login-btn-start[data-v-5a48a10b] {
  3125. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3126. width: 100%;
  3127. height: 2.5rem;
  3128. font-size: 1rem;
  3129. }
  3130. .loginUniForm[data-v-5a48a10b] {
  3131. border: 0.03125rem solid #d6d6d6;
  3132. padding: 0.3125rem 0.46875rem;
  3133. border-radius: 0.3125rem;
  3134. }
  3135. .loginUniFormItem[data-v-5a48a10b] {
  3136. border-bottom: 0.03125rem solid #d6d6d6;
  3137. padding-bottom: 0.3125rem;
  3138. }
  3139. .loginUniFormItem[data-v-5a48a10b]:last-child {
  3140. border-bottom: none;
  3141. padding-top: 0.3125rem;
  3142. }
  3143. [data-v-5a48a10b] .loginUniFormItem .uni-forms-item__inner {
  3144. padding-bottom: 0;
  3145. }
  3146. [data-v-5a48a10b] .loginUniFormItem .uni-error-message {
  3147. bottom: -0.625rem;
  3148. }
  3149. /**
  3150. * 这里是uni-app内置的常用样式变量
  3151. *
  3152. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  3153. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  3154. *
  3155. */
  3156. /**
  3157. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  3158. *
  3159. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  3160. */
  3161. /* 颜色变量 */
  3162. /* 行为相关颜色 */
  3163. /* 文字基本颜色 */
  3164. /* 背景颜色 */
  3165. /* 边框颜色 */
  3166. /* 尺寸变量 */
  3167. /* 文字尺寸 */
  3168. /* 图片尺寸 */
  3169. /* Border Radius */
  3170. /* 水平间距 */
  3171. /* 垂直间距 */
  3172. /* 透明度 */
  3173. /* 文章场景相关 */
  3174. @keyframes title-animation-859b5179 {
  3175. 0% {
  3176. font-size: 1rem;
  3177. }
  3178. 100% {
  3179. font-size: 1.125rem;
  3180. }
  3181. }
  3182. .login-wrap[data-v-859b5179] {
  3183. padding: 1.5625rem 1.0625rem;
  3184. min-height: 15.625rem;
  3185. background-color: #fff;
  3186. border-radius: 0.625rem 0.625rem 0 0;
  3187. }
  3188. .head-box .head-title[data-v-859b5179] {
  3189. font-size: 1.125rem;
  3190. font-weight: bold;
  3191. color: #333333;
  3192. line-height: 1.125rem;
  3193. }
  3194. .head-box .head-title-active[data-v-859b5179] {
  3195. font-size: 1rem;
  3196. font-weight: 600;
  3197. color: #999;
  3198. line-height: 1.125rem;
  3199. }
  3200. .head-box .head-title-animation[data-v-859b5179] {
  3201. animation-name: title-animation-859b5179;
  3202. animation-duration: 0.1s;
  3203. animation-timing-function: ease-out;
  3204. animation-fill-mode: forwards;
  3205. }
  3206. .head-box .head-title-line[data-v-859b5179] {
  3207. position: relative;
  3208. }
  3209. .head-box .head-title-line[data-v-859b5179]::before {
  3210. content: "";
  3211. width: 0.03125rem;
  3212. height: 1.0625rem;
  3213. background-color: #e4e7ed;
  3214. position: absolute;
  3215. left: -0.9375rem;
  3216. top: 50%;
  3217. transform: translateY(-50%);
  3218. }
  3219. .head-box .head-subtitle[data-v-859b5179] {
  3220. font-size: 0.8125rem;
  3221. font-weight: 400;
  3222. color: #afb6c0;
  3223. text-align: left;
  3224. display: flex;
  3225. }
  3226. .code-btn-start[data-v-859b5179] {
  3227. width: 5rem;
  3228. height: 1.75rem;
  3229. line-height: normal;
  3230. border: 0.0625rem solid var(--ui-BG-Main);
  3231. border-radius: 0.875rem;
  3232. font-size: 0.8125rem;
  3233. font-weight: 400;
  3234. color: var(--ui-BG-Main);
  3235. opacity: 1;
  3236. }
  3237. .forgot-btn[data-v-859b5179] {
  3238. width: 5rem;
  3239. line-height: 1.75rem;
  3240. font-size: 0.9375rem;
  3241. font-weight: 500;
  3242. color: #999;
  3243. }
  3244. .login-btn-start[data-v-859b5179] {
  3245. width: 4.9375rem;
  3246. height: 1.75rem;
  3247. line-height: normal;
  3248. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3249. border-radius: 0.875rem;
  3250. font-size: 0.8125rem;
  3251. font-weight: 500;
  3252. color: #fff;
  3253. }
  3254. .type-btn[data-v-859b5179] {
  3255. padding: 0.625rem;
  3256. margin: 1.25rem auto;
  3257. font-size: 0.9375rem;
  3258. font-weight: 500;
  3259. color: #999999;
  3260. }
  3261. .auto-login-box[data-v-859b5179] {
  3262. width: 100%;
  3263. }
  3264. .auto-login-box .auto-login-btn[data-v-859b5179] {
  3265. width: 2.125rem;
  3266. height: 2.125rem;
  3267. border-radius: 50%;
  3268. margin: 0 0.9375rem;
  3269. }
  3270. .auto-login-box .auto-login-img[data-v-859b5179] {
  3271. width: 2.125rem;
  3272. height: 2.125rem;
  3273. border-radius: 50%;
  3274. }
  3275. .agreement-box[data-v-859b5179] {
  3276. margin: 2.5rem auto 0;
  3277. }
  3278. .agreement-box .protocol-check[data-v-859b5179] {
  3279. transform: scale(0.7);
  3280. }
  3281. .agreement-box .agreement-text[data-v-859b5179] {
  3282. font-size: 0.8125rem;
  3283. font-weight: 500;
  3284. color: #999999;
  3285. }
  3286. .agreement-box .agreement-text .tcp-text[data-v-859b5179] {
  3287. color: var(--ui-BG-Main);
  3288. }
  3289. .editPwd-btn-box .save-btn[data-v-859b5179] {
  3290. width: 21.5625rem;
  3291. line-height: 2.1875rem;
  3292. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3293. border-radius: 1.09375rem;
  3294. font-size: 0.875rem;
  3295. font-weight: 500;
  3296. color: #ffffff;
  3297. }
  3298. .editPwd-btn-box .forgot-btn[data-v-859b5179] {
  3299. width: 21.5625rem;
  3300. line-height: 2.1875rem;
  3301. font-size: 0.875rem;
  3302. font-weight: 500;
  3303. color: #999999;
  3304. }
  3305. /**
  3306. * 这里是uni-app内置的常用样式变量
  3307. *
  3308. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  3309. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  3310. *
  3311. */
  3312. /**
  3313. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  3314. *
  3315. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  3316. */
  3317. /* 颜色变量 */
  3318. /* 行为相关颜色 */
  3319. /* 文字基本颜色 */
  3320. /* 背景颜色 */
  3321. /* 边框颜色 */
  3322. /* 尺寸变量 */
  3323. /* 文字尺寸 */
  3324. /* 图片尺寸 */
  3325. /* Border Radius */
  3326. /* 水平间距 */
  3327. /* 垂直间距 */
  3328. /* 透明度 */
  3329. /* 文章场景相关 */
  3330. @keyframes title-animation-146b49fd {
  3331. 0% {
  3332. font-size: 1rem;
  3333. }
  3334. 100% {
  3335. font-size: 1.125rem;
  3336. }
  3337. }
  3338. .login-wrap[data-v-146b49fd] {
  3339. padding: 1.5625rem 1.0625rem;
  3340. min-height: 15.625rem;
  3341. background-color: #fff;
  3342. border-radius: 0.625rem 0.625rem 0 0;
  3343. }
  3344. .head-box .head-title[data-v-146b49fd] {
  3345. font-size: 1.125rem;
  3346. font-weight: bold;
  3347. color: #333333;
  3348. line-height: 1.125rem;
  3349. }
  3350. .head-box .head-title-active[data-v-146b49fd] {
  3351. font-size: 1rem;
  3352. font-weight: 600;
  3353. color: #999;
  3354. line-height: 1.125rem;
  3355. }
  3356. .head-box .head-title-animation[data-v-146b49fd] {
  3357. animation-name: title-animation-146b49fd;
  3358. animation-duration: 0.1s;
  3359. animation-timing-function: ease-out;
  3360. animation-fill-mode: forwards;
  3361. }
  3362. .head-box .head-title-line[data-v-146b49fd] {
  3363. position: relative;
  3364. }
  3365. .head-box .head-title-line[data-v-146b49fd]::before {
  3366. content: "";
  3367. width: 0.03125rem;
  3368. height: 1.0625rem;
  3369. background-color: #e4e7ed;
  3370. position: absolute;
  3371. left: -0.9375rem;
  3372. top: 50%;
  3373. transform: translateY(-50%);
  3374. }
  3375. .head-box .head-subtitle[data-v-146b49fd] {
  3376. font-size: 0.8125rem;
  3377. font-weight: 400;
  3378. color: #afb6c0;
  3379. text-align: left;
  3380. display: flex;
  3381. }
  3382. .code-btn-start[data-v-146b49fd] {
  3383. width: 5rem;
  3384. height: 1.75rem;
  3385. line-height: normal;
  3386. border: 0.0625rem solid var(--ui-BG-Main);
  3387. border-radius: 0.875rem;
  3388. font-size: 0.8125rem;
  3389. font-weight: 400;
  3390. color: var(--ui-BG-Main);
  3391. opacity: 1;
  3392. }
  3393. .forgot-btn[data-v-146b49fd] {
  3394. width: 5rem;
  3395. line-height: 1.75rem;
  3396. font-size: 0.9375rem;
  3397. font-weight: 500;
  3398. color: #999;
  3399. }
  3400. .login-btn-start[data-v-146b49fd] {
  3401. width: 4.9375rem;
  3402. height: 1.75rem;
  3403. line-height: normal;
  3404. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3405. border-radius: 0.875rem;
  3406. font-size: 0.8125rem;
  3407. font-weight: 500;
  3408. color: #fff;
  3409. }
  3410. .type-btn[data-v-146b49fd] {
  3411. padding: 0.625rem;
  3412. margin: 1.25rem auto;
  3413. font-size: 0.9375rem;
  3414. font-weight: 500;
  3415. color: #999999;
  3416. }
  3417. .auto-login-box[data-v-146b49fd] {
  3418. width: 100%;
  3419. }
  3420. .auto-login-box .auto-login-btn[data-v-146b49fd] {
  3421. width: 2.125rem;
  3422. height: 2.125rem;
  3423. border-radius: 50%;
  3424. margin: 0 0.9375rem;
  3425. }
  3426. .auto-login-box .auto-login-img[data-v-146b49fd] {
  3427. width: 2.125rem;
  3428. height: 2.125rem;
  3429. border-radius: 50%;
  3430. }
  3431. .agreement-box[data-v-146b49fd] {
  3432. margin: 2.5rem auto 0;
  3433. }
  3434. .agreement-box .protocol-check[data-v-146b49fd] {
  3435. transform: scale(0.7);
  3436. }
  3437. .agreement-box .agreement-text[data-v-146b49fd] {
  3438. font-size: 0.8125rem;
  3439. font-weight: 500;
  3440. color: #999999;
  3441. }
  3442. .agreement-box .agreement-text .tcp-text[data-v-146b49fd] {
  3443. color: var(--ui-BG-Main);
  3444. }
  3445. .editPwd-btn-box .save-btn[data-v-146b49fd] {
  3446. width: 21.5625rem;
  3447. line-height: 2.1875rem;
  3448. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3449. border-radius: 1.09375rem;
  3450. font-size: 0.875rem;
  3451. font-weight: 500;
  3452. color: #ffffff;
  3453. }
  3454. .editPwd-btn-box .forgot-btn[data-v-146b49fd] {
  3455. width: 21.5625rem;
  3456. line-height: 2.1875rem;
  3457. font-size: 0.875rem;
  3458. font-weight: 500;
  3459. color: #999999;
  3460. }
  3461. .login-btn-start[data-v-146b49fd] {
  3462. width: 100%;
  3463. height: 2.1875rem;
  3464. line-height: normal;
  3465. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3466. border-radius: 0.875rem;
  3467. font-size: 0.8125rem;
  3468. font-weight: 500;
  3469. color: #fff;
  3470. }
  3471. /**
  3472. * 这里是uni-app内置的常用样式变量
  3473. *
  3474. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  3475. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  3476. *
  3477. */
  3478. /**
  3479. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  3480. *
  3481. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  3482. */
  3483. /* 颜色变量 */
  3484. /* 行为相关颜色 */
  3485. /* 文字基本颜色 */
  3486. /* 背景颜色 */
  3487. /* 边框颜色 */
  3488. /* 尺寸变量 */
  3489. /* 文字尺寸 */
  3490. /* 图片尺寸 */
  3491. /* Border Radius */
  3492. /* 水平间距 */
  3493. /* 垂直间距 */
  3494. /* 透明度 */
  3495. /* 文章场景相关 */
  3496. @keyframes title-animation-639aa0c2 {
  3497. 0% {
  3498. font-size: 1rem;
  3499. }
  3500. 100% {
  3501. font-size: 1.125rem;
  3502. }
  3503. }
  3504. .login-wrap[data-v-639aa0c2] {
  3505. padding: 1.5625rem 1.0625rem;
  3506. min-height: 15.625rem;
  3507. background-color: #fff;
  3508. border-radius: 0.625rem 0.625rem 0 0;
  3509. }
  3510. .head-box .head-title[data-v-639aa0c2] {
  3511. font-size: 1.125rem;
  3512. font-weight: bold;
  3513. color: #333333;
  3514. line-height: 1.125rem;
  3515. }
  3516. .head-box .head-title-active[data-v-639aa0c2] {
  3517. font-size: 1rem;
  3518. font-weight: 600;
  3519. color: #999;
  3520. line-height: 1.125rem;
  3521. }
  3522. .head-box .head-title-animation[data-v-639aa0c2] {
  3523. animation-name: title-animation-639aa0c2;
  3524. animation-duration: 0.1s;
  3525. animation-timing-function: ease-out;
  3526. animation-fill-mode: forwards;
  3527. }
  3528. .head-box .head-title-line[data-v-639aa0c2] {
  3529. position: relative;
  3530. }
  3531. .head-box .head-title-line[data-v-639aa0c2]::before {
  3532. content: "";
  3533. width: 0.03125rem;
  3534. height: 1.0625rem;
  3535. background-color: #e4e7ed;
  3536. position: absolute;
  3537. left: -0.9375rem;
  3538. top: 50%;
  3539. transform: translateY(-50%);
  3540. }
  3541. .head-box .head-subtitle[data-v-639aa0c2] {
  3542. font-size: 0.8125rem;
  3543. font-weight: 400;
  3544. color: #afb6c0;
  3545. text-align: left;
  3546. display: flex;
  3547. }
  3548. .code-btn-start[data-v-639aa0c2] {
  3549. width: 5rem;
  3550. height: 1.75rem;
  3551. line-height: normal;
  3552. border: 0.0625rem solid var(--ui-BG-Main);
  3553. border-radius: 0.875rem;
  3554. font-size: 0.8125rem;
  3555. font-weight: 400;
  3556. color: var(--ui-BG-Main);
  3557. opacity: 1;
  3558. }
  3559. .forgot-btn[data-v-639aa0c2] {
  3560. width: 5rem;
  3561. line-height: 1.75rem;
  3562. font-size: 0.9375rem;
  3563. font-weight: 500;
  3564. color: #999;
  3565. }
  3566. .login-btn-start[data-v-639aa0c2] {
  3567. width: 4.9375rem;
  3568. height: 1.75rem;
  3569. line-height: normal;
  3570. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3571. border-radius: 0.875rem;
  3572. font-size: 0.8125rem;
  3573. font-weight: 500;
  3574. color: #fff;
  3575. }
  3576. .type-btn[data-v-639aa0c2] {
  3577. padding: 0.625rem;
  3578. margin: 1.25rem auto;
  3579. font-size: 0.9375rem;
  3580. font-weight: 500;
  3581. color: #999999;
  3582. }
  3583. .auto-login-box[data-v-639aa0c2] {
  3584. width: 100%;
  3585. }
  3586. .auto-login-box .auto-login-btn[data-v-639aa0c2] {
  3587. width: 2.125rem;
  3588. height: 2.125rem;
  3589. border-radius: 50%;
  3590. margin: 0 0.9375rem;
  3591. }
  3592. .auto-login-box .auto-login-img[data-v-639aa0c2] {
  3593. width: 2.125rem;
  3594. height: 2.125rem;
  3595. border-radius: 50%;
  3596. }
  3597. .agreement-box[data-v-639aa0c2] {
  3598. margin: 2.5rem auto 0;
  3599. }
  3600. .agreement-box .protocol-check[data-v-639aa0c2] {
  3601. transform: scale(0.7);
  3602. }
  3603. .agreement-box .agreement-text[data-v-639aa0c2] {
  3604. font-size: 0.8125rem;
  3605. font-weight: 500;
  3606. color: #999999;
  3607. }
  3608. .agreement-box .agreement-text .tcp-text[data-v-639aa0c2] {
  3609. color: var(--ui-BG-Main);
  3610. }
  3611. .editPwd-btn-box .save-btn[data-v-639aa0c2] {
  3612. width: 21.5625rem;
  3613. line-height: 2.1875rem;
  3614. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3615. border-radius: 1.09375rem;
  3616. font-size: 0.875rem;
  3617. font-weight: 500;
  3618. color: #ffffff;
  3619. }
  3620. .editPwd-btn-box .forgot-btn[data-v-639aa0c2] {
  3621. width: 21.5625rem;
  3622. line-height: 2.1875rem;
  3623. font-size: 0.875rem;
  3624. font-weight: 500;
  3625. color: #999999;
  3626. }
  3627. /**
  3628. * 这里是uni-app内置的常用样式变量
  3629. *
  3630. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  3631. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  3632. *
  3633. */
  3634. /**
  3635. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  3636. *
  3637. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  3638. */
  3639. /* 颜色变量 */
  3640. /* 行为相关颜色 */
  3641. /* 文字基本颜色 */
  3642. /* 背景颜色 */
  3643. /* 边框颜色 */
  3644. /* 尺寸变量 */
  3645. /* 文字尺寸 */
  3646. /* 图片尺寸 */
  3647. /* Border Radius */
  3648. /* 水平间距 */
  3649. /* 垂直间距 */
  3650. /* 透明度 */
  3651. /* 文章场景相关 */
  3652. @keyframes title-animation-bf1cb4c0 {
  3653. 0% {
  3654. font-size: 1rem;
  3655. }
  3656. 100% {
  3657. font-size: 1.125rem;
  3658. }
  3659. }
  3660. .login-wrap[data-v-bf1cb4c0] {
  3661. padding: 1.5625rem 1.0625rem;
  3662. min-height: 15.625rem;
  3663. background-color: #fff;
  3664. border-radius: 0.625rem 0.625rem 0 0;
  3665. }
  3666. .head-box .head-title[data-v-bf1cb4c0] {
  3667. font-size: 1.125rem;
  3668. font-weight: bold;
  3669. color: #333333;
  3670. line-height: 1.125rem;
  3671. }
  3672. .head-box .head-title-active[data-v-bf1cb4c0] {
  3673. font-size: 1rem;
  3674. font-weight: 600;
  3675. color: #999;
  3676. line-height: 1.125rem;
  3677. }
  3678. .head-box .head-title-animation[data-v-bf1cb4c0] {
  3679. animation-name: title-animation-bf1cb4c0;
  3680. animation-duration: 0.1s;
  3681. animation-timing-function: ease-out;
  3682. animation-fill-mode: forwards;
  3683. }
  3684. .head-box .head-title-line[data-v-bf1cb4c0] {
  3685. position: relative;
  3686. }
  3687. .head-box .head-title-line[data-v-bf1cb4c0]::before {
  3688. content: "";
  3689. width: 0.03125rem;
  3690. height: 1.0625rem;
  3691. background-color: #e4e7ed;
  3692. position: absolute;
  3693. left: -0.9375rem;
  3694. top: 50%;
  3695. transform: translateY(-50%);
  3696. }
  3697. .head-box .head-subtitle[data-v-bf1cb4c0] {
  3698. font-size: 0.8125rem;
  3699. font-weight: 400;
  3700. color: #afb6c0;
  3701. text-align: left;
  3702. display: flex;
  3703. }
  3704. .code-btn-start[data-v-bf1cb4c0] {
  3705. width: 5rem;
  3706. height: 1.75rem;
  3707. line-height: normal;
  3708. border: 0.0625rem solid var(--ui-BG-Main);
  3709. border-radius: 0.875rem;
  3710. font-size: 0.8125rem;
  3711. font-weight: 400;
  3712. color: var(--ui-BG-Main);
  3713. opacity: 1;
  3714. }
  3715. .forgot-btn[data-v-bf1cb4c0] {
  3716. width: 5rem;
  3717. line-height: 1.75rem;
  3718. font-size: 0.9375rem;
  3719. font-weight: 500;
  3720. color: #999;
  3721. }
  3722. .login-btn-start[data-v-bf1cb4c0] {
  3723. width: 4.9375rem;
  3724. height: 1.75rem;
  3725. line-height: normal;
  3726. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3727. border-radius: 0.875rem;
  3728. font-size: 0.8125rem;
  3729. font-weight: 500;
  3730. color: #fff;
  3731. }
  3732. .type-btn[data-v-bf1cb4c0] {
  3733. padding: 0.625rem;
  3734. margin: 1.25rem auto;
  3735. font-size: 0.9375rem;
  3736. font-weight: 500;
  3737. color: #999999;
  3738. }
  3739. .auto-login-box[data-v-bf1cb4c0] {
  3740. width: 100%;
  3741. }
  3742. .auto-login-box .auto-login-btn[data-v-bf1cb4c0] {
  3743. width: 2.125rem;
  3744. height: 2.125rem;
  3745. border-radius: 50%;
  3746. margin: 0 0.9375rem;
  3747. }
  3748. .auto-login-box .auto-login-img[data-v-bf1cb4c0] {
  3749. width: 2.125rem;
  3750. height: 2.125rem;
  3751. border-radius: 50%;
  3752. }
  3753. .agreement-box[data-v-bf1cb4c0] {
  3754. margin: 2.5rem auto 0;
  3755. }
  3756. .agreement-box .protocol-check[data-v-bf1cb4c0] {
  3757. transform: scale(0.7);
  3758. }
  3759. .agreement-box .agreement-text[data-v-bf1cb4c0] {
  3760. font-size: 0.8125rem;
  3761. font-weight: 500;
  3762. color: #999999;
  3763. }
  3764. .agreement-box .agreement-text .tcp-text[data-v-bf1cb4c0] {
  3765. color: var(--ui-BG-Main);
  3766. }
  3767. .editPwd-btn-box .save-btn[data-v-bf1cb4c0] {
  3768. width: 21.5625rem;
  3769. line-height: 2.1875rem;
  3770. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3771. border-radius: 1.09375rem;
  3772. font-size: 0.875rem;
  3773. font-weight: 500;
  3774. color: #ffffff;
  3775. }
  3776. .editPwd-btn-box .forgot-btn[data-v-bf1cb4c0] {
  3777. width: 21.5625rem;
  3778. line-height: 2.1875rem;
  3779. font-size: 0.875rem;
  3780. font-weight: 500;
  3781. color: #999999;
  3782. }
  3783. .foot-box[data-v-bf1cb4c0] {
  3784. width: 100%;
  3785. display: flex;
  3786. justify-content: center;
  3787. }
  3788. .authorization-btn[data-v-bf1cb4c0] {
  3789. width: 21.4375rem;
  3790. height: 2.5rem;
  3791. background-color: var(--ui-BG-Main);
  3792. border-radius: 1.25rem;
  3793. color: #fff;
  3794. }
  3795. .avatar-img[data-v-bf1cb4c0] {
  3796. width: 2.25rem;
  3797. height: 2.25rem;
  3798. border-radius: 1.125rem;
  3799. }
  3800. .cicon-forward[data-v-bf1cb4c0] {
  3801. font-size: 0.9375rem;
  3802. color: #595959;
  3803. }
  3804. .avatar-btn[data-v-bf1cb4c0] {
  3805. width: 100%;
  3806. justify-content: space-between;
  3807. }
  3808. /**
  3809. * 这里是uni-app内置的常用样式变量
  3810. *
  3811. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  3812. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  3813. *
  3814. */
  3815. /**
  3816. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  3817. *
  3818. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  3819. */
  3820. /* 颜色变量 */
  3821. /* 行为相关颜色 */
  3822. /* 文字基本颜色 */
  3823. /* 背景颜色 */
  3824. /* 边框颜色 */
  3825. /* 尺寸变量 */
  3826. /* 文字尺寸 */
  3827. /* 图片尺寸 */
  3828. /* Border Radius */
  3829. /* 水平间距 */
  3830. /* 垂直间距 */
  3831. /* 透明度 */
  3832. /* 文章场景相关 */
  3833. @keyframes title-animation-4de4e8c0 {
  3834. 0% {
  3835. font-size: 1rem;
  3836. }
  3837. 100% {
  3838. font-size: 1.125rem;
  3839. }
  3840. }
  3841. .login-wrap[data-v-4de4e8c0] {
  3842. padding: 1.5625rem 1.0625rem;
  3843. min-height: 15.625rem;
  3844. background-color: #fff;
  3845. border-radius: 0.625rem 0.625rem 0 0;
  3846. }
  3847. .head-box .head-title[data-v-4de4e8c0] {
  3848. font-size: 1.125rem;
  3849. font-weight: bold;
  3850. color: #333333;
  3851. line-height: 1.125rem;
  3852. }
  3853. .head-box .head-title-active[data-v-4de4e8c0] {
  3854. font-size: 1rem;
  3855. font-weight: 600;
  3856. color: #999;
  3857. line-height: 1.125rem;
  3858. }
  3859. .head-box .head-title-animation[data-v-4de4e8c0] {
  3860. animation-name: title-animation-4de4e8c0;
  3861. animation-duration: 0.1s;
  3862. animation-timing-function: ease-out;
  3863. animation-fill-mode: forwards;
  3864. }
  3865. .head-box .head-title-line[data-v-4de4e8c0] {
  3866. position: relative;
  3867. }
  3868. .head-box .head-title-line[data-v-4de4e8c0]::before {
  3869. content: "";
  3870. width: 0.03125rem;
  3871. height: 1.0625rem;
  3872. background-color: #e4e7ed;
  3873. position: absolute;
  3874. left: -0.9375rem;
  3875. top: 50%;
  3876. transform: translateY(-50%);
  3877. }
  3878. .head-box .head-subtitle[data-v-4de4e8c0] {
  3879. font-size: 0.8125rem;
  3880. font-weight: 400;
  3881. color: #afb6c0;
  3882. text-align: left;
  3883. display: flex;
  3884. }
  3885. .code-btn-start[data-v-4de4e8c0] {
  3886. width: 5rem;
  3887. height: 1.75rem;
  3888. line-height: normal;
  3889. border: 0.0625rem solid var(--ui-BG-Main);
  3890. border-radius: 0.875rem;
  3891. font-size: 0.8125rem;
  3892. font-weight: 400;
  3893. color: var(--ui-BG-Main);
  3894. opacity: 1;
  3895. }
  3896. .forgot-btn[data-v-4de4e8c0] {
  3897. width: 5rem;
  3898. line-height: 1.75rem;
  3899. font-size: 0.9375rem;
  3900. font-weight: 500;
  3901. color: #999;
  3902. }
  3903. .login-btn-start[data-v-4de4e8c0] {
  3904. width: 4.9375rem;
  3905. height: 1.75rem;
  3906. line-height: normal;
  3907. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3908. border-radius: 0.875rem;
  3909. font-size: 0.8125rem;
  3910. font-weight: 500;
  3911. color: #fff;
  3912. }
  3913. .type-btn[data-v-4de4e8c0] {
  3914. padding: 0.625rem;
  3915. margin: 1.25rem auto;
  3916. font-size: 0.9375rem;
  3917. font-weight: 500;
  3918. color: #999999;
  3919. }
  3920. .auto-login-box[data-v-4de4e8c0] {
  3921. width: 100%;
  3922. }
  3923. .auto-login-box .auto-login-btn[data-v-4de4e8c0] {
  3924. width: 2.125rem;
  3925. height: 2.125rem;
  3926. border-radius: 50%;
  3927. margin: 0 0.9375rem;
  3928. }
  3929. .auto-login-box .auto-login-img[data-v-4de4e8c0] {
  3930. width: 2.125rem;
  3931. height: 2.125rem;
  3932. border-radius: 50%;
  3933. }
  3934. .agreement-box[data-v-4de4e8c0] {
  3935. margin: 2.5rem auto 0;
  3936. }
  3937. .agreement-box .protocol-check[data-v-4de4e8c0] {
  3938. transform: scale(0.7);
  3939. }
  3940. .agreement-box .agreement-text[data-v-4de4e8c0] {
  3941. font-size: 0.8125rem;
  3942. font-weight: 500;
  3943. color: #999999;
  3944. }
  3945. .agreement-box .agreement-text .tcp-text[data-v-4de4e8c0] {
  3946. color: var(--ui-BG-Main);
  3947. }
  3948. .editPwd-btn-box .save-btn[data-v-4de4e8c0] {
  3949. width: 21.5625rem;
  3950. line-height: 2.1875rem;
  3951. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  3952. border-radius: 1.09375rem;
  3953. font-size: 0.875rem;
  3954. font-weight: 500;
  3955. color: #ffffff;
  3956. }
  3957. .editPwd-btn-box .forgot-btn[data-v-4de4e8c0] {
  3958. width: 21.5625rem;
  3959. line-height: 2.1875rem;
  3960. font-size: 0.875rem;
  3961. font-weight: 500;
  3962. color: #999999;
  3963. }
  3964. .code-btn-start[data-v-4de4e8c0] {
  3965. color: #55b774;
  3966. border: 1px solid #55b774;
  3967. }
  3968. .agreement-box[data-v-4de4e8c0] {
  3969. margin: 0.625rem 0;
  3970. }
  3971. .login-btn-start[data-v-4de4e8c0] {
  3972. background: #0e932e;
  3973. width: 100%;
  3974. height: 2.5rem;
  3975. font-size: 1rem;
  3976. }
  3977. .loginUniForm[data-v-4de4e8c0] {
  3978. border: 0.03125rem solid #d6d6d6;
  3979. padding: 0.3125rem 0.46875rem;
  3980. border-radius: 0.3125rem;
  3981. }
  3982. .loginUniFormItem[data-v-4de4e8c0]:first-child {
  3983. border-bottom: 0.03125rem solid #d6d6d6;
  3984. padding-bottom: 0.3125rem;
  3985. }
  3986. .loginUniFormItem[data-v-4de4e8c0]:last-child {
  3987. padding-top: 0.3125rem;
  3988. }
  3989. [data-v-4de4e8c0] .loginUniFormItem .uni-forms-item__inner {
  3990. padding-bottom: 0;
  3991. }
  3992. [data-v-4de4e8c0] .loginUniFormItem .uni-error-message {
  3993. bottom: -0.625rem;
  3994. }
  3995. /**
  3996. * 这里是uni-app内置的常用样式变量
  3997. *
  3998. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  3999. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  4000. *
  4001. */
  4002. /**
  4003. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  4004. *
  4005. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  4006. */
  4007. /* 颜色变量 */
  4008. /* 行为相关颜色 */
  4009. /* 文字基本颜色 */
  4010. /* 背景颜色 */
  4011. /* 边框颜色 */
  4012. /* 尺寸变量 */
  4013. /* 文字尺寸 */
  4014. /* 图片尺寸 */
  4015. /* Border Radius */
  4016. /* 水平间距 */
  4017. /* 垂直间距 */
  4018. /* 透明度 */
  4019. /* 文章场景相关 */
  4020. @keyframes title-animation-754d55b7 {
  4021. 0% {
  4022. font-size: 1rem;
  4023. }
  4024. 100% {
  4025. font-size: 1.125rem;
  4026. }
  4027. }
  4028. .login-wrap[data-v-754d55b7] {
  4029. padding: 1.5625rem 1.0625rem;
  4030. min-height: 15.625rem;
  4031. background-color: #fff;
  4032. border-radius: 0.625rem 0.625rem 0 0;
  4033. }
  4034. .head-box .head-title[data-v-754d55b7] {
  4035. font-size: 1.125rem;
  4036. font-weight: bold;
  4037. color: #333333;
  4038. line-height: 1.125rem;
  4039. }
  4040. .head-box .head-title-active[data-v-754d55b7] {
  4041. font-size: 1rem;
  4042. font-weight: 600;
  4043. color: #999;
  4044. line-height: 1.125rem;
  4045. }
  4046. .head-box .head-title-animation[data-v-754d55b7] {
  4047. animation-name: title-animation-754d55b7;
  4048. animation-duration: 0.1s;
  4049. animation-timing-function: ease-out;
  4050. animation-fill-mode: forwards;
  4051. }
  4052. .head-box .head-title-line[data-v-754d55b7] {
  4053. position: relative;
  4054. }
  4055. .head-box .head-title-line[data-v-754d55b7]::before {
  4056. content: "";
  4057. width: 0.03125rem;
  4058. height: 1.0625rem;
  4059. background-color: #e4e7ed;
  4060. position: absolute;
  4061. left: -0.9375rem;
  4062. top: 50%;
  4063. transform: translateY(-50%);
  4064. }
  4065. .head-box .head-subtitle[data-v-754d55b7] {
  4066. font-size: 0.8125rem;
  4067. font-weight: 400;
  4068. color: #afb6c0;
  4069. text-align: left;
  4070. display: flex;
  4071. }
  4072. .code-btn-start[data-v-754d55b7] {
  4073. width: 5rem;
  4074. height: 1.75rem;
  4075. line-height: normal;
  4076. border: 0.0625rem solid var(--ui-BG-Main);
  4077. border-radius: 0.875rem;
  4078. font-size: 0.8125rem;
  4079. font-weight: 400;
  4080. color: var(--ui-BG-Main);
  4081. opacity: 1;
  4082. }
  4083. .forgot-btn[data-v-754d55b7] {
  4084. width: 5rem;
  4085. line-height: 1.75rem;
  4086. font-size: 0.9375rem;
  4087. font-weight: 500;
  4088. color: #999;
  4089. }
  4090. .login-btn-start[data-v-754d55b7] {
  4091. width: 4.9375rem;
  4092. height: 1.75rem;
  4093. line-height: normal;
  4094. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  4095. border-radius: 0.875rem;
  4096. font-size: 0.8125rem;
  4097. font-weight: 500;
  4098. color: #fff;
  4099. }
  4100. .type-btn[data-v-754d55b7] {
  4101. padding: 0.625rem;
  4102. margin: 1.25rem auto;
  4103. font-size: 0.9375rem;
  4104. font-weight: 500;
  4105. color: #999999;
  4106. }
  4107. .auto-login-box[data-v-754d55b7] {
  4108. width: 100%;
  4109. }
  4110. .auto-login-box .auto-login-btn[data-v-754d55b7] {
  4111. width: 2.125rem;
  4112. height: 2.125rem;
  4113. border-radius: 50%;
  4114. margin: 0 0.9375rem;
  4115. }
  4116. .auto-login-box .auto-login-img[data-v-754d55b7] {
  4117. width: 2.125rem;
  4118. height: 2.125rem;
  4119. border-radius: 50%;
  4120. }
  4121. .agreement-box[data-v-754d55b7] {
  4122. margin: 2.5rem auto 0;
  4123. }
  4124. .agreement-box .protocol-check[data-v-754d55b7] {
  4125. transform: scale(0.7);
  4126. }
  4127. .agreement-box .agreement-text[data-v-754d55b7] {
  4128. font-size: 0.8125rem;
  4129. font-weight: 500;
  4130. color: #999999;
  4131. }
  4132. .agreement-box .agreement-text .tcp-text[data-v-754d55b7] {
  4133. color: var(--ui-BG-Main);
  4134. }
  4135. .editPwd-btn-box .save-btn[data-v-754d55b7] {
  4136. width: 21.5625rem;
  4137. line-height: 2.1875rem;
  4138. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  4139. border-radius: 1.09375rem;
  4140. font-size: 0.875rem;
  4141. font-weight: 500;
  4142. color: #ffffff;
  4143. }
  4144. .editPwd-btn-box .forgot-btn[data-v-754d55b7] {
  4145. width: 21.5625rem;
  4146. line-height: 2.1875rem;
  4147. font-size: 0.875rem;
  4148. font-weight: 500;
  4149. color: #999999;
  4150. }
  4151. .login-btn-start[data-v-754d55b7] {
  4152. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  4153. width: 100%;
  4154. height: 2.5rem;
  4155. font-size: 1rem;
  4156. }
  4157. .loginUniForm[data-v-754d55b7] {
  4158. border: 0.03125rem solid #d6d6d6;
  4159. padding: 0.3125rem 0.46875rem;
  4160. border-radius: 0.3125rem;
  4161. }
  4162. .loginUniFormItem[data-v-754d55b7]:first-child {
  4163. border-bottom: 0.03125rem solid #d6d6d6;
  4164. padding-bottom: 0.3125rem;
  4165. }
  4166. .loginUniFormItem[data-v-754d55b7]:last-child {
  4167. padding-top: 0.3125rem;
  4168. }
  4169. [data-v-754d55b7] .loginUniFormItem .uni-forms-item__inner {
  4170. padding-bottom: 0;
  4171. }
  4172. [data-v-754d55b7] .loginUniFormItem .uni-error-message {
  4173. bottom: -0.625rem;
  4174. }
  4175. /**
  4176. * 这里是uni-app内置的常用样式变量
  4177. *
  4178. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  4179. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  4180. *
  4181. */
  4182. /**
  4183. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  4184. *
  4185. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  4186. */
  4187. /* 颜色变量 */
  4188. /* 行为相关颜色 */
  4189. /* 文字基本颜色 */
  4190. /* 背景颜色 */
  4191. /* 边框颜色 */
  4192. /* 尺寸变量 */
  4193. /* 文字尺寸 */
  4194. /* 图片尺寸 */
  4195. /* Border Radius */
  4196. /* 水平间距 */
  4197. /* 垂直间距 */
  4198. /* 透明度 */
  4199. /* 文章场景相关 */
  4200. @keyframes title-animation-e0d6f1a0 {
  4201. 0% {
  4202. font-size: 1rem;
  4203. }
  4204. 100% {
  4205. font-size: 1.125rem;
  4206. }
  4207. }
  4208. .login-wrap[data-v-e0d6f1a0] {
  4209. padding: 1.5625rem 1.0625rem;
  4210. min-height: 15.625rem;
  4211. background-color: #fff;
  4212. border-radius: 0.625rem 0.625rem 0 0;
  4213. }
  4214. .head-box .head-title[data-v-e0d6f1a0] {
  4215. font-size: 1.125rem;
  4216. font-weight: bold;
  4217. color: #333333;
  4218. line-height: 1.125rem;
  4219. }
  4220. .head-box .head-title-active[data-v-e0d6f1a0] {
  4221. font-size: 1rem;
  4222. font-weight: 600;
  4223. color: #999;
  4224. line-height: 1.125rem;
  4225. }
  4226. .head-box .head-title-animation[data-v-e0d6f1a0] {
  4227. animation-name: title-animation-e0d6f1a0;
  4228. animation-duration: 0.1s;
  4229. animation-timing-function: ease-out;
  4230. animation-fill-mode: forwards;
  4231. }
  4232. .head-box .head-title-line[data-v-e0d6f1a0] {
  4233. position: relative;
  4234. }
  4235. .head-box .head-title-line[data-v-e0d6f1a0]::before {
  4236. content: "";
  4237. width: 0.03125rem;
  4238. height: 1.0625rem;
  4239. background-color: #e4e7ed;
  4240. position: absolute;
  4241. left: -0.9375rem;
  4242. top: 50%;
  4243. transform: translateY(-50%);
  4244. }
  4245. .head-box .head-subtitle[data-v-e0d6f1a0] {
  4246. font-size: 0.8125rem;
  4247. font-weight: 400;
  4248. color: #afb6c0;
  4249. text-align: left;
  4250. display: flex;
  4251. }
  4252. .code-btn-start[data-v-e0d6f1a0] {
  4253. width: 5rem;
  4254. height: 1.75rem;
  4255. line-height: normal;
  4256. border: 0.0625rem solid var(--ui-BG-Main);
  4257. border-radius: 0.875rem;
  4258. font-size: 0.8125rem;
  4259. font-weight: 400;
  4260. color: var(--ui-BG-Main);
  4261. opacity: 1;
  4262. }
  4263. .forgot-btn[data-v-e0d6f1a0] {
  4264. width: 5rem;
  4265. line-height: 1.75rem;
  4266. font-size: 0.9375rem;
  4267. font-weight: 500;
  4268. color: #999;
  4269. }
  4270. .login-btn-start[data-v-e0d6f1a0] {
  4271. width: 4.9375rem;
  4272. height: 1.75rem;
  4273. line-height: normal;
  4274. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  4275. border-radius: 0.875rem;
  4276. font-size: 0.8125rem;
  4277. font-weight: 500;
  4278. color: #fff;
  4279. }
  4280. .type-btn[data-v-e0d6f1a0] {
  4281. padding: 0.625rem;
  4282. margin: 1.25rem auto;
  4283. font-size: 0.9375rem;
  4284. font-weight: 500;
  4285. color: #999999;
  4286. }
  4287. .auto-login-box[data-v-e0d6f1a0] {
  4288. width: 100%;
  4289. }
  4290. .auto-login-box .auto-login-btn[data-v-e0d6f1a0] {
  4291. width: 2.125rem;
  4292. height: 2.125rem;
  4293. border-radius: 50%;
  4294. margin: 0 0.9375rem;
  4295. }
  4296. .auto-login-box .auto-login-img[data-v-e0d6f1a0] {
  4297. width: 2.125rem;
  4298. height: 2.125rem;
  4299. border-radius: 50%;
  4300. }
  4301. .agreement-box[data-v-e0d6f1a0] {
  4302. margin: 2.5rem auto 0;
  4303. }
  4304. .agreement-box .protocol-check[data-v-e0d6f1a0] {
  4305. transform: scale(0.7);
  4306. }
  4307. .agreement-box .agreement-text[data-v-e0d6f1a0] {
  4308. font-size: 0.8125rem;
  4309. font-weight: 500;
  4310. color: #999999;
  4311. }
  4312. .agreement-box .agreement-text .tcp-text[data-v-e0d6f1a0] {
  4313. color: var(--ui-BG-Main);
  4314. }
  4315. .editPwd-btn-box .save-btn[data-v-e0d6f1a0] {
  4316. width: 21.5625rem;
  4317. line-height: 2.1875rem;
  4318. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  4319. border-radius: 1.09375rem;
  4320. font-size: 0.875rem;
  4321. font-weight: 500;
  4322. color: #ffffff;
  4323. }
  4324. .editPwd-btn-box .forgot-btn[data-v-e0d6f1a0] {
  4325. width: 21.5625rem;
  4326. line-height: 2.1875rem;
  4327. font-size: 0.875rem;
  4328. font-weight: 500;
  4329. color: #999999;
  4330. }
  4331. .login-btn-start[data-v-e0d6f1a0] {
  4332. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  4333. width: 100%;
  4334. height: 2.5rem;
  4335. font-size: 1rem;
  4336. }
  4337. .loginUniForm[data-v-e0d6f1a0] {
  4338. border: 0.03125rem solid #d6d6d6;
  4339. padding: 0.3125rem 0.46875rem;
  4340. border-radius: 0.3125rem;
  4341. }
  4342. .loginUniFormItem[data-v-e0d6f1a0] {
  4343. border-bottom: 0.03125rem solid #d6d6d6;
  4344. padding-bottom: 0.3125rem;
  4345. }
  4346. .loginUniFormItem[data-v-e0d6f1a0]:last-child {
  4347. border-bottom: none;
  4348. padding-top: 0.3125rem;
  4349. }
  4350. [data-v-e0d6f1a0] .loginUniFormItem .uni-forms-item__inner {
  4351. padding-bottom: 0;
  4352. }
  4353. [data-v-e0d6f1a0] .loginUniFormItem .uni-error-message {
  4354. bottom: -0.625rem;
  4355. }
  4356. /**
  4357. * 这里是uni-app内置的常用样式变量
  4358. *
  4359. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  4360. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  4361. *
  4362. */
  4363. /**
  4364. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  4365. *
  4366. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  4367. */
  4368. /* 颜色变量 */
  4369. /* 行为相关颜色 */
  4370. /* 文字基本颜色 */
  4371. /* 背景颜色 */
  4372. /* 边框颜色 */
  4373. /* 尺寸变量 */
  4374. /* 文字尺寸 */
  4375. /* 图片尺寸 */
  4376. /* Border Radius */
  4377. /* 水平间距 */
  4378. /* 垂直间距 */
  4379. /* 透明度 */
  4380. /* 文章场景相关 */
  4381. @keyframes title-animation-21181321 {
  4382. 0% {
  4383. font-size: 1rem;
  4384. }
  4385. 100% {
  4386. font-size: 1.125rem;
  4387. }
  4388. }
  4389. .login-wrap[data-v-21181321] {
  4390. padding: 1.5625rem 1.0625rem;
  4391. min-height: 15.625rem;
  4392. background-color: #fff;
  4393. border-radius: 0.625rem 0.625rem 0 0;
  4394. }
  4395. .head-box .head-title[data-v-21181321] {
  4396. font-size: 1.125rem;
  4397. font-weight: bold;
  4398. color: #333333;
  4399. line-height: 1.125rem;
  4400. }
  4401. .head-box .head-title-active[data-v-21181321] {
  4402. font-size: 1rem;
  4403. font-weight: 600;
  4404. color: #999;
  4405. line-height: 1.125rem;
  4406. }
  4407. .head-box .head-title-animation[data-v-21181321] {
  4408. animation-name: title-animation-21181321;
  4409. animation-duration: 0.1s;
  4410. animation-timing-function: ease-out;
  4411. animation-fill-mode: forwards;
  4412. }
  4413. .head-box .head-title-line[data-v-21181321] {
  4414. position: relative;
  4415. }
  4416. .head-box .head-title-line[data-v-21181321]::before {
  4417. content: "";
  4418. width: 0.03125rem;
  4419. height: 1.0625rem;
  4420. background-color: #e4e7ed;
  4421. position: absolute;
  4422. left: -0.9375rem;
  4423. top: 50%;
  4424. transform: translateY(-50%);
  4425. }
  4426. .head-box .head-subtitle[data-v-21181321] {
  4427. font-size: 0.8125rem;
  4428. font-weight: 400;
  4429. color: #afb6c0;
  4430. text-align: left;
  4431. display: flex;
  4432. }
  4433. .code-btn-start[data-v-21181321] {
  4434. width: 5rem;
  4435. height: 1.75rem;
  4436. line-height: normal;
  4437. border: 0.0625rem solid var(--ui-BG-Main);
  4438. border-radius: 0.875rem;
  4439. font-size: 0.8125rem;
  4440. font-weight: 400;
  4441. color: var(--ui-BG-Main);
  4442. opacity: 1;
  4443. }
  4444. .forgot-btn[data-v-21181321] {
  4445. width: 5rem;
  4446. line-height: 1.75rem;
  4447. font-size: 0.9375rem;
  4448. font-weight: 500;
  4449. color: #999;
  4450. }
  4451. .login-btn-start[data-v-21181321] {
  4452. width: 4.9375rem;
  4453. height: 1.75rem;
  4454. line-height: normal;
  4455. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  4456. border-radius: 0.875rem;
  4457. font-size: 0.8125rem;
  4458. font-weight: 500;
  4459. color: #fff;
  4460. }
  4461. .type-btn[data-v-21181321] {
  4462. padding: 0.625rem;
  4463. margin: 1.25rem auto;
  4464. font-size: 0.9375rem;
  4465. font-weight: 500;
  4466. color: #999999;
  4467. }
  4468. .auto-login-box[data-v-21181321] {
  4469. width: 100%;
  4470. }
  4471. .auto-login-box .auto-login-btn[data-v-21181321] {
  4472. width: 2.125rem;
  4473. height: 2.125rem;
  4474. border-radius: 50%;
  4475. margin: 0 0.9375rem;
  4476. }
  4477. .auto-login-box .auto-login-img[data-v-21181321] {
  4478. width: 2.125rem;
  4479. height: 2.125rem;
  4480. border-radius: 50%;
  4481. }
  4482. .agreement-box[data-v-21181321] {
  4483. margin: 2.5rem auto 0;
  4484. }
  4485. .agreement-box .protocol-check[data-v-21181321] {
  4486. transform: scale(0.7);
  4487. }
  4488. .agreement-box .agreement-text[data-v-21181321] {
  4489. font-size: 0.8125rem;
  4490. font-weight: 500;
  4491. color: #999999;
  4492. }
  4493. .agreement-box .agreement-text .tcp-text[data-v-21181321] {
  4494. color: var(--ui-BG-Main);
  4495. }
  4496. .editPwd-btn-box .save-btn[data-v-21181321] {
  4497. width: 21.5625rem;
  4498. line-height: 2.1875rem;
  4499. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  4500. border-radius: 1.09375rem;
  4501. font-size: 0.875rem;
  4502. font-weight: 500;
  4503. color: #ffffff;
  4504. }
  4505. .editPwd-btn-box .forgot-btn[data-v-21181321] {
  4506. width: 21.5625rem;
  4507. line-height: 2.1875rem;
  4508. font-size: 0.875rem;
  4509. font-weight: 500;
  4510. color: #999999;
  4511. }
  4512. .shake[data-v-21181321] {
  4513. animation: shake-21181321 0.05s linear 4 alternate;
  4514. }
  4515. @keyframes shake-21181321 {
  4516. from {
  4517. transform: translateX(-0.3125rem);
  4518. }
  4519. to {
  4520. transform: translateX(0.3125rem);
  4521. }
  4522. }
  4523. .register-box[data-v-21181321] {
  4524. position: relative;
  4525. justify-content: center;
  4526. }
  4527. .register-box .register-btn[data-v-21181321] {
  4528. color: #999999;
  4529. font-size: 0.9375rem;
  4530. font-weight: 500;
  4531. }
  4532. .register-box .register-title[data-v-21181321] {
  4533. color: #999999;
  4534. font-size: 0.9375rem;
  4535. font-weight: 400;
  4536. margin-right: 0.75rem;
  4537. }
  4538. .register-box .or-title[data-v-21181321] {
  4539. margin: 0 0.5rem;
  4540. color: #999999;
  4541. font-size: 0.9375rem;
  4542. font-weight: 400;
  4543. }
  4544. .register-box .login-btn[data-v-21181321] {
  4545. color: var(--ui-BG-Main);
  4546. font-size: 0.9375rem;
  4547. font-weight: 500;
  4548. }
  4549. .register-box .circle[data-v-21181321] {
  4550. position: absolute;
  4551. right: 0;
  4552. top: 0.5625rem;
  4553. width: 0.25rem;
  4554. height: 0.25rem;
  4555. border-radius: 0.25rem;
  4556. background: var(--ui-BG-Main);
  4557. }
  4558. .safe-box[data-v-21181321] {
  4559. height: calc(constant(safe-area-inset-bottom) / 5 * 3);
  4560. height: calc(env(safe-area-inset-bottom) / 5 * 3);
  4561. }
  4562. .tcp-text[data-v-21181321] {
  4563. color: var(--ui-BG-Main);
  4564. }
  4565. .agreement-text[data-v-21181321] {
  4566. color: #999999;
  4567. }
  4568. .wx-login-btn[data-v-21181321] {
  4569. width: 100%;
  4570. border: 0.03125rem solid #55b774;
  4571. border-radius: 0.3125rem;
  4572. padding: 0.3125rem 0;
  4573. color: #333333;
  4574. display: flex;
  4575. align-items: center;
  4576. justify-content: center;
  4577. font-size: 1rem;
  4578. margin: 0 0 0.625rem 0;
  4579. box-sizing: border-box;
  4580. }
  4581. .wx-login-btn uni-text[data-v-21181321] {
  4582. margin-left: 0.625rem;
  4583. }
  4584. .agreement-box[data-v-21181321] {
  4585. margin: 1.25rem;
  4586. }
  4587. /**
  4588. * 这里是uni-app内置的常用样式变量
  4589. *
  4590. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  4591. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  4592. *
  4593. */
  4594. /**
  4595. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  4596. *
  4597. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  4598. */
  4599. /* 颜色变量 */
  4600. /* 行为相关颜色 */
  4601. /* 文字基本颜色 */
  4602. /* 背景颜色 */
  4603. /* 边框颜色 */
  4604. /* 尺寸变量 */
  4605. /* 文字尺寸 */
  4606. /* 图片尺寸 */
  4607. /* Border Radius */
  4608. /* 水平间距 */
  4609. /* 垂直间距 */
  4610. /* 透明度 */
  4611. /* 文章场景相关 */
  4612. .popup-box[data-v-199e8f1d] {
  4613. position: relative;
  4614. }
  4615. .poster-title[data-v-199e8f1d] {
  4616. color: #999;
  4617. }
  4618. .poster-btn-box[data-v-199e8f1d] {
  4619. width: 18.75rem;
  4620. position: absolute;
  4621. left: 50%;
  4622. transform: translateX(-50%);
  4623. bottom: -2.5rem;
  4624. }
  4625. .poster-btn-box .cancel-btn[data-v-199e8f1d] {
  4626. width: 8.75rem;
  4627. height: 2.1875rem;
  4628. line-height: 2.1875rem;
  4629. background: #ffffff;
  4630. border-radius: 1.09375rem;
  4631. font-size: 0.875rem;
  4632. font-weight: 500;
  4633. color: #999999;
  4634. }
  4635. .poster-btn-box .save-btn[data-v-199e8f1d] {
  4636. width: 8.75rem;
  4637. height: 2.1875rem;
  4638. line-height: 2.1875rem;
  4639. border-radius: 1.09375rem;
  4640. font-size: 0.875rem;
  4641. font-weight: 500;
  4642. }
  4643. .poster-img[data-v-199e8f1d] {
  4644. border-radius: 0.625rem;
  4645. }
  4646. .hideCanvas[data-v-199e8f1d] {
  4647. position: fixed;
  4648. top: -3124.96875rem;
  4649. left: -3124.96875rem;
  4650. z-index: -99999;
  4651. }
  4652. /**
  4653. * 这里是uni-app内置的常用样式变量
  4654. *
  4655. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  4656. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  4657. *
  4658. */
  4659. /**
  4660. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  4661. *
  4662. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  4663. */
  4664. /* 颜色变量 */
  4665. /* 行为相关颜色 */
  4666. /* 文字基本颜色 */
  4667. /* 背景颜色 */
  4668. /* 边框颜色 */
  4669. /* 尺寸变量 */
  4670. /* 文字尺寸 */
  4671. /* 图片尺寸 */
  4672. /* Border Radius */
  4673. /* 水平间距 */
  4674. /* 垂直间距 */
  4675. /* 透明度 */
  4676. /* 文章场景相关 */
  4677. .guide-image[data-v-a2a58660] {
  4678. right: 0.9375rem;
  4679. top: 0;
  4680. position: fixed;
  4681. width: 18.125rem;
  4682. height: 13.4375rem;
  4683. z-index: 10080;
  4684. }
  4685. .share-box[data-v-a2a58660] {
  4686. background: #ffffff;
  4687. width: 23.4375rem;
  4688. border-radius: 0.9375rem 0.9375rem 0 0;
  4689. padding-top: 0.9375rem;
  4690. }
  4691. .share-box .share-foot[data-v-a2a58660] {
  4692. font-size: 0.75rem;
  4693. color: #bbbbbb;
  4694. height: 2.5rem;
  4695. border-top: 0.03125rem solid #eeeeee;
  4696. }
  4697. .share-box .share-list-box .share-btn[data-v-a2a58660] {
  4698. background: none;
  4699. border: none;
  4700. line-height: 1;
  4701. padding: 0;
  4702. }
  4703. .share-box .share-list-box .share-btn[data-v-a2a58660]::after {
  4704. border: none;
  4705. }
  4706. .share-box .share-list-box .share-item[data-v-a2a58660] {
  4707. flex: 1;
  4708. padding-bottom: 0.625rem;
  4709. }
  4710. .share-box .share-list-box .share-item .share-img[data-v-a2a58660] {
  4711. width: 2.1875rem;
  4712. height: 2.1875rem;
  4713. background: #f8f9fa;
  4714. border-radius: 50%;
  4715. margin-bottom: 0.625rem;
  4716. }
  4717. .share-box .share-list-box .share-item .share-title[data-v-a2a58660] {
  4718. font-size: 0.75rem;
  4719. color: #666666;
  4720. }
  4721. /**
  4722. * 这里是uni-app内置的常用样式变量
  4723. *
  4724. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  4725. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  4726. *
  4727. */
  4728. /**
  4729. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  4730. *
  4731. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  4732. */
  4733. /* 颜色变量 */
  4734. /* 行为相关颜色 */
  4735. /* 文字基本颜色 */
  4736. /* 背景颜色 */
  4737. /* 边框颜色 */
  4738. /* 尺寸变量 */
  4739. /* 文字尺寸 */
  4740. /* 图片尺寸 */
  4741. /* Border Radius */
  4742. /* 水平间距 */
  4743. /* 垂直间距 */
  4744. /* 透明度 */
  4745. /* 文章场景相关 */
  4746. .tools-wrap .title[data-v-bbb37e35] {
  4747. font-size: 1.125rem;
  4748. font-weight: bold;
  4749. color: #333333;
  4750. }
  4751. .tools-wrap .list-item[data-v-bbb37e35] {
  4752. width: calc(25vw - 0.625rem);
  4753. }
  4754. .tools-wrap .list-item .list-image[data-v-bbb37e35] {
  4755. width: 3.25rem;
  4756. height: 3.25rem;
  4757. border-radius: 1.625rem;
  4758. background: var(--ui-BG);
  4759. }
  4760. .tools-wrap .list-item .list-image .list-icon[data-v-bbb37e35] {
  4761. width: 1.6875rem;
  4762. height: 1.6875rem;
  4763. }
  4764. .tools-wrap .list-item .list-title[data-v-bbb37e35] {
  4765. font-size: 0.8125rem;
  4766. font-weight: 500;
  4767. color: #333333;
  4768. }
  4769. .uni-popup[data-v-bbb37e35] {
  4770. top: 0 !important;
  4771. }
  4772. [data-v-bbb37e35] .button-hover {
  4773. background: #fafafa !important;
  4774. }
  4775. /**
  4776. * 这里是uni-app内置的常用样式变量
  4777. *
  4778. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  4779. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  4780. *
  4781. */
  4782. /**
  4783. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  4784. *
  4785. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  4786. */
  4787. /* 颜色变量 */
  4788. /* 行为相关颜色 */
  4789. /* 文字基本颜色 */
  4790. /* 背景颜色 */
  4791. /* 边框颜色 */
  4792. /* 尺寸变量 */
  4793. /* 文字尺寸 */
  4794. /* 图片尺寸 */
  4795. /* Border Radius */
  4796. /* 水平间距 */
  4797. /* 垂直间距 */
  4798. /* 透明度 */
  4799. /* 文章场景相关 */
  4800. .page-app[data-v-32d0115a] {
  4801. position: relative;
  4802. color: var(--ui-TC);
  4803. background-color: var(--ui-BG-1) !important;
  4804. z-index: 2;
  4805. display: flex;
  4806. width: 100%;
  4807. height: 100vh;
  4808. }
  4809. .page-app .page-main[data-v-32d0115a] {
  4810. position: absolute;
  4811. z-index: 1;
  4812. width: 100%;
  4813. min-height: 100%;
  4814. display: flex;
  4815. flex-direction: column;
  4816. background-color: var(--ui-BG-1) !important;
  4817. }
  4818. .page-app .page-main .page-body[data-v-32d0115a] {
  4819. width: 100%;
  4820. position: relative;
  4821. z-index: 1;
  4822. flex: 1;
  4823. }
  4824. .page-app .page-main .page-img[data-v-32d0115a] {
  4825. width: 100vw;
  4826. height: 100vh;
  4827. position: absolute;
  4828. top: 0;
  4829. left: 0;
  4830. z-index: 0;
  4831. }
  4832. /**
  4833. * 这里是uni-app内置的常用样式变量
  4834. *
  4835. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  4836. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  4837. *
  4838. */
  4839. /**
  4840. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  4841. *
  4842. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  4843. */
  4844. /* 颜色变量 */
  4845. /* 行为相关颜色 */
  4846. /* 文字基本颜色 */
  4847. /* 背景颜色 */
  4848. /* 边框颜色 */
  4849. /* 尺寸变量 */
  4850. /* 文字尺寸 */
  4851. /* 图片尺寸 */
  4852. /* Border Radius */
  4853. /* 水平间距 */
  4854. /* 垂直间距 */
  4855. /* 透明度 */
  4856. /* 文章场景相关 */
  4857. .cart-box .cart-header[data-v-28ee79e9] {
  4858. height: 2.1875rem;
  4859. background-color: #f6f6f6;
  4860. width: 100%;
  4861. position: fixed;
  4862. left: 0;
  4863. top: var(--28ee79e9-sys_navBar) rpx;
  4864. z-index: 1000;
  4865. box-sizing: border-box;
  4866. }
  4867. .cart-box .cart-footer[data-v-28ee79e9] {
  4868. height: 3.125rem;
  4869. background-color: #fff;
  4870. }
  4871. .cart-box .cart-footer .pay-btn[data-v-28ee79e9] {
  4872. height: 2.5rem;
  4873. line-height: 2.5rem;
  4874. border-radius: 1.25rem;
  4875. padding: 0 1.25rem;
  4876. min-width: 6.25rem;
  4877. }
  4878. .cart-box .cart-content[data-v-28ee79e9] {
  4879. width: 100%;
  4880. margin-top: 2.1875rem;
  4881. padding: 0 0.625rem;
  4882. box-sizing: border-box;
  4883. }
  4884. .cart-box .cart-content .goods-box[data-v-28ee79e9] {
  4885. background-color: #fff;
  4886. }
  4887. .cart-box .cart-content .goods-box[data-v-28ee79e9]:last-child {
  4888. margin-bottom: 1.25rem;
  4889. }