detail.css 144 KB

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