styles.css 249 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3419px;
  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. #u40292_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u40292 {
  28. border-width:0px;
  29. position:absolute;
  30. left:925px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u40292 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u40292_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u40293_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. #u40293 {
  73. border-width:0px;
  74. position:absolute;
  75. left:954px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u40293 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u40293_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u40294 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u40295_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. #u40295 {
  121. border-width:0px;
  122. position:absolute;
  123. left:1234px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u40295 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u40295_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u40296 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u40297_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u40297 {
  159. border-width:0px;
  160. position:absolute;
  161. left:1297px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u40297 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u40297_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u40298_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u40298 {
  189. border-width:0px;
  190. position:absolute;
  191. left:1303px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u40298 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u40298_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u40299 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u40300_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u40300 {
  227. border-width:0px;
  228. position:absolute;
  229. left:1248px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u40300 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u40300_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u40301_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u40301 {
  257. border-width:0px;
  258. position:absolute;
  259. left:1264px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u40301 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u40301_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u40302_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u40302 {
  287. border-width:0px;
  288. position:absolute;
  289. left:1255px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u40302 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u40302_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u40303_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u40303 {
  317. border-width:0px;
  318. position:absolute;
  319. left:1272px;
  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. #u40303 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u40303_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u40304_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u40304 {
  351. border-width:0px;
  352. position:absolute;
  353. left:954px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u40304 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u40304_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u40305_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. #u40305 {
  393. border-width:0px;
  394. position:absolute;
  395. left:954px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u40305 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u40305_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u40306 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u40307_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u40307 {
  431. border-width:0px;
  432. position:absolute;
  433. left:994px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u40307 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u40307_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u40308_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. #u40308 {
  472. border-width:0px;
  473. position:absolute;
  474. left:994px;
  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. #u40308 .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. #u40308_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u40309 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u40310_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u40310 {
  513. border-width:0px;
  514. position:absolute;
  515. left:1264px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u40310 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u40310_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u40311_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. #u40311 {
  554. border-width:0px;
  555. position:absolute;
  556. left:1264px;
  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. #u40311 .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. #u40311_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u40312_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. #u40312 {
  594. border-width:0px;
  595. position:absolute;
  596. left:954px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u40312 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u40312_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u40313 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u40314_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u40314 {
  632. border-width:0px;
  633. position:absolute;
  634. left:1176px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u40314 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u40314_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u40315_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. #u40315 {
  673. border-width:0px;
  674. position:absolute;
  675. left:1170px;
  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. #u40315 .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. #u40315_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u40316 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u40317_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u40317 {
  714. border-width:0px;
  715. position:absolute;
  716. left:1082px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u40317 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u40317_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u40318_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. #u40318 {
  755. border-width:0px;
  756. position:absolute;
  757. left:1076px;
  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. #u40318 .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. #u40318_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u40319_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:732px;
  786. background:inherit;
  787. background-color:rgba(244, 244, 244, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(242, 242, 242, 1);
  792. border-radius:26px;
  793. border-top-left-radius:0px;
  794. border-top-right-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. }
  799. #u40319 {
  800. border-width:0px;
  801. position:absolute;
  802. left:954px;
  803. top:107px;
  804. width:375px;
  805. height:732px;
  806. display:flex;
  807. }
  808. #u40319 .text {
  809. position:absolute;
  810. align-self:center;
  811. padding:2px 2px 2px 2px;
  812. box-sizing:border-box;
  813. width:100%;
  814. }
  815. #u40319_text {
  816. border-width:0px;
  817. word-wrap:break-word;
  818. text-transform:none;
  819. visibility:hidden;
  820. }
  821. #u40320_div {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:375px;
  827. height:732px;
  828. background:inherit;
  829. background-color:rgba(242, 242, 242, 1);
  830. box-sizing:border-box;
  831. border-width:1px;
  832. border-style:solid;
  833. border-color:rgba(242, 242, 242, 1);
  834. border-radius:26px;
  835. border-top-left-radius:0px;
  836. border-top-right-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. }
  841. #u40320 {
  842. border-width:0px;
  843. position:absolute;
  844. left:954px;
  845. top:107px;
  846. width:375px;
  847. height:732px;
  848. display:flex;
  849. }
  850. #u40320 .text {
  851. position:absolute;
  852. align-self:center;
  853. padding:2px 2px 2px 2px;
  854. box-sizing:border-box;
  855. width:100%;
  856. }
  857. #u40320_text {
  858. border-width:0px;
  859. word-wrap:break-word;
  860. text-transform:none;
  861. visibility:hidden;
  862. }
  863. #u40321_div {
  864. border-width:0px;
  865. position:absolute;
  866. left:0px;
  867. top:0px;
  868. width:375px;
  869. height:367px;
  870. background:inherit;
  871. background-color:rgba(255, 255, 255, 0.996078431372549);
  872. border:none;
  873. border-radius:0px;
  874. -moz-box-shadow:none;
  875. -webkit-box-shadow:none;
  876. box-shadow:none;
  877. }
  878. #u40321 {
  879. border-width:0px;
  880. position:absolute;
  881. left:954px;
  882. top:413px;
  883. width:375px;
  884. height:367px;
  885. display:flex;
  886. }
  887. #u40321 .text {
  888. position:absolute;
  889. align-self:center;
  890. padding:2px 2px 2px 2px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u40321_text {
  895. border-width:0px;
  896. word-wrap:break-word;
  897. text-transform:none;
  898. visibility:hidden;
  899. }
  900. #u40322_div {
  901. border-width:0px;
  902. position:absolute;
  903. left:0px;
  904. top:0px;
  905. width:343px;
  906. height:200px;
  907. background:inherit;
  908. background-color:rgba(242, 242, 242, 1);
  909. border:none;
  910. border-radius:6px;
  911. -moz-box-shadow:none;
  912. -webkit-box-shadow:none;
  913. box-shadow:none;
  914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  915. font-weight:400;
  916. font-style:normal;
  917. font-size:14px;
  918. color:#FFFFFF;
  919. }
  920. #u40322 {
  921. border-width:0px;
  922. position:absolute;
  923. left:969px;
  924. top:489px;
  925. width:343px;
  926. height:200px;
  927. display:flex;
  928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  929. font-weight:400;
  930. font-style:normal;
  931. font-size:14px;
  932. color:#FFFFFF;
  933. }
  934. #u40322 .text {
  935. position:absolute;
  936. align-self:center;
  937. padding:2px 2px 2px 2px;
  938. box-sizing:border-box;
  939. width:100%;
  940. }
  941. #u40322_text {
  942. border-width:0px;
  943. word-wrap:break-word;
  944. text-transform:none;
  945. visibility:hidden;
  946. }
  947. #u40323_img {
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:433px;
  953. height:865px;
  954. }
  955. #u40323 {
  956. border-width:0px;
  957. position:absolute;
  958. left:1861px;
  959. top:0px;
  960. width:433px;
  961. height:865px;
  962. display:flex;
  963. }
  964. #u40323 .text {
  965. position:absolute;
  966. align-self:center;
  967. padding:2px 2px 2px 2px;
  968. box-sizing:border-box;
  969. width:100%;
  970. }
  971. #u40323_text {
  972. border-width:0px;
  973. word-wrap:break-word;
  974. text-transform:none;
  975. visibility:hidden;
  976. }
  977. #u40324_div {
  978. border-width:0px;
  979. position:absolute;
  980. left:0px;
  981. top:0px;
  982. width:375px;
  983. height:40px;
  984. background:inherit;
  985. background-color:rgba(255, 255, 255, 1);
  986. border:none;
  987. border-left:0px;
  988. border-top:0px;
  989. border-right:0px;
  990. border-radius:0px;
  991. border-bottom-right-radius:0px;
  992. border-bottom-left-radius:0px;
  993. -moz-box-shadow:none;
  994. -webkit-box-shadow:none;
  995. box-shadow:none;
  996. }
  997. #u40324 {
  998. border-width:0px;
  999. position:absolute;
  1000. left:1890px;
  1001. top:67px;
  1002. width:375px;
  1003. height:40px;
  1004. display:flex;
  1005. }
  1006. #u40324 .text {
  1007. position:absolute;
  1008. align-self:center;
  1009. padding:2px 2px 2px 2px;
  1010. box-sizing:border-box;
  1011. width:100%;
  1012. }
  1013. #u40324_text {
  1014. border-width:0px;
  1015. word-wrap:break-word;
  1016. text-transform:none;
  1017. visibility:hidden;
  1018. }
  1019. #u40325 {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:0px;
  1025. height:0px;
  1026. }
  1027. #u40326_div {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:88px;
  1033. height:32px;
  1034. background:inherit;
  1035. background-color:rgba(255, 255, 255, 1);
  1036. box-sizing:border-box;
  1037. border-width:1px;
  1038. border-style:solid;
  1039. border-color:rgba(242, 242, 242, 1);
  1040. border-radius:33px;
  1041. -moz-box-shadow:none;
  1042. -webkit-box-shadow:none;
  1043. box-shadow:none;
  1044. }
  1045. #u40326 {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:2170px;
  1049. top:71px;
  1050. width:88px;
  1051. height:32px;
  1052. display:flex;
  1053. }
  1054. #u40326 .text {
  1055. position:absolute;
  1056. align-self:center;
  1057. padding:2px 2px 2px 2px;
  1058. box-sizing:border-box;
  1059. width:100%;
  1060. }
  1061. #u40326_text {
  1062. border-width:0px;
  1063. word-wrap:break-word;
  1064. text-transform:none;
  1065. visibility:hidden;
  1066. }
  1067. #u40327 {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:0px;
  1071. top:0px;
  1072. width:0px;
  1073. height:0px;
  1074. }
  1075. #u40328_img {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:0px;
  1079. top:0px;
  1080. width:18px;
  1081. height:18px;
  1082. }
  1083. #u40328 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:2233px;
  1087. top:78px;
  1088. width:18px;
  1089. height:18px;
  1090. display:flex;
  1091. }
  1092. #u40328 .text {
  1093. position:absolute;
  1094. align-self:center;
  1095. padding:2px 2px 2px 2px;
  1096. box-sizing:border-box;
  1097. width:100%;
  1098. }
  1099. #u40328_text {
  1100. border-width:0px;
  1101. word-wrap:break-word;
  1102. text-transform:none;
  1103. visibility:hidden;
  1104. }
  1105. #u40329_img {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:0px;
  1109. top:0px;
  1110. width:6px;
  1111. height:6px;
  1112. }
  1113. #u40329 {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:2239px;
  1117. top:84px;
  1118. width:6px;
  1119. height:6px;
  1120. display:flex;
  1121. }
  1122. #u40329 .text {
  1123. position:absolute;
  1124. align-self:center;
  1125. padding:2px 2px 2px 2px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u40329_text {
  1130. border-width:0px;
  1131. word-wrap:break-word;
  1132. text-transform:none;
  1133. visibility:hidden;
  1134. }
  1135. #u40330 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:0px;
  1141. height:0px;
  1142. }
  1143. #u40331_img {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:5px;
  1149. height:5px;
  1150. }
  1151. #u40331 {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:2184px;
  1155. top:85px;
  1156. width:5px;
  1157. height:5px;
  1158. display:flex;
  1159. }
  1160. #u40331 .text {
  1161. position:absolute;
  1162. align-self:center;
  1163. padding:2px 2px 2px 2px;
  1164. box-sizing:border-box;
  1165. width:100%;
  1166. }
  1167. #u40331_text {
  1168. border-width:0px;
  1169. word-wrap:break-word;
  1170. text-transform:none;
  1171. visibility:hidden;
  1172. }
  1173. #u40332_img {
  1174. border-width:0px;
  1175. position:absolute;
  1176. left:0px;
  1177. top:0px;
  1178. width:5px;
  1179. height:5px;
  1180. }
  1181. #u40332 {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:2200px;
  1185. top:85px;
  1186. width:5px;
  1187. height:5px;
  1188. display:flex;
  1189. }
  1190. #u40332 .text {
  1191. position:absolute;
  1192. align-self:center;
  1193. padding:2px 2px 2px 2px;
  1194. box-sizing:border-box;
  1195. width:100%;
  1196. }
  1197. #u40332_text {
  1198. border-width:0px;
  1199. word-wrap:break-word;
  1200. text-transform:none;
  1201. visibility:hidden;
  1202. }
  1203. #u40333_img {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:7px;
  1209. height:7px;
  1210. }
  1211. #u40333 {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:2191px;
  1215. top:84px;
  1216. width:7px;
  1217. height:7px;
  1218. display:flex;
  1219. }
  1220. #u40333 .text {
  1221. position:absolute;
  1222. align-self:center;
  1223. padding:2px 2px 2px 2px;
  1224. box-sizing:border-box;
  1225. width:100%;
  1226. }
  1227. #u40333_text {
  1228. border-width:0px;
  1229. word-wrap:break-word;
  1230. text-transform:none;
  1231. visibility:hidden;
  1232. }
  1233. #u40334_img {
  1234. border-width:0px;
  1235. position:absolute;
  1236. left:0px;
  1237. top:0px;
  1238. width:19px;
  1239. height:2px;
  1240. }
  1241. #u40334 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:2208px;
  1245. top:87px;
  1246. width:18px;
  1247. height:1px;
  1248. display:flex;
  1249. -webkit-transform:rotate(90deg);
  1250. -moz-transform:rotate(90deg);
  1251. -ms-transform:rotate(90deg);
  1252. transform:rotate(90deg);
  1253. }
  1254. #u40334 .text {
  1255. position:absolute;
  1256. align-self:center;
  1257. padding:2px 2px 2px 2px;
  1258. box-sizing:border-box;
  1259. width:100%;
  1260. }
  1261. #u40334_text {
  1262. border-width:0px;
  1263. word-wrap:break-word;
  1264. text-transform:none;
  1265. visibility:hidden;
  1266. }
  1267. #u40335_div {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:375px;
  1273. height:50px;
  1274. background:inherit;
  1275. background-color:rgba(255, 255, 255, 1);
  1276. box-sizing:border-box;
  1277. border-width:1px;
  1278. border-style:solid;
  1279. border-color:rgba(242, 242, 242, 1);
  1280. border-radius:26px;
  1281. border-top-left-radius:0px;
  1282. border-top-right-radius:0px;
  1283. -moz-box-shadow:none;
  1284. -webkit-box-shadow:none;
  1285. box-shadow:none;
  1286. }
  1287. #u40335 {
  1288. border-width:0px;
  1289. position:absolute;
  1290. left:1890px;
  1291. top:788px;
  1292. width:375px;
  1293. height:50px;
  1294. display:flex;
  1295. }
  1296. #u40335 .text {
  1297. position:absolute;
  1298. align-self:center;
  1299. padding:2px 2px 2px 2px;
  1300. box-sizing:border-box;
  1301. width:100%;
  1302. }
  1303. #u40335_text {
  1304. border-width:0px;
  1305. word-wrap:break-word;
  1306. text-transform:none;
  1307. visibility:hidden;
  1308. }
  1309. #u40336 {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:0px;
  1313. top:0px;
  1314. width:0px;
  1315. height:0px;
  1316. }
  1317. #u40337_img {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:0px;
  1321. top:0px;
  1322. width:24px;
  1323. height:24px;
  1324. }
  1325. #u40337 {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:1930px;
  1329. top:792px;
  1330. width:24px;
  1331. height:24px;
  1332. display:flex;
  1333. font-size:8px;
  1334. }
  1335. #u40337 .text {
  1336. position:absolute;
  1337. align-self:center;
  1338. padding:2px 2px 2px 2px;
  1339. box-sizing:border-box;
  1340. width:100%;
  1341. }
  1342. #u40337_text {
  1343. border-width:0px;
  1344. word-wrap:break-word;
  1345. text-transform:none;
  1346. }
  1347. #u40338_div {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:0px;
  1351. top:0px;
  1352. width:25px;
  1353. height:17px;
  1354. background:inherit;
  1355. background-color:rgba(255, 255, 255, 0);
  1356. border:none;
  1357. border-radius:0px;
  1358. -moz-box-shadow:none;
  1359. -webkit-box-shadow:none;
  1360. box-shadow:none;
  1361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1362. font-weight:400;
  1363. font-style:normal;
  1364. font-size:12px;
  1365. }
  1366. #u40338 {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:1930px;
  1370. top:817px;
  1371. width:25px;
  1372. height:17px;
  1373. display:flex;
  1374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1375. font-weight:400;
  1376. font-style:normal;
  1377. font-size:12px;
  1378. }
  1379. #u40338 .text {
  1380. position:absolute;
  1381. align-self:flex-start;
  1382. padding:0px 0px 0px 0px;
  1383. box-sizing:border-box;
  1384. width:100%;
  1385. }
  1386. #u40338_text {
  1387. border-width:0px;
  1388. white-space:nowrap;
  1389. text-transform:none;
  1390. }
  1391. #u40339 {
  1392. border-width:0px;
  1393. position:absolute;
  1394. left:0px;
  1395. top:0px;
  1396. width:0px;
  1397. height:0px;
  1398. }
  1399. #u40340_img {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:0px;
  1403. top:0px;
  1404. width:24px;
  1405. height:24px;
  1406. }
  1407. #u40340 {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:2200px;
  1411. top:794px;
  1412. width:24px;
  1413. height:24px;
  1414. display:flex;
  1415. font-size:8px;
  1416. }
  1417. #u40340 .text {
  1418. position:absolute;
  1419. align-self:center;
  1420. padding:2px 2px 2px 2px;
  1421. box-sizing:border-box;
  1422. width:100%;
  1423. }
  1424. #u40340_text {
  1425. border-width:0px;
  1426. word-wrap:break-word;
  1427. text-transform:none;
  1428. }
  1429. #u40341_div {
  1430. border-width:0px;
  1431. position:absolute;
  1432. left:0px;
  1433. top:0px;
  1434. width:25px;
  1435. height:17px;
  1436. background:inherit;
  1437. background-color:rgba(255, 255, 255, 0);
  1438. border:none;
  1439. border-radius:0px;
  1440. -moz-box-shadow:none;
  1441. -webkit-box-shadow:none;
  1442. box-shadow:none;
  1443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1444. font-weight:400;
  1445. font-style:normal;
  1446. font-size:12px;
  1447. }
  1448. #u40341 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:2200px;
  1452. top:819px;
  1453. width:25px;
  1454. height:17px;
  1455. display:flex;
  1456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1457. font-weight:400;
  1458. font-style:normal;
  1459. font-size:12px;
  1460. }
  1461. #u40341 .text {
  1462. position:absolute;
  1463. align-self:flex-start;
  1464. padding:0px 0px 0px 0px;
  1465. box-sizing:border-box;
  1466. width:100%;
  1467. }
  1468. #u40341_text {
  1469. border-width:0px;
  1470. white-space:nowrap;
  1471. text-transform:none;
  1472. }
  1473. #u40342_div {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:375px;
  1479. height:681px;
  1480. background:inherit;
  1481. background-color:rgba(242, 242, 242, 0.462745098039216);
  1482. border:none;
  1483. border-radius:0px;
  1484. -moz-box-shadow:none;
  1485. -webkit-box-shadow:none;
  1486. box-shadow:none;
  1487. }
  1488. #u40342 {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:1890px;
  1492. top:107px;
  1493. width:375px;
  1494. height:681px;
  1495. display:flex;
  1496. }
  1497. #u40342 .text {
  1498. position:absolute;
  1499. align-self:center;
  1500. padding:2px 2px 2px 2px;
  1501. box-sizing:border-box;
  1502. width:100%;
  1503. }
  1504. #u40342_text {
  1505. border-width:0px;
  1506. word-wrap:break-word;
  1507. text-transform:none;
  1508. visibility:hidden;
  1509. }
  1510. #u40343 {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:0px;
  1514. top:0px;
  1515. width:0px;
  1516. height:0px;
  1517. }
  1518. #u40344_img {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:0px;
  1522. top:0px;
  1523. width:24px;
  1524. height:24px;
  1525. }
  1526. #u40344 {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:2112px;
  1530. top:792px;
  1531. width:24px;
  1532. height:24px;
  1533. display:flex;
  1534. font-size:8px;
  1535. }
  1536. #u40344 .text {
  1537. position:absolute;
  1538. align-self:center;
  1539. padding:2px 2px 2px 2px;
  1540. box-sizing:border-box;
  1541. width:100%;
  1542. }
  1543. #u40344_text {
  1544. border-width:0px;
  1545. word-wrap:break-word;
  1546. text-transform:none;
  1547. }
  1548. #u40345_div {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:0px;
  1552. top:0px;
  1553. width:37px;
  1554. height:17px;
  1555. background:inherit;
  1556. background-color:rgba(255, 255, 255, 0);
  1557. border:none;
  1558. border-radius:0px;
  1559. -moz-box-shadow:none;
  1560. -webkit-box-shadow:none;
  1561. box-shadow:none;
  1562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1563. font-weight:400;
  1564. font-style:normal;
  1565. font-size:12px;
  1566. }
  1567. #u40345 {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:2106px;
  1571. top:817px;
  1572. width:37px;
  1573. height:17px;
  1574. display:flex;
  1575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1576. font-weight:400;
  1577. font-style:normal;
  1578. font-size:12px;
  1579. }
  1580. #u40345 .text {
  1581. position:absolute;
  1582. align-self:flex-start;
  1583. padding:0px 0px 0px 0px;
  1584. box-sizing:border-box;
  1585. width:100%;
  1586. }
  1587. #u40345_text {
  1588. border-width:0px;
  1589. white-space:nowrap;
  1590. text-transform:none;
  1591. }
  1592. #u40346 {
  1593. border-width:0px;
  1594. position:absolute;
  1595. left:0px;
  1596. top:0px;
  1597. width:0px;
  1598. height:0px;
  1599. }
  1600. #u40347_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:24px;
  1606. height:24px;
  1607. }
  1608. #u40347 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:2018px;
  1612. top:792px;
  1613. width:24px;
  1614. height:24px;
  1615. display:flex;
  1616. font-size:8px;
  1617. }
  1618. #u40347 .text {
  1619. position:absolute;
  1620. align-self:center;
  1621. padding:2px 2px 2px 2px;
  1622. box-sizing:border-box;
  1623. width:100%;
  1624. }
  1625. #u40347_text {
  1626. border-width:0px;
  1627. word-wrap:break-word;
  1628. text-transform:none;
  1629. }
  1630. #u40348_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:37px;
  1636. height:17px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 0);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:none;
  1642. -webkit-box-shadow:none;
  1643. box-shadow:none;
  1644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1645. font-weight:400;
  1646. font-style:normal;
  1647. font-size:12px;
  1648. }
  1649. #u40348 {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:2012px;
  1653. top:817px;
  1654. width:37px;
  1655. height:17px;
  1656. display:flex;
  1657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1658. font-weight:400;
  1659. font-style:normal;
  1660. font-size:12px;
  1661. }
  1662. #u40348 .text {
  1663. position:absolute;
  1664. align-self:flex-start;
  1665. padding:0px 0px 0px 0px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u40348_text {
  1670. border-width:0px;
  1671. white-space:nowrap;
  1672. text-transform:none;
  1673. }
  1674. #u40349_div {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:375px;
  1680. height:732px;
  1681. background:inherit;
  1682. background-color:rgba(244, 244, 244, 1);
  1683. box-sizing:border-box;
  1684. border-width:1px;
  1685. border-style:solid;
  1686. border-color:rgba(242, 242, 242, 1);
  1687. border-radius:26px;
  1688. border-top-left-radius:0px;
  1689. border-top-right-radius:0px;
  1690. -moz-box-shadow:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. }
  1694. #u40349 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:1890px;
  1698. top:107px;
  1699. width:375px;
  1700. height:732px;
  1701. display:flex;
  1702. }
  1703. #u40349 .text {
  1704. position:absolute;
  1705. align-self:center;
  1706. padding:2px 2px 2px 2px;
  1707. box-sizing:border-box;
  1708. width:100%;
  1709. }
  1710. #u40349_text {
  1711. border-width:0px;
  1712. word-wrap:break-word;
  1713. text-transform:none;
  1714. visibility:hidden;
  1715. }
  1716. #u40350_img {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:376px;
  1722. height:818px;
  1723. }
  1724. #u40350 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:1889px;
  1728. top:24px;
  1729. width:376px;
  1730. height:818px;
  1731. display:flex;
  1732. }
  1733. #u40350 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u40350_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u40352_img {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:433px;
  1752. height:865px;
  1753. }
  1754. #u40352 {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:433px;
  1760. height:865px;
  1761. display:flex;
  1762. }
  1763. #u40352 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:2px 2px 2px 2px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u40352_text {
  1771. border-width:0px;
  1772. word-wrap:break-word;
  1773. text-transform:none;
  1774. visibility:hidden;
  1775. }
  1776. #u40353_div {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:375px;
  1782. height:40px;
  1783. background:inherit;
  1784. background-color:rgba(255, 255, 255, 1);
  1785. box-sizing:border-box;
  1786. border-width:1px;
  1787. border-style:solid;
  1788. border-color:rgba(215, 215, 215, 1);
  1789. border-left:0px;
  1790. border-top:0px;
  1791. border-right:0px;
  1792. border-radius:0px;
  1793. border-bottom-right-radius:0px;
  1794. border-bottom-left-radius:0px;
  1795. -moz-box-shadow:none;
  1796. -webkit-box-shadow:none;
  1797. box-shadow:none;
  1798. }
  1799. #u40353 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:29px;
  1803. top:67px;
  1804. width:375px;
  1805. height:40px;
  1806. display:flex;
  1807. }
  1808. #u40353 .text {
  1809. position:absolute;
  1810. align-self:center;
  1811. padding:2px 2px 2px 2px;
  1812. box-sizing:border-box;
  1813. width:100%;
  1814. }
  1815. #u40353_text {
  1816. border-width:0px;
  1817. word-wrap:break-word;
  1818. text-transform:none;
  1819. visibility:hidden;
  1820. }
  1821. #u40354 {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:0px;
  1825. top:0px;
  1826. width:0px;
  1827. height:0px;
  1828. }
  1829. #u40355_div {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:0px;
  1833. top:0px;
  1834. width:88px;
  1835. height:32px;
  1836. background:inherit;
  1837. background-color:rgba(255, 255, 255, 1);
  1838. box-sizing:border-box;
  1839. border-width:1px;
  1840. border-style:solid;
  1841. border-color:rgba(242, 242, 242, 1);
  1842. border-radius:33px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. }
  1847. #u40355 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:309px;
  1851. top:71px;
  1852. width:88px;
  1853. height:32px;
  1854. display:flex;
  1855. }
  1856. #u40355 .text {
  1857. position:absolute;
  1858. align-self:center;
  1859. padding:2px 2px 2px 2px;
  1860. box-sizing:border-box;
  1861. width:100%;
  1862. }
  1863. #u40355_text {
  1864. border-width:0px;
  1865. word-wrap:break-word;
  1866. text-transform:none;
  1867. visibility:hidden;
  1868. }
  1869. #u40356 {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:0px;
  1875. height:0px;
  1876. }
  1877. #u40357_img {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:0px;
  1881. top:0px;
  1882. width:18px;
  1883. height:18px;
  1884. }
  1885. #u40357 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:372px;
  1889. top:78px;
  1890. width:18px;
  1891. height:18px;
  1892. display:flex;
  1893. }
  1894. #u40357 .text {
  1895. position:absolute;
  1896. align-self:center;
  1897. padding:2px 2px 2px 2px;
  1898. box-sizing:border-box;
  1899. width:100%;
  1900. }
  1901. #u40357_text {
  1902. border-width:0px;
  1903. word-wrap:break-word;
  1904. text-transform:none;
  1905. visibility:hidden;
  1906. }
  1907. #u40358_img {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:6px;
  1913. height:6px;
  1914. }
  1915. #u40358 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:378px;
  1919. top:84px;
  1920. width:6px;
  1921. height:6px;
  1922. display:flex;
  1923. }
  1924. #u40358 .text {
  1925. position:absolute;
  1926. align-self:center;
  1927. padding:2px 2px 2px 2px;
  1928. box-sizing:border-box;
  1929. width:100%;
  1930. }
  1931. #u40358_text {
  1932. border-width:0px;
  1933. word-wrap:break-word;
  1934. text-transform:none;
  1935. visibility:hidden;
  1936. }
  1937. #u40359 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:0px;
  1943. height:0px;
  1944. }
  1945. #u40360_img {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:5px;
  1951. height:5px;
  1952. }
  1953. #u40360 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:323px;
  1957. top:85px;
  1958. width:5px;
  1959. height:5px;
  1960. display:flex;
  1961. }
  1962. #u40360 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 2px 2px 2px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u40360_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. visibility:hidden;
  1974. }
  1975. #u40361_img {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:5px;
  1981. height:5px;
  1982. }
  1983. #u40361 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:339px;
  1987. top:85px;
  1988. width:5px;
  1989. height:5px;
  1990. display:flex;
  1991. }
  1992. #u40361 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:2px 2px 2px 2px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u40361_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. visibility:hidden;
  2004. }
  2005. #u40362_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:7px;
  2011. height:7px;
  2012. }
  2013. #u40362 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:330px;
  2017. top:84px;
  2018. width:7px;
  2019. height:7px;
  2020. display:flex;
  2021. }
  2022. #u40362 .text {
  2023. position:absolute;
  2024. align-self:center;
  2025. padding:2px 2px 2px 2px;
  2026. box-sizing:border-box;
  2027. width:100%;
  2028. }
  2029. #u40362_text {
  2030. border-width:0px;
  2031. word-wrap:break-word;
  2032. text-transform:none;
  2033. visibility:hidden;
  2034. }
  2035. #u40363_img {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:19px;
  2041. height:2px;
  2042. }
  2043. #u40363 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:347px;
  2047. top:87px;
  2048. width:18px;
  2049. height:1px;
  2050. display:flex;
  2051. -webkit-transform:rotate(90deg);
  2052. -moz-transform:rotate(90deg);
  2053. -ms-transform:rotate(90deg);
  2054. transform:rotate(90deg);
  2055. }
  2056. #u40363 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 2px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u40363_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. visibility:hidden;
  2068. }
  2069. #u40364_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:375px;
  2075. height:44px;
  2076. }
  2077. #u40364 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:29px;
  2081. top:24px;
  2082. width:375px;
  2083. height:44px;
  2084. display:flex;
  2085. }
  2086. #u40364 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 2px 2px 2px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u40364_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u40365_div {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:375px;
  2105. height:50px;
  2106. background:inherit;
  2107. background-color:rgba(255, 255, 255, 1);
  2108. box-sizing:border-box;
  2109. border-width:1px;
  2110. border-style:solid;
  2111. border-color:rgba(242, 242, 242, 1);
  2112. border-radius:26px;
  2113. border-top-left-radius:0px;
  2114. border-top-right-radius:0px;
  2115. -moz-box-shadow:none;
  2116. -webkit-box-shadow:none;
  2117. box-shadow:none;
  2118. }
  2119. #u40365 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:29px;
  2123. top:788px;
  2124. width:375px;
  2125. height:50px;
  2126. display:flex;
  2127. }
  2128. #u40365 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 2px 2px 2px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u40365_text {
  2136. border-width:0px;
  2137. word-wrap:break-word;
  2138. text-transform:none;
  2139. visibility:hidden;
  2140. }
  2141. #u40366 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:0px;
  2147. height:0px;
  2148. }
  2149. #u40367_img {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:0px;
  2153. top:0px;
  2154. width:24px;
  2155. height:24px;
  2156. }
  2157. #u40367 {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:69px;
  2161. top:792px;
  2162. width:24px;
  2163. height:24px;
  2164. display:flex;
  2165. font-size:8px;
  2166. }
  2167. #u40367 .text {
  2168. position:absolute;
  2169. align-self:center;
  2170. padding:2px 2px 2px 2px;
  2171. box-sizing:border-box;
  2172. width:100%;
  2173. }
  2174. #u40367_text {
  2175. border-width:0px;
  2176. word-wrap:break-word;
  2177. text-transform:none;
  2178. }
  2179. #u40368_div {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:0px;
  2183. top:0px;
  2184. width:25px;
  2185. height:17px;
  2186. background:inherit;
  2187. background-color:rgba(255, 255, 255, 0);
  2188. border:none;
  2189. border-radius:0px;
  2190. -moz-box-shadow:none;
  2191. -webkit-box-shadow:none;
  2192. box-shadow:none;
  2193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:12px;
  2197. }
  2198. #u40368 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:69px;
  2202. top:817px;
  2203. width:25px;
  2204. height:17px;
  2205. display:flex;
  2206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2207. font-weight:400;
  2208. font-style:normal;
  2209. font-size:12px;
  2210. }
  2211. #u40368 .text {
  2212. position:absolute;
  2213. align-self:flex-start;
  2214. padding:0px 0px 0px 0px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u40368_text {
  2219. border-width:0px;
  2220. white-space:nowrap;
  2221. text-transform:none;
  2222. }
  2223. #u40369 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:0px;
  2229. height:0px;
  2230. }
  2231. #u40370_img {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:24px;
  2237. height:24px;
  2238. }
  2239. #u40370 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:339px;
  2243. top:794px;
  2244. width:24px;
  2245. height:24px;
  2246. display:flex;
  2247. font-size:8px;
  2248. }
  2249. #u40370 .text {
  2250. position:absolute;
  2251. align-self:center;
  2252. padding:2px 2px 2px 2px;
  2253. box-sizing:border-box;
  2254. width:100%;
  2255. }
  2256. #u40370_text {
  2257. border-width:0px;
  2258. word-wrap:break-word;
  2259. text-transform:none;
  2260. }
  2261. #u40371_div {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:25px;
  2267. height:17px;
  2268. background:inherit;
  2269. background-color:rgba(255, 255, 255, 0);
  2270. border:none;
  2271. border-radius:0px;
  2272. -moz-box-shadow:none;
  2273. -webkit-box-shadow:none;
  2274. box-shadow:none;
  2275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2276. font-weight:400;
  2277. font-style:normal;
  2278. font-size:12px;
  2279. }
  2280. #u40371 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:339px;
  2284. top:819px;
  2285. width:25px;
  2286. height:17px;
  2287. display:flex;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:12px;
  2292. }
  2293. #u40371 .text {
  2294. position:absolute;
  2295. align-self:flex-start;
  2296. padding:0px 0px 0px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u40371_text {
  2301. border-width:0px;
  2302. white-space:nowrap;
  2303. text-transform:none;
  2304. }
  2305. #u40372_div {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:375px;
  2311. height:681px;
  2312. background:inherit;
  2313. background-color:rgba(242, 242, 242, 0.462745098039216);
  2314. border:none;
  2315. border-radius:0px;
  2316. -moz-box-shadow:none;
  2317. -webkit-box-shadow:none;
  2318. box-shadow:none;
  2319. }
  2320. #u40372 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:29px;
  2324. top:107px;
  2325. width:375px;
  2326. height:681px;
  2327. display:flex;
  2328. }
  2329. #u40372 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 2px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u40372_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u40373 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:0px;
  2348. height:0px;
  2349. }
  2350. #u40374_img {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:24px;
  2356. height:24px;
  2357. }
  2358. #u40374 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:251px;
  2362. top:792px;
  2363. width:24px;
  2364. height:24px;
  2365. display:flex;
  2366. font-size:8px;
  2367. }
  2368. #u40374 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:2px 2px 2px 2px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u40374_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. }
  2380. #u40375_div {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:37px;
  2386. height:17px;
  2387. background:inherit;
  2388. background-color:rgba(255, 255, 255, 0);
  2389. border:none;
  2390. border-radius:0px;
  2391. -moz-box-shadow:none;
  2392. -webkit-box-shadow:none;
  2393. box-shadow:none;
  2394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:12px;
  2398. }
  2399. #u40375 {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:245px;
  2403. top:817px;
  2404. width:37px;
  2405. height:17px;
  2406. display:flex;
  2407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2408. font-weight:400;
  2409. font-style:normal;
  2410. font-size:12px;
  2411. }
  2412. #u40375 .text {
  2413. position:absolute;
  2414. align-self:flex-start;
  2415. padding:0px 0px 0px 0px;
  2416. box-sizing:border-box;
  2417. width:100%;
  2418. }
  2419. #u40375_text {
  2420. border-width:0px;
  2421. white-space:nowrap;
  2422. text-transform:none;
  2423. }
  2424. #u40376 {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:0px;
  2428. top:0px;
  2429. width:0px;
  2430. height:0px;
  2431. }
  2432. #u40377_img {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:24px;
  2438. height:24px;
  2439. }
  2440. #u40377 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:157px;
  2444. top:792px;
  2445. width:24px;
  2446. height:24px;
  2447. display:flex;
  2448. font-size:8px;
  2449. }
  2450. #u40377 .text {
  2451. position:absolute;
  2452. align-self:center;
  2453. padding:2px 2px 2px 2px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u40377_text {
  2458. border-width:0px;
  2459. word-wrap:break-word;
  2460. text-transform:none;
  2461. }
  2462. #u40378_div {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:37px;
  2468. height:17px;
  2469. background:inherit;
  2470. background-color:rgba(255, 255, 255, 0);
  2471. border:none;
  2472. border-radius:0px;
  2473. -moz-box-shadow:none;
  2474. -webkit-box-shadow:none;
  2475. box-shadow:none;
  2476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2477. font-weight:400;
  2478. font-style:normal;
  2479. font-size:12px;
  2480. }
  2481. #u40378 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:151px;
  2485. top:817px;
  2486. width:37px;
  2487. height:17px;
  2488. display:flex;
  2489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2490. font-weight:400;
  2491. font-style:normal;
  2492. font-size:12px;
  2493. }
  2494. #u40378 .text {
  2495. position:absolute;
  2496. align-self:flex-start;
  2497. padding:0px 0px 0px 0px;
  2498. box-sizing:border-box;
  2499. width:100%;
  2500. }
  2501. #u40378_text {
  2502. border-width:0px;
  2503. white-space:nowrap;
  2504. text-transform:none;
  2505. }
  2506. #u40379_div {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:375px;
  2512. height:772px;
  2513. background:inherit;
  2514. background-color:rgba(24, 144, 255, 1);
  2515. border:none;
  2516. border-top:0px;
  2517. border-radius:28px;
  2518. border-top-left-radius:0px;
  2519. border-top-right-radius:0px;
  2520. -moz-box-shadow:none;
  2521. -webkit-box-shadow:none;
  2522. box-shadow:none;
  2523. }
  2524. #u40379 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:29px;
  2528. top:68px;
  2529. width:375px;
  2530. height:772px;
  2531. display:flex;
  2532. }
  2533. #u40379 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 2px 2px 2px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u40379_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. visibility:hidden;
  2545. }
  2546. #u40380_div {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:12px;
  2552. height:12px;
  2553. background:inherit;
  2554. background-color:rgba(255, 255, 255, 0);
  2555. box-sizing:border-box;
  2556. border-width:2px;
  2557. border-style:solid;
  2558. border-color:rgba(255, 255, 255, 1);
  2559. border-right:0px;
  2560. border-bottom:0px;
  2561. border-radius:0px;
  2562. border-top-right-radius:0px;
  2563. border-bottom-left-radius:0px;
  2564. -moz-box-shadow:none;
  2565. -webkit-box-shadow:none;
  2566. box-shadow:none;
  2567. }
  2568. #u40380 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:39px;
  2572. top:81px;
  2573. width:12px;
  2574. height:12px;
  2575. display:flex;
  2576. -webkit-transform:rotate(315deg);
  2577. -moz-transform:rotate(315deg);
  2578. -ms-transform:rotate(315deg);
  2579. transform:rotate(315deg);
  2580. }
  2581. #u40380 .text {
  2582. position:absolute;
  2583. align-self:center;
  2584. padding:2px 2px 2px 2px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u40380_text {
  2589. border-width:0px;
  2590. word-wrap:break-word;
  2591. text-transform:none;
  2592. visibility:hidden;
  2593. }
  2594. #u40381 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:0px;
  2600. height:0px;
  2601. }
  2602. #u40382_div {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:0px;
  2606. top:0px;
  2607. width:375px;
  2608. height:60px;
  2609. background:inherit;
  2610. background-color:rgba(255, 255, 255, 1);
  2611. border:none;
  2612. border-top:0px;
  2613. border-radius:28px;
  2614. border-top-left-radius:0px;
  2615. border-top-right-radius:0px;
  2616. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2617. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2618. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:14px;
  2623. color:#FFFFFF;
  2624. }
  2625. #u40382 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:29px;
  2629. top:780px;
  2630. width:375px;
  2631. height:60px;
  2632. display:flex;
  2633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2634. font-weight:400;
  2635. font-style:normal;
  2636. font-size:14px;
  2637. color:#FFFFFF;
  2638. }
  2639. #u40382 .text {
  2640. position:absolute;
  2641. align-self:center;
  2642. padding:2px 2px 2px 2px;
  2643. box-sizing:border-box;
  2644. width:100%;
  2645. }
  2646. #u40382_text {
  2647. border-width:0px;
  2648. word-wrap:break-word;
  2649. text-transform:none;
  2650. visibility:hidden;
  2651. }
  2652. #u40383_div {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:324px;
  2658. height:40px;
  2659. background:inherit;
  2660. background-color:rgba(0, 137, 254, 1);
  2661. border:none;
  2662. border-radius:63px;
  2663. -moz-box-shadow:none;
  2664. -webkit-box-shadow:none;
  2665. box-shadow:none;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:14px;
  2670. color:#FFFFFF;
  2671. }
  2672. #u40383 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:57px;
  2676. top:789px;
  2677. width:324px;
  2678. height:40px;
  2679. display:flex;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:14px;
  2684. color:#FFFFFF;
  2685. }
  2686. #u40383 .text {
  2687. position:absolute;
  2688. align-self:center;
  2689. padding:2px 2px 2px 2px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u40383_text {
  2694. border-width:0px;
  2695. word-wrap:break-word;
  2696. text-transform:none;
  2697. }
  2698. #u40384 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:0px;
  2704. height:0px;
  2705. }
  2706. #u40385_div {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:88px;
  2712. height:32px;
  2713. background:inherit;
  2714. background-color:rgba(255, 255, 255, 1);
  2715. box-sizing:border-box;
  2716. border-width:1px;
  2717. border-style:solid;
  2718. border-color:rgba(242, 242, 242, 1);
  2719. border-radius:33px;
  2720. -moz-box-shadow:none;
  2721. -webkit-box-shadow:none;
  2722. box-shadow:none;
  2723. }
  2724. #u40385 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:309px;
  2728. top:71px;
  2729. width:88px;
  2730. height:32px;
  2731. display:flex;
  2732. }
  2733. #u40385 .text {
  2734. position:absolute;
  2735. align-self:center;
  2736. padding:2px 2px 2px 2px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u40385_text {
  2741. border-width:0px;
  2742. word-wrap:break-word;
  2743. text-transform:none;
  2744. visibility:hidden;
  2745. }
  2746. #u40386 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:0px;
  2750. top:0px;
  2751. width:0px;
  2752. height:0px;
  2753. }
  2754. #u40387_img {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:18px;
  2760. height:18px;
  2761. }
  2762. #u40387 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:372px;
  2766. top:78px;
  2767. width:18px;
  2768. height:18px;
  2769. display:flex;
  2770. }
  2771. #u40387 .text {
  2772. position:absolute;
  2773. align-self:center;
  2774. padding:2px 2px 2px 2px;
  2775. box-sizing:border-box;
  2776. width:100%;
  2777. }
  2778. #u40387_text {
  2779. border-width:0px;
  2780. word-wrap:break-word;
  2781. text-transform:none;
  2782. visibility:hidden;
  2783. }
  2784. #u40388_img {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:6px;
  2790. height:6px;
  2791. }
  2792. #u40388 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:378px;
  2796. top:84px;
  2797. width:6px;
  2798. height:6px;
  2799. display:flex;
  2800. }
  2801. #u40388 .text {
  2802. position:absolute;
  2803. align-self:center;
  2804. padding:2px 2px 2px 2px;
  2805. box-sizing:border-box;
  2806. width:100%;
  2807. }
  2808. #u40388_text {
  2809. border-width:0px;
  2810. word-wrap:break-word;
  2811. text-transform:none;
  2812. visibility:hidden;
  2813. }
  2814. #u40389 {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:0px;
  2818. top:0px;
  2819. width:0px;
  2820. height:0px;
  2821. }
  2822. #u40390_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:5px;
  2828. height:5px;
  2829. }
  2830. #u40390 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:323px;
  2834. top:85px;
  2835. width:5px;
  2836. height:5px;
  2837. display:flex;
  2838. }
  2839. #u40390 .text {
  2840. position:absolute;
  2841. align-self:center;
  2842. padding:2px 2px 2px 2px;
  2843. box-sizing:border-box;
  2844. width:100%;
  2845. }
  2846. #u40390_text {
  2847. border-width:0px;
  2848. word-wrap:break-word;
  2849. text-transform:none;
  2850. visibility:hidden;
  2851. }
  2852. #u40391_img {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:5px;
  2858. height:5px;
  2859. }
  2860. #u40391 {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:339px;
  2864. top:85px;
  2865. width:5px;
  2866. height:5px;
  2867. display:flex;
  2868. }
  2869. #u40391 .text {
  2870. position:absolute;
  2871. align-self:center;
  2872. padding:2px 2px 2px 2px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u40391_text {
  2877. border-width:0px;
  2878. word-wrap:break-word;
  2879. text-transform:none;
  2880. visibility:hidden;
  2881. }
  2882. #u40392_img {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:0px;
  2886. top:0px;
  2887. width:7px;
  2888. height:7px;
  2889. }
  2890. #u40392 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:330px;
  2894. top:84px;
  2895. width:7px;
  2896. height:7px;
  2897. display:flex;
  2898. }
  2899. #u40392 .text {
  2900. position:absolute;
  2901. align-self:center;
  2902. padding:2px 2px 2px 2px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u40392_text {
  2907. border-width:0px;
  2908. word-wrap:break-word;
  2909. text-transform:none;
  2910. visibility:hidden;
  2911. }
  2912. #u40393_img {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:19px;
  2918. height:2px;
  2919. }
  2920. #u40393 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:347px;
  2924. top:87px;
  2925. width:18px;
  2926. height:1px;
  2927. display:flex;
  2928. -webkit-transform:rotate(90deg);
  2929. -moz-transform:rotate(90deg);
  2930. -ms-transform:rotate(90deg);
  2931. transform:rotate(90deg);
  2932. }
  2933. #u40393 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 2px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u40393_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u40394_div {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:169px;
  2952. height:40px;
  2953. background:inherit;
  2954. background-color:rgba(255, 255, 255, 0);
  2955. border:none;
  2956. border-left:0px;
  2957. border-top:0px;
  2958. border-right:0px;
  2959. border-radius:0px;
  2960. border-bottom-right-radius:0px;
  2961. border-bottom-left-radius:0px;
  2962. -moz-box-shadow:none;
  2963. -webkit-box-shadow:none;
  2964. box-shadow:none;
  2965. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2966. font-weight:500;
  2967. font-style:normal;
  2968. font-size:28px;
  2969. color:#FFFFFF;
  2970. text-align:right;
  2971. }
  2972. #u40394 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:132px;
  2976. top:341px;
  2977. width:169px;
  2978. height:40px;
  2979. display:flex;
  2980. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2981. font-weight:500;
  2982. font-style:normal;
  2983. font-size:28px;
  2984. color:#FFFFFF;
  2985. text-align:right;
  2986. }
  2987. #u40394 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:0px 0px 0px 0px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u40394_text {
  2995. border-width:0px;
  2996. white-space:nowrap;
  2997. text-transform:none;
  2998. }
  2999. #u40395_div {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:360px;
  3005. height:384px;
  3006. background:inherit;
  3007. background-color:rgba(255, 255, 255, 1);
  3008. border:none;
  3009. border-bottom:0px;
  3010. border-radius:18px;
  3011. border-bottom-right-radius:0px;
  3012. border-bottom-left-radius:0px;
  3013. -moz-box-shadow:none;
  3014. -webkit-box-shadow:none;
  3015. box-shadow:none;
  3016. }
  3017. #u40395 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:37px;
  3021. top:400px;
  3022. width:360px;
  3023. height:384px;
  3024. display:flex;
  3025. }
  3026. #u40395 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 2px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u40395_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u40396_div {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:73px;
  3045. height:25px;
  3046. background:inherit;
  3047. background-color:rgba(255, 255, 255, 0);
  3048. border:none;
  3049. border-left:0px;
  3050. border-top:0px;
  3051. border-right:0px;
  3052. border-radius:0px;
  3053. border-bottom-right-radius:0px;
  3054. border-bottom-left-radius:0px;
  3055. -moz-box-shadow:none;
  3056. -webkit-box-shadow:none;
  3057. box-shadow:none;
  3058. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3059. font-weight:500;
  3060. font-style:normal;
  3061. font-size:18px;
  3062. color:#5C93FF;
  3063. text-align:center;
  3064. }
  3065. #u40396 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:180px;
  3069. top:433px;
  3070. width:73px;
  3071. height:25px;
  3072. display:flex;
  3073. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3074. font-weight:500;
  3075. font-style:normal;
  3076. font-size:18px;
  3077. color:#5C93FF;
  3078. text-align:center;
  3079. }
  3080. #u40396 .text {
  3081. position:absolute;
  3082. align-self:center;
  3083. padding:0px 0px 0px 0px;
  3084. box-sizing:border-box;
  3085. width:100%;
  3086. }
  3087. #u40396_text {
  3088. border-width:0px;
  3089. white-space:nowrap;
  3090. text-transform:none;
  3091. }
  3092. #u40397_img {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:30px;
  3098. height:30px;
  3099. }
  3100. #u40397 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:57px;
  3104. top:543px;
  3105. width:30px;
  3106. height:30px;
  3107. display:flex;
  3108. color:#FFFFFF;
  3109. }
  3110. #u40397 .text {
  3111. position:absolute;
  3112. align-self:center;
  3113. padding:2px 2px 2px 2px;
  3114. box-sizing:border-box;
  3115. width:100%;
  3116. }
  3117. #u40397_text {
  3118. border-width:0px;
  3119. word-wrap:break-word;
  3120. text-transform:none;
  3121. }
  3122. #u40398_div {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:109px;
  3128. height:25px;
  3129. background:inherit;
  3130. background-color:rgba(255, 255, 255, 0);
  3131. border:none;
  3132. border-left:0px;
  3133. border-top:0px;
  3134. border-right:0px;
  3135. border-radius:0px;
  3136. border-bottom-right-radius:0px;
  3137. border-bottom-left-radius:0px;
  3138. -moz-box-shadow:none;
  3139. -webkit-box-shadow:none;
  3140. box-shadow:none;
  3141. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3142. font-weight:500;
  3143. font-style:normal;
  3144. font-size:18px;
  3145. color:#5C93FF;
  3146. }
  3147. #u40398 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:95px;
  3151. top:543px;
  3152. width:109px;
  3153. height:25px;
  3154. display:flex;
  3155. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3156. font-weight:500;
  3157. font-style:normal;
  3158. font-size:18px;
  3159. color:#5C93FF;
  3160. }
  3161. #u40398 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:0px 0px 0px 0px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u40398_text {
  3169. border-width:0px;
  3170. white-space:nowrap;
  3171. text-transform:none;
  3172. }
  3173. #u40399_div {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:169px;
  3179. height:30px;
  3180. background:inherit;
  3181. background-color:rgba(255, 255, 255, 0);
  3182. border:none;
  3183. border-left:0px;
  3184. border-top:0px;
  3185. border-right:0px;
  3186. border-radius:0px;
  3187. border-bottom-right-radius:0px;
  3188. border-bottom-left-radius:0px;
  3189. -moz-box-shadow:none;
  3190. -webkit-box-shadow:none;
  3191. box-shadow:none;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. line-height:30px;
  3197. }
  3198. #u40399 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:95px;
  3202. top:568px;
  3203. width:169px;
  3204. height:30px;
  3205. display:flex;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:12px;
  3210. line-height:30px;
  3211. }
  3212. #u40399 .text {
  3213. position:absolute;
  3214. align-self:flex-start;
  3215. padding:0px 0px 0px 0px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u40399_text {
  3220. border-width:0px;
  3221. white-space:nowrap;
  3222. text-transform:none;
  3223. }
  3224. #u40400_img {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:30px;
  3230. height:30px;
  3231. }
  3232. #u40400 {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:57px;
  3236. top:623px;
  3237. width:30px;
  3238. height:30px;
  3239. display:flex;
  3240. color:#FFFFFF;
  3241. }
  3242. #u40400 .text {
  3243. position:absolute;
  3244. align-self:center;
  3245. padding:2px 2px 2px 2px;
  3246. box-sizing:border-box;
  3247. width:100%;
  3248. }
  3249. #u40400_text {
  3250. border-width:0px;
  3251. word-wrap:break-word;
  3252. text-transform:none;
  3253. }
  3254. #u40401_div {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:73px;
  3260. height:25px;
  3261. background:inherit;
  3262. background-color:rgba(255, 255, 255, 0);
  3263. border:none;
  3264. border-left:0px;
  3265. border-top:0px;
  3266. border-right:0px;
  3267. border-radius:0px;
  3268. border-bottom-right-radius:0px;
  3269. border-bottom-left-radius:0px;
  3270. -moz-box-shadow:none;
  3271. -webkit-box-shadow:none;
  3272. box-shadow:none;
  3273. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3274. font-weight:500;
  3275. font-style:normal;
  3276. font-size:18px;
  3277. color:#5C93FF;
  3278. }
  3279. #u40401 {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:95px;
  3283. top:625px;
  3284. width:73px;
  3285. height:25px;
  3286. display:flex;
  3287. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3288. font-weight:500;
  3289. font-style:normal;
  3290. font-size:18px;
  3291. color:#5C93FF;
  3292. }
  3293. #u40401 .text {
  3294. position:absolute;
  3295. align-self:center;
  3296. padding:0px 0px 0px 0px;
  3297. box-sizing:border-box;
  3298. width:100%;
  3299. }
  3300. #u40401_text {
  3301. border-width:0px;
  3302. white-space:nowrap;
  3303. text-transform:none;
  3304. }
  3305. #u40402_div {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:205px;
  3311. height:30px;
  3312. background:inherit;
  3313. background-color:rgba(255, 255, 255, 0);
  3314. border:none;
  3315. border-left:0px;
  3316. border-top:0px;
  3317. border-right:0px;
  3318. border-radius:0px;
  3319. border-bottom-right-radius:0px;
  3320. border-bottom-left-radius:0px;
  3321. -moz-box-shadow:none;
  3322. -webkit-box-shadow:none;
  3323. box-shadow:none;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. line-height:30px;
  3329. }
  3330. #u40402 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:95px;
  3334. top:650px;
  3335. width:205px;
  3336. height:30px;
  3337. display:flex;
  3338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:12px;
  3342. line-height:30px;
  3343. }
  3344. #u40402 .text {
  3345. position:absolute;
  3346. align-self:flex-start;
  3347. padding:0px 0px 0px 0px;
  3348. box-sizing:border-box;
  3349. width:100%;
  3350. }
  3351. #u40402_text {
  3352. border-width:0px;
  3353. white-space:nowrap;
  3354. text-transform:none;
  3355. }
  3356. #u40403_img {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:30px;
  3362. height:30px;
  3363. }
  3364. #u40403 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:57px;
  3368. top:694px;
  3369. width:30px;
  3370. height:30px;
  3371. display:flex;
  3372. color:#FFFFFF;
  3373. }
  3374. #u40403 .text {
  3375. position:absolute;
  3376. align-self:center;
  3377. padding:2px 2px 2px 2px;
  3378. box-sizing:border-box;
  3379. width:100%;
  3380. }
  3381. #u40403_text {
  3382. border-width:0px;
  3383. word-wrap:break-word;
  3384. text-transform:none;
  3385. }
  3386. #u40404_div {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:73px;
  3392. height:25px;
  3393. background:inherit;
  3394. background-color:rgba(255, 255, 255, 0);
  3395. border:none;
  3396. border-left:0px;
  3397. border-top:0px;
  3398. border-right:0px;
  3399. border-radius:0px;
  3400. border-bottom-right-radius:0px;
  3401. border-bottom-left-radius:0px;
  3402. -moz-box-shadow:none;
  3403. -webkit-box-shadow:none;
  3404. box-shadow:none;
  3405. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3406. font-weight:500;
  3407. font-style:normal;
  3408. font-size:18px;
  3409. color:#5C93FF;
  3410. }
  3411. #u40404 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:95px;
  3415. top:696px;
  3416. width:73px;
  3417. height:25px;
  3418. display:flex;
  3419. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3420. font-weight:500;
  3421. font-style:normal;
  3422. font-size:18px;
  3423. color:#5C93FF;
  3424. }
  3425. #u40404 .text {
  3426. position:absolute;
  3427. align-self:center;
  3428. padding:0px 0px 0px 0px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u40404_text {
  3433. border-width:0px;
  3434. white-space:nowrap;
  3435. text-transform:none;
  3436. }
  3437. #u40405_div {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:286px;
  3443. height:34px;
  3444. background:inherit;
  3445. background-color:rgba(255, 255, 255, 0);
  3446. border:none;
  3447. border-left:0px;
  3448. border-top:0px;
  3449. border-right:0px;
  3450. border-radius:0px;
  3451. border-bottom-right-radius:0px;
  3452. border-bottom-left-radius:0px;
  3453. -moz-box-shadow:none;
  3454. -webkit-box-shadow:none;
  3455. box-shadow:none;
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:12px;
  3460. }
  3461. #u40405 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:95px;
  3465. top:726px;
  3466. width:286px;
  3467. height:34px;
  3468. display:flex;
  3469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:12px;
  3473. }
  3474. #u40405 .text {
  3475. position:absolute;
  3476. align-self:flex-start;
  3477. padding:0px 0px 0px 0px;
  3478. box-sizing:border-box;
  3479. width:100%;
  3480. }
  3481. #u40405_text {
  3482. border-width:0px;
  3483. word-wrap:break-word;
  3484. text-transform:none;
  3485. }
  3486. #u40406_img {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:300px;
  3492. height:170px;
  3493. }
  3494. #u40406 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:66px;
  3498. top:141px;
  3499. width:300px;
  3500. height:170px;
  3501. display:flex;
  3502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:18px;
  3506. }
  3507. #u40406 .text {
  3508. position:absolute;
  3509. align-self:center;
  3510. padding:2px 2px 2px 2px;
  3511. box-sizing:border-box;
  3512. width:100%;
  3513. }
  3514. #u40406_text {
  3515. border-width:0px;
  3516. word-wrap:break-word;
  3517. text-transform:none;
  3518. }
  3519. #u40408_img {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:433px;
  3525. height:865px;
  3526. }
  3527. #u40408 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:1398px;
  3531. top:0px;
  3532. width:433px;
  3533. height:865px;
  3534. display:flex;
  3535. }
  3536. #u40408 .text {
  3537. position:absolute;
  3538. align-self:center;
  3539. padding:2px 2px 2px 2px;
  3540. box-sizing:border-box;
  3541. width:100%;
  3542. }
  3543. #u40408_text {
  3544. border-width:0px;
  3545. word-wrap:break-word;
  3546. text-transform:none;
  3547. visibility:hidden;
  3548. }
  3549. #u40409_div {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:375px;
  3555. height:40px;
  3556. background:inherit;
  3557. background-color:rgba(255, 255, 255, 1);
  3558. box-sizing:border-box;
  3559. border-width:1px;
  3560. border-style:solid;
  3561. border-color:rgba(215, 215, 215, 1);
  3562. border-left:0px;
  3563. border-top:0px;
  3564. border-right:0px;
  3565. border-radius:0px;
  3566. border-bottom-right-radius:0px;
  3567. border-bottom-left-radius:0px;
  3568. -moz-box-shadow:none;
  3569. -webkit-box-shadow:none;
  3570. box-shadow:none;
  3571. }
  3572. #u40409 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:1427px;
  3576. top:67px;
  3577. width:375px;
  3578. height:40px;
  3579. display:flex;
  3580. }
  3581. #u40409 .text {
  3582. position:absolute;
  3583. align-self:center;
  3584. padding:2px 2px 2px 2px;
  3585. box-sizing:border-box;
  3586. width:100%;
  3587. }
  3588. #u40409_text {
  3589. border-width:0px;
  3590. word-wrap:break-word;
  3591. text-transform:none;
  3592. visibility:hidden;
  3593. }
  3594. #u40410 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:0px;
  3600. height:0px;
  3601. }
  3602. #u40411_div {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:88px;
  3608. height:32px;
  3609. background:inherit;
  3610. background-color:rgba(255, 255, 255, 1);
  3611. box-sizing:border-box;
  3612. border-width:1px;
  3613. border-style:solid;
  3614. border-color:rgba(242, 242, 242, 1);
  3615. border-radius:33px;
  3616. -moz-box-shadow:none;
  3617. -webkit-box-shadow:none;
  3618. box-shadow:none;
  3619. }
  3620. #u40411 {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:1707px;
  3624. top:71px;
  3625. width:88px;
  3626. height:32px;
  3627. display:flex;
  3628. }
  3629. #u40411 .text {
  3630. position:absolute;
  3631. align-self:center;
  3632. padding:2px 2px 2px 2px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u40411_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. visibility:hidden;
  3641. }
  3642. #u40412 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:0px;
  3648. height:0px;
  3649. }
  3650. #u40413_img {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:18px;
  3656. height:18px;
  3657. }
  3658. #u40413 {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:1770px;
  3662. top:78px;
  3663. width:18px;
  3664. height:18px;
  3665. display:flex;
  3666. }
  3667. #u40413 .text {
  3668. position:absolute;
  3669. align-self:center;
  3670. padding:2px 2px 2px 2px;
  3671. box-sizing:border-box;
  3672. width:100%;
  3673. }
  3674. #u40413_text {
  3675. border-width:0px;
  3676. word-wrap:break-word;
  3677. text-transform:none;
  3678. visibility:hidden;
  3679. }
  3680. #u40414_img {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:6px;
  3686. height:6px;
  3687. }
  3688. #u40414 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:1776px;
  3692. top:84px;
  3693. width:6px;
  3694. height:6px;
  3695. display:flex;
  3696. }
  3697. #u40414 .text {
  3698. position:absolute;
  3699. align-self:center;
  3700. padding:2px 2px 2px 2px;
  3701. box-sizing:border-box;
  3702. width:100%;
  3703. }
  3704. #u40414_text {
  3705. border-width:0px;
  3706. word-wrap:break-word;
  3707. text-transform:none;
  3708. visibility:hidden;
  3709. }
  3710. #u40415 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:0px;
  3714. top:0px;
  3715. width:0px;
  3716. height:0px;
  3717. }
  3718. #u40416_img {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:5px;
  3724. height:5px;
  3725. }
  3726. #u40416 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:1721px;
  3730. top:85px;
  3731. width:5px;
  3732. height:5px;
  3733. display:flex;
  3734. }
  3735. #u40416 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 2px 2px 2px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u40416_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u40417_img {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:5px;
  3754. height:5px;
  3755. }
  3756. #u40417 {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:1737px;
  3760. top:85px;
  3761. width:5px;
  3762. height:5px;
  3763. display:flex;
  3764. }
  3765. #u40417 .text {
  3766. position:absolute;
  3767. align-self:center;
  3768. padding:2px 2px 2px 2px;
  3769. box-sizing:border-box;
  3770. width:100%;
  3771. }
  3772. #u40417_text {
  3773. border-width:0px;
  3774. word-wrap:break-word;
  3775. text-transform:none;
  3776. visibility:hidden;
  3777. }
  3778. #u40418_img {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:0px;
  3782. top:0px;
  3783. width:7px;
  3784. height:7px;
  3785. }
  3786. #u40418 {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:1728px;
  3790. top:84px;
  3791. width:7px;
  3792. height:7px;
  3793. display:flex;
  3794. }
  3795. #u40418 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:2px 2px 2px 2px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u40418_text {
  3803. border-width:0px;
  3804. word-wrap:break-word;
  3805. text-transform:none;
  3806. visibility:hidden;
  3807. }
  3808. #u40419_img {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:19px;
  3814. height:2px;
  3815. }
  3816. #u40419 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:1745px;
  3820. top:87px;
  3821. width:18px;
  3822. height:1px;
  3823. display:flex;
  3824. -webkit-transform:rotate(90deg);
  3825. -moz-transform:rotate(90deg);
  3826. -ms-transform:rotate(90deg);
  3827. transform:rotate(90deg);
  3828. }
  3829. #u40419 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 2px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u40419_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. visibility:hidden;
  3841. }
  3842. #u40420_img {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:375px;
  3848. height:44px;
  3849. }
  3850. #u40420 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:1427px;
  3854. top:24px;
  3855. width:375px;
  3856. height:44px;
  3857. display:flex;
  3858. }
  3859. #u40420 .text {
  3860. position:absolute;
  3861. align-self:center;
  3862. padding:2px 2px 2px 2px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u40420_text {
  3867. border-width:0px;
  3868. word-wrap:break-word;
  3869. text-transform:none;
  3870. visibility:hidden;
  3871. }
  3872. #u40421_div {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:375px;
  3878. height:50px;
  3879. background:inherit;
  3880. background-color:rgba(255, 255, 255, 1);
  3881. box-sizing:border-box;
  3882. border-width:1px;
  3883. border-style:solid;
  3884. border-color:rgba(242, 242, 242, 1);
  3885. border-radius:26px;
  3886. border-top-left-radius:0px;
  3887. border-top-right-radius:0px;
  3888. -moz-box-shadow:none;
  3889. -webkit-box-shadow:none;
  3890. box-shadow:none;
  3891. }
  3892. #u40421 {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:1427px;
  3896. top:788px;
  3897. width:375px;
  3898. height:50px;
  3899. display:flex;
  3900. }
  3901. #u40421 .text {
  3902. position:absolute;
  3903. align-self:center;
  3904. padding:2px 2px 2px 2px;
  3905. box-sizing:border-box;
  3906. width:100%;
  3907. }
  3908. #u40421_text {
  3909. border-width:0px;
  3910. word-wrap:break-word;
  3911. text-transform:none;
  3912. visibility:hidden;
  3913. }
  3914. #u40422 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:0px;
  3918. top:0px;
  3919. width:0px;
  3920. height:0px;
  3921. }
  3922. #u40423_img {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:24px;
  3928. height:24px;
  3929. }
  3930. #u40423 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:1467px;
  3934. top:792px;
  3935. width:24px;
  3936. height:24px;
  3937. display:flex;
  3938. font-size:8px;
  3939. }
  3940. #u40423 .text {
  3941. position:absolute;
  3942. align-self:center;
  3943. padding:2px 2px 2px 2px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u40423_text {
  3948. border-width:0px;
  3949. word-wrap:break-word;
  3950. text-transform:none;
  3951. }
  3952. #u40424_div {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:25px;
  3958. height:17px;
  3959. background:inherit;
  3960. background-color:rgba(255, 255, 255, 0);
  3961. border:none;
  3962. border-radius:0px;
  3963. -moz-box-shadow:none;
  3964. -webkit-box-shadow:none;
  3965. box-shadow:none;
  3966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3967. font-weight:400;
  3968. font-style:normal;
  3969. font-size:12px;
  3970. }
  3971. #u40424 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:1467px;
  3975. top:817px;
  3976. width:25px;
  3977. height:17px;
  3978. display:flex;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:12px;
  3983. }
  3984. #u40424 .text {
  3985. position:absolute;
  3986. align-self:flex-start;
  3987. padding:0px 0px 0px 0px;
  3988. box-sizing:border-box;
  3989. width:100%;
  3990. }
  3991. #u40424_text {
  3992. border-width:0px;
  3993. white-space:nowrap;
  3994. text-transform:none;
  3995. }
  3996. #u40425 {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:0px;
  4002. height:0px;
  4003. }
  4004. #u40426_img {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:0px;
  4008. top:0px;
  4009. width:24px;
  4010. height:24px;
  4011. }
  4012. #u40426 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:1737px;
  4016. top:794px;
  4017. width:24px;
  4018. height:24px;
  4019. display:flex;
  4020. font-size:8px;
  4021. }
  4022. #u40426 .text {
  4023. position:absolute;
  4024. align-self:center;
  4025. padding:2px 2px 2px 2px;
  4026. box-sizing:border-box;
  4027. width:100%;
  4028. }
  4029. #u40426_text {
  4030. border-width:0px;
  4031. word-wrap:break-word;
  4032. text-transform:none;
  4033. }
  4034. #u40427_div {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:0px;
  4038. top:0px;
  4039. width:25px;
  4040. height:17px;
  4041. background:inherit;
  4042. background-color:rgba(255, 255, 255, 0);
  4043. border:none;
  4044. border-radius:0px;
  4045. -moz-box-shadow:none;
  4046. -webkit-box-shadow:none;
  4047. box-shadow:none;
  4048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4049. font-weight:400;
  4050. font-style:normal;
  4051. font-size:12px;
  4052. }
  4053. #u40427 {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:1737px;
  4057. top:819px;
  4058. width:25px;
  4059. height:17px;
  4060. display:flex;
  4061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:12px;
  4065. }
  4066. #u40427 .text {
  4067. position:absolute;
  4068. align-self:flex-start;
  4069. padding:0px 0px 0px 0px;
  4070. box-sizing:border-box;
  4071. width:100%;
  4072. }
  4073. #u40427_text {
  4074. border-width:0px;
  4075. white-space:nowrap;
  4076. text-transform:none;
  4077. }
  4078. #u40428_div {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:0px;
  4082. top:0px;
  4083. width:375px;
  4084. height:681px;
  4085. background:inherit;
  4086. background-color:rgba(242, 242, 242, 0.462745098039216);
  4087. border:none;
  4088. border-radius:0px;
  4089. -moz-box-shadow:none;
  4090. -webkit-box-shadow:none;
  4091. box-shadow:none;
  4092. }
  4093. #u40428 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:1427px;
  4097. top:107px;
  4098. width:375px;
  4099. height:681px;
  4100. display:flex;
  4101. }
  4102. #u40428 .text {
  4103. position:absolute;
  4104. align-self:center;
  4105. padding:2px 2px 2px 2px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u40428_text {
  4110. border-width:0px;
  4111. word-wrap:break-word;
  4112. text-transform:none;
  4113. visibility:hidden;
  4114. }
  4115. #u40429 {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:0px;
  4119. top:0px;
  4120. width:0px;
  4121. height:0px;
  4122. }
  4123. #u40430_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:24px;
  4129. height:24px;
  4130. }
  4131. #u40430 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:1649px;
  4135. top:792px;
  4136. width:24px;
  4137. height:24px;
  4138. display:flex;
  4139. font-size:8px;
  4140. }
  4141. #u40430 .text {
  4142. position:absolute;
  4143. align-self:center;
  4144. padding:2px 2px 2px 2px;
  4145. box-sizing:border-box;
  4146. width:100%;
  4147. }
  4148. #u40430_text {
  4149. border-width:0px;
  4150. word-wrap:break-word;
  4151. text-transform:none;
  4152. }
  4153. #u40431_div {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:37px;
  4159. height:17px;
  4160. background:inherit;
  4161. background-color:rgba(255, 255, 255, 0);
  4162. border:none;
  4163. border-radius:0px;
  4164. -moz-box-shadow:none;
  4165. -webkit-box-shadow:none;
  4166. box-shadow:none;
  4167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4168. font-weight:400;
  4169. font-style:normal;
  4170. font-size:12px;
  4171. }
  4172. #u40431 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:1643px;
  4176. top:817px;
  4177. width:37px;
  4178. height:17px;
  4179. display:flex;
  4180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4181. font-weight:400;
  4182. font-style:normal;
  4183. font-size:12px;
  4184. }
  4185. #u40431 .text {
  4186. position:absolute;
  4187. align-self:flex-start;
  4188. padding:0px 0px 0px 0px;
  4189. box-sizing:border-box;
  4190. width:100%;
  4191. }
  4192. #u40431_text {
  4193. border-width:0px;
  4194. white-space:nowrap;
  4195. text-transform:none;
  4196. }
  4197. #u40432 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:0px;
  4203. height:0px;
  4204. }
  4205. #u40433_img {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:24px;
  4211. height:24px;
  4212. }
  4213. #u40433 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:1555px;
  4217. top:792px;
  4218. width:24px;
  4219. height:24px;
  4220. display:flex;
  4221. font-size:8px;
  4222. }
  4223. #u40433 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 2px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u40433_text {
  4231. border-width:0px;
  4232. word-wrap:break-word;
  4233. text-transform:none;
  4234. }
  4235. #u40434_div {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:37px;
  4241. height:17px;
  4242. background:inherit;
  4243. background-color:rgba(255, 255, 255, 0);
  4244. border:none;
  4245. border-radius:0px;
  4246. -moz-box-shadow:none;
  4247. -webkit-box-shadow:none;
  4248. box-shadow:none;
  4249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4250. font-weight:400;
  4251. font-style:normal;
  4252. font-size:12px;
  4253. }
  4254. #u40434 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:1549px;
  4258. top:817px;
  4259. width:37px;
  4260. height:17px;
  4261. display:flex;
  4262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4263. font-weight:400;
  4264. font-style:normal;
  4265. font-size:12px;
  4266. }
  4267. #u40434 .text {
  4268. position:absolute;
  4269. align-self:flex-start;
  4270. padding:0px 0px 0px 0px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u40434_text {
  4275. border-width:0px;
  4276. white-space:nowrap;
  4277. text-transform:none;
  4278. }
  4279. #u40435_div {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:0px;
  4283. top:0px;
  4284. width:375px;
  4285. height:732px;
  4286. background:inherit;
  4287. background-color:rgba(244, 244, 244, 1);
  4288. box-sizing:border-box;
  4289. border-width:1px;
  4290. border-style:solid;
  4291. border-color:rgba(242, 242, 242, 1);
  4292. border-radius:26px;
  4293. border-top-left-radius:0px;
  4294. border-top-right-radius:0px;
  4295. -moz-box-shadow:none;
  4296. -webkit-box-shadow:none;
  4297. box-shadow:none;
  4298. }
  4299. #u40435 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:1427px;
  4303. top:107px;
  4304. width:375px;
  4305. height:732px;
  4306. display:flex;
  4307. }
  4308. #u40435 .text {
  4309. position:absolute;
  4310. align-self:center;
  4311. padding:2px 2px 2px 2px;
  4312. box-sizing:border-box;
  4313. width:100%;
  4314. }
  4315. #u40435_text {
  4316. border-width:0px;
  4317. word-wrap:break-word;
  4318. text-transform:none;
  4319. visibility:hidden;
  4320. }
  4321. #u40436_div {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:375px;
  4327. height:732px;
  4328. background:inherit;
  4329. background-color:rgba(242, 242, 242, 1);
  4330. box-sizing:border-box;
  4331. border-width:1px;
  4332. border-style:solid;
  4333. border-color:rgba(242, 242, 242, 1);
  4334. border-radius:26px;
  4335. border-top-left-radius:0px;
  4336. border-top-right-radius:0px;
  4337. -moz-box-shadow:none;
  4338. -webkit-box-shadow:none;
  4339. box-shadow:none;
  4340. }
  4341. #u40436 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:1427px;
  4345. top:107px;
  4346. width:375px;
  4347. height:732px;
  4348. display:flex;
  4349. }
  4350. #u40436 .text {
  4351. position:absolute;
  4352. align-self:center;
  4353. padding:2px 2px 2px 2px;
  4354. box-sizing:border-box;
  4355. width:100%;
  4356. }
  4357. #u40436_text {
  4358. border-width:0px;
  4359. word-wrap:break-word;
  4360. text-transform:none;
  4361. visibility:hidden;
  4362. }
  4363. #u40437 {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:0px;
  4369. height:0px;
  4370. }
  4371. #u40438_div {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:0px;
  4375. top:0px;
  4376. width:375px;
  4377. height:40px;
  4378. background:inherit;
  4379. background-color:rgba(255, 255, 255, 1);
  4380. border:none;
  4381. border-left:0px;
  4382. border-top:0px;
  4383. border-right:0px;
  4384. border-radius:0px;
  4385. border-bottom-right-radius:0px;
  4386. border-bottom-left-radius:0px;
  4387. -moz-box-shadow:none;
  4388. -webkit-box-shadow:none;
  4389. box-shadow:none;
  4390. }
  4391. #u40438 {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:1427px;
  4395. top:67px;
  4396. width:375px;
  4397. height:40px;
  4398. display:flex;
  4399. }
  4400. #u40438 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:2px 2px 2px 2px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u40438_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. visibility:hidden;
  4412. }
  4413. #u40439 {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:0px;
  4419. height:0px;
  4420. }
  4421. #u40440_div {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:88px;
  4427. height:32px;
  4428. background:inherit;
  4429. background-color:rgba(255, 255, 255, 1);
  4430. box-sizing:border-box;
  4431. border-width:1px;
  4432. border-style:solid;
  4433. border-color:rgba(242, 242, 242, 1);
  4434. border-radius:33px;
  4435. -moz-box-shadow:none;
  4436. -webkit-box-shadow:none;
  4437. box-shadow:none;
  4438. }
  4439. #u40440 {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:1704px;
  4443. top:69px;
  4444. width:88px;
  4445. height:32px;
  4446. display:flex;
  4447. }
  4448. #u40440 .text {
  4449. position:absolute;
  4450. align-self:center;
  4451. padding:2px 2px 2px 2px;
  4452. box-sizing:border-box;
  4453. width:100%;
  4454. }
  4455. #u40440_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. visibility:hidden;
  4460. }
  4461. #u40441 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:0px;
  4467. height:0px;
  4468. }
  4469. #u40442_img {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:0px;
  4473. top:0px;
  4474. width:18px;
  4475. height:18px;
  4476. }
  4477. #u40442 {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:1767px;
  4481. top:76px;
  4482. width:18px;
  4483. height:18px;
  4484. display:flex;
  4485. }
  4486. #u40442 .text {
  4487. position:absolute;
  4488. align-self:center;
  4489. padding:2px 2px 2px 2px;
  4490. box-sizing:border-box;
  4491. width:100%;
  4492. }
  4493. #u40442_text {
  4494. border-width:0px;
  4495. word-wrap:break-word;
  4496. text-transform:none;
  4497. visibility:hidden;
  4498. }
  4499. #u40443_img {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:6px;
  4505. height:6px;
  4506. }
  4507. #u40443 {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:1773px;
  4511. top:82px;
  4512. width:6px;
  4513. height:6px;
  4514. display:flex;
  4515. }
  4516. #u40443 .text {
  4517. position:absolute;
  4518. align-self:center;
  4519. padding:2px 2px 2px 2px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u40443_text {
  4524. border-width:0px;
  4525. word-wrap:break-word;
  4526. text-transform:none;
  4527. visibility:hidden;
  4528. }
  4529. #u40444 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:0px;
  4535. height:0px;
  4536. }
  4537. #u40445_img {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:0px;
  4541. top:0px;
  4542. width:5px;
  4543. height:5px;
  4544. }
  4545. #u40445 {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:1718px;
  4549. top:83px;
  4550. width:5px;
  4551. height:5px;
  4552. display:flex;
  4553. }
  4554. #u40445 .text {
  4555. position:absolute;
  4556. align-self:center;
  4557. padding:2px 2px 2px 2px;
  4558. box-sizing:border-box;
  4559. width:100%;
  4560. }
  4561. #u40445_text {
  4562. border-width:0px;
  4563. word-wrap:break-word;
  4564. text-transform:none;
  4565. visibility:hidden;
  4566. }
  4567. #u40446_img {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:5px;
  4573. height:5px;
  4574. }
  4575. #u40446 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:1734px;
  4579. top:83px;
  4580. width:5px;
  4581. height:5px;
  4582. display:flex;
  4583. }
  4584. #u40446 .text {
  4585. position:absolute;
  4586. align-self:center;
  4587. padding:2px 2px 2px 2px;
  4588. box-sizing:border-box;
  4589. width:100%;
  4590. }
  4591. #u40446_text {
  4592. border-width:0px;
  4593. word-wrap:break-word;
  4594. text-transform:none;
  4595. visibility:hidden;
  4596. }
  4597. #u40447_img {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:7px;
  4603. height:7px;
  4604. }
  4605. #u40447 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:1725px;
  4609. top:82px;
  4610. width:7px;
  4611. height:7px;
  4612. display:flex;
  4613. }
  4614. #u40447 .text {
  4615. position:absolute;
  4616. align-self:center;
  4617. padding:2px 2px 2px 2px;
  4618. box-sizing:border-box;
  4619. width:100%;
  4620. }
  4621. #u40447_text {
  4622. border-width:0px;
  4623. word-wrap:break-word;
  4624. text-transform:none;
  4625. visibility:hidden;
  4626. }
  4627. #u40448_img {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:0px;
  4631. top:0px;
  4632. width:19px;
  4633. height:2px;
  4634. }
  4635. #u40448 {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:1742px;
  4639. top:85px;
  4640. width:18px;
  4641. height:1px;
  4642. display:flex;
  4643. -webkit-transform:rotate(90deg);
  4644. -moz-transform:rotate(90deg);
  4645. -ms-transform:rotate(90deg);
  4646. transform:rotate(90deg);
  4647. }
  4648. #u40448 .text {
  4649. position:absolute;
  4650. align-self:center;
  4651. padding:2px 2px 2px 2px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u40448_text {
  4656. border-width:0px;
  4657. word-wrap:break-word;
  4658. text-transform:none;
  4659. visibility:hidden;
  4660. }
  4661. #u40449_div {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:12px;
  4667. height:12px;
  4668. background:inherit;
  4669. background-color:rgba(255, 255, 255, 0);
  4670. box-sizing:border-box;
  4671. border-width:2px;
  4672. border-style:solid;
  4673. border-color:rgba(51, 51, 51, 1);
  4674. border-right:0px;
  4675. border-bottom:0px;
  4676. border-radius:0px;
  4677. border-top-right-radius:0px;
  4678. border-bottom-left-radius:0px;
  4679. -moz-box-shadow:none;
  4680. -webkit-box-shadow:none;
  4681. box-shadow:none;
  4682. }
  4683. #u40449 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:1443px;
  4687. top:79px;
  4688. width:12px;
  4689. height:12px;
  4690. display:flex;
  4691. -webkit-transform:rotate(315deg);
  4692. -moz-transform:rotate(315deg);
  4693. -ms-transform:rotate(315deg);
  4694. transform:rotate(315deg);
  4695. }
  4696. #u40449 .text {
  4697. position:absolute;
  4698. align-self:center;
  4699. padding:2px 2px 2px 2px;
  4700. box-sizing:border-box;
  4701. width:100%;
  4702. }
  4703. #u40449_text {
  4704. border-width:0px;
  4705. word-wrap:break-word;
  4706. text-transform:none;
  4707. visibility:hidden;
  4708. }
  4709. #u40450_div {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:109px;
  4715. height:25px;
  4716. background:inherit;
  4717. background-color:rgba(255, 255, 255, 0);
  4718. border:none;
  4719. border-radius:0px;
  4720. -moz-box-shadow:none;
  4721. -webkit-box-shadow:none;
  4722. box-shadow:none;
  4723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4724. font-weight:400;
  4725. font-style:normal;
  4726. font-size:18px;
  4727. }
  4728. #u40450 {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:1457px;
  4732. top:72px;
  4733. width:109px;
  4734. height:25px;
  4735. display:flex;
  4736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4737. font-weight:400;
  4738. font-style:normal;
  4739. font-size:18px;
  4740. }
  4741. #u40450 .text {
  4742. position:absolute;
  4743. align-self:flex-start;
  4744. padding:0px 0px 0px 0px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u40450_text {
  4749. border-width:0px;
  4750. white-space:nowrap;
  4751. text-transform:none;
  4752. }
  4753. #u40451_div {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:375px;
  4759. height:58px;
  4760. background:inherit;
  4761. background-color:rgba(24, 144, 255, 1);
  4762. border:none;
  4763. border-radius:0px;
  4764. -moz-box-shadow:none;
  4765. -webkit-box-shadow:none;
  4766. box-shadow:none;
  4767. }
  4768. #u40451 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:1427px;
  4772. top:107px;
  4773. width:375px;
  4774. height:58px;
  4775. display:flex;
  4776. }
  4777. #u40451 .text {
  4778. position:absolute;
  4779. align-self:center;
  4780. padding:2px 2px 2px 2px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u40451_text {
  4785. border-width:0px;
  4786. word-wrap:break-word;
  4787. text-transform:none;
  4788. visibility:hidden;
  4789. }
  4790. #u40452_div {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:375px;
  4796. height:525px;
  4797. background:inherit;
  4798. background-color:rgba(255, 255, 255, 0.996078431372549);
  4799. border:none;
  4800. border-radius:0px;
  4801. -moz-box-shadow:none;
  4802. -webkit-box-shadow:none;
  4803. box-shadow:none;
  4804. }
  4805. #u40452 {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:1427px;
  4809. top:255px;
  4810. width:375px;
  4811. height:525px;
  4812. display:flex;
  4813. }
  4814. #u40452 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 2px 2px 2px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u40452_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. visibility:hidden;
  4826. }
  4827. #u40453_div {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:73px;
  4833. height:25px;
  4834. background:inherit;
  4835. background-color:rgba(255, 255, 255, 0);
  4836. border:none;
  4837. border-radius:0px;
  4838. -moz-box-shadow:none;
  4839. -webkit-box-shadow:none;
  4840. box-shadow:none;
  4841. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4842. font-weight:500;
  4843. font-style:normal;
  4844. font-size:18px;
  4845. }
  4846. #u40453 {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:1447px;
  4850. top:274px;
  4851. width:73px;
  4852. height:25px;
  4853. display:flex;
  4854. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4855. font-weight:500;
  4856. font-style:normal;
  4857. font-size:18px;
  4858. }
  4859. #u40453 .text {
  4860. position:absolute;
  4861. align-self:flex-start;
  4862. padding:0px 0px 0px 0px;
  4863. box-sizing:border-box;
  4864. width:100%;
  4865. }
  4866. #u40453_text {
  4867. border-width:0px;
  4868. white-space:nowrap;
  4869. text-transform:none;
  4870. }
  4871. #u40454 {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:0px;
  4877. height:0px;
  4878. }
  4879. #u40455_div {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:0px;
  4884. width:322px;
  4885. height:40px;
  4886. background:inherit;
  4887. background-color:rgba(255, 255, 255, 1);
  4888. box-sizing:border-box;
  4889. border-width:1px;
  4890. border-style:solid;
  4891. border-color:rgba(215, 215, 215, 1);
  4892. border-left:0px;
  4893. border-top:0px;
  4894. border-right:0px;
  4895. border-radius:0px;
  4896. border-bottom-right-radius:0px;
  4897. border-bottom-left-radius:0px;
  4898. -moz-box-shadow:none;
  4899. -webkit-box-shadow:none;
  4900. box-shadow:none;
  4901. }
  4902. #u40455 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:1447px;
  4906. top:309px;
  4907. width:322px;
  4908. height:40px;
  4909. display:flex;
  4910. }
  4911. #u40455 .text {
  4912. position:absolute;
  4913. align-self:center;
  4914. padding:2px 2px 2px 2px;
  4915. box-sizing:border-box;
  4916. width:100%;
  4917. }
  4918. #u40455_text {
  4919. border-width:0px;
  4920. word-wrap:break-word;
  4921. text-transform:none;
  4922. visibility:hidden;
  4923. }
  4924. #u40456_div {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:0px;
  4928. top:0px;
  4929. width:36px;
  4930. height:20px;
  4931. background:inherit;
  4932. background-color:rgba(255, 255, 255, 0);
  4933. border:none;
  4934. border-radius:0px;
  4935. -moz-box-shadow:none;
  4936. -webkit-box-shadow:none;
  4937. box-shadow:none;
  4938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4939. font-weight:400;
  4940. font-style:normal;
  4941. }
  4942. #u40456 {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:1447px;
  4946. top:319px;
  4947. width:36px;
  4948. height:20px;
  4949. display:flex;
  4950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4951. font-weight:400;
  4952. font-style:normal;
  4953. }
  4954. #u40456 .text {
  4955. position:absolute;
  4956. align-self:flex-start;
  4957. padding:0px 0px 0px 0px;
  4958. box-sizing:border-box;
  4959. width:100%;
  4960. }
  4961. #u40456_text {
  4962. border-width:0px;
  4963. white-space:nowrap;
  4964. text-transform:none;
  4965. }
  4966. #u40457_div {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:0px;
  4970. top:0px;
  4971. width:43px;
  4972. height:20px;
  4973. background:inherit;
  4974. background-color:rgba(255, 255, 255, 0);
  4975. border:none;
  4976. border-radius:0px;
  4977. -moz-box-shadow:none;
  4978. -webkit-box-shadow:none;
  4979. box-shadow:none;
  4980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4981. font-weight:400;
  4982. font-style:normal;
  4983. color:#AAAAAA;
  4984. }
  4985. #u40457 {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:1722px;
  4989. top:319px;
  4990. width:43px;
  4991. height:20px;
  4992. display:flex;
  4993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. color:#AAAAAA;
  4997. }
  4998. #u40457 .text {
  4999. position:absolute;
  5000. align-self:flex-start;
  5001. padding:0px 0px 0px 0px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u40457_text {
  5006. border-width:0px;
  5007. white-space:nowrap;
  5008. text-transform:none;
  5009. }
  5010. #u40458 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:0px;
  5014. top:0px;
  5015. width:0px;
  5016. height:0px;
  5017. }
  5018. #u40459_div {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:322px;
  5024. height:40px;
  5025. background:inherit;
  5026. background-color:rgba(255, 255, 255, 1);
  5027. box-sizing:border-box;
  5028. border-width:1px;
  5029. border-style:solid;
  5030. border-color:rgba(215, 215, 215, 1);
  5031. border-left:0px;
  5032. border-top:0px;
  5033. border-right:0px;
  5034. border-radius:0px;
  5035. border-bottom-right-radius:0px;
  5036. border-bottom-left-radius:0px;
  5037. -moz-box-shadow:none;
  5038. -webkit-box-shadow:none;
  5039. box-shadow:none;
  5040. }
  5041. #u40459 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:1447px;
  5045. top:389px;
  5046. width:322px;
  5047. height:40px;
  5048. display:flex;
  5049. }
  5050. #u40459 .text {
  5051. position:absolute;
  5052. align-self:center;
  5053. padding:2px 2px 2px 2px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u40459_text {
  5058. border-width:0px;
  5059. word-wrap:break-word;
  5060. text-transform:none;
  5061. visibility:hidden;
  5062. }
  5063. #u40460_div {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:0px;
  5067. top:0px;
  5068. width:64px;
  5069. height:20px;
  5070. background:inherit;
  5071. background-color:rgba(255, 255, 255, 0);
  5072. border:none;
  5073. border-radius:0px;
  5074. -moz-box-shadow:none;
  5075. -webkit-box-shadow:none;
  5076. box-shadow:none;
  5077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. }
  5081. #u40460 {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:1447px;
  5085. top:399px;
  5086. width:64px;
  5087. height:20px;
  5088. display:flex;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. }
  5093. #u40460 .text {
  5094. position:absolute;
  5095. align-self:flex-start;
  5096. padding:0px 0px 0px 0px;
  5097. box-sizing:border-box;
  5098. width:100%;
  5099. }
  5100. #u40460_text {
  5101. border-width:0px;
  5102. white-space:nowrap;
  5103. text-transform:none;
  5104. }
  5105. #u40461_div {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:0px;
  5109. top:0px;
  5110. width:43px;
  5111. height:20px;
  5112. background:inherit;
  5113. background-color:rgba(255, 255, 255, 0);
  5114. border:none;
  5115. border-radius:0px;
  5116. -moz-box-shadow:none;
  5117. -webkit-box-shadow:none;
  5118. box-shadow:none;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. color:#AAAAAA;
  5123. }
  5124. #u40461 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:1722px;
  5128. top:399px;
  5129. width:43px;
  5130. height:20px;
  5131. display:flex;
  5132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5133. font-weight:400;
  5134. font-style:normal;
  5135. color:#AAAAAA;
  5136. }
  5137. #u40461 .text {
  5138. position:absolute;
  5139. align-self:flex-start;
  5140. padding:0px 0px 0px 0px;
  5141. box-sizing:border-box;
  5142. width:100%;
  5143. }
  5144. #u40461_text {
  5145. border-width:0px;
  5146. white-space:nowrap;
  5147. text-transform:none;
  5148. }
  5149. #u40462 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:0px;
  5153. top:0px;
  5154. width:0px;
  5155. height:0px;
  5156. }
  5157. #u40463_div {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:322px;
  5163. height:40px;
  5164. background:inherit;
  5165. background-color:rgba(255, 255, 255, 1);
  5166. box-sizing:border-box;
  5167. border-width:1px;
  5168. border-style:solid;
  5169. border-color:rgba(215, 215, 215, 1);
  5170. border-left:0px;
  5171. border-top:0px;
  5172. border-right:0px;
  5173. border-radius:0px;
  5174. border-bottom-right-radius:0px;
  5175. border-bottom-left-radius:0px;
  5176. -moz-box-shadow:none;
  5177. -webkit-box-shadow:none;
  5178. box-shadow:none;
  5179. }
  5180. #u40463 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:1447px;
  5184. top:349px;
  5185. width:322px;
  5186. height:40px;
  5187. display:flex;
  5188. }
  5189. #u40463 .text {
  5190. position:absolute;
  5191. align-self:center;
  5192. padding:2px 2px 2px 2px;
  5193. box-sizing:border-box;
  5194. width:100%;
  5195. }
  5196. #u40463_text {
  5197. border-width:0px;
  5198. word-wrap:break-word;
  5199. text-transform:none;
  5200. visibility:hidden;
  5201. }
  5202. #u40464_div {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:0px;
  5206. top:0px;
  5207. width:57px;
  5208. height:20px;
  5209. background:inherit;
  5210. background-color:rgba(255, 255, 255, 0);
  5211. border:none;
  5212. border-radius:0px;
  5213. -moz-box-shadow:none;
  5214. -webkit-box-shadow:none;
  5215. box-shadow:none;
  5216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. }
  5220. #u40464 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:1447px;
  5224. top:359px;
  5225. width:57px;
  5226. height:20px;
  5227. display:flex;
  5228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. }
  5232. #u40464 .text {
  5233. position:absolute;
  5234. align-self:flex-start;
  5235. padding:0px 0px 0px 0px;
  5236. box-sizing:border-box;
  5237. width:100%;
  5238. }
  5239. #u40464_text {
  5240. border-width:0px;
  5241. white-space:nowrap;
  5242. text-transform:none;
  5243. }
  5244. #u40465_div {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:57px;
  5250. height:20px;
  5251. background:inherit;
  5252. background-color:rgba(255, 255, 255, 0);
  5253. border:none;
  5254. border-radius:0px;
  5255. -moz-box-shadow:none;
  5256. -webkit-box-shadow:none;
  5257. box-shadow:none;
  5258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5259. font-weight:400;
  5260. font-style:normal;
  5261. color:#AAAAAA;
  5262. text-align:right;
  5263. }
  5264. #u40465 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:1708px;
  5268. top:359px;
  5269. width:57px;
  5270. height:20px;
  5271. display:flex;
  5272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. color:#AAAAAA;
  5276. text-align:right;
  5277. }
  5278. #u40465 .text {
  5279. position:absolute;
  5280. align-self:flex-start;
  5281. padding:0px 0px 0px 0px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u40465_text {
  5286. border-width:0px;
  5287. white-space:nowrap;
  5288. text-transform:none;
  5289. }
  5290. #u40466 {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:0px;
  5296. height:0px;
  5297. }
  5298. #u40467 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:0px;
  5304. height:0px;
  5305. }
  5306. #u40468_img {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:27px;
  5312. height:27px;
  5313. }
  5314. #u40468 {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:1566px;
  5318. top:122px;
  5319. width:27px;
  5320. height:27px;
  5321. display:flex;
  5322. font-size:12px;
  5323. color:#1890FF;
  5324. }
  5325. #u40468 .text {
  5326. position:absolute;
  5327. align-self:center;
  5328. padding:2px 2px 2px 2px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u40468_text {
  5333. border-width:0px;
  5334. word-wrap:break-word;
  5335. text-transform:none;
  5336. }
  5337. #u40469_div {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:57px;
  5343. height:30px;
  5344. background:inherit;
  5345. background-color:rgba(255, 255, 255, 0);
  5346. border:none;
  5347. border-left:0px;
  5348. border-top:0px;
  5349. border-right:0px;
  5350. border-radius:0px;
  5351. border-bottom-right-radius:0px;
  5352. border-bottom-left-radius:0px;
  5353. -moz-box-shadow:none;
  5354. -webkit-box-shadow:none;
  5355. box-shadow:none;
  5356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5357. font-weight:400;
  5358. font-style:normal;
  5359. font-size:14px;
  5360. color:#FFFFFF;
  5361. line-height:30px;
  5362. }
  5363. #u40469 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:1600px;
  5367. top:121px;
  5368. width:57px;
  5369. height:30px;
  5370. display:flex;
  5371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. font-size:14px;
  5375. color:#FFFFFF;
  5376. line-height:30px;
  5377. }
  5378. #u40469 .text {
  5379. position:absolute;
  5380. align-self:center;
  5381. padding:0px 0px 0px 0px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u40469_text {
  5386. border-width:0px;
  5387. white-space:nowrap;
  5388. text-transform:none;
  5389. }
  5390. #u40470_img {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:27px;
  5396. height:27px;
  5397. }
  5398. #u40470 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:1433px;
  5402. top:122px;
  5403. width:27px;
  5404. height:27px;
  5405. display:flex;
  5406. font-size:12px;
  5407. color:#1890FF;
  5408. }
  5409. #u40470 .text {
  5410. position:absolute;
  5411. align-self:center;
  5412. padding:2px 2px 2px 2px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u40470_text {
  5417. border-width:0px;
  5418. word-wrap:break-word;
  5419. text-transform:none;
  5420. }
  5421. #u40471_div {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:57px;
  5427. height:30px;
  5428. background:inherit;
  5429. background-color:rgba(255, 255, 255, 0);
  5430. border:none;
  5431. border-left:0px;
  5432. border-top:0px;
  5433. border-right:0px;
  5434. border-radius:0px;
  5435. border-bottom-right-radius:0px;
  5436. border-bottom-left-radius:0px;
  5437. -moz-box-shadow:none;
  5438. -webkit-box-shadow:none;
  5439. box-shadow:none;
  5440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5441. font-weight:400;
  5442. font-style:normal;
  5443. font-size:14px;
  5444. color:#FFFFFF;
  5445. line-height:30px;
  5446. }
  5447. #u40471 {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:1467px;
  5451. top:121px;
  5452. width:57px;
  5453. height:30px;
  5454. display:flex;
  5455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5456. font-weight:400;
  5457. font-style:normal;
  5458. font-size:14px;
  5459. color:#FFFFFF;
  5460. line-height:30px;
  5461. }
  5462. #u40471 .text {
  5463. position:absolute;
  5464. align-self:center;
  5465. padding:0px 0px 0px 0px;
  5466. box-sizing:border-box;
  5467. width:100%;
  5468. }
  5469. #u40471_text {
  5470. border-width:0px;
  5471. white-space:nowrap;
  5472. text-transform:none;
  5473. }
  5474. #u40472_img {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:0px;
  5478. top:0px;
  5479. width:28px;
  5480. height:2px;
  5481. }
  5482. #u40472 {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:1529px;
  5486. top:136px;
  5487. width:27px;
  5488. height:1px;
  5489. display:flex;
  5490. color:#FFFFFF;
  5491. }
  5492. #u40472 .text {
  5493. position:absolute;
  5494. align-self:center;
  5495. padding:2px 2px 2px 2px;
  5496. box-sizing:border-box;
  5497. width:100%;
  5498. }
  5499. #u40472_text {
  5500. border-width:0px;
  5501. word-wrap:break-word;
  5502. text-transform:none;
  5503. visibility:hidden;
  5504. }
  5505. #u40473_img {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:27px;
  5511. height:27px;
  5512. }
  5513. #u40473 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:1701px;
  5517. top:122px;
  5518. width:27px;
  5519. height:27px;
  5520. display:flex;
  5521. font-size:12px;
  5522. color:#FFFFFF;
  5523. }
  5524. #u40473 .text {
  5525. position:absolute;
  5526. align-self:center;
  5527. padding:2px 2px 2px 2px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u40473_text {
  5532. border-width:0px;
  5533. word-wrap:break-word;
  5534. text-transform:none;
  5535. }
  5536. #u40474_div {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:57px;
  5542. height:30px;
  5543. background:inherit;
  5544. background-color:rgba(255, 255, 255, 0);
  5545. border:none;
  5546. border-left:0px;
  5547. border-top:0px;
  5548. border-right:0px;
  5549. border-radius:0px;
  5550. border-bottom-right-radius:0px;
  5551. border-bottom-left-radius:0px;
  5552. -moz-box-shadow:none;
  5553. -webkit-box-shadow:none;
  5554. box-shadow:none;
  5555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5556. font-weight:400;
  5557. font-style:normal;
  5558. font-size:14px;
  5559. color:#FFFFFF;
  5560. line-height:30px;
  5561. }
  5562. #u40474 {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:1735px;
  5566. top:121px;
  5567. width:57px;
  5568. height:30px;
  5569. display:flex;
  5570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5571. font-weight:400;
  5572. font-style:normal;
  5573. font-size:14px;
  5574. color:#FFFFFF;
  5575. line-height:30px;
  5576. }
  5577. #u40474 .text {
  5578. position:absolute;
  5579. align-self:center;
  5580. padding:0px 0px 0px 0px;
  5581. box-sizing:border-box;
  5582. width:100%;
  5583. }
  5584. #u40474_text {
  5585. border-width:0px;
  5586. white-space:nowrap;
  5587. text-transform:none;
  5588. }
  5589. #u40475_img {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:0px;
  5593. top:0px;
  5594. width:28px;
  5595. height:2px;
  5596. }
  5597. #u40475 {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:1663px;
  5601. top:136px;
  5602. width:27px;
  5603. height:1px;
  5604. display:flex;
  5605. color:#FFFFFF;
  5606. }
  5607. #u40475 .text {
  5608. position:absolute;
  5609. align-self:center;
  5610. padding:2px 2px 2px 2px;
  5611. box-sizing:border-box;
  5612. width:100%;
  5613. }
  5614. #u40475_text {
  5615. border-width:0px;
  5616. word-wrap:break-word;
  5617. text-transform:none;
  5618. visibility:hidden;
  5619. }
  5620. #u40476 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:0px;
  5624. top:0px;
  5625. width:0px;
  5626. height:0px;
  5627. }
  5628. #u40477_div {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:375px;
  5634. height:40px;
  5635. background:inherit;
  5636. background-color:rgba(255, 255, 255, 1);
  5637. border:none;
  5638. border-left:0px;
  5639. border-top:0px;
  5640. border-right:0px;
  5641. border-radius:0px;
  5642. border-bottom-right-radius:0px;
  5643. border-bottom-left-radius:0px;
  5644. -moz-box-shadow:none;
  5645. -webkit-box-shadow:none;
  5646. box-shadow:none;
  5647. }
  5648. #u40477 {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:1890px;
  5652. top:67px;
  5653. width:375px;
  5654. height:40px;
  5655. display:flex;
  5656. }
  5657. #u40477 .text {
  5658. position:absolute;
  5659. align-self:center;
  5660. padding:2px 2px 2px 2px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u40477_text {
  5665. border-width:0px;
  5666. word-wrap:break-word;
  5667. text-transform:none;
  5668. visibility:hidden;
  5669. }
  5670. #u40478 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:0px;
  5676. height:0px;
  5677. }
  5678. #u40479_div {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:0px;
  5682. top:0px;
  5683. width:88px;
  5684. height:32px;
  5685. background:inherit;
  5686. background-color:rgba(255, 255, 255, 1);
  5687. box-sizing:border-box;
  5688. border-width:1px;
  5689. border-style:solid;
  5690. border-color:rgba(242, 242, 242, 1);
  5691. border-radius:33px;
  5692. -moz-box-shadow:none;
  5693. -webkit-box-shadow:none;
  5694. box-shadow:none;
  5695. }
  5696. #u40479 {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:2167px;
  5700. top:69px;
  5701. width:88px;
  5702. height:32px;
  5703. display:flex;
  5704. }
  5705. #u40479 .text {
  5706. position:absolute;
  5707. align-self:center;
  5708. padding:2px 2px 2px 2px;
  5709. box-sizing:border-box;
  5710. width:100%;
  5711. }
  5712. #u40479_text {
  5713. border-width:0px;
  5714. word-wrap:break-word;
  5715. text-transform:none;
  5716. visibility:hidden;
  5717. }
  5718. #u40480 {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:0px;
  5724. height:0px;
  5725. }
  5726. #u40481_img {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:0px;
  5730. top:0px;
  5731. width:18px;
  5732. height:18px;
  5733. }
  5734. #u40481 {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:2230px;
  5738. top:76px;
  5739. width:18px;
  5740. height:18px;
  5741. display:flex;
  5742. }
  5743. #u40481 .text {
  5744. position:absolute;
  5745. align-self:center;
  5746. padding:2px 2px 2px 2px;
  5747. box-sizing:border-box;
  5748. width:100%;
  5749. }
  5750. #u40481_text {
  5751. border-width:0px;
  5752. word-wrap:break-word;
  5753. text-transform:none;
  5754. visibility:hidden;
  5755. }
  5756. #u40482_img {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:6px;
  5762. height:6px;
  5763. }
  5764. #u40482 {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:2236px;
  5768. top:82px;
  5769. width:6px;
  5770. height:6px;
  5771. display:flex;
  5772. }
  5773. #u40482 .text {
  5774. position:absolute;
  5775. align-self:center;
  5776. padding:2px 2px 2px 2px;
  5777. box-sizing:border-box;
  5778. width:100%;
  5779. }
  5780. #u40482_text {
  5781. border-width:0px;
  5782. word-wrap:break-word;
  5783. text-transform:none;
  5784. visibility:hidden;
  5785. }
  5786. #u40483 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:0px;
  5790. top:0px;
  5791. width:0px;
  5792. height:0px;
  5793. }
  5794. #u40484_img {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:0px;
  5798. top:0px;
  5799. width:5px;
  5800. height:5px;
  5801. }
  5802. #u40484 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:2181px;
  5806. top:83px;
  5807. width:5px;
  5808. height:5px;
  5809. display:flex;
  5810. }
  5811. #u40484 .text {
  5812. position:absolute;
  5813. align-self:center;
  5814. padding:2px 2px 2px 2px;
  5815. box-sizing:border-box;
  5816. width:100%;
  5817. }
  5818. #u40484_text {
  5819. border-width:0px;
  5820. word-wrap:break-word;
  5821. text-transform:none;
  5822. visibility:hidden;
  5823. }
  5824. #u40485_img {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:0px;
  5828. top:0px;
  5829. width:5px;
  5830. height:5px;
  5831. }
  5832. #u40485 {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:2197px;
  5836. top:83px;
  5837. width:5px;
  5838. height:5px;
  5839. display:flex;
  5840. }
  5841. #u40485 .text {
  5842. position:absolute;
  5843. align-self:center;
  5844. padding:2px 2px 2px 2px;
  5845. box-sizing:border-box;
  5846. width:100%;
  5847. }
  5848. #u40485_text {
  5849. border-width:0px;
  5850. word-wrap:break-word;
  5851. text-transform:none;
  5852. visibility:hidden;
  5853. }
  5854. #u40486_img {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:7px;
  5860. height:7px;
  5861. }
  5862. #u40486 {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:2188px;
  5866. top:82px;
  5867. width:7px;
  5868. height:7px;
  5869. display:flex;
  5870. }
  5871. #u40486 .text {
  5872. position:absolute;
  5873. align-self:center;
  5874. padding:2px 2px 2px 2px;
  5875. box-sizing:border-box;
  5876. width:100%;
  5877. }
  5878. #u40486_text {
  5879. border-width:0px;
  5880. word-wrap:break-word;
  5881. text-transform:none;
  5882. visibility:hidden;
  5883. }
  5884. #u40487_img {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:0px;
  5888. top:0px;
  5889. width:19px;
  5890. height:2px;
  5891. }
  5892. #u40487 {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:2205px;
  5896. top:85px;
  5897. width:18px;
  5898. height:1px;
  5899. display:flex;
  5900. -webkit-transform:rotate(90deg);
  5901. -moz-transform:rotate(90deg);
  5902. -ms-transform:rotate(90deg);
  5903. transform:rotate(90deg);
  5904. }
  5905. #u40487 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:2px 2px 2px 2px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u40487_text {
  5913. border-width:0px;
  5914. word-wrap:break-word;
  5915. text-transform:none;
  5916. visibility:hidden;
  5917. }
  5918. #u40488_div {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:12px;
  5924. height:12px;
  5925. background:inherit;
  5926. background-color:rgba(255, 255, 255, 0);
  5927. box-sizing:border-box;
  5928. border-width:2px;
  5929. border-style:solid;
  5930. border-color:rgba(51, 51, 51, 1);
  5931. border-right:0px;
  5932. border-bottom:0px;
  5933. border-radius:0px;
  5934. border-top-right-radius:0px;
  5935. border-bottom-left-radius:0px;
  5936. -moz-box-shadow:none;
  5937. -webkit-box-shadow:none;
  5938. box-shadow:none;
  5939. }
  5940. #u40488 {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:1906px;
  5944. top:79px;
  5945. width:12px;
  5946. height:12px;
  5947. display:flex;
  5948. -webkit-transform:rotate(315deg);
  5949. -moz-transform:rotate(315deg);
  5950. -ms-transform:rotate(315deg);
  5951. transform:rotate(315deg);
  5952. }
  5953. #u40488 .text {
  5954. position:absolute;
  5955. align-self:center;
  5956. padding:2px 2px 2px 2px;
  5957. box-sizing:border-box;
  5958. width:100%;
  5959. }
  5960. #u40488_text {
  5961. border-width:0px;
  5962. word-wrap:break-word;
  5963. text-transform:none;
  5964. visibility:hidden;
  5965. }
  5966. #u40489_div {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:109px;
  5972. height:25px;
  5973. background:inherit;
  5974. background-color:rgba(255, 255, 255, 0);
  5975. border:none;
  5976. border-radius:0px;
  5977. -moz-box-shadow:none;
  5978. -webkit-box-shadow:none;
  5979. box-shadow:none;
  5980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5981. font-weight:400;
  5982. font-style:normal;
  5983. font-size:18px;
  5984. }
  5985. #u40489 {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:1920px;
  5989. top:72px;
  5990. width:109px;
  5991. height:25px;
  5992. display:flex;
  5993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. font-size:18px;
  5997. }
  5998. #u40489 .text {
  5999. position:absolute;
  6000. align-self:flex-start;
  6001. padding:0px 0px 0px 0px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u40489_text {
  6006. border-width:0px;
  6007. white-space:nowrap;
  6008. text-transform:none;
  6009. }
  6010. #u40490_img {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:375px;
  6016. height:44px;
  6017. }
  6018. #u40490 {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:1890px;
  6022. top:24px;
  6023. width:375px;
  6024. height:44px;
  6025. display:flex;
  6026. }
  6027. #u40490 .text {
  6028. position:absolute;
  6029. align-self:center;
  6030. padding:2px 2px 2px 2px;
  6031. box-sizing:border-box;
  6032. width:100%;
  6033. }
  6034. #u40490_text {
  6035. border-width:0px;
  6036. word-wrap:break-word;
  6037. text-transform:none;
  6038. visibility:hidden;
  6039. }
  6040. #u40492_img {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:0px;
  6044. top:0px;
  6045. width:433px;
  6046. height:865px;
  6047. }
  6048. #u40492 {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:2335px;
  6052. top:0px;
  6053. width:433px;
  6054. height:865px;
  6055. display:flex;
  6056. }
  6057. #u40492 .text {
  6058. position:absolute;
  6059. align-self:center;
  6060. padding:2px 2px 2px 2px;
  6061. box-sizing:border-box;
  6062. width:100%;
  6063. }
  6064. #u40492_text {
  6065. border-width:0px;
  6066. word-wrap:break-word;
  6067. text-transform:none;
  6068. visibility:hidden;
  6069. }
  6070. #u40493_div {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:0px;
  6074. top:0px;
  6075. width:375px;
  6076. height:40px;
  6077. background:inherit;
  6078. background-color:rgba(255, 255, 255, 1);
  6079. box-sizing:border-box;
  6080. border-width:1px;
  6081. border-style:solid;
  6082. border-color:rgba(215, 215, 215, 1);
  6083. border-left:0px;
  6084. border-top:0px;
  6085. border-right:0px;
  6086. border-radius:0px;
  6087. border-bottom-right-radius:0px;
  6088. border-bottom-left-radius:0px;
  6089. -moz-box-shadow:none;
  6090. -webkit-box-shadow:none;
  6091. box-shadow:none;
  6092. }
  6093. #u40493 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:2364px;
  6097. top:67px;
  6098. width:375px;
  6099. height:40px;
  6100. display:flex;
  6101. }
  6102. #u40493 .text {
  6103. position:absolute;
  6104. align-self:center;
  6105. padding:2px 2px 2px 2px;
  6106. box-sizing:border-box;
  6107. width:100%;
  6108. }
  6109. #u40493_text {
  6110. border-width:0px;
  6111. word-wrap:break-word;
  6112. text-transform:none;
  6113. visibility:hidden;
  6114. }
  6115. #u40494 {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:0px;
  6120. width:0px;
  6121. height:0px;
  6122. }
  6123. #u40495_div {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:0px;
  6127. top:0px;
  6128. width:88px;
  6129. height:32px;
  6130. background:inherit;
  6131. background-color:rgba(255, 255, 255, 1);
  6132. box-sizing:border-box;
  6133. border-width:1px;
  6134. border-style:solid;
  6135. border-color:rgba(242, 242, 242, 1);
  6136. border-radius:33px;
  6137. -moz-box-shadow:none;
  6138. -webkit-box-shadow:none;
  6139. box-shadow:none;
  6140. }
  6141. #u40495 {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:2644px;
  6145. top:71px;
  6146. width:88px;
  6147. height:32px;
  6148. display:flex;
  6149. }
  6150. #u40495 .text {
  6151. position:absolute;
  6152. align-self:center;
  6153. padding:2px 2px 2px 2px;
  6154. box-sizing:border-box;
  6155. width:100%;
  6156. }
  6157. #u40495_text {
  6158. border-width:0px;
  6159. word-wrap:break-word;
  6160. text-transform:none;
  6161. visibility:hidden;
  6162. }
  6163. #u40496 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:0px;
  6169. height:0px;
  6170. }
  6171. #u40497_img {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:18px;
  6177. height:18px;
  6178. }
  6179. #u40497 {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:2707px;
  6183. top:78px;
  6184. width:18px;
  6185. height:18px;
  6186. display:flex;
  6187. }
  6188. #u40497 .text {
  6189. position:absolute;
  6190. align-self:center;
  6191. padding:2px 2px 2px 2px;
  6192. box-sizing:border-box;
  6193. width:100%;
  6194. }
  6195. #u40497_text {
  6196. border-width:0px;
  6197. word-wrap:break-word;
  6198. text-transform:none;
  6199. visibility:hidden;
  6200. }
  6201. #u40498_img {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:6px;
  6207. height:6px;
  6208. }
  6209. #u40498 {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:2713px;
  6213. top:84px;
  6214. width:6px;
  6215. height:6px;
  6216. display:flex;
  6217. }
  6218. #u40498 .text {
  6219. position:absolute;
  6220. align-self:center;
  6221. padding:2px 2px 2px 2px;
  6222. box-sizing:border-box;
  6223. width:100%;
  6224. }
  6225. #u40498_text {
  6226. border-width:0px;
  6227. word-wrap:break-word;
  6228. text-transform:none;
  6229. visibility:hidden;
  6230. }
  6231. #u40499 {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:0px;
  6235. top:0px;
  6236. width:0px;
  6237. height:0px;
  6238. }
  6239. #u40500_img {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:0px;
  6243. top:0px;
  6244. width:5px;
  6245. height:5px;
  6246. }
  6247. #u40500 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:2658px;
  6251. top:85px;
  6252. width:5px;
  6253. height:5px;
  6254. display:flex;
  6255. }
  6256. #u40500 .text {
  6257. position:absolute;
  6258. align-self:center;
  6259. padding:2px 2px 2px 2px;
  6260. box-sizing:border-box;
  6261. width:100%;
  6262. }
  6263. #u40500_text {
  6264. border-width:0px;
  6265. word-wrap:break-word;
  6266. text-transform:none;
  6267. visibility:hidden;
  6268. }
  6269. #u40501_img {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:0px;
  6273. top:0px;
  6274. width:5px;
  6275. height:5px;
  6276. }
  6277. #u40501 {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:2674px;
  6281. top:85px;
  6282. width:5px;
  6283. height:5px;
  6284. display:flex;
  6285. }
  6286. #u40501 .text {
  6287. position:absolute;
  6288. align-self:center;
  6289. padding:2px 2px 2px 2px;
  6290. box-sizing:border-box;
  6291. width:100%;
  6292. }
  6293. #u40501_text {
  6294. border-width:0px;
  6295. word-wrap:break-word;
  6296. text-transform:none;
  6297. visibility:hidden;
  6298. }
  6299. #u40502_img {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:7px;
  6305. height:7px;
  6306. }
  6307. #u40502 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:2665px;
  6311. top:84px;
  6312. width:7px;
  6313. height:7px;
  6314. display:flex;
  6315. }
  6316. #u40502 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:2px 2px 2px 2px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u40502_text {
  6324. border-width:0px;
  6325. word-wrap:break-word;
  6326. text-transform:none;
  6327. visibility:hidden;
  6328. }
  6329. #u40503_img {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:19px;
  6335. height:2px;
  6336. }
  6337. #u40503 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:2682px;
  6341. top:87px;
  6342. width:18px;
  6343. height:1px;
  6344. display:flex;
  6345. -webkit-transform:rotate(90deg);
  6346. -moz-transform:rotate(90deg);
  6347. -ms-transform:rotate(90deg);
  6348. transform:rotate(90deg);
  6349. }
  6350. #u40503 .text {
  6351. position:absolute;
  6352. align-self:center;
  6353. padding:2px 2px 2px 2px;
  6354. box-sizing:border-box;
  6355. width:100%;
  6356. }
  6357. #u40503_text {
  6358. border-width:0px;
  6359. word-wrap:break-word;
  6360. text-transform:none;
  6361. visibility:hidden;
  6362. }
  6363. #u40504_img {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:375px;
  6369. height:44px;
  6370. }
  6371. #u40504 {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:2364px;
  6375. top:24px;
  6376. width:375px;
  6377. height:44px;
  6378. display:flex;
  6379. }
  6380. #u40504 .text {
  6381. position:absolute;
  6382. align-self:center;
  6383. padding:2px 2px 2px 2px;
  6384. box-sizing:border-box;
  6385. width:100%;
  6386. }
  6387. #u40504_text {
  6388. border-width:0px;
  6389. word-wrap:break-word;
  6390. text-transform:none;
  6391. visibility:hidden;
  6392. }
  6393. #u40505_div {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:375px;
  6399. height:50px;
  6400. background:inherit;
  6401. background-color:rgba(255, 255, 255, 1);
  6402. box-sizing:border-box;
  6403. border-width:1px;
  6404. border-style:solid;
  6405. border-color:rgba(242, 242, 242, 1);
  6406. border-radius:26px;
  6407. border-top-left-radius:0px;
  6408. border-top-right-radius:0px;
  6409. -moz-box-shadow:none;
  6410. -webkit-box-shadow:none;
  6411. box-shadow:none;
  6412. }
  6413. #u40505 {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:2364px;
  6417. top:788px;
  6418. width:375px;
  6419. height:50px;
  6420. display:flex;
  6421. }
  6422. #u40505 .text {
  6423. position:absolute;
  6424. align-self:center;
  6425. padding:2px 2px 2px 2px;
  6426. box-sizing:border-box;
  6427. width:100%;
  6428. }
  6429. #u40505_text {
  6430. border-width:0px;
  6431. word-wrap:break-word;
  6432. text-transform:none;
  6433. visibility:hidden;
  6434. }
  6435. #u40506 {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:0px;
  6441. height:0px;
  6442. }
  6443. #u40507_img {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:24px;
  6449. height:24px;
  6450. }
  6451. #u40507 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:2404px;
  6455. top:792px;
  6456. width:24px;
  6457. height:24px;
  6458. display:flex;
  6459. font-size:8px;
  6460. }
  6461. #u40507 .text {
  6462. position:absolute;
  6463. align-self:center;
  6464. padding:2px 2px 2px 2px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u40507_text {
  6469. border-width:0px;
  6470. word-wrap:break-word;
  6471. text-transform:none;
  6472. }
  6473. #u40508_div {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:25px;
  6479. height:17px;
  6480. background:inherit;
  6481. background-color:rgba(255, 255, 255, 0);
  6482. border:none;
  6483. border-radius:0px;
  6484. -moz-box-shadow:none;
  6485. -webkit-box-shadow:none;
  6486. box-shadow:none;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:12px;
  6491. }
  6492. #u40508 {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:2404px;
  6496. top:817px;
  6497. width:25px;
  6498. height:17px;
  6499. display:flex;
  6500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6501. font-weight:400;
  6502. font-style:normal;
  6503. font-size:12px;
  6504. }
  6505. #u40508 .text {
  6506. position:absolute;
  6507. align-self:flex-start;
  6508. padding:0px 0px 0px 0px;
  6509. box-sizing:border-box;
  6510. width:100%;
  6511. }
  6512. #u40508_text {
  6513. border-width:0px;
  6514. white-space:nowrap;
  6515. text-transform:none;
  6516. }
  6517. #u40509 {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:0px;
  6521. top:0px;
  6522. width:0px;
  6523. height:0px;
  6524. }
  6525. #u40510_img {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:0px;
  6529. top:0px;
  6530. width:24px;
  6531. height:24px;
  6532. }
  6533. #u40510 {
  6534. border-width:0px;
  6535. position:absolute;
  6536. left:2674px;
  6537. top:794px;
  6538. width:24px;
  6539. height:24px;
  6540. display:flex;
  6541. font-size:8px;
  6542. }
  6543. #u40510 .text {
  6544. position:absolute;
  6545. align-self:center;
  6546. padding:2px 2px 2px 2px;
  6547. box-sizing:border-box;
  6548. width:100%;
  6549. }
  6550. #u40510_text {
  6551. border-width:0px;
  6552. word-wrap:break-word;
  6553. text-transform:none;
  6554. }
  6555. #u40511_div {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:25px;
  6561. height:17px;
  6562. background:inherit;
  6563. background-color:rgba(255, 255, 255, 0);
  6564. border:none;
  6565. border-radius:0px;
  6566. -moz-box-shadow:none;
  6567. -webkit-box-shadow:none;
  6568. box-shadow:none;
  6569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6570. font-weight:400;
  6571. font-style:normal;
  6572. font-size:12px;
  6573. }
  6574. #u40511 {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:2674px;
  6578. top:819px;
  6579. width:25px;
  6580. height:17px;
  6581. display:flex;
  6582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6583. font-weight:400;
  6584. font-style:normal;
  6585. font-size:12px;
  6586. }
  6587. #u40511 .text {
  6588. position:absolute;
  6589. align-self:flex-start;
  6590. padding:0px 0px 0px 0px;
  6591. box-sizing:border-box;
  6592. width:100%;
  6593. }
  6594. #u40511_text {
  6595. border-width:0px;
  6596. white-space:nowrap;
  6597. text-transform:none;
  6598. }
  6599. #u40512_div {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:375px;
  6605. height:681px;
  6606. background:inherit;
  6607. background-color:rgba(242, 242, 242, 0.462745098039216);
  6608. border:none;
  6609. border-radius:0px;
  6610. -moz-box-shadow:none;
  6611. -webkit-box-shadow:none;
  6612. box-shadow:none;
  6613. }
  6614. #u40512 {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:2364px;
  6618. top:107px;
  6619. width:375px;
  6620. height:681px;
  6621. display:flex;
  6622. }
  6623. #u40512 .text {
  6624. position:absolute;
  6625. align-self:center;
  6626. padding:2px 2px 2px 2px;
  6627. box-sizing:border-box;
  6628. width:100%;
  6629. }
  6630. #u40512_text {
  6631. border-width:0px;
  6632. word-wrap:break-word;
  6633. text-transform:none;
  6634. visibility:hidden;
  6635. }
  6636. #u40513 {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:0px;
  6640. top:0px;
  6641. width:0px;
  6642. height:0px;
  6643. }
  6644. #u40514_img {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:24px;
  6650. height:24px;
  6651. }
  6652. #u40514 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:2586px;
  6656. top:792px;
  6657. width:24px;
  6658. height:24px;
  6659. display:flex;
  6660. font-size:8px;
  6661. }
  6662. #u40514 .text {
  6663. position:absolute;
  6664. align-self:center;
  6665. padding:2px 2px 2px 2px;
  6666. box-sizing:border-box;
  6667. width:100%;
  6668. }
  6669. #u40514_text {
  6670. border-width:0px;
  6671. word-wrap:break-word;
  6672. text-transform:none;
  6673. }
  6674. #u40515_div {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:0px;
  6678. top:0px;
  6679. width:37px;
  6680. height:17px;
  6681. background:inherit;
  6682. background-color:rgba(255, 255, 255, 0);
  6683. border:none;
  6684. border-radius:0px;
  6685. -moz-box-shadow:none;
  6686. -webkit-box-shadow:none;
  6687. box-shadow:none;
  6688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:12px;
  6692. }
  6693. #u40515 {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:2580px;
  6697. top:817px;
  6698. width:37px;
  6699. height:17px;
  6700. display:flex;
  6701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:12px;
  6705. }
  6706. #u40515 .text {
  6707. position:absolute;
  6708. align-self:flex-start;
  6709. padding:0px 0px 0px 0px;
  6710. box-sizing:border-box;
  6711. width:100%;
  6712. }
  6713. #u40515_text {
  6714. border-width:0px;
  6715. white-space:nowrap;
  6716. text-transform:none;
  6717. }
  6718. #u40516 {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:0px;
  6724. height:0px;
  6725. }
  6726. #u40517_img {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:0px;
  6731. width:24px;
  6732. height:24px;
  6733. }
  6734. #u40517 {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:2492px;
  6738. top:792px;
  6739. width:24px;
  6740. height:24px;
  6741. display:flex;
  6742. font-size:8px;
  6743. }
  6744. #u40517 .text {
  6745. position:absolute;
  6746. align-self:center;
  6747. padding:2px 2px 2px 2px;
  6748. box-sizing:border-box;
  6749. width:100%;
  6750. }
  6751. #u40517_text {
  6752. border-width:0px;
  6753. word-wrap:break-word;
  6754. text-transform:none;
  6755. }
  6756. #u40518_div {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:37px;
  6762. height:17px;
  6763. background:inherit;
  6764. background-color:rgba(255, 255, 255, 0);
  6765. border:none;
  6766. border-radius:0px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:12px;
  6774. }
  6775. #u40518 {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:2486px;
  6779. top:817px;
  6780. width:37px;
  6781. height:17px;
  6782. display:flex;
  6783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6784. font-weight:400;
  6785. font-style:normal;
  6786. font-size:12px;
  6787. }
  6788. #u40518 .text {
  6789. position:absolute;
  6790. align-self:flex-start;
  6791. padding:0px 0px 0px 0px;
  6792. box-sizing:border-box;
  6793. width:100%;
  6794. }
  6795. #u40518_text {
  6796. border-width:0px;
  6797. white-space:nowrap;
  6798. text-transform:none;
  6799. }
  6800. #u40519_div {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:375px;
  6806. height:732px;
  6807. background:inherit;
  6808. background-color:rgba(244, 244, 244, 1);
  6809. box-sizing:border-box;
  6810. border-width:1px;
  6811. border-style:solid;
  6812. border-color:rgba(242, 242, 242, 1);
  6813. border-radius:26px;
  6814. border-top-left-radius:0px;
  6815. border-top-right-radius:0px;
  6816. -moz-box-shadow:none;
  6817. -webkit-box-shadow:none;
  6818. box-shadow:none;
  6819. }
  6820. #u40519 {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:2364px;
  6824. top:107px;
  6825. width:375px;
  6826. height:732px;
  6827. display:flex;
  6828. }
  6829. #u40519 .text {
  6830. position:absolute;
  6831. align-self:center;
  6832. padding:2px 2px 2px 2px;
  6833. box-sizing:border-box;
  6834. width:100%;
  6835. }
  6836. #u40519_text {
  6837. border-width:0px;
  6838. word-wrap:break-word;
  6839. text-transform:none;
  6840. visibility:hidden;
  6841. }
  6842. #u40520_div {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:375px;
  6848. height:732px;
  6849. background:inherit;
  6850. background-color:rgba(242, 242, 242, 1);
  6851. box-sizing:border-box;
  6852. border-width:1px;
  6853. border-style:solid;
  6854. border-color:rgba(242, 242, 242, 1);
  6855. border-radius:26px;
  6856. border-top-left-radius:0px;
  6857. border-top-right-radius:0px;
  6858. -moz-box-shadow:none;
  6859. -webkit-box-shadow:none;
  6860. box-shadow:none;
  6861. }
  6862. #u40520 {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:2364px;
  6866. top:107px;
  6867. width:375px;
  6868. height:732px;
  6869. display:flex;
  6870. }
  6871. #u40520 .text {
  6872. position:absolute;
  6873. align-self:center;
  6874. padding:2px 2px 2px 2px;
  6875. box-sizing:border-box;
  6876. width:100%;
  6877. }
  6878. #u40520_text {
  6879. border-width:0px;
  6880. word-wrap:break-word;
  6881. text-transform:none;
  6882. visibility:hidden;
  6883. }
  6884. #u40521_div {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:0px;
  6888. top:0px;
  6889. width:375px;
  6890. height:58px;
  6891. background:inherit;
  6892. background-color:rgba(24, 144, 255, 1);
  6893. border:none;
  6894. border-radius:0px;
  6895. -moz-box-shadow:none;
  6896. -webkit-box-shadow:none;
  6897. box-shadow:none;
  6898. }
  6899. #u40521 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:2364px;
  6903. top:107px;
  6904. width:375px;
  6905. height:58px;
  6906. display:flex;
  6907. }
  6908. #u40521 .text {
  6909. position:absolute;
  6910. align-self:center;
  6911. padding:2px 2px 2px 2px;
  6912. box-sizing:border-box;
  6913. width:100%;
  6914. }
  6915. #u40521_text {
  6916. border-width:0px;
  6917. word-wrap:break-word;
  6918. text-transform:none;
  6919. visibility:hidden;
  6920. }
  6921. #u40522_div {
  6922. border-width:0px;
  6923. position:absolute;
  6924. left:0px;
  6925. top:0px;
  6926. width:375px;
  6927. height:615px;
  6928. background:inherit;
  6929. background-color:rgba(255, 255, 255, 1);
  6930. border:none;
  6931. border-top:0px;
  6932. border-bottom:0px;
  6933. border-radius:0px;
  6934. border-top-left-radius:0px;
  6935. border-top-right-radius:0px;
  6936. border-bottom-right-radius:0px;
  6937. border-bottom-left-radius:0px;
  6938. -moz-box-shadow:none;
  6939. -webkit-box-shadow:none;
  6940. box-shadow:none;
  6941. }
  6942. #u40522 {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:2364px;
  6946. top:165px;
  6947. width:375px;
  6948. height:615px;
  6949. display:flex;
  6950. }
  6951. #u40522 .text {
  6952. position:absolute;
  6953. align-self:center;
  6954. padding:2px 2px 2px 2px;
  6955. box-sizing:border-box;
  6956. width:100%;
  6957. }
  6958. #u40522_text {
  6959. border-width:0px;
  6960. word-wrap:break-word;
  6961. text-transform:none;
  6962. visibility:hidden;
  6963. }
  6964. #u40523 {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:0px;
  6968. top:0px;
  6969. width:0px;
  6970. height:0px;
  6971. }
  6972. #u40524_div {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:0px;
  6976. top:0px;
  6977. width:375px;
  6978. height:60px;
  6979. background:inherit;
  6980. background-color:rgba(255, 255, 255, 1);
  6981. border:none;
  6982. border-top:0px;
  6983. border-radius:28px;
  6984. border-top-left-radius:0px;
  6985. border-top-right-radius:0px;
  6986. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6987. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6988. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6990. font-weight:400;
  6991. font-style:normal;
  6992. font-size:14px;
  6993. color:#FFFFFF;
  6994. }
  6995. #u40524 {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:2364px;
  6999. top:780px;
  7000. width:375px;
  7001. height:60px;
  7002. display:flex;
  7003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7004. font-weight:400;
  7005. font-style:normal;
  7006. font-size:14px;
  7007. color:#FFFFFF;
  7008. }
  7009. #u40524 .text {
  7010. position:absolute;
  7011. align-self:center;
  7012. padding:2px 2px 2px 2px;
  7013. box-sizing:border-box;
  7014. width:100%;
  7015. }
  7016. #u40524_text {
  7017. border-width:0px;
  7018. word-wrap:break-word;
  7019. text-transform:none;
  7020. visibility:hidden;
  7021. }
  7022. #u40525_div {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:0px;
  7026. top:0px;
  7027. width:324px;
  7028. height:40px;
  7029. background:inherit;
  7030. background-color:rgba(0, 137, 254, 1);
  7031. border:none;
  7032. border-radius:63px;
  7033. -moz-box-shadow:none;
  7034. -webkit-box-shadow:none;
  7035. box-shadow:none;
  7036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7037. font-weight:400;
  7038. font-style:normal;
  7039. font-size:14px;
  7040. color:#FFFFFF;
  7041. }
  7042. #u40525 {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:2392px;
  7046. top:789px;
  7047. width:324px;
  7048. height:40px;
  7049. display:flex;
  7050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7051. font-weight:400;
  7052. font-style:normal;
  7053. font-size:14px;
  7054. color:#FFFFFF;
  7055. }
  7056. #u40525 .text {
  7057. position:absolute;
  7058. align-self:center;
  7059. padding:2px 2px 2px 2px;
  7060. box-sizing:border-box;
  7061. width:100%;
  7062. }
  7063. #u40525_text {
  7064. border-width:0px;
  7065. word-wrap:break-word;
  7066. text-transform:none;
  7067. }
  7068. #u40526_img {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:0px;
  7072. top:0px;
  7073. width:326px;
  7074. height:409px;
  7075. }
  7076. #u40526 {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:2390px;
  7080. top:190px;
  7081. width:326px;
  7082. height:409px;
  7083. display:flex;
  7084. }
  7085. #u40526 .text {
  7086. position:absolute;
  7087. align-self:center;
  7088. padding:2px 2px 2px 2px;
  7089. box-sizing:border-box;
  7090. width:100%;
  7091. }
  7092. #u40526_text {
  7093. border-width:0px;
  7094. word-wrap:break-word;
  7095. text-transform:none;
  7096. visibility:hidden;
  7097. }
  7098. #u40527_img {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:0px;
  7102. top:0px;
  7103. width:30px;
  7104. height:30px;
  7105. }
  7106. #u40527 {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:57px;
  7110. top:473px;
  7111. width:30px;
  7112. height:30px;
  7113. display:flex;
  7114. color:#FFFFFF;
  7115. }
  7116. #u40527 .text {
  7117. position:absolute;
  7118. align-self:center;
  7119. padding:2px 2px 2px 2px;
  7120. box-sizing:border-box;
  7121. width:100%;
  7122. }
  7123. #u40527_text {
  7124. border-width:0px;
  7125. word-wrap:break-word;
  7126. text-transform:none;
  7127. }
  7128. #u40528_div {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:0px;
  7132. top:0px;
  7133. width:73px;
  7134. height:25px;
  7135. background:inherit;
  7136. background-color:rgba(255, 255, 255, 0);
  7137. border:none;
  7138. border-left:0px;
  7139. border-top:0px;
  7140. border-right:0px;
  7141. border-radius:0px;
  7142. border-bottom-right-radius:0px;
  7143. border-bottom-left-radius:0px;
  7144. -moz-box-shadow:none;
  7145. -webkit-box-shadow:none;
  7146. box-shadow:none;
  7147. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7148. font-weight:500;
  7149. font-style:normal;
  7150. font-size:18px;
  7151. color:#5C93FF;
  7152. }
  7153. #u40528 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:95px;
  7157. top:473px;
  7158. width:73px;
  7159. height:25px;
  7160. display:flex;
  7161. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7162. font-weight:500;
  7163. font-style:normal;
  7164. font-size:18px;
  7165. color:#5C93FF;
  7166. }
  7167. #u40528 .text {
  7168. position:absolute;
  7169. align-self:center;
  7170. padding:0px 0px 0px 0px;
  7171. box-sizing:border-box;
  7172. width:100%;
  7173. }
  7174. #u40528_text {
  7175. border-width:0px;
  7176. white-space:nowrap;
  7177. text-transform:none;
  7178. }
  7179. #u40529_div {
  7180. border-width:0px;
  7181. position:absolute;
  7182. left:0px;
  7183. top:0px;
  7184. width:286px;
  7185. height:17px;
  7186. background:inherit;
  7187. background-color:rgba(255, 255, 255, 0);
  7188. border:none;
  7189. border-left:0px;
  7190. border-top:0px;
  7191. border-right:0px;
  7192. border-radius:0px;
  7193. border-bottom-right-radius:0px;
  7194. border-bottom-left-radius:0px;
  7195. -moz-box-shadow:none;
  7196. -webkit-box-shadow:none;
  7197. box-shadow:none;
  7198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7199. font-weight:400;
  7200. font-style:normal;
  7201. font-size:12px;
  7202. }
  7203. #u40529 {
  7204. border-width:0px;
  7205. position:absolute;
  7206. left:95px;
  7207. top:503px;
  7208. width:286px;
  7209. height:17px;
  7210. display:flex;
  7211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7212. font-weight:400;
  7213. font-style:normal;
  7214. font-size:12px;
  7215. }
  7216. #u40529 .text {
  7217. position:absolute;
  7218. align-self:flex-start;
  7219. padding:0px 0px 0px 0px;
  7220. box-sizing:border-box;
  7221. width:100%;
  7222. }
  7223. #u40529_text {
  7224. border-width:0px;
  7225. word-wrap:break-word;
  7226. text-transform:none;
  7227. }
  7228. #u40530 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:0px;
  7232. top:0px;
  7233. width:0px;
  7234. height:0px;
  7235. }
  7236. #u40531_div {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:0px;
  7240. top:0px;
  7241. width:375px;
  7242. height:40px;
  7243. background:inherit;
  7244. background-color:rgba(255, 255, 255, 1);
  7245. border:none;
  7246. border-left:0px;
  7247. border-top:0px;
  7248. border-right:0px;
  7249. border-radius:0px;
  7250. border-bottom-right-radius:0px;
  7251. border-bottom-left-radius:0px;
  7252. -moz-box-shadow:none;
  7253. -webkit-box-shadow:none;
  7254. box-shadow:none;
  7255. }
  7256. #u40531 {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:954px;
  7260. top:67px;
  7261. width:375px;
  7262. height:40px;
  7263. display:flex;
  7264. }
  7265. #u40531 .text {
  7266. position:absolute;
  7267. align-self:center;
  7268. padding:2px 2px 2px 2px;
  7269. box-sizing:border-box;
  7270. width:100%;
  7271. }
  7272. #u40531_text {
  7273. border-width:0px;
  7274. word-wrap:break-word;
  7275. text-transform:none;
  7276. visibility:hidden;
  7277. }
  7278. #u40532 {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:0px;
  7282. top:0px;
  7283. width:0px;
  7284. height:0px;
  7285. }
  7286. #u40533_div {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:88px;
  7292. height:32px;
  7293. background:inherit;
  7294. background-color:rgba(255, 255, 255, 1);
  7295. box-sizing:border-box;
  7296. border-width:1px;
  7297. border-style:solid;
  7298. border-color:rgba(242, 242, 242, 1);
  7299. border-radius:33px;
  7300. -moz-box-shadow:none;
  7301. -webkit-box-shadow:none;
  7302. box-shadow:none;
  7303. }
  7304. #u40533 {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:1231px;
  7308. top:69px;
  7309. width:88px;
  7310. height:32px;
  7311. display:flex;
  7312. }
  7313. #u40533 .text {
  7314. position:absolute;
  7315. align-self:center;
  7316. padding:2px 2px 2px 2px;
  7317. box-sizing:border-box;
  7318. width:100%;
  7319. }
  7320. #u40533_text {
  7321. border-width:0px;
  7322. word-wrap:break-word;
  7323. text-transform:none;
  7324. visibility:hidden;
  7325. }
  7326. #u40534 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:0px;
  7332. height:0px;
  7333. }
  7334. #u40535_img {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:18px;
  7340. height:18px;
  7341. }
  7342. #u40535 {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:1294px;
  7346. top:76px;
  7347. width:18px;
  7348. height:18px;
  7349. display:flex;
  7350. }
  7351. #u40535 .text {
  7352. position:absolute;
  7353. align-self:center;
  7354. padding:2px 2px 2px 2px;
  7355. box-sizing:border-box;
  7356. width:100%;
  7357. }
  7358. #u40535_text {
  7359. border-width:0px;
  7360. word-wrap:break-word;
  7361. text-transform:none;
  7362. visibility:hidden;
  7363. }
  7364. #u40536_img {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:0px;
  7368. top:0px;
  7369. width:6px;
  7370. height:6px;
  7371. }
  7372. #u40536 {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:1300px;
  7376. top:82px;
  7377. width:6px;
  7378. height:6px;
  7379. display:flex;
  7380. }
  7381. #u40536 .text {
  7382. position:absolute;
  7383. align-self:center;
  7384. padding:2px 2px 2px 2px;
  7385. box-sizing:border-box;
  7386. width:100%;
  7387. }
  7388. #u40536_text {
  7389. border-width:0px;
  7390. word-wrap:break-word;
  7391. text-transform:none;
  7392. visibility:hidden;
  7393. }
  7394. #u40537 {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:0px;
  7398. top:0px;
  7399. width:0px;
  7400. height:0px;
  7401. }
  7402. #u40538_img {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:0px;
  7406. top:0px;
  7407. width:5px;
  7408. height:5px;
  7409. }
  7410. #u40538 {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:1245px;
  7414. top:83px;
  7415. width:5px;
  7416. height:5px;
  7417. display:flex;
  7418. }
  7419. #u40538 .text {
  7420. position:absolute;
  7421. align-self:center;
  7422. padding:2px 2px 2px 2px;
  7423. box-sizing:border-box;
  7424. width:100%;
  7425. }
  7426. #u40538_text {
  7427. border-width:0px;
  7428. word-wrap:break-word;
  7429. text-transform:none;
  7430. visibility:hidden;
  7431. }
  7432. #u40539_img {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:0px;
  7436. top:0px;
  7437. width:5px;
  7438. height:5px;
  7439. }
  7440. #u40539 {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:1261px;
  7444. top:83px;
  7445. width:5px;
  7446. height:5px;
  7447. display:flex;
  7448. }
  7449. #u40539 .text {
  7450. position:absolute;
  7451. align-self:center;
  7452. padding:2px 2px 2px 2px;
  7453. box-sizing:border-box;
  7454. width:100%;
  7455. }
  7456. #u40539_text {
  7457. border-width:0px;
  7458. word-wrap:break-word;
  7459. text-transform:none;
  7460. visibility:hidden;
  7461. }
  7462. #u40540_img {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:7px;
  7468. height:7px;
  7469. }
  7470. #u40540 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:1252px;
  7474. top:82px;
  7475. width:7px;
  7476. height:7px;
  7477. display:flex;
  7478. }
  7479. #u40540 .text {
  7480. position:absolute;
  7481. align-self:center;
  7482. padding:2px 2px 2px 2px;
  7483. box-sizing:border-box;
  7484. width:100%;
  7485. }
  7486. #u40540_text {
  7487. border-width:0px;
  7488. word-wrap:break-word;
  7489. text-transform:none;
  7490. visibility:hidden;
  7491. }
  7492. #u40541_img {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:0px;
  7496. top:0px;
  7497. width:19px;
  7498. height:2px;
  7499. }
  7500. #u40541 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:1269px;
  7504. top:85px;
  7505. width:18px;
  7506. height:1px;
  7507. display:flex;
  7508. -webkit-transform:rotate(90deg);
  7509. -moz-transform:rotate(90deg);
  7510. -ms-transform:rotate(90deg);
  7511. transform:rotate(90deg);
  7512. }
  7513. #u40541 .text {
  7514. position:absolute;
  7515. align-self:center;
  7516. padding:2px 2px 2px 2px;
  7517. box-sizing:border-box;
  7518. width:100%;
  7519. }
  7520. #u40541_text {
  7521. border-width:0px;
  7522. word-wrap:break-word;
  7523. text-transform:none;
  7524. visibility:hidden;
  7525. }
  7526. #u40542_div {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:12px;
  7532. height:12px;
  7533. background:inherit;
  7534. background-color:rgba(255, 255, 255, 0);
  7535. box-sizing:border-box;
  7536. border-width:2px;
  7537. border-style:solid;
  7538. border-color:rgba(51, 51, 51, 1);
  7539. border-right:0px;
  7540. border-bottom:0px;
  7541. border-radius:0px;
  7542. border-top-right-radius:0px;
  7543. border-bottom-left-radius:0px;
  7544. -moz-box-shadow:none;
  7545. -webkit-box-shadow:none;
  7546. box-shadow:none;
  7547. }
  7548. #u40542 {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:970px;
  7552. top:79px;
  7553. width:12px;
  7554. height:12px;
  7555. display:flex;
  7556. -webkit-transform:rotate(315deg);
  7557. -moz-transform:rotate(315deg);
  7558. -ms-transform:rotate(315deg);
  7559. transform:rotate(315deg);
  7560. }
  7561. #u40542 .text {
  7562. position:absolute;
  7563. align-self:center;
  7564. padding:2px 2px 2px 2px;
  7565. box-sizing:border-box;
  7566. width:100%;
  7567. }
  7568. #u40542_text {
  7569. border-width:0px;
  7570. word-wrap:break-word;
  7571. text-transform:none;
  7572. visibility:hidden;
  7573. }
  7574. #u40543_div {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:109px;
  7580. height:25px;
  7581. background:inherit;
  7582. background-color:rgba(255, 255, 255, 0);
  7583. border:none;
  7584. border-radius:0px;
  7585. -moz-box-shadow:none;
  7586. -webkit-box-shadow:none;
  7587. box-shadow:none;
  7588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7589. font-weight:400;
  7590. font-style:normal;
  7591. font-size:18px;
  7592. }
  7593. #u40543 {
  7594. border-width:0px;
  7595. position:absolute;
  7596. left:984px;
  7597. top:72px;
  7598. width:109px;
  7599. height:25px;
  7600. display:flex;
  7601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7602. font-weight:400;
  7603. font-style:normal;
  7604. font-size:18px;
  7605. }
  7606. #u40543 .text {
  7607. position:absolute;
  7608. align-self:flex-start;
  7609. padding:0px 0px 0px 0px;
  7610. box-sizing:border-box;
  7611. width:100%;
  7612. }
  7613. #u40543_text {
  7614. border-width:0px;
  7615. white-space:nowrap;
  7616. text-transform:none;
  7617. }
  7618. #u40544_div {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:0px;
  7622. top:0px;
  7623. width:375px;
  7624. height:58px;
  7625. background:inherit;
  7626. background-color:rgba(24, 144, 255, 1);
  7627. border:none;
  7628. border-radius:0px;
  7629. -moz-box-shadow:none;
  7630. -webkit-box-shadow:none;
  7631. box-shadow:none;
  7632. }
  7633. #u40544 {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:954px;
  7637. top:107px;
  7638. width:375px;
  7639. height:58px;
  7640. display:flex;
  7641. }
  7642. #u40544 .text {
  7643. position:absolute;
  7644. align-self:center;
  7645. padding:2px 2px 2px 2px;
  7646. box-sizing:border-box;
  7647. width:100%;
  7648. }
  7649. #u40544_text {
  7650. border-width:0px;
  7651. word-wrap:break-word;
  7652. text-transform:none;
  7653. visibility:hidden;
  7654. }
  7655. #u40545_div {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:0px;
  7659. top:0px;
  7660. width:375px;
  7661. height:148px;
  7662. background:inherit;
  7663. background-color:rgba(255, 255, 255, 0.996078431372549);
  7664. border:none;
  7665. border-radius:0px;
  7666. -moz-box-shadow:none;
  7667. -webkit-box-shadow:none;
  7668. box-shadow:none;
  7669. }
  7670. #u40545 {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:954px;
  7674. top:255px;
  7675. width:375px;
  7676. height:148px;
  7677. display:flex;
  7678. }
  7679. #u40545 .text {
  7680. position:absolute;
  7681. align-self:center;
  7682. padding:2px 2px 2px 2px;
  7683. box-sizing:border-box;
  7684. width:100%;
  7685. }
  7686. #u40545_text {
  7687. border-width:0px;
  7688. word-wrap:break-word;
  7689. text-transform:none;
  7690. visibility:hidden;
  7691. }
  7692. #u40546_div {
  7693. border-width:0px;
  7694. position:absolute;
  7695. left:0px;
  7696. top:0px;
  7697. width:73px;
  7698. height:25px;
  7699. background:inherit;
  7700. background-color:rgba(255, 255, 255, 0);
  7701. border:none;
  7702. border-radius:0px;
  7703. -moz-box-shadow:none;
  7704. -webkit-box-shadow:none;
  7705. box-shadow:none;
  7706. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7707. font-weight:500;
  7708. font-style:normal;
  7709. font-size:18px;
  7710. }
  7711. #u40546 {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:974px;
  7715. top:274px;
  7716. width:73px;
  7717. height:25px;
  7718. display:flex;
  7719. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7720. font-weight:500;
  7721. font-style:normal;
  7722. font-size:18px;
  7723. }
  7724. #u40546 .text {
  7725. position:absolute;
  7726. align-self:flex-start;
  7727. padding:0px 0px 0px 0px;
  7728. box-sizing:border-box;
  7729. width:100%;
  7730. }
  7731. #u40546_text {
  7732. border-width:0px;
  7733. white-space:nowrap;
  7734. text-transform:none;
  7735. }
  7736. #u40547 {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:0px;
  7742. height:0px;
  7743. }
  7744. #u40548_div {
  7745. border-width:0px;
  7746. position:absolute;
  7747. left:0px;
  7748. top:0px;
  7749. width:322px;
  7750. height:40px;
  7751. background:inherit;
  7752. background-color:rgba(255, 255, 255, 1);
  7753. border:none;
  7754. border-left:0px;
  7755. border-top:0px;
  7756. border-right:0px;
  7757. border-radius:0px;
  7758. border-bottom-right-radius:0px;
  7759. border-bottom-left-radius:0px;
  7760. -moz-box-shadow:none;
  7761. -webkit-box-shadow:none;
  7762. box-shadow:none;
  7763. }
  7764. #u40548 {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:974px;
  7768. top:349px;
  7769. width:322px;
  7770. height:40px;
  7771. display:flex;
  7772. }
  7773. #u40548 .text {
  7774. position:absolute;
  7775. align-self:center;
  7776. padding:2px 2px 2px 2px;
  7777. box-sizing:border-box;
  7778. width:100%;
  7779. }
  7780. #u40548_text {
  7781. border-width:0px;
  7782. word-wrap:break-word;
  7783. text-transform:none;
  7784. visibility:hidden;
  7785. }
  7786. #u40549_div {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:0px;
  7790. top:0px;
  7791. width:36px;
  7792. height:20px;
  7793. background:inherit;
  7794. background-color:rgba(255, 255, 255, 0);
  7795. border:none;
  7796. border-radius:0px;
  7797. -moz-box-shadow:none;
  7798. -webkit-box-shadow:none;
  7799. box-shadow:none;
  7800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7801. font-weight:400;
  7802. font-style:normal;
  7803. }
  7804. #u40549 {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:974px;
  7808. top:359px;
  7809. width:36px;
  7810. height:20px;
  7811. display:flex;
  7812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7813. font-weight:400;
  7814. font-style:normal;
  7815. }
  7816. #u40549 .text {
  7817. position:absolute;
  7818. align-self:flex-start;
  7819. padding:0px 0px 0px 0px;
  7820. box-sizing:border-box;
  7821. width:100%;
  7822. }
  7823. #u40549_text {
  7824. border-width:0px;
  7825. white-space:nowrap;
  7826. text-transform:none;
  7827. }
  7828. #u40550_div {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:0px;
  7832. top:0px;
  7833. width:10px;
  7834. height:10px;
  7835. background:inherit;
  7836. background-color:rgba(255, 255, 255, 0);
  7837. box-sizing:border-box;
  7838. border-width:1px;
  7839. border-style:solid;
  7840. border-color:rgba(170, 170, 170, 1);
  7841. border-right:0px;
  7842. border-bottom:0px;
  7843. border-radius:0px;
  7844. border-top-right-radius:0px;
  7845. border-bottom-left-radius:0px;
  7846. -moz-box-shadow:none;
  7847. -webkit-box-shadow:none;
  7848. box-shadow:none;
  7849. }
  7850. #u40550 {
  7851. border-width:0px;
  7852. position:absolute;
  7853. left:1280px;
  7854. top:364px;
  7855. width:10px;
  7856. height:10px;
  7857. display:flex;
  7858. -webkit-transform:rotate(135deg);
  7859. -moz-transform:rotate(135deg);
  7860. -ms-transform:rotate(135deg);
  7861. transform:rotate(135deg);
  7862. }
  7863. #u40550 .text {
  7864. position:absolute;
  7865. align-self:center;
  7866. padding:2px 2px 2px 2px;
  7867. box-sizing:border-box;
  7868. width:100%;
  7869. }
  7870. #u40550_text {
  7871. border-width:0px;
  7872. word-wrap:break-word;
  7873. text-transform:none;
  7874. visibility:hidden;
  7875. }
  7876. #u40551_div {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:0px;
  7880. top:0px;
  7881. width:43px;
  7882. height:20px;
  7883. background:inherit;
  7884. background-color:rgba(255, 255, 255, 0);
  7885. border:none;
  7886. border-radius:0px;
  7887. -moz-box-shadow:none;
  7888. -webkit-box-shadow:none;
  7889. box-shadow:none;
  7890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7891. font-weight:400;
  7892. font-style:normal;
  7893. color:#AAAAAA;
  7894. }
  7895. #u40551 {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:1235px;
  7899. top:359px;
  7900. width:43px;
  7901. height:20px;
  7902. display:flex;
  7903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7904. font-weight:400;
  7905. font-style:normal;
  7906. color:#AAAAAA;
  7907. }
  7908. #u40551 .text {
  7909. position:absolute;
  7910. align-self:flex-start;
  7911. padding:0px 0px 0px 0px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u40551_text {
  7916. border-width:0px;
  7917. white-space:nowrap;
  7918. text-transform:none;
  7919. }
  7920. #u40552 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:0px;
  7924. top:0px;
  7925. width:0px;
  7926. height:0px;
  7927. }
  7928. #u40553 {
  7929. border-width:0px;
  7930. position:absolute;
  7931. left:0px;
  7932. top:0px;
  7933. width:0px;
  7934. height:0px;
  7935. }
  7936. #u40554_img {
  7937. border-width:0px;
  7938. position:absolute;
  7939. left:0px;
  7940. top:0px;
  7941. width:27px;
  7942. height:27px;
  7943. }
  7944. #u40554 {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:1093px;
  7948. top:122px;
  7949. width:27px;
  7950. height:27px;
  7951. display:flex;
  7952. font-size:12px;
  7953. color:#FFFFFF;
  7954. }
  7955. #u40554 .text {
  7956. position:absolute;
  7957. align-self:center;
  7958. padding:2px 2px 2px 2px;
  7959. box-sizing:border-box;
  7960. width:100%;
  7961. }
  7962. #u40554_text {
  7963. border-width:0px;
  7964. word-wrap:break-word;
  7965. text-transform:none;
  7966. }
  7967. #u40555_div {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:0px;
  7971. top:0px;
  7972. width:57px;
  7973. height:30px;
  7974. background:inherit;
  7975. background-color:rgba(255, 255, 255, 0);
  7976. border:none;
  7977. border-left:0px;
  7978. border-top:0px;
  7979. border-right:0px;
  7980. border-radius:0px;
  7981. border-bottom-right-radius:0px;
  7982. border-bottom-left-radius:0px;
  7983. -moz-box-shadow:none;
  7984. -webkit-box-shadow:none;
  7985. box-shadow:none;
  7986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7987. font-weight:400;
  7988. font-style:normal;
  7989. font-size:14px;
  7990. color:#FFFFFF;
  7991. line-height:30px;
  7992. }
  7993. #u40555 {
  7994. border-width:0px;
  7995. position:absolute;
  7996. left:1127px;
  7997. top:121px;
  7998. width:57px;
  7999. height:30px;
  8000. display:flex;
  8001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8002. font-weight:400;
  8003. font-style:normal;
  8004. font-size:14px;
  8005. color:#FFFFFF;
  8006. line-height:30px;
  8007. }
  8008. #u40555 .text {
  8009. position:absolute;
  8010. align-self:center;
  8011. padding:0px 0px 0px 0px;
  8012. box-sizing:border-box;
  8013. width:100%;
  8014. }
  8015. #u40555_text {
  8016. border-width:0px;
  8017. white-space:nowrap;
  8018. text-transform:none;
  8019. }
  8020. #u40556_img {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:27px;
  8026. height:27px;
  8027. }
  8028. #u40556 {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:960px;
  8032. top:122px;
  8033. width:27px;
  8034. height:27px;
  8035. display:flex;
  8036. font-size:12px;
  8037. color:#1890FF;
  8038. }
  8039. #u40556 .text {
  8040. position:absolute;
  8041. align-self:center;
  8042. padding:2px 2px 2px 2px;
  8043. box-sizing:border-box;
  8044. width:100%;
  8045. }
  8046. #u40556_text {
  8047. border-width:0px;
  8048. word-wrap:break-word;
  8049. text-transform:none;
  8050. }
  8051. #u40557_div {
  8052. border-width:0px;
  8053. position:absolute;
  8054. left:0px;
  8055. top:0px;
  8056. width:57px;
  8057. height:30px;
  8058. background:inherit;
  8059. background-color:rgba(255, 255, 255, 0);
  8060. border:none;
  8061. border-left:0px;
  8062. border-top:0px;
  8063. border-right:0px;
  8064. border-radius:0px;
  8065. border-bottom-right-radius:0px;
  8066. border-bottom-left-radius:0px;
  8067. -moz-box-shadow:none;
  8068. -webkit-box-shadow:none;
  8069. box-shadow:none;
  8070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8071. font-weight:400;
  8072. font-style:normal;
  8073. font-size:14px;
  8074. color:#FFFFFF;
  8075. line-height:30px;
  8076. }
  8077. #u40557 {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:994px;
  8081. top:121px;
  8082. width:57px;
  8083. height:30px;
  8084. display:flex;
  8085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8086. font-weight:400;
  8087. font-style:normal;
  8088. font-size:14px;
  8089. color:#FFFFFF;
  8090. line-height:30px;
  8091. }
  8092. #u40557 .text {
  8093. position:absolute;
  8094. align-self:center;
  8095. padding:0px 0px 0px 0px;
  8096. box-sizing:border-box;
  8097. width:100%;
  8098. }
  8099. #u40557_text {
  8100. border-width:0px;
  8101. white-space:nowrap;
  8102. text-transform:none;
  8103. }
  8104. #u40558_img {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:0px;
  8108. top:0px;
  8109. width:28px;
  8110. height:2px;
  8111. }
  8112. #u40558 {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:1056px;
  8116. top:136px;
  8117. width:27px;
  8118. height:1px;
  8119. display:flex;
  8120. color:#FFFFFF;
  8121. }
  8122. #u40558 .text {
  8123. position:absolute;
  8124. align-self:center;
  8125. padding:2px 2px 2px 2px;
  8126. box-sizing:border-box;
  8127. width:100%;
  8128. }
  8129. #u40558_text {
  8130. border-width:0px;
  8131. word-wrap:break-word;
  8132. text-transform:none;
  8133. visibility:hidden;
  8134. }
  8135. #u40559_img {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:0px;
  8139. top:0px;
  8140. width:27px;
  8141. height:27px;
  8142. }
  8143. #u40559 {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:1228px;
  8147. top:122px;
  8148. width:27px;
  8149. height:27px;
  8150. display:flex;
  8151. font-size:12px;
  8152. color:#FFFFFF;
  8153. }
  8154. #u40559 .text {
  8155. position:absolute;
  8156. align-self:center;
  8157. padding:2px 2px 2px 2px;
  8158. box-sizing:border-box;
  8159. width:100%;
  8160. }
  8161. #u40559_text {
  8162. border-width:0px;
  8163. word-wrap:break-word;
  8164. text-transform:none;
  8165. }
  8166. #u40560_div {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:57px;
  8172. height:30px;
  8173. background:inherit;
  8174. background-color:rgba(255, 255, 255, 0);
  8175. border:none;
  8176. border-left:0px;
  8177. border-top:0px;
  8178. border-right:0px;
  8179. border-radius:0px;
  8180. border-bottom-right-radius:0px;
  8181. border-bottom-left-radius:0px;
  8182. -moz-box-shadow:none;
  8183. -webkit-box-shadow:none;
  8184. box-shadow:none;
  8185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8186. font-weight:400;
  8187. font-style:normal;
  8188. font-size:14px;
  8189. color:#FFFFFF;
  8190. line-height:30px;
  8191. }
  8192. #u40560 {
  8193. border-width:0px;
  8194. position:absolute;
  8195. left:1262px;
  8196. top:121px;
  8197. width:57px;
  8198. height:30px;
  8199. display:flex;
  8200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8201. font-weight:400;
  8202. font-style:normal;
  8203. font-size:14px;
  8204. color:#FFFFFF;
  8205. line-height:30px;
  8206. }
  8207. #u40560 .text {
  8208. position:absolute;
  8209. align-self:center;
  8210. padding:0px 0px 0px 0px;
  8211. box-sizing:border-box;
  8212. width:100%;
  8213. }
  8214. #u40560_text {
  8215. border-width:0px;
  8216. white-space:nowrap;
  8217. text-transform:none;
  8218. }
  8219. #u40561_img {
  8220. border-width:0px;
  8221. position:absolute;
  8222. left:0px;
  8223. top:0px;
  8224. width:28px;
  8225. height:2px;
  8226. }
  8227. #u40561 {
  8228. border-width:0px;
  8229. position:absolute;
  8230. left:1190px;
  8231. top:136px;
  8232. width:27px;
  8233. height:1px;
  8234. display:flex;
  8235. color:#FFFFFF;
  8236. }
  8237. #u40561 .text {
  8238. position:absolute;
  8239. align-self:center;
  8240. padding:2px 2px 2px 2px;
  8241. box-sizing:border-box;
  8242. width:100%;
  8243. }
  8244. #u40561_text {
  8245. border-width:0px;
  8246. word-wrap:break-word;
  8247. text-transform:none;
  8248. visibility:hidden;
  8249. }
  8250. #u40562 {
  8251. border-width:0px;
  8252. position:absolute;
  8253. left:0px;
  8254. top:0px;
  8255. width:0px;
  8256. height:0px;
  8257. }
  8258. #u40563_div {
  8259. border-width:0px;
  8260. position:absolute;
  8261. left:0px;
  8262. top:0px;
  8263. width:322px;
  8264. height:40px;
  8265. background:inherit;
  8266. background-color:rgba(255, 255, 255, 1);
  8267. box-sizing:border-box;
  8268. border-width:1px;
  8269. border-style:solid;
  8270. border-color:rgba(215, 215, 215, 1);
  8271. border-left:0px;
  8272. border-top:0px;
  8273. border-right:0px;
  8274. border-radius:0px;
  8275. border-bottom-right-radius:0px;
  8276. border-bottom-left-radius:0px;
  8277. -moz-box-shadow:none;
  8278. -webkit-box-shadow:none;
  8279. box-shadow:none;
  8280. }
  8281. #u40563 {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:974px;
  8285. top:309px;
  8286. width:322px;
  8287. height:40px;
  8288. display:flex;
  8289. }
  8290. #u40563 .text {
  8291. position:absolute;
  8292. align-self:center;
  8293. padding:2px 2px 2px 2px;
  8294. box-sizing:border-box;
  8295. width:100%;
  8296. }
  8297. #u40563_text {
  8298. border-width:0px;
  8299. word-wrap:break-word;
  8300. text-transform:none;
  8301. visibility:hidden;
  8302. }
  8303. #u40564_div {
  8304. border-width:0px;
  8305. position:absolute;
  8306. left:0px;
  8307. top:0px;
  8308. width:36px;
  8309. height:20px;
  8310. background:inherit;
  8311. background-color:rgba(255, 255, 255, 0);
  8312. border:none;
  8313. border-radius:0px;
  8314. -moz-box-shadow:none;
  8315. -webkit-box-shadow:none;
  8316. box-shadow:none;
  8317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8318. font-weight:400;
  8319. font-style:normal;
  8320. }
  8321. #u40564 {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:974px;
  8325. top:319px;
  8326. width:36px;
  8327. height:20px;
  8328. display:flex;
  8329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8330. font-weight:400;
  8331. font-style:normal;
  8332. }
  8333. #u40564 .text {
  8334. position:absolute;
  8335. align-self:flex-start;
  8336. padding:0px 0px 0px 0px;
  8337. box-sizing:border-box;
  8338. width:100%;
  8339. }
  8340. #u40564_text {
  8341. border-width:0px;
  8342. white-space:nowrap;
  8343. text-transform:none;
  8344. }
  8345. #u40565_div {
  8346. border-width:0px;
  8347. position:absolute;
  8348. left:0px;
  8349. top:0px;
  8350. width:10px;
  8351. height:10px;
  8352. background:inherit;
  8353. background-color:rgba(255, 255, 255, 0);
  8354. box-sizing:border-box;
  8355. border-width:1px;
  8356. border-style:solid;
  8357. border-color:rgba(170, 170, 170, 1);
  8358. border-right:0px;
  8359. border-bottom:0px;
  8360. border-radius:0px;
  8361. border-top-right-radius:0px;
  8362. border-bottom-left-radius:0px;
  8363. -moz-box-shadow:none;
  8364. -webkit-box-shadow:none;
  8365. box-shadow:none;
  8366. }
  8367. #u40565 {
  8368. border-width:0px;
  8369. position:absolute;
  8370. left:1280px;
  8371. top:324px;
  8372. width:10px;
  8373. height:10px;
  8374. display:flex;
  8375. -webkit-transform:rotate(135deg);
  8376. -moz-transform:rotate(135deg);
  8377. -ms-transform:rotate(135deg);
  8378. transform:rotate(135deg);
  8379. }
  8380. #u40565 .text {
  8381. position:absolute;
  8382. align-self:center;
  8383. padding:2px 2px 2px 2px;
  8384. box-sizing:border-box;
  8385. width:100%;
  8386. }
  8387. #u40565_text {
  8388. border-width:0px;
  8389. word-wrap:break-word;
  8390. text-transform:none;
  8391. visibility:hidden;
  8392. }
  8393. #u40566_div {
  8394. border-width:0px;
  8395. position:absolute;
  8396. left:0px;
  8397. top:0px;
  8398. width:43px;
  8399. height:20px;
  8400. background:inherit;
  8401. background-color:rgba(255, 255, 255, 0);
  8402. border:none;
  8403. border-radius:0px;
  8404. -moz-box-shadow:none;
  8405. -webkit-box-shadow:none;
  8406. box-shadow:none;
  8407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8408. font-weight:400;
  8409. font-style:normal;
  8410. color:#AAAAAA;
  8411. }
  8412. #u40566 {
  8413. border-width:0px;
  8414. position:absolute;
  8415. left:1235px;
  8416. top:319px;
  8417. width:43px;
  8418. height:20px;
  8419. display:flex;
  8420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8421. font-weight:400;
  8422. font-style:normal;
  8423. color:#AAAAAA;
  8424. }
  8425. #u40566 .text {
  8426. position:absolute;
  8427. align-self:flex-start;
  8428. padding:0px 0px 0px 0px;
  8429. box-sizing:border-box;
  8430. width:100%;
  8431. }
  8432. #u40566_text {
  8433. border-width:0px;
  8434. white-space:nowrap;
  8435. text-transform:none;
  8436. }
  8437. #u40567 {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:0px;
  8441. top:0px;
  8442. width:0px;
  8443. height:0px;
  8444. }
  8445. #u40568_div {
  8446. border-width:0px;
  8447. position:absolute;
  8448. left:0px;
  8449. top:0px;
  8450. width:375px;
  8451. height:60px;
  8452. background:inherit;
  8453. background-color:rgba(255, 255, 255, 1);
  8454. border:none;
  8455. border-top:0px;
  8456. border-radius:28px;
  8457. border-top-left-radius:0px;
  8458. border-top-right-radius:0px;
  8459. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8460. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8461. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8463. font-weight:400;
  8464. font-style:normal;
  8465. font-size:14px;
  8466. color:#FFFFFF;
  8467. }
  8468. #u40568 {
  8469. border-width:0px;
  8470. position:absolute;
  8471. left:954px;
  8472. top:780px;
  8473. width:375px;
  8474. height:60px;
  8475. display:flex;
  8476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8477. font-weight:400;
  8478. font-style:normal;
  8479. font-size:14px;
  8480. color:#FFFFFF;
  8481. }
  8482. #u40568 .text {
  8483. position:absolute;
  8484. align-self:center;
  8485. padding:2px 2px 2px 2px;
  8486. box-sizing:border-box;
  8487. width:100%;
  8488. }
  8489. #u40568_text {
  8490. border-width:0px;
  8491. word-wrap:break-word;
  8492. text-transform:none;
  8493. visibility:hidden;
  8494. }
  8495. #u40569_div {
  8496. border-width:0px;
  8497. position:absolute;
  8498. left:0px;
  8499. top:0px;
  8500. width:324px;
  8501. height:40px;
  8502. background:inherit;
  8503. background-color:rgba(215, 215, 215, 1);
  8504. border:none;
  8505. border-radius:63px;
  8506. -moz-box-shadow:none;
  8507. -webkit-box-shadow:none;
  8508. box-shadow:none;
  8509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8510. font-weight:400;
  8511. font-style:normal;
  8512. font-size:14px;
  8513. color:#FFFFFF;
  8514. }
  8515. #u40569 {
  8516. border-width:0px;
  8517. position:absolute;
  8518. left:982px;
  8519. top:789px;
  8520. width:324px;
  8521. height:40px;
  8522. display:flex;
  8523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:14px;
  8527. color:#FFFFFF;
  8528. }
  8529. #u40569 .text {
  8530. position:absolute;
  8531. align-self:center;
  8532. padding:2px 2px 2px 2px;
  8533. box-sizing:border-box;
  8534. width:100%;
  8535. }
  8536. #u40569_text {
  8537. border-width:0px;
  8538. word-wrap:break-word;
  8539. text-transform:none;
  8540. }
  8541. #u40570_div {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:0px;
  8545. top:0px;
  8546. width:73px;
  8547. height:25px;
  8548. background:inherit;
  8549. background-color:rgba(255, 255, 255, 0);
  8550. border:none;
  8551. border-radius:0px;
  8552. -moz-box-shadow:none;
  8553. -webkit-box-shadow:none;
  8554. box-shadow:none;
  8555. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8556. font-weight:500;
  8557. font-style:normal;
  8558. font-size:18px;
  8559. }
  8560. #u40570 {
  8561. border-width:0px;
  8562. position:absolute;
  8563. left:974px;
  8564. top:432px;
  8565. width:73px;
  8566. height:25px;
  8567. display:flex;
  8568. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8569. font-weight:500;
  8570. font-style:normal;
  8571. font-size:18px;
  8572. }
  8573. #u40570 .text {
  8574. position:absolute;
  8575. align-self:flex-start;
  8576. padding:0px 0px 0px 0px;
  8577. box-sizing:border-box;
  8578. width:100%;
  8579. }
  8580. #u40570_text {
  8581. border-width:0px;
  8582. white-space:nowrap;
  8583. text-transform:none;
  8584. }
  8585. #u40571_div {
  8586. border-width:0px;
  8587. position:absolute;
  8588. left:0px;
  8589. top:0px;
  8590. width:50px;
  8591. height:20px;
  8592. background:inherit;
  8593. background-color:rgba(255, 255, 255, 0);
  8594. border:none;
  8595. border-radius:0px;
  8596. -moz-box-shadow:none;
  8597. -webkit-box-shadow:none;
  8598. box-shadow:none;
  8599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8600. font-weight:400;
  8601. font-style:normal;
  8602. }
  8603. #u40571 {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:984px;
  8607. top:617px;
  8608. width:50px;
  8609. height:20px;
  8610. display:flex;
  8611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8612. font-weight:400;
  8613. font-style:normal;
  8614. }
  8615. #u40571 .text {
  8616. position:absolute;
  8617. align-self:flex-start;
  8618. padding:0px 0px 0px 0px;
  8619. box-sizing:border-box;
  8620. width:100%;
  8621. }
  8622. #u40571_text {
  8623. border-width:0px;
  8624. white-space:nowrap;
  8625. text-transform:none;
  8626. }
  8627. #u40572_div {
  8628. border-width:0px;
  8629. position:absolute;
  8630. left:0px;
  8631. top:0px;
  8632. width:85px;
  8633. height:20px;
  8634. background:inherit;
  8635. background-color:rgba(255, 255, 255, 0);
  8636. border:none;
  8637. border-radius:0px;
  8638. -moz-box-shadow:none;
  8639. -webkit-box-shadow:none;
  8640. box-shadow:none;
  8641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8642. font-weight:400;
  8643. font-style:normal;
  8644. color:#AAAAAA;
  8645. }
  8646. #u40572 {
  8647. border-width:0px;
  8648. position:absolute;
  8649. left:984px;
  8650. top:642px;
  8651. width:85px;
  8652. height:20px;
  8653. display:flex;
  8654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8655. font-weight:400;
  8656. font-style:normal;
  8657. color:#AAAAAA;
  8658. }
  8659. #u40572 .text {
  8660. position:absolute;
  8661. align-self:flex-start;
  8662. padding:0px 0px 0px 0px;
  8663. box-sizing:border-box;
  8664. width:100%;
  8665. }
  8666. #u40572_text {
  8667. border-width:0px;
  8668. white-space:nowrap;
  8669. text-transform:none;
  8670. }
  8671. #u40573_div {
  8672. border-width:0px;
  8673. position:absolute;
  8674. left:0px;
  8675. top:0px;
  8676. width:57px;
  8677. height:20px;
  8678. background:inherit;
  8679. background-color:rgba(255, 255, 255, 0);
  8680. border:none;
  8681. border-radius:0px;
  8682. -moz-box-shadow:none;
  8683. -webkit-box-shadow:none;
  8684. box-shadow:none;
  8685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8686. font-weight:400;
  8687. font-style:normal;
  8688. }
  8689. #u40573 {
  8690. border-width:0px;
  8691. position:absolute;
  8692. left:984px;
  8693. top:507px;
  8694. width:57px;
  8695. height:20px;
  8696. display:flex;
  8697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8698. font-weight:400;
  8699. font-style:normal;
  8700. }
  8701. #u40573 .text {
  8702. position:absolute;
  8703. align-self:flex-start;
  8704. padding:0px 0px 0px 0px;
  8705. box-sizing:border-box;
  8706. width:100%;
  8707. }
  8708. #u40573_text {
  8709. border-width:0px;
  8710. white-space:nowrap;
  8711. text-transform:none;
  8712. }
  8713. #u40574_div {
  8714. border-width:0px;
  8715. position:absolute;
  8716. left:0px;
  8717. top:0px;
  8718. width:36px;
  8719. height:20px;
  8720. background:inherit;
  8721. background-color:rgba(255, 255, 255, 0);
  8722. border:none;
  8723. border-radius:0px;
  8724. -moz-box-shadow:none;
  8725. -webkit-box-shadow:none;
  8726. box-shadow:none;
  8727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8728. font-weight:400;
  8729. font-style:normal;
  8730. color:#AAAAAA;
  8731. }
  8732. #u40574 {
  8733. border-width:0px;
  8734. position:absolute;
  8735. left:984px;
  8736. top:532px;
  8737. width:36px;
  8738. height:20px;
  8739. display:flex;
  8740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8741. font-weight:400;
  8742. font-style:normal;
  8743. color:#AAAAAA;
  8744. }
  8745. #u40574 .text {
  8746. position:absolute;
  8747. align-self:flex-start;
  8748. padding:0px 0px 0px 0px;
  8749. box-sizing:border-box;
  8750. width:100%;
  8751. }
  8752. #u40574_text {
  8753. border-width:0px;
  8754. white-space:nowrap;
  8755. text-transform:none;
  8756. }
  8757. #u40575_div {
  8758. border-width:0px;
  8759. position:absolute;
  8760. left:0px;
  8761. top:0px;
  8762. width:57px;
  8763. height:20px;
  8764. background:inherit;
  8765. background-color:rgba(255, 255, 255, 0);
  8766. border:none;
  8767. border-radius:0px;
  8768. -moz-box-shadow:none;
  8769. -webkit-box-shadow:none;
  8770. box-shadow:none;
  8771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8772. font-weight:400;
  8773. font-style:normal;
  8774. }
  8775. #u40575 {
  8776. border-width:0px;
  8777. position:absolute;
  8778. left:984px;
  8779. top:562px;
  8780. width:57px;
  8781. height:20px;
  8782. display:flex;
  8783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8784. font-weight:400;
  8785. font-style:normal;
  8786. }
  8787. #u40575 .text {
  8788. position:absolute;
  8789. align-self:flex-start;
  8790. padding:0px 0px 0px 0px;
  8791. box-sizing:border-box;
  8792. width:100%;
  8793. }
  8794. #u40575_text {
  8795. border-width:0px;
  8796. white-space:nowrap;
  8797. text-transform:none;
  8798. }
  8799. #u40576_div {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:0px;
  8803. top:0px;
  8804. width:83px;
  8805. height:20px;
  8806. background:inherit;
  8807. background-color:rgba(255, 255, 255, 0);
  8808. border:none;
  8809. border-radius:0px;
  8810. -moz-box-shadow:none;
  8811. -webkit-box-shadow:none;
  8812. box-shadow:none;
  8813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8814. font-weight:400;
  8815. font-style:normal;
  8816. color:#AAAAAA;
  8817. }
  8818. #u40576 {
  8819. border-width:0px;
  8820. position:absolute;
  8821. left:984px;
  8822. top:587px;
  8823. width:83px;
  8824. height:20px;
  8825. display:flex;
  8826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8827. font-weight:400;
  8828. font-style:normal;
  8829. color:#AAAAAA;
  8830. }
  8831. #u40576 .text {
  8832. position:absolute;
  8833. align-self:flex-start;
  8834. padding:0px 0px 0px 0px;
  8835. box-sizing:border-box;
  8836. width:100%;
  8837. }
  8838. #u40576_text {
  8839. border-width:0px;
  8840. white-space:nowrap;
  8841. text-transform:none;
  8842. }
  8843. #u40577_div {
  8844. border-width:0px;
  8845. position:absolute;
  8846. left:0px;
  8847. top:0px;
  8848. width:83px;
  8849. height:30px;
  8850. background:inherit;
  8851. background-color:rgba(24, 144, 255, 1);
  8852. border:none;
  8853. border-radius:4px;
  8854. -moz-box-shadow:none;
  8855. -webkit-box-shadow:none;
  8856. box-shadow:none;
  8857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8858. font-weight:400;
  8859. font-style:normal;
  8860. font-size:12px;
  8861. color:#FFFFFF;
  8862. }
  8863. #u40577 {
  8864. border-width:0px;
  8865. position:absolute;
  8866. left:1213px;
  8867. top:582px;
  8868. width:83px;
  8869. height:30px;
  8870. display:flex;
  8871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8872. font-weight:400;
  8873. font-style:normal;
  8874. font-size:12px;
  8875. color:#FFFFFF;
  8876. }
  8877. #u40577 .text {
  8878. position:absolute;
  8879. align-self:center;
  8880. padding:2px 2px 2px 2px;
  8881. box-sizing:border-box;
  8882. width:100%;
  8883. }
  8884. #u40577_text {
  8885. border-width:0px;
  8886. word-wrap:break-word;
  8887. text-transform:none;
  8888. }
  8889. #u40578_div {
  8890. border-width:0px;
  8891. position:absolute;
  8892. left:0px;
  8893. top:0px;
  8894. width:265px;
  8895. height:17px;
  8896. background:inherit;
  8897. background-color:rgba(255, 255, 255, 0);
  8898. border:none;
  8899. border-radius:0px;
  8900. -moz-box-shadow:none;
  8901. -webkit-box-shadow:none;
  8902. box-shadow:none;
  8903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8904. font-weight:400;
  8905. font-style:normal;
  8906. font-size:12px;
  8907. color:#AAAAAA;
  8908. }
  8909. #u40578 {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:974px;
  8913. top:462px;
  8914. width:265px;
  8915. height:17px;
  8916. display:flex;
  8917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8918. font-weight:400;
  8919. font-style:normal;
  8920. font-size:12px;
  8921. color:#AAAAAA;
  8922. }
  8923. #u40578 .text {
  8924. position:absolute;
  8925. align-self:flex-start;
  8926. padding:0px 0px 0px 0px;
  8927. box-sizing:border-box;
  8928. width:100%;
  8929. }
  8930. #u40578_text {
  8931. border-width:0px;
  8932. white-space:nowrap;
  8933. text-transform:none;
  8934. }
  8935. #u40580_img {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:0px;
  8939. top:0px;
  8940. width:433px;
  8941. height:865px;
  8942. }
  8943. #u40580 {
  8944. border-width:0px;
  8945. position:absolute;
  8946. left:463px;
  8947. top:0px;
  8948. width:433px;
  8949. height:865px;
  8950. display:flex;
  8951. }
  8952. #u40580 .text {
  8953. position:absolute;
  8954. align-self:center;
  8955. padding:2px 2px 2px 2px;
  8956. box-sizing:border-box;
  8957. width:100%;
  8958. }
  8959. #u40580_text {
  8960. border-width:0px;
  8961. word-wrap:break-word;
  8962. text-transform:none;
  8963. visibility:hidden;
  8964. }
  8965. #u40581_div {
  8966. border-width:0px;
  8967. position:absolute;
  8968. left:0px;
  8969. top:0px;
  8970. width:375px;
  8971. height:40px;
  8972. background:inherit;
  8973. background-color:rgba(255, 255, 255, 1);
  8974. box-sizing:border-box;
  8975. border-width:1px;
  8976. border-style:solid;
  8977. border-color:rgba(215, 215, 215, 1);
  8978. border-left:0px;
  8979. border-top:0px;
  8980. border-right:0px;
  8981. border-radius:0px;
  8982. border-bottom-right-radius:0px;
  8983. border-bottom-left-radius:0px;
  8984. -moz-box-shadow:none;
  8985. -webkit-box-shadow:none;
  8986. box-shadow:none;
  8987. }
  8988. #u40581 {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:492px;
  8992. top:67px;
  8993. width:375px;
  8994. height:40px;
  8995. display:flex;
  8996. }
  8997. #u40581 .text {
  8998. position:absolute;
  8999. align-self:center;
  9000. padding:2px 2px 2px 2px;
  9001. box-sizing:border-box;
  9002. width:100%;
  9003. }
  9004. #u40581_text {
  9005. border-width:0px;
  9006. word-wrap:break-word;
  9007. text-transform:none;
  9008. visibility:hidden;
  9009. }
  9010. #u40582 {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:0px;
  9014. top:0px;
  9015. width:0px;
  9016. height:0px;
  9017. }
  9018. #u40583_div {
  9019. border-width:0px;
  9020. position:absolute;
  9021. left:0px;
  9022. top:0px;
  9023. width:88px;
  9024. height:32px;
  9025. background:inherit;
  9026. background-color:rgba(255, 255, 255, 1);
  9027. box-sizing:border-box;
  9028. border-width:1px;
  9029. border-style:solid;
  9030. border-color:rgba(242, 242, 242, 1);
  9031. border-radius:33px;
  9032. -moz-box-shadow:none;
  9033. -webkit-box-shadow:none;
  9034. box-shadow:none;
  9035. }
  9036. #u40583 {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:772px;
  9040. top:71px;
  9041. width:88px;
  9042. height:32px;
  9043. display:flex;
  9044. }
  9045. #u40583 .text {
  9046. position:absolute;
  9047. align-self:center;
  9048. padding:2px 2px 2px 2px;
  9049. box-sizing:border-box;
  9050. width:100%;
  9051. }
  9052. #u40583_text {
  9053. border-width:0px;
  9054. word-wrap:break-word;
  9055. text-transform:none;
  9056. visibility:hidden;
  9057. }
  9058. #u40584 {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:0px;
  9062. top:0px;
  9063. width:0px;
  9064. height:0px;
  9065. }
  9066. #u40585_img {
  9067. border-width:0px;
  9068. position:absolute;
  9069. left:0px;
  9070. top:0px;
  9071. width:18px;
  9072. height:18px;
  9073. }
  9074. #u40585 {
  9075. border-width:0px;
  9076. position:absolute;
  9077. left:835px;
  9078. top:78px;
  9079. width:18px;
  9080. height:18px;
  9081. display:flex;
  9082. }
  9083. #u40585 .text {
  9084. position:absolute;
  9085. align-self:center;
  9086. padding:2px 2px 2px 2px;
  9087. box-sizing:border-box;
  9088. width:100%;
  9089. }
  9090. #u40585_text {
  9091. border-width:0px;
  9092. word-wrap:break-word;
  9093. text-transform:none;
  9094. visibility:hidden;
  9095. }
  9096. #u40586_img {
  9097. border-width:0px;
  9098. position:absolute;
  9099. left:0px;
  9100. top:0px;
  9101. width:6px;
  9102. height:6px;
  9103. }
  9104. #u40586 {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:841px;
  9108. top:84px;
  9109. width:6px;
  9110. height:6px;
  9111. display:flex;
  9112. }
  9113. #u40586 .text {
  9114. position:absolute;
  9115. align-self:center;
  9116. padding:2px 2px 2px 2px;
  9117. box-sizing:border-box;
  9118. width:100%;
  9119. }
  9120. #u40586_text {
  9121. border-width:0px;
  9122. word-wrap:break-word;
  9123. text-transform:none;
  9124. visibility:hidden;
  9125. }
  9126. #u40587 {
  9127. border-width:0px;
  9128. position:absolute;
  9129. left:0px;
  9130. top:0px;
  9131. width:0px;
  9132. height:0px;
  9133. }
  9134. #u40588_img {
  9135. border-width:0px;
  9136. position:absolute;
  9137. left:0px;
  9138. top:0px;
  9139. width:5px;
  9140. height:5px;
  9141. }
  9142. #u40588 {
  9143. border-width:0px;
  9144. position:absolute;
  9145. left:786px;
  9146. top:85px;
  9147. width:5px;
  9148. height:5px;
  9149. display:flex;
  9150. }
  9151. #u40588 .text {
  9152. position:absolute;
  9153. align-self:center;
  9154. padding:2px 2px 2px 2px;
  9155. box-sizing:border-box;
  9156. width:100%;
  9157. }
  9158. #u40588_text {
  9159. border-width:0px;
  9160. word-wrap:break-word;
  9161. text-transform:none;
  9162. visibility:hidden;
  9163. }
  9164. #u40589_img {
  9165. border-width:0px;
  9166. position:absolute;
  9167. left:0px;
  9168. top:0px;
  9169. width:5px;
  9170. height:5px;
  9171. }
  9172. #u40589 {
  9173. border-width:0px;
  9174. position:absolute;
  9175. left:802px;
  9176. top:85px;
  9177. width:5px;
  9178. height:5px;
  9179. display:flex;
  9180. }
  9181. #u40589 .text {
  9182. position:absolute;
  9183. align-self:center;
  9184. padding:2px 2px 2px 2px;
  9185. box-sizing:border-box;
  9186. width:100%;
  9187. }
  9188. #u40589_text {
  9189. border-width:0px;
  9190. word-wrap:break-word;
  9191. text-transform:none;
  9192. visibility:hidden;
  9193. }
  9194. #u40590_img {
  9195. border-width:0px;
  9196. position:absolute;
  9197. left:0px;
  9198. top:0px;
  9199. width:7px;
  9200. height:7px;
  9201. }
  9202. #u40590 {
  9203. border-width:0px;
  9204. position:absolute;
  9205. left:793px;
  9206. top:84px;
  9207. width:7px;
  9208. height:7px;
  9209. display:flex;
  9210. }
  9211. #u40590 .text {
  9212. position:absolute;
  9213. align-self:center;
  9214. padding:2px 2px 2px 2px;
  9215. box-sizing:border-box;
  9216. width:100%;
  9217. }
  9218. #u40590_text {
  9219. border-width:0px;
  9220. word-wrap:break-word;
  9221. text-transform:none;
  9222. visibility:hidden;
  9223. }
  9224. #u40591_img {
  9225. border-width:0px;
  9226. position:absolute;
  9227. left:0px;
  9228. top:0px;
  9229. width:19px;
  9230. height:2px;
  9231. }
  9232. #u40591 {
  9233. border-width:0px;
  9234. position:absolute;
  9235. left:810px;
  9236. top:87px;
  9237. width:18px;
  9238. height:1px;
  9239. display:flex;
  9240. -webkit-transform:rotate(90deg);
  9241. -moz-transform:rotate(90deg);
  9242. -ms-transform:rotate(90deg);
  9243. transform:rotate(90deg);
  9244. }
  9245. #u40591 .text {
  9246. position:absolute;
  9247. align-self:center;
  9248. padding:2px 2px 2px 2px;
  9249. box-sizing:border-box;
  9250. width:100%;
  9251. }
  9252. #u40591_text {
  9253. border-width:0px;
  9254. word-wrap:break-word;
  9255. text-transform:none;
  9256. visibility:hidden;
  9257. }
  9258. #u40592_img {
  9259. border-width:0px;
  9260. position:absolute;
  9261. left:0px;
  9262. top:0px;
  9263. width:375px;
  9264. height:44px;
  9265. }
  9266. #u40592 {
  9267. border-width:0px;
  9268. position:absolute;
  9269. left:492px;
  9270. top:24px;
  9271. width:375px;
  9272. height:44px;
  9273. display:flex;
  9274. }
  9275. #u40592 .text {
  9276. position:absolute;
  9277. align-self:center;
  9278. padding:2px 2px 2px 2px;
  9279. box-sizing:border-box;
  9280. width:100%;
  9281. }
  9282. #u40592_text {
  9283. border-width:0px;
  9284. word-wrap:break-word;
  9285. text-transform:none;
  9286. visibility:hidden;
  9287. }
  9288. #u40593_div {
  9289. border-width:0px;
  9290. position:absolute;
  9291. left:0px;
  9292. top:0px;
  9293. width:375px;
  9294. height:50px;
  9295. background:inherit;
  9296. background-color:rgba(255, 255, 255, 1);
  9297. box-sizing:border-box;
  9298. border-width:1px;
  9299. border-style:solid;
  9300. border-color:rgba(242, 242, 242, 1);
  9301. border-radius:26px;
  9302. border-top-left-radius:0px;
  9303. border-top-right-radius:0px;
  9304. -moz-box-shadow:none;
  9305. -webkit-box-shadow:none;
  9306. box-shadow:none;
  9307. }
  9308. #u40593 {
  9309. border-width:0px;
  9310. position:absolute;
  9311. left:492px;
  9312. top:788px;
  9313. width:375px;
  9314. height:50px;
  9315. display:flex;
  9316. }
  9317. #u40593 .text {
  9318. position:absolute;
  9319. align-self:center;
  9320. padding:2px 2px 2px 2px;
  9321. box-sizing:border-box;
  9322. width:100%;
  9323. }
  9324. #u40593_text {
  9325. border-width:0px;
  9326. word-wrap:break-word;
  9327. text-transform:none;
  9328. visibility:hidden;
  9329. }
  9330. #u40594 {
  9331. border-width:0px;
  9332. position:absolute;
  9333. left:0px;
  9334. top:0px;
  9335. width:0px;
  9336. height:0px;
  9337. }
  9338. #u40595_img {
  9339. border-width:0px;
  9340. position:absolute;
  9341. left:0px;
  9342. top:0px;
  9343. width:24px;
  9344. height:24px;
  9345. }
  9346. #u40595 {
  9347. border-width:0px;
  9348. position:absolute;
  9349. left:532px;
  9350. top:792px;
  9351. width:24px;
  9352. height:24px;
  9353. display:flex;
  9354. font-size:8px;
  9355. }
  9356. #u40595 .text {
  9357. position:absolute;
  9358. align-self:center;
  9359. padding:2px 2px 2px 2px;
  9360. box-sizing:border-box;
  9361. width:100%;
  9362. }
  9363. #u40595_text {
  9364. border-width:0px;
  9365. word-wrap:break-word;
  9366. text-transform:none;
  9367. }
  9368. #u40596_div {
  9369. border-width:0px;
  9370. position:absolute;
  9371. left:0px;
  9372. top:0px;
  9373. width:25px;
  9374. height:17px;
  9375. background:inherit;
  9376. background-color:rgba(255, 255, 255, 0);
  9377. border:none;
  9378. border-radius:0px;
  9379. -moz-box-shadow:none;
  9380. -webkit-box-shadow:none;
  9381. box-shadow:none;
  9382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9383. font-weight:400;
  9384. font-style:normal;
  9385. font-size:12px;
  9386. }
  9387. #u40596 {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:532px;
  9391. top:817px;
  9392. width:25px;
  9393. height:17px;
  9394. display:flex;
  9395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9396. font-weight:400;
  9397. font-style:normal;
  9398. font-size:12px;
  9399. }
  9400. #u40596 .text {
  9401. position:absolute;
  9402. align-self:flex-start;
  9403. padding:0px 0px 0px 0px;
  9404. box-sizing:border-box;
  9405. width:100%;
  9406. }
  9407. #u40596_text {
  9408. border-width:0px;
  9409. white-space:nowrap;
  9410. text-transform:none;
  9411. }
  9412. #u40597 {
  9413. border-width:0px;
  9414. position:absolute;
  9415. left:0px;
  9416. top:0px;
  9417. width:0px;
  9418. height:0px;
  9419. }
  9420. #u40598_img {
  9421. border-width:0px;
  9422. position:absolute;
  9423. left:0px;
  9424. top:0px;
  9425. width:24px;
  9426. height:24px;
  9427. }
  9428. #u40598 {
  9429. border-width:0px;
  9430. position:absolute;
  9431. left:802px;
  9432. top:794px;
  9433. width:24px;
  9434. height:24px;
  9435. display:flex;
  9436. font-size:8px;
  9437. }
  9438. #u40598 .text {
  9439. position:absolute;
  9440. align-self:center;
  9441. padding:2px 2px 2px 2px;
  9442. box-sizing:border-box;
  9443. width:100%;
  9444. }
  9445. #u40598_text {
  9446. border-width:0px;
  9447. word-wrap:break-word;
  9448. text-transform:none;
  9449. }
  9450. #u40599_div {
  9451. border-width:0px;
  9452. position:absolute;
  9453. left:0px;
  9454. top:0px;
  9455. width:25px;
  9456. height:17px;
  9457. background:inherit;
  9458. background-color:rgba(255, 255, 255, 0);
  9459. border:none;
  9460. border-radius:0px;
  9461. -moz-box-shadow:none;
  9462. -webkit-box-shadow:none;
  9463. box-shadow:none;
  9464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9465. font-weight:400;
  9466. font-style:normal;
  9467. font-size:12px;
  9468. }
  9469. #u40599 {
  9470. border-width:0px;
  9471. position:absolute;
  9472. left:802px;
  9473. top:819px;
  9474. width:25px;
  9475. height:17px;
  9476. display:flex;
  9477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9478. font-weight:400;
  9479. font-style:normal;
  9480. font-size:12px;
  9481. }
  9482. #u40599 .text {
  9483. position:absolute;
  9484. align-self:flex-start;
  9485. padding:0px 0px 0px 0px;
  9486. box-sizing:border-box;
  9487. width:100%;
  9488. }
  9489. #u40599_text {
  9490. border-width:0px;
  9491. white-space:nowrap;
  9492. text-transform:none;
  9493. }
  9494. #u40600_div {
  9495. border-width:0px;
  9496. position:absolute;
  9497. left:0px;
  9498. top:0px;
  9499. width:375px;
  9500. height:681px;
  9501. background:inherit;
  9502. background-color:rgba(242, 242, 242, 0.462745098039216);
  9503. border:none;
  9504. border-radius:0px;
  9505. -moz-box-shadow:none;
  9506. -webkit-box-shadow:none;
  9507. box-shadow:none;
  9508. }
  9509. #u40600 {
  9510. border-width:0px;
  9511. position:absolute;
  9512. left:492px;
  9513. top:107px;
  9514. width:375px;
  9515. height:681px;
  9516. display:flex;
  9517. }
  9518. #u40600 .text {
  9519. position:absolute;
  9520. align-self:center;
  9521. padding:2px 2px 2px 2px;
  9522. box-sizing:border-box;
  9523. width:100%;
  9524. }
  9525. #u40600_text {
  9526. border-width:0px;
  9527. word-wrap:break-word;
  9528. text-transform:none;
  9529. visibility:hidden;
  9530. }
  9531. #u40601 {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:0px;
  9535. top:0px;
  9536. width:0px;
  9537. height:0px;
  9538. }
  9539. #u40602_img {
  9540. border-width:0px;
  9541. position:absolute;
  9542. left:0px;
  9543. top:0px;
  9544. width:24px;
  9545. height:24px;
  9546. }
  9547. #u40602 {
  9548. border-width:0px;
  9549. position:absolute;
  9550. left:714px;
  9551. top:792px;
  9552. width:24px;
  9553. height:24px;
  9554. display:flex;
  9555. font-size:8px;
  9556. }
  9557. #u40602 .text {
  9558. position:absolute;
  9559. align-self:center;
  9560. padding:2px 2px 2px 2px;
  9561. box-sizing:border-box;
  9562. width:100%;
  9563. }
  9564. #u40602_text {
  9565. border-width:0px;
  9566. word-wrap:break-word;
  9567. text-transform:none;
  9568. }
  9569. #u40603_div {
  9570. border-width:0px;
  9571. position:absolute;
  9572. left:0px;
  9573. top:0px;
  9574. width:37px;
  9575. height:17px;
  9576. background:inherit;
  9577. background-color:rgba(255, 255, 255, 0);
  9578. border:none;
  9579. border-radius:0px;
  9580. -moz-box-shadow:none;
  9581. -webkit-box-shadow:none;
  9582. box-shadow:none;
  9583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9584. font-weight:400;
  9585. font-style:normal;
  9586. font-size:12px;
  9587. }
  9588. #u40603 {
  9589. border-width:0px;
  9590. position:absolute;
  9591. left:708px;
  9592. top:817px;
  9593. width:37px;
  9594. height:17px;
  9595. display:flex;
  9596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9597. font-weight:400;
  9598. font-style:normal;
  9599. font-size:12px;
  9600. }
  9601. #u40603 .text {
  9602. position:absolute;
  9603. align-self:flex-start;
  9604. padding:0px 0px 0px 0px;
  9605. box-sizing:border-box;
  9606. width:100%;
  9607. }
  9608. #u40603_text {
  9609. border-width:0px;
  9610. white-space:nowrap;
  9611. text-transform:none;
  9612. }
  9613. #u40604 {
  9614. border-width:0px;
  9615. position:absolute;
  9616. left:0px;
  9617. top:0px;
  9618. width:0px;
  9619. height:0px;
  9620. }
  9621. #u40605_img {
  9622. border-width:0px;
  9623. position:absolute;
  9624. left:0px;
  9625. top:0px;
  9626. width:24px;
  9627. height:24px;
  9628. }
  9629. #u40605 {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:620px;
  9633. top:792px;
  9634. width:24px;
  9635. height:24px;
  9636. display:flex;
  9637. font-size:8px;
  9638. }
  9639. #u40605 .text {
  9640. position:absolute;
  9641. align-self:center;
  9642. padding:2px 2px 2px 2px;
  9643. box-sizing:border-box;
  9644. width:100%;
  9645. }
  9646. #u40605_text {
  9647. border-width:0px;
  9648. word-wrap:break-word;
  9649. text-transform:none;
  9650. }
  9651. #u40606_div {
  9652. border-width:0px;
  9653. position:absolute;
  9654. left:0px;
  9655. top:0px;
  9656. width:37px;
  9657. height:17px;
  9658. background:inherit;
  9659. background-color:rgba(255, 255, 255, 0);
  9660. border:none;
  9661. border-radius:0px;
  9662. -moz-box-shadow:none;
  9663. -webkit-box-shadow:none;
  9664. box-shadow:none;
  9665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9666. font-weight:400;
  9667. font-style:normal;
  9668. font-size:12px;
  9669. }
  9670. #u40606 {
  9671. border-width:0px;
  9672. position:absolute;
  9673. left:614px;
  9674. top:817px;
  9675. width:37px;
  9676. height:17px;
  9677. display:flex;
  9678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9679. font-weight:400;
  9680. font-style:normal;
  9681. font-size:12px;
  9682. }
  9683. #u40606 .text {
  9684. position:absolute;
  9685. align-self:flex-start;
  9686. padding:0px 0px 0px 0px;
  9687. box-sizing:border-box;
  9688. width:100%;
  9689. }
  9690. #u40606_text {
  9691. border-width:0px;
  9692. white-space:nowrap;
  9693. text-transform:none;
  9694. }
  9695. #u40607_div {
  9696. border-width:0px;
  9697. position:absolute;
  9698. left:0px;
  9699. top:0px;
  9700. width:375px;
  9701. height:732px;
  9702. background:inherit;
  9703. background-color:rgba(244, 244, 244, 1);
  9704. box-sizing:border-box;
  9705. border-width:1px;
  9706. border-style:solid;
  9707. border-color:rgba(242, 242, 242, 1);
  9708. border-radius:26px;
  9709. border-top-left-radius:0px;
  9710. border-top-right-radius:0px;
  9711. -moz-box-shadow:none;
  9712. -webkit-box-shadow:none;
  9713. box-shadow:none;
  9714. }
  9715. #u40607 {
  9716. border-width:0px;
  9717. position:absolute;
  9718. left:492px;
  9719. top:107px;
  9720. width:375px;
  9721. height:732px;
  9722. display:flex;
  9723. }
  9724. #u40607 .text {
  9725. position:absolute;
  9726. align-self:center;
  9727. padding:2px 2px 2px 2px;
  9728. box-sizing:border-box;
  9729. width:100%;
  9730. }
  9731. #u40607_text {
  9732. border-width:0px;
  9733. word-wrap:break-word;
  9734. text-transform:none;
  9735. visibility:hidden;
  9736. }
  9737. #u40608_div {
  9738. border-width:0px;
  9739. position:absolute;
  9740. left:0px;
  9741. top:0px;
  9742. width:375px;
  9743. height:732px;
  9744. background:inherit;
  9745. background-color:rgba(242, 242, 242, 1);
  9746. box-sizing:border-box;
  9747. border-width:1px;
  9748. border-style:solid;
  9749. border-color:rgba(242, 242, 242, 1);
  9750. border-radius:26px;
  9751. border-top-left-radius:0px;
  9752. border-top-right-radius:0px;
  9753. -moz-box-shadow:none;
  9754. -webkit-box-shadow:none;
  9755. box-shadow:none;
  9756. }
  9757. #u40608 {
  9758. border-width:0px;
  9759. position:absolute;
  9760. left:492px;
  9761. top:107px;
  9762. width:375px;
  9763. height:732px;
  9764. display:flex;
  9765. }
  9766. #u40608 .text {
  9767. position:absolute;
  9768. align-self:center;
  9769. padding:2px 2px 2px 2px;
  9770. box-sizing:border-box;
  9771. width:100%;
  9772. }
  9773. #u40608_text {
  9774. border-width:0px;
  9775. word-wrap:break-word;
  9776. text-transform:none;
  9777. visibility:hidden;
  9778. }
  9779. #u40609 {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:0px;
  9783. top:0px;
  9784. width:0px;
  9785. height:0px;
  9786. }
  9787. #u40610_div {
  9788. border-width:0px;
  9789. position:absolute;
  9790. left:0px;
  9791. top:0px;
  9792. width:375px;
  9793. height:40px;
  9794. background:inherit;
  9795. background-color:rgba(255, 255, 255, 1);
  9796. border:none;
  9797. border-left:0px;
  9798. border-top:0px;
  9799. border-right:0px;
  9800. border-radius:0px;
  9801. border-bottom-right-radius:0px;
  9802. border-bottom-left-radius:0px;
  9803. -moz-box-shadow:none;
  9804. -webkit-box-shadow:none;
  9805. box-shadow:none;
  9806. }
  9807. #u40610 {
  9808. border-width:0px;
  9809. position:absolute;
  9810. left:492px;
  9811. top:67px;
  9812. width:375px;
  9813. height:40px;
  9814. display:flex;
  9815. }
  9816. #u40610 .text {
  9817. position:absolute;
  9818. align-self:center;
  9819. padding:2px 2px 2px 2px;
  9820. box-sizing:border-box;
  9821. width:100%;
  9822. }
  9823. #u40610_text {
  9824. border-width:0px;
  9825. word-wrap:break-word;
  9826. text-transform:none;
  9827. visibility:hidden;
  9828. }
  9829. #u40611 {
  9830. border-width:0px;
  9831. position:absolute;
  9832. left:0px;
  9833. top:0px;
  9834. width:0px;
  9835. height:0px;
  9836. }
  9837. #u40612_div {
  9838. border-width:0px;
  9839. position:absolute;
  9840. left:0px;
  9841. top:0px;
  9842. width:88px;
  9843. height:32px;
  9844. background:inherit;
  9845. background-color:rgba(255, 255, 255, 1);
  9846. box-sizing:border-box;
  9847. border-width:1px;
  9848. border-style:solid;
  9849. border-color:rgba(242, 242, 242, 1);
  9850. border-radius:33px;
  9851. -moz-box-shadow:none;
  9852. -webkit-box-shadow:none;
  9853. box-shadow:none;
  9854. }
  9855. #u40612 {
  9856. border-width:0px;
  9857. position:absolute;
  9858. left:769px;
  9859. top:69px;
  9860. width:88px;
  9861. height:32px;
  9862. display:flex;
  9863. }
  9864. #u40612 .text {
  9865. position:absolute;
  9866. align-self:center;
  9867. padding:2px 2px 2px 2px;
  9868. box-sizing:border-box;
  9869. width:100%;
  9870. }
  9871. #u40612_text {
  9872. border-width:0px;
  9873. word-wrap:break-word;
  9874. text-transform:none;
  9875. visibility:hidden;
  9876. }
  9877. #u40613 {
  9878. border-width:0px;
  9879. position:absolute;
  9880. left:0px;
  9881. top:0px;
  9882. width:0px;
  9883. height:0px;
  9884. }
  9885. #u40614_img {
  9886. border-width:0px;
  9887. position:absolute;
  9888. left:0px;
  9889. top:0px;
  9890. width:18px;
  9891. height:18px;
  9892. }
  9893. #u40614 {
  9894. border-width:0px;
  9895. position:absolute;
  9896. left:832px;
  9897. top:76px;
  9898. width:18px;
  9899. height:18px;
  9900. display:flex;
  9901. }
  9902. #u40614 .text {
  9903. position:absolute;
  9904. align-self:center;
  9905. padding:2px 2px 2px 2px;
  9906. box-sizing:border-box;
  9907. width:100%;
  9908. }
  9909. #u40614_text {
  9910. border-width:0px;
  9911. word-wrap:break-word;
  9912. text-transform:none;
  9913. visibility:hidden;
  9914. }
  9915. #u40615_img {
  9916. border-width:0px;
  9917. position:absolute;
  9918. left:0px;
  9919. top:0px;
  9920. width:6px;
  9921. height:6px;
  9922. }
  9923. #u40615 {
  9924. border-width:0px;
  9925. position:absolute;
  9926. left:838px;
  9927. top:82px;
  9928. width:6px;
  9929. height:6px;
  9930. display:flex;
  9931. }
  9932. #u40615 .text {
  9933. position:absolute;
  9934. align-self:center;
  9935. padding:2px 2px 2px 2px;
  9936. box-sizing:border-box;
  9937. width:100%;
  9938. }
  9939. #u40615_text {
  9940. border-width:0px;
  9941. word-wrap:break-word;
  9942. text-transform:none;
  9943. visibility:hidden;
  9944. }
  9945. #u40616 {
  9946. border-width:0px;
  9947. position:absolute;
  9948. left:0px;
  9949. top:0px;
  9950. width:0px;
  9951. height:0px;
  9952. }
  9953. #u40617_img {
  9954. border-width:0px;
  9955. position:absolute;
  9956. left:0px;
  9957. top:0px;
  9958. width:5px;
  9959. height:5px;
  9960. }
  9961. #u40617 {
  9962. border-width:0px;
  9963. position:absolute;
  9964. left:783px;
  9965. top:83px;
  9966. width:5px;
  9967. height:5px;
  9968. display:flex;
  9969. }
  9970. #u40617 .text {
  9971. position:absolute;
  9972. align-self:center;
  9973. padding:2px 2px 2px 2px;
  9974. box-sizing:border-box;
  9975. width:100%;
  9976. }
  9977. #u40617_text {
  9978. border-width:0px;
  9979. word-wrap:break-word;
  9980. text-transform:none;
  9981. visibility:hidden;
  9982. }
  9983. #u40618_img {
  9984. border-width:0px;
  9985. position:absolute;
  9986. left:0px;
  9987. top:0px;
  9988. width:5px;
  9989. height:5px;
  9990. }
  9991. #u40618 {
  9992. border-width:0px;
  9993. position:absolute;
  9994. left:799px;
  9995. top:83px;
  9996. width:5px;
  9997. height:5px;
  9998. display:flex;
  9999. }
  10000. #u40618 .text {
  10001. position:absolute;
  10002. align-self:center;
  10003. padding:2px 2px 2px 2px;
  10004. box-sizing:border-box;
  10005. width:100%;
  10006. }
  10007. #u40618_text {
  10008. border-width:0px;
  10009. word-wrap:break-word;
  10010. text-transform:none;
  10011. visibility:hidden;
  10012. }
  10013. #u40619_img {
  10014. border-width:0px;
  10015. position:absolute;
  10016. left:0px;
  10017. top:0px;
  10018. width:7px;
  10019. height:7px;
  10020. }
  10021. #u40619 {
  10022. border-width:0px;
  10023. position:absolute;
  10024. left:790px;
  10025. top:82px;
  10026. width:7px;
  10027. height:7px;
  10028. display:flex;
  10029. }
  10030. #u40619 .text {
  10031. position:absolute;
  10032. align-self:center;
  10033. padding:2px 2px 2px 2px;
  10034. box-sizing:border-box;
  10035. width:100%;
  10036. }
  10037. #u40619_text {
  10038. border-width:0px;
  10039. word-wrap:break-word;
  10040. text-transform:none;
  10041. visibility:hidden;
  10042. }
  10043. #u40620_img {
  10044. border-width:0px;
  10045. position:absolute;
  10046. left:0px;
  10047. top:0px;
  10048. width:19px;
  10049. height:2px;
  10050. }
  10051. #u40620 {
  10052. border-width:0px;
  10053. position:absolute;
  10054. left:807px;
  10055. top:85px;
  10056. width:18px;
  10057. height:1px;
  10058. display:flex;
  10059. -webkit-transform:rotate(90deg);
  10060. -moz-transform:rotate(90deg);
  10061. -ms-transform:rotate(90deg);
  10062. transform:rotate(90deg);
  10063. }
  10064. #u40620 .text {
  10065. position:absolute;
  10066. align-self:center;
  10067. padding:2px 2px 2px 2px;
  10068. box-sizing:border-box;
  10069. width:100%;
  10070. }
  10071. #u40620_text {
  10072. border-width:0px;
  10073. word-wrap:break-word;
  10074. text-transform:none;
  10075. visibility:hidden;
  10076. }
  10077. #u40621_div {
  10078. border-width:0px;
  10079. position:absolute;
  10080. left:0px;
  10081. top:0px;
  10082. width:12px;
  10083. height:12px;
  10084. background:inherit;
  10085. background-color:rgba(255, 255, 255, 0);
  10086. box-sizing:border-box;
  10087. border-width:2px;
  10088. border-style:solid;
  10089. border-color:rgba(51, 51, 51, 1);
  10090. border-right:0px;
  10091. border-bottom:0px;
  10092. border-radius:0px;
  10093. border-top-right-radius:0px;
  10094. border-bottom-left-radius:0px;
  10095. -moz-box-shadow:none;
  10096. -webkit-box-shadow:none;
  10097. box-shadow:none;
  10098. }
  10099. #u40621 {
  10100. border-width:0px;
  10101. position:absolute;
  10102. left:508px;
  10103. top:79px;
  10104. width:12px;
  10105. height:12px;
  10106. display:flex;
  10107. -webkit-transform:rotate(315deg);
  10108. -moz-transform:rotate(315deg);
  10109. -ms-transform:rotate(315deg);
  10110. transform:rotate(315deg);
  10111. }
  10112. #u40621 .text {
  10113. position:absolute;
  10114. align-self:center;
  10115. padding:2px 2px 2px 2px;
  10116. box-sizing:border-box;
  10117. width:100%;
  10118. }
  10119. #u40621_text {
  10120. border-width:0px;
  10121. word-wrap:break-word;
  10122. text-transform:none;
  10123. visibility:hidden;
  10124. }
  10125. #u40622_div {
  10126. border-width:0px;
  10127. position:absolute;
  10128. left:0px;
  10129. top:0px;
  10130. width:109px;
  10131. height:25px;
  10132. background:inherit;
  10133. background-color:rgba(255, 255, 255, 0);
  10134. border:none;
  10135. border-radius:0px;
  10136. -moz-box-shadow:none;
  10137. -webkit-box-shadow:none;
  10138. box-shadow:none;
  10139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10140. font-weight:400;
  10141. font-style:normal;
  10142. font-size:18px;
  10143. }
  10144. #u40622 {
  10145. border-width:0px;
  10146. position:absolute;
  10147. left:522px;
  10148. top:72px;
  10149. width:109px;
  10150. height:25px;
  10151. display:flex;
  10152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10153. font-weight:400;
  10154. font-style:normal;
  10155. font-size:18px;
  10156. }
  10157. #u40622 .text {
  10158. position:absolute;
  10159. align-self:flex-start;
  10160. padding:0px 0px 0px 0px;
  10161. box-sizing:border-box;
  10162. width:100%;
  10163. }
  10164. #u40622_text {
  10165. border-width:0px;
  10166. white-space:nowrap;
  10167. text-transform:none;
  10168. }
  10169. #u40623_div {
  10170. border-width:0px;
  10171. position:absolute;
  10172. left:0px;
  10173. top:0px;
  10174. width:375px;
  10175. height:58px;
  10176. background:inherit;
  10177. background-color:rgba(24, 144, 255, 1);
  10178. border:none;
  10179. border-radius:0px;
  10180. -moz-box-shadow:none;
  10181. -webkit-box-shadow:none;
  10182. box-shadow:none;
  10183. }
  10184. #u40623 {
  10185. border-width:0px;
  10186. position:absolute;
  10187. left:492px;
  10188. top:107px;
  10189. width:375px;
  10190. height:58px;
  10191. display:flex;
  10192. }
  10193. #u40623 .text {
  10194. position:absolute;
  10195. align-self:center;
  10196. padding:2px 2px 2px 2px;
  10197. box-sizing:border-box;
  10198. width:100%;
  10199. }
  10200. #u40623_text {
  10201. border-width:0px;
  10202. word-wrap:break-word;
  10203. text-transform:none;
  10204. visibility:hidden;
  10205. }
  10206. #u40624_div {
  10207. border-width:0px;
  10208. position:absolute;
  10209. left:0px;
  10210. top:0px;
  10211. width:375px;
  10212. height:524px;
  10213. background:inherit;
  10214. background-color:rgba(255, 255, 255, 0.996078431372549);
  10215. border:none;
  10216. border-radius:0px;
  10217. -moz-box-shadow:none;
  10218. -webkit-box-shadow:none;
  10219. box-shadow:none;
  10220. }
  10221. #u40624 {
  10222. border-width:0px;
  10223. position:absolute;
  10224. left:492px;
  10225. top:255px;
  10226. width:375px;
  10227. height:524px;
  10228. display:flex;
  10229. }
  10230. #u40624 .text {
  10231. position:absolute;
  10232. align-self:center;
  10233. padding:2px 2px 2px 2px;
  10234. box-sizing:border-box;
  10235. width:100%;
  10236. }
  10237. #u40624_text {
  10238. border-width:0px;
  10239. word-wrap:break-word;
  10240. text-transform:none;
  10241. visibility:hidden;
  10242. }
  10243. #u40625_div {
  10244. border-width:0px;
  10245. position:absolute;
  10246. left:0px;
  10247. top:0px;
  10248. width:73px;
  10249. height:25px;
  10250. background:inherit;
  10251. background-color:rgba(255, 255, 255, 0);
  10252. border:none;
  10253. border-radius:0px;
  10254. -moz-box-shadow:none;
  10255. -webkit-box-shadow:none;
  10256. box-shadow:none;
  10257. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10258. font-weight:500;
  10259. font-style:normal;
  10260. font-size:18px;
  10261. }
  10262. #u40625 {
  10263. border-width:0px;
  10264. position:absolute;
  10265. left:512px;
  10266. top:274px;
  10267. width:73px;
  10268. height:25px;
  10269. display:flex;
  10270. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10271. font-weight:500;
  10272. font-style:normal;
  10273. font-size:18px;
  10274. }
  10275. #u40625 .text {
  10276. position:absolute;
  10277. align-self:flex-start;
  10278. padding:0px 0px 0px 0px;
  10279. box-sizing:border-box;
  10280. width:100%;
  10281. }
  10282. #u40625_text {
  10283. border-width:0px;
  10284. white-space:nowrap;
  10285. text-transform:none;
  10286. }
  10287. #u40626 {
  10288. border-width:0px;
  10289. position:absolute;
  10290. left:0px;
  10291. top:0px;
  10292. width:0px;
  10293. height:0px;
  10294. }
  10295. #u40627_div {
  10296. border-width:0px;
  10297. position:absolute;
  10298. left:0px;
  10299. top:0px;
  10300. width:322px;
  10301. height:40px;
  10302. background:inherit;
  10303. background-color:rgba(255, 255, 255, 1);
  10304. border:none;
  10305. border-left:0px;
  10306. border-top:0px;
  10307. border-right:0px;
  10308. border-radius:0px;
  10309. border-bottom-right-radius:0px;
  10310. border-bottom-left-radius:0px;
  10311. -moz-box-shadow:none;
  10312. -webkit-box-shadow:none;
  10313. box-shadow:none;
  10314. }
  10315. #u40627 {
  10316. border-width:0px;
  10317. position:absolute;
  10318. left:512px;
  10319. top:349px;
  10320. width:322px;
  10321. height:40px;
  10322. display:flex;
  10323. }
  10324. #u40627 .text {
  10325. position:absolute;
  10326. align-self:center;
  10327. padding:2px 2px 2px 2px;
  10328. box-sizing:border-box;
  10329. width:100%;
  10330. }
  10331. #u40627_text {
  10332. border-width:0px;
  10333. word-wrap:break-word;
  10334. text-transform:none;
  10335. visibility:hidden;
  10336. }
  10337. #u40628_div {
  10338. border-width:0px;
  10339. position:absolute;
  10340. left:0px;
  10341. top:0px;
  10342. width:36px;
  10343. height:20px;
  10344. background:inherit;
  10345. background-color:rgba(255, 255, 255, 0);
  10346. border:none;
  10347. border-radius:0px;
  10348. -moz-box-shadow:none;
  10349. -webkit-box-shadow:none;
  10350. box-shadow:none;
  10351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10352. font-weight:400;
  10353. font-style:normal;
  10354. }
  10355. #u40628 {
  10356. border-width:0px;
  10357. position:absolute;
  10358. left:512px;
  10359. top:359px;
  10360. width:36px;
  10361. height:20px;
  10362. display:flex;
  10363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10364. font-weight:400;
  10365. font-style:normal;
  10366. }
  10367. #u40628 .text {
  10368. position:absolute;
  10369. align-self:flex-start;
  10370. padding:0px 0px 0px 0px;
  10371. box-sizing:border-box;
  10372. width:100%;
  10373. }
  10374. #u40628_text {
  10375. border-width:0px;
  10376. white-space:nowrap;
  10377. text-transform:none;
  10378. }
  10379. #u40629_div {
  10380. border-width:0px;
  10381. position:absolute;
  10382. left:0px;
  10383. top:0px;
  10384. width:10px;
  10385. height:10px;
  10386. background:inherit;
  10387. background-color:rgba(255, 255, 255, 0);
  10388. box-sizing:border-box;
  10389. border-width:1px;
  10390. border-style:solid;
  10391. border-color:rgba(170, 170, 170, 1);
  10392. border-right:0px;
  10393. border-bottom:0px;
  10394. border-radius:0px;
  10395. border-top-right-radius:0px;
  10396. border-bottom-left-radius:0px;
  10397. -moz-box-shadow:none;
  10398. -webkit-box-shadow:none;
  10399. box-shadow:none;
  10400. }
  10401. #u40629 {
  10402. border-width:0px;
  10403. position:absolute;
  10404. left:818px;
  10405. top:364px;
  10406. width:10px;
  10407. height:10px;
  10408. display:flex;
  10409. -webkit-transform:rotate(135deg);
  10410. -moz-transform:rotate(135deg);
  10411. -ms-transform:rotate(135deg);
  10412. transform:rotate(135deg);
  10413. }
  10414. #u40629 .text {
  10415. position:absolute;
  10416. align-self:center;
  10417. padding:2px 2px 2px 2px;
  10418. box-sizing:border-box;
  10419. width:100%;
  10420. }
  10421. #u40629_text {
  10422. border-width:0px;
  10423. word-wrap:break-word;
  10424. text-transform:none;
  10425. visibility:hidden;
  10426. }
  10427. #u40630_div {
  10428. border-width:0px;
  10429. position:absolute;
  10430. left:0px;
  10431. top:0px;
  10432. width:43px;
  10433. height:20px;
  10434. background:inherit;
  10435. background-color:rgba(255, 255, 255, 0);
  10436. border:none;
  10437. border-radius:0px;
  10438. -moz-box-shadow:none;
  10439. -webkit-box-shadow:none;
  10440. box-shadow:none;
  10441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10442. font-weight:400;
  10443. font-style:normal;
  10444. color:#AAAAAA;
  10445. }
  10446. #u40630 {
  10447. border-width:0px;
  10448. position:absolute;
  10449. left:773px;
  10450. top:359px;
  10451. width:43px;
  10452. height:20px;
  10453. display:flex;
  10454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10455. font-weight:400;
  10456. font-style:normal;
  10457. color:#AAAAAA;
  10458. }
  10459. #u40630 .text {
  10460. position:absolute;
  10461. align-self:flex-start;
  10462. padding:0px 0px 0px 0px;
  10463. box-sizing:border-box;
  10464. width:100%;
  10465. }
  10466. #u40630_text {
  10467. border-width:0px;
  10468. white-space:nowrap;
  10469. text-transform:none;
  10470. }
  10471. #u40631 {
  10472. border-width:0px;
  10473. position:absolute;
  10474. left:0px;
  10475. top:0px;
  10476. width:0px;
  10477. height:0px;
  10478. }
  10479. #u40632 {
  10480. border-width:0px;
  10481. position:absolute;
  10482. left:0px;
  10483. top:0px;
  10484. width:0px;
  10485. height:0px;
  10486. }
  10487. #u40633_img {
  10488. border-width:0px;
  10489. position:absolute;
  10490. left:0px;
  10491. top:0px;
  10492. width:27px;
  10493. height:27px;
  10494. }
  10495. #u40633 {
  10496. border-width:0px;
  10497. position:absolute;
  10498. left:631px;
  10499. top:122px;
  10500. width:27px;
  10501. height:27px;
  10502. display:flex;
  10503. font-size:12px;
  10504. color:#FFFFFF;
  10505. }
  10506. #u40633 .text {
  10507. position:absolute;
  10508. align-self:center;
  10509. padding:2px 2px 2px 2px;
  10510. box-sizing:border-box;
  10511. width:100%;
  10512. }
  10513. #u40633_text {
  10514. border-width:0px;
  10515. word-wrap:break-word;
  10516. text-transform:none;
  10517. }
  10518. #u40634_div {
  10519. border-width:0px;
  10520. position:absolute;
  10521. left:0px;
  10522. top:0px;
  10523. width:57px;
  10524. height:30px;
  10525. background:inherit;
  10526. background-color:rgba(255, 255, 255, 0);
  10527. border:none;
  10528. border-left:0px;
  10529. border-top:0px;
  10530. border-right:0px;
  10531. border-radius:0px;
  10532. border-bottom-right-radius:0px;
  10533. border-bottom-left-radius:0px;
  10534. -moz-box-shadow:none;
  10535. -webkit-box-shadow:none;
  10536. box-shadow:none;
  10537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10538. font-weight:400;
  10539. font-style:normal;
  10540. font-size:14px;
  10541. color:#FFFFFF;
  10542. line-height:30px;
  10543. }
  10544. #u40634 {
  10545. border-width:0px;
  10546. position:absolute;
  10547. left:665px;
  10548. top:121px;
  10549. width:57px;
  10550. height:30px;
  10551. display:flex;
  10552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10553. font-weight:400;
  10554. font-style:normal;
  10555. font-size:14px;
  10556. color:#FFFFFF;
  10557. line-height:30px;
  10558. }
  10559. #u40634 .text {
  10560. position:absolute;
  10561. align-self:center;
  10562. padding:0px 0px 0px 0px;
  10563. box-sizing:border-box;
  10564. width:100%;
  10565. }
  10566. #u40634_text {
  10567. border-width:0px;
  10568. white-space:nowrap;
  10569. text-transform:none;
  10570. }
  10571. #u40635_img {
  10572. border-width:0px;
  10573. position:absolute;
  10574. left:0px;
  10575. top:0px;
  10576. width:27px;
  10577. height:27px;
  10578. }
  10579. #u40635 {
  10580. border-width:0px;
  10581. position:absolute;
  10582. left:498px;
  10583. top:122px;
  10584. width:27px;
  10585. height:27px;
  10586. display:flex;
  10587. font-size:12px;
  10588. color:#1890FF;
  10589. }
  10590. #u40635 .text {
  10591. position:absolute;
  10592. align-self:center;
  10593. padding:2px 2px 2px 2px;
  10594. box-sizing:border-box;
  10595. width:100%;
  10596. }
  10597. #u40635_text {
  10598. border-width:0px;
  10599. word-wrap:break-word;
  10600. text-transform:none;
  10601. }
  10602. #u40636_div {
  10603. border-width:0px;
  10604. position:absolute;
  10605. left:0px;
  10606. top:0px;
  10607. width:57px;
  10608. height:30px;
  10609. background:inherit;
  10610. background-color:rgba(255, 255, 255, 0);
  10611. border:none;
  10612. border-left:0px;
  10613. border-top:0px;
  10614. border-right:0px;
  10615. border-radius:0px;
  10616. border-bottom-right-radius:0px;
  10617. border-bottom-left-radius:0px;
  10618. -moz-box-shadow:none;
  10619. -webkit-box-shadow:none;
  10620. box-shadow:none;
  10621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10622. font-weight:400;
  10623. font-style:normal;
  10624. font-size:14px;
  10625. color:#FFFFFF;
  10626. line-height:30px;
  10627. }
  10628. #u40636 {
  10629. border-width:0px;
  10630. position:absolute;
  10631. left:532px;
  10632. top:121px;
  10633. width:57px;
  10634. height:30px;
  10635. display:flex;
  10636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10637. font-weight:400;
  10638. font-style:normal;
  10639. font-size:14px;
  10640. color:#FFFFFF;
  10641. line-height:30px;
  10642. }
  10643. #u40636 .text {
  10644. position:absolute;
  10645. align-self:center;
  10646. padding:0px 0px 0px 0px;
  10647. box-sizing:border-box;
  10648. width:100%;
  10649. }
  10650. #u40636_text {
  10651. border-width:0px;
  10652. white-space:nowrap;
  10653. text-transform:none;
  10654. }
  10655. #u40637_img {
  10656. border-width:0px;
  10657. position:absolute;
  10658. left:0px;
  10659. top:0px;
  10660. width:28px;
  10661. height:2px;
  10662. }
  10663. #u40637 {
  10664. border-width:0px;
  10665. position:absolute;
  10666. left:594px;
  10667. top:136px;
  10668. width:27px;
  10669. height:1px;
  10670. display:flex;
  10671. color:#FFFFFF;
  10672. }
  10673. #u40637 .text {
  10674. position:absolute;
  10675. align-self:center;
  10676. padding:2px 2px 2px 2px;
  10677. box-sizing:border-box;
  10678. width:100%;
  10679. }
  10680. #u40637_text {
  10681. border-width:0px;
  10682. word-wrap:break-word;
  10683. text-transform:none;
  10684. visibility:hidden;
  10685. }
  10686. #u40638_img {
  10687. border-width:0px;
  10688. position:absolute;
  10689. left:0px;
  10690. top:0px;
  10691. width:27px;
  10692. height:27px;
  10693. }
  10694. #u40638 {
  10695. border-width:0px;
  10696. position:absolute;
  10697. left:766px;
  10698. top:122px;
  10699. width:27px;
  10700. height:27px;
  10701. display:flex;
  10702. font-size:12px;
  10703. color:#FFFFFF;
  10704. }
  10705. #u40638 .text {
  10706. position:absolute;
  10707. align-self:center;
  10708. padding:2px 2px 2px 2px;
  10709. box-sizing:border-box;
  10710. width:100%;
  10711. }
  10712. #u40638_text {
  10713. border-width:0px;
  10714. word-wrap:break-word;
  10715. text-transform:none;
  10716. }
  10717. #u40639_div {
  10718. border-width:0px;
  10719. position:absolute;
  10720. left:0px;
  10721. top:0px;
  10722. width:57px;
  10723. height:30px;
  10724. background:inherit;
  10725. background-color:rgba(255, 255, 255, 0);
  10726. border:none;
  10727. border-left:0px;
  10728. border-top:0px;
  10729. border-right:0px;
  10730. border-radius:0px;
  10731. border-bottom-right-radius:0px;
  10732. border-bottom-left-radius:0px;
  10733. -moz-box-shadow:none;
  10734. -webkit-box-shadow:none;
  10735. box-shadow:none;
  10736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10737. font-weight:400;
  10738. font-style:normal;
  10739. font-size:14px;
  10740. color:#FFFFFF;
  10741. line-height:30px;
  10742. }
  10743. #u40639 {
  10744. border-width:0px;
  10745. position:absolute;
  10746. left:800px;
  10747. top:121px;
  10748. width:57px;
  10749. height:30px;
  10750. display:flex;
  10751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10752. font-weight:400;
  10753. font-style:normal;
  10754. font-size:14px;
  10755. color:#FFFFFF;
  10756. line-height:30px;
  10757. }
  10758. #u40639 .text {
  10759. position:absolute;
  10760. align-self:center;
  10761. padding:0px 0px 0px 0px;
  10762. box-sizing:border-box;
  10763. width:100%;
  10764. }
  10765. #u40639_text {
  10766. border-width:0px;
  10767. white-space:nowrap;
  10768. text-transform:none;
  10769. }
  10770. #u40640_img {
  10771. border-width:0px;
  10772. position:absolute;
  10773. left:0px;
  10774. top:0px;
  10775. width:28px;
  10776. height:2px;
  10777. }
  10778. #u40640 {
  10779. border-width:0px;
  10780. position:absolute;
  10781. left:728px;
  10782. top:136px;
  10783. width:27px;
  10784. height:1px;
  10785. display:flex;
  10786. color:#FFFFFF;
  10787. }
  10788. #u40640 .text {
  10789. position:absolute;
  10790. align-self:center;
  10791. padding:2px 2px 2px 2px;
  10792. box-sizing:border-box;
  10793. width:100%;
  10794. }
  10795. #u40640_text {
  10796. border-width:0px;
  10797. word-wrap:break-word;
  10798. text-transform:none;
  10799. visibility:hidden;
  10800. }
  10801. #u40641 {
  10802. border-width:0px;
  10803. position:absolute;
  10804. left:0px;
  10805. top:0px;
  10806. width:0px;
  10807. height:0px;
  10808. }
  10809. #u40642_div {
  10810. border-width:0px;
  10811. position:absolute;
  10812. left:0px;
  10813. top:0px;
  10814. width:322px;
  10815. height:40px;
  10816. background:inherit;
  10817. background-color:rgba(255, 255, 255, 1);
  10818. box-sizing:border-box;
  10819. border-width:1px;
  10820. border-style:solid;
  10821. border-color:rgba(215, 215, 215, 1);
  10822. border-left:0px;
  10823. border-top:0px;
  10824. border-right:0px;
  10825. border-radius:0px;
  10826. border-bottom-right-radius:0px;
  10827. border-bottom-left-radius:0px;
  10828. -moz-box-shadow:none;
  10829. -webkit-box-shadow:none;
  10830. box-shadow:none;
  10831. }
  10832. #u40642 {
  10833. border-width:0px;
  10834. position:absolute;
  10835. left:512px;
  10836. top:309px;
  10837. width:322px;
  10838. height:40px;
  10839. display:flex;
  10840. }
  10841. #u40642 .text {
  10842. position:absolute;
  10843. align-self:center;
  10844. padding:2px 2px 2px 2px;
  10845. box-sizing:border-box;
  10846. width:100%;
  10847. }
  10848. #u40642_text {
  10849. border-width:0px;
  10850. word-wrap:break-word;
  10851. text-transform:none;
  10852. visibility:hidden;
  10853. }
  10854. #u40643_div {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:0px;
  10858. top:0px;
  10859. width:36px;
  10860. height:20px;
  10861. background:inherit;
  10862. background-color:rgba(255, 255, 255, 0);
  10863. border:none;
  10864. border-radius:0px;
  10865. -moz-box-shadow:none;
  10866. -webkit-box-shadow:none;
  10867. box-shadow:none;
  10868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10869. font-weight:400;
  10870. font-style:normal;
  10871. }
  10872. #u40643 {
  10873. border-width:0px;
  10874. position:absolute;
  10875. left:512px;
  10876. top:319px;
  10877. width:36px;
  10878. height:20px;
  10879. display:flex;
  10880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10881. font-weight:400;
  10882. font-style:normal;
  10883. }
  10884. #u40643 .text {
  10885. position:absolute;
  10886. align-self:flex-start;
  10887. padding:0px 0px 0px 0px;
  10888. box-sizing:border-box;
  10889. width:100%;
  10890. }
  10891. #u40643_text {
  10892. border-width:0px;
  10893. white-space:nowrap;
  10894. text-transform:none;
  10895. }
  10896. #u40644_div {
  10897. border-width:0px;
  10898. position:absolute;
  10899. left:0px;
  10900. top:0px;
  10901. width:10px;
  10902. height:10px;
  10903. background:inherit;
  10904. background-color:rgba(255, 255, 255, 0);
  10905. box-sizing:border-box;
  10906. border-width:1px;
  10907. border-style:solid;
  10908. border-color:rgba(170, 170, 170, 1);
  10909. border-right:0px;
  10910. border-bottom:0px;
  10911. border-radius:0px;
  10912. border-top-right-radius:0px;
  10913. border-bottom-left-radius:0px;
  10914. -moz-box-shadow:none;
  10915. -webkit-box-shadow:none;
  10916. box-shadow:none;
  10917. }
  10918. #u40644 {
  10919. border-width:0px;
  10920. position:absolute;
  10921. left:818px;
  10922. top:324px;
  10923. width:10px;
  10924. height:10px;
  10925. display:flex;
  10926. -webkit-transform:rotate(135deg);
  10927. -moz-transform:rotate(135deg);
  10928. -ms-transform:rotate(135deg);
  10929. transform:rotate(135deg);
  10930. }
  10931. #u40644 .text {
  10932. position:absolute;
  10933. align-self:center;
  10934. padding:2px 2px 2px 2px;
  10935. box-sizing:border-box;
  10936. width:100%;
  10937. }
  10938. #u40644_text {
  10939. border-width:0px;
  10940. word-wrap:break-word;
  10941. text-transform:none;
  10942. visibility:hidden;
  10943. }
  10944. #u40645_div {
  10945. border-width:0px;
  10946. position:absolute;
  10947. left:0px;
  10948. top:0px;
  10949. width:43px;
  10950. height:20px;
  10951. background:inherit;
  10952. background-color:rgba(255, 255, 255, 0);
  10953. border:none;
  10954. border-radius:0px;
  10955. -moz-box-shadow:none;
  10956. -webkit-box-shadow:none;
  10957. box-shadow:none;
  10958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10959. font-weight:400;
  10960. font-style:normal;
  10961. color:#AAAAAA;
  10962. }
  10963. #u40645 {
  10964. border-width:0px;
  10965. position:absolute;
  10966. left:773px;
  10967. top:319px;
  10968. width:43px;
  10969. height:20px;
  10970. display:flex;
  10971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10972. font-weight:400;
  10973. font-style:normal;
  10974. color:#AAAAAA;
  10975. }
  10976. #u40645 .text {
  10977. position:absolute;
  10978. align-self:flex-start;
  10979. padding:0px 0px 0px 0px;
  10980. box-sizing:border-box;
  10981. width:100%;
  10982. }
  10983. #u40645_text {
  10984. border-width:0px;
  10985. white-space:nowrap;
  10986. text-transform:none;
  10987. }
  10988. #u40646_div {
  10989. border-width:0px;
  10990. position:absolute;
  10991. left:0px;
  10992. top:0px;
  10993. width:375px;
  10994. height:60px;
  10995. background:inherit;
  10996. background-color:rgba(255, 255, 255, 1);
  10997. border:none;
  10998. border-top:0px;
  10999. border-radius:28px;
  11000. border-top-left-radius:0px;
  11001. border-top-right-radius:0px;
  11002. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11003. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11004. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11006. font-weight:400;
  11007. font-style:normal;
  11008. font-size:14px;
  11009. color:#FFFFFF;
  11010. }
  11011. #u40646 {
  11012. border-width:0px;
  11013. position:absolute;
  11014. left:492px;
  11015. top:780px;
  11016. width:375px;
  11017. height:60px;
  11018. display:flex;
  11019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11020. font-weight:400;
  11021. font-style:normal;
  11022. font-size:14px;
  11023. color:#FFFFFF;
  11024. }
  11025. #u40646 .text {
  11026. position:absolute;
  11027. align-self:center;
  11028. padding:2px 2px 2px 2px;
  11029. box-sizing:border-box;
  11030. width:100%;
  11031. }
  11032. #u40646_text {
  11033. border-width:0px;
  11034. word-wrap:break-word;
  11035. text-transform:none;
  11036. visibility:hidden;
  11037. }
  11038. #u40647_div {
  11039. border-width:0px;
  11040. position:absolute;
  11041. left:0px;
  11042. top:0px;
  11043. width:324px;
  11044. height:40px;
  11045. background:inherit;
  11046. background-color:rgba(24, 144, 255, 1);
  11047. border:none;
  11048. border-radius:63px;
  11049. -moz-box-shadow:none;
  11050. -webkit-box-shadow:none;
  11051. box-shadow:none;
  11052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11053. font-weight:400;
  11054. font-style:normal;
  11055. font-size:14px;
  11056. color:#FFFFFF;
  11057. }
  11058. #u40647 {
  11059. border-width:0px;
  11060. position:absolute;
  11061. left:520px;
  11062. top:789px;
  11063. width:324px;
  11064. height:40px;
  11065. display:flex;
  11066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11067. font-weight:400;
  11068. font-style:normal;
  11069. font-size:14px;
  11070. color:#FFFFFF;
  11071. }
  11072. #u40647 .text {
  11073. position:absolute;
  11074. align-self:center;
  11075. padding:2px 2px 2px 2px;
  11076. box-sizing:border-box;
  11077. width:100%;
  11078. }
  11079. #u40647_text {
  11080. border-width:0px;
  11081. word-wrap:break-word;
  11082. text-transform:none;
  11083. }
  11084. #u40648 {
  11085. border-width:0px;
  11086. position:absolute;
  11087. left:0px;
  11088. top:0px;
  11089. width:0px;
  11090. height:0px;
  11091. }
  11092. #u40649 {
  11093. border-width:0px;
  11094. position:absolute;
  11095. left:0px;
  11096. top:0px;
  11097. width:0px;
  11098. height:0px;
  11099. }
  11100. #u40650_img {
  11101. border-width:0px;
  11102. position:absolute;
  11103. left:0px;
  11104. top:0px;
  11105. width:27px;
  11106. height:27px;
  11107. }
  11108. #u40650 {
  11109. border-width:0px;
  11110. position:absolute;
  11111. left:2505px;
  11112. top:122px;
  11113. width:27px;
  11114. height:27px;
  11115. display:flex;
  11116. font-size:12px;
  11117. color:#1890FF;
  11118. }
  11119. #u40650 .text {
  11120. position:absolute;
  11121. align-self:center;
  11122. padding:2px 2px 2px 2px;
  11123. box-sizing:border-box;
  11124. width:100%;
  11125. }
  11126. #u40650_text {
  11127. border-width:0px;
  11128. word-wrap:break-word;
  11129. text-transform:none;
  11130. }
  11131. #u40651_div {
  11132. border-width:0px;
  11133. position:absolute;
  11134. left:0px;
  11135. top:0px;
  11136. width:57px;
  11137. height:30px;
  11138. background:inherit;
  11139. background-color:rgba(255, 255, 255, 0);
  11140. border:none;
  11141. border-left:0px;
  11142. border-top:0px;
  11143. border-right:0px;
  11144. border-radius:0px;
  11145. border-bottom-right-radius:0px;
  11146. border-bottom-left-radius:0px;
  11147. -moz-box-shadow:none;
  11148. -webkit-box-shadow:none;
  11149. box-shadow:none;
  11150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11151. font-weight:400;
  11152. font-style:normal;
  11153. font-size:14px;
  11154. color:#FFFFFF;
  11155. line-height:30px;
  11156. }
  11157. #u40651 {
  11158. border-width:0px;
  11159. position:absolute;
  11160. left:2539px;
  11161. top:121px;
  11162. width:57px;
  11163. height:30px;
  11164. display:flex;
  11165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11166. font-weight:400;
  11167. font-style:normal;
  11168. font-size:14px;
  11169. color:#FFFFFF;
  11170. line-height:30px;
  11171. }
  11172. #u40651 .text {
  11173. position:absolute;
  11174. align-self:center;
  11175. padding:0px 0px 0px 0px;
  11176. box-sizing:border-box;
  11177. width:100%;
  11178. }
  11179. #u40651_text {
  11180. border-width:0px;
  11181. white-space:nowrap;
  11182. text-transform:none;
  11183. }
  11184. #u40652_img {
  11185. border-width:0px;
  11186. position:absolute;
  11187. left:0px;
  11188. top:0px;
  11189. width:27px;
  11190. height:27px;
  11191. }
  11192. #u40652 {
  11193. border-width:0px;
  11194. position:absolute;
  11195. left:2372px;
  11196. top:122px;
  11197. width:27px;
  11198. height:27px;
  11199. display:flex;
  11200. font-size:12px;
  11201. color:#1890FF;
  11202. }
  11203. #u40652 .text {
  11204. position:absolute;
  11205. align-self:center;
  11206. padding:2px 2px 2px 2px;
  11207. box-sizing:border-box;
  11208. width:100%;
  11209. }
  11210. #u40652_text {
  11211. border-width:0px;
  11212. word-wrap:break-word;
  11213. text-transform:none;
  11214. }
  11215. #u40653_div {
  11216. border-width:0px;
  11217. position:absolute;
  11218. left:0px;
  11219. top:0px;
  11220. width:57px;
  11221. height:30px;
  11222. background:inherit;
  11223. background-color:rgba(255, 255, 255, 0);
  11224. border:none;
  11225. border-left:0px;
  11226. border-top:0px;
  11227. border-right:0px;
  11228. border-radius:0px;
  11229. border-bottom-right-radius:0px;
  11230. border-bottom-left-radius:0px;
  11231. -moz-box-shadow:none;
  11232. -webkit-box-shadow:none;
  11233. box-shadow:none;
  11234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11235. font-weight:400;
  11236. font-style:normal;
  11237. font-size:14px;
  11238. color:#FFFFFF;
  11239. line-height:30px;
  11240. }
  11241. #u40653 {
  11242. border-width:0px;
  11243. position:absolute;
  11244. left:2406px;
  11245. top:121px;
  11246. width:57px;
  11247. height:30px;
  11248. display:flex;
  11249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11250. font-weight:400;
  11251. font-style:normal;
  11252. font-size:14px;
  11253. color:#FFFFFF;
  11254. line-height:30px;
  11255. }
  11256. #u40653 .text {
  11257. position:absolute;
  11258. align-self:center;
  11259. padding:0px 0px 0px 0px;
  11260. box-sizing:border-box;
  11261. width:100%;
  11262. }
  11263. #u40653_text {
  11264. border-width:0px;
  11265. white-space:nowrap;
  11266. text-transform:none;
  11267. }
  11268. #u40654_img {
  11269. border-width:0px;
  11270. position:absolute;
  11271. left:0px;
  11272. top:0px;
  11273. width:28px;
  11274. height:2px;
  11275. }
  11276. #u40654 {
  11277. border-width:0px;
  11278. position:absolute;
  11279. left:2468px;
  11280. top:136px;
  11281. width:27px;
  11282. height:1px;
  11283. display:flex;
  11284. color:#FFFFFF;
  11285. }
  11286. #u40654 .text {
  11287. position:absolute;
  11288. align-self:center;
  11289. padding:2px 2px 2px 2px;
  11290. box-sizing:border-box;
  11291. width:100%;
  11292. }
  11293. #u40654_text {
  11294. border-width:0px;
  11295. word-wrap:break-word;
  11296. text-transform:none;
  11297. visibility:hidden;
  11298. }
  11299. #u40655_img {
  11300. border-width:0px;
  11301. position:absolute;
  11302. left:0px;
  11303. top:0px;
  11304. width:27px;
  11305. height:27px;
  11306. }
  11307. #u40655 {
  11308. border-width:0px;
  11309. position:absolute;
  11310. left:2640px;
  11311. top:122px;
  11312. width:27px;
  11313. height:27px;
  11314. display:flex;
  11315. font-size:12px;
  11316. color:#1890FF;
  11317. }
  11318. #u40655 .text {
  11319. position:absolute;
  11320. align-self:center;
  11321. padding:2px 2px 2px 2px;
  11322. box-sizing:border-box;
  11323. width:100%;
  11324. }
  11325. #u40655_text {
  11326. border-width:0px;
  11327. word-wrap:break-word;
  11328. text-transform:none;
  11329. }
  11330. #u40656_div {
  11331. border-width:0px;
  11332. position:absolute;
  11333. left:0px;
  11334. top:0px;
  11335. width:57px;
  11336. height:30px;
  11337. background:inherit;
  11338. background-color:rgba(255, 255, 255, 0);
  11339. border:none;
  11340. border-left:0px;
  11341. border-top:0px;
  11342. border-right:0px;
  11343. border-radius:0px;
  11344. border-bottom-right-radius:0px;
  11345. border-bottom-left-radius:0px;
  11346. -moz-box-shadow:none;
  11347. -webkit-box-shadow:none;
  11348. box-shadow:none;
  11349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11350. font-weight:400;
  11351. font-style:normal;
  11352. font-size:14px;
  11353. color:#FFFFFF;
  11354. line-height:30px;
  11355. }
  11356. #u40656 {
  11357. border-width:0px;
  11358. position:absolute;
  11359. left:2674px;
  11360. top:121px;
  11361. width:57px;
  11362. height:30px;
  11363. display:flex;
  11364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11365. font-weight:400;
  11366. font-style:normal;
  11367. font-size:14px;
  11368. color:#FFFFFF;
  11369. line-height:30px;
  11370. }
  11371. #u40656 .text {
  11372. position:absolute;
  11373. align-self:center;
  11374. padding:0px 0px 0px 0px;
  11375. box-sizing:border-box;
  11376. width:100%;
  11377. }
  11378. #u40656_text {
  11379. border-width:0px;
  11380. white-space:nowrap;
  11381. text-transform:none;
  11382. }
  11383. #u40657_img {
  11384. border-width:0px;
  11385. position:absolute;
  11386. left:0px;
  11387. top:0px;
  11388. width:28px;
  11389. height:2px;
  11390. }
  11391. #u40657 {
  11392. border-width:0px;
  11393. position:absolute;
  11394. left:2602px;
  11395. top:136px;
  11396. width:27px;
  11397. height:1px;
  11398. display:flex;
  11399. color:#FFFFFF;
  11400. }
  11401. #u40657 .text {
  11402. position:absolute;
  11403. align-self:center;
  11404. padding:2px 2px 2px 2px;
  11405. box-sizing:border-box;
  11406. width:100%;
  11407. }
  11408. #u40657_text {
  11409. border-width:0px;
  11410. word-wrap:break-word;
  11411. text-transform:none;
  11412. visibility:hidden;
  11413. }
  11414. #u40658 {
  11415. border-width:0px;
  11416. position:absolute;
  11417. left:0px;
  11418. top:0px;
  11419. width:0px;
  11420. height:0px;
  11421. }
  11422. #u40659_div {
  11423. border-width:0px;
  11424. position:absolute;
  11425. left:0px;
  11426. top:0px;
  11427. width:375px;
  11428. height:60px;
  11429. background:inherit;
  11430. background-color:rgba(255, 255, 255, 1);
  11431. border:none;
  11432. border-top:0px;
  11433. border-radius:28px;
  11434. border-top-left-radius:0px;
  11435. border-top-right-radius:0px;
  11436. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11437. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11438. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  11439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11440. font-weight:400;
  11441. font-style:normal;
  11442. font-size:14px;
  11443. color:#FFFFFF;
  11444. }
  11445. #u40659 {
  11446. border-width:0px;
  11447. position:absolute;
  11448. left:1427px;
  11449. top:780px;
  11450. width:375px;
  11451. height:60px;
  11452. display:flex;
  11453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11454. font-weight:400;
  11455. font-style:normal;
  11456. font-size:14px;
  11457. color:#FFFFFF;
  11458. }
  11459. #u40659 .text {
  11460. position:absolute;
  11461. align-self:center;
  11462. padding:2px 2px 2px 2px;
  11463. box-sizing:border-box;
  11464. width:100%;
  11465. }
  11466. #u40659_text {
  11467. border-width:0px;
  11468. word-wrap:break-word;
  11469. text-transform:none;
  11470. visibility:hidden;
  11471. }
  11472. #u40660_div {
  11473. border-width:0px;
  11474. position:absolute;
  11475. left:0px;
  11476. top:0px;
  11477. width:324px;
  11478. height:40px;
  11479. background:inherit;
  11480. background-color:rgba(215, 215, 215, 1);
  11481. border:none;
  11482. border-radius:63px;
  11483. -moz-box-shadow:none;
  11484. -webkit-box-shadow:none;
  11485. box-shadow:none;
  11486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11487. font-weight:400;
  11488. font-style:normal;
  11489. font-size:14px;
  11490. color:#FFFFFF;
  11491. }
  11492. #u40660 {
  11493. border-width:0px;
  11494. position:absolute;
  11495. left:1455px;
  11496. top:789px;
  11497. width:324px;
  11498. height:40px;
  11499. display:flex;
  11500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11501. font-weight:400;
  11502. font-style:normal;
  11503. font-size:14px;
  11504. color:#FFFFFF;
  11505. }
  11506. #u40660 .text {
  11507. position:absolute;
  11508. align-self:center;
  11509. padding:2px 2px 2px 2px;
  11510. box-sizing:border-box;
  11511. width:100%;
  11512. }
  11513. #u40660_text {
  11514. border-width:0px;
  11515. word-wrap:break-word;
  11516. text-transform:none;
  11517. }
  11518. #u40661 {
  11519. border-width:0px;
  11520. position:absolute;
  11521. left:0px;
  11522. top:0px;
  11523. width:0px;
  11524. height:0px;
  11525. }
  11526. #u40662_div {
  11527. border-width:0px;
  11528. position:absolute;
  11529. left:0px;
  11530. top:0px;
  11531. width:322px;
  11532. height:40px;
  11533. background:inherit;
  11534. background-color:rgba(255, 255, 255, 1);
  11535. border:none;
  11536. border-left:0px;
  11537. border-top:0px;
  11538. border-right:0px;
  11539. border-radius:0px;
  11540. border-bottom-right-radius:0px;
  11541. border-bottom-left-radius:0px;
  11542. -moz-box-shadow:none;
  11543. -webkit-box-shadow:none;
  11544. box-shadow:none;
  11545. }
  11546. #u40662 {
  11547. border-width:0px;
  11548. position:absolute;
  11549. left:1447px;
  11550. top:602px;
  11551. width:322px;
  11552. height:40px;
  11553. display:flex;
  11554. }
  11555. #u40662 .text {
  11556. position:absolute;
  11557. align-self:center;
  11558. padding:2px 2px 2px 2px;
  11559. box-sizing:border-box;
  11560. width:100%;
  11561. }
  11562. #u40662_text {
  11563. border-width:0px;
  11564. word-wrap:break-word;
  11565. text-transform:none;
  11566. visibility:hidden;
  11567. }
  11568. #u40663_div {
  11569. border-width:0px;
  11570. position:absolute;
  11571. left:0px;
  11572. top:0px;
  11573. width:57px;
  11574. height:20px;
  11575. background:inherit;
  11576. background-color:rgba(255, 255, 255, 0);
  11577. border:none;
  11578. border-radius:0px;
  11579. -moz-box-shadow:none;
  11580. -webkit-box-shadow:none;
  11581. box-shadow:none;
  11582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11583. font-weight:400;
  11584. font-style:normal;
  11585. }
  11586. #u40663 {
  11587. border-width:0px;
  11588. position:absolute;
  11589. left:1447px;
  11590. top:612px;
  11591. width:57px;
  11592. height:20px;
  11593. display:flex;
  11594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11595. font-weight:400;
  11596. font-style:normal;
  11597. }
  11598. #u40663 .text {
  11599. position:absolute;
  11600. align-self:flex-start;
  11601. padding:0px 0px 0px 0px;
  11602. box-sizing:border-box;
  11603. width:100%;
  11604. }
  11605. #u40663_text {
  11606. border-width:0px;
  11607. white-space:nowrap;
  11608. text-transform:none;
  11609. }
  11610. #u40664_div {
  11611. border-width:0px;
  11612. position:absolute;
  11613. left:0px;
  11614. top:0px;
  11615. width:121px;
  11616. height:20px;
  11617. background:inherit;
  11618. background-color:rgba(255, 255, 255, 0);
  11619. border:none;
  11620. border-radius:0px;
  11621. -moz-box-shadow:none;
  11622. -webkit-box-shadow:none;
  11623. box-shadow:none;
  11624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11625. font-weight:400;
  11626. font-style:normal;
  11627. color:#AAAAAA;
  11628. text-align:right;
  11629. }
  11630. #u40664 {
  11631. border-width:0px;
  11632. position:absolute;
  11633. left:1644px;
  11634. top:612px;
  11635. width:121px;
  11636. height:20px;
  11637. display:flex;
  11638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11639. font-weight:400;
  11640. font-style:normal;
  11641. color:#AAAAAA;
  11642. text-align:right;
  11643. }
  11644. #u40664 .text {
  11645. position:absolute;
  11646. align-self:flex-start;
  11647. padding:0px 0px 0px 0px;
  11648. box-sizing:border-box;
  11649. width:100%;
  11650. }
  11651. #u40664_text {
  11652. border-width:0px;
  11653. white-space:nowrap;
  11654. text-transform:none;
  11655. }
  11656. #u40665_div {
  11657. border-width:0px;
  11658. position:absolute;
  11659. left:0px;
  11660. top:0px;
  11661. width:183px;
  11662. height:20px;
  11663. background:inherit;
  11664. background-color:rgba(255, 255, 255, 0);
  11665. border:none;
  11666. border-left:0px;
  11667. border-top:0px;
  11668. border-right:0px;
  11669. border-radius:0px;
  11670. border-bottom-right-radius:0px;
  11671. border-bottom-left-radius:0px;
  11672. -moz-box-shadow:none;
  11673. -webkit-box-shadow:none;
  11674. box-shadow:none;
  11675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11676. font-weight:400;
  11677. font-style:normal;
  11678. font-size:14px;
  11679. color:#D9001B;
  11680. }
  11681. #u40665 {
  11682. border-width:0px;
  11683. position:absolute;
  11684. left:1997px;
  11685. top:643px;
  11686. width:183px;
  11687. height:20px;
  11688. display:flex;
  11689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11690. font-weight:400;
  11691. font-style:normal;
  11692. font-size:14px;
  11693. color:#D9001B;
  11694. }
  11695. #u40665 .text {
  11696. position:absolute;
  11697. align-self:flex-start;
  11698. padding:0px 0px 0px 0px;
  11699. box-sizing:border-box;
  11700. width:100%;
  11701. }
  11702. #u40665_text {
  11703. border-width:0px;
  11704. white-space:nowrap;
  11705. text-transform:none;
  11706. }
  11707. #u40666 {
  11708. border-width:0px;
  11709. position:absolute;
  11710. left:0px;
  11711. top:0px;
  11712. width:0px;
  11713. height:0px;
  11714. }
  11715. #u40667_div {
  11716. border-width:0px;
  11717. position:absolute;
  11718. left:0px;
  11719. top:0px;
  11720. width:322px;
  11721. height:163px;
  11722. background:inherit;
  11723. background-color:rgba(255, 255, 255, 1);
  11724. box-sizing:border-box;
  11725. border-width:1px;
  11726. border-style:solid;
  11727. border-color:rgba(215, 215, 215, 1);
  11728. border-left:0px;
  11729. border-top:0px;
  11730. border-right:0px;
  11731. border-radius:0px;
  11732. border-bottom-right-radius:0px;
  11733. border-bottom-left-radius:0px;
  11734. -moz-box-shadow:none;
  11735. -webkit-box-shadow:none;
  11736. box-shadow:none;
  11737. }
  11738. #u40667 {
  11739. border-width:0px;
  11740. position:absolute;
  11741. left:1447px;
  11742. top:429px;
  11743. width:322px;
  11744. height:163px;
  11745. display:flex;
  11746. }
  11747. #u40667 .text {
  11748. position:absolute;
  11749. align-self:center;
  11750. padding:2px 2px 2px 2px;
  11751. box-sizing:border-box;
  11752. width:100%;
  11753. }
  11754. #u40667_text {
  11755. border-width:0px;
  11756. word-wrap:break-word;
  11757. text-transform:none;
  11758. visibility:hidden;
  11759. }
  11760. #u40668_div {
  11761. border-width:0px;
  11762. position:absolute;
  11763. left:0px;
  11764. top:0px;
  11765. width:64px;
  11766. height:20px;
  11767. background:inherit;
  11768. background-color:rgba(255, 255, 255, 0);
  11769. border:none;
  11770. border-radius:0px;
  11771. -moz-box-shadow:none;
  11772. -webkit-box-shadow:none;
  11773. box-shadow:none;
  11774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11775. font-weight:400;
  11776. font-style:normal;
  11777. }
  11778. #u40668 {
  11779. border-width:0px;
  11780. position:absolute;
  11781. left:1447px;
  11782. top:439px;
  11783. width:64px;
  11784. height:20px;
  11785. display:flex;
  11786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11787. font-weight:400;
  11788. font-style:normal;
  11789. }
  11790. #u40668 .text {
  11791. position:absolute;
  11792. align-self:flex-start;
  11793. padding:0px 0px 0px 0px;
  11794. box-sizing:border-box;
  11795. width:100%;
  11796. }
  11797. #u40668_text {
  11798. border-width:0px;
  11799. white-space:nowrap;
  11800. text-transform:none;
  11801. }
  11802. #u40669_img {
  11803. border-width:0px;
  11804. position:absolute;
  11805. left:0px;
  11806. top:0px;
  11807. width:150px;
  11808. height:103px;
  11809. }
  11810. #u40669 {
  11811. border-width:0px;
  11812. position:absolute;
  11813. left:1447px;
  11814. top:470px;
  11815. width:150px;
  11816. height:103px;
  11817. display:flex;
  11818. }
  11819. #u40669 .text {
  11820. position:absolute;
  11821. align-self:center;
  11822. padding:2px 2px 2px 2px;
  11823. box-sizing:border-box;
  11824. width:100%;
  11825. }
  11826. #u40669_text {
  11827. border-width:0px;
  11828. word-wrap:break-word;
  11829. text-transform:none;
  11830. }
  11831. #u40670_img {
  11832. border-width:0px;
  11833. position:absolute;
  11834. left:0px;
  11835. top:0px;
  11836. width:150px;
  11837. height:103px;
  11838. }
  11839. #u40670 {
  11840. border-width:0px;
  11841. position:absolute;
  11842. left:1608px;
  11843. top:470px;
  11844. width:150px;
  11845. height:103px;
  11846. display:flex;
  11847. }
  11848. #u40670 .text {
  11849. position:absolute;
  11850. align-self:center;
  11851. padding:2px 2px 2px 2px;
  11852. box-sizing:border-box;
  11853. width:100%;
  11854. }
  11855. #u40670_text {
  11856. border-width:0px;
  11857. word-wrap:break-word;
  11858. text-transform:none;
  11859. }
  11860. #u40671 {
  11861. border-width:0px;
  11862. position:absolute;
  11863. left:0px;
  11864. top:0px;
  11865. width:0px;
  11866. height:0px;
  11867. }
  11868. #u40672_div {
  11869. border-width:0px;
  11870. position:absolute;
  11871. left:0px;
  11872. top:0px;
  11873. width:375px;
  11874. height:80px;
  11875. background:inherit;
  11876. background-color:rgba(255, 255, 255, 1);
  11877. border:none;
  11878. border-top:0px;
  11879. border-bottom:0px;
  11880. border-radius:0px;
  11881. border-top-left-radius:0px;
  11882. border-top-right-radius:0px;
  11883. border-bottom-right-radius:0px;
  11884. border-bottom-left-radius:0px;
  11885. -moz-box-shadow:none;
  11886. -webkit-box-shadow:none;
  11887. box-shadow:none;
  11888. }
  11889. #u40672 {
  11890. border-width:0px;
  11891. position:absolute;
  11892. left:492px;
  11893. top:165px;
  11894. width:375px;
  11895. height:80px;
  11896. display:flex;
  11897. }
  11898. #u40672 .text {
  11899. position:absolute;
  11900. align-self:center;
  11901. padding:2px 2px 2px 2px;
  11902. box-sizing:border-box;
  11903. width:100%;
  11904. }
  11905. #u40672_text {
  11906. border-width:0px;
  11907. word-wrap:break-word;
  11908. text-transform:none;
  11909. visibility:hidden;
  11910. }
  11911. #u40673_div {
  11912. border-width:0px;
  11913. position:absolute;
  11914. left:0px;
  11915. top:0px;
  11916. width:73px;
  11917. height:30px;
  11918. background:inherit;
  11919. background-color:rgba(255, 255, 255, 0);
  11920. border:none;
  11921. border-left:0px;
  11922. border-top:0px;
  11923. border-right:0px;
  11924. border-radius:0px;
  11925. border-bottom-right-radius:0px;
  11926. border-bottom-left-radius:0px;
  11927. -moz-box-shadow:none;
  11928. -webkit-box-shadow:none;
  11929. box-shadow:none;
  11930. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11931. font-weight:500;
  11932. font-style:normal;
  11933. font-size:18px;
  11934. line-height:30px;
  11935. }
  11936. #u40673 {
  11937. border-width:0px;
  11938. position:absolute;
  11939. left:511px;
  11940. top:175px;
  11941. width:73px;
  11942. height:30px;
  11943. display:flex;
  11944. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11945. font-weight:500;
  11946. font-style:normal;
  11947. font-size:18px;
  11948. line-height:30px;
  11949. }
  11950. #u40673 .text {
  11951. position:absolute;
  11952. align-self:flex-start;
  11953. padding:0px 0px 0px 0px;
  11954. box-sizing:border-box;
  11955. width:100%;
  11956. }
  11957. #u40673_text {
  11958. border-width:0px;
  11959. white-space:nowrap;
  11960. text-transform:none;
  11961. }
  11962. #u40674_input {
  11963. position:absolute;
  11964. left:0px;
  11965. top:0px;
  11966. width:346px;
  11967. height:27px;
  11968. padding:2px 2px 2px 2px;
  11969. font-family:'ArialMT', 'Arial', sans-serif;
  11970. font-weight:400;
  11971. font-style:normal;
  11972. font-size:14px;
  11973. letter-spacing:normal;
  11974. color:#1890FF;
  11975. vertical-align:none;
  11976. text-align:left;
  11977. text-transform:none;
  11978. background-color:transparent;
  11979. border-color:transparent;
  11980. }
  11981. #u40674_input.disabled {
  11982. position:absolute;
  11983. left:0px;
  11984. top:0px;
  11985. width:346px;
  11986. height:27px;
  11987. padding:2px 2px 2px 2px;
  11988. font-family:'ArialMT', 'Arial', sans-serif;
  11989. font-weight:400;
  11990. font-style:normal;
  11991. font-size:14px;
  11992. letter-spacing:normal;
  11993. color:#1890FF;
  11994. vertical-align:none;
  11995. text-align:left;
  11996. text-transform:none;
  11997. background-color:transparent;
  11998. border-color:transparent;
  11999. }
  12000. #u40674_div {
  12001. border-width:0px;
  12002. position:absolute;
  12003. left:0px;
  12004. top:0px;
  12005. width:346px;
  12006. height:27px;
  12007. background:inherit;
  12008. background-color:rgba(255, 255, 255, 1);
  12009. border:none;
  12010. border-radius:0px;
  12011. -moz-box-shadow:none;
  12012. -webkit-box-shadow:none;
  12013. box-shadow:none;
  12014. font-size:14px;
  12015. color:#1890FF;
  12016. }
  12017. #u40674 {
  12018. border-width:0px;
  12019. position:absolute;
  12020. left:511px;
  12021. top:208px;
  12022. width:346px;
  12023. height:27px;
  12024. display:flex;
  12025. font-size:14px;
  12026. color:#1890FF;
  12027. }
  12028. #u40674 .text {
  12029. position:absolute;
  12030. align-self:flex-start;
  12031. padding:2px 2px 2px 2px;
  12032. box-sizing:border-box;
  12033. width:100%;
  12034. }
  12035. #u40674_div.disabled {
  12036. border-width:0px;
  12037. position:absolute;
  12038. left:0px;
  12039. top:0px;
  12040. width:346px;
  12041. height:27px;
  12042. background:inherit;
  12043. background-color:rgba(240, 240, 240, 1);
  12044. border:none;
  12045. border-radius:0px;
  12046. -moz-box-shadow:none;
  12047. -webkit-box-shadow:none;
  12048. box-shadow:none;
  12049. font-size:14px;
  12050. color:#1890FF;
  12051. }
  12052. #u40674.disabled {
  12053. }
  12054. .u40674_input_option {
  12055. font-size:14px;
  12056. }
  12057. #u40675 {
  12058. border-width:0px;
  12059. position:absolute;
  12060. left:0px;
  12061. top:0px;
  12062. width:0px;
  12063. height:0px;
  12064. }
  12065. #u40676_div {
  12066. border-width:0px;
  12067. position:absolute;
  12068. left:0px;
  12069. top:0px;
  12070. width:375px;
  12071. height:80px;
  12072. background:inherit;
  12073. background-color:rgba(255, 255, 255, 1);
  12074. border:none;
  12075. border-top:0px;
  12076. border-bottom:0px;
  12077. border-radius:0px;
  12078. border-top-left-radius:0px;
  12079. border-top-right-radius:0px;
  12080. border-bottom-right-radius:0px;
  12081. border-bottom-left-radius:0px;
  12082. -moz-box-shadow:none;
  12083. -webkit-box-shadow:none;
  12084. box-shadow:none;
  12085. }
  12086. #u40676 {
  12087. border-width:0px;
  12088. position:absolute;
  12089. left:954px;
  12090. top:165px;
  12091. width:375px;
  12092. height:80px;
  12093. display:flex;
  12094. }
  12095. #u40676 .text {
  12096. position:absolute;
  12097. align-self:center;
  12098. padding:2px 2px 2px 2px;
  12099. box-sizing:border-box;
  12100. width:100%;
  12101. }
  12102. #u40676_text {
  12103. border-width:0px;
  12104. word-wrap:break-word;
  12105. text-transform:none;
  12106. visibility:hidden;
  12107. }
  12108. #u40677_div {
  12109. border-width:0px;
  12110. position:absolute;
  12111. left:0px;
  12112. top:0px;
  12113. width:73px;
  12114. height:30px;
  12115. background:inherit;
  12116. background-color:rgba(255, 255, 255, 0);
  12117. border:none;
  12118. border-left:0px;
  12119. border-top:0px;
  12120. border-right:0px;
  12121. border-radius:0px;
  12122. border-bottom-right-radius:0px;
  12123. border-bottom-left-radius:0px;
  12124. -moz-box-shadow:none;
  12125. -webkit-box-shadow:none;
  12126. box-shadow:none;
  12127. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12128. font-weight:500;
  12129. font-style:normal;
  12130. font-size:18px;
  12131. line-height:30px;
  12132. }
  12133. #u40677 {
  12134. border-width:0px;
  12135. position:absolute;
  12136. left:973px;
  12137. top:175px;
  12138. width:73px;
  12139. height:30px;
  12140. display:flex;
  12141. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12142. font-weight:500;
  12143. font-style:normal;
  12144. font-size:18px;
  12145. line-height:30px;
  12146. }
  12147. #u40677 .text {
  12148. position:absolute;
  12149. align-self:flex-start;
  12150. padding:0px 0px 0px 0px;
  12151. box-sizing:border-box;
  12152. width:100%;
  12153. }
  12154. #u40677_text {
  12155. border-width:0px;
  12156. white-space:nowrap;
  12157. text-transform:none;
  12158. }
  12159. #u40678_input {
  12160. position:absolute;
  12161. left:0px;
  12162. top:0px;
  12163. width:346px;
  12164. height:27px;
  12165. padding:2px 2px 2px 2px;
  12166. font-family:'ArialMT', 'Arial', sans-serif;
  12167. font-weight:400;
  12168. font-style:normal;
  12169. font-size:14px;
  12170. letter-spacing:normal;
  12171. color:#1890FF;
  12172. vertical-align:none;
  12173. text-align:left;
  12174. text-transform:none;
  12175. background-color:transparent;
  12176. border-color:transparent;
  12177. }
  12178. #u40678_input.disabled {
  12179. position:absolute;
  12180. left:0px;
  12181. top:0px;
  12182. width:346px;
  12183. height:27px;
  12184. padding:2px 2px 2px 2px;
  12185. font-family:'ArialMT', 'Arial', sans-serif;
  12186. font-weight:400;
  12187. font-style:normal;
  12188. font-size:14px;
  12189. letter-spacing:normal;
  12190. color:#1890FF;
  12191. vertical-align:none;
  12192. text-align:left;
  12193. text-transform:none;
  12194. background-color:transparent;
  12195. border-color:transparent;
  12196. }
  12197. #u40678_div {
  12198. border-width:0px;
  12199. position:absolute;
  12200. left:0px;
  12201. top:0px;
  12202. width:346px;
  12203. height:27px;
  12204. background:inherit;
  12205. background-color:rgba(255, 255, 255, 1);
  12206. border:none;
  12207. border-radius:0px;
  12208. -moz-box-shadow:none;
  12209. -webkit-box-shadow:none;
  12210. box-shadow:none;
  12211. font-size:14px;
  12212. color:#1890FF;
  12213. }
  12214. #u40678 {
  12215. border-width:0px;
  12216. position:absolute;
  12217. left:973px;
  12218. top:208px;
  12219. width:346px;
  12220. height:27px;
  12221. display:flex;
  12222. font-size:14px;
  12223. color:#1890FF;
  12224. }
  12225. #u40678 .text {
  12226. position:absolute;
  12227. align-self:flex-start;
  12228. padding:2px 2px 2px 2px;
  12229. box-sizing:border-box;
  12230. width:100%;
  12231. }
  12232. #u40678_div.disabled {
  12233. border-width:0px;
  12234. position:absolute;
  12235. left:0px;
  12236. top:0px;
  12237. width:346px;
  12238. height:27px;
  12239. background:inherit;
  12240. background-color:rgba(240, 240, 240, 1);
  12241. border:none;
  12242. border-radius:0px;
  12243. -moz-box-shadow:none;
  12244. -webkit-box-shadow:none;
  12245. box-shadow:none;
  12246. font-size:14px;
  12247. color:#1890FF;
  12248. }
  12249. #u40678.disabled {
  12250. }
  12251. .u40678_input_option {
  12252. font-size:14px;
  12253. }
  12254. #u40679 {
  12255. border-width:0px;
  12256. position:absolute;
  12257. left:0px;
  12258. top:0px;
  12259. width:0px;
  12260. height:0px;
  12261. }
  12262. #u40680_div {
  12263. border-width:0px;
  12264. position:absolute;
  12265. left:0px;
  12266. top:0px;
  12267. width:375px;
  12268. height:80px;
  12269. background:inherit;
  12270. background-color:rgba(255, 255, 255, 1);
  12271. border:none;
  12272. border-top:0px;
  12273. border-bottom:0px;
  12274. border-radius:0px;
  12275. border-top-left-radius:0px;
  12276. border-top-right-radius:0px;
  12277. border-bottom-right-radius:0px;
  12278. border-bottom-left-radius:0px;
  12279. -moz-box-shadow:none;
  12280. -webkit-box-shadow:none;
  12281. box-shadow:none;
  12282. }
  12283. #u40680 {
  12284. border-width:0px;
  12285. position:absolute;
  12286. left:1427px;
  12287. top:165px;
  12288. width:375px;
  12289. height:80px;
  12290. display:flex;
  12291. }
  12292. #u40680 .text {
  12293. position:absolute;
  12294. align-self:center;
  12295. padding:2px 2px 2px 2px;
  12296. box-sizing:border-box;
  12297. width:100%;
  12298. }
  12299. #u40680_text {
  12300. border-width:0px;
  12301. word-wrap:break-word;
  12302. text-transform:none;
  12303. visibility:hidden;
  12304. }
  12305. #u40681_div {
  12306. border-width:0px;
  12307. position:absolute;
  12308. left:0px;
  12309. top:0px;
  12310. width:73px;
  12311. height:30px;
  12312. background:inherit;
  12313. background-color:rgba(255, 255, 255, 0);
  12314. border:none;
  12315. border-left:0px;
  12316. border-top:0px;
  12317. border-right:0px;
  12318. border-radius:0px;
  12319. border-bottom-right-radius:0px;
  12320. border-bottom-left-radius:0px;
  12321. -moz-box-shadow:none;
  12322. -webkit-box-shadow:none;
  12323. box-shadow:none;
  12324. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12325. font-weight:500;
  12326. font-style:normal;
  12327. font-size:18px;
  12328. line-height:30px;
  12329. }
  12330. #u40681 {
  12331. border-width:0px;
  12332. position:absolute;
  12333. left:1446px;
  12334. top:175px;
  12335. width:73px;
  12336. height:30px;
  12337. display:flex;
  12338. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12339. font-weight:500;
  12340. font-style:normal;
  12341. font-size:18px;
  12342. line-height:30px;
  12343. }
  12344. #u40681 .text {
  12345. position:absolute;
  12346. align-self:flex-start;
  12347. padding:0px 0px 0px 0px;
  12348. box-sizing:border-box;
  12349. width:100%;
  12350. }
  12351. #u40681_text {
  12352. border-width:0px;
  12353. white-space:nowrap;
  12354. text-transform:none;
  12355. }
  12356. #u40682_input {
  12357. position:absolute;
  12358. left:0px;
  12359. top:0px;
  12360. width:346px;
  12361. height:27px;
  12362. padding:2px 2px 2px 2px;
  12363. font-family:'ArialMT', 'Arial', sans-serif;
  12364. font-weight:400;
  12365. font-style:normal;
  12366. font-size:14px;
  12367. letter-spacing:normal;
  12368. color:#1890FF;
  12369. vertical-align:none;
  12370. text-align:left;
  12371. text-transform:none;
  12372. background-color:transparent;
  12373. border-color:transparent;
  12374. }
  12375. #u40682_input.disabled {
  12376. position:absolute;
  12377. left:0px;
  12378. top:0px;
  12379. width:346px;
  12380. height:27px;
  12381. padding:2px 2px 2px 2px;
  12382. font-family:'ArialMT', 'Arial', sans-serif;
  12383. font-weight:400;
  12384. font-style:normal;
  12385. font-size:14px;
  12386. letter-spacing:normal;
  12387. color:#1890FF;
  12388. vertical-align:none;
  12389. text-align:left;
  12390. text-transform:none;
  12391. background-color:transparent;
  12392. border-color:transparent;
  12393. }
  12394. #u40682_div {
  12395. border-width:0px;
  12396. position:absolute;
  12397. left:0px;
  12398. top:0px;
  12399. width:346px;
  12400. height:27px;
  12401. background:inherit;
  12402. background-color:rgba(255, 255, 255, 1);
  12403. border:none;
  12404. border-radius:0px;
  12405. -moz-box-shadow:none;
  12406. -webkit-box-shadow:none;
  12407. box-shadow:none;
  12408. font-size:14px;
  12409. color:#1890FF;
  12410. }
  12411. #u40682 {
  12412. border-width:0px;
  12413. position:absolute;
  12414. left:1446px;
  12415. top:208px;
  12416. width:346px;
  12417. height:27px;
  12418. display:flex;
  12419. font-size:14px;
  12420. color:#1890FF;
  12421. }
  12422. #u40682 .text {
  12423. position:absolute;
  12424. align-self:flex-start;
  12425. padding:2px 2px 2px 2px;
  12426. box-sizing:border-box;
  12427. width:100%;
  12428. }
  12429. #u40682_div.disabled {
  12430. border-width:0px;
  12431. position:absolute;
  12432. left:0px;
  12433. top:0px;
  12434. width:346px;
  12435. height:27px;
  12436. background:inherit;
  12437. background-color:rgba(240, 240, 240, 1);
  12438. border:none;
  12439. border-radius:0px;
  12440. -moz-box-shadow:none;
  12441. -webkit-box-shadow:none;
  12442. box-shadow:none;
  12443. font-size:14px;
  12444. color:#1890FF;
  12445. }
  12446. #u40682.disabled {
  12447. }
  12448. .u40682_input_option {
  12449. font-size:14px;
  12450. }
  12451. #u40683_div {
  12452. border-width:0px;
  12453. position:absolute;
  12454. left:0px;
  12455. top:0px;
  12456. width:308px;
  12457. height:34px;
  12458. background:inherit;
  12459. background-color:rgba(255, 255, 255, 0);
  12460. border:none;
  12461. border-left:0px;
  12462. border-top:0px;
  12463. border-right:0px;
  12464. border-radius:0px;
  12465. border-bottom-right-radius:0px;
  12466. border-bottom-left-radius:0px;
  12467. -moz-box-shadow:none;
  12468. -webkit-box-shadow:none;
  12469. box-shadow:none;
  12470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12471. font-weight:400;
  12472. font-style:normal;
  12473. font-size:12px;
  12474. color:#D9001B;
  12475. }
  12476. #u40683 {
  12477. border-width:0px;
  12478. position:absolute;
  12479. left:518px;
  12480. top:235px;
  12481. width:308px;
  12482. height:34px;
  12483. display:flex;
  12484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12485. font-weight:400;
  12486. font-style:normal;
  12487. font-size:12px;
  12488. color:#D9001B;
  12489. }
  12490. #u40683 .text {
  12491. position:absolute;
  12492. align-self:center;
  12493. padding:0px 0px 0px 0px;
  12494. box-sizing:border-box;
  12495. width:100%;
  12496. }
  12497. #u40683_text {
  12498. border-width:0px;
  12499. white-space:nowrap;
  12500. text-transform:none;
  12501. }
  12502. #u40684 {
  12503. border-width:0px;
  12504. position:absolute;
  12505. left:0px;
  12506. top:0px;
  12507. width:0px;
  12508. height:0px;
  12509. }
  12510. #u40685_div {
  12511. border-width:0px;
  12512. position:absolute;
  12513. left:0px;
  12514. top:0px;
  12515. width:375px;
  12516. height:40px;
  12517. background:inherit;
  12518. background-color:rgba(255, 255, 255, 1);
  12519. border:none;
  12520. border-left:0px;
  12521. border-top:0px;
  12522. border-right:0px;
  12523. border-radius:0px;
  12524. border-bottom-right-radius:0px;
  12525. border-bottom-left-radius:0px;
  12526. -moz-box-shadow:none;
  12527. -webkit-box-shadow:none;
  12528. box-shadow:none;
  12529. }
  12530. #u40685 {
  12531. border-width:0px;
  12532. position:absolute;
  12533. left:2364px;
  12534. top:67px;
  12535. width:375px;
  12536. height:40px;
  12537. display:flex;
  12538. }
  12539. #u40685 .text {
  12540. position:absolute;
  12541. align-self:center;
  12542. padding:2px 2px 2px 2px;
  12543. box-sizing:border-box;
  12544. width:100%;
  12545. }
  12546. #u40685_text {
  12547. border-width:0px;
  12548. word-wrap:break-word;
  12549. text-transform:none;
  12550. visibility:hidden;
  12551. }
  12552. #u40686 {
  12553. border-width:0px;
  12554. position:absolute;
  12555. left:0px;
  12556. top:0px;
  12557. width:0px;
  12558. height:0px;
  12559. }
  12560. #u40687_div {
  12561. border-width:0px;
  12562. position:absolute;
  12563. left:0px;
  12564. top:0px;
  12565. width:88px;
  12566. height:32px;
  12567. background:inherit;
  12568. background-color:rgba(255, 255, 255, 1);
  12569. box-sizing:border-box;
  12570. border-width:1px;
  12571. border-style:solid;
  12572. border-color:rgba(242, 242, 242, 1);
  12573. border-radius:33px;
  12574. -moz-box-shadow:none;
  12575. -webkit-box-shadow:none;
  12576. box-shadow:none;
  12577. }
  12578. #u40687 {
  12579. border-width:0px;
  12580. position:absolute;
  12581. left:2641px;
  12582. top:69px;
  12583. width:88px;
  12584. height:32px;
  12585. display:flex;
  12586. }
  12587. #u40687 .text {
  12588. position:absolute;
  12589. align-self:center;
  12590. padding:2px 2px 2px 2px;
  12591. box-sizing:border-box;
  12592. width:100%;
  12593. }
  12594. #u40687_text {
  12595. border-width:0px;
  12596. word-wrap:break-word;
  12597. text-transform:none;
  12598. visibility:hidden;
  12599. }
  12600. #u40688 {
  12601. border-width:0px;
  12602. position:absolute;
  12603. left:0px;
  12604. top:0px;
  12605. width:0px;
  12606. height:0px;
  12607. }
  12608. #u40689_img {
  12609. border-width:0px;
  12610. position:absolute;
  12611. left:0px;
  12612. top:0px;
  12613. width:18px;
  12614. height:18px;
  12615. }
  12616. #u40689 {
  12617. border-width:0px;
  12618. position:absolute;
  12619. left:2704px;
  12620. top:76px;
  12621. width:18px;
  12622. height:18px;
  12623. display:flex;
  12624. }
  12625. #u40689 .text {
  12626. position:absolute;
  12627. align-self:center;
  12628. padding:2px 2px 2px 2px;
  12629. box-sizing:border-box;
  12630. width:100%;
  12631. }
  12632. #u40689_text {
  12633. border-width:0px;
  12634. word-wrap:break-word;
  12635. text-transform:none;
  12636. visibility:hidden;
  12637. }
  12638. #u40690_img {
  12639. border-width:0px;
  12640. position:absolute;
  12641. left:0px;
  12642. top:0px;
  12643. width:6px;
  12644. height:6px;
  12645. }
  12646. #u40690 {
  12647. border-width:0px;
  12648. position:absolute;
  12649. left:2710px;
  12650. top:82px;
  12651. width:6px;
  12652. height:6px;
  12653. display:flex;
  12654. }
  12655. #u40690 .text {
  12656. position:absolute;
  12657. align-self:center;
  12658. padding:2px 2px 2px 2px;
  12659. box-sizing:border-box;
  12660. width:100%;
  12661. }
  12662. #u40690_text {
  12663. border-width:0px;
  12664. word-wrap:break-word;
  12665. text-transform:none;
  12666. visibility:hidden;
  12667. }
  12668. #u40691 {
  12669. border-width:0px;
  12670. position:absolute;
  12671. left:0px;
  12672. top:0px;
  12673. width:0px;
  12674. height:0px;
  12675. }
  12676. #u40692_img {
  12677. border-width:0px;
  12678. position:absolute;
  12679. left:0px;
  12680. top:0px;
  12681. width:5px;
  12682. height:5px;
  12683. }
  12684. #u40692 {
  12685. border-width:0px;
  12686. position:absolute;
  12687. left:2655px;
  12688. top:83px;
  12689. width:5px;
  12690. height:5px;
  12691. display:flex;
  12692. }
  12693. #u40692 .text {
  12694. position:absolute;
  12695. align-self:center;
  12696. padding:2px 2px 2px 2px;
  12697. box-sizing:border-box;
  12698. width:100%;
  12699. }
  12700. #u40692_text {
  12701. border-width:0px;
  12702. word-wrap:break-word;
  12703. text-transform:none;
  12704. visibility:hidden;
  12705. }
  12706. #u40693_img {
  12707. border-width:0px;
  12708. position:absolute;
  12709. left:0px;
  12710. top:0px;
  12711. width:5px;
  12712. height:5px;
  12713. }
  12714. #u40693 {
  12715. border-width:0px;
  12716. position:absolute;
  12717. left:2671px;
  12718. top:83px;
  12719. width:5px;
  12720. height:5px;
  12721. display:flex;
  12722. }
  12723. #u40693 .text {
  12724. position:absolute;
  12725. align-self:center;
  12726. padding:2px 2px 2px 2px;
  12727. box-sizing:border-box;
  12728. width:100%;
  12729. }
  12730. #u40693_text {
  12731. border-width:0px;
  12732. word-wrap:break-word;
  12733. text-transform:none;
  12734. visibility:hidden;
  12735. }
  12736. #u40694_img {
  12737. border-width:0px;
  12738. position:absolute;
  12739. left:0px;
  12740. top:0px;
  12741. width:7px;
  12742. height:7px;
  12743. }
  12744. #u40694 {
  12745. border-width:0px;
  12746. position:absolute;
  12747. left:2662px;
  12748. top:82px;
  12749. width:7px;
  12750. height:7px;
  12751. display:flex;
  12752. }
  12753. #u40694 .text {
  12754. position:absolute;
  12755. align-self:center;
  12756. padding:2px 2px 2px 2px;
  12757. box-sizing:border-box;
  12758. width:100%;
  12759. }
  12760. #u40694_text {
  12761. border-width:0px;
  12762. word-wrap:break-word;
  12763. text-transform:none;
  12764. visibility:hidden;
  12765. }
  12766. #u40695_img {
  12767. border-width:0px;
  12768. position:absolute;
  12769. left:0px;
  12770. top:0px;
  12771. width:19px;
  12772. height:2px;
  12773. }
  12774. #u40695 {
  12775. border-width:0px;
  12776. position:absolute;
  12777. left:2679px;
  12778. top:85px;
  12779. width:18px;
  12780. height:1px;
  12781. display:flex;
  12782. -webkit-transform:rotate(90deg);
  12783. -moz-transform:rotate(90deg);
  12784. -ms-transform:rotate(90deg);
  12785. transform:rotate(90deg);
  12786. }
  12787. #u40695 .text {
  12788. position:absolute;
  12789. align-self:center;
  12790. padding:2px 2px 2px 2px;
  12791. box-sizing:border-box;
  12792. width:100%;
  12793. }
  12794. #u40695_text {
  12795. border-width:0px;
  12796. word-wrap:break-word;
  12797. text-transform:none;
  12798. visibility:hidden;
  12799. }
  12800. #u40696_div {
  12801. border-width:0px;
  12802. position:absolute;
  12803. left:0px;
  12804. top:0px;
  12805. width:12px;
  12806. height:12px;
  12807. background:inherit;
  12808. background-color:rgba(255, 255, 255, 0);
  12809. box-sizing:border-box;
  12810. border-width:2px;
  12811. border-style:solid;
  12812. border-color:rgba(51, 51, 51, 1);
  12813. border-right:0px;
  12814. border-bottom:0px;
  12815. border-radius:0px;
  12816. border-top-right-radius:0px;
  12817. border-bottom-left-radius:0px;
  12818. -moz-box-shadow:none;
  12819. -webkit-box-shadow:none;
  12820. box-shadow:none;
  12821. }
  12822. #u40696 {
  12823. border-width:0px;
  12824. position:absolute;
  12825. left:2380px;
  12826. top:79px;
  12827. width:12px;
  12828. height:12px;
  12829. display:flex;
  12830. -webkit-transform:rotate(315deg);
  12831. -moz-transform:rotate(315deg);
  12832. -ms-transform:rotate(315deg);
  12833. transform:rotate(315deg);
  12834. }
  12835. #u40696 .text {
  12836. position:absolute;
  12837. align-self:center;
  12838. padding:2px 2px 2px 2px;
  12839. box-sizing:border-box;
  12840. width:100%;
  12841. }
  12842. #u40696_text {
  12843. border-width:0px;
  12844. word-wrap:break-word;
  12845. text-transform:none;
  12846. visibility:hidden;
  12847. }
  12848. #u40697_div {
  12849. border-width:0px;
  12850. position:absolute;
  12851. left:0px;
  12852. top:0px;
  12853. width:109px;
  12854. height:25px;
  12855. background:inherit;
  12856. background-color:rgba(255, 255, 255, 0);
  12857. border:none;
  12858. border-radius:0px;
  12859. -moz-box-shadow:none;
  12860. -webkit-box-shadow:none;
  12861. box-shadow:none;
  12862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12863. font-weight:400;
  12864. font-style:normal;
  12865. font-size:18px;
  12866. }
  12867. #u40697 {
  12868. border-width:0px;
  12869. position:absolute;
  12870. left:2394px;
  12871. top:72px;
  12872. width:109px;
  12873. height:25px;
  12874. display:flex;
  12875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12876. font-weight:400;
  12877. font-style:normal;
  12878. font-size:18px;
  12879. }
  12880. #u40697 .text {
  12881. position:absolute;
  12882. align-self:flex-start;
  12883. padding:0px 0px 0px 0px;
  12884. box-sizing:border-box;
  12885. width:100%;
  12886. }
  12887. #u40697_text {
  12888. border-width:0px;
  12889. white-space:nowrap;
  12890. text-transform:none;
  12891. }
  12892. #u40698 {
  12893. border-width:0px;
  12894. position:absolute;
  12895. left:0px;
  12896. top:0px;
  12897. width:0px;
  12898. height:0px;
  12899. }
  12900. #u40700_img {
  12901. border-width:0px;
  12902. position:absolute;
  12903. left:0px;
  12904. top:0px;
  12905. width:433px;
  12906. height:865px;
  12907. }
  12908. #u40700 {
  12909. border-width:0px;
  12910. position:absolute;
  12911. left:2799px;
  12912. top:2px;
  12913. width:433px;
  12914. height:865px;
  12915. display:flex;
  12916. }
  12917. #u40700 .text {
  12918. position:absolute;
  12919. align-self:center;
  12920. padding:2px 2px 2px 2px;
  12921. box-sizing:border-box;
  12922. width:100%;
  12923. }
  12924. #u40700_text {
  12925. border-width:0px;
  12926. word-wrap:break-word;
  12927. text-transform:none;
  12928. visibility:hidden;
  12929. }
  12930. #u40701_div {
  12931. border-width:0px;
  12932. position:absolute;
  12933. left:0px;
  12934. top:0px;
  12935. width:375px;
  12936. height:40px;
  12937. background:inherit;
  12938. background-color:rgba(255, 255, 255, 1);
  12939. box-sizing:border-box;
  12940. border-width:1px;
  12941. border-style:solid;
  12942. border-color:rgba(215, 215, 215, 1);
  12943. border-left:0px;
  12944. border-top:0px;
  12945. border-right:0px;
  12946. border-radius:0px;
  12947. border-bottom-right-radius:0px;
  12948. border-bottom-left-radius:0px;
  12949. -moz-box-shadow:none;
  12950. -webkit-box-shadow:none;
  12951. box-shadow:none;
  12952. }
  12953. #u40701 {
  12954. border-width:0px;
  12955. position:absolute;
  12956. left:2828px;
  12957. top:69px;
  12958. width:375px;
  12959. height:40px;
  12960. display:flex;
  12961. }
  12962. #u40701 .text {
  12963. position:absolute;
  12964. align-self:center;
  12965. padding:2px 2px 2px 2px;
  12966. box-sizing:border-box;
  12967. width:100%;
  12968. }
  12969. #u40701_text {
  12970. border-width:0px;
  12971. word-wrap:break-word;
  12972. text-transform:none;
  12973. visibility:hidden;
  12974. }
  12975. #u40702 {
  12976. border-width:0px;
  12977. position:absolute;
  12978. left:0px;
  12979. top:0px;
  12980. width:0px;
  12981. height:0px;
  12982. }
  12983. #u40703_div {
  12984. border-width:0px;
  12985. position:absolute;
  12986. left:0px;
  12987. top:0px;
  12988. width:88px;
  12989. height:32px;
  12990. background:inherit;
  12991. background-color:rgba(255, 255, 255, 1);
  12992. box-sizing:border-box;
  12993. border-width:1px;
  12994. border-style:solid;
  12995. border-color:rgba(242, 242, 242, 1);
  12996. border-radius:33px;
  12997. -moz-box-shadow:none;
  12998. -webkit-box-shadow:none;
  12999. box-shadow:none;
  13000. }
  13001. #u40703 {
  13002. border-width:0px;
  13003. position:absolute;
  13004. left:3108px;
  13005. top:73px;
  13006. width:88px;
  13007. height:32px;
  13008. display:flex;
  13009. }
  13010. #u40703 .text {
  13011. position:absolute;
  13012. align-self:center;
  13013. padding:2px 2px 2px 2px;
  13014. box-sizing:border-box;
  13015. width:100%;
  13016. }
  13017. #u40703_text {
  13018. border-width:0px;
  13019. word-wrap:break-word;
  13020. text-transform:none;
  13021. visibility:hidden;
  13022. }
  13023. #u40704 {
  13024. border-width:0px;
  13025. position:absolute;
  13026. left:0px;
  13027. top:0px;
  13028. width:0px;
  13029. height:0px;
  13030. }
  13031. #u40705_img {
  13032. border-width:0px;
  13033. position:absolute;
  13034. left:0px;
  13035. top:0px;
  13036. width:18px;
  13037. height:18px;
  13038. }
  13039. #u40705 {
  13040. border-width:0px;
  13041. position:absolute;
  13042. left:3171px;
  13043. top:80px;
  13044. width:18px;
  13045. height:18px;
  13046. display:flex;
  13047. }
  13048. #u40705 .text {
  13049. position:absolute;
  13050. align-self:center;
  13051. padding:2px 2px 2px 2px;
  13052. box-sizing:border-box;
  13053. width:100%;
  13054. }
  13055. #u40705_text {
  13056. border-width:0px;
  13057. word-wrap:break-word;
  13058. text-transform:none;
  13059. visibility:hidden;
  13060. }
  13061. #u40706_img {
  13062. border-width:0px;
  13063. position:absolute;
  13064. left:0px;
  13065. top:0px;
  13066. width:6px;
  13067. height:6px;
  13068. }
  13069. #u40706 {
  13070. border-width:0px;
  13071. position:absolute;
  13072. left:3177px;
  13073. top:86px;
  13074. width:6px;
  13075. height:6px;
  13076. display:flex;
  13077. }
  13078. #u40706 .text {
  13079. position:absolute;
  13080. align-self:center;
  13081. padding:2px 2px 2px 2px;
  13082. box-sizing:border-box;
  13083. width:100%;
  13084. }
  13085. #u40706_text {
  13086. border-width:0px;
  13087. word-wrap:break-word;
  13088. text-transform:none;
  13089. visibility:hidden;
  13090. }
  13091. #u40707 {
  13092. border-width:0px;
  13093. position:absolute;
  13094. left:0px;
  13095. top:0px;
  13096. width:0px;
  13097. height:0px;
  13098. }
  13099. #u40708_img {
  13100. border-width:0px;
  13101. position:absolute;
  13102. left:0px;
  13103. top:0px;
  13104. width:5px;
  13105. height:5px;
  13106. }
  13107. #u40708 {
  13108. border-width:0px;
  13109. position:absolute;
  13110. left:3122px;
  13111. top:87px;
  13112. width:5px;
  13113. height:5px;
  13114. display:flex;
  13115. }
  13116. #u40708 .text {
  13117. position:absolute;
  13118. align-self:center;
  13119. padding:2px 2px 2px 2px;
  13120. box-sizing:border-box;
  13121. width:100%;
  13122. }
  13123. #u40708_text {
  13124. border-width:0px;
  13125. word-wrap:break-word;
  13126. text-transform:none;
  13127. visibility:hidden;
  13128. }
  13129. #u40709_img {
  13130. border-width:0px;
  13131. position:absolute;
  13132. left:0px;
  13133. top:0px;
  13134. width:5px;
  13135. height:5px;
  13136. }
  13137. #u40709 {
  13138. border-width:0px;
  13139. position:absolute;
  13140. left:3138px;
  13141. top:87px;
  13142. width:5px;
  13143. height:5px;
  13144. display:flex;
  13145. }
  13146. #u40709 .text {
  13147. position:absolute;
  13148. align-self:center;
  13149. padding:2px 2px 2px 2px;
  13150. box-sizing:border-box;
  13151. width:100%;
  13152. }
  13153. #u40709_text {
  13154. border-width:0px;
  13155. word-wrap:break-word;
  13156. text-transform:none;
  13157. visibility:hidden;
  13158. }
  13159. #u40710_img {
  13160. border-width:0px;
  13161. position:absolute;
  13162. left:0px;
  13163. top:0px;
  13164. width:7px;
  13165. height:7px;
  13166. }
  13167. #u40710 {
  13168. border-width:0px;
  13169. position:absolute;
  13170. left:3129px;
  13171. top:86px;
  13172. width:7px;
  13173. height:7px;
  13174. display:flex;
  13175. }
  13176. #u40710 .text {
  13177. position:absolute;
  13178. align-self:center;
  13179. padding:2px 2px 2px 2px;
  13180. box-sizing:border-box;
  13181. width:100%;
  13182. }
  13183. #u40710_text {
  13184. border-width:0px;
  13185. word-wrap:break-word;
  13186. text-transform:none;
  13187. visibility:hidden;
  13188. }
  13189. #u40711_img {
  13190. border-width:0px;
  13191. position:absolute;
  13192. left:0px;
  13193. top:0px;
  13194. width:19px;
  13195. height:2px;
  13196. }
  13197. #u40711 {
  13198. border-width:0px;
  13199. position:absolute;
  13200. left:3146px;
  13201. top:89px;
  13202. width:18px;
  13203. height:1px;
  13204. display:flex;
  13205. -webkit-transform:rotate(90deg);
  13206. -moz-transform:rotate(90deg);
  13207. -ms-transform:rotate(90deg);
  13208. transform:rotate(90deg);
  13209. }
  13210. #u40711 .text {
  13211. position:absolute;
  13212. align-self:center;
  13213. padding:2px 2px 2px 2px;
  13214. box-sizing:border-box;
  13215. width:100%;
  13216. }
  13217. #u40711_text {
  13218. border-width:0px;
  13219. word-wrap:break-word;
  13220. text-transform:none;
  13221. visibility:hidden;
  13222. }
  13223. #u40712_img {
  13224. border-width:0px;
  13225. position:absolute;
  13226. left:0px;
  13227. top:0px;
  13228. width:375px;
  13229. height:44px;
  13230. }
  13231. #u40712 {
  13232. border-width:0px;
  13233. position:absolute;
  13234. left:2828px;
  13235. top:26px;
  13236. width:375px;
  13237. height:44px;
  13238. display:flex;
  13239. }
  13240. #u40712 .text {
  13241. position:absolute;
  13242. align-self:center;
  13243. padding:2px 2px 2px 2px;
  13244. box-sizing:border-box;
  13245. width:100%;
  13246. }
  13247. #u40712_text {
  13248. border-width:0px;
  13249. word-wrap:break-word;
  13250. text-transform:none;
  13251. visibility:hidden;
  13252. }
  13253. #u40713_div {
  13254. border-width:0px;
  13255. position:absolute;
  13256. left:0px;
  13257. top:0px;
  13258. width:375px;
  13259. height:50px;
  13260. background:inherit;
  13261. background-color:rgba(255, 255, 255, 1);
  13262. box-sizing:border-box;
  13263. border-width:1px;
  13264. border-style:solid;
  13265. border-color:rgba(242, 242, 242, 1);
  13266. border-radius:26px;
  13267. border-top-left-radius:0px;
  13268. border-top-right-radius:0px;
  13269. -moz-box-shadow:none;
  13270. -webkit-box-shadow:none;
  13271. box-shadow:none;
  13272. }
  13273. #u40713 {
  13274. border-width:0px;
  13275. position:absolute;
  13276. left:2828px;
  13277. top:790px;
  13278. width:375px;
  13279. height:50px;
  13280. display:flex;
  13281. }
  13282. #u40713 .text {
  13283. position:absolute;
  13284. align-self:center;
  13285. padding:2px 2px 2px 2px;
  13286. box-sizing:border-box;
  13287. width:100%;
  13288. }
  13289. #u40713_text {
  13290. border-width:0px;
  13291. word-wrap:break-word;
  13292. text-transform:none;
  13293. visibility:hidden;
  13294. }
  13295. #u40714 {
  13296. border-width:0px;
  13297. position:absolute;
  13298. left:0px;
  13299. top:0px;
  13300. width:0px;
  13301. height:0px;
  13302. }
  13303. #u40715_img {
  13304. border-width:0px;
  13305. position:absolute;
  13306. left:0px;
  13307. top:0px;
  13308. width:24px;
  13309. height:24px;
  13310. }
  13311. #u40715 {
  13312. border-width:0px;
  13313. position:absolute;
  13314. left:2868px;
  13315. top:794px;
  13316. width:24px;
  13317. height:24px;
  13318. display:flex;
  13319. font-size:8px;
  13320. }
  13321. #u40715 .text {
  13322. position:absolute;
  13323. align-self:center;
  13324. padding:2px 2px 2px 2px;
  13325. box-sizing:border-box;
  13326. width:100%;
  13327. }
  13328. #u40715_text {
  13329. border-width:0px;
  13330. word-wrap:break-word;
  13331. text-transform:none;
  13332. }
  13333. #u40716_div {
  13334. border-width:0px;
  13335. position:absolute;
  13336. left:0px;
  13337. top:0px;
  13338. width:25px;
  13339. height:17px;
  13340. background:inherit;
  13341. background-color:rgba(255, 255, 255, 0);
  13342. border:none;
  13343. border-radius:0px;
  13344. -moz-box-shadow:none;
  13345. -webkit-box-shadow:none;
  13346. box-shadow:none;
  13347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13348. font-weight:400;
  13349. font-style:normal;
  13350. font-size:12px;
  13351. }
  13352. #u40716 {
  13353. border-width:0px;
  13354. position:absolute;
  13355. left:2868px;
  13356. top:819px;
  13357. width:25px;
  13358. height:17px;
  13359. display:flex;
  13360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13361. font-weight:400;
  13362. font-style:normal;
  13363. font-size:12px;
  13364. }
  13365. #u40716 .text {
  13366. position:absolute;
  13367. align-self:flex-start;
  13368. padding:0px 0px 0px 0px;
  13369. box-sizing:border-box;
  13370. width:100%;
  13371. }
  13372. #u40716_text {
  13373. border-width:0px;
  13374. white-space:nowrap;
  13375. text-transform:none;
  13376. }
  13377. #u40717 {
  13378. border-width:0px;
  13379. position:absolute;
  13380. left:0px;
  13381. top:0px;
  13382. width:0px;
  13383. height:0px;
  13384. }
  13385. #u40718_img {
  13386. border-width:0px;
  13387. position:absolute;
  13388. left:0px;
  13389. top:0px;
  13390. width:24px;
  13391. height:24px;
  13392. }
  13393. #u40718 {
  13394. border-width:0px;
  13395. position:absolute;
  13396. left:3138px;
  13397. top:796px;
  13398. width:24px;
  13399. height:24px;
  13400. display:flex;
  13401. font-size:8px;
  13402. }
  13403. #u40718 .text {
  13404. position:absolute;
  13405. align-self:center;
  13406. padding:2px 2px 2px 2px;
  13407. box-sizing:border-box;
  13408. width:100%;
  13409. }
  13410. #u40718_text {
  13411. border-width:0px;
  13412. word-wrap:break-word;
  13413. text-transform:none;
  13414. }
  13415. #u40719_div {
  13416. border-width:0px;
  13417. position:absolute;
  13418. left:0px;
  13419. top:0px;
  13420. width:25px;
  13421. height:17px;
  13422. background:inherit;
  13423. background-color:rgba(255, 255, 255, 0);
  13424. border:none;
  13425. border-radius:0px;
  13426. -moz-box-shadow:none;
  13427. -webkit-box-shadow:none;
  13428. box-shadow:none;
  13429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13430. font-weight:400;
  13431. font-style:normal;
  13432. font-size:12px;
  13433. }
  13434. #u40719 {
  13435. border-width:0px;
  13436. position:absolute;
  13437. left:3138px;
  13438. top:821px;
  13439. width:25px;
  13440. height:17px;
  13441. display:flex;
  13442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13443. font-weight:400;
  13444. font-style:normal;
  13445. font-size:12px;
  13446. }
  13447. #u40719 .text {
  13448. position:absolute;
  13449. align-self:flex-start;
  13450. padding:0px 0px 0px 0px;
  13451. box-sizing:border-box;
  13452. width:100%;
  13453. }
  13454. #u40719_text {
  13455. border-width:0px;
  13456. white-space:nowrap;
  13457. text-transform:none;
  13458. }
  13459. #u40720_div {
  13460. border-width:0px;
  13461. position:absolute;
  13462. left:0px;
  13463. top:0px;
  13464. width:375px;
  13465. height:681px;
  13466. background:inherit;
  13467. background-color:rgba(242, 242, 242, 0.462745098039216);
  13468. border:none;
  13469. border-radius:0px;
  13470. -moz-box-shadow:none;
  13471. -webkit-box-shadow:none;
  13472. box-shadow:none;
  13473. }
  13474. #u40720 {
  13475. border-width:0px;
  13476. position:absolute;
  13477. left:2828px;
  13478. top:109px;
  13479. width:375px;
  13480. height:681px;
  13481. display:flex;
  13482. }
  13483. #u40720 .text {
  13484. position:absolute;
  13485. align-self:center;
  13486. padding:2px 2px 2px 2px;
  13487. box-sizing:border-box;
  13488. width:100%;
  13489. }
  13490. #u40720_text {
  13491. border-width:0px;
  13492. word-wrap:break-word;
  13493. text-transform:none;
  13494. visibility:hidden;
  13495. }
  13496. #u40721 {
  13497. border-width:0px;
  13498. position:absolute;
  13499. left:0px;
  13500. top:0px;
  13501. width:0px;
  13502. height:0px;
  13503. }
  13504. #u40722_img {
  13505. border-width:0px;
  13506. position:absolute;
  13507. left:0px;
  13508. top:0px;
  13509. width:24px;
  13510. height:24px;
  13511. }
  13512. #u40722 {
  13513. border-width:0px;
  13514. position:absolute;
  13515. left:3050px;
  13516. top:794px;
  13517. width:24px;
  13518. height:24px;
  13519. display:flex;
  13520. font-size:8px;
  13521. }
  13522. #u40722 .text {
  13523. position:absolute;
  13524. align-self:center;
  13525. padding:2px 2px 2px 2px;
  13526. box-sizing:border-box;
  13527. width:100%;
  13528. }
  13529. #u40722_text {
  13530. border-width:0px;
  13531. word-wrap:break-word;
  13532. text-transform:none;
  13533. }
  13534. #u40723_div {
  13535. border-width:0px;
  13536. position:absolute;
  13537. left:0px;
  13538. top:0px;
  13539. width:37px;
  13540. height:17px;
  13541. background:inherit;
  13542. background-color:rgba(255, 255, 255, 0);
  13543. border:none;
  13544. border-radius:0px;
  13545. -moz-box-shadow:none;
  13546. -webkit-box-shadow:none;
  13547. box-shadow:none;
  13548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13549. font-weight:400;
  13550. font-style:normal;
  13551. font-size:12px;
  13552. }
  13553. #u40723 {
  13554. border-width:0px;
  13555. position:absolute;
  13556. left:3044px;
  13557. top:819px;
  13558. width:37px;
  13559. height:17px;
  13560. display:flex;
  13561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13562. font-weight:400;
  13563. font-style:normal;
  13564. font-size:12px;
  13565. }
  13566. #u40723 .text {
  13567. position:absolute;
  13568. align-self:flex-start;
  13569. padding:0px 0px 0px 0px;
  13570. box-sizing:border-box;
  13571. width:100%;
  13572. }
  13573. #u40723_text {
  13574. border-width:0px;
  13575. white-space:nowrap;
  13576. text-transform:none;
  13577. }
  13578. #u40724 {
  13579. border-width:0px;
  13580. position:absolute;
  13581. left:0px;
  13582. top:0px;
  13583. width:0px;
  13584. height:0px;
  13585. }
  13586. #u40725_img {
  13587. border-width:0px;
  13588. position:absolute;
  13589. left:0px;
  13590. top:0px;
  13591. width:24px;
  13592. height:24px;
  13593. }
  13594. #u40725 {
  13595. border-width:0px;
  13596. position:absolute;
  13597. left:2956px;
  13598. top:794px;
  13599. width:24px;
  13600. height:24px;
  13601. display:flex;
  13602. font-size:8px;
  13603. }
  13604. #u40725 .text {
  13605. position:absolute;
  13606. align-self:center;
  13607. padding:2px 2px 2px 2px;
  13608. box-sizing:border-box;
  13609. width:100%;
  13610. }
  13611. #u40725_text {
  13612. border-width:0px;
  13613. word-wrap:break-word;
  13614. text-transform:none;
  13615. }
  13616. #u40726_div {
  13617. border-width:0px;
  13618. position:absolute;
  13619. left:0px;
  13620. top:0px;
  13621. width:37px;
  13622. height:17px;
  13623. background:inherit;
  13624. background-color:rgba(255, 255, 255, 0);
  13625. border:none;
  13626. border-radius:0px;
  13627. -moz-box-shadow:none;
  13628. -webkit-box-shadow:none;
  13629. box-shadow:none;
  13630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13631. font-weight:400;
  13632. font-style:normal;
  13633. font-size:12px;
  13634. }
  13635. #u40726 {
  13636. border-width:0px;
  13637. position:absolute;
  13638. left:2950px;
  13639. top:819px;
  13640. width:37px;
  13641. height:17px;
  13642. display:flex;
  13643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13644. font-weight:400;
  13645. font-style:normal;
  13646. font-size:12px;
  13647. }
  13648. #u40726 .text {
  13649. position:absolute;
  13650. align-self:flex-start;
  13651. padding:0px 0px 0px 0px;
  13652. box-sizing:border-box;
  13653. width:100%;
  13654. }
  13655. #u40726_text {
  13656. border-width:0px;
  13657. white-space:nowrap;
  13658. text-transform:none;
  13659. }
  13660. #u40727_div {
  13661. border-width:0px;
  13662. position:absolute;
  13663. left:0px;
  13664. top:0px;
  13665. width:375px;
  13666. height:775px;
  13667. background:inherit;
  13668. background-color:rgba(255, 255, 255, 1);
  13669. border:none;
  13670. border-top:0px;
  13671. border-radius:28px;
  13672. border-top-left-radius:0px;
  13673. border-top-right-radius:0px;
  13674. -moz-box-shadow:none;
  13675. -webkit-box-shadow:none;
  13676. box-shadow:none;
  13677. }
  13678. #u40727 {
  13679. border-width:0px;
  13680. position:absolute;
  13681. left:2828px;
  13682. top:67px;
  13683. width:375px;
  13684. height:775px;
  13685. display:flex;
  13686. }
  13687. #u40727 .text {
  13688. position:absolute;
  13689. align-self:center;
  13690. padding:2px 2px 2px 2px;
  13691. box-sizing:border-box;
  13692. width:100%;
  13693. }
  13694. #u40727_text {
  13695. border-width:0px;
  13696. word-wrap:break-word;
  13697. text-transform:none;
  13698. visibility:hidden;
  13699. }
  13700. #u40728_div {
  13701. border-width:0px;
  13702. position:absolute;
  13703. left:0px;
  13704. top:0px;
  13705. width:121px;
  13706. height:30px;
  13707. background:inherit;
  13708. background-color:rgba(255, 255, 255, 0);
  13709. border:none;
  13710. border-left:0px;
  13711. border-top:0px;
  13712. border-right:0px;
  13713. border-radius:0px;
  13714. border-bottom-right-radius:0px;
  13715. border-bottom-left-radius:0px;
  13716. -moz-box-shadow:none;
  13717. -webkit-box-shadow:none;
  13718. box-shadow:none;
  13719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13720. font-weight:400;
  13721. font-style:normal;
  13722. line-height:30px;
  13723. }
  13724. #u40728 {
  13725. border-width:0px;
  13726. position:absolute;
  13727. left:2950px;
  13728. top:228px;
  13729. width:121px;
  13730. height:30px;
  13731. display:flex;
  13732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13733. font-weight:400;
  13734. font-style:normal;
  13735. line-height:30px;
  13736. }
  13737. #u40728 .text {
  13738. position:absolute;
  13739. align-self:center;
  13740. padding:0px 0px 0px 0px;
  13741. box-sizing:border-box;
  13742. width:100%;
  13743. }
  13744. #u40728_text {
  13745. border-width:0px;
  13746. white-space:nowrap;
  13747. text-transform:none;
  13748. }
  13749. #u40729_div {
  13750. border-width:0px;
  13751. position:absolute;
  13752. left:0px;
  13753. top:0px;
  13754. width:126px;
  13755. height:40px;
  13756. background:inherit;
  13757. background-color:rgba(255, 255, 255, 1);
  13758. box-sizing:border-box;
  13759. border-width:1px;
  13760. border-style:solid;
  13761. border-color:rgba(121, 121, 121, 1);
  13762. border-radius:63px;
  13763. -moz-box-shadow:none;
  13764. -webkit-box-shadow:none;
  13765. box-shadow:none;
  13766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13767. font-weight:400;
  13768. font-style:normal;
  13769. font-size:14px;
  13770. }
  13771. #u40729 {
  13772. border-width:0px;
  13773. position:absolute;
  13774. left:3026px;
  13775. top:355px;
  13776. width:126px;
  13777. height:40px;
  13778. display:flex;
  13779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13780. font-weight:400;
  13781. font-style:normal;
  13782. font-size:14px;
  13783. }
  13784. #u40729 .text {
  13785. position:absolute;
  13786. align-self:center;
  13787. padding:2px 2px 2px 2px;
  13788. box-sizing:border-box;
  13789. width:100%;
  13790. }
  13791. #u40729_text {
  13792. border-width:0px;
  13793. word-wrap:break-word;
  13794. text-transform:none;
  13795. }
  13796. #u40730_img {
  13797. border-width:0px;
  13798. position:absolute;
  13799. left:0px;
  13800. top:0px;
  13801. width:83px;
  13802. height:83px;
  13803. }
  13804. #u40730 {
  13805. border-width:0px;
  13806. position:absolute;
  13807. left:2974px;
  13808. top:129px;
  13809. width:83px;
  13810. height:83px;
  13811. display:flex;
  13812. }
  13813. #u40730 .text {
  13814. position:absolute;
  13815. align-self:center;
  13816. padding:2px 2px 2px 2px;
  13817. box-sizing:border-box;
  13818. width:100%;
  13819. }
  13820. #u40730_text {
  13821. border-width:0px;
  13822. word-wrap:break-word;
  13823. text-transform:none;
  13824. visibility:hidden;
  13825. }
  13826. #u40731_div {
  13827. border-width:0px;
  13828. position:absolute;
  13829. left:0px;
  13830. top:0px;
  13831. width:126px;
  13832. height:40px;
  13833. background:inherit;
  13834. background-color:rgba(255, 255, 255, 1);
  13835. box-sizing:border-box;
  13836. border-width:1px;
  13837. border-style:solid;
  13838. border-color:rgba(121, 121, 121, 1);
  13839. border-radius:63px;
  13840. -moz-box-shadow:none;
  13841. -webkit-box-shadow:none;
  13842. box-shadow:none;
  13843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13844. font-weight:400;
  13845. font-style:normal;
  13846. font-size:14px;
  13847. }
  13848. #u40731 {
  13849. border-width:0px;
  13850. position:absolute;
  13851. left:2880px;
  13852. top:355px;
  13853. width:126px;
  13854. height:40px;
  13855. display:flex;
  13856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13857. font-weight:400;
  13858. font-style:normal;
  13859. font-size:14px;
  13860. }
  13861. #u40731 .text {
  13862. position:absolute;
  13863. align-self:center;
  13864. padding:2px 2px 2px 2px;
  13865. box-sizing:border-box;
  13866. width:100%;
  13867. }
  13868. #u40731_text {
  13869. border-width:0px;
  13870. word-wrap:break-word;
  13871. text-transform:none;
  13872. }
  13873. #u40732_div {
  13874. border-width:0px;
  13875. position:absolute;
  13876. left:0px;
  13877. top:0px;
  13878. width:30px;
  13879. height:30px;
  13880. background:inherit;
  13881. background-color:rgba(255, 255, 255, 0);
  13882. border:none;
  13883. border-left:0px;
  13884. border-top:0px;
  13885. border-right:0px;
  13886. border-radius:0px;
  13887. border-bottom-right-radius:0px;
  13888. border-bottom-left-radius:0px;
  13889. -moz-box-shadow:none;
  13890. -webkit-box-shadow:none;
  13891. box-shadow:none;
  13892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13893. font-weight:400;
  13894. font-style:normal;
  13895. font-size:18px;
  13896. text-align:center;
  13897. line-height:30px;
  13898. }
  13899. #u40732 {
  13900. border-width:0px;
  13901. position:absolute;
  13902. left:2838px;
  13903. top:77px;
  13904. width:30px;
  13905. height:30px;
  13906. display:flex;
  13907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13908. font-weight:400;
  13909. font-style:normal;
  13910. font-size:18px;
  13911. text-align:center;
  13912. line-height:30px;
  13913. }
  13914. #u40732 .text {
  13915. position:absolute;
  13916. align-self:center;
  13917. padding:0px 0px 0px 0px;
  13918. box-sizing:border-box;
  13919. width:100%;
  13920. }
  13921. #u40732_text {
  13922. border-width:0px;
  13923. word-wrap:break-word;
  13924. text-transform:none;
  13925. }
  13926. #u40733 {
  13927. border-width:0px;
  13928. position:absolute;
  13929. left:0px;
  13930. top:0px;
  13931. width:0px;
  13932. height:0px;
  13933. }
  13934. #u40734_img {
  13935. border-width:0px;
  13936. position:absolute;
  13937. left:0px;
  13938. top:0px;
  13939. width:350px;
  13940. height:40px;
  13941. }
  13942. #u40734 {
  13943. border-width:0px;
  13944. position:absolute;
  13945. left:2840px;
  13946. top:433px;
  13947. width:350px;
  13948. height:40px;
  13949. display:flex;
  13950. }
  13951. #u40734 .text {
  13952. position:absolute;
  13953. align-self:center;
  13954. padding:2px 2px 2px 2px;
  13955. box-sizing:border-box;
  13956. width:100%;
  13957. }
  13958. #u40734_text {
  13959. border-width:0px;
  13960. word-wrap:break-word;
  13961. text-transform:none;
  13962. visibility:hidden;
  13963. }
  13964. #u40735 {
  13965. border-width:0px;
  13966. position:absolute;
  13967. left:0px;
  13968. top:0px;
  13969. width:0px;
  13970. height:0px;
  13971. }
  13972. #u40736_div {
  13973. border-width:0px;
  13974. position:absolute;
  13975. left:0px;
  13976. top:0px;
  13977. width:221px;
  13978. height:30px;
  13979. background:inherit;
  13980. background-color:rgba(255, 255, 255, 0);
  13981. border:none;
  13982. border-left:0px;
  13983. border-top:0px;
  13984. border-right:0px;
  13985. border-radius:0px;
  13986. border-bottom-right-radius:0px;
  13987. border-bottom-left-radius:0px;
  13988. -moz-box-shadow:none;
  13989. -webkit-box-shadow:none;
  13990. box-shadow:none;
  13991. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13992. font-style:normal;
  13993. color:#FFFFFF;
  13994. text-align:center;
  13995. line-height:30px;
  13996. }
  13997. #u40736 {
  13998. border-width:0px;
  13999. position:absolute;
  14000. left:2920px;
  14001. top:438px;
  14002. width:221px;
  14003. height:30px;
  14004. display:flex;
  14005. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14006. font-style:normal;
  14007. color:#FFFFFF;
  14008. text-align:center;
  14009. line-height:30px;
  14010. }
  14011. #u40736 .text {
  14012. position:absolute;
  14013. align-self:center;
  14014. padding:0px 0px 0px 0px;
  14015. box-sizing:border-box;
  14016. width:100%;
  14017. }
  14018. #u40736_text {
  14019. border-width:0px;
  14020. white-space:nowrap;
  14021. text-transform:none;
  14022. }
  14023. #u40737_img {
  14024. border-width:0px;
  14025. position:absolute;
  14026. left:0px;
  14027. top:0px;
  14028. width:26px;
  14029. height:26px;
  14030. }
  14031. #u40737 {
  14032. border-width:0px;
  14033. position:absolute;
  14034. left:2890px;
  14035. top:440px;
  14036. width:26px;
  14037. height:26px;
  14038. display:flex;
  14039. }
  14040. #u40737 .text {
  14041. position:absolute;
  14042. align-self:center;
  14043. padding:2px 2px 2px 2px;
  14044. box-sizing:border-box;
  14045. width:100%;
  14046. }
  14047. #u40737_text {
  14048. border-width:0px;
  14049. word-wrap:break-word;
  14050. text-transform:none;
  14051. }
  14052. #u40738_div {
  14053. border-width:0px;
  14054. position:absolute;
  14055. left:0px;
  14056. top:0px;
  14057. width:304px;
  14058. height:60px;
  14059. background:inherit;
  14060. background-color:rgba(255, 255, 255, 0);
  14061. border:none;
  14062. border-left:0px;
  14063. border-top:0px;
  14064. border-right:0px;
  14065. border-radius:0px;
  14066. border-bottom-right-radius:0px;
  14067. border-bottom-left-radius:0px;
  14068. -moz-box-shadow:none;
  14069. -webkit-box-shadow:none;
  14070. box-shadow:none;
  14071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14072. font-weight:400;
  14073. font-style:normal;
  14074. font-size:14px;
  14075. text-align:center;
  14076. line-height:30px;
  14077. }
  14078. #u40738 {
  14079. border-width:0px;
  14080. position:absolute;
  14081. left:2871px;
  14082. top:269px;
  14083. width:304px;
  14084. height:60px;
  14085. display:flex;
  14086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14087. font-weight:400;
  14088. font-style:normal;
  14089. font-size:14px;
  14090. text-align:center;
  14091. line-height:30px;
  14092. }
  14093. #u40738 .text {
  14094. position:absolute;
  14095. align-self:center;
  14096. padding:0px 0px 0px 0px;
  14097. box-sizing:border-box;
  14098. width:100%;
  14099. }
  14100. #u40738_text {
  14101. border-width:0px;
  14102. word-wrap:break-word;
  14103. text-transform:none;
  14104. }
  14105. #u40739_div {
  14106. border-width:0px;
  14107. position:absolute;
  14108. left:0px;
  14109. top:0px;
  14110. width:413px;
  14111. height:40px;
  14112. background:inherit;
  14113. background-color:rgba(255, 255, 255, 0);
  14114. border:none;
  14115. border-left:0px;
  14116. border-top:0px;
  14117. border-right:0px;
  14118. border-radius:0px;
  14119. border-bottom-right-radius:0px;
  14120. border-bottom-left-radius:0px;
  14121. -moz-box-shadow:none;
  14122. -webkit-box-shadow:none;
  14123. box-shadow:none;
  14124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14125. font-weight:400;
  14126. font-style:normal;
  14127. font-size:14px;
  14128. color:#D9001B;
  14129. }
  14130. #u40739 {
  14131. border-width:0px;
  14132. position:absolute;
  14133. left:3006px;
  14134. top:392px;
  14135. width:413px;
  14136. height:40px;
  14137. display:flex;
  14138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14139. font-weight:400;
  14140. font-style:normal;
  14141. font-size:14px;
  14142. color:#D9001B;
  14143. }
  14144. #u40739 .text {
  14145. position:absolute;
  14146. align-self:flex-start;
  14147. padding:0px 0px 0px 0px;
  14148. box-sizing:border-box;
  14149. width:100%;
  14150. }
  14151. #u40739_text {
  14152. border-width:0px;
  14153. white-space:nowrap;
  14154. text-transform:none;
  14155. }
  14156. #u40740 {
  14157. border-width:0px;
  14158. position:absolute;
  14159. left:0px;
  14160. top:0px;
  14161. width:0px;
  14162. height:0px;
  14163. }
  14164. #u40741_div {
  14165. border-width:0px;
  14166. position:absolute;
  14167. left:0px;
  14168. top:0px;
  14169. width:645px;
  14170. height:120px;
  14171. background:inherit;
  14172. background-color:rgba(255, 255, 255, 0);
  14173. border:none;
  14174. border-left:0px;
  14175. border-top:0px;
  14176. border-right:0px;
  14177. border-radius:0px;
  14178. border-bottom-right-radius:0px;
  14179. border-bottom-left-radius:0px;
  14180. -moz-box-shadow:none;
  14181. -webkit-box-shadow:none;
  14182. box-shadow:none;
  14183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14184. font-weight:400;
  14185. font-style:normal;
  14186. font-size:14px;
  14187. color:#D9001B;
  14188. }
  14189. #u40741 {
  14190. border-width:0px;
  14191. position:absolute;
  14192. left:2680px;
  14193. top:877px;
  14194. width:645px;
  14195. height:120px;
  14196. display:flex;
  14197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14198. font-weight:400;
  14199. font-style:normal;
  14200. font-size:14px;
  14201. color:#D9001B;
  14202. }
  14203. #u40741 .text {
  14204. position:absolute;
  14205. align-self:flex-start;
  14206. padding:0px 0px 0px 0px;
  14207. box-sizing:border-box;
  14208. width:100%;
  14209. }
  14210. #u40741_text {
  14211. border-width:0px;
  14212. white-space:nowrap;
  14213. text-transform:none;
  14214. }
  14215. #u40742 {
  14216. border-width:0px;
  14217. position:absolute;
  14218. left:0px;
  14219. top:0px;
  14220. width:0px;
  14221. height:0px;
  14222. }
  14223. #u40743_div {
  14224. border-width:0px;
  14225. position:absolute;
  14226. left:0px;
  14227. top:0px;
  14228. width:260px;
  14229. height:40px;
  14230. background:inherit;
  14231. background-color:rgba(255, 255, 255, 1);
  14232. border:none;
  14233. border-radius:63px;
  14234. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  14235. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  14236. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  14237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14238. font-weight:400;
  14239. font-style:normal;
  14240. font-size:14px;
  14241. }
  14242. #u40743 {
  14243. border-width:0px;
  14244. position:absolute;
  14245. left:2683px;
  14246. top:923px;
  14247. width:260px;
  14248. height:40px;
  14249. display:flex;
  14250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14251. font-weight:400;
  14252. font-style:normal;
  14253. font-size:14px;
  14254. }
  14255. #u40743 .text {
  14256. position:absolute;
  14257. align-self:center;
  14258. padding:2px 2px 2px 2px;
  14259. box-sizing:border-box;
  14260. width:100%;
  14261. }
  14262. #u40743_text {
  14263. border-width:0px;
  14264. word-wrap:break-word;
  14265. text-transform:none;
  14266. visibility:hidden;
  14267. }
  14268. #u40744_img {
  14269. border-width:0px;
  14270. position:absolute;
  14271. left:0px;
  14272. top:0px;
  14273. width:19px;
  14274. height:19px;
  14275. }
  14276. #u40744 {
  14277. border-width:0px;
  14278. position:absolute;
  14279. left:2693px;
  14280. top:933px;
  14281. width:19px;
  14282. height:19px;
  14283. display:flex;
  14284. }
  14285. #u40744 .text {
  14286. position:absolute;
  14287. align-self:center;
  14288. padding:2px 2px 2px 2px;
  14289. box-sizing:border-box;
  14290. width:100%;
  14291. }
  14292. #u40744_text {
  14293. border-width:0px;
  14294. word-wrap:break-word;
  14295. text-transform:none;
  14296. visibility:hidden;
  14297. }
  14298. #u40745_div {
  14299. border-width:0px;
  14300. position:absolute;
  14301. left:0px;
  14302. top:0px;
  14303. width:199px;
  14304. height:17px;
  14305. background:inherit;
  14306. background-color:rgba(255, 255, 255, 0);
  14307. border:none;
  14308. border-left:0px;
  14309. border-top:0px;
  14310. border-right:0px;
  14311. border-radius:0px;
  14312. border-bottom-right-radius:0px;
  14313. border-bottom-left-radius:0px;
  14314. -moz-box-shadow:none;
  14315. -webkit-box-shadow:none;
  14316. box-shadow:none;
  14317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14318. font-weight:400;
  14319. font-style:normal;
  14320. font-size:12px;
  14321. }
  14322. #u40745 {
  14323. border-width:0px;
  14324. position:absolute;
  14325. left:2722px;
  14326. top:934px;
  14327. width:199px;
  14328. height:17px;
  14329. display:flex;
  14330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14331. font-weight:400;
  14332. font-style:normal;
  14333. font-size:12px;
  14334. }
  14335. #u40745 .text {
  14336. position:absolute;
  14337. align-self:flex-start;
  14338. padding:0px 0px 0px 0px;
  14339. box-sizing:border-box;
  14340. width:100%;
  14341. }
  14342. #u40745_text {
  14343. border-width:0px;
  14344. white-space:nowrap;
  14345. text-transform:none;
  14346. }