styles.css 127 KB

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