detail.css 139 KB

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