info.css 125 KB

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