list.css 123 KB

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