add.css 128 KB

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