wallet.css 147 KB

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