consumptionLog.css 125 KB

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