styles.css 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1360px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u141681_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u141681 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u141681 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u141681_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u141682_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u141682 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u141682 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u141682_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u141683 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u141684_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u141684 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u141684 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u141684_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u141685 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u141686_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u141686 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u141686 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u141686_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u141687_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u141687 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u141687 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u141687_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u141688 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u141689_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u141689 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u141689 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u141689_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u141690_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u141690 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u141690 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u141690_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u141691_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u141691 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u141691 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u141691_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u141692_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u141692 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u141692 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u141692_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u141693_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u141693 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u141693 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u141693_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u141694_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u141694 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u141694 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u141694_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u141695 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u141696_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u141696 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u141696 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u141696_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u141697_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u141697 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u141697 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u141697_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u141698 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u141699_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u141699 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u141699 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u141699_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u141700_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u141700 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u141700 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u141700_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u141701_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u141701 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u141701 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u141701_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u141702 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u141703_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u141703 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u141703 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u141703_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u141704_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u141704 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u141704 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u141704_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u141705 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u141706_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u141706 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u141706 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u141706_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u141707_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u141707 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u141707 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u141707_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u141708_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:40px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(215, 215, 215, 1);
  792. border-left:0px;
  793. border-top:0px;
  794. border-right:0px;
  795. border-radius:0px;
  796. border-bottom-right-radius:0px;
  797. border-bottom-left-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. }
  802. #u141708 {
  803. border-width:0px;
  804. position:absolute;
  805. left:29px;
  806. top:67px;
  807. width:375px;
  808. height:40px;
  809. display:flex;
  810. }
  811. #u141708 .text {
  812. position:absolute;
  813. align-self:center;
  814. padding:2px 2px 2px 2px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u141708_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. visibility:hidden;
  823. }
  824. #u141709_img {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:375px;
  830. height:44px;
  831. }
  832. #u141709 {
  833. border-width:0px;
  834. position:absolute;
  835. left:29px;
  836. top:24px;
  837. width:375px;
  838. height:44px;
  839. display:flex;
  840. }
  841. #u141709 .text {
  842. position:absolute;
  843. align-self:center;
  844. padding:2px 2px 2px 2px;
  845. box-sizing:border-box;
  846. width:100%;
  847. }
  848. #u141709_text {
  849. border-width:0px;
  850. word-wrap:break-word;
  851. text-transform:none;
  852. visibility:hidden;
  853. }
  854. #u141710 {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:0px;
  860. height:0px;
  861. }
  862. #u141711_div {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:88px;
  868. height:32px;
  869. background:inherit;
  870. background-color:rgba(255, 255, 255, 1);
  871. box-sizing:border-box;
  872. border-width:1px;
  873. border-style:solid;
  874. border-color:rgba(242, 242, 242, 1);
  875. border-radius:33px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. }
  880. #u141711 {
  881. border-width:0px;
  882. position:absolute;
  883. left:309px;
  884. top:71px;
  885. width:88px;
  886. height:32px;
  887. display:flex;
  888. }
  889. #u141711 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u141711_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u141712 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u141713_img {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:18px;
  916. height:18px;
  917. }
  918. #u141713 {
  919. border-width:0px;
  920. position:absolute;
  921. left:372px;
  922. top:78px;
  923. width:18px;
  924. height:18px;
  925. display:flex;
  926. }
  927. #u141713 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 2px 2px 2px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u141713_text {
  935. border-width:0px;
  936. word-wrap:break-word;
  937. text-transform:none;
  938. visibility:hidden;
  939. }
  940. #u141714_img {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:6px;
  946. height:6px;
  947. }
  948. #u141714 {
  949. border-width:0px;
  950. position:absolute;
  951. left:378px;
  952. top:84px;
  953. width:6px;
  954. height:6px;
  955. display:flex;
  956. }
  957. #u141714 .text {
  958. position:absolute;
  959. align-self:center;
  960. padding:2px 2px 2px 2px;
  961. box-sizing:border-box;
  962. width:100%;
  963. }
  964. #u141714_text {
  965. border-width:0px;
  966. word-wrap:break-word;
  967. text-transform:none;
  968. visibility:hidden;
  969. }
  970. #u141715 {
  971. border-width:0px;
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:0px;
  976. height:0px;
  977. }
  978. #u141716_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:5px;
  984. height:5px;
  985. }
  986. #u141716 {
  987. border-width:0px;
  988. position:absolute;
  989. left:323px;
  990. top:85px;
  991. width:5px;
  992. height:5px;
  993. display:flex;
  994. }
  995. #u141716 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:2px 2px 2px 2px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u141716_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. visibility:hidden;
  1007. }
  1008. #u141717_img {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:5px;
  1014. height:5px;
  1015. }
  1016. #u141717 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:339px;
  1020. top:85px;
  1021. width:5px;
  1022. height:5px;
  1023. display:flex;
  1024. }
  1025. #u141717 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u141717_text {
  1033. border-width:0px;
  1034. word-wrap:break-word;
  1035. text-transform:none;
  1036. visibility:hidden;
  1037. }
  1038. #u141718_img {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:7px;
  1044. height:7px;
  1045. }
  1046. #u141718 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:330px;
  1050. top:84px;
  1051. width:7px;
  1052. height:7px;
  1053. display:flex;
  1054. }
  1055. #u141718 .text {
  1056. position:absolute;
  1057. align-self:center;
  1058. padding:2px 2px 2px 2px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u141718_text {
  1063. border-width:0px;
  1064. word-wrap:break-word;
  1065. text-transform:none;
  1066. visibility:hidden;
  1067. }
  1068. #u141719_img {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:0px;
  1072. top:0px;
  1073. width:19px;
  1074. height:2px;
  1075. }
  1076. #u141719 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:347px;
  1080. top:87px;
  1081. width:18px;
  1082. height:1px;
  1083. display:flex;
  1084. -webkit-transform:rotate(90deg);
  1085. -moz-transform:rotate(90deg);
  1086. -ms-transform:rotate(90deg);
  1087. transform:rotate(90deg);
  1088. }
  1089. #u141719 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u141719_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u141720_div {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:65px;
  1108. height:22px;
  1109. background:inherit;
  1110. background-color:rgba(255, 255, 255, 0);
  1111. border:none;
  1112. border-radius:0px;
  1113. -moz-box-shadow:none;
  1114. -webkit-box-shadow:none;
  1115. box-shadow:none;
  1116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1117. font-weight:400;
  1118. font-style:normal;
  1119. font-size:16px;
  1120. color:#000000;
  1121. }
  1122. #u141720 {
  1123. border-width:0px;
  1124. position:absolute;
  1125. left:73px;
  1126. top:76px;
  1127. width:65px;
  1128. height:22px;
  1129. display:flex;
  1130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1131. font-weight:400;
  1132. font-style:normal;
  1133. font-size:16px;
  1134. color:#000000;
  1135. }
  1136. #u141720 .text {
  1137. position:absolute;
  1138. align-self:flex-start;
  1139. padding:0px 0px 0px 0px;
  1140. box-sizing:border-box;
  1141. width:100%;
  1142. }
  1143. #u141720_text {
  1144. border-width:0px;
  1145. white-space:nowrap;
  1146. text-transform:none;
  1147. }
  1148. #u141721_div {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:0px;
  1152. top:0px;
  1153. width:12px;
  1154. height:12px;
  1155. background:inherit;
  1156. background-color:rgba(255, 255, 255, 0);
  1157. box-sizing:border-box;
  1158. border-width:2px;
  1159. border-style:solid;
  1160. border-color:rgba(51, 51, 51, 1);
  1161. border-right:0px;
  1162. border-bottom:0px;
  1163. border-radius:0px;
  1164. border-top-right-radius:0px;
  1165. border-bottom-left-radius:0px;
  1166. -moz-box-shadow:none;
  1167. -webkit-box-shadow:none;
  1168. box-shadow:none;
  1169. }
  1170. #u141721 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:44px;
  1174. top:81px;
  1175. width:12px;
  1176. height:12px;
  1177. display:flex;
  1178. -webkit-transform:rotate(315deg);
  1179. -moz-transform:rotate(315deg);
  1180. -ms-transform:rotate(315deg);
  1181. transform:rotate(315deg);
  1182. }
  1183. #u141721 .text {
  1184. position:absolute;
  1185. align-self:center;
  1186. padding:2px 2px 2px 2px;
  1187. box-sizing:border-box;
  1188. width:100%;
  1189. }
  1190. #u141721_text {
  1191. border-width:0px;
  1192. word-wrap:break-word;
  1193. text-transform:none;
  1194. visibility:hidden;
  1195. }
  1196. #u141722_div {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:375px;
  1202. height:733px;
  1203. background:inherit;
  1204. background-color:rgba(242, 242, 242, 0.996078431372549);
  1205. border:none;
  1206. border-top:0px;
  1207. border-radius:21px;
  1208. border-top-left-radius:0px;
  1209. border-top-right-radius:0px;
  1210. -moz-box-shadow:none;
  1211. -webkit-box-shadow:none;
  1212. box-shadow:none;
  1213. }
  1214. #u141722 {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:29px;
  1218. top:107px;
  1219. width:375px;
  1220. height:733px;
  1221. display:flex;
  1222. }
  1223. #u141722 .text {
  1224. position:absolute;
  1225. align-self:center;
  1226. padding:2px 2px 2px 2px;
  1227. box-sizing:border-box;
  1228. width:100%;
  1229. }
  1230. #u141722_text {
  1231. border-width:0px;
  1232. word-wrap:break-word;
  1233. text-transform:none;
  1234. visibility:hidden;
  1235. }
  1236. #u141723 {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:0px;
  1242. height:0px;
  1243. }
  1244. #u141724_div {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:375px;
  1250. height:90px;
  1251. background:inherit;
  1252. background-color:rgba(255, 255, 255, 1);
  1253. border:none;
  1254. border-radius:4px;
  1255. -moz-box-shadow:none;
  1256. -webkit-box-shadow:none;
  1257. box-shadow:none;
  1258. }
  1259. #u141724 {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:29px;
  1263. top:215px;
  1264. width:375px;
  1265. height:90px;
  1266. display:flex;
  1267. }
  1268. #u141724 .text {
  1269. position:absolute;
  1270. align-self:center;
  1271. padding:2px 2px 2px 2px;
  1272. box-sizing:border-box;
  1273. width:100%;
  1274. }
  1275. #u141724_text {
  1276. border-width:0px;
  1277. word-wrap:break-word;
  1278. text-transform:none;
  1279. visibility:hidden;
  1280. }
  1281. #u141725_div {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:92px;
  1287. height:20px;
  1288. background:inherit;
  1289. background-color:rgba(255, 255, 255, 0);
  1290. border:none;
  1291. border-radius:0px;
  1292. -moz-box-shadow:none;
  1293. -webkit-box-shadow:none;
  1294. box-shadow:none;
  1295. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1296. font-weight:500;
  1297. font-style:normal;
  1298. color:#000000;
  1299. }
  1300. #u141725 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:43px;
  1304. top:228px;
  1305. width:92px;
  1306. height:20px;
  1307. display:flex;
  1308. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1309. font-weight:500;
  1310. font-style:normal;
  1311. color:#000000;
  1312. }
  1313. #u141725 .text {
  1314. position:absolute;
  1315. align-self:center;
  1316. padding:0px 0px 0px 0px;
  1317. box-sizing:border-box;
  1318. width:100%;
  1319. }
  1320. #u141725_text {
  1321. border-width:0px;
  1322. white-space:nowrap;
  1323. text-transform:none;
  1324. }
  1325. #u141726_div {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:0px;
  1329. top:0px;
  1330. width:41px;
  1331. height:14px;
  1332. background:inherit;
  1333. background-color:rgba(0, 191, 191, 0);
  1334. border:none;
  1335. border-left:0px;
  1336. border-top:0px;
  1337. border-right:0px;
  1338. border-radius:0px;
  1339. border-bottom-right-radius:0px;
  1340. border-bottom-left-radius:0px;
  1341. -moz-box-shadow:none;
  1342. -webkit-box-shadow:none;
  1343. box-shadow:none;
  1344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:10px;
  1348. color:#00BFBF;
  1349. }
  1350. #u141726 {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:142px;
  1354. top:231px;
  1355. width:41px;
  1356. height:14px;
  1357. display:flex;
  1358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1359. font-weight:400;
  1360. font-style:normal;
  1361. font-size:10px;
  1362. color:#00BFBF;
  1363. }
  1364. #u141726 .text {
  1365. position:absolute;
  1366. align-self:center;
  1367. padding:0px 0px 0px 0px;
  1368. box-sizing:border-box;
  1369. width:100%;
  1370. }
  1371. #u141726_text {
  1372. border-width:0px;
  1373. white-space:nowrap;
  1374. text-transform:none;
  1375. }
  1376. #u141727_div {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:0px;
  1380. top:0px;
  1381. width:140px;
  1382. height:40px;
  1383. background:inherit;
  1384. background-color:rgba(255, 255, 255, 0);
  1385. border:none;
  1386. border-radius:0px;
  1387. -moz-box-shadow:none;
  1388. -webkit-box-shadow:none;
  1389. box-shadow:none;
  1390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1391. font-weight:400;
  1392. font-style:normal;
  1393. font-size:12px;
  1394. color:#7F7F7F;
  1395. line-height:20px;
  1396. }
  1397. #u141727 {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:43px;
  1401. top:253px;
  1402. width:140px;
  1403. height:40px;
  1404. display:flex;
  1405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1406. font-weight:400;
  1407. font-style:normal;
  1408. font-size:12px;
  1409. color:#7F7F7F;
  1410. line-height:20px;
  1411. }
  1412. #u141727 .text {
  1413. position:absolute;
  1414. align-self:center;
  1415. padding:0px 0px 0px 0px;
  1416. box-sizing:border-box;
  1417. width:100%;
  1418. }
  1419. #u141727_text {
  1420. border-width:0px;
  1421. white-space:nowrap;
  1422. text-transform:none;
  1423. }
  1424. #u141728_div {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:0px;
  1428. top:0px;
  1429. width:62px;
  1430. height:30px;
  1431. background:inherit;
  1432. background-color:rgba(24, 144, 255, 1);
  1433. border:none;
  1434. border-radius:4px;
  1435. -moz-box-shadow:none;
  1436. -webkit-box-shadow:none;
  1437. box-shadow:none;
  1438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1439. font-weight:400;
  1440. font-style:normal;
  1441. font-size:12px;
  1442. color:#FFFFFF;
  1443. }
  1444. #u141728 {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:331px;
  1448. top:245px;
  1449. width:62px;
  1450. height:30px;
  1451. display:flex;
  1452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1453. font-weight:400;
  1454. font-style:normal;
  1455. font-size:12px;
  1456. color:#FFFFFF;
  1457. }
  1458. #u141728 .text {
  1459. position:absolute;
  1460. align-self:center;
  1461. padding:2px 2px 2px 2px;
  1462. box-sizing:border-box;
  1463. width:100%;
  1464. }
  1465. #u141728_text {
  1466. border-width:0px;
  1467. word-wrap:break-word;
  1468. text-transform:none;
  1469. }
  1470. #u141729 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u141730_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:375px;
  1484. height:101px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 1);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. }
  1493. #u141730 {
  1494. border-width:0px;
  1495. position:absolute;
  1496. left:29px;
  1497. top:107px;
  1498. width:375px;
  1499. height:101px;
  1500. display:flex;
  1501. }
  1502. #u141730 .text {
  1503. position:absolute;
  1504. align-self:center;
  1505. padding:2px 2px 2px 2px;
  1506. box-sizing:border-box;
  1507. width:100%;
  1508. }
  1509. #u141730_text {
  1510. border-width:0px;
  1511. word-wrap:break-word;
  1512. text-transform:none;
  1513. visibility:hidden;
  1514. }
  1515. #u141731 {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:0px;
  1519. top:0px;
  1520. width:0px;
  1521. height:0px;
  1522. }
  1523. #u141732_div {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:0px;
  1527. top:0px;
  1528. width:280px;
  1529. height:30px;
  1530. background:inherit;
  1531. background-color:rgba(242, 242, 242, 1);
  1532. border:none;
  1533. border-radius:20px;
  1534. -moz-box-shadow:none;
  1535. -webkit-box-shadow:none;
  1536. box-shadow:none;
  1537. }
  1538. #u141732 {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:42px;
  1542. top:122px;
  1543. width:280px;
  1544. height:30px;
  1545. display:flex;
  1546. }
  1547. #u141732 .text {
  1548. position:absolute;
  1549. align-self:center;
  1550. padding:2px 2px 2px 2px;
  1551. box-sizing:border-box;
  1552. width:100%;
  1553. }
  1554. #u141732_text {
  1555. border-width:0px;
  1556. word-wrap:break-word;
  1557. text-transform:none;
  1558. visibility:hidden;
  1559. }
  1560. #u141733_input {
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:260px;
  1565. height:25px;
  1566. padding:2px 2px 2px 2px;
  1567. font-family:'ArialMT', 'Arial', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:13px;
  1571. letter-spacing:normal;
  1572. color:#000000;
  1573. vertical-align:none;
  1574. text-align:left;
  1575. text-transform:none;
  1576. background-color:transparent;
  1577. border-color:transparent;
  1578. }
  1579. #u141733_input.disabled {
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:260px;
  1584. height:25px;
  1585. padding:2px 2px 2px 2px;
  1586. font-family:'ArialMT', 'Arial', sans-serif;
  1587. font-weight:400;
  1588. font-style:normal;
  1589. font-size:13px;
  1590. letter-spacing:normal;
  1591. color:#000000;
  1592. vertical-align:none;
  1593. text-align:left;
  1594. text-transform:none;
  1595. background-color:transparent;
  1596. border-color:transparent;
  1597. }
  1598. #u141733_div {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:0px;
  1602. top:0px;
  1603. width:260px;
  1604. height:25px;
  1605. background:inherit;
  1606. background-color:rgba(242, 242, 242, 1);
  1607. border:none;
  1608. border-radius:0px;
  1609. -moz-box-shadow:none;
  1610. -webkit-box-shadow:none;
  1611. box-shadow:none;
  1612. }
  1613. #u141733 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:51px;
  1617. top:123px;
  1618. width:260px;
  1619. height:25px;
  1620. display:flex;
  1621. }
  1622. #u141733 .text {
  1623. position:absolute;
  1624. align-self:center;
  1625. padding:2px 2px 2px 2px;
  1626. box-sizing:border-box;
  1627. width:100%;
  1628. }
  1629. #u141733_div.disabled {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:260px;
  1635. height:25px;
  1636. background:inherit;
  1637. background-color:rgba(240, 240, 240, 1);
  1638. border:none;
  1639. border-radius:0px;
  1640. -moz-box-shadow:none;
  1641. -webkit-box-shadow:none;
  1642. box-shadow:none;
  1643. }
  1644. #u141733.disabled {
  1645. }
  1646. #u141734_img {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:12px;
  1652. height:12px;
  1653. }
  1654. #u141734 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:303px;
  1658. top:131px;
  1659. width:12px;
  1660. height:12px;
  1661. display:flex;
  1662. }
  1663. #u141734 .text {
  1664. position:absolute;
  1665. align-self:center;
  1666. padding:2px 2px 2px 2px;
  1667. box-sizing:border-box;
  1668. width:100%;
  1669. }
  1670. #u141734_text {
  1671. border-width:0px;
  1672. word-wrap:break-word;
  1673. text-transform:none;
  1674. visibility:hidden;
  1675. }
  1676. #u141735_div {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:0px;
  1680. top:0px;
  1681. width:64px;
  1682. height:30px;
  1683. background:inherit;
  1684. background-color:rgba(255, 255, 255, 0);
  1685. border:none;
  1686. border-left:0px;
  1687. border-top:0px;
  1688. border-right:0px;
  1689. border-radius:0px;
  1690. border-bottom-right-radius:0px;
  1691. border-bottom-left-radius:0px;
  1692. -moz-box-shadow:none;
  1693. -webkit-box-shadow:none;
  1694. box-shadow:none;
  1695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1696. font-weight:400;
  1697. font-style:normal;
  1698. font-size:12px;
  1699. color:#1890FF;
  1700. line-height:30px;
  1701. }
  1702. #u141735 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:332px;
  1706. top:122px;
  1707. width:64px;
  1708. height:30px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1711. font-weight:400;
  1712. font-style:normal;
  1713. font-size:12px;
  1714. color:#1890FF;
  1715. line-height:30px;
  1716. }
  1717. #u141735 .text {
  1718. position:absolute;
  1719. align-self:flex-start;
  1720. padding:0px 0px 0px 0px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u141735_text {
  1725. border-width:0px;
  1726. white-space:nowrap;
  1727. text-transform:none;
  1728. }
  1729. #u141736_div {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:37px;
  1735. height:40px;
  1736. background:inherit;
  1737. background-color:rgba(255, 255, 255, 0);
  1738. border:none;
  1739. border-left:0px;
  1740. border-top:0px;
  1741. border-right:0px;
  1742. border-radius:0px;
  1743. border-bottom-right-radius:0px;
  1744. border-bottom-left-radius:0px;
  1745. -moz-box-shadow:none;
  1746. -webkit-box-shadow:none;
  1747. box-shadow:none;
  1748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1749. font-weight:400;
  1750. font-style:normal;
  1751. font-size:12px;
  1752. text-align:center;
  1753. }
  1754. #u141736 {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:110px;
  1758. top:168px;
  1759. width:37px;
  1760. height:40px;
  1761. display:flex;
  1762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:12px;
  1766. text-align:center;
  1767. }
  1768. #u141736 .text {
  1769. position:absolute;
  1770. align-self:center;
  1771. padding:0px 0px 0px 0px;
  1772. box-sizing:border-box;
  1773. width:100%;
  1774. }
  1775. #u141736_text {
  1776. border-width:0px;
  1777. white-space:nowrap;
  1778. text-transform:none;
  1779. }
  1780. #u141737_div {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:37px;
  1786. height:40px;
  1787. background:inherit;
  1788. background-color:rgba(255, 255, 255, 0);
  1789. border:none;
  1790. border-radius:0px;
  1791. -moz-box-shadow:none;
  1792. -webkit-box-shadow:none;
  1793. box-shadow:none;
  1794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:12px;
  1798. color:#000000;
  1799. text-align:center;
  1800. }
  1801. #u141737 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:176px;
  1805. top:168px;
  1806. width:37px;
  1807. height:40px;
  1808. display:flex;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:12px;
  1813. color:#000000;
  1814. text-align:center;
  1815. }
  1816. #u141737 .text {
  1817. position:absolute;
  1818. align-self:center;
  1819. padding:0px 0px 0px 0px;
  1820. box-sizing:border-box;
  1821. width:100%;
  1822. }
  1823. #u141737_text {
  1824. border-width:0px;
  1825. white-space:nowrap;
  1826. text-transform:none;
  1827. }
  1828. #u141738_div {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:37px;
  1834. height:40px;
  1835. background:inherit;
  1836. background-color:rgba(255, 255, 255, 0);
  1837. box-sizing:border-box;
  1838. border-width:2px;
  1839. border-style:solid;
  1840. border-color:rgba(24, 144, 255, 1);
  1841. border-left:0px;
  1842. border-top:0px;
  1843. border-right:0px;
  1844. border-radius:0px;
  1845. border-bottom-right-radius:0px;
  1846. border-bottom-left-radius:0px;
  1847. -moz-box-shadow:none;
  1848. -webkit-box-shadow:none;
  1849. box-shadow:none;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:12px;
  1854. color:#1890FF;
  1855. text-align:center;
  1856. }
  1857. #u141738 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:45px;
  1861. top:168px;
  1862. width:37px;
  1863. height:40px;
  1864. display:flex;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:12px;
  1869. color:#1890FF;
  1870. text-align:center;
  1871. }
  1872. #u141738 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:0px 0px 0px 0px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u141738_text {
  1880. border-width:0px;
  1881. white-space:nowrap;
  1882. text-transform:none;
  1883. }
  1884. #u141739 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:0px;
  1890. height:0px;
  1891. }
  1892. #u141740_div {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:375px;
  1898. height:90px;
  1899. background:inherit;
  1900. background-color:rgba(255, 255, 255, 1);
  1901. border:none;
  1902. border-radius:4px;
  1903. -moz-box-shadow:none;
  1904. -webkit-box-shadow:none;
  1905. box-shadow:none;
  1906. }
  1907. #u141740 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:29px;
  1911. top:306px;
  1912. width:375px;
  1913. height:90px;
  1914. display:flex;
  1915. }
  1916. #u141740 .text {
  1917. position:absolute;
  1918. align-self:center;
  1919. padding:2px 2px 2px 2px;
  1920. box-sizing:border-box;
  1921. width:100%;
  1922. }
  1923. #u141740_text {
  1924. border-width:0px;
  1925. word-wrap:break-word;
  1926. text-transform:none;
  1927. visibility:hidden;
  1928. }
  1929. #u141741_div {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:92px;
  1935. height:20px;
  1936. background:inherit;
  1937. background-color:rgba(255, 255, 255, 0);
  1938. border:none;
  1939. border-radius:0px;
  1940. -moz-box-shadow:none;
  1941. -webkit-box-shadow:none;
  1942. box-shadow:none;
  1943. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1944. font-weight:500;
  1945. font-style:normal;
  1946. color:#000000;
  1947. }
  1948. #u141741 {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:43px;
  1952. top:319px;
  1953. width:92px;
  1954. height:20px;
  1955. display:flex;
  1956. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1957. font-weight:500;
  1958. font-style:normal;
  1959. color:#000000;
  1960. }
  1961. #u141741 .text {
  1962. position:absolute;
  1963. align-self:center;
  1964. padding:0px 0px 0px 0px;
  1965. box-sizing:border-box;
  1966. width:100%;
  1967. }
  1968. #u141741_text {
  1969. border-width:0px;
  1970. white-space:nowrap;
  1971. text-transform:none;
  1972. }
  1973. #u141742_div {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:140px;
  1979. height:40px;
  1980. background:inherit;
  1981. background-color:rgba(255, 255, 255, 0);
  1982. border:none;
  1983. border-radius:0px;
  1984. -moz-box-shadow:none;
  1985. -webkit-box-shadow:none;
  1986. box-shadow:none;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:12px;
  1991. color:#7F7F7F;
  1992. line-height:20px;
  1993. }
  1994. #u141742 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:43px;
  1998. top:344px;
  1999. width:140px;
  2000. height:40px;
  2001. display:flex;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:12px;
  2006. color:#7F7F7F;
  2007. line-height:20px;
  2008. }
  2009. #u141742 .text {
  2010. position:absolute;
  2011. align-self:center;
  2012. padding:0px 0px 0px 0px;
  2013. box-sizing:border-box;
  2014. width:100%;
  2015. }
  2016. #u141742_text {
  2017. border-width:0px;
  2018. white-space:nowrap;
  2019. text-transform:none;
  2020. }
  2021. #u141743_div {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:41px;
  2027. height:14px;
  2028. background:inherit;
  2029. background-color:rgba(0, 191, 191, 0);
  2030. border:none;
  2031. border-left:0px;
  2032. border-top:0px;
  2033. border-right:0px;
  2034. border-radius:0px;
  2035. border-bottom-right-radius:0px;
  2036. border-bottom-left-radius:0px;
  2037. -moz-box-shadow:none;
  2038. -webkit-box-shadow:none;
  2039. box-shadow:none;
  2040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2041. font-weight:400;
  2042. font-style:normal;
  2043. font-size:10px;
  2044. color:#00BFBF;
  2045. }
  2046. #u141743 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:142px;
  2050. top:322px;
  2051. width:41px;
  2052. height:14px;
  2053. display:flex;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:10px;
  2058. color:#00BFBF;
  2059. }
  2060. #u141743 .text {
  2061. position:absolute;
  2062. align-self:center;
  2063. padding:0px 0px 0px 0px;
  2064. box-sizing:border-box;
  2065. width:100%;
  2066. }
  2067. #u141743_text {
  2068. border-width:0px;
  2069. white-space:nowrap;
  2070. text-transform:none;
  2071. }
  2072. #u141744_div {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:0px;
  2076. top:0px;
  2077. width:62px;
  2078. height:30px;
  2079. background:inherit;
  2080. background-color:rgba(24, 144, 255, 1);
  2081. border:none;
  2082. border-radius:4px;
  2083. -moz-box-shadow:none;
  2084. -webkit-box-shadow:none;
  2085. box-shadow:none;
  2086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2087. font-weight:400;
  2088. font-style:normal;
  2089. font-size:12px;
  2090. color:#FFFFFF;
  2091. }
  2092. #u141744 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:331px;
  2096. top:336px;
  2097. width:62px;
  2098. height:30px;
  2099. display:flex;
  2100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:12px;
  2104. color:#FFFFFF;
  2105. }
  2106. #u141744 .text {
  2107. position:absolute;
  2108. align-self:center;
  2109. padding:2px 2px 2px 2px;
  2110. box-sizing:border-box;
  2111. width:100%;
  2112. }
  2113. #u141744_text {
  2114. border-width:0px;
  2115. word-wrap:break-word;
  2116. text-transform:none;
  2117. }
  2118. #u141745 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:0px;
  2122. top:0px;
  2123. width:0px;
  2124. height:0px;
  2125. }
  2126. #u141746_div {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:375px;
  2132. height:90px;
  2133. background:inherit;
  2134. background-color:rgba(255, 255, 255, 1);
  2135. border:none;
  2136. border-radius:4px;
  2137. -moz-box-shadow:none;
  2138. -webkit-box-shadow:none;
  2139. box-shadow:none;
  2140. }
  2141. #u141746 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:29px;
  2145. top:397px;
  2146. width:375px;
  2147. height:90px;
  2148. display:flex;
  2149. }
  2150. #u141746 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:2px 2px 2px 2px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u141746_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. visibility:hidden;
  2162. }
  2163. #u141747_div {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:92px;
  2169. height:20px;
  2170. background:inherit;
  2171. background-color:rgba(255, 255, 255, 0);
  2172. border:none;
  2173. border-radius:0px;
  2174. -moz-box-shadow:none;
  2175. -webkit-box-shadow:none;
  2176. box-shadow:none;
  2177. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2178. font-weight:500;
  2179. font-style:normal;
  2180. color:#000000;
  2181. }
  2182. #u141747 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:43px;
  2186. top:410px;
  2187. width:92px;
  2188. height:20px;
  2189. display:flex;
  2190. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2191. font-weight:500;
  2192. font-style:normal;
  2193. color:#000000;
  2194. }
  2195. #u141747 .text {
  2196. position:absolute;
  2197. align-self:center;
  2198. padding:0px 0px 0px 0px;
  2199. box-sizing:border-box;
  2200. width:100%;
  2201. }
  2202. #u141747_text {
  2203. border-width:0px;
  2204. white-space:nowrap;
  2205. text-transform:none;
  2206. }
  2207. #u141748_div {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:140px;
  2213. height:40px;
  2214. background:inherit;
  2215. background-color:rgba(255, 255, 255, 0);
  2216. border:none;
  2217. border-radius:0px;
  2218. -moz-box-shadow:none;
  2219. -webkit-box-shadow:none;
  2220. box-shadow:none;
  2221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2222. font-weight:400;
  2223. font-style:normal;
  2224. font-size:12px;
  2225. color:#7F7F7F;
  2226. line-height:20px;
  2227. }
  2228. #u141748 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:43px;
  2232. top:435px;
  2233. width:140px;
  2234. height:40px;
  2235. display:flex;
  2236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2237. font-weight:400;
  2238. font-style:normal;
  2239. font-size:12px;
  2240. color:#7F7F7F;
  2241. line-height:20px;
  2242. }
  2243. #u141748 .text {
  2244. position:absolute;
  2245. align-self:center;
  2246. padding:0px 0px 0px 0px;
  2247. box-sizing:border-box;
  2248. width:100%;
  2249. }
  2250. #u141748_text {
  2251. border-width:0px;
  2252. white-space:nowrap;
  2253. text-transform:none;
  2254. }
  2255. #u141749_div {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:41px;
  2261. height:14px;
  2262. background:inherit;
  2263. background-color:rgba(0, 191, 191, 0);
  2264. border:none;
  2265. border-left:0px;
  2266. border-top:0px;
  2267. border-right:0px;
  2268. border-radius:0px;
  2269. border-bottom-right-radius:0px;
  2270. border-bottom-left-radius:0px;
  2271. -moz-box-shadow:none;
  2272. -webkit-box-shadow:none;
  2273. box-shadow:none;
  2274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2275. font-weight:400;
  2276. font-style:normal;
  2277. font-size:10px;
  2278. color:#00BFBF;
  2279. }
  2280. #u141749 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:142px;
  2284. top:413px;
  2285. width:41px;
  2286. height:14px;
  2287. display:flex;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:10px;
  2292. color:#00BFBF;
  2293. }
  2294. #u141749 .text {
  2295. position:absolute;
  2296. align-self:center;
  2297. padding:0px 0px 0px 0px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u141749_text {
  2302. border-width:0px;
  2303. white-space:nowrap;
  2304. text-transform:none;
  2305. }
  2306. #u141750_div {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:62px;
  2312. height:30px;
  2313. background:inherit;
  2314. background-color:rgba(24, 144, 255, 1);
  2315. border:none;
  2316. border-radius:4px;
  2317. -moz-box-shadow:none;
  2318. -webkit-box-shadow:none;
  2319. box-shadow:none;
  2320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2321. font-weight:400;
  2322. font-style:normal;
  2323. font-size:12px;
  2324. color:#FFFFFF;
  2325. }
  2326. #u141750 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:331px;
  2330. top:427px;
  2331. width:62px;
  2332. height:30px;
  2333. display:flex;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:12px;
  2338. color:#FFFFFF;
  2339. }
  2340. #u141750 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 2px 2px 2px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u141750_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. }
  2352. #u141752_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:433px;
  2358. height:865px;
  2359. }
  2360. #u141752 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:465px;
  2364. top:0px;
  2365. width:433px;
  2366. height:865px;
  2367. display:flex;
  2368. }
  2369. #u141752 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:2px 2px 2px 2px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u141752_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. visibility:hidden;
  2381. }
  2382. #u141753_div {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:375px;
  2388. height:40px;
  2389. background:inherit;
  2390. background-color:rgba(255, 255, 255, 1);
  2391. box-sizing:border-box;
  2392. border-width:1px;
  2393. border-style:solid;
  2394. border-color:rgba(215, 215, 215, 1);
  2395. border-left:0px;
  2396. border-top:0px;
  2397. border-right:0px;
  2398. border-radius:0px;
  2399. border-bottom-right-radius:0px;
  2400. border-bottom-left-radius:0px;
  2401. -moz-box-shadow:none;
  2402. -webkit-box-shadow:none;
  2403. box-shadow:none;
  2404. }
  2405. #u141753 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:494px;
  2409. top:67px;
  2410. width:375px;
  2411. height:40px;
  2412. display:flex;
  2413. }
  2414. #u141753 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 2px 2px 2px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u141753_text {
  2422. border-width:0px;
  2423. word-wrap:break-word;
  2424. text-transform:none;
  2425. visibility:hidden;
  2426. }
  2427. #u141754 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:0px;
  2431. top:0px;
  2432. width:0px;
  2433. height:0px;
  2434. }
  2435. #u141755_div {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:88px;
  2441. height:32px;
  2442. background:inherit;
  2443. background-color:rgba(255, 255, 255, 1);
  2444. box-sizing:border-box;
  2445. border-width:1px;
  2446. border-style:solid;
  2447. border-color:rgba(242, 242, 242, 1);
  2448. border-radius:33px;
  2449. -moz-box-shadow:none;
  2450. -webkit-box-shadow:none;
  2451. box-shadow:none;
  2452. }
  2453. #u141755 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:774px;
  2457. top:71px;
  2458. width:88px;
  2459. height:32px;
  2460. display:flex;
  2461. }
  2462. #u141755 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 2px 2px 2px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u141755_text {
  2470. border-width:0px;
  2471. word-wrap:break-word;
  2472. text-transform:none;
  2473. visibility:hidden;
  2474. }
  2475. #u141756 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:0px;
  2481. height:0px;
  2482. }
  2483. #u141757_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:18px;
  2489. height:18px;
  2490. }
  2491. #u141757 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:837px;
  2495. top:78px;
  2496. width:18px;
  2497. height:18px;
  2498. display:flex;
  2499. }
  2500. #u141757 .text {
  2501. position:absolute;
  2502. align-self:center;
  2503. padding:2px 2px 2px 2px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u141757_text {
  2508. border-width:0px;
  2509. word-wrap:break-word;
  2510. text-transform:none;
  2511. visibility:hidden;
  2512. }
  2513. #u141758_img {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:0px;
  2517. top:0px;
  2518. width:6px;
  2519. height:6px;
  2520. }
  2521. #u141758 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:843px;
  2525. top:84px;
  2526. width:6px;
  2527. height:6px;
  2528. display:flex;
  2529. }
  2530. #u141758 .text {
  2531. position:absolute;
  2532. align-self:center;
  2533. padding:2px 2px 2px 2px;
  2534. box-sizing:border-box;
  2535. width:100%;
  2536. }
  2537. #u141758_text {
  2538. border-width:0px;
  2539. word-wrap:break-word;
  2540. text-transform:none;
  2541. visibility:hidden;
  2542. }
  2543. #u141759 {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:0px;
  2549. height:0px;
  2550. }
  2551. #u141760_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:5px;
  2557. height:5px;
  2558. }
  2559. #u141760 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:788px;
  2563. top:85px;
  2564. width:5px;
  2565. height:5px;
  2566. display:flex;
  2567. }
  2568. #u141760 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:2px 2px 2px 2px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u141760_text {
  2576. border-width:0px;
  2577. word-wrap:break-word;
  2578. text-transform:none;
  2579. visibility:hidden;
  2580. }
  2581. #u141761_img {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:5px;
  2587. height:5px;
  2588. }
  2589. #u141761 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:804px;
  2593. top:85px;
  2594. width:5px;
  2595. height:5px;
  2596. display:flex;
  2597. }
  2598. #u141761 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 2px 2px 2px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u141761_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. visibility:hidden;
  2610. }
  2611. #u141762_img {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:7px;
  2617. height:7px;
  2618. }
  2619. #u141762 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:795px;
  2623. top:84px;
  2624. width:7px;
  2625. height:7px;
  2626. display:flex;
  2627. }
  2628. #u141762 .text {
  2629. position:absolute;
  2630. align-self:center;
  2631. padding:2px 2px 2px 2px;
  2632. box-sizing:border-box;
  2633. width:100%;
  2634. }
  2635. #u141762_text {
  2636. border-width:0px;
  2637. word-wrap:break-word;
  2638. text-transform:none;
  2639. visibility:hidden;
  2640. }
  2641. #u141763_img {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:19px;
  2647. height:2px;
  2648. }
  2649. #u141763 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:812px;
  2653. top:87px;
  2654. width:18px;
  2655. height:1px;
  2656. display:flex;
  2657. -webkit-transform:rotate(90deg);
  2658. -moz-transform:rotate(90deg);
  2659. -ms-transform:rotate(90deg);
  2660. transform:rotate(90deg);
  2661. }
  2662. #u141763 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:2px 2px 2px 2px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u141763_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. visibility:hidden;
  2674. }
  2675. #u141764_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:375px;
  2681. height:44px;
  2682. }
  2683. #u141764 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:494px;
  2687. top:24px;
  2688. width:375px;
  2689. height:44px;
  2690. display:flex;
  2691. }
  2692. #u141764 .text {
  2693. position:absolute;
  2694. align-self:center;
  2695. padding:2px 2px 2px 2px;
  2696. box-sizing:border-box;
  2697. width:100%;
  2698. }
  2699. #u141764_text {
  2700. border-width:0px;
  2701. word-wrap:break-word;
  2702. text-transform:none;
  2703. visibility:hidden;
  2704. }
  2705. #u141765_div {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:375px;
  2711. height:50px;
  2712. background:inherit;
  2713. background-color:rgba(255, 255, 255, 1);
  2714. box-sizing:border-box;
  2715. border-width:1px;
  2716. border-style:solid;
  2717. border-color:rgba(242, 242, 242, 1);
  2718. border-radius:26px;
  2719. border-top-left-radius:0px;
  2720. border-top-right-radius:0px;
  2721. -moz-box-shadow:none;
  2722. -webkit-box-shadow:none;
  2723. box-shadow:none;
  2724. }
  2725. #u141765 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:494px;
  2729. top:788px;
  2730. width:375px;
  2731. height:50px;
  2732. display:flex;
  2733. }
  2734. #u141765 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 2px 2px 2px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u141765_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. visibility:hidden;
  2746. }
  2747. #u141766 {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:0px;
  2753. height:0px;
  2754. }
  2755. #u141767_img {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:24px;
  2761. height:24px;
  2762. }
  2763. #u141767 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:534px;
  2767. top:792px;
  2768. width:24px;
  2769. height:24px;
  2770. display:flex;
  2771. font-size:8px;
  2772. }
  2773. #u141767 .text {
  2774. position:absolute;
  2775. align-self:center;
  2776. padding:2px 2px 2px 2px;
  2777. box-sizing:border-box;
  2778. width:100%;
  2779. }
  2780. #u141767_text {
  2781. border-width:0px;
  2782. word-wrap:break-word;
  2783. text-transform:none;
  2784. }
  2785. #u141768_div {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:25px;
  2791. height:17px;
  2792. background:inherit;
  2793. background-color:rgba(255, 255, 255, 0);
  2794. border:none;
  2795. border-radius:0px;
  2796. -moz-box-shadow:none;
  2797. -webkit-box-shadow:none;
  2798. box-shadow:none;
  2799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:12px;
  2803. }
  2804. #u141768 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:534px;
  2808. top:817px;
  2809. width:25px;
  2810. height:17px;
  2811. display:flex;
  2812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2813. font-weight:400;
  2814. font-style:normal;
  2815. font-size:12px;
  2816. }
  2817. #u141768 .text {
  2818. position:absolute;
  2819. align-self:flex-start;
  2820. padding:0px 0px 0px 0px;
  2821. box-sizing:border-box;
  2822. width:100%;
  2823. }
  2824. #u141768_text {
  2825. border-width:0px;
  2826. white-space:nowrap;
  2827. text-transform:none;
  2828. }
  2829. #u141769 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:0px;
  2833. top:0px;
  2834. width:0px;
  2835. height:0px;
  2836. }
  2837. #u141770_img {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:0px;
  2841. top:0px;
  2842. width:24px;
  2843. height:24px;
  2844. }
  2845. #u141770 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:804px;
  2849. top:794px;
  2850. width:24px;
  2851. height:24px;
  2852. display:flex;
  2853. font-size:8px;
  2854. }
  2855. #u141770 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:2px 2px 2px 2px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u141770_text {
  2863. border-width:0px;
  2864. word-wrap:break-word;
  2865. text-transform:none;
  2866. }
  2867. #u141771_div {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:25px;
  2873. height:17px;
  2874. background:inherit;
  2875. background-color:rgba(255, 255, 255, 0);
  2876. border:none;
  2877. border-radius:0px;
  2878. -moz-box-shadow:none;
  2879. -webkit-box-shadow:none;
  2880. box-shadow:none;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:12px;
  2885. }
  2886. #u141771 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:804px;
  2890. top:819px;
  2891. width:25px;
  2892. height:17px;
  2893. display:flex;
  2894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:12px;
  2898. }
  2899. #u141771 .text {
  2900. position:absolute;
  2901. align-self:flex-start;
  2902. padding:0px 0px 0px 0px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u141771_text {
  2907. border-width:0px;
  2908. white-space:nowrap;
  2909. text-transform:none;
  2910. }
  2911. #u141772_div {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:375px;
  2917. height:681px;
  2918. background:inherit;
  2919. background-color:rgba(242, 242, 242, 0.462745098039216);
  2920. border:none;
  2921. border-radius:0px;
  2922. -moz-box-shadow:none;
  2923. -webkit-box-shadow:none;
  2924. box-shadow:none;
  2925. }
  2926. #u141772 {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:494px;
  2930. top:107px;
  2931. width:375px;
  2932. height:681px;
  2933. display:flex;
  2934. }
  2935. #u141772 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 2px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u141772_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. visibility:hidden;
  2947. }
  2948. #u141773 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:0px;
  2954. height:0px;
  2955. }
  2956. #u141774_img {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:24px;
  2962. height:24px;
  2963. }
  2964. #u141774 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:716px;
  2968. top:792px;
  2969. width:24px;
  2970. height:24px;
  2971. display:flex;
  2972. font-size:8px;
  2973. }
  2974. #u141774 .text {
  2975. position:absolute;
  2976. align-self:center;
  2977. padding:2px 2px 2px 2px;
  2978. box-sizing:border-box;
  2979. width:100%;
  2980. }
  2981. #u141774_text {
  2982. border-width:0px;
  2983. word-wrap:break-word;
  2984. text-transform:none;
  2985. }
  2986. #u141775_div {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:37px;
  2992. height:17px;
  2993. background:inherit;
  2994. background-color:rgba(255, 255, 255, 0);
  2995. border:none;
  2996. border-radius:0px;
  2997. -moz-box-shadow:none;
  2998. -webkit-box-shadow:none;
  2999. box-shadow:none;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. font-size:12px;
  3004. }
  3005. #u141775 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:710px;
  3009. top:817px;
  3010. width:37px;
  3011. height:17px;
  3012. display:flex;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:12px;
  3017. }
  3018. #u141775 .text {
  3019. position:absolute;
  3020. align-self:flex-start;
  3021. padding:0px 0px 0px 0px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u141775_text {
  3026. border-width:0px;
  3027. white-space:nowrap;
  3028. text-transform:none;
  3029. }
  3030. #u141776 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:0px;
  3036. height:0px;
  3037. }
  3038. #u141777_img {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:24px;
  3044. height:24px;
  3045. }
  3046. #u141777 {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:622px;
  3050. top:792px;
  3051. width:24px;
  3052. height:24px;
  3053. display:flex;
  3054. font-size:8px;
  3055. }
  3056. #u141777 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 2px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u141777_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. }
  3068. #u141778_div {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:37px;
  3074. height:17px;
  3075. background:inherit;
  3076. background-color:rgba(255, 255, 255, 0);
  3077. border:none;
  3078. border-radius:0px;
  3079. -moz-box-shadow:none;
  3080. -webkit-box-shadow:none;
  3081. box-shadow:none;
  3082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. font-size:12px;
  3086. }
  3087. #u141778 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:616px;
  3091. top:817px;
  3092. width:37px;
  3093. height:17px;
  3094. display:flex;
  3095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3096. font-weight:400;
  3097. font-style:normal;
  3098. font-size:12px;
  3099. }
  3100. #u141778 .text {
  3101. position:absolute;
  3102. align-self:flex-start;
  3103. padding:0px 0px 0px 0px;
  3104. box-sizing:border-box;
  3105. width:100%;
  3106. }
  3107. #u141778_text {
  3108. border-width:0px;
  3109. white-space:nowrap;
  3110. text-transform:none;
  3111. }
  3112. #u141779_div {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:0px;
  3116. top:0px;
  3117. width:375px;
  3118. height:40px;
  3119. background:inherit;
  3120. background-color:rgba(255, 255, 255, 1);
  3121. box-sizing:border-box;
  3122. border-width:1px;
  3123. border-style:solid;
  3124. border-color:rgba(215, 215, 215, 1);
  3125. border-left:0px;
  3126. border-top:0px;
  3127. border-right:0px;
  3128. border-radius:0px;
  3129. border-bottom-right-radius:0px;
  3130. border-bottom-left-radius:0px;
  3131. -moz-box-shadow:none;
  3132. -webkit-box-shadow:none;
  3133. box-shadow:none;
  3134. }
  3135. #u141779 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:494px;
  3139. top:67px;
  3140. width:375px;
  3141. height:40px;
  3142. display:flex;
  3143. }
  3144. #u141779 .text {
  3145. position:absolute;
  3146. align-self:center;
  3147. padding:2px 2px 2px 2px;
  3148. box-sizing:border-box;
  3149. width:100%;
  3150. }
  3151. #u141779_text {
  3152. border-width:0px;
  3153. word-wrap:break-word;
  3154. text-transform:none;
  3155. visibility:hidden;
  3156. }
  3157. #u141780_img {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:375px;
  3163. height:44px;
  3164. }
  3165. #u141780 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:494px;
  3169. top:24px;
  3170. width:375px;
  3171. height:44px;
  3172. display:flex;
  3173. }
  3174. #u141780 .text {
  3175. position:absolute;
  3176. align-self:center;
  3177. padding:2px 2px 2px 2px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u141780_text {
  3182. border-width:0px;
  3183. word-wrap:break-word;
  3184. text-transform:none;
  3185. visibility:hidden;
  3186. }
  3187. #u141781 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:0px;
  3193. height:0px;
  3194. }
  3195. #u141782_div {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:88px;
  3201. height:32px;
  3202. background:inherit;
  3203. background-color:rgba(255, 255, 255, 1);
  3204. box-sizing:border-box;
  3205. border-width:1px;
  3206. border-style:solid;
  3207. border-color:rgba(242, 242, 242, 1);
  3208. border-radius:33px;
  3209. -moz-box-shadow:none;
  3210. -webkit-box-shadow:none;
  3211. box-shadow:none;
  3212. }
  3213. #u141782 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:774px;
  3217. top:71px;
  3218. width:88px;
  3219. height:32px;
  3220. display:flex;
  3221. }
  3222. #u141782 .text {
  3223. position:absolute;
  3224. align-self:center;
  3225. padding:2px 2px 2px 2px;
  3226. box-sizing:border-box;
  3227. width:100%;
  3228. }
  3229. #u141782_text {
  3230. border-width:0px;
  3231. word-wrap:break-word;
  3232. text-transform:none;
  3233. visibility:hidden;
  3234. }
  3235. #u141783 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:0px;
  3241. height:0px;
  3242. }
  3243. #u141784_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:18px;
  3249. height:18px;
  3250. }
  3251. #u141784 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:837px;
  3255. top:78px;
  3256. width:18px;
  3257. height:18px;
  3258. display:flex;
  3259. }
  3260. #u141784 .text {
  3261. position:absolute;
  3262. align-self:center;
  3263. padding:2px 2px 2px 2px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u141784_text {
  3268. border-width:0px;
  3269. word-wrap:break-word;
  3270. text-transform:none;
  3271. visibility:hidden;
  3272. }
  3273. #u141785_img {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:6px;
  3279. height:6px;
  3280. }
  3281. #u141785 {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:843px;
  3285. top:84px;
  3286. width:6px;
  3287. height:6px;
  3288. display:flex;
  3289. }
  3290. #u141785 .text {
  3291. position:absolute;
  3292. align-self:center;
  3293. padding:2px 2px 2px 2px;
  3294. box-sizing:border-box;
  3295. width:100%;
  3296. }
  3297. #u141785_text {
  3298. border-width:0px;
  3299. word-wrap:break-word;
  3300. text-transform:none;
  3301. visibility:hidden;
  3302. }
  3303. #u141786 {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:0px;
  3309. height:0px;
  3310. }
  3311. #u141787_img {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:0px;
  3316. width:5px;
  3317. height:5px;
  3318. }
  3319. #u141787 {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:788px;
  3323. top:85px;
  3324. width:5px;
  3325. height:5px;
  3326. display:flex;
  3327. }
  3328. #u141787 .text {
  3329. position:absolute;
  3330. align-self:center;
  3331. padding:2px 2px 2px 2px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u141787_text {
  3336. border-width:0px;
  3337. word-wrap:break-word;
  3338. text-transform:none;
  3339. visibility:hidden;
  3340. }
  3341. #u141788_img {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:5px;
  3347. height:5px;
  3348. }
  3349. #u141788 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:804px;
  3353. top:85px;
  3354. width:5px;
  3355. height:5px;
  3356. display:flex;
  3357. }
  3358. #u141788 .text {
  3359. position:absolute;
  3360. align-self:center;
  3361. padding:2px 2px 2px 2px;
  3362. box-sizing:border-box;
  3363. width:100%;
  3364. }
  3365. #u141788_text {
  3366. border-width:0px;
  3367. word-wrap:break-word;
  3368. text-transform:none;
  3369. visibility:hidden;
  3370. }
  3371. #u141789_img {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:7px;
  3377. height:7px;
  3378. }
  3379. #u141789 {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:795px;
  3383. top:84px;
  3384. width:7px;
  3385. height:7px;
  3386. display:flex;
  3387. }
  3388. #u141789 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:2px 2px 2px 2px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u141789_text {
  3396. border-width:0px;
  3397. word-wrap:break-word;
  3398. text-transform:none;
  3399. visibility:hidden;
  3400. }
  3401. #u141790_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:19px;
  3407. height:2px;
  3408. }
  3409. #u141790 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:812px;
  3413. top:87px;
  3414. width:18px;
  3415. height:1px;
  3416. display:flex;
  3417. -webkit-transform:rotate(90deg);
  3418. -moz-transform:rotate(90deg);
  3419. -ms-transform:rotate(90deg);
  3420. transform:rotate(90deg);
  3421. }
  3422. #u141790 .text {
  3423. position:absolute;
  3424. align-self:center;
  3425. padding:2px 2px 2px 2px;
  3426. box-sizing:border-box;
  3427. width:100%;
  3428. }
  3429. #u141790_text {
  3430. border-width:0px;
  3431. word-wrap:break-word;
  3432. text-transform:none;
  3433. visibility:hidden;
  3434. }
  3435. #u141791_div {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:65px;
  3441. height:22px;
  3442. background:inherit;
  3443. background-color:rgba(255, 255, 255, 0);
  3444. border:none;
  3445. border-radius:0px;
  3446. -moz-box-shadow:none;
  3447. -webkit-box-shadow:none;
  3448. box-shadow:none;
  3449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:16px;
  3453. color:#000000;
  3454. }
  3455. #u141791 {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:538px;
  3459. top:76px;
  3460. width:65px;
  3461. height:22px;
  3462. display:flex;
  3463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:16px;
  3467. color:#000000;
  3468. }
  3469. #u141791 .text {
  3470. position:absolute;
  3471. align-self:flex-start;
  3472. padding:0px 0px 0px 0px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u141791_text {
  3477. border-width:0px;
  3478. white-space:nowrap;
  3479. text-transform:none;
  3480. }
  3481. #u141792_div {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:12px;
  3487. height:12px;
  3488. background:inherit;
  3489. background-color:rgba(255, 255, 255, 0);
  3490. box-sizing:border-box;
  3491. border-width:2px;
  3492. border-style:solid;
  3493. border-color:rgba(51, 51, 51, 1);
  3494. border-right:0px;
  3495. border-bottom:0px;
  3496. border-radius:0px;
  3497. border-top-right-radius:0px;
  3498. border-bottom-left-radius:0px;
  3499. -moz-box-shadow:none;
  3500. -webkit-box-shadow:none;
  3501. box-shadow:none;
  3502. }
  3503. #u141792 {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:509px;
  3507. top:81px;
  3508. width:12px;
  3509. height:12px;
  3510. display:flex;
  3511. -webkit-transform:rotate(315deg);
  3512. -moz-transform:rotate(315deg);
  3513. -ms-transform:rotate(315deg);
  3514. transform:rotate(315deg);
  3515. }
  3516. #u141792 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 2px 2px 2px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u141792_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. visibility:hidden;
  3528. }
  3529. #u141793_div {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:375px;
  3535. height:733px;
  3536. background:inherit;
  3537. background-color:rgba(242, 242, 242, 0.996078431372549);
  3538. border:none;
  3539. border-top:0px;
  3540. border-radius:21px;
  3541. border-top-left-radius:0px;
  3542. border-top-right-radius:0px;
  3543. -moz-box-shadow:none;
  3544. -webkit-box-shadow:none;
  3545. box-shadow:none;
  3546. }
  3547. #u141793 {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:494px;
  3551. top:107px;
  3552. width:375px;
  3553. height:733px;
  3554. display:flex;
  3555. }
  3556. #u141793 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 2px 2px 2px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u141793_text {
  3564. border-width:0px;
  3565. word-wrap:break-word;
  3566. text-transform:none;
  3567. visibility:hidden;
  3568. }
  3569. #u141794 {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:0px;
  3575. height:0px;
  3576. }
  3577. #u141795_div {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:0px;
  3581. top:0px;
  3582. width:375px;
  3583. height:90px;
  3584. background:inherit;
  3585. background-color:rgba(255, 255, 255, 1);
  3586. border:none;
  3587. border-radius:4px;
  3588. -moz-box-shadow:none;
  3589. -webkit-box-shadow:none;
  3590. box-shadow:none;
  3591. }
  3592. #u141795 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:494px;
  3596. top:215px;
  3597. width:375px;
  3598. height:90px;
  3599. display:flex;
  3600. }
  3601. #u141795 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 2px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u141795_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. visibility:hidden;
  3613. }
  3614. #u141796_div {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:92px;
  3620. height:20px;
  3621. background:inherit;
  3622. background-color:rgba(255, 255, 255, 0);
  3623. border:none;
  3624. border-radius:0px;
  3625. -moz-box-shadow:none;
  3626. -webkit-box-shadow:none;
  3627. box-shadow:none;
  3628. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3629. font-weight:500;
  3630. font-style:normal;
  3631. color:#000000;
  3632. }
  3633. #u141796 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:508px;
  3637. top:228px;
  3638. width:92px;
  3639. height:20px;
  3640. display:flex;
  3641. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3642. font-weight:500;
  3643. font-style:normal;
  3644. color:#000000;
  3645. }
  3646. #u141796 .text {
  3647. position:absolute;
  3648. align-self:center;
  3649. padding:0px 0px 0px 0px;
  3650. box-sizing:border-box;
  3651. width:100%;
  3652. }
  3653. #u141796_text {
  3654. border-width:0px;
  3655. white-space:nowrap;
  3656. text-transform:none;
  3657. }
  3658. #u141797_div {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:41px;
  3664. height:14px;
  3665. background:inherit;
  3666. background-color:rgba(0, 191, 191, 0);
  3667. border:none;
  3668. border-left:0px;
  3669. border-top:0px;
  3670. border-right:0px;
  3671. border-radius:0px;
  3672. border-bottom-right-radius:0px;
  3673. border-bottom-left-radius:0px;
  3674. -moz-box-shadow:none;
  3675. -webkit-box-shadow:none;
  3676. box-shadow:none;
  3677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3678. font-weight:400;
  3679. font-style:normal;
  3680. font-size:10px;
  3681. color:#00BFBF;
  3682. }
  3683. #u141797 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:607px;
  3687. top:231px;
  3688. width:41px;
  3689. height:14px;
  3690. display:flex;
  3691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3692. font-weight:400;
  3693. font-style:normal;
  3694. font-size:10px;
  3695. color:#00BFBF;
  3696. }
  3697. #u141797 .text {
  3698. position:absolute;
  3699. align-self:center;
  3700. padding:0px 0px 0px 0px;
  3701. box-sizing:border-box;
  3702. width:100%;
  3703. }
  3704. #u141797_text {
  3705. border-width:0px;
  3706. white-space:nowrap;
  3707. text-transform:none;
  3708. }
  3709. #u141798_div {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:140px;
  3715. height:40px;
  3716. background:inherit;
  3717. background-color:rgba(255, 255, 255, 0);
  3718. border:none;
  3719. border-radius:0px;
  3720. -moz-box-shadow:none;
  3721. -webkit-box-shadow:none;
  3722. box-shadow:none;
  3723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3724. font-weight:400;
  3725. font-style:normal;
  3726. font-size:12px;
  3727. color:#7F7F7F;
  3728. line-height:20px;
  3729. }
  3730. #u141798 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:508px;
  3734. top:253px;
  3735. width:140px;
  3736. height:40px;
  3737. display:flex;
  3738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3739. font-weight:400;
  3740. font-style:normal;
  3741. font-size:12px;
  3742. color:#7F7F7F;
  3743. line-height:20px;
  3744. }
  3745. #u141798 .text {
  3746. position:absolute;
  3747. align-self:center;
  3748. padding:0px 0px 0px 0px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u141798_text {
  3753. border-width:0px;
  3754. white-space:nowrap;
  3755. text-transform:none;
  3756. }
  3757. #u141799_div {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:62px;
  3763. height:30px;
  3764. background:inherit;
  3765. background-color:rgba(24, 144, 255, 1);
  3766. border:none;
  3767. border-radius:4px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. font-size:12px;
  3775. color:#FFFFFF;
  3776. }
  3777. #u141799 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:796px;
  3781. top:245px;
  3782. width:62px;
  3783. height:30px;
  3784. display:flex;
  3785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:12px;
  3789. color:#FFFFFF;
  3790. }
  3791. #u141799 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:2px 2px 2px 2px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u141799_text {
  3799. border-width:0px;
  3800. word-wrap:break-word;
  3801. text-transform:none;
  3802. }
  3803. #u141800 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:0px;
  3809. height:0px;
  3810. }
  3811. #u141801_div {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:375px;
  3817. height:101px;
  3818. background:inherit;
  3819. background-color:rgba(255, 255, 255, 1);
  3820. border:none;
  3821. border-radius:0px;
  3822. -moz-box-shadow:none;
  3823. -webkit-box-shadow:none;
  3824. box-shadow:none;
  3825. }
  3826. #u141801 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:494px;
  3830. top:107px;
  3831. width:375px;
  3832. height:101px;
  3833. display:flex;
  3834. }
  3835. #u141801 .text {
  3836. position:absolute;
  3837. align-self:center;
  3838. padding:2px 2px 2px 2px;
  3839. box-sizing:border-box;
  3840. width:100%;
  3841. }
  3842. #u141801_text {
  3843. border-width:0px;
  3844. word-wrap:break-word;
  3845. text-transform:none;
  3846. visibility:hidden;
  3847. }
  3848. #u141802 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:0px;
  3854. height:0px;
  3855. }
  3856. #u141803_div {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:280px;
  3862. height:30px;
  3863. background:inherit;
  3864. background-color:rgba(242, 242, 242, 1);
  3865. border:none;
  3866. border-radius:20px;
  3867. -moz-box-shadow:none;
  3868. -webkit-box-shadow:none;
  3869. box-shadow:none;
  3870. }
  3871. #u141803 {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:507px;
  3875. top:122px;
  3876. width:280px;
  3877. height:30px;
  3878. display:flex;
  3879. }
  3880. #u141803 .text {
  3881. position:absolute;
  3882. align-self:center;
  3883. padding:2px 2px 2px 2px;
  3884. box-sizing:border-box;
  3885. width:100%;
  3886. }
  3887. #u141803_text {
  3888. border-width:0px;
  3889. word-wrap:break-word;
  3890. text-transform:none;
  3891. visibility:hidden;
  3892. }
  3893. #u141804_input {
  3894. position:absolute;
  3895. left:0px;
  3896. top:0px;
  3897. width:260px;
  3898. height:25px;
  3899. padding:2px 2px 2px 2px;
  3900. font-family:'ArialMT', 'Arial', sans-serif;
  3901. font-weight:400;
  3902. font-style:normal;
  3903. font-size:13px;
  3904. letter-spacing:normal;
  3905. color:#000000;
  3906. vertical-align:none;
  3907. text-align:left;
  3908. text-transform:none;
  3909. background-color:transparent;
  3910. border-color:transparent;
  3911. }
  3912. #u141804_input.disabled {
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:260px;
  3917. height:25px;
  3918. padding:2px 2px 2px 2px;
  3919. font-family:'ArialMT', 'Arial', sans-serif;
  3920. font-weight:400;
  3921. font-style:normal;
  3922. font-size:13px;
  3923. letter-spacing:normal;
  3924. color:#000000;
  3925. vertical-align:none;
  3926. text-align:left;
  3927. text-transform:none;
  3928. background-color:transparent;
  3929. border-color:transparent;
  3930. }
  3931. #u141804_div {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:260px;
  3937. height:25px;
  3938. background:inherit;
  3939. background-color:rgba(242, 242, 242, 1);
  3940. border:none;
  3941. border-radius:0px;
  3942. -moz-box-shadow:none;
  3943. -webkit-box-shadow:none;
  3944. box-shadow:none;
  3945. }
  3946. #u141804 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:516px;
  3950. top:123px;
  3951. width:260px;
  3952. height:25px;
  3953. display:flex;
  3954. }
  3955. #u141804 .text {
  3956. position:absolute;
  3957. align-self:center;
  3958. padding:2px 2px 2px 2px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u141804_div.disabled {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:0px;
  3966. top:0px;
  3967. width:260px;
  3968. height:25px;
  3969. background:inherit;
  3970. background-color:rgba(240, 240, 240, 1);
  3971. border:none;
  3972. border-radius:0px;
  3973. -moz-box-shadow:none;
  3974. -webkit-box-shadow:none;
  3975. box-shadow:none;
  3976. }
  3977. #u141804.disabled {
  3978. }
  3979. #u141805_img {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:12px;
  3985. height:12px;
  3986. }
  3987. #u141805 {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:768px;
  3991. top:131px;
  3992. width:12px;
  3993. height:12px;
  3994. display:flex;
  3995. }
  3996. #u141805 .text {
  3997. position:absolute;
  3998. align-self:center;
  3999. padding:2px 2px 2px 2px;
  4000. box-sizing:border-box;
  4001. width:100%;
  4002. }
  4003. #u141805_text {
  4004. border-width:0px;
  4005. word-wrap:break-word;
  4006. text-transform:none;
  4007. visibility:hidden;
  4008. }
  4009. #u141806_div {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:64px;
  4015. height:30px;
  4016. background:inherit;
  4017. background-color:rgba(255, 255, 255, 0);
  4018. border:none;
  4019. border-left:0px;
  4020. border-top:0px;
  4021. border-right:0px;
  4022. border-radius:0px;
  4023. border-bottom-right-radius:0px;
  4024. border-bottom-left-radius:0px;
  4025. -moz-box-shadow:none;
  4026. -webkit-box-shadow:none;
  4027. box-shadow:none;
  4028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4029. font-weight:400;
  4030. font-style:normal;
  4031. font-size:12px;
  4032. color:#1890FF;
  4033. line-height:30px;
  4034. }
  4035. #u141806 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:797px;
  4039. top:122px;
  4040. width:64px;
  4041. height:30px;
  4042. display:flex;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:12px;
  4047. color:#1890FF;
  4048. line-height:30px;
  4049. }
  4050. #u141806 .text {
  4051. position:absolute;
  4052. align-self:flex-start;
  4053. padding:0px 0px 0px 0px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u141806_text {
  4058. border-width:0px;
  4059. white-space:nowrap;
  4060. text-transform:none;
  4061. }
  4062. #u141807_div {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:37px;
  4068. height:40px;
  4069. background:inherit;
  4070. background-color:rgba(255, 255, 255, 0);
  4071. box-sizing:border-box;
  4072. border-width:2px;
  4073. border-style:solid;
  4074. border-color:rgba(77, 140, 252, 1);
  4075. border-left:0px;
  4076. border-top:0px;
  4077. border-right:0px;
  4078. border-radius:0px;
  4079. border-bottom-right-radius:0px;
  4080. border-bottom-left-radius:0px;
  4081. -moz-box-shadow:none;
  4082. -webkit-box-shadow:none;
  4083. box-shadow:none;
  4084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4085. font-weight:400;
  4086. font-style:normal;
  4087. font-size:12px;
  4088. color:#1890FF;
  4089. text-align:center;
  4090. }
  4091. #u141807 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:575px;
  4095. top:168px;
  4096. width:37px;
  4097. height:40px;
  4098. display:flex;
  4099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:12px;
  4103. color:#1890FF;
  4104. text-align:center;
  4105. }
  4106. #u141807 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:0px 0px 0px 0px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u141807_text {
  4114. border-width:0px;
  4115. white-space:nowrap;
  4116. text-transform:none;
  4117. }
  4118. #u141808_div {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:37px;
  4124. height:40px;
  4125. background:inherit;
  4126. background-color:rgba(255, 255, 255, 0);
  4127. border:none;
  4128. border-radius:0px;
  4129. -moz-box-shadow:none;
  4130. -webkit-box-shadow:none;
  4131. box-shadow:none;
  4132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4133. font-weight:400;
  4134. font-style:normal;
  4135. font-size:12px;
  4136. color:#000000;
  4137. text-align:center;
  4138. }
  4139. #u141808 {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:641px;
  4143. top:168px;
  4144. width:37px;
  4145. height:40px;
  4146. display:flex;
  4147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4148. font-weight:400;
  4149. font-style:normal;
  4150. font-size:12px;
  4151. color:#000000;
  4152. text-align:center;
  4153. }
  4154. #u141808 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:0px 0px 0px 0px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u141808_text {
  4162. border-width:0px;
  4163. white-space:nowrap;
  4164. text-transform:none;
  4165. }
  4166. #u141809_div {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:37px;
  4172. height:40px;
  4173. background:inherit;
  4174. background-color:rgba(255, 255, 255, 0);
  4175. border:none;
  4176. border-left:0px;
  4177. border-top:0px;
  4178. border-right:0px;
  4179. border-radius:0px;
  4180. border-bottom-right-radius:0px;
  4181. border-bottom-left-radius:0px;
  4182. -moz-box-shadow:none;
  4183. -webkit-box-shadow:none;
  4184. box-shadow:none;
  4185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4186. font-weight:400;
  4187. font-style:normal;
  4188. font-size:12px;
  4189. text-align:center;
  4190. }
  4191. #u141809 {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:510px;
  4195. top:168px;
  4196. width:37px;
  4197. height:40px;
  4198. display:flex;
  4199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4200. font-weight:400;
  4201. font-style:normal;
  4202. font-size:12px;
  4203. text-align:center;
  4204. }
  4205. #u141809 .text {
  4206. position:absolute;
  4207. align-self:center;
  4208. padding:0px 0px 0px 0px;
  4209. box-sizing:border-box;
  4210. width:100%;
  4211. }
  4212. #u141809_text {
  4213. border-width:0px;
  4214. white-space:nowrap;
  4215. text-transform:none;
  4216. }
  4217. #u141810 {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:0px;
  4223. height:0px;
  4224. }
  4225. #u141811_div {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:375px;
  4231. height:90px;
  4232. background:inherit;
  4233. background-color:rgba(255, 255, 255, 1);
  4234. border:none;
  4235. border-radius:4px;
  4236. -moz-box-shadow:none;
  4237. -webkit-box-shadow:none;
  4238. box-shadow:none;
  4239. }
  4240. #u141811 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:494px;
  4244. top:306px;
  4245. width:375px;
  4246. height:90px;
  4247. display:flex;
  4248. }
  4249. #u141811 .text {
  4250. position:absolute;
  4251. align-self:center;
  4252. padding:2px 2px 2px 2px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u141811_text {
  4257. border-width:0px;
  4258. word-wrap:break-word;
  4259. text-transform:none;
  4260. visibility:hidden;
  4261. }
  4262. #u141812_div {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:92px;
  4268. height:20px;
  4269. background:inherit;
  4270. background-color:rgba(255, 255, 255, 0);
  4271. border:none;
  4272. border-radius:0px;
  4273. -moz-box-shadow:none;
  4274. -webkit-box-shadow:none;
  4275. box-shadow:none;
  4276. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4277. font-weight:500;
  4278. font-style:normal;
  4279. color:#000000;
  4280. }
  4281. #u141812 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:508px;
  4285. top:319px;
  4286. width:92px;
  4287. height:20px;
  4288. display:flex;
  4289. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4290. font-weight:500;
  4291. font-style:normal;
  4292. color:#000000;
  4293. }
  4294. #u141812 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:0px 0px 0px 0px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u141812_text {
  4302. border-width:0px;
  4303. white-space:nowrap;
  4304. text-transform:none;
  4305. }
  4306. #u141813_div {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:0px;
  4310. top:0px;
  4311. width:140px;
  4312. height:40px;
  4313. background:inherit;
  4314. background-color:rgba(255, 255, 255, 0);
  4315. border:none;
  4316. border-radius:0px;
  4317. -moz-box-shadow:none;
  4318. -webkit-box-shadow:none;
  4319. box-shadow:none;
  4320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4321. font-weight:400;
  4322. font-style:normal;
  4323. font-size:12px;
  4324. color:#7F7F7F;
  4325. line-height:20px;
  4326. }
  4327. #u141813 {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:508px;
  4331. top:344px;
  4332. width:140px;
  4333. height:40px;
  4334. display:flex;
  4335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4336. font-weight:400;
  4337. font-style:normal;
  4338. font-size:12px;
  4339. color:#7F7F7F;
  4340. line-height:20px;
  4341. }
  4342. #u141813 .text {
  4343. position:absolute;
  4344. align-self:center;
  4345. padding:0px 0px 0px 0px;
  4346. box-sizing:border-box;
  4347. width:100%;
  4348. }
  4349. #u141813_text {
  4350. border-width:0px;
  4351. white-space:nowrap;
  4352. text-transform:none;
  4353. }
  4354. #u141814_div {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:41px;
  4360. height:14px;
  4361. background:inherit;
  4362. background-color:rgba(0, 191, 191, 0);
  4363. border:none;
  4364. border-left:0px;
  4365. border-top:0px;
  4366. border-right:0px;
  4367. border-radius:0px;
  4368. border-bottom-right-radius:0px;
  4369. border-bottom-left-radius:0px;
  4370. -moz-box-shadow:none;
  4371. -webkit-box-shadow:none;
  4372. box-shadow:none;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:10px;
  4377. color:#00BFBF;
  4378. }
  4379. #u141814 {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:607px;
  4383. top:322px;
  4384. width:41px;
  4385. height:14px;
  4386. display:flex;
  4387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4388. font-weight:400;
  4389. font-style:normal;
  4390. font-size:10px;
  4391. color:#00BFBF;
  4392. }
  4393. #u141814 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:0px 0px 0px 0px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u141814_text {
  4401. border-width:0px;
  4402. white-space:nowrap;
  4403. text-transform:none;
  4404. }
  4405. #u141815_div {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:62px;
  4411. height:30px;
  4412. background:inherit;
  4413. background-color:rgba(24, 144, 255, 1);
  4414. border:none;
  4415. border-radius:4px;
  4416. -moz-box-shadow:none;
  4417. -webkit-box-shadow:none;
  4418. box-shadow:none;
  4419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4420. font-weight:400;
  4421. font-style:normal;
  4422. font-size:12px;
  4423. color:#FFFFFF;
  4424. }
  4425. #u141815 {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:796px;
  4429. top:336px;
  4430. width:62px;
  4431. height:30px;
  4432. display:flex;
  4433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4434. font-weight:400;
  4435. font-style:normal;
  4436. font-size:12px;
  4437. color:#FFFFFF;
  4438. }
  4439. #u141815 .text {
  4440. position:absolute;
  4441. align-self:center;
  4442. padding:2px 2px 2px 2px;
  4443. box-sizing:border-box;
  4444. width:100%;
  4445. }
  4446. #u141815_text {
  4447. border-width:0px;
  4448. word-wrap:break-word;
  4449. text-transform:none;
  4450. }
  4451. #u141816 {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:0px;
  4457. height:0px;
  4458. }
  4459. #u141817_div {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:0px;
  4463. top:0px;
  4464. width:375px;
  4465. height:90px;
  4466. background:inherit;
  4467. background-color:rgba(255, 255, 255, 1);
  4468. border:none;
  4469. border-radius:4px;
  4470. -moz-box-shadow:none;
  4471. -webkit-box-shadow:none;
  4472. box-shadow:none;
  4473. }
  4474. #u141817 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:494px;
  4478. top:397px;
  4479. width:375px;
  4480. height:90px;
  4481. display:flex;
  4482. }
  4483. #u141817 .text {
  4484. position:absolute;
  4485. align-self:center;
  4486. padding:2px 2px 2px 2px;
  4487. box-sizing:border-box;
  4488. width:100%;
  4489. }
  4490. #u141817_text {
  4491. border-width:0px;
  4492. word-wrap:break-word;
  4493. text-transform:none;
  4494. visibility:hidden;
  4495. }
  4496. #u141818_div {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:92px;
  4502. height:20px;
  4503. background:inherit;
  4504. background-color:rgba(255, 255, 255, 0);
  4505. border:none;
  4506. border-radius:0px;
  4507. -moz-box-shadow:none;
  4508. -webkit-box-shadow:none;
  4509. box-shadow:none;
  4510. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4511. font-weight:500;
  4512. font-style:normal;
  4513. color:#000000;
  4514. }
  4515. #u141818 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:508px;
  4519. top:410px;
  4520. width:92px;
  4521. height:20px;
  4522. display:flex;
  4523. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4524. font-weight:500;
  4525. font-style:normal;
  4526. color:#000000;
  4527. }
  4528. #u141818 .text {
  4529. position:absolute;
  4530. align-self:center;
  4531. padding:0px 0px 0px 0px;
  4532. box-sizing:border-box;
  4533. width:100%;
  4534. }
  4535. #u141818_text {
  4536. border-width:0px;
  4537. white-space:nowrap;
  4538. text-transform:none;
  4539. }
  4540. #u141819_div {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:0px;
  4544. top:0px;
  4545. width:140px;
  4546. height:40px;
  4547. background:inherit;
  4548. background-color:rgba(255, 255, 255, 0);
  4549. border:none;
  4550. border-radius:0px;
  4551. -moz-box-shadow:none;
  4552. -webkit-box-shadow:none;
  4553. box-shadow:none;
  4554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4555. font-weight:400;
  4556. font-style:normal;
  4557. font-size:12px;
  4558. color:#7F7F7F;
  4559. line-height:20px;
  4560. }
  4561. #u141819 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:508px;
  4565. top:435px;
  4566. width:140px;
  4567. height:40px;
  4568. display:flex;
  4569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:12px;
  4573. color:#7F7F7F;
  4574. line-height:20px;
  4575. }
  4576. #u141819 .text {
  4577. position:absolute;
  4578. align-self:center;
  4579. padding:0px 0px 0px 0px;
  4580. box-sizing:border-box;
  4581. width:100%;
  4582. }
  4583. #u141819_text {
  4584. border-width:0px;
  4585. white-space:nowrap;
  4586. text-transform:none;
  4587. }
  4588. #u141820_div {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:41px;
  4594. height:14px;
  4595. background:inherit;
  4596. background-color:rgba(0, 191, 191, 0);
  4597. border:none;
  4598. border-left:0px;
  4599. border-top:0px;
  4600. border-right:0px;
  4601. border-radius:0px;
  4602. border-bottom-right-radius:0px;
  4603. border-bottom-left-radius:0px;
  4604. -moz-box-shadow:none;
  4605. -webkit-box-shadow:none;
  4606. box-shadow:none;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:10px;
  4611. color:#00BFBF;
  4612. }
  4613. #u141820 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:607px;
  4617. top:413px;
  4618. width:41px;
  4619. height:14px;
  4620. display:flex;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:10px;
  4625. color:#00BFBF;
  4626. }
  4627. #u141820 .text {
  4628. position:absolute;
  4629. align-self:center;
  4630. padding:0px 0px 0px 0px;
  4631. box-sizing:border-box;
  4632. width:100%;
  4633. }
  4634. #u141820_text {
  4635. border-width:0px;
  4636. white-space:nowrap;
  4637. text-transform:none;
  4638. }
  4639. #u141821_div {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:0px;
  4643. top:0px;
  4644. width:62px;
  4645. height:30px;
  4646. background:inherit;
  4647. background-color:rgba(24, 144, 255, 1);
  4648. border:none;
  4649. border-radius:4px;
  4650. -moz-box-shadow:none;
  4651. -webkit-box-shadow:none;
  4652. box-shadow:none;
  4653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4654. font-weight:400;
  4655. font-style:normal;
  4656. font-size:12px;
  4657. color:#FFFFFF;
  4658. }
  4659. #u141821 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:796px;
  4663. top:427px;
  4664. width:62px;
  4665. height:30px;
  4666. display:flex;
  4667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4668. font-weight:400;
  4669. font-style:normal;
  4670. font-size:12px;
  4671. color:#FFFFFF;
  4672. }
  4673. #u141821 .text {
  4674. position:absolute;
  4675. align-self:center;
  4676. padding:2px 2px 2px 2px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u141821_text {
  4681. border-width:0px;
  4682. word-wrap:break-word;
  4683. text-transform:none;
  4684. }
  4685. #u141823_img {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:433px;
  4691. height:865px;
  4692. }
  4693. #u141823 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:927px;
  4697. top:0px;
  4698. width:433px;
  4699. height:865px;
  4700. display:flex;
  4701. }
  4702. #u141823 .text {
  4703. position:absolute;
  4704. align-self:center;
  4705. padding:2px 2px 2px 2px;
  4706. box-sizing:border-box;
  4707. width:100%;
  4708. }
  4709. #u141823_text {
  4710. border-width:0px;
  4711. word-wrap:break-word;
  4712. text-transform:none;
  4713. visibility:hidden;
  4714. }
  4715. #u141824_div {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:375px;
  4721. height:40px;
  4722. background:inherit;
  4723. background-color:rgba(255, 255, 255, 1);
  4724. box-sizing:border-box;
  4725. border-width:1px;
  4726. border-style:solid;
  4727. border-color:rgba(215, 215, 215, 1);
  4728. border-left:0px;
  4729. border-top:0px;
  4730. border-right:0px;
  4731. border-radius:0px;
  4732. border-bottom-right-radius:0px;
  4733. border-bottom-left-radius:0px;
  4734. -moz-box-shadow:none;
  4735. -webkit-box-shadow:none;
  4736. box-shadow:none;
  4737. }
  4738. #u141824 {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:956px;
  4742. top:67px;
  4743. width:375px;
  4744. height:40px;
  4745. display:flex;
  4746. }
  4747. #u141824 .text {
  4748. position:absolute;
  4749. align-self:center;
  4750. padding:2px 2px 2px 2px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u141824_text {
  4755. border-width:0px;
  4756. word-wrap:break-word;
  4757. text-transform:none;
  4758. visibility:hidden;
  4759. }
  4760. #u141825 {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:0px;
  4764. top:0px;
  4765. width:0px;
  4766. height:0px;
  4767. }
  4768. #u141826_div {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:88px;
  4774. height:32px;
  4775. background:inherit;
  4776. background-color:rgba(255, 255, 255, 1);
  4777. box-sizing:border-box;
  4778. border-width:1px;
  4779. border-style:solid;
  4780. border-color:rgba(242, 242, 242, 1);
  4781. border-radius:33px;
  4782. -moz-box-shadow:none;
  4783. -webkit-box-shadow:none;
  4784. box-shadow:none;
  4785. }
  4786. #u141826 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:1236px;
  4790. top:71px;
  4791. width:88px;
  4792. height:32px;
  4793. display:flex;
  4794. }
  4795. #u141826 .text {
  4796. position:absolute;
  4797. align-self:center;
  4798. padding:2px 2px 2px 2px;
  4799. box-sizing:border-box;
  4800. width:100%;
  4801. }
  4802. #u141826_text {
  4803. border-width:0px;
  4804. word-wrap:break-word;
  4805. text-transform:none;
  4806. visibility:hidden;
  4807. }
  4808. #u141827 {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:0px;
  4814. height:0px;
  4815. }
  4816. #u141828_img {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:0px;
  4820. top:0px;
  4821. width:18px;
  4822. height:18px;
  4823. }
  4824. #u141828 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:1299px;
  4828. top:78px;
  4829. width:18px;
  4830. height:18px;
  4831. display:flex;
  4832. }
  4833. #u141828 .text {
  4834. position:absolute;
  4835. align-self:center;
  4836. padding:2px 2px 2px 2px;
  4837. box-sizing:border-box;
  4838. width:100%;
  4839. }
  4840. #u141828_text {
  4841. border-width:0px;
  4842. word-wrap:break-word;
  4843. text-transform:none;
  4844. visibility:hidden;
  4845. }
  4846. #u141829_img {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:6px;
  4852. height:6px;
  4853. }
  4854. #u141829 {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:1305px;
  4858. top:84px;
  4859. width:6px;
  4860. height:6px;
  4861. display:flex;
  4862. }
  4863. #u141829 .text {
  4864. position:absolute;
  4865. align-self:center;
  4866. padding:2px 2px 2px 2px;
  4867. box-sizing:border-box;
  4868. width:100%;
  4869. }
  4870. #u141829_text {
  4871. border-width:0px;
  4872. word-wrap:break-word;
  4873. text-transform:none;
  4874. visibility:hidden;
  4875. }
  4876. #u141830 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:0px;
  4882. height:0px;
  4883. }
  4884. #u141831_img {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:5px;
  4890. height:5px;
  4891. }
  4892. #u141831 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:1250px;
  4896. top:85px;
  4897. width:5px;
  4898. height:5px;
  4899. display:flex;
  4900. }
  4901. #u141831 .text {
  4902. position:absolute;
  4903. align-self:center;
  4904. padding:2px 2px 2px 2px;
  4905. box-sizing:border-box;
  4906. width:100%;
  4907. }
  4908. #u141831_text {
  4909. border-width:0px;
  4910. word-wrap:break-word;
  4911. text-transform:none;
  4912. visibility:hidden;
  4913. }
  4914. #u141832_img {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:5px;
  4920. height:5px;
  4921. }
  4922. #u141832 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:1266px;
  4926. top:85px;
  4927. width:5px;
  4928. height:5px;
  4929. display:flex;
  4930. }
  4931. #u141832 .text {
  4932. position:absolute;
  4933. align-self:center;
  4934. padding:2px 2px 2px 2px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u141832_text {
  4939. border-width:0px;
  4940. word-wrap:break-word;
  4941. text-transform:none;
  4942. visibility:hidden;
  4943. }
  4944. #u141833_img {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:7px;
  4950. height:7px;
  4951. }
  4952. #u141833 {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:1257px;
  4956. top:84px;
  4957. width:7px;
  4958. height:7px;
  4959. display:flex;
  4960. }
  4961. #u141833 .text {
  4962. position:absolute;
  4963. align-self:center;
  4964. padding:2px 2px 2px 2px;
  4965. box-sizing:border-box;
  4966. width:100%;
  4967. }
  4968. #u141833_text {
  4969. border-width:0px;
  4970. word-wrap:break-word;
  4971. text-transform:none;
  4972. visibility:hidden;
  4973. }
  4974. #u141834_img {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:0px;
  4978. top:0px;
  4979. width:19px;
  4980. height:2px;
  4981. }
  4982. #u141834 {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:1274px;
  4986. top:87px;
  4987. width:18px;
  4988. height:1px;
  4989. display:flex;
  4990. -webkit-transform:rotate(90deg);
  4991. -moz-transform:rotate(90deg);
  4992. -ms-transform:rotate(90deg);
  4993. transform:rotate(90deg);
  4994. }
  4995. #u141834 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 2px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u141834_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. visibility:hidden;
  5007. }
  5008. #u141835_img {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:375px;
  5014. height:44px;
  5015. }
  5016. #u141835 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:956px;
  5020. top:24px;
  5021. width:375px;
  5022. height:44px;
  5023. display:flex;
  5024. }
  5025. #u141835 .text {
  5026. position:absolute;
  5027. align-self:center;
  5028. padding:2px 2px 2px 2px;
  5029. box-sizing:border-box;
  5030. width:100%;
  5031. }
  5032. #u141835_text {
  5033. border-width:0px;
  5034. word-wrap:break-word;
  5035. text-transform:none;
  5036. visibility:hidden;
  5037. }
  5038. #u141836_div {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:375px;
  5044. height:50px;
  5045. background:inherit;
  5046. background-color:rgba(255, 255, 255, 1);
  5047. box-sizing:border-box;
  5048. border-width:1px;
  5049. border-style:solid;
  5050. border-color:rgba(242, 242, 242, 1);
  5051. border-radius:26px;
  5052. border-top-left-radius:0px;
  5053. border-top-right-radius:0px;
  5054. -moz-box-shadow:none;
  5055. -webkit-box-shadow:none;
  5056. box-shadow:none;
  5057. }
  5058. #u141836 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:956px;
  5062. top:788px;
  5063. width:375px;
  5064. height:50px;
  5065. display:flex;
  5066. }
  5067. #u141836 .text {
  5068. position:absolute;
  5069. align-self:center;
  5070. padding:2px 2px 2px 2px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u141836_text {
  5075. border-width:0px;
  5076. word-wrap:break-word;
  5077. text-transform:none;
  5078. visibility:hidden;
  5079. }
  5080. #u141837 {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:0px;
  5086. height:0px;
  5087. }
  5088. #u141838_img {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:0px;
  5092. top:0px;
  5093. width:24px;
  5094. height:24px;
  5095. }
  5096. #u141838 {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:996px;
  5100. top:792px;
  5101. width:24px;
  5102. height:24px;
  5103. display:flex;
  5104. font-size:8px;
  5105. }
  5106. #u141838 .text {
  5107. position:absolute;
  5108. align-self:center;
  5109. padding:2px 2px 2px 2px;
  5110. box-sizing:border-box;
  5111. width:100%;
  5112. }
  5113. #u141838_text {
  5114. border-width:0px;
  5115. word-wrap:break-word;
  5116. text-transform:none;
  5117. }
  5118. #u141839_div {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:25px;
  5124. height:17px;
  5125. background:inherit;
  5126. background-color:rgba(255, 255, 255, 0);
  5127. border:none;
  5128. border-radius:0px;
  5129. -moz-box-shadow:none;
  5130. -webkit-box-shadow:none;
  5131. box-shadow:none;
  5132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5133. font-weight:400;
  5134. font-style:normal;
  5135. font-size:12px;
  5136. }
  5137. #u141839 {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:996px;
  5141. top:817px;
  5142. width:25px;
  5143. height:17px;
  5144. display:flex;
  5145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5146. font-weight:400;
  5147. font-style:normal;
  5148. font-size:12px;
  5149. }
  5150. #u141839 .text {
  5151. position:absolute;
  5152. align-self:flex-start;
  5153. padding:0px 0px 0px 0px;
  5154. box-sizing:border-box;
  5155. width:100%;
  5156. }
  5157. #u141839_text {
  5158. border-width:0px;
  5159. white-space:nowrap;
  5160. text-transform:none;
  5161. }
  5162. #u141840 {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:0px;
  5168. height:0px;
  5169. }
  5170. #u141841_img {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:24px;
  5176. height:24px;
  5177. }
  5178. #u141841 {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:1266px;
  5182. top:794px;
  5183. width:24px;
  5184. height:24px;
  5185. display:flex;
  5186. font-size:8px;
  5187. }
  5188. #u141841 .text {
  5189. position:absolute;
  5190. align-self:center;
  5191. padding:2px 2px 2px 2px;
  5192. box-sizing:border-box;
  5193. width:100%;
  5194. }
  5195. #u141841_text {
  5196. border-width:0px;
  5197. word-wrap:break-word;
  5198. text-transform:none;
  5199. }
  5200. #u141842_div {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:0px;
  5204. top:0px;
  5205. width:25px;
  5206. height:17px;
  5207. background:inherit;
  5208. background-color:rgba(255, 255, 255, 0);
  5209. border:none;
  5210. border-radius:0px;
  5211. -moz-box-shadow:none;
  5212. -webkit-box-shadow:none;
  5213. box-shadow:none;
  5214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5215. font-weight:400;
  5216. font-style:normal;
  5217. font-size:12px;
  5218. }
  5219. #u141842 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:1266px;
  5223. top:819px;
  5224. width:25px;
  5225. height:17px;
  5226. display:flex;
  5227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. font-size:12px;
  5231. }
  5232. #u141842 .text {
  5233. position:absolute;
  5234. align-self:flex-start;
  5235. padding:0px 0px 0px 0px;
  5236. box-sizing:border-box;
  5237. width:100%;
  5238. }
  5239. #u141842_text {
  5240. border-width:0px;
  5241. white-space:nowrap;
  5242. text-transform:none;
  5243. }
  5244. #u141843_div {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:375px;
  5250. height:681px;
  5251. background:inherit;
  5252. background-color:rgba(242, 242, 242, 0.462745098039216);
  5253. border:none;
  5254. border-radius:0px;
  5255. -moz-box-shadow:none;
  5256. -webkit-box-shadow:none;
  5257. box-shadow:none;
  5258. }
  5259. #u141843 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:956px;
  5263. top:107px;
  5264. width:375px;
  5265. height:681px;
  5266. display:flex;
  5267. }
  5268. #u141843 .text {
  5269. position:absolute;
  5270. align-self:center;
  5271. padding:2px 2px 2px 2px;
  5272. box-sizing:border-box;
  5273. width:100%;
  5274. }
  5275. #u141843_text {
  5276. border-width:0px;
  5277. word-wrap:break-word;
  5278. text-transform:none;
  5279. visibility:hidden;
  5280. }
  5281. #u141844 {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:0px;
  5287. height:0px;
  5288. }
  5289. #u141845_img {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:24px;
  5295. height:24px;
  5296. }
  5297. #u141845 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:1178px;
  5301. top:792px;
  5302. width:24px;
  5303. height:24px;
  5304. display:flex;
  5305. font-size:8px;
  5306. }
  5307. #u141845 .text {
  5308. position:absolute;
  5309. align-self:center;
  5310. padding:2px 2px 2px 2px;
  5311. box-sizing:border-box;
  5312. width:100%;
  5313. }
  5314. #u141845_text {
  5315. border-width:0px;
  5316. word-wrap:break-word;
  5317. text-transform:none;
  5318. }
  5319. #u141846_div {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:0px;
  5323. top:0px;
  5324. width:37px;
  5325. height:17px;
  5326. background:inherit;
  5327. background-color:rgba(255, 255, 255, 0);
  5328. border:none;
  5329. border-radius:0px;
  5330. -moz-box-shadow:none;
  5331. -webkit-box-shadow:none;
  5332. box-shadow:none;
  5333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:12px;
  5337. }
  5338. #u141846 {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:1172px;
  5342. top:817px;
  5343. width:37px;
  5344. height:17px;
  5345. display:flex;
  5346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5347. font-weight:400;
  5348. font-style:normal;
  5349. font-size:12px;
  5350. }
  5351. #u141846 .text {
  5352. position:absolute;
  5353. align-self:flex-start;
  5354. padding:0px 0px 0px 0px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u141846_text {
  5359. border-width:0px;
  5360. white-space:nowrap;
  5361. text-transform:none;
  5362. }
  5363. #u141847 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:0px;
  5367. top:0px;
  5368. width:0px;
  5369. height:0px;
  5370. }
  5371. #u141848_img {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:24px;
  5377. height:24px;
  5378. }
  5379. #u141848 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:1084px;
  5383. top:792px;
  5384. width:24px;
  5385. height:24px;
  5386. display:flex;
  5387. font-size:8px;
  5388. }
  5389. #u141848 .text {
  5390. position:absolute;
  5391. align-self:center;
  5392. padding:2px 2px 2px 2px;
  5393. box-sizing:border-box;
  5394. width:100%;
  5395. }
  5396. #u141848_text {
  5397. border-width:0px;
  5398. word-wrap:break-word;
  5399. text-transform:none;
  5400. }
  5401. #u141849_div {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:0px;
  5405. top:0px;
  5406. width:37px;
  5407. height:17px;
  5408. background:inherit;
  5409. background-color:rgba(255, 255, 255, 0);
  5410. border:none;
  5411. border-radius:0px;
  5412. -moz-box-shadow:none;
  5413. -webkit-box-shadow:none;
  5414. box-shadow:none;
  5415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5416. font-weight:400;
  5417. font-style:normal;
  5418. font-size:12px;
  5419. }
  5420. #u141849 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:1078px;
  5424. top:817px;
  5425. width:37px;
  5426. height:17px;
  5427. display:flex;
  5428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5429. font-weight:400;
  5430. font-style:normal;
  5431. font-size:12px;
  5432. }
  5433. #u141849 .text {
  5434. position:absolute;
  5435. align-self:flex-start;
  5436. padding:0px 0px 0px 0px;
  5437. box-sizing:border-box;
  5438. width:100%;
  5439. }
  5440. #u141849_text {
  5441. border-width:0px;
  5442. white-space:nowrap;
  5443. text-transform:none;
  5444. }
  5445. #u141850_div {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:375px;
  5451. height:40px;
  5452. background:inherit;
  5453. background-color:rgba(255, 255, 255, 1);
  5454. box-sizing:border-box;
  5455. border-width:1px;
  5456. border-style:solid;
  5457. border-color:rgba(215, 215, 215, 1);
  5458. border-left:0px;
  5459. border-top:0px;
  5460. border-right:0px;
  5461. border-radius:0px;
  5462. border-bottom-right-radius:0px;
  5463. border-bottom-left-radius:0px;
  5464. -moz-box-shadow:none;
  5465. -webkit-box-shadow:none;
  5466. box-shadow:none;
  5467. }
  5468. #u141850 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:956px;
  5472. top:67px;
  5473. width:375px;
  5474. height:40px;
  5475. display:flex;
  5476. }
  5477. #u141850 .text {
  5478. position:absolute;
  5479. align-self:center;
  5480. padding:2px 2px 2px 2px;
  5481. box-sizing:border-box;
  5482. width:100%;
  5483. }
  5484. #u141850_text {
  5485. border-width:0px;
  5486. word-wrap:break-word;
  5487. text-transform:none;
  5488. visibility:hidden;
  5489. }
  5490. #u141851_img {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:375px;
  5496. height:44px;
  5497. }
  5498. #u141851 {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:956px;
  5502. top:24px;
  5503. width:375px;
  5504. height:44px;
  5505. display:flex;
  5506. }
  5507. #u141851 .text {
  5508. position:absolute;
  5509. align-self:center;
  5510. padding:2px 2px 2px 2px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u141851_text {
  5515. border-width:0px;
  5516. word-wrap:break-word;
  5517. text-transform:none;
  5518. visibility:hidden;
  5519. }
  5520. #u141852 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:0px;
  5526. height:0px;
  5527. }
  5528. #u141853_div {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:88px;
  5534. height:32px;
  5535. background:inherit;
  5536. background-color:rgba(255, 255, 255, 1);
  5537. box-sizing:border-box;
  5538. border-width:1px;
  5539. border-style:solid;
  5540. border-color:rgba(242, 242, 242, 1);
  5541. border-radius:33px;
  5542. -moz-box-shadow:none;
  5543. -webkit-box-shadow:none;
  5544. box-shadow:none;
  5545. }
  5546. #u141853 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:1236px;
  5550. top:71px;
  5551. width:88px;
  5552. height:32px;
  5553. display:flex;
  5554. }
  5555. #u141853 .text {
  5556. position:absolute;
  5557. align-self:center;
  5558. padding:2px 2px 2px 2px;
  5559. box-sizing:border-box;
  5560. width:100%;
  5561. }
  5562. #u141853_text {
  5563. border-width:0px;
  5564. word-wrap:break-word;
  5565. text-transform:none;
  5566. visibility:hidden;
  5567. }
  5568. #u141854 {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:0px;
  5574. height:0px;
  5575. }
  5576. #u141855_img {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:18px;
  5582. height:18px;
  5583. }
  5584. #u141855 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:1299px;
  5588. top:78px;
  5589. width:18px;
  5590. height:18px;
  5591. display:flex;
  5592. }
  5593. #u141855 .text {
  5594. position:absolute;
  5595. align-self:center;
  5596. padding:2px 2px 2px 2px;
  5597. box-sizing:border-box;
  5598. width:100%;
  5599. }
  5600. #u141855_text {
  5601. border-width:0px;
  5602. word-wrap:break-word;
  5603. text-transform:none;
  5604. visibility:hidden;
  5605. }
  5606. #u141856_img {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:0px;
  5611. width:6px;
  5612. height:6px;
  5613. }
  5614. #u141856 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:1305px;
  5618. top:84px;
  5619. width:6px;
  5620. height:6px;
  5621. display:flex;
  5622. }
  5623. #u141856 .text {
  5624. position:absolute;
  5625. align-self:center;
  5626. padding:2px 2px 2px 2px;
  5627. box-sizing:border-box;
  5628. width:100%;
  5629. }
  5630. #u141856_text {
  5631. border-width:0px;
  5632. word-wrap:break-word;
  5633. text-transform:none;
  5634. visibility:hidden;
  5635. }
  5636. #u141857 {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:0px;
  5640. top:0px;
  5641. width:0px;
  5642. height:0px;
  5643. }
  5644. #u141858_img {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:5px;
  5650. height:5px;
  5651. }
  5652. #u141858 {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:1250px;
  5656. top:85px;
  5657. width:5px;
  5658. height:5px;
  5659. display:flex;
  5660. }
  5661. #u141858 .text {
  5662. position:absolute;
  5663. align-self:center;
  5664. padding:2px 2px 2px 2px;
  5665. box-sizing:border-box;
  5666. width:100%;
  5667. }
  5668. #u141858_text {
  5669. border-width:0px;
  5670. word-wrap:break-word;
  5671. text-transform:none;
  5672. visibility:hidden;
  5673. }
  5674. #u141859_img {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:0px;
  5678. top:0px;
  5679. width:5px;
  5680. height:5px;
  5681. }
  5682. #u141859 {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:1266px;
  5686. top:85px;
  5687. width:5px;
  5688. height:5px;
  5689. display:flex;
  5690. }
  5691. #u141859 .text {
  5692. position:absolute;
  5693. align-self:center;
  5694. padding:2px 2px 2px 2px;
  5695. box-sizing:border-box;
  5696. width:100%;
  5697. }
  5698. #u141859_text {
  5699. border-width:0px;
  5700. word-wrap:break-word;
  5701. text-transform:none;
  5702. visibility:hidden;
  5703. }
  5704. #u141860_img {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:7px;
  5710. height:7px;
  5711. }
  5712. #u141860 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:1257px;
  5716. top:84px;
  5717. width:7px;
  5718. height:7px;
  5719. display:flex;
  5720. }
  5721. #u141860 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 2px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u141860_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u141861_img {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:19px;
  5740. height:2px;
  5741. }
  5742. #u141861 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:1274px;
  5746. top:87px;
  5747. width:18px;
  5748. height:1px;
  5749. display:flex;
  5750. -webkit-transform:rotate(90deg);
  5751. -moz-transform:rotate(90deg);
  5752. -ms-transform:rotate(90deg);
  5753. transform:rotate(90deg);
  5754. }
  5755. #u141861 .text {
  5756. position:absolute;
  5757. align-self:center;
  5758. padding:2px 2px 2px 2px;
  5759. box-sizing:border-box;
  5760. width:100%;
  5761. }
  5762. #u141861_text {
  5763. border-width:0px;
  5764. word-wrap:break-word;
  5765. text-transform:none;
  5766. visibility:hidden;
  5767. }
  5768. #u141862_div {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:65px;
  5774. height:22px;
  5775. background:inherit;
  5776. background-color:rgba(255, 255, 255, 0);
  5777. border:none;
  5778. border-radius:0px;
  5779. -moz-box-shadow:none;
  5780. -webkit-box-shadow:none;
  5781. box-shadow:none;
  5782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5783. font-weight:400;
  5784. font-style:normal;
  5785. font-size:16px;
  5786. color:#000000;
  5787. }
  5788. #u141862 {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:1000px;
  5792. top:76px;
  5793. width:65px;
  5794. height:22px;
  5795. display:flex;
  5796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5797. font-weight:400;
  5798. font-style:normal;
  5799. font-size:16px;
  5800. color:#000000;
  5801. }
  5802. #u141862 .text {
  5803. position:absolute;
  5804. align-self:flex-start;
  5805. padding:0px 0px 0px 0px;
  5806. box-sizing:border-box;
  5807. width:100%;
  5808. }
  5809. #u141862_text {
  5810. border-width:0px;
  5811. white-space:nowrap;
  5812. text-transform:none;
  5813. }
  5814. #u141863_div {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:0px;
  5818. top:0px;
  5819. width:12px;
  5820. height:12px;
  5821. background:inherit;
  5822. background-color:rgba(255, 255, 255, 0);
  5823. box-sizing:border-box;
  5824. border-width:2px;
  5825. border-style:solid;
  5826. border-color:rgba(51, 51, 51, 1);
  5827. border-right:0px;
  5828. border-bottom:0px;
  5829. border-radius:0px;
  5830. border-top-right-radius:0px;
  5831. border-bottom-left-radius:0px;
  5832. -moz-box-shadow:none;
  5833. -webkit-box-shadow:none;
  5834. box-shadow:none;
  5835. }
  5836. #u141863 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:971px;
  5840. top:81px;
  5841. width:12px;
  5842. height:12px;
  5843. display:flex;
  5844. -webkit-transform:rotate(315deg);
  5845. -moz-transform:rotate(315deg);
  5846. -ms-transform:rotate(315deg);
  5847. transform:rotate(315deg);
  5848. }
  5849. #u141863 .text {
  5850. position:absolute;
  5851. align-self:center;
  5852. padding:2px 2px 2px 2px;
  5853. box-sizing:border-box;
  5854. width:100%;
  5855. }
  5856. #u141863_text {
  5857. border-width:0px;
  5858. word-wrap:break-word;
  5859. text-transform:none;
  5860. visibility:hidden;
  5861. }
  5862. #u141864_div {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:0px;
  5866. top:0px;
  5867. width:375px;
  5868. height:733px;
  5869. background:inherit;
  5870. background-color:rgba(242, 242, 242, 0.996078431372549);
  5871. border:none;
  5872. border-top:0px;
  5873. border-radius:21px;
  5874. border-top-left-radius:0px;
  5875. border-top-right-radius:0px;
  5876. -moz-box-shadow:none;
  5877. -webkit-box-shadow:none;
  5878. box-shadow:none;
  5879. }
  5880. #u141864 {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:956px;
  5884. top:107px;
  5885. width:375px;
  5886. height:733px;
  5887. display:flex;
  5888. }
  5889. #u141864 .text {
  5890. position:absolute;
  5891. align-self:center;
  5892. padding:2px 2px 2px 2px;
  5893. box-sizing:border-box;
  5894. width:100%;
  5895. }
  5896. #u141864_text {
  5897. border-width:0px;
  5898. word-wrap:break-word;
  5899. text-transform:none;
  5900. visibility:hidden;
  5901. }
  5902. #u141865 {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:0px;
  5906. top:0px;
  5907. width:0px;
  5908. height:0px;
  5909. }
  5910. #u141866_div {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:375px;
  5916. height:90px;
  5917. background:inherit;
  5918. background-color:rgba(255, 255, 255, 1);
  5919. border:none;
  5920. border-radius:4px;
  5921. -moz-box-shadow:none;
  5922. -webkit-box-shadow:none;
  5923. box-shadow:none;
  5924. }
  5925. #u141866 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:956px;
  5929. top:215px;
  5930. width:375px;
  5931. height:90px;
  5932. display:flex;
  5933. }
  5934. #u141866 .text {
  5935. position:absolute;
  5936. align-self:center;
  5937. padding:2px 2px 2px 2px;
  5938. box-sizing:border-box;
  5939. width:100%;
  5940. }
  5941. #u141866_text {
  5942. border-width:0px;
  5943. word-wrap:break-word;
  5944. text-transform:none;
  5945. visibility:hidden;
  5946. }
  5947. #u141867_div {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:92px;
  5953. height:20px;
  5954. background:inherit;
  5955. background-color:rgba(255, 255, 255, 0);
  5956. border:none;
  5957. border-radius:0px;
  5958. -moz-box-shadow:none;
  5959. -webkit-box-shadow:none;
  5960. box-shadow:none;
  5961. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5962. font-weight:500;
  5963. font-style:normal;
  5964. color:#000000;
  5965. }
  5966. #u141867 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:970px;
  5970. top:228px;
  5971. width:92px;
  5972. height:20px;
  5973. display:flex;
  5974. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5975. font-weight:500;
  5976. font-style:normal;
  5977. color:#000000;
  5978. }
  5979. #u141867 .text {
  5980. position:absolute;
  5981. align-self:center;
  5982. padding:0px 0px 0px 0px;
  5983. box-sizing:border-box;
  5984. width:100%;
  5985. }
  5986. #u141867_text {
  5987. border-width:0px;
  5988. white-space:nowrap;
  5989. text-transform:none;
  5990. }
  5991. #u141868_div {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:41px;
  5997. height:14px;
  5998. background:inherit;
  5999. background-color:rgba(0, 191, 191, 0);
  6000. border:none;
  6001. border-left:0px;
  6002. border-top:0px;
  6003. border-right:0px;
  6004. border-radius:0px;
  6005. border-bottom-right-radius:0px;
  6006. border-bottom-left-radius:0px;
  6007. -moz-box-shadow:none;
  6008. -webkit-box-shadow:none;
  6009. box-shadow:none;
  6010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:10px;
  6014. color:#00BFBF;
  6015. }
  6016. #u141868 {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:1069px;
  6020. top:231px;
  6021. width:41px;
  6022. height:14px;
  6023. display:flex;
  6024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. font-size:10px;
  6028. color:#00BFBF;
  6029. }
  6030. #u141868 .text {
  6031. position:absolute;
  6032. align-self:center;
  6033. padding:0px 0px 0px 0px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u141868_text {
  6038. border-width:0px;
  6039. white-space:nowrap;
  6040. text-transform:none;
  6041. }
  6042. #u141869_div {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:140px;
  6048. height:40px;
  6049. background:inherit;
  6050. background-color:rgba(255, 255, 255, 0);
  6051. border:none;
  6052. border-radius:0px;
  6053. -moz-box-shadow:none;
  6054. -webkit-box-shadow:none;
  6055. box-shadow:none;
  6056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. font-size:12px;
  6060. color:#7F7F7F;
  6061. line-height:20px;
  6062. }
  6063. #u141869 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:970px;
  6067. top:253px;
  6068. width:140px;
  6069. height:40px;
  6070. display:flex;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:12px;
  6075. color:#7F7F7F;
  6076. line-height:20px;
  6077. }
  6078. #u141869 .text {
  6079. position:absolute;
  6080. align-self:center;
  6081. padding:0px 0px 0px 0px;
  6082. box-sizing:border-box;
  6083. width:100%;
  6084. }
  6085. #u141869_text {
  6086. border-width:0px;
  6087. white-space:nowrap;
  6088. text-transform:none;
  6089. }
  6090. #u141870_div {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:62px;
  6096. height:30px;
  6097. background:inherit;
  6098. background-color:rgba(24, 144, 255, 1);
  6099. border:none;
  6100. border-radius:4px;
  6101. -moz-box-shadow:none;
  6102. -webkit-box-shadow:none;
  6103. box-shadow:none;
  6104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:12px;
  6108. color:#FFFFFF;
  6109. }
  6110. #u141870 {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:1258px;
  6114. top:245px;
  6115. width:62px;
  6116. height:30px;
  6117. display:flex;
  6118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6119. font-weight:400;
  6120. font-style:normal;
  6121. font-size:12px;
  6122. color:#FFFFFF;
  6123. }
  6124. #u141870 .text {
  6125. position:absolute;
  6126. align-self:center;
  6127. padding:2px 2px 2px 2px;
  6128. box-sizing:border-box;
  6129. width:100%;
  6130. }
  6131. #u141870_text {
  6132. border-width:0px;
  6133. word-wrap:break-word;
  6134. text-transform:none;
  6135. }
  6136. #u141871 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:0px;
  6140. top:0px;
  6141. width:0px;
  6142. height:0px;
  6143. }
  6144. #u141872_div {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:375px;
  6150. height:101px;
  6151. background:inherit;
  6152. background-color:rgba(255, 255, 255, 1);
  6153. border:none;
  6154. border-radius:0px;
  6155. -moz-box-shadow:none;
  6156. -webkit-box-shadow:none;
  6157. box-shadow:none;
  6158. }
  6159. #u141872 {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:956px;
  6163. top:107px;
  6164. width:375px;
  6165. height:101px;
  6166. display:flex;
  6167. }
  6168. #u141872 .text {
  6169. position:absolute;
  6170. align-self:center;
  6171. padding:2px 2px 2px 2px;
  6172. box-sizing:border-box;
  6173. width:100%;
  6174. }
  6175. #u141872_text {
  6176. border-width:0px;
  6177. word-wrap:break-word;
  6178. text-transform:none;
  6179. visibility:hidden;
  6180. }
  6181. #u141873 {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:0px;
  6185. top:0px;
  6186. width:0px;
  6187. height:0px;
  6188. }
  6189. #u141874_div {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:0px;
  6193. top:0px;
  6194. width:280px;
  6195. height:30px;
  6196. background:inherit;
  6197. background-color:rgba(242, 242, 242, 1);
  6198. border:none;
  6199. border-radius:20px;
  6200. -moz-box-shadow:none;
  6201. -webkit-box-shadow:none;
  6202. box-shadow:none;
  6203. }
  6204. #u141874 {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:969px;
  6208. top:122px;
  6209. width:280px;
  6210. height:30px;
  6211. display:flex;
  6212. }
  6213. #u141874 .text {
  6214. position:absolute;
  6215. align-self:center;
  6216. padding:2px 2px 2px 2px;
  6217. box-sizing:border-box;
  6218. width:100%;
  6219. }
  6220. #u141874_text {
  6221. border-width:0px;
  6222. word-wrap:break-word;
  6223. text-transform:none;
  6224. visibility:hidden;
  6225. }
  6226. #u141875_input {
  6227. position:absolute;
  6228. left:0px;
  6229. top:0px;
  6230. width:260px;
  6231. height:25px;
  6232. padding:2px 2px 2px 2px;
  6233. font-family:'ArialMT', 'Arial', sans-serif;
  6234. font-weight:400;
  6235. font-style:normal;
  6236. font-size:13px;
  6237. letter-spacing:normal;
  6238. color:#000000;
  6239. vertical-align:none;
  6240. text-align:left;
  6241. text-transform:none;
  6242. background-color:transparent;
  6243. border-color:transparent;
  6244. }
  6245. #u141875_input.disabled {
  6246. position:absolute;
  6247. left:0px;
  6248. top:0px;
  6249. width:260px;
  6250. height:25px;
  6251. padding:2px 2px 2px 2px;
  6252. font-family:'ArialMT', 'Arial', sans-serif;
  6253. font-weight:400;
  6254. font-style:normal;
  6255. font-size:13px;
  6256. letter-spacing:normal;
  6257. color:#000000;
  6258. vertical-align:none;
  6259. text-align:left;
  6260. text-transform:none;
  6261. background-color:transparent;
  6262. border-color:transparent;
  6263. }
  6264. #u141875_div {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:0px;
  6268. top:0px;
  6269. width:260px;
  6270. height:25px;
  6271. background:inherit;
  6272. background-color:rgba(242, 242, 242, 1);
  6273. border:none;
  6274. border-radius:0px;
  6275. -moz-box-shadow:none;
  6276. -webkit-box-shadow:none;
  6277. box-shadow:none;
  6278. }
  6279. #u141875 {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:978px;
  6283. top:123px;
  6284. width:260px;
  6285. height:25px;
  6286. display:flex;
  6287. }
  6288. #u141875 .text {
  6289. position:absolute;
  6290. align-self:center;
  6291. padding:2px 2px 2px 2px;
  6292. box-sizing:border-box;
  6293. width:100%;
  6294. }
  6295. #u141875_div.disabled {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:260px;
  6301. height:25px;
  6302. background:inherit;
  6303. background-color:rgba(240, 240, 240, 1);
  6304. border:none;
  6305. border-radius:0px;
  6306. -moz-box-shadow:none;
  6307. -webkit-box-shadow:none;
  6308. box-shadow:none;
  6309. }
  6310. #u141875.disabled {
  6311. }
  6312. #u141876_img {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:0px;
  6316. top:0px;
  6317. width:12px;
  6318. height:12px;
  6319. }
  6320. #u141876 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:1230px;
  6324. top:131px;
  6325. width:12px;
  6326. height:12px;
  6327. display:flex;
  6328. }
  6329. #u141876 .text {
  6330. position:absolute;
  6331. align-self:center;
  6332. padding:2px 2px 2px 2px;
  6333. box-sizing:border-box;
  6334. width:100%;
  6335. }
  6336. #u141876_text {
  6337. border-width:0px;
  6338. word-wrap:break-word;
  6339. text-transform:none;
  6340. visibility:hidden;
  6341. }
  6342. #u141877_div {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:64px;
  6348. height:30px;
  6349. background:inherit;
  6350. background-color:rgba(255, 255, 255, 0);
  6351. border:none;
  6352. border-left:0px;
  6353. border-top:0px;
  6354. border-right:0px;
  6355. border-radius:0px;
  6356. border-bottom-right-radius:0px;
  6357. border-bottom-left-radius:0px;
  6358. -moz-box-shadow:none;
  6359. -webkit-box-shadow:none;
  6360. box-shadow:none;
  6361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6362. font-weight:400;
  6363. font-style:normal;
  6364. font-size:12px;
  6365. color:#1890FF;
  6366. line-height:30px;
  6367. }
  6368. #u141877 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:1259px;
  6372. top:122px;
  6373. width:64px;
  6374. height:30px;
  6375. display:flex;
  6376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6377. font-weight:400;
  6378. font-style:normal;
  6379. font-size:12px;
  6380. color:#1890FF;
  6381. line-height:30px;
  6382. }
  6383. #u141877 .text {
  6384. position:absolute;
  6385. align-self:flex-start;
  6386. padding:0px 0px 0px 0px;
  6387. box-sizing:border-box;
  6388. width:100%;
  6389. }
  6390. #u141877_text {
  6391. border-width:0px;
  6392. white-space:nowrap;
  6393. text-transform:none;
  6394. }
  6395. #u141878_div {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:0px;
  6399. top:0px;
  6400. width:37px;
  6401. height:40px;
  6402. background:inherit;
  6403. background-color:rgba(255, 255, 255, 0);
  6404. border:none;
  6405. border-left:0px;
  6406. border-top:0px;
  6407. border-right:0px;
  6408. border-radius:0px;
  6409. border-bottom-right-radius:0px;
  6410. border-bottom-left-radius:0px;
  6411. -moz-box-shadow:none;
  6412. -webkit-box-shadow:none;
  6413. box-shadow:none;
  6414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6415. font-weight:400;
  6416. font-style:normal;
  6417. font-size:12px;
  6418. text-align:center;
  6419. }
  6420. #u141878 {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:1037px;
  6424. top:168px;
  6425. width:37px;
  6426. height:40px;
  6427. display:flex;
  6428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6429. font-weight:400;
  6430. font-style:normal;
  6431. font-size:12px;
  6432. text-align:center;
  6433. }
  6434. #u141878 .text {
  6435. position:absolute;
  6436. align-self:center;
  6437. padding:0px 0px 0px 0px;
  6438. box-sizing:border-box;
  6439. width:100%;
  6440. }
  6441. #u141878_text {
  6442. border-width:0px;
  6443. white-space:nowrap;
  6444. text-transform:none;
  6445. }
  6446. #u141879_div {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:37px;
  6452. height:40px;
  6453. background:inherit;
  6454. background-color:rgba(255, 255, 255, 0);
  6455. box-sizing:border-box;
  6456. border-width:2px;
  6457. border-style:solid;
  6458. border-color:rgba(24, 144, 255, 1);
  6459. border-left:0px;
  6460. border-top:0px;
  6461. border-right:0px;
  6462. border-radius:0px;
  6463. border-bottom-right-radius:0px;
  6464. border-bottom-left-radius:0px;
  6465. -moz-box-shadow:none;
  6466. -webkit-box-shadow:none;
  6467. box-shadow:none;
  6468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6469. font-weight:400;
  6470. font-style:normal;
  6471. font-size:12px;
  6472. color:#1890FF;
  6473. text-align:center;
  6474. }
  6475. #u141879 {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:1103px;
  6479. top:168px;
  6480. width:37px;
  6481. height:40px;
  6482. display:flex;
  6483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6484. font-weight:400;
  6485. font-style:normal;
  6486. font-size:12px;
  6487. color:#1890FF;
  6488. text-align:center;
  6489. }
  6490. #u141879 .text {
  6491. position:absolute;
  6492. align-self:center;
  6493. padding:0px 0px 0px 0px;
  6494. box-sizing:border-box;
  6495. width:100%;
  6496. }
  6497. #u141879_text {
  6498. border-width:0px;
  6499. white-space:nowrap;
  6500. text-transform:none;
  6501. }
  6502. #u141880_div {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:0px;
  6506. top:0px;
  6507. width:37px;
  6508. height:40px;
  6509. background:inherit;
  6510. background-color:rgba(255, 255, 255, 0);
  6511. border:none;
  6512. border-left:0px;
  6513. border-top:0px;
  6514. border-right:0px;
  6515. border-radius:0px;
  6516. border-bottom-right-radius:0px;
  6517. border-bottom-left-radius:0px;
  6518. -moz-box-shadow:none;
  6519. -webkit-box-shadow:none;
  6520. box-shadow:none;
  6521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:12px;
  6525. text-align:center;
  6526. }
  6527. #u141880 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:972px;
  6531. top:168px;
  6532. width:37px;
  6533. height:40px;
  6534. display:flex;
  6535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:12px;
  6539. text-align:center;
  6540. }
  6541. #u141880 .text {
  6542. position:absolute;
  6543. align-self:center;
  6544. padding:0px 0px 0px 0px;
  6545. box-sizing:border-box;
  6546. width:100%;
  6547. }
  6548. #u141880_text {
  6549. border-width:0px;
  6550. white-space:nowrap;
  6551. text-transform:none;
  6552. }
  6553. #u141881 {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:0px;
  6559. height:0px;
  6560. }
  6561. #u141882_div {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:375px;
  6567. height:90px;
  6568. background:inherit;
  6569. background-color:rgba(255, 255, 255, 1);
  6570. border:none;
  6571. border-radius:4px;
  6572. -moz-box-shadow:none;
  6573. -webkit-box-shadow:none;
  6574. box-shadow:none;
  6575. }
  6576. #u141882 {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:956px;
  6580. top:306px;
  6581. width:375px;
  6582. height:90px;
  6583. display:flex;
  6584. }
  6585. #u141882 .text {
  6586. position:absolute;
  6587. align-self:center;
  6588. padding:2px 2px 2px 2px;
  6589. box-sizing:border-box;
  6590. width:100%;
  6591. }
  6592. #u141882_text {
  6593. border-width:0px;
  6594. word-wrap:break-word;
  6595. text-transform:none;
  6596. visibility:hidden;
  6597. }
  6598. #u141883_div {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:0px;
  6602. top:0px;
  6603. width:92px;
  6604. height:20px;
  6605. background:inherit;
  6606. background-color:rgba(255, 255, 255, 0);
  6607. border:none;
  6608. border-radius:0px;
  6609. -moz-box-shadow:none;
  6610. -webkit-box-shadow:none;
  6611. box-shadow:none;
  6612. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6613. font-weight:500;
  6614. font-style:normal;
  6615. color:#000000;
  6616. }
  6617. #u141883 {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:970px;
  6621. top:319px;
  6622. width:92px;
  6623. height:20px;
  6624. display:flex;
  6625. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6626. font-weight:500;
  6627. font-style:normal;
  6628. color:#000000;
  6629. }
  6630. #u141883 .text {
  6631. position:absolute;
  6632. align-self:center;
  6633. padding:0px 0px 0px 0px;
  6634. box-sizing:border-box;
  6635. width:100%;
  6636. }
  6637. #u141883_text {
  6638. border-width:0px;
  6639. white-space:nowrap;
  6640. text-transform:none;
  6641. }
  6642. #u141884_div {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:140px;
  6648. height:40px;
  6649. background:inherit;
  6650. background-color:rgba(255, 255, 255, 0);
  6651. border:none;
  6652. border-radius:0px;
  6653. -moz-box-shadow:none;
  6654. -webkit-box-shadow:none;
  6655. box-shadow:none;
  6656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6657. font-weight:400;
  6658. font-style:normal;
  6659. font-size:12px;
  6660. color:#7F7F7F;
  6661. line-height:20px;
  6662. }
  6663. #u141884 {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:970px;
  6667. top:344px;
  6668. width:140px;
  6669. height:40px;
  6670. display:flex;
  6671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6672. font-weight:400;
  6673. font-style:normal;
  6674. font-size:12px;
  6675. color:#7F7F7F;
  6676. line-height:20px;
  6677. }
  6678. #u141884 .text {
  6679. position:absolute;
  6680. align-self:center;
  6681. padding:0px 0px 0px 0px;
  6682. box-sizing:border-box;
  6683. width:100%;
  6684. }
  6685. #u141884_text {
  6686. border-width:0px;
  6687. white-space:nowrap;
  6688. text-transform:none;
  6689. }
  6690. #u141885_div {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:41px;
  6696. height:14px;
  6697. background:inherit;
  6698. background-color:rgba(0, 191, 191, 0);
  6699. border:none;
  6700. border-left:0px;
  6701. border-top:0px;
  6702. border-right:0px;
  6703. border-radius:0px;
  6704. border-bottom-right-radius:0px;
  6705. border-bottom-left-radius:0px;
  6706. -moz-box-shadow:none;
  6707. -webkit-box-shadow:none;
  6708. box-shadow:none;
  6709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6710. font-weight:400;
  6711. font-style:normal;
  6712. font-size:10px;
  6713. color:#00BFBF;
  6714. }
  6715. #u141885 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:1069px;
  6719. top:322px;
  6720. width:41px;
  6721. height:14px;
  6722. display:flex;
  6723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:10px;
  6727. color:#00BFBF;
  6728. }
  6729. #u141885 .text {
  6730. position:absolute;
  6731. align-self:center;
  6732. padding:0px 0px 0px 0px;
  6733. box-sizing:border-box;
  6734. width:100%;
  6735. }
  6736. #u141885_text {
  6737. border-width:0px;
  6738. white-space:nowrap;
  6739. text-transform:none;
  6740. }
  6741. #u141886_div {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:0px;
  6745. top:0px;
  6746. width:62px;
  6747. height:30px;
  6748. background:inherit;
  6749. background-color:rgba(24, 144, 255, 1);
  6750. border:none;
  6751. border-radius:4px;
  6752. -moz-box-shadow:none;
  6753. -webkit-box-shadow:none;
  6754. box-shadow:none;
  6755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6756. font-weight:400;
  6757. font-style:normal;
  6758. font-size:12px;
  6759. color:#FFFFFF;
  6760. }
  6761. #u141886 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:1258px;
  6765. top:336px;
  6766. width:62px;
  6767. height:30px;
  6768. display:flex;
  6769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. font-size:12px;
  6773. color:#FFFFFF;
  6774. }
  6775. #u141886 .text {
  6776. position:absolute;
  6777. align-self:center;
  6778. padding:2px 2px 2px 2px;
  6779. box-sizing:border-box;
  6780. width:100%;
  6781. }
  6782. #u141886_text {
  6783. border-width:0px;
  6784. word-wrap:break-word;
  6785. text-transform:none;
  6786. }
  6787. #u141887 {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:0px;
  6791. top:0px;
  6792. width:0px;
  6793. height:0px;
  6794. }
  6795. #u141888_div {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:375px;
  6801. height:90px;
  6802. background:inherit;
  6803. background-color:rgba(255, 255, 255, 1);
  6804. border:none;
  6805. border-radius:4px;
  6806. -moz-box-shadow:none;
  6807. -webkit-box-shadow:none;
  6808. box-shadow:none;
  6809. }
  6810. #u141888 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:956px;
  6814. top:397px;
  6815. width:375px;
  6816. height:90px;
  6817. display:flex;
  6818. }
  6819. #u141888 .text {
  6820. position:absolute;
  6821. align-self:center;
  6822. padding:2px 2px 2px 2px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u141888_text {
  6827. border-width:0px;
  6828. word-wrap:break-word;
  6829. text-transform:none;
  6830. visibility:hidden;
  6831. }
  6832. #u141889_div {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:0px;
  6836. top:0px;
  6837. width:92px;
  6838. height:20px;
  6839. background:inherit;
  6840. background-color:rgba(255, 255, 255, 0);
  6841. border:none;
  6842. border-radius:0px;
  6843. -moz-box-shadow:none;
  6844. -webkit-box-shadow:none;
  6845. box-shadow:none;
  6846. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6847. font-weight:500;
  6848. font-style:normal;
  6849. color:#000000;
  6850. }
  6851. #u141889 {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:970px;
  6855. top:410px;
  6856. width:92px;
  6857. height:20px;
  6858. display:flex;
  6859. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6860. font-weight:500;
  6861. font-style:normal;
  6862. color:#000000;
  6863. }
  6864. #u141889 .text {
  6865. position:absolute;
  6866. align-self:center;
  6867. padding:0px 0px 0px 0px;
  6868. box-sizing:border-box;
  6869. width:100%;
  6870. }
  6871. #u141889_text {
  6872. border-width:0px;
  6873. white-space:nowrap;
  6874. text-transform:none;
  6875. }
  6876. #u141890_div {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:140px;
  6882. height:40px;
  6883. background:inherit;
  6884. background-color:rgba(255, 255, 255, 0);
  6885. border:none;
  6886. border-radius:0px;
  6887. -moz-box-shadow:none;
  6888. -webkit-box-shadow:none;
  6889. box-shadow:none;
  6890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6891. font-weight:400;
  6892. font-style:normal;
  6893. font-size:12px;
  6894. color:#7F7F7F;
  6895. line-height:20px;
  6896. }
  6897. #u141890 {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:970px;
  6901. top:435px;
  6902. width:140px;
  6903. height:40px;
  6904. display:flex;
  6905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6906. font-weight:400;
  6907. font-style:normal;
  6908. font-size:12px;
  6909. color:#7F7F7F;
  6910. line-height:20px;
  6911. }
  6912. #u141890 .text {
  6913. position:absolute;
  6914. align-self:center;
  6915. padding:0px 0px 0px 0px;
  6916. box-sizing:border-box;
  6917. width:100%;
  6918. }
  6919. #u141890_text {
  6920. border-width:0px;
  6921. white-space:nowrap;
  6922. text-transform:none;
  6923. }
  6924. #u141891_div {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:0px;
  6928. top:0px;
  6929. width:41px;
  6930. height:14px;
  6931. background:inherit;
  6932. background-color:rgba(0, 191, 191, 0);
  6933. border:none;
  6934. border-left:0px;
  6935. border-top:0px;
  6936. border-right:0px;
  6937. border-radius:0px;
  6938. border-bottom-right-radius:0px;
  6939. border-bottom-left-radius:0px;
  6940. -moz-box-shadow:none;
  6941. -webkit-box-shadow:none;
  6942. box-shadow:none;
  6943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6944. font-weight:400;
  6945. font-style:normal;
  6946. font-size:10px;
  6947. color:#00BFBF;
  6948. }
  6949. #u141891 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:1069px;
  6953. top:413px;
  6954. width:41px;
  6955. height:14px;
  6956. display:flex;
  6957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. font-size:10px;
  6961. color:#00BFBF;
  6962. }
  6963. #u141891 .text {
  6964. position:absolute;
  6965. align-self:center;
  6966. padding:0px 0px 0px 0px;
  6967. box-sizing:border-box;
  6968. width:100%;
  6969. }
  6970. #u141891_text {
  6971. border-width:0px;
  6972. white-space:nowrap;
  6973. text-transform:none;
  6974. }
  6975. #u141892_div {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:0px;
  6979. top:0px;
  6980. width:62px;
  6981. height:30px;
  6982. background:inherit;
  6983. background-color:rgba(24, 144, 255, 1);
  6984. border:none;
  6985. border-radius:4px;
  6986. -moz-box-shadow:none;
  6987. -webkit-box-shadow:none;
  6988. box-shadow:none;
  6989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6990. font-weight:400;
  6991. font-style:normal;
  6992. font-size:12px;
  6993. color:#FFFFFF;
  6994. }
  6995. #u141892 {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:1258px;
  6999. top:427px;
  7000. width:62px;
  7001. height:30px;
  7002. display:flex;
  7003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7004. font-weight:400;
  7005. font-style:normal;
  7006. font-size:12px;
  7007. color:#FFFFFF;
  7008. }
  7009. #u141892 .text {
  7010. position:absolute;
  7011. align-self:center;
  7012. padding:2px 2px 2px 2px;
  7013. box-sizing:border-box;
  7014. width:100%;
  7015. }
  7016. #u141892_text {
  7017. border-width:0px;
  7018. word-wrap:break-word;
  7019. text-transform:none;
  7020. }