log.css 119 KB

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