list.css 132 KB

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