styles.css 221 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2895px;
  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. #u40762_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u40762 {
  28. border-width:0px;
  29. position:absolute;
  30. left:1812px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u40762 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u40762_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u40763_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. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u40763 {
  70. border-width:0px;
  71. position:absolute;
  72. left:1841px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u40763 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u40763_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u40764 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u40765_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u40765 {
  118. border-width:0px;
  119. position:absolute;
  120. left:2121px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u40765 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u40765_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u40766 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u40767_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u40767 {
  156. border-width:0px;
  157. position:absolute;
  158. left:2184px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u40767 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u40767_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u40768_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u40768 {
  186. border-width:0px;
  187. position:absolute;
  188. left:2190px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u40768 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u40768_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u40769 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u40770_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u40770 {
  224. border-width:0px;
  225. position:absolute;
  226. left:2135px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u40770 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u40770_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u40771_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u40771 {
  254. border-width:0px;
  255. position:absolute;
  256. left:2151px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u40771 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u40771_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u40772_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u40772 {
  284. border-width:0px;
  285. position:absolute;
  286. left:2142px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u40772 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u40772_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u40773_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u40773 {
  314. border-width:0px;
  315. position:absolute;
  316. left:2159px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u40773 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u40773_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u40774_div {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:50px;
  346. background:inherit;
  347. background-color:rgba(255, 255, 255, 1);
  348. box-sizing:border-box;
  349. border-width:1px;
  350. border-style:solid;
  351. border-color:rgba(242, 242, 242, 1);
  352. border-radius:26px;
  353. border-top-left-radius:0px;
  354. border-top-right-radius:0px;
  355. -moz-box-shadow:none;
  356. -webkit-box-shadow:none;
  357. box-shadow:none;
  358. }
  359. #u40774 {
  360. border-width:0px;
  361. position:absolute;
  362. left:1841px;
  363. top:788px;
  364. width:375px;
  365. height:50px;
  366. display:flex;
  367. }
  368. #u40774 .text {
  369. position:absolute;
  370. align-self:center;
  371. padding:2px 2px 2px 2px;
  372. box-sizing:border-box;
  373. width:100%;
  374. }
  375. #u40774_text {
  376. border-width:0px;
  377. word-wrap:break-word;
  378. text-transform:none;
  379. visibility:hidden;
  380. }
  381. #u40775 {
  382. border-width:0px;
  383. position:absolute;
  384. left:0px;
  385. top:0px;
  386. width:0px;
  387. height:0px;
  388. }
  389. #u40776_img {
  390. border-width:0px;
  391. position:absolute;
  392. left:0px;
  393. top:0px;
  394. width:24px;
  395. height:24px;
  396. }
  397. #u40776 {
  398. border-width:0px;
  399. position:absolute;
  400. left:1881px;
  401. top:792px;
  402. width:24px;
  403. height:24px;
  404. display:flex;
  405. font-size:8px;
  406. }
  407. #u40776 .text {
  408. position:absolute;
  409. align-self:center;
  410. padding:2px 2px 2px 2px;
  411. box-sizing:border-box;
  412. width:100%;
  413. }
  414. #u40776_text {
  415. border-width:0px;
  416. word-wrap:break-word;
  417. text-transform:none;
  418. }
  419. #u40777_div {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:25px;
  425. height:17px;
  426. background:inherit;
  427. background-color:rgba(255, 255, 255, 0);
  428. border:none;
  429. border-radius:0px;
  430. -moz-box-shadow:none;
  431. -webkit-box-shadow:none;
  432. box-shadow:none;
  433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  434. font-weight:400;
  435. font-style:normal;
  436. font-size:12px;
  437. }
  438. #u40777 {
  439. border-width:0px;
  440. position:absolute;
  441. left:1881px;
  442. top:817px;
  443. width:25px;
  444. height:17px;
  445. display:flex;
  446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  447. font-weight:400;
  448. font-style:normal;
  449. font-size:12px;
  450. }
  451. #u40777 .text {
  452. position:absolute;
  453. align-self:flex-start;
  454. padding:0px 0px 0px 0px;
  455. box-sizing:border-box;
  456. width:100%;
  457. }
  458. #u40777_text {
  459. border-width:0px;
  460. white-space:nowrap;
  461. text-transform:none;
  462. }
  463. #u40778 {
  464. border-width:0px;
  465. position:absolute;
  466. left:0px;
  467. top:0px;
  468. width:0px;
  469. height:0px;
  470. }
  471. #u40779_img {
  472. border-width:0px;
  473. position:absolute;
  474. left:0px;
  475. top:0px;
  476. width:24px;
  477. height:24px;
  478. }
  479. #u40779 {
  480. border-width:0px;
  481. position:absolute;
  482. left:2151px;
  483. top:794px;
  484. width:24px;
  485. height:24px;
  486. display:flex;
  487. font-size:8px;
  488. }
  489. #u40779 .text {
  490. position:absolute;
  491. align-self:center;
  492. padding:2px 2px 2px 2px;
  493. box-sizing:border-box;
  494. width:100%;
  495. }
  496. #u40779_text {
  497. border-width:0px;
  498. word-wrap:break-word;
  499. text-transform:none;
  500. }
  501. #u40780_div {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:25px;
  507. height:17px;
  508. background:inherit;
  509. background-color:rgba(255, 255, 255, 0);
  510. border:none;
  511. border-radius:0px;
  512. -moz-box-shadow:none;
  513. -webkit-box-shadow:none;
  514. box-shadow:none;
  515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  516. font-weight:400;
  517. font-style:normal;
  518. font-size:12px;
  519. }
  520. #u40780 {
  521. border-width:0px;
  522. position:absolute;
  523. left:2151px;
  524. top:819px;
  525. width:25px;
  526. height:17px;
  527. display:flex;
  528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  529. font-weight:400;
  530. font-style:normal;
  531. font-size:12px;
  532. }
  533. #u40780 .text {
  534. position:absolute;
  535. align-self:flex-start;
  536. padding:0px 0px 0px 0px;
  537. box-sizing:border-box;
  538. width:100%;
  539. }
  540. #u40780_text {
  541. border-width:0px;
  542. white-space:nowrap;
  543. text-transform:none;
  544. }
  545. #u40781_div {
  546. border-width:0px;
  547. position:absolute;
  548. left:0px;
  549. top:0px;
  550. width:375px;
  551. height:681px;
  552. background:inherit;
  553. background-color:rgba(242, 242, 242, 0.462745098039216);
  554. border:none;
  555. border-radius:0px;
  556. -moz-box-shadow:none;
  557. -webkit-box-shadow:none;
  558. box-shadow:none;
  559. }
  560. #u40781 {
  561. border-width:0px;
  562. position:absolute;
  563. left:1841px;
  564. top:107px;
  565. width:375px;
  566. height:681px;
  567. display:flex;
  568. }
  569. #u40781 .text {
  570. position:absolute;
  571. align-self:center;
  572. padding:2px 2px 2px 2px;
  573. box-sizing:border-box;
  574. width:100%;
  575. }
  576. #u40781_text {
  577. border-width:0px;
  578. word-wrap:break-word;
  579. text-transform:none;
  580. visibility:hidden;
  581. }
  582. #u40782 {
  583. border-width:0px;
  584. position:absolute;
  585. left:0px;
  586. top:0px;
  587. width:0px;
  588. height:0px;
  589. }
  590. #u40783_img {
  591. border-width:0px;
  592. position:absolute;
  593. left:0px;
  594. top:0px;
  595. width:24px;
  596. height:24px;
  597. }
  598. #u40783 {
  599. border-width:0px;
  600. position:absolute;
  601. left:2063px;
  602. top:792px;
  603. width:24px;
  604. height:24px;
  605. display:flex;
  606. font-size:8px;
  607. }
  608. #u40783 .text {
  609. position:absolute;
  610. align-self:center;
  611. padding:2px 2px 2px 2px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u40783_text {
  616. border-width:0px;
  617. word-wrap:break-word;
  618. text-transform:none;
  619. }
  620. #u40784_div {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:37px;
  626. height:17px;
  627. background:inherit;
  628. background-color:rgba(255, 255, 255, 0);
  629. border:none;
  630. border-radius:0px;
  631. -moz-box-shadow:none;
  632. -webkit-box-shadow:none;
  633. box-shadow:none;
  634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  635. font-weight:400;
  636. font-style:normal;
  637. font-size:12px;
  638. }
  639. #u40784 {
  640. border-width:0px;
  641. position:absolute;
  642. left:2057px;
  643. top:817px;
  644. width:37px;
  645. height:17px;
  646. display:flex;
  647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  648. font-weight:400;
  649. font-style:normal;
  650. font-size:12px;
  651. }
  652. #u40784 .text {
  653. position:absolute;
  654. align-self:flex-start;
  655. padding:0px 0px 0px 0px;
  656. box-sizing:border-box;
  657. width:100%;
  658. }
  659. #u40784_text {
  660. border-width:0px;
  661. white-space:nowrap;
  662. text-transform:none;
  663. }
  664. #u40785 {
  665. border-width:0px;
  666. position:absolute;
  667. left:0px;
  668. top:0px;
  669. width:0px;
  670. height:0px;
  671. }
  672. #u40786_img {
  673. border-width:0px;
  674. position:absolute;
  675. left:0px;
  676. top:0px;
  677. width:24px;
  678. height:24px;
  679. }
  680. #u40786 {
  681. border-width:0px;
  682. position:absolute;
  683. left:1969px;
  684. top:792px;
  685. width:24px;
  686. height:24px;
  687. display:flex;
  688. font-size:8px;
  689. }
  690. #u40786 .text {
  691. position:absolute;
  692. align-self:center;
  693. padding:2px 2px 2px 2px;
  694. box-sizing:border-box;
  695. width:100%;
  696. }
  697. #u40786_text {
  698. border-width:0px;
  699. word-wrap:break-word;
  700. text-transform:none;
  701. }
  702. #u40787_div {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:37px;
  708. height:17px;
  709. background:inherit;
  710. background-color:rgba(255, 255, 255, 0);
  711. border:none;
  712. border-radius:0px;
  713. -moz-box-shadow:none;
  714. -webkit-box-shadow:none;
  715. box-shadow:none;
  716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  717. font-weight:400;
  718. font-style:normal;
  719. font-size:12px;
  720. }
  721. #u40787 {
  722. border-width:0px;
  723. position:absolute;
  724. left:1963px;
  725. top:817px;
  726. width:37px;
  727. height:17px;
  728. display:flex;
  729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  730. font-weight:400;
  731. font-style:normal;
  732. font-size:12px;
  733. }
  734. #u40787 .text {
  735. position:absolute;
  736. align-self:flex-start;
  737. padding:0px 0px 0px 0px;
  738. box-sizing:border-box;
  739. width:100%;
  740. }
  741. #u40787_text {
  742. border-width:0px;
  743. white-space:nowrap;
  744. text-transform:none;
  745. }
  746. #u40788_div {
  747. border-width:0px;
  748. position:absolute;
  749. left:0px;
  750. top:0px;
  751. width:375px;
  752. height:732px;
  753. background:inherit;
  754. background-color:rgba(244, 244, 244, 1);
  755. box-sizing:border-box;
  756. border-width:1px;
  757. border-style:solid;
  758. border-color:rgba(242, 242, 242, 1);
  759. border-radius:26px;
  760. border-top-left-radius:0px;
  761. border-top-right-radius:0px;
  762. -moz-box-shadow:none;
  763. -webkit-box-shadow:none;
  764. box-shadow:none;
  765. }
  766. #u40788 {
  767. border-width:0px;
  768. position:absolute;
  769. left:1841px;
  770. top:107px;
  771. width:375px;
  772. height:732px;
  773. display:flex;
  774. }
  775. #u40788 .text {
  776. position:absolute;
  777. align-self:center;
  778. padding:2px 2px 2px 2px;
  779. box-sizing:border-box;
  780. width:100%;
  781. }
  782. #u40788_text {
  783. border-width:0px;
  784. word-wrap:break-word;
  785. text-transform:none;
  786. visibility:hidden;
  787. }
  788. #u40789_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:376px;
  794. height:818px;
  795. }
  796. #u40789 {
  797. border-width:0px;
  798. position:absolute;
  799. left:1840px;
  800. top:24px;
  801. width:376px;
  802. height:818px;
  803. display:flex;
  804. }
  805. #u40789 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u40789_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u40791_img {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:433px;
  824. height:865px;
  825. }
  826. #u40791 {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:433px;
  832. height:865px;
  833. display:flex;
  834. }
  835. #u40791 .text {
  836. position:absolute;
  837. align-self:center;
  838. padding:2px 2px 2px 2px;
  839. box-sizing:border-box;
  840. width:100%;
  841. }
  842. #u40791_text {
  843. border-width:0px;
  844. word-wrap:break-word;
  845. text-transform:none;
  846. visibility:hidden;
  847. }
  848. #u40792_div {
  849. border-width:0px;
  850. position:absolute;
  851. left:0px;
  852. top:0px;
  853. width:375px;
  854. height:40px;
  855. background:inherit;
  856. background-color:rgba(255, 255, 255, 1);
  857. box-sizing:border-box;
  858. border-width:1px;
  859. border-style:solid;
  860. border-color:rgba(215, 215, 215, 1);
  861. border-left:0px;
  862. border-top:0px;
  863. border-right:0px;
  864. border-radius:0px;
  865. border-bottom-right-radius:0px;
  866. border-bottom-left-radius:0px;
  867. -moz-box-shadow:none;
  868. -webkit-box-shadow:none;
  869. box-shadow:none;
  870. }
  871. #u40792 {
  872. border-width:0px;
  873. position:absolute;
  874. left:29px;
  875. top:67px;
  876. width:375px;
  877. height:40px;
  878. display:flex;
  879. }
  880. #u40792 .text {
  881. position:absolute;
  882. align-self:center;
  883. padding:2px 2px 2px 2px;
  884. box-sizing:border-box;
  885. width:100%;
  886. }
  887. #u40792_text {
  888. border-width:0px;
  889. word-wrap:break-word;
  890. text-transform:none;
  891. visibility:hidden;
  892. }
  893. #u40793 {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:0px;
  899. height:0px;
  900. }
  901. #u40794_div {
  902. border-width:0px;
  903. position:absolute;
  904. left:0px;
  905. top:0px;
  906. width:88px;
  907. height:32px;
  908. background:inherit;
  909. background-color:rgba(255, 255, 255, 1);
  910. box-sizing:border-box;
  911. border-width:1px;
  912. border-style:solid;
  913. border-color:rgba(242, 242, 242, 1);
  914. border-radius:33px;
  915. -moz-box-shadow:none;
  916. -webkit-box-shadow:none;
  917. box-shadow:none;
  918. }
  919. #u40794 {
  920. border-width:0px;
  921. position:absolute;
  922. left:309px;
  923. top:71px;
  924. width:88px;
  925. height:32px;
  926. display:flex;
  927. }
  928. #u40794 .text {
  929. position:absolute;
  930. align-self:center;
  931. padding:2px 2px 2px 2px;
  932. box-sizing:border-box;
  933. width:100%;
  934. }
  935. #u40794_text {
  936. border-width:0px;
  937. word-wrap:break-word;
  938. text-transform:none;
  939. visibility:hidden;
  940. }
  941. #u40795 {
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:0px;
  947. height:0px;
  948. }
  949. #u40796_img {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:18px;
  955. height:18px;
  956. }
  957. #u40796 {
  958. border-width:0px;
  959. position:absolute;
  960. left:372px;
  961. top:78px;
  962. width:18px;
  963. height:18px;
  964. display:flex;
  965. }
  966. #u40796 .text {
  967. position:absolute;
  968. align-self:center;
  969. padding:2px 2px 2px 2px;
  970. box-sizing:border-box;
  971. width:100%;
  972. }
  973. #u40796_text {
  974. border-width:0px;
  975. word-wrap:break-word;
  976. text-transform:none;
  977. visibility:hidden;
  978. }
  979. #u40797_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:6px;
  985. height:6px;
  986. }
  987. #u40797 {
  988. border-width:0px;
  989. position:absolute;
  990. left:378px;
  991. top:84px;
  992. width:6px;
  993. height:6px;
  994. display:flex;
  995. }
  996. #u40797 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u40797_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u40798 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u40799_img {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:5px;
  1023. height:5px;
  1024. }
  1025. #u40799 {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:323px;
  1029. top:85px;
  1030. width:5px;
  1031. height:5px;
  1032. display:flex;
  1033. }
  1034. #u40799 .text {
  1035. position:absolute;
  1036. align-self:center;
  1037. padding:2px 2px 2px 2px;
  1038. box-sizing:border-box;
  1039. width:100%;
  1040. }
  1041. #u40799_text {
  1042. border-width:0px;
  1043. word-wrap:break-word;
  1044. text-transform:none;
  1045. visibility:hidden;
  1046. }
  1047. #u40800_img {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:5px;
  1053. height:5px;
  1054. }
  1055. #u40800 {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:339px;
  1059. top:85px;
  1060. width:5px;
  1061. height:5px;
  1062. display:flex;
  1063. }
  1064. #u40800 .text {
  1065. position:absolute;
  1066. align-self:center;
  1067. padding:2px 2px 2px 2px;
  1068. box-sizing:border-box;
  1069. width:100%;
  1070. }
  1071. #u40800_text {
  1072. border-width:0px;
  1073. word-wrap:break-word;
  1074. text-transform:none;
  1075. visibility:hidden;
  1076. }
  1077. #u40801_img {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:7px;
  1083. height:7px;
  1084. }
  1085. #u40801 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:330px;
  1089. top:84px;
  1090. width:7px;
  1091. height:7px;
  1092. display:flex;
  1093. }
  1094. #u40801 .text {
  1095. position:absolute;
  1096. align-self:center;
  1097. padding:2px 2px 2px 2px;
  1098. box-sizing:border-box;
  1099. width:100%;
  1100. }
  1101. #u40801_text {
  1102. border-width:0px;
  1103. word-wrap:break-word;
  1104. text-transform:none;
  1105. visibility:hidden;
  1106. }
  1107. #u40802_img {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:19px;
  1113. height:2px;
  1114. }
  1115. #u40802 {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:347px;
  1119. top:87px;
  1120. width:18px;
  1121. height:1px;
  1122. display:flex;
  1123. -webkit-transform:rotate(90deg);
  1124. -moz-transform:rotate(90deg);
  1125. -ms-transform:rotate(90deg);
  1126. transform:rotate(90deg);
  1127. }
  1128. #u40802 .text {
  1129. position:absolute;
  1130. align-self:center;
  1131. padding:2px 2px 2px 2px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u40802_text {
  1136. border-width:0px;
  1137. word-wrap:break-word;
  1138. text-transform:none;
  1139. visibility:hidden;
  1140. }
  1141. #u40803_img {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:375px;
  1147. height:44px;
  1148. }
  1149. #u40803 {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:29px;
  1153. top:24px;
  1154. width:375px;
  1155. height:44px;
  1156. display:flex;
  1157. }
  1158. #u40803 .text {
  1159. position:absolute;
  1160. align-self:center;
  1161. padding:2px 2px 2px 2px;
  1162. box-sizing:border-box;
  1163. width:100%;
  1164. }
  1165. #u40803_text {
  1166. border-width:0px;
  1167. word-wrap:break-word;
  1168. text-transform:none;
  1169. visibility:hidden;
  1170. }
  1171. #u40804_div {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:0px;
  1175. top:0px;
  1176. width:375px;
  1177. height:50px;
  1178. background:inherit;
  1179. background-color:rgba(255, 255, 255, 1);
  1180. box-sizing:border-box;
  1181. border-width:1px;
  1182. border-style:solid;
  1183. border-color:rgba(242, 242, 242, 1);
  1184. border-radius:26px;
  1185. border-top-left-radius:0px;
  1186. border-top-right-radius:0px;
  1187. -moz-box-shadow:none;
  1188. -webkit-box-shadow:none;
  1189. box-shadow:none;
  1190. }
  1191. #u40804 {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:29px;
  1195. top:788px;
  1196. width:375px;
  1197. height:50px;
  1198. display:flex;
  1199. }
  1200. #u40804 .text {
  1201. position:absolute;
  1202. align-self:center;
  1203. padding:2px 2px 2px 2px;
  1204. box-sizing:border-box;
  1205. width:100%;
  1206. }
  1207. #u40804_text {
  1208. border-width:0px;
  1209. word-wrap:break-word;
  1210. text-transform:none;
  1211. visibility:hidden;
  1212. }
  1213. #u40805 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:0px;
  1217. top:0px;
  1218. width:0px;
  1219. height:0px;
  1220. }
  1221. #u40806_img {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:24px;
  1227. height:24px;
  1228. }
  1229. #u40806 {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:69px;
  1233. top:792px;
  1234. width:24px;
  1235. height:24px;
  1236. display:flex;
  1237. font-size:8px;
  1238. }
  1239. #u40806 .text {
  1240. position:absolute;
  1241. align-self:center;
  1242. padding:2px 2px 2px 2px;
  1243. box-sizing:border-box;
  1244. width:100%;
  1245. }
  1246. #u40806_text {
  1247. border-width:0px;
  1248. word-wrap:break-word;
  1249. text-transform:none;
  1250. }
  1251. #u40807_div {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:25px;
  1257. height:17px;
  1258. background:inherit;
  1259. background-color:rgba(255, 255, 255, 0);
  1260. border:none;
  1261. border-radius:0px;
  1262. -moz-box-shadow:none;
  1263. -webkit-box-shadow:none;
  1264. box-shadow:none;
  1265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1266. font-weight:400;
  1267. font-style:normal;
  1268. font-size:12px;
  1269. }
  1270. #u40807 {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:69px;
  1274. top:817px;
  1275. width:25px;
  1276. height:17px;
  1277. display:flex;
  1278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1279. font-weight:400;
  1280. font-style:normal;
  1281. font-size:12px;
  1282. }
  1283. #u40807 .text {
  1284. position:absolute;
  1285. align-self:flex-start;
  1286. padding:0px 0px 0px 0px;
  1287. box-sizing:border-box;
  1288. width:100%;
  1289. }
  1290. #u40807_text {
  1291. border-width:0px;
  1292. white-space:nowrap;
  1293. text-transform:none;
  1294. }
  1295. #u40808 {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:0px;
  1299. top:0px;
  1300. width:0px;
  1301. height:0px;
  1302. }
  1303. #u40809_img {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:0px;
  1307. top:0px;
  1308. width:24px;
  1309. height:24px;
  1310. }
  1311. #u40809 {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:339px;
  1315. top:794px;
  1316. width:24px;
  1317. height:24px;
  1318. display:flex;
  1319. font-size:8px;
  1320. }
  1321. #u40809 .text {
  1322. position:absolute;
  1323. align-self:center;
  1324. padding:2px 2px 2px 2px;
  1325. box-sizing:border-box;
  1326. width:100%;
  1327. }
  1328. #u40809_text {
  1329. border-width:0px;
  1330. word-wrap:break-word;
  1331. text-transform:none;
  1332. }
  1333. #u40810_div {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:25px;
  1339. height:17px;
  1340. background:inherit;
  1341. background-color:rgba(255, 255, 255, 0);
  1342. border:none;
  1343. border-radius:0px;
  1344. -moz-box-shadow:none;
  1345. -webkit-box-shadow:none;
  1346. box-shadow:none;
  1347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1348. font-weight:400;
  1349. font-style:normal;
  1350. font-size:12px;
  1351. }
  1352. #u40810 {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:339px;
  1356. top:819px;
  1357. width:25px;
  1358. height:17px;
  1359. display:flex;
  1360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1361. font-weight:400;
  1362. font-style:normal;
  1363. font-size:12px;
  1364. }
  1365. #u40810 .text {
  1366. position:absolute;
  1367. align-self:flex-start;
  1368. padding:0px 0px 0px 0px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u40810_text {
  1373. border-width:0px;
  1374. white-space:nowrap;
  1375. text-transform:none;
  1376. }
  1377. #u40811_div {
  1378. border-width:0px;
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:375px;
  1383. height:681px;
  1384. background:inherit;
  1385. background-color:rgba(242, 242, 242, 0.462745098039216);
  1386. border:none;
  1387. border-radius:0px;
  1388. -moz-box-shadow:none;
  1389. -webkit-box-shadow:none;
  1390. box-shadow:none;
  1391. }
  1392. #u40811 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:29px;
  1396. top:107px;
  1397. width:375px;
  1398. height:681px;
  1399. display:flex;
  1400. }
  1401. #u40811 .text {
  1402. position:absolute;
  1403. align-self:center;
  1404. padding:2px 2px 2px 2px;
  1405. box-sizing:border-box;
  1406. width:100%;
  1407. }
  1408. #u40811_text {
  1409. border-width:0px;
  1410. word-wrap:break-word;
  1411. text-transform:none;
  1412. visibility:hidden;
  1413. }
  1414. #u40812 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:0px;
  1420. height:0px;
  1421. }
  1422. #u40813_img {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:0px;
  1426. top:0px;
  1427. width:24px;
  1428. height:24px;
  1429. }
  1430. #u40813 {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:251px;
  1434. top:792px;
  1435. width:24px;
  1436. height:24px;
  1437. display:flex;
  1438. font-size:8px;
  1439. }
  1440. #u40813 .text {
  1441. position:absolute;
  1442. align-self:center;
  1443. padding:2px 2px 2px 2px;
  1444. box-sizing:border-box;
  1445. width:100%;
  1446. }
  1447. #u40813_text {
  1448. border-width:0px;
  1449. word-wrap:break-word;
  1450. text-transform:none;
  1451. }
  1452. #u40814_div {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:37px;
  1458. height:17px;
  1459. background:inherit;
  1460. background-color:rgba(255, 255, 255, 0);
  1461. border:none;
  1462. border-radius:0px;
  1463. -moz-box-shadow:none;
  1464. -webkit-box-shadow:none;
  1465. box-shadow:none;
  1466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1467. font-weight:400;
  1468. font-style:normal;
  1469. font-size:12px;
  1470. }
  1471. #u40814 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:245px;
  1475. top:817px;
  1476. width:37px;
  1477. height:17px;
  1478. display:flex;
  1479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1480. font-weight:400;
  1481. font-style:normal;
  1482. font-size:12px;
  1483. }
  1484. #u40814 .text {
  1485. position:absolute;
  1486. align-self:flex-start;
  1487. padding:0px 0px 0px 0px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u40814_text {
  1492. border-width:0px;
  1493. white-space:nowrap;
  1494. text-transform:none;
  1495. }
  1496. #u40815 {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:0px;
  1500. top:0px;
  1501. width:0px;
  1502. height:0px;
  1503. }
  1504. #u40816_img {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:24px;
  1510. height:24px;
  1511. }
  1512. #u40816 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:157px;
  1516. top:792px;
  1517. width:24px;
  1518. height:24px;
  1519. display:flex;
  1520. font-size:8px;
  1521. }
  1522. #u40816 .text {
  1523. position:absolute;
  1524. align-self:center;
  1525. padding:2px 2px 2px 2px;
  1526. box-sizing:border-box;
  1527. width:100%;
  1528. }
  1529. #u40816_text {
  1530. border-width:0px;
  1531. word-wrap:break-word;
  1532. text-transform:none;
  1533. }
  1534. #u40817_div {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:37px;
  1540. height:17px;
  1541. background:inherit;
  1542. background-color:rgba(255, 255, 255, 0);
  1543. border:none;
  1544. border-radius:0px;
  1545. -moz-box-shadow:none;
  1546. -webkit-box-shadow:none;
  1547. box-shadow:none;
  1548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1549. font-weight:400;
  1550. font-style:normal;
  1551. font-size:12px;
  1552. }
  1553. #u40817 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:151px;
  1557. top:817px;
  1558. width:37px;
  1559. height:17px;
  1560. display:flex;
  1561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1562. font-weight:400;
  1563. font-style:normal;
  1564. font-size:12px;
  1565. }
  1566. #u40817 .text {
  1567. position:absolute;
  1568. align-self:flex-start;
  1569. padding:0px 0px 0px 0px;
  1570. box-sizing:border-box;
  1571. width:100%;
  1572. }
  1573. #u40817_text {
  1574. border-width:0px;
  1575. white-space:nowrap;
  1576. text-transform:none;
  1577. }
  1578. #u40818_div {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:375px;
  1584. height:772px;
  1585. background:inherit;
  1586. background-color:rgba(24, 144, 255, 1);
  1587. border:none;
  1588. border-top:0px;
  1589. border-radius:28px;
  1590. border-top-left-radius:0px;
  1591. border-top-right-radius:0px;
  1592. -moz-box-shadow:none;
  1593. -webkit-box-shadow:none;
  1594. box-shadow:none;
  1595. }
  1596. #u40818 {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:29px;
  1600. top:68px;
  1601. width:375px;
  1602. height:772px;
  1603. display:flex;
  1604. }
  1605. #u40818 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:2px 2px 2px 2px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u40818_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. visibility:hidden;
  1617. }
  1618. #u40819_div {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:0px;
  1622. top:0px;
  1623. width:12px;
  1624. height:12px;
  1625. background:inherit;
  1626. background-color:rgba(255, 255, 255, 0);
  1627. box-sizing:border-box;
  1628. border-width:2px;
  1629. border-style:solid;
  1630. border-color:rgba(255, 255, 255, 1);
  1631. border-right:0px;
  1632. border-bottom:0px;
  1633. border-radius:0px;
  1634. border-top-right-radius:0px;
  1635. border-bottom-left-radius:0px;
  1636. -moz-box-shadow:none;
  1637. -webkit-box-shadow:none;
  1638. box-shadow:none;
  1639. }
  1640. #u40819 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:39px;
  1644. top:81px;
  1645. width:12px;
  1646. height:12px;
  1647. display:flex;
  1648. -webkit-transform:rotate(315deg);
  1649. -moz-transform:rotate(315deg);
  1650. -ms-transform:rotate(315deg);
  1651. transform:rotate(315deg);
  1652. }
  1653. #u40819 .text {
  1654. position:absolute;
  1655. align-self:center;
  1656. padding:2px 2px 2px 2px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u40819_text {
  1661. border-width:0px;
  1662. word-wrap:break-word;
  1663. text-transform:none;
  1664. visibility:hidden;
  1665. }
  1666. #u40820 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:0px;
  1672. height:0px;
  1673. }
  1674. #u40821_div {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:375px;
  1680. height:60px;
  1681. background:inherit;
  1682. background-color:rgba(255, 255, 255, 1);
  1683. border:none;
  1684. border-top:0px;
  1685. border-radius:28px;
  1686. border-top-left-radius:0px;
  1687. border-top-right-radius:0px;
  1688. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1689. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1690. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:14px;
  1695. color:#FFFFFF;
  1696. }
  1697. #u40821 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:29px;
  1701. top:780px;
  1702. width:375px;
  1703. height:60px;
  1704. display:flex;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:14px;
  1709. color:#FFFFFF;
  1710. }
  1711. #u40821 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:2px 2px 2px 2px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u40821_text {
  1719. border-width:0px;
  1720. word-wrap:break-word;
  1721. text-transform:none;
  1722. visibility:hidden;
  1723. }
  1724. #u40822_div {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:324px;
  1730. height:40px;
  1731. background:inherit;
  1732. background-color:rgba(0, 137, 254, 1);
  1733. border:none;
  1734. border-radius:63px;
  1735. -moz-box-shadow:none;
  1736. -webkit-box-shadow:none;
  1737. box-shadow:none;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:14px;
  1742. color:#FFFFFF;
  1743. }
  1744. #u40822 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:57px;
  1748. top:789px;
  1749. width:324px;
  1750. height:40px;
  1751. display:flex;
  1752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1753. font-weight:400;
  1754. font-style:normal;
  1755. font-size:14px;
  1756. color:#FFFFFF;
  1757. }
  1758. #u40822 .text {
  1759. position:absolute;
  1760. align-self:center;
  1761. padding:2px 2px 2px 2px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u40822_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. }
  1770. #u40823 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:0px;
  1776. height:0px;
  1777. }
  1778. #u40824_div {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:88px;
  1784. height:32px;
  1785. background:inherit;
  1786. background-color:rgba(255, 255, 255, 1);
  1787. box-sizing:border-box;
  1788. border-width:1px;
  1789. border-style:solid;
  1790. border-color:rgba(242, 242, 242, 1);
  1791. border-radius:33px;
  1792. -moz-box-shadow:none;
  1793. -webkit-box-shadow:none;
  1794. box-shadow:none;
  1795. }
  1796. #u40824 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:309px;
  1800. top:71px;
  1801. width:88px;
  1802. height:32px;
  1803. display:flex;
  1804. }
  1805. #u40824 .text {
  1806. position:absolute;
  1807. align-self:center;
  1808. padding:2px 2px 2px 2px;
  1809. box-sizing:border-box;
  1810. width:100%;
  1811. }
  1812. #u40824_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. visibility:hidden;
  1817. }
  1818. #u40825 {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:0px;
  1822. top:0px;
  1823. width:0px;
  1824. height:0px;
  1825. }
  1826. #u40826_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:18px;
  1832. height:18px;
  1833. }
  1834. #u40826 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:372px;
  1838. top:78px;
  1839. width:18px;
  1840. height:18px;
  1841. display:flex;
  1842. }
  1843. #u40826 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 2px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u40826_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. visibility:hidden;
  1855. }
  1856. #u40827_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:6px;
  1862. height:6px;
  1863. }
  1864. #u40827 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:378px;
  1868. top:84px;
  1869. width:6px;
  1870. height:6px;
  1871. display:flex;
  1872. }
  1873. #u40827 .text {
  1874. position:absolute;
  1875. align-self:center;
  1876. padding:2px 2px 2px 2px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u40827_text {
  1881. border-width:0px;
  1882. word-wrap:break-word;
  1883. text-transform:none;
  1884. visibility:hidden;
  1885. }
  1886. #u40828 {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:0px;
  1892. height:0px;
  1893. }
  1894. #u40829_img {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:5px;
  1900. height:5px;
  1901. }
  1902. #u40829 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:323px;
  1906. top:85px;
  1907. width:5px;
  1908. height:5px;
  1909. display:flex;
  1910. }
  1911. #u40829 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 2px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u40829_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. visibility:hidden;
  1923. }
  1924. #u40830_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:5px;
  1930. height:5px;
  1931. }
  1932. #u40830 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:339px;
  1936. top:85px;
  1937. width:5px;
  1938. height:5px;
  1939. display:flex;
  1940. }
  1941. #u40830 .text {
  1942. position:absolute;
  1943. align-self:center;
  1944. padding:2px 2px 2px 2px;
  1945. box-sizing:border-box;
  1946. width:100%;
  1947. }
  1948. #u40830_text {
  1949. border-width:0px;
  1950. word-wrap:break-word;
  1951. text-transform:none;
  1952. visibility:hidden;
  1953. }
  1954. #u40831_img {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:0px;
  1958. top:0px;
  1959. width:7px;
  1960. height:7px;
  1961. }
  1962. #u40831 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:330px;
  1966. top:84px;
  1967. width:7px;
  1968. height:7px;
  1969. display:flex;
  1970. }
  1971. #u40831 .text {
  1972. position:absolute;
  1973. align-self:center;
  1974. padding:2px 2px 2px 2px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u40831_text {
  1979. border-width:0px;
  1980. word-wrap:break-word;
  1981. text-transform:none;
  1982. visibility:hidden;
  1983. }
  1984. #u40832_img {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:19px;
  1990. height:2px;
  1991. }
  1992. #u40832 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:347px;
  1996. top:87px;
  1997. width:18px;
  1998. height:1px;
  1999. display:flex;
  2000. -webkit-transform:rotate(90deg);
  2001. -moz-transform:rotate(90deg);
  2002. -ms-transform:rotate(90deg);
  2003. transform:rotate(90deg);
  2004. }
  2005. #u40832 .text {
  2006. position:absolute;
  2007. align-self:center;
  2008. padding:2px 2px 2px 2px;
  2009. box-sizing:border-box;
  2010. width:100%;
  2011. }
  2012. #u40832_text {
  2013. border-width:0px;
  2014. word-wrap:break-word;
  2015. text-transform:none;
  2016. visibility:hidden;
  2017. }
  2018. #u40833_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:169px;
  2024. height:40px;
  2025. background:inherit;
  2026. background-color:rgba(255, 255, 255, 0);
  2027. border:none;
  2028. border-left:0px;
  2029. border-top:0px;
  2030. border-right:0px;
  2031. border-radius:0px;
  2032. border-bottom-right-radius:0px;
  2033. border-bottom-left-radius:0px;
  2034. -moz-box-shadow:none;
  2035. -webkit-box-shadow:none;
  2036. box-shadow:none;
  2037. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2038. font-weight:500;
  2039. font-style:normal;
  2040. font-size:28px;
  2041. color:#FFFFFF;
  2042. text-align:right;
  2043. }
  2044. #u40833 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:132px;
  2048. top:341px;
  2049. width:169px;
  2050. height:40px;
  2051. display:flex;
  2052. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2053. font-weight:500;
  2054. font-style:normal;
  2055. font-size:28px;
  2056. color:#FFFFFF;
  2057. text-align:right;
  2058. }
  2059. #u40833 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:0px 0px 0px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u40833_text {
  2067. border-width:0px;
  2068. white-space:nowrap;
  2069. text-transform:none;
  2070. }
  2071. #u40834_div {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:360px;
  2077. height:384px;
  2078. background:inherit;
  2079. background-color:rgba(255, 255, 255, 1);
  2080. border:none;
  2081. border-bottom:0px;
  2082. border-radius:18px;
  2083. border-bottom-right-radius:0px;
  2084. border-bottom-left-radius:0px;
  2085. -moz-box-shadow:none;
  2086. -webkit-box-shadow:none;
  2087. box-shadow:none;
  2088. }
  2089. #u40834 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:37px;
  2093. top:400px;
  2094. width:360px;
  2095. height:384px;
  2096. display:flex;
  2097. }
  2098. #u40834 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 2px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u40834_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u40835_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:73px;
  2117. height:25px;
  2118. background:inherit;
  2119. background-color:rgba(255, 255, 255, 0);
  2120. border:none;
  2121. border-left:0px;
  2122. border-top:0px;
  2123. border-right:0px;
  2124. border-radius:0px;
  2125. border-bottom-right-radius:0px;
  2126. border-bottom-left-radius:0px;
  2127. -moz-box-shadow:none;
  2128. -webkit-box-shadow:none;
  2129. box-shadow:none;
  2130. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2131. font-weight:500;
  2132. font-style:normal;
  2133. font-size:18px;
  2134. color:#5C93FF;
  2135. text-align:center;
  2136. }
  2137. #u40835 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:180px;
  2141. top:433px;
  2142. width:73px;
  2143. height:25px;
  2144. display:flex;
  2145. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2146. font-weight:500;
  2147. font-style:normal;
  2148. font-size:18px;
  2149. color:#5C93FF;
  2150. text-align:center;
  2151. }
  2152. #u40835 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:0px 0px 0px 0px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u40835_text {
  2160. border-width:0px;
  2161. white-space:nowrap;
  2162. text-transform:none;
  2163. }
  2164. #u40836_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:30px;
  2170. height:30px;
  2171. }
  2172. #u40836 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:57px;
  2176. top:553px;
  2177. width:30px;
  2178. height:30px;
  2179. display:flex;
  2180. color:#FFFFFF;
  2181. }
  2182. #u40836 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:2px 2px 2px 2px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u40836_text {
  2190. border-width:0px;
  2191. word-wrap:break-word;
  2192. text-transform:none;
  2193. }
  2194. #u40837_div {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:0px;
  2199. width:109px;
  2200. height:25px;
  2201. background:inherit;
  2202. background-color:rgba(255, 255, 255, 0);
  2203. border:none;
  2204. border-left:0px;
  2205. border-top:0px;
  2206. border-right:0px;
  2207. border-radius:0px;
  2208. border-bottom-right-radius:0px;
  2209. border-bottom-left-radius:0px;
  2210. -moz-box-shadow:none;
  2211. -webkit-box-shadow:none;
  2212. box-shadow:none;
  2213. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2214. font-weight:500;
  2215. font-style:normal;
  2216. font-size:18px;
  2217. color:#5C93FF;
  2218. }
  2219. #u40837 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:95px;
  2223. top:553px;
  2224. width:109px;
  2225. height:25px;
  2226. display:flex;
  2227. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2228. font-weight:500;
  2229. font-style:normal;
  2230. font-size:18px;
  2231. color:#5C93FF;
  2232. }
  2233. #u40837 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:0px 0px 0px 0px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u40837_text {
  2241. border-width:0px;
  2242. white-space:nowrap;
  2243. text-transform:none;
  2244. }
  2245. #u40838_div {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:169px;
  2251. height:30px;
  2252. background:inherit;
  2253. background-color:rgba(255, 255, 255, 0);
  2254. border:none;
  2255. border-left:0px;
  2256. border-top:0px;
  2257. border-right:0px;
  2258. border-radius:0px;
  2259. border-bottom-right-radius:0px;
  2260. border-bottom-left-radius:0px;
  2261. -moz-box-shadow:none;
  2262. -webkit-box-shadow:none;
  2263. box-shadow:none;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:12px;
  2268. line-height:30px;
  2269. }
  2270. #u40838 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:95px;
  2274. top:578px;
  2275. width:169px;
  2276. height:30px;
  2277. display:flex;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:12px;
  2282. line-height:30px;
  2283. }
  2284. #u40838 .text {
  2285. position:absolute;
  2286. align-self:flex-start;
  2287. padding:0px 0px 0px 0px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u40838_text {
  2292. border-width:0px;
  2293. white-space:nowrap;
  2294. text-transform:none;
  2295. }
  2296. #u40839_img {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:30px;
  2302. height:30px;
  2303. }
  2304. #u40839 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:57px;
  2308. top:623px;
  2309. width:30px;
  2310. height:30px;
  2311. display:flex;
  2312. color:#FFFFFF;
  2313. }
  2314. #u40839 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 2px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u40839_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. }
  2326. #u40840_div {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:73px;
  2332. height:25px;
  2333. background:inherit;
  2334. background-color:rgba(255, 255, 255, 0);
  2335. border:none;
  2336. border-left:0px;
  2337. border-top:0px;
  2338. border-right:0px;
  2339. border-radius:0px;
  2340. border-bottom-right-radius:0px;
  2341. border-bottom-left-radius:0px;
  2342. -moz-box-shadow:none;
  2343. -webkit-box-shadow:none;
  2344. box-shadow:none;
  2345. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2346. font-weight:500;
  2347. font-style:normal;
  2348. font-size:18px;
  2349. color:#5C93FF;
  2350. }
  2351. #u40840 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:95px;
  2355. top:625px;
  2356. width:73px;
  2357. height:25px;
  2358. display:flex;
  2359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2360. font-weight:500;
  2361. font-style:normal;
  2362. font-size:18px;
  2363. color:#5C93FF;
  2364. }
  2365. #u40840 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:0px 0px 0px 0px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u40840_text {
  2373. border-width:0px;
  2374. white-space:nowrap;
  2375. text-transform:none;
  2376. }
  2377. #u40841_div {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:205px;
  2383. height:30px;
  2384. background:inherit;
  2385. background-color:rgba(255, 255, 255, 0);
  2386. border:none;
  2387. border-left:0px;
  2388. border-top:0px;
  2389. border-right:0px;
  2390. border-radius:0px;
  2391. border-bottom-right-radius:0px;
  2392. border-bottom-left-radius:0px;
  2393. -moz-box-shadow:none;
  2394. -webkit-box-shadow:none;
  2395. box-shadow:none;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:12px;
  2400. line-height:30px;
  2401. }
  2402. #u40841 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:95px;
  2406. top:650px;
  2407. width:205px;
  2408. height:30px;
  2409. display:flex;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:12px;
  2414. line-height:30px;
  2415. }
  2416. #u40841 .text {
  2417. position:absolute;
  2418. align-self:flex-start;
  2419. padding:0px 0px 0px 0px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u40841_text {
  2424. border-width:0px;
  2425. white-space:nowrap;
  2426. text-transform:none;
  2427. }
  2428. #u40842_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:30px;
  2434. height:30px;
  2435. }
  2436. #u40842 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:57px;
  2440. top:694px;
  2441. width:30px;
  2442. height:30px;
  2443. display:flex;
  2444. color:#FFFFFF;
  2445. }
  2446. #u40842 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 2px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u40842_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. }
  2458. #u40843_div {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:73px;
  2464. height:25px;
  2465. background:inherit;
  2466. background-color:rgba(255, 255, 255, 0);
  2467. border:none;
  2468. border-left:0px;
  2469. border-top:0px;
  2470. border-right:0px;
  2471. border-radius:0px;
  2472. border-bottom-right-radius:0px;
  2473. border-bottom-left-radius:0px;
  2474. -moz-box-shadow:none;
  2475. -webkit-box-shadow:none;
  2476. box-shadow:none;
  2477. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2478. font-weight:500;
  2479. font-style:normal;
  2480. font-size:18px;
  2481. color:#5C93FF;
  2482. }
  2483. #u40843 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:95px;
  2487. top:696px;
  2488. width:73px;
  2489. height:25px;
  2490. display:flex;
  2491. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2492. font-weight:500;
  2493. font-style:normal;
  2494. font-size:18px;
  2495. color:#5C93FF;
  2496. }
  2497. #u40843 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:0px 0px 0px 0px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u40843_text {
  2505. border-width:0px;
  2506. white-space:nowrap;
  2507. text-transform:none;
  2508. }
  2509. #u40844_div {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:286px;
  2515. height:34px;
  2516. background:inherit;
  2517. background-color:rgba(255, 255, 255, 0);
  2518. border:none;
  2519. border-left:0px;
  2520. border-top:0px;
  2521. border-right:0px;
  2522. border-radius:0px;
  2523. border-bottom-right-radius:0px;
  2524. border-bottom-left-radius:0px;
  2525. -moz-box-shadow:none;
  2526. -webkit-box-shadow:none;
  2527. box-shadow:none;
  2528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. font-size:12px;
  2532. }
  2533. #u40844 {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:95px;
  2537. top:726px;
  2538. width:286px;
  2539. height:34px;
  2540. display:flex;
  2541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2542. font-weight:400;
  2543. font-style:normal;
  2544. font-size:12px;
  2545. }
  2546. #u40844 .text {
  2547. position:absolute;
  2548. align-self:flex-start;
  2549. padding:0px 0px 0px 0px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u40844_text {
  2554. border-width:0px;
  2555. word-wrap:break-word;
  2556. text-transform:none;
  2557. }
  2558. #u40845_img {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:300px;
  2564. height:170px;
  2565. }
  2566. #u40845 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:66px;
  2570. top:141px;
  2571. width:300px;
  2572. height:170px;
  2573. display:flex;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:18px;
  2578. }
  2579. #u40845 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 2px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u40845_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. }
  2591. #u40847_img {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:433px;
  2597. height:865px;
  2598. }
  2599. #u40847 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:1359px;
  2603. top:0px;
  2604. width:433px;
  2605. height:865px;
  2606. display:flex;
  2607. }
  2608. #u40847 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:2px 2px 2px 2px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u40847_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. visibility:hidden;
  2620. }
  2621. #u40848_div {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:375px;
  2627. height:40px;
  2628. background:inherit;
  2629. background-color:rgba(255, 255, 255, 1);
  2630. box-sizing:border-box;
  2631. border-width:1px;
  2632. border-style:solid;
  2633. border-color:rgba(215, 215, 215, 1);
  2634. border-left:0px;
  2635. border-top:0px;
  2636. border-right:0px;
  2637. border-radius:0px;
  2638. border-bottom-right-radius:0px;
  2639. border-bottom-left-radius:0px;
  2640. -moz-box-shadow:none;
  2641. -webkit-box-shadow:none;
  2642. box-shadow:none;
  2643. }
  2644. #u40848 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:1388px;
  2648. top:67px;
  2649. width:375px;
  2650. height:40px;
  2651. display:flex;
  2652. }
  2653. #u40848 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:2px 2px 2px 2px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u40848_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. visibility:hidden;
  2665. }
  2666. #u40849 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:0px;
  2672. height:0px;
  2673. }
  2674. #u40850_div {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:88px;
  2680. height:32px;
  2681. background:inherit;
  2682. background-color:rgba(255, 255, 255, 1);
  2683. box-sizing:border-box;
  2684. border-width:1px;
  2685. border-style:solid;
  2686. border-color:rgba(242, 242, 242, 1);
  2687. border-radius:33px;
  2688. -moz-box-shadow:none;
  2689. -webkit-box-shadow:none;
  2690. box-shadow:none;
  2691. }
  2692. #u40850 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:1668px;
  2696. top:71px;
  2697. width:88px;
  2698. height:32px;
  2699. display:flex;
  2700. }
  2701. #u40850 .text {
  2702. position:absolute;
  2703. align-self:center;
  2704. padding:2px 2px 2px 2px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u40850_text {
  2709. border-width:0px;
  2710. word-wrap:break-word;
  2711. text-transform:none;
  2712. visibility:hidden;
  2713. }
  2714. #u40851 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:0px;
  2720. height:0px;
  2721. }
  2722. #u40852_img {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:0px;
  2726. top:0px;
  2727. width:18px;
  2728. height:18px;
  2729. }
  2730. #u40852 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:1731px;
  2734. top:78px;
  2735. width:18px;
  2736. height:18px;
  2737. display:flex;
  2738. }
  2739. #u40852 .text {
  2740. position:absolute;
  2741. align-self:center;
  2742. padding:2px 2px 2px 2px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u40852_text {
  2747. border-width:0px;
  2748. word-wrap:break-word;
  2749. text-transform:none;
  2750. visibility:hidden;
  2751. }
  2752. #u40853_img {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:6px;
  2758. height:6px;
  2759. }
  2760. #u40853 {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:1737px;
  2764. top:84px;
  2765. width:6px;
  2766. height:6px;
  2767. display:flex;
  2768. }
  2769. #u40853 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 2px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u40853_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. visibility:hidden;
  2781. }
  2782. #u40854 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:0px;
  2788. height:0px;
  2789. }
  2790. #u40855_img {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:5px;
  2796. height:5px;
  2797. }
  2798. #u40855 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:1682px;
  2802. top:85px;
  2803. width:5px;
  2804. height:5px;
  2805. display:flex;
  2806. }
  2807. #u40855 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:2px 2px 2px 2px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u40855_text {
  2815. border-width:0px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. visibility:hidden;
  2819. }
  2820. #u40856_img {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:5px;
  2826. height:5px;
  2827. }
  2828. #u40856 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:1698px;
  2832. top:85px;
  2833. width:5px;
  2834. height:5px;
  2835. display:flex;
  2836. }
  2837. #u40856 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 2px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u40856_text {
  2845. border-width:0px;
  2846. word-wrap:break-word;
  2847. text-transform:none;
  2848. visibility:hidden;
  2849. }
  2850. #u40857_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:7px;
  2856. height:7px;
  2857. }
  2858. #u40857 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:1689px;
  2862. top:84px;
  2863. width:7px;
  2864. height:7px;
  2865. display:flex;
  2866. }
  2867. #u40857 .text {
  2868. position:absolute;
  2869. align-self:center;
  2870. padding:2px 2px 2px 2px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u40857_text {
  2875. border-width:0px;
  2876. word-wrap:break-word;
  2877. text-transform:none;
  2878. visibility:hidden;
  2879. }
  2880. #u40858_img {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:19px;
  2886. height:2px;
  2887. }
  2888. #u40858 {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:1706px;
  2892. top:87px;
  2893. width:18px;
  2894. height:1px;
  2895. display:flex;
  2896. -webkit-transform:rotate(90deg);
  2897. -moz-transform:rotate(90deg);
  2898. -ms-transform:rotate(90deg);
  2899. transform:rotate(90deg);
  2900. }
  2901. #u40858 .text {
  2902. position:absolute;
  2903. align-self:center;
  2904. padding:2px 2px 2px 2px;
  2905. box-sizing:border-box;
  2906. width:100%;
  2907. }
  2908. #u40858_text {
  2909. border-width:0px;
  2910. word-wrap:break-word;
  2911. text-transform:none;
  2912. visibility:hidden;
  2913. }
  2914. #u40859_img {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:375px;
  2920. height:44px;
  2921. }
  2922. #u40859 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:1388px;
  2926. top:24px;
  2927. width:375px;
  2928. height:44px;
  2929. display:flex;
  2930. }
  2931. #u40859 .text {
  2932. position:absolute;
  2933. align-self:center;
  2934. padding:2px 2px 2px 2px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u40859_text {
  2939. border-width:0px;
  2940. word-wrap:break-word;
  2941. text-transform:none;
  2942. visibility:hidden;
  2943. }
  2944. #u40860_div {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:0px;
  2948. top:0px;
  2949. width:375px;
  2950. height:50px;
  2951. background:inherit;
  2952. background-color:rgba(255, 255, 255, 1);
  2953. box-sizing:border-box;
  2954. border-width:1px;
  2955. border-style:solid;
  2956. border-color:rgba(242, 242, 242, 1);
  2957. border-radius:26px;
  2958. border-top-left-radius:0px;
  2959. border-top-right-radius:0px;
  2960. -moz-box-shadow:none;
  2961. -webkit-box-shadow:none;
  2962. box-shadow:none;
  2963. }
  2964. #u40860 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:1388px;
  2968. top:788px;
  2969. width:375px;
  2970. height:50px;
  2971. display:flex;
  2972. }
  2973. #u40860 .text {
  2974. position:absolute;
  2975. align-self:center;
  2976. padding:2px 2px 2px 2px;
  2977. box-sizing:border-box;
  2978. width:100%;
  2979. }
  2980. #u40860_text {
  2981. border-width:0px;
  2982. word-wrap:break-word;
  2983. text-transform:none;
  2984. visibility:hidden;
  2985. }
  2986. #u40861 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:0px;
  2992. height:0px;
  2993. }
  2994. #u40862_img {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:0px;
  2998. top:0px;
  2999. width:24px;
  3000. height:24px;
  3001. }
  3002. #u40862 {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:1428px;
  3006. top:792px;
  3007. width:24px;
  3008. height:24px;
  3009. display:flex;
  3010. font-size:8px;
  3011. }
  3012. #u40862 .text {
  3013. position:absolute;
  3014. align-self:center;
  3015. padding:2px 2px 2px 2px;
  3016. box-sizing:border-box;
  3017. width:100%;
  3018. }
  3019. #u40862_text {
  3020. border-width:0px;
  3021. word-wrap:break-word;
  3022. text-transform:none;
  3023. }
  3024. #u40863_div {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:25px;
  3030. height:17px;
  3031. background:inherit;
  3032. background-color:rgba(255, 255, 255, 0);
  3033. border:none;
  3034. border-radius:0px;
  3035. -moz-box-shadow:none;
  3036. -webkit-box-shadow:none;
  3037. box-shadow:none;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:12px;
  3042. }
  3043. #u40863 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:1428px;
  3047. top:817px;
  3048. width:25px;
  3049. height:17px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:12px;
  3055. }
  3056. #u40863 .text {
  3057. position:absolute;
  3058. align-self:flex-start;
  3059. padding:0px 0px 0px 0px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u40863_text {
  3064. border-width:0px;
  3065. white-space:nowrap;
  3066. text-transform:none;
  3067. }
  3068. #u40864 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:0px;
  3074. height:0px;
  3075. }
  3076. #u40865_img {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:24px;
  3082. height:24px;
  3083. }
  3084. #u40865 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:1698px;
  3088. top:794px;
  3089. width:24px;
  3090. height:24px;
  3091. display:flex;
  3092. font-size:8px;
  3093. }
  3094. #u40865 .text {
  3095. position:absolute;
  3096. align-self:center;
  3097. padding:2px 2px 2px 2px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u40865_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. }
  3106. #u40866_div {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:25px;
  3112. height:17px;
  3113. background:inherit;
  3114. background-color:rgba(255, 255, 255, 0);
  3115. border:none;
  3116. border-radius:0px;
  3117. -moz-box-shadow:none;
  3118. -webkit-box-shadow:none;
  3119. box-shadow:none;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. }
  3125. #u40866 {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:1698px;
  3129. top:819px;
  3130. width:25px;
  3131. height:17px;
  3132. display:flex;
  3133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3134. font-weight:400;
  3135. font-style:normal;
  3136. font-size:12px;
  3137. }
  3138. #u40866 .text {
  3139. position:absolute;
  3140. align-self:flex-start;
  3141. padding:0px 0px 0px 0px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u40866_text {
  3146. border-width:0px;
  3147. white-space:nowrap;
  3148. text-transform:none;
  3149. }
  3150. #u40867_div {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:375px;
  3156. height:681px;
  3157. background:inherit;
  3158. background-color:rgba(242, 242, 242, 0.462745098039216);
  3159. border:none;
  3160. border-radius:0px;
  3161. -moz-box-shadow:none;
  3162. -webkit-box-shadow:none;
  3163. box-shadow:none;
  3164. }
  3165. #u40867 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:1388px;
  3169. top:107px;
  3170. width:375px;
  3171. height:681px;
  3172. display:flex;
  3173. }
  3174. #u40867 .text {
  3175. position:absolute;
  3176. align-self:center;
  3177. padding:2px 2px 2px 2px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u40867_text {
  3182. border-width:0px;
  3183. word-wrap:break-word;
  3184. text-transform:none;
  3185. visibility:hidden;
  3186. }
  3187. #u40868 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:0px;
  3193. height:0px;
  3194. }
  3195. #u40869_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:24px;
  3201. height:24px;
  3202. }
  3203. #u40869 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:1610px;
  3207. top:792px;
  3208. width:24px;
  3209. height:24px;
  3210. display:flex;
  3211. font-size:8px;
  3212. }
  3213. #u40869 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 2px 2px 2px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u40869_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. }
  3225. #u40870_div {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:37px;
  3231. height:17px;
  3232. background:inherit;
  3233. background-color:rgba(255, 255, 255, 0);
  3234. border:none;
  3235. border-radius:0px;
  3236. -moz-box-shadow:none;
  3237. -webkit-box-shadow:none;
  3238. box-shadow:none;
  3239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3240. font-weight:400;
  3241. font-style:normal;
  3242. font-size:12px;
  3243. }
  3244. #u40870 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:1604px;
  3248. top:817px;
  3249. width:37px;
  3250. height:17px;
  3251. display:flex;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:12px;
  3256. }
  3257. #u40870 .text {
  3258. position:absolute;
  3259. align-self:flex-start;
  3260. padding:0px 0px 0px 0px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u40870_text {
  3265. border-width:0px;
  3266. white-space:nowrap;
  3267. text-transform:none;
  3268. }
  3269. #u40871 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:0px;
  3275. height:0px;
  3276. }
  3277. #u40872_img {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:24px;
  3283. height:24px;
  3284. }
  3285. #u40872 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:1516px;
  3289. top:792px;
  3290. width:24px;
  3291. height:24px;
  3292. display:flex;
  3293. font-size:8px;
  3294. }
  3295. #u40872 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 2px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u40872_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. }
  3307. #u40873_div {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:37px;
  3313. height:17px;
  3314. background:inherit;
  3315. background-color:rgba(255, 255, 255, 0);
  3316. border:none;
  3317. border-radius:0px;
  3318. -moz-box-shadow:none;
  3319. -webkit-box-shadow:none;
  3320. box-shadow:none;
  3321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3322. font-weight:400;
  3323. font-style:normal;
  3324. font-size:12px;
  3325. }
  3326. #u40873 {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:1510px;
  3330. top:817px;
  3331. width:37px;
  3332. height:17px;
  3333. display:flex;
  3334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:12px;
  3338. }
  3339. #u40873 .text {
  3340. position:absolute;
  3341. align-self:flex-start;
  3342. padding:0px 0px 0px 0px;
  3343. box-sizing:border-box;
  3344. width:100%;
  3345. }
  3346. #u40873_text {
  3347. border-width:0px;
  3348. white-space:nowrap;
  3349. text-transform:none;
  3350. }
  3351. #u40874_div {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:0px;
  3356. width:375px;
  3357. height:732px;
  3358. background:inherit;
  3359. background-color:rgba(244, 244, 244, 1);
  3360. box-sizing:border-box;
  3361. border-width:1px;
  3362. border-style:solid;
  3363. border-color:rgba(242, 242, 242, 1);
  3364. border-radius:26px;
  3365. border-top-left-radius:0px;
  3366. border-top-right-radius:0px;
  3367. -moz-box-shadow:none;
  3368. -webkit-box-shadow:none;
  3369. box-shadow:none;
  3370. }
  3371. #u40874 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:1388px;
  3375. top:107px;
  3376. width:375px;
  3377. height:732px;
  3378. display:flex;
  3379. }
  3380. #u40874 .text {
  3381. position:absolute;
  3382. align-self:center;
  3383. padding:2px 2px 2px 2px;
  3384. box-sizing:border-box;
  3385. width:100%;
  3386. }
  3387. #u40874_text {
  3388. border-width:0px;
  3389. word-wrap:break-word;
  3390. text-transform:none;
  3391. visibility:hidden;
  3392. }
  3393. #u40875_div {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:375px;
  3399. height:732px;
  3400. background:inherit;
  3401. background-color:rgba(242, 242, 242, 1);
  3402. box-sizing:border-box;
  3403. border-width:1px;
  3404. border-style:solid;
  3405. border-color:rgba(242, 242, 242, 1);
  3406. border-radius:26px;
  3407. border-top-left-radius:0px;
  3408. border-top-right-radius:0px;
  3409. -moz-box-shadow:none;
  3410. -webkit-box-shadow:none;
  3411. box-shadow:none;
  3412. }
  3413. #u40875 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:1388px;
  3417. top:107px;
  3418. width:375px;
  3419. height:732px;
  3420. display:flex;
  3421. }
  3422. #u40875 .text {
  3423. position:absolute;
  3424. align-self:center;
  3425. padding:2px 2px 2px 2px;
  3426. box-sizing:border-box;
  3427. width:100%;
  3428. }
  3429. #u40875_text {
  3430. border-width:0px;
  3431. word-wrap:break-word;
  3432. text-transform:none;
  3433. visibility:hidden;
  3434. }
  3435. #u40876 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:0px;
  3441. height:0px;
  3442. }
  3443. #u40877_div {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:375px;
  3449. height:40px;
  3450. background:inherit;
  3451. background-color:rgba(255, 255, 255, 1);
  3452. border:none;
  3453. border-left:0px;
  3454. border-top:0px;
  3455. border-right:0px;
  3456. border-radius:0px;
  3457. border-bottom-right-radius:0px;
  3458. border-bottom-left-radius:0px;
  3459. -moz-box-shadow:none;
  3460. -webkit-box-shadow:none;
  3461. box-shadow:none;
  3462. }
  3463. #u40877 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:1388px;
  3467. top:67px;
  3468. width:375px;
  3469. height:40px;
  3470. display:flex;
  3471. }
  3472. #u40877 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 2px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u40877_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u40878 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:0px;
  3491. height:0px;
  3492. }
  3493. #u40879_div {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:88px;
  3499. height:32px;
  3500. background:inherit;
  3501. background-color:rgba(255, 255, 255, 1);
  3502. box-sizing:border-box;
  3503. border-width:1px;
  3504. border-style:solid;
  3505. border-color:rgba(242, 242, 242, 1);
  3506. border-radius:33px;
  3507. -moz-box-shadow:none;
  3508. -webkit-box-shadow:none;
  3509. box-shadow:none;
  3510. }
  3511. #u40879 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:1665px;
  3515. top:69px;
  3516. width:88px;
  3517. height:32px;
  3518. display:flex;
  3519. }
  3520. #u40879 .text {
  3521. position:absolute;
  3522. align-self:center;
  3523. padding:2px 2px 2px 2px;
  3524. box-sizing:border-box;
  3525. width:100%;
  3526. }
  3527. #u40879_text {
  3528. border-width:0px;
  3529. word-wrap:break-word;
  3530. text-transform:none;
  3531. visibility:hidden;
  3532. }
  3533. #u40880 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:0px;
  3539. height:0px;
  3540. }
  3541. #u40881_img {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:18px;
  3547. height:18px;
  3548. }
  3549. #u40881 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:1728px;
  3553. top:76px;
  3554. width:18px;
  3555. height:18px;
  3556. display:flex;
  3557. }
  3558. #u40881 .text {
  3559. position:absolute;
  3560. align-self:center;
  3561. padding:2px 2px 2px 2px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u40881_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. visibility:hidden;
  3570. }
  3571. #u40882_img {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:0px;
  3575. top:0px;
  3576. width:6px;
  3577. height:6px;
  3578. }
  3579. #u40882 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:1734px;
  3583. top:82px;
  3584. width:6px;
  3585. height:6px;
  3586. display:flex;
  3587. }
  3588. #u40882 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:2px 2px 2px 2px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u40882_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u40883 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:0px;
  3607. height:0px;
  3608. }
  3609. #u40884_img {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:5px;
  3615. height:5px;
  3616. }
  3617. #u40884 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:1679px;
  3621. top:83px;
  3622. width:5px;
  3623. height:5px;
  3624. display:flex;
  3625. }
  3626. #u40884 .text {
  3627. position:absolute;
  3628. align-self:center;
  3629. padding:2px 2px 2px 2px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u40884_text {
  3634. border-width:0px;
  3635. word-wrap:break-word;
  3636. text-transform:none;
  3637. visibility:hidden;
  3638. }
  3639. #u40885_img {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:5px;
  3645. height:5px;
  3646. }
  3647. #u40885 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:1695px;
  3651. top:83px;
  3652. width:5px;
  3653. height:5px;
  3654. display:flex;
  3655. }
  3656. #u40885 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 2px 2px 2px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u40885_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u40886_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:7px;
  3675. height:7px;
  3676. }
  3677. #u40886 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:1686px;
  3681. top:82px;
  3682. width:7px;
  3683. height:7px;
  3684. display:flex;
  3685. }
  3686. #u40886 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 2px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u40886_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u40887_img {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:19px;
  3705. height:2px;
  3706. }
  3707. #u40887 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:1703px;
  3711. top:85px;
  3712. width:18px;
  3713. height:1px;
  3714. display:flex;
  3715. -webkit-transform:rotate(90deg);
  3716. -moz-transform:rotate(90deg);
  3717. -ms-transform:rotate(90deg);
  3718. transform:rotate(90deg);
  3719. }
  3720. #u40887 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 2px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u40887_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u40888_div {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:12px;
  3739. height:12px;
  3740. background:inherit;
  3741. background-color:rgba(255, 255, 255, 0);
  3742. box-sizing:border-box;
  3743. border-width:2px;
  3744. border-style:solid;
  3745. border-color:rgba(51, 51, 51, 1);
  3746. border-right:0px;
  3747. border-bottom:0px;
  3748. border-radius:0px;
  3749. border-top-right-radius:0px;
  3750. border-bottom-left-radius:0px;
  3751. -moz-box-shadow:none;
  3752. -webkit-box-shadow:none;
  3753. box-shadow:none;
  3754. }
  3755. #u40888 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:1404px;
  3759. top:79px;
  3760. width:12px;
  3761. height:12px;
  3762. display:flex;
  3763. -webkit-transform:rotate(315deg);
  3764. -moz-transform:rotate(315deg);
  3765. -ms-transform:rotate(315deg);
  3766. transform:rotate(315deg);
  3767. }
  3768. #u40888 .text {
  3769. position:absolute;
  3770. align-self:center;
  3771. padding:2px 2px 2px 2px;
  3772. box-sizing:border-box;
  3773. width:100%;
  3774. }
  3775. #u40888_text {
  3776. border-width:0px;
  3777. word-wrap:break-word;
  3778. text-transform:none;
  3779. visibility:hidden;
  3780. }
  3781. #u40889_div {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:0px;
  3785. top:0px;
  3786. width:109px;
  3787. height:25px;
  3788. background:inherit;
  3789. background-color:rgba(255, 255, 255, 0);
  3790. border:none;
  3791. border-radius:0px;
  3792. -moz-box-shadow:none;
  3793. -webkit-box-shadow:none;
  3794. box-shadow:none;
  3795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3796. font-weight:400;
  3797. font-style:normal;
  3798. font-size:18px;
  3799. }
  3800. #u40889 {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:1418px;
  3804. top:72px;
  3805. width:109px;
  3806. height:25px;
  3807. display:flex;
  3808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3809. font-weight:400;
  3810. font-style:normal;
  3811. font-size:18px;
  3812. }
  3813. #u40889 .text {
  3814. position:absolute;
  3815. align-self:flex-start;
  3816. padding:0px 0px 0px 0px;
  3817. box-sizing:border-box;
  3818. width:100%;
  3819. }
  3820. #u40889_text {
  3821. border-width:0px;
  3822. white-space:nowrap;
  3823. text-transform:none;
  3824. }
  3825. #u40890_div {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:375px;
  3831. height:833px;
  3832. background:inherit;
  3833. background-color:rgba(255, 255, 255, 0.996078431372549);
  3834. border:none;
  3835. border-radius:0px;
  3836. -moz-box-shadow:none;
  3837. -webkit-box-shadow:none;
  3838. box-shadow:none;
  3839. }
  3840. #u40890 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:1388px;
  3844. top:159px;
  3845. width:375px;
  3846. height:833px;
  3847. display:flex;
  3848. }
  3849. #u40890 .text {
  3850. position:absolute;
  3851. align-self:center;
  3852. padding:2px 2px 2px 2px;
  3853. box-sizing:border-box;
  3854. width:100%;
  3855. }
  3856. #u40890_text {
  3857. border-width:0px;
  3858. word-wrap:break-word;
  3859. text-transform:none;
  3860. visibility:hidden;
  3861. }
  3862. #u40891_div {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:73px;
  3868. height:25px;
  3869. background:inherit;
  3870. background-color:rgba(255, 255, 255, 0);
  3871. border:none;
  3872. border-radius:0px;
  3873. -moz-box-shadow:none;
  3874. -webkit-box-shadow:none;
  3875. box-shadow:none;
  3876. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3877. font-weight:500;
  3878. font-style:normal;
  3879. font-size:18px;
  3880. }
  3881. #u40891 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:1408px;
  3885. top:178px;
  3886. width:73px;
  3887. height:25px;
  3888. display:flex;
  3889. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3890. font-weight:500;
  3891. font-style:normal;
  3892. font-size:18px;
  3893. }
  3894. #u40891 .text {
  3895. position:absolute;
  3896. align-self:flex-start;
  3897. padding:0px 0px 0px 0px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u40891_text {
  3902. border-width:0px;
  3903. white-space:nowrap;
  3904. text-transform:none;
  3905. }
  3906. #u40892 {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:0px;
  3912. height:0px;
  3913. }
  3914. #u40893_div {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:0px;
  3918. top:0px;
  3919. width:375px;
  3920. height:40px;
  3921. background:inherit;
  3922. background-color:rgba(255, 255, 255, 1);
  3923. border:none;
  3924. border-left:0px;
  3925. border-top:0px;
  3926. border-right:0px;
  3927. border-radius:0px;
  3928. border-bottom-right-radius:0px;
  3929. border-bottom-left-radius:0px;
  3930. -moz-box-shadow:none;
  3931. -webkit-box-shadow:none;
  3932. box-shadow:none;
  3933. }
  3934. #u40893 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:1841px;
  3938. top:67px;
  3939. width:375px;
  3940. height:40px;
  3941. display:flex;
  3942. }
  3943. #u40893 .text {
  3944. position:absolute;
  3945. align-self:center;
  3946. padding:2px 2px 2px 2px;
  3947. box-sizing:border-box;
  3948. width:100%;
  3949. }
  3950. #u40893_text {
  3951. border-width:0px;
  3952. word-wrap:break-word;
  3953. text-transform:none;
  3954. visibility:hidden;
  3955. }
  3956. #u40894 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:0px;
  3962. height:0px;
  3963. }
  3964. #u40895_div {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:88px;
  3970. height:32px;
  3971. background:inherit;
  3972. background-color:rgba(255, 255, 255, 1);
  3973. box-sizing:border-box;
  3974. border-width:1px;
  3975. border-style:solid;
  3976. border-color:rgba(242, 242, 242, 1);
  3977. border-radius:33px;
  3978. -moz-box-shadow:none;
  3979. -webkit-box-shadow:none;
  3980. box-shadow:none;
  3981. }
  3982. #u40895 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:2118px;
  3986. top:69px;
  3987. width:88px;
  3988. height:32px;
  3989. display:flex;
  3990. }
  3991. #u40895 .text {
  3992. position:absolute;
  3993. align-self:center;
  3994. padding:2px 2px 2px 2px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u40895_text {
  3999. border-width:0px;
  4000. word-wrap:break-word;
  4001. text-transform:none;
  4002. visibility:hidden;
  4003. }
  4004. #u40896 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:0px;
  4008. top:0px;
  4009. width:0px;
  4010. height:0px;
  4011. }
  4012. #u40897_img {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:0px;
  4016. top:0px;
  4017. width:18px;
  4018. height:18px;
  4019. }
  4020. #u40897 {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:2181px;
  4024. top:76px;
  4025. width:18px;
  4026. height:18px;
  4027. display:flex;
  4028. }
  4029. #u40897 .text {
  4030. position:absolute;
  4031. align-self:center;
  4032. padding:2px 2px 2px 2px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u40897_text {
  4037. border-width:0px;
  4038. word-wrap:break-word;
  4039. text-transform:none;
  4040. visibility:hidden;
  4041. }
  4042. #u40898_img {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:6px;
  4048. height:6px;
  4049. }
  4050. #u40898 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:2187px;
  4054. top:82px;
  4055. width:6px;
  4056. height:6px;
  4057. display:flex;
  4058. }
  4059. #u40898 .text {
  4060. position:absolute;
  4061. align-self:center;
  4062. padding:2px 2px 2px 2px;
  4063. box-sizing:border-box;
  4064. width:100%;
  4065. }
  4066. #u40898_text {
  4067. border-width:0px;
  4068. word-wrap:break-word;
  4069. text-transform:none;
  4070. visibility:hidden;
  4071. }
  4072. #u40899 {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:0px;
  4076. top:0px;
  4077. width:0px;
  4078. height:0px;
  4079. }
  4080. #u40900_img {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:5px;
  4086. height:5px;
  4087. }
  4088. #u40900 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:2132px;
  4092. top:83px;
  4093. width:5px;
  4094. height:5px;
  4095. display:flex;
  4096. }
  4097. #u40900 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:2px 2px 2px 2px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u40900_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. visibility:hidden;
  4109. }
  4110. #u40901_img {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:5px;
  4116. height:5px;
  4117. }
  4118. #u40901 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:2148px;
  4122. top:83px;
  4123. width:5px;
  4124. height:5px;
  4125. display:flex;
  4126. }
  4127. #u40901 .text {
  4128. position:absolute;
  4129. align-self:center;
  4130. padding:2px 2px 2px 2px;
  4131. box-sizing:border-box;
  4132. width:100%;
  4133. }
  4134. #u40901_text {
  4135. border-width:0px;
  4136. word-wrap:break-word;
  4137. text-transform:none;
  4138. visibility:hidden;
  4139. }
  4140. #u40902_img {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:7px;
  4146. height:7px;
  4147. }
  4148. #u40902 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:2139px;
  4152. top:82px;
  4153. width:7px;
  4154. height:7px;
  4155. display:flex;
  4156. }
  4157. #u40902 .text {
  4158. position:absolute;
  4159. align-self:center;
  4160. padding:2px 2px 2px 2px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u40902_text {
  4165. border-width:0px;
  4166. word-wrap:break-word;
  4167. text-transform:none;
  4168. visibility:hidden;
  4169. }
  4170. #u40903_img {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:19px;
  4176. height:2px;
  4177. }
  4178. #u40903 {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:2156px;
  4182. top:85px;
  4183. width:18px;
  4184. height:1px;
  4185. display:flex;
  4186. -webkit-transform:rotate(90deg);
  4187. -moz-transform:rotate(90deg);
  4188. -ms-transform:rotate(90deg);
  4189. transform:rotate(90deg);
  4190. }
  4191. #u40903 .text {
  4192. position:absolute;
  4193. align-self:center;
  4194. padding:2px 2px 2px 2px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u40903_text {
  4199. border-width:0px;
  4200. word-wrap:break-word;
  4201. text-transform:none;
  4202. visibility:hidden;
  4203. }
  4204. #u40904_div {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:12px;
  4210. height:12px;
  4211. background:inherit;
  4212. background-color:rgba(255, 255, 255, 0);
  4213. box-sizing:border-box;
  4214. border-width:2px;
  4215. border-style:solid;
  4216. border-color:rgba(51, 51, 51, 1);
  4217. border-right:0px;
  4218. border-bottom:0px;
  4219. border-radius:0px;
  4220. border-top-right-radius:0px;
  4221. border-bottom-left-radius:0px;
  4222. -moz-box-shadow:none;
  4223. -webkit-box-shadow:none;
  4224. box-shadow:none;
  4225. }
  4226. #u40904 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:1857px;
  4230. top:79px;
  4231. width:12px;
  4232. height:12px;
  4233. display:flex;
  4234. -webkit-transform:rotate(315deg);
  4235. -moz-transform:rotate(315deg);
  4236. -ms-transform:rotate(315deg);
  4237. transform:rotate(315deg);
  4238. }
  4239. #u40904 .text {
  4240. position:absolute;
  4241. align-self:center;
  4242. padding:2px 2px 2px 2px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u40904_text {
  4247. border-width:0px;
  4248. word-wrap:break-word;
  4249. text-transform:none;
  4250. visibility:hidden;
  4251. }
  4252. #u40905_div {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:0px;
  4256. top:0px;
  4257. width:73px;
  4258. height:25px;
  4259. background:inherit;
  4260. background-color:rgba(255, 255, 255, 0);
  4261. border:none;
  4262. border-radius:0px;
  4263. -moz-box-shadow:none;
  4264. -webkit-box-shadow:none;
  4265. box-shadow:none;
  4266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:18px;
  4270. }
  4271. #u40905 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:1871px;
  4275. top:72px;
  4276. width:73px;
  4277. height:25px;
  4278. display:flex;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:18px;
  4283. }
  4284. #u40905 .text {
  4285. position:absolute;
  4286. align-self:flex-start;
  4287. padding:0px 0px 0px 0px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u40905_text {
  4292. border-width:0px;
  4293. white-space:nowrap;
  4294. text-transform:none;
  4295. }
  4296. #u40906_img {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:0px;
  4301. width:375px;
  4302. height:44px;
  4303. }
  4304. #u40906 {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:1841px;
  4308. top:24px;
  4309. width:375px;
  4310. height:44px;
  4311. display:flex;
  4312. }
  4313. #u40906 .text {
  4314. position:absolute;
  4315. align-self:center;
  4316. padding:2px 2px 2px 2px;
  4317. box-sizing:border-box;
  4318. width:100%;
  4319. }
  4320. #u40906_text {
  4321. border-width:0px;
  4322. word-wrap:break-word;
  4323. text-transform:none;
  4324. visibility:hidden;
  4325. }
  4326. #u40907_img {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:0px;
  4330. top:0px;
  4331. width:30px;
  4332. height:30px;
  4333. }
  4334. #u40907 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:57px;
  4338. top:473px;
  4339. width:30px;
  4340. height:30px;
  4341. display:flex;
  4342. color:#FFFFFF;
  4343. }
  4344. #u40907 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 2px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u40907_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. }
  4356. #u40908_div {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:73px;
  4362. height:25px;
  4363. background:inherit;
  4364. background-color:rgba(255, 255, 255, 0);
  4365. border:none;
  4366. border-left:0px;
  4367. border-top:0px;
  4368. border-right:0px;
  4369. border-radius:0px;
  4370. border-bottom-right-radius:0px;
  4371. border-bottom-left-radius:0px;
  4372. -moz-box-shadow:none;
  4373. -webkit-box-shadow:none;
  4374. box-shadow:none;
  4375. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4376. font-weight:500;
  4377. font-style:normal;
  4378. font-size:18px;
  4379. color:#5C93FF;
  4380. }
  4381. #u40908 {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:95px;
  4385. top:473px;
  4386. width:73px;
  4387. height:25px;
  4388. display:flex;
  4389. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4390. font-weight:500;
  4391. font-style:normal;
  4392. font-size:18px;
  4393. color:#5C93FF;
  4394. }
  4395. #u40908 .text {
  4396. position:absolute;
  4397. align-self:center;
  4398. padding:0px 0px 0px 0px;
  4399. box-sizing:border-box;
  4400. width:100%;
  4401. }
  4402. #u40908_text {
  4403. border-width:0px;
  4404. white-space:nowrap;
  4405. text-transform:none;
  4406. }
  4407. #u40909_div {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:0px;
  4411. top:0px;
  4412. width:286px;
  4413. height:34px;
  4414. background:inherit;
  4415. background-color:rgba(255, 255, 255, 0);
  4416. border:none;
  4417. border-left:0px;
  4418. border-top:0px;
  4419. border-right:0px;
  4420. border-radius:0px;
  4421. border-bottom-right-radius:0px;
  4422. border-bottom-left-radius:0px;
  4423. -moz-box-shadow:none;
  4424. -webkit-box-shadow:none;
  4425. box-shadow:none;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:12px;
  4430. }
  4431. #u40909 {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:95px;
  4435. top:503px;
  4436. width:286px;
  4437. height:34px;
  4438. display:flex;
  4439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4440. font-weight:400;
  4441. font-style:normal;
  4442. font-size:12px;
  4443. }
  4444. #u40909 .text {
  4445. position:absolute;
  4446. align-self:flex-start;
  4447. padding:0px 0px 0px 0px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u40909_text {
  4452. border-width:0px;
  4453. word-wrap:break-word;
  4454. text-transform:none;
  4455. }
  4456. #u40911_img {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:433px;
  4462. height:865px;
  4463. }
  4464. #u40911 {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:453px;
  4468. top:0px;
  4469. width:433px;
  4470. height:865px;
  4471. display:flex;
  4472. }
  4473. #u40911 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 2px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u40911_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. visibility:hidden;
  4485. }
  4486. #u40912_div {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:375px;
  4492. height:40px;
  4493. background:inherit;
  4494. background-color:rgba(255, 255, 255, 1);
  4495. box-sizing:border-box;
  4496. border-width:1px;
  4497. border-style:solid;
  4498. border-color:rgba(215, 215, 215, 1);
  4499. border-left:0px;
  4500. border-top:0px;
  4501. border-right:0px;
  4502. border-radius:0px;
  4503. border-bottom-right-radius:0px;
  4504. border-bottom-left-radius:0px;
  4505. -moz-box-shadow:none;
  4506. -webkit-box-shadow:none;
  4507. box-shadow:none;
  4508. }
  4509. #u40912 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:482px;
  4513. top:67px;
  4514. width:375px;
  4515. height:40px;
  4516. display:flex;
  4517. }
  4518. #u40912 .text {
  4519. position:absolute;
  4520. align-self:center;
  4521. padding:2px 2px 2px 2px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u40912_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. visibility:hidden;
  4530. }
  4531. #u40913 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:0px;
  4537. height:0px;
  4538. }
  4539. #u40914_div {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:0px;
  4543. top:0px;
  4544. width:88px;
  4545. height:32px;
  4546. background:inherit;
  4547. background-color:rgba(255, 255, 255, 1);
  4548. box-sizing:border-box;
  4549. border-width:1px;
  4550. border-style:solid;
  4551. border-color:rgba(242, 242, 242, 1);
  4552. border-radius:33px;
  4553. -moz-box-shadow:none;
  4554. -webkit-box-shadow:none;
  4555. box-shadow:none;
  4556. }
  4557. #u40914 {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:762px;
  4561. top:71px;
  4562. width:88px;
  4563. height:32px;
  4564. display:flex;
  4565. }
  4566. #u40914 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 2px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u40914_text {
  4574. border-width:0px;
  4575. word-wrap:break-word;
  4576. text-transform:none;
  4577. visibility:hidden;
  4578. }
  4579. #u40915 {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:0px;
  4585. height:0px;
  4586. }
  4587. #u40916_img {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:18px;
  4593. height:18px;
  4594. }
  4595. #u40916 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:825px;
  4599. top:78px;
  4600. width:18px;
  4601. height:18px;
  4602. display:flex;
  4603. }
  4604. #u40916 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 2px 2px 2px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u40916_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. visibility:hidden;
  4616. }
  4617. #u40917_img {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:6px;
  4623. height:6px;
  4624. }
  4625. #u40917 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:831px;
  4629. top:84px;
  4630. width:6px;
  4631. height:6px;
  4632. display:flex;
  4633. }
  4634. #u40917 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 2px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u40917_text {
  4642. border-width:0px;
  4643. word-wrap:break-word;
  4644. text-transform:none;
  4645. visibility:hidden;
  4646. }
  4647. #u40918 {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:0px;
  4652. width:0px;
  4653. height:0px;
  4654. }
  4655. #u40919_img {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:5px;
  4661. height:5px;
  4662. }
  4663. #u40919 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:776px;
  4667. top:85px;
  4668. width:5px;
  4669. height:5px;
  4670. display:flex;
  4671. }
  4672. #u40919 .text {
  4673. position:absolute;
  4674. align-self:center;
  4675. padding:2px 2px 2px 2px;
  4676. box-sizing:border-box;
  4677. width:100%;
  4678. }
  4679. #u40919_text {
  4680. border-width:0px;
  4681. word-wrap:break-word;
  4682. text-transform:none;
  4683. visibility:hidden;
  4684. }
  4685. #u40920_img {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:5px;
  4691. height:5px;
  4692. }
  4693. #u40920 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:792px;
  4697. top:85px;
  4698. width:5px;
  4699. height:5px;
  4700. display:flex;
  4701. }
  4702. #u40920 .text {
  4703. position:absolute;
  4704. align-self:center;
  4705. padding:2px 2px 2px 2px;
  4706. box-sizing:border-box;
  4707. width:100%;
  4708. }
  4709. #u40920_text {
  4710. border-width:0px;
  4711. word-wrap:break-word;
  4712. text-transform:none;
  4713. visibility:hidden;
  4714. }
  4715. #u40921_img {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:7px;
  4721. height:7px;
  4722. }
  4723. #u40921 {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:783px;
  4727. top:84px;
  4728. width:7px;
  4729. height:7px;
  4730. display:flex;
  4731. }
  4732. #u40921 .text {
  4733. position:absolute;
  4734. align-self:center;
  4735. padding:2px 2px 2px 2px;
  4736. box-sizing:border-box;
  4737. width:100%;
  4738. }
  4739. #u40921_text {
  4740. border-width:0px;
  4741. word-wrap:break-word;
  4742. text-transform:none;
  4743. visibility:hidden;
  4744. }
  4745. #u40922_img {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:19px;
  4751. height:2px;
  4752. }
  4753. #u40922 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:800px;
  4757. top:87px;
  4758. width:18px;
  4759. height:1px;
  4760. display:flex;
  4761. -webkit-transform:rotate(90deg);
  4762. -moz-transform:rotate(90deg);
  4763. -ms-transform:rotate(90deg);
  4764. transform:rotate(90deg);
  4765. }
  4766. #u40922 .text {
  4767. position:absolute;
  4768. align-self:center;
  4769. padding:2px 2px 2px 2px;
  4770. box-sizing:border-box;
  4771. width:100%;
  4772. }
  4773. #u40922_text {
  4774. border-width:0px;
  4775. word-wrap:break-word;
  4776. text-transform:none;
  4777. visibility:hidden;
  4778. }
  4779. #u40923_img {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:375px;
  4785. height:44px;
  4786. }
  4787. #u40923 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:482px;
  4791. top:24px;
  4792. width:375px;
  4793. height:44px;
  4794. display:flex;
  4795. }
  4796. #u40923 .text {
  4797. position:absolute;
  4798. align-self:center;
  4799. padding:2px 2px 2px 2px;
  4800. box-sizing:border-box;
  4801. width:100%;
  4802. }
  4803. #u40923_text {
  4804. border-width:0px;
  4805. word-wrap:break-word;
  4806. text-transform:none;
  4807. visibility:hidden;
  4808. }
  4809. #u40924_div {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:0px;
  4813. top:0px;
  4814. width:375px;
  4815. height:50px;
  4816. background:inherit;
  4817. background-color:rgba(255, 255, 255, 1);
  4818. box-sizing:border-box;
  4819. border-width:1px;
  4820. border-style:solid;
  4821. border-color:rgba(242, 242, 242, 1);
  4822. border-radius:26px;
  4823. border-top-left-radius:0px;
  4824. border-top-right-radius:0px;
  4825. -moz-box-shadow:none;
  4826. -webkit-box-shadow:none;
  4827. box-shadow:none;
  4828. }
  4829. #u40924 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:482px;
  4833. top:788px;
  4834. width:375px;
  4835. height:50px;
  4836. display:flex;
  4837. }
  4838. #u40924 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:2px 2px 2px 2px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u40924_text {
  4846. border-width:0px;
  4847. word-wrap:break-word;
  4848. text-transform:none;
  4849. visibility:hidden;
  4850. }
  4851. #u40925 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:0px;
  4857. height:0px;
  4858. }
  4859. #u40926_img {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:24px;
  4865. height:24px;
  4866. }
  4867. #u40926 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:522px;
  4871. top:792px;
  4872. width:24px;
  4873. height:24px;
  4874. display:flex;
  4875. font-size:8px;
  4876. }
  4877. #u40926 .text {
  4878. position:absolute;
  4879. align-self:center;
  4880. padding:2px 2px 2px 2px;
  4881. box-sizing:border-box;
  4882. width:100%;
  4883. }
  4884. #u40926_text {
  4885. border-width:0px;
  4886. word-wrap:break-word;
  4887. text-transform:none;
  4888. }
  4889. #u40927_div {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:25px;
  4895. height:17px;
  4896. background:inherit;
  4897. background-color:rgba(255, 255, 255, 0);
  4898. border:none;
  4899. border-radius:0px;
  4900. -moz-box-shadow:none;
  4901. -webkit-box-shadow:none;
  4902. box-shadow:none;
  4903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4904. font-weight:400;
  4905. font-style:normal;
  4906. font-size:12px;
  4907. }
  4908. #u40927 {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:522px;
  4912. top:817px;
  4913. width:25px;
  4914. height:17px;
  4915. display:flex;
  4916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. font-size:12px;
  4920. }
  4921. #u40927 .text {
  4922. position:absolute;
  4923. align-self:flex-start;
  4924. padding:0px 0px 0px 0px;
  4925. box-sizing:border-box;
  4926. width:100%;
  4927. }
  4928. #u40927_text {
  4929. border-width:0px;
  4930. white-space:nowrap;
  4931. text-transform:none;
  4932. }
  4933. #u40928 {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:0px;
  4939. height:0px;
  4940. }
  4941. #u40929_img {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:24px;
  4947. height:24px;
  4948. }
  4949. #u40929 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:792px;
  4953. top:794px;
  4954. width:24px;
  4955. height:24px;
  4956. display:flex;
  4957. font-size:8px;
  4958. }
  4959. #u40929 .text {
  4960. position:absolute;
  4961. align-self:center;
  4962. padding:2px 2px 2px 2px;
  4963. box-sizing:border-box;
  4964. width:100%;
  4965. }
  4966. #u40929_text {
  4967. border-width:0px;
  4968. word-wrap:break-word;
  4969. text-transform:none;
  4970. }
  4971. #u40930_div {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:0px;
  4976. width:25px;
  4977. height:17px;
  4978. background:inherit;
  4979. background-color:rgba(255, 255, 255, 0);
  4980. border:none;
  4981. border-radius:0px;
  4982. -moz-box-shadow:none;
  4983. -webkit-box-shadow:none;
  4984. box-shadow:none;
  4985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4986. font-weight:400;
  4987. font-style:normal;
  4988. font-size:12px;
  4989. }
  4990. #u40930 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:792px;
  4994. top:819px;
  4995. width:25px;
  4996. height:17px;
  4997. display:flex;
  4998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4999. font-weight:400;
  5000. font-style:normal;
  5001. font-size:12px;
  5002. }
  5003. #u40930 .text {
  5004. position:absolute;
  5005. align-self:flex-start;
  5006. padding:0px 0px 0px 0px;
  5007. box-sizing:border-box;
  5008. width:100%;
  5009. }
  5010. #u40930_text {
  5011. border-width:0px;
  5012. white-space:nowrap;
  5013. text-transform:none;
  5014. }
  5015. #u40931_div {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:0px;
  5019. top:0px;
  5020. width:375px;
  5021. height:681px;
  5022. background:inherit;
  5023. background-color:rgba(242, 242, 242, 0.462745098039216);
  5024. border:none;
  5025. border-radius:0px;
  5026. -moz-box-shadow:none;
  5027. -webkit-box-shadow:none;
  5028. box-shadow:none;
  5029. }
  5030. #u40931 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:482px;
  5034. top:107px;
  5035. width:375px;
  5036. height:681px;
  5037. display:flex;
  5038. }
  5039. #u40931 .text {
  5040. position:absolute;
  5041. align-self:center;
  5042. padding:2px 2px 2px 2px;
  5043. box-sizing:border-box;
  5044. width:100%;
  5045. }
  5046. #u40931_text {
  5047. border-width:0px;
  5048. word-wrap:break-word;
  5049. text-transform:none;
  5050. visibility:hidden;
  5051. }
  5052. #u40932 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:0px;
  5058. height:0px;
  5059. }
  5060. #u40933_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:24px;
  5066. height:24px;
  5067. }
  5068. #u40933 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:704px;
  5072. top:792px;
  5073. width:24px;
  5074. height:24px;
  5075. display:flex;
  5076. font-size:8px;
  5077. }
  5078. #u40933 .text {
  5079. position:absolute;
  5080. align-self:center;
  5081. padding:2px 2px 2px 2px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u40933_text {
  5086. border-width:0px;
  5087. word-wrap:break-word;
  5088. text-transform:none;
  5089. }
  5090. #u40934_div {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:0px;
  5094. top:0px;
  5095. width:37px;
  5096. height:17px;
  5097. background:inherit;
  5098. background-color:rgba(255, 255, 255, 0);
  5099. border:none;
  5100. border-radius:0px;
  5101. -moz-box-shadow:none;
  5102. -webkit-box-shadow:none;
  5103. box-shadow:none;
  5104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:12px;
  5108. }
  5109. #u40934 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:698px;
  5113. top:817px;
  5114. width:37px;
  5115. height:17px;
  5116. display:flex;
  5117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:12px;
  5121. }
  5122. #u40934 .text {
  5123. position:absolute;
  5124. align-self:flex-start;
  5125. padding:0px 0px 0px 0px;
  5126. box-sizing:border-box;
  5127. width:100%;
  5128. }
  5129. #u40934_text {
  5130. border-width:0px;
  5131. white-space:nowrap;
  5132. text-transform:none;
  5133. }
  5134. #u40935 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:0px;
  5140. height:0px;
  5141. }
  5142. #u40936_img {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:24px;
  5148. height:24px;
  5149. }
  5150. #u40936 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:610px;
  5154. top:792px;
  5155. width:24px;
  5156. height:24px;
  5157. display:flex;
  5158. font-size:8px;
  5159. }
  5160. #u40936 .text {
  5161. position:absolute;
  5162. align-self:center;
  5163. padding:2px 2px 2px 2px;
  5164. box-sizing:border-box;
  5165. width:100%;
  5166. }
  5167. #u40936_text {
  5168. border-width:0px;
  5169. word-wrap:break-word;
  5170. text-transform:none;
  5171. }
  5172. #u40937_div {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:37px;
  5178. height:17px;
  5179. background:inherit;
  5180. background-color:rgba(255, 255, 255, 0);
  5181. border:none;
  5182. border-radius:0px;
  5183. -moz-box-shadow:none;
  5184. -webkit-box-shadow:none;
  5185. box-shadow:none;
  5186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5187. font-weight:400;
  5188. font-style:normal;
  5189. font-size:12px;
  5190. }
  5191. #u40937 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:604px;
  5195. top:817px;
  5196. width:37px;
  5197. height:17px;
  5198. display:flex;
  5199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:12px;
  5203. }
  5204. #u40937 .text {
  5205. position:absolute;
  5206. align-self:flex-start;
  5207. padding:0px 0px 0px 0px;
  5208. box-sizing:border-box;
  5209. width:100%;
  5210. }
  5211. #u40937_text {
  5212. border-width:0px;
  5213. white-space:nowrap;
  5214. text-transform:none;
  5215. }
  5216. #u40938_div {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:375px;
  5222. height:732px;
  5223. background:inherit;
  5224. background-color:rgba(244, 244, 244, 1);
  5225. box-sizing:border-box;
  5226. border-width:1px;
  5227. border-style:solid;
  5228. border-color:rgba(242, 242, 242, 1);
  5229. border-radius:26px;
  5230. border-top-left-radius:0px;
  5231. border-top-right-radius:0px;
  5232. -moz-box-shadow:none;
  5233. -webkit-box-shadow:none;
  5234. box-shadow:none;
  5235. }
  5236. #u40938 {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:482px;
  5240. top:107px;
  5241. width:375px;
  5242. height:732px;
  5243. display:flex;
  5244. }
  5245. #u40938 .text {
  5246. position:absolute;
  5247. align-self:center;
  5248. padding:2px 2px 2px 2px;
  5249. box-sizing:border-box;
  5250. width:100%;
  5251. }
  5252. #u40938_text {
  5253. border-width:0px;
  5254. word-wrap:break-word;
  5255. text-transform:none;
  5256. visibility:hidden;
  5257. }
  5258. #u40939_div {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:375px;
  5264. height:732px;
  5265. background:inherit;
  5266. background-color:rgba(242, 242, 242, 1);
  5267. box-sizing:border-box;
  5268. border-width:1px;
  5269. border-style:solid;
  5270. border-color:rgba(242, 242, 242, 1);
  5271. border-radius:26px;
  5272. border-top-left-radius:0px;
  5273. border-top-right-radius:0px;
  5274. -moz-box-shadow:none;
  5275. -webkit-box-shadow:none;
  5276. box-shadow:none;
  5277. }
  5278. #u40939 {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:482px;
  5282. top:107px;
  5283. width:375px;
  5284. height:732px;
  5285. display:flex;
  5286. }
  5287. #u40939 .text {
  5288. position:absolute;
  5289. align-self:center;
  5290. padding:2px 2px 2px 2px;
  5291. box-sizing:border-box;
  5292. width:100%;
  5293. }
  5294. #u40939_text {
  5295. border-width:0px;
  5296. word-wrap:break-word;
  5297. text-transform:none;
  5298. visibility:hidden;
  5299. }
  5300. #u40940 {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:0px;
  5306. height:0px;
  5307. }
  5308. #u40941_div {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:375px;
  5314. height:40px;
  5315. background:inherit;
  5316. background-color:rgba(255, 255, 255, 1);
  5317. border:none;
  5318. border-left:0px;
  5319. border-top:0px;
  5320. border-right:0px;
  5321. border-radius:0px;
  5322. border-bottom-right-radius:0px;
  5323. border-bottom-left-radius:0px;
  5324. -moz-box-shadow:none;
  5325. -webkit-box-shadow:none;
  5326. box-shadow:none;
  5327. }
  5328. #u40941 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:482px;
  5332. top:67px;
  5333. width:375px;
  5334. height:40px;
  5335. display:flex;
  5336. }
  5337. #u40941 .text {
  5338. position:absolute;
  5339. align-self:center;
  5340. padding:2px 2px 2px 2px;
  5341. box-sizing:border-box;
  5342. width:100%;
  5343. }
  5344. #u40941_text {
  5345. border-width:0px;
  5346. word-wrap:break-word;
  5347. text-transform:none;
  5348. visibility:hidden;
  5349. }
  5350. #u40942 {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:0px;
  5356. height:0px;
  5357. }
  5358. #u40943_div {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:88px;
  5364. height:32px;
  5365. background:inherit;
  5366. background-color:rgba(255, 255, 255, 1);
  5367. box-sizing:border-box;
  5368. border-width:1px;
  5369. border-style:solid;
  5370. border-color:rgba(242, 242, 242, 1);
  5371. border-radius:33px;
  5372. -moz-box-shadow:none;
  5373. -webkit-box-shadow:none;
  5374. box-shadow:none;
  5375. }
  5376. #u40943 {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:759px;
  5380. top:69px;
  5381. width:88px;
  5382. height:32px;
  5383. display:flex;
  5384. }
  5385. #u40943 .text {
  5386. position:absolute;
  5387. align-self:center;
  5388. padding:2px 2px 2px 2px;
  5389. box-sizing:border-box;
  5390. width:100%;
  5391. }
  5392. #u40943_text {
  5393. border-width:0px;
  5394. word-wrap:break-word;
  5395. text-transform:none;
  5396. visibility:hidden;
  5397. }
  5398. #u40944 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:0px;
  5402. top:0px;
  5403. width:0px;
  5404. height:0px;
  5405. }
  5406. #u40945_img {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:18px;
  5412. height:18px;
  5413. }
  5414. #u40945 {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:822px;
  5418. top:76px;
  5419. width:18px;
  5420. height:18px;
  5421. display:flex;
  5422. }
  5423. #u40945 .text {
  5424. position:absolute;
  5425. align-self:center;
  5426. padding:2px 2px 2px 2px;
  5427. box-sizing:border-box;
  5428. width:100%;
  5429. }
  5430. #u40945_text {
  5431. border-width:0px;
  5432. word-wrap:break-word;
  5433. text-transform:none;
  5434. visibility:hidden;
  5435. }
  5436. #u40946_img {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:0px;
  5440. top:0px;
  5441. width:6px;
  5442. height:6px;
  5443. }
  5444. #u40946 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:828px;
  5448. top:82px;
  5449. width:6px;
  5450. height:6px;
  5451. display:flex;
  5452. }
  5453. #u40946 .text {
  5454. position:absolute;
  5455. align-self:center;
  5456. padding:2px 2px 2px 2px;
  5457. box-sizing:border-box;
  5458. width:100%;
  5459. }
  5460. #u40946_text {
  5461. border-width:0px;
  5462. word-wrap:break-word;
  5463. text-transform:none;
  5464. visibility:hidden;
  5465. }
  5466. #u40947 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:0px;
  5472. height:0px;
  5473. }
  5474. #u40948_img {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:0px;
  5478. top:0px;
  5479. width:5px;
  5480. height:5px;
  5481. }
  5482. #u40948 {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:773px;
  5486. top:83px;
  5487. width:5px;
  5488. height:5px;
  5489. display:flex;
  5490. }
  5491. #u40948 .text {
  5492. position:absolute;
  5493. align-self:center;
  5494. padding:2px 2px 2px 2px;
  5495. box-sizing:border-box;
  5496. width:100%;
  5497. }
  5498. #u40948_text {
  5499. border-width:0px;
  5500. word-wrap:break-word;
  5501. text-transform:none;
  5502. visibility:hidden;
  5503. }
  5504. #u40949_img {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:0px;
  5508. top:0px;
  5509. width:5px;
  5510. height:5px;
  5511. }
  5512. #u40949 {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:789px;
  5516. top:83px;
  5517. width:5px;
  5518. height:5px;
  5519. display:flex;
  5520. }
  5521. #u40949 .text {
  5522. position:absolute;
  5523. align-self:center;
  5524. padding:2px 2px 2px 2px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u40949_text {
  5529. border-width:0px;
  5530. word-wrap:break-word;
  5531. text-transform:none;
  5532. visibility:hidden;
  5533. }
  5534. #u40950_img {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:7px;
  5540. height:7px;
  5541. }
  5542. #u40950 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:780px;
  5546. top:82px;
  5547. width:7px;
  5548. height:7px;
  5549. display:flex;
  5550. }
  5551. #u40950 .text {
  5552. position:absolute;
  5553. align-self:center;
  5554. padding:2px 2px 2px 2px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u40950_text {
  5559. border-width:0px;
  5560. word-wrap:break-word;
  5561. text-transform:none;
  5562. visibility:hidden;
  5563. }
  5564. #u40951_img {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:19px;
  5570. height:2px;
  5571. }
  5572. #u40951 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:797px;
  5576. top:85px;
  5577. width:18px;
  5578. height:1px;
  5579. display:flex;
  5580. -webkit-transform:rotate(90deg);
  5581. -moz-transform:rotate(90deg);
  5582. -ms-transform:rotate(90deg);
  5583. transform:rotate(90deg);
  5584. }
  5585. #u40951 .text {
  5586. position:absolute;
  5587. align-self:center;
  5588. padding:2px 2px 2px 2px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u40951_text {
  5593. border-width:0px;
  5594. word-wrap:break-word;
  5595. text-transform:none;
  5596. visibility:hidden;
  5597. }
  5598. #u40952_div {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:12px;
  5604. height:12px;
  5605. background:inherit;
  5606. background-color:rgba(255, 255, 255, 0);
  5607. box-sizing:border-box;
  5608. border-width:2px;
  5609. border-style:solid;
  5610. border-color:rgba(51, 51, 51, 1);
  5611. border-right:0px;
  5612. border-bottom:0px;
  5613. border-radius:0px;
  5614. border-top-right-radius:0px;
  5615. border-bottom-left-radius:0px;
  5616. -moz-box-shadow:none;
  5617. -webkit-box-shadow:none;
  5618. box-shadow:none;
  5619. }
  5620. #u40952 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:498px;
  5624. top:79px;
  5625. width:12px;
  5626. height:12px;
  5627. display:flex;
  5628. -webkit-transform:rotate(315deg);
  5629. -moz-transform:rotate(315deg);
  5630. -ms-transform:rotate(315deg);
  5631. transform:rotate(315deg);
  5632. }
  5633. #u40952 .text {
  5634. position:absolute;
  5635. align-self:center;
  5636. padding:2px 2px 2px 2px;
  5637. box-sizing:border-box;
  5638. width:100%;
  5639. }
  5640. #u40952_text {
  5641. border-width:0px;
  5642. word-wrap:break-word;
  5643. text-transform:none;
  5644. visibility:hidden;
  5645. }
  5646. #u40953_div {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:109px;
  5652. height:25px;
  5653. background:inherit;
  5654. background-color:rgba(255, 255, 255, 0);
  5655. border:none;
  5656. border-radius:0px;
  5657. -moz-box-shadow:none;
  5658. -webkit-box-shadow:none;
  5659. box-shadow:none;
  5660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5661. font-weight:400;
  5662. font-style:normal;
  5663. font-size:18px;
  5664. }
  5665. #u40953 {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:512px;
  5669. top:72px;
  5670. width:109px;
  5671. height:25px;
  5672. display:flex;
  5673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5674. font-weight:400;
  5675. font-style:normal;
  5676. font-size:18px;
  5677. }
  5678. #u40953 .text {
  5679. position:absolute;
  5680. align-self:flex-start;
  5681. padding:0px 0px 0px 0px;
  5682. box-sizing:border-box;
  5683. width:100%;
  5684. }
  5685. #u40953_text {
  5686. border-width:0px;
  5687. white-space:nowrap;
  5688. text-transform:none;
  5689. }
  5690. #u40954_div {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:0px;
  5695. width:375px;
  5696. height:58px;
  5697. background:inherit;
  5698. background-color:rgba(24, 144, 255, 1);
  5699. border:none;
  5700. border-radius:0px;
  5701. -moz-box-shadow:none;
  5702. -webkit-box-shadow:none;
  5703. box-shadow:none;
  5704. }
  5705. #u40954 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:482px;
  5709. top:101px;
  5710. width:375px;
  5711. height:58px;
  5712. display:flex;
  5713. }
  5714. #u40954 .text {
  5715. position:absolute;
  5716. align-self:center;
  5717. padding:2px 2px 2px 2px;
  5718. box-sizing:border-box;
  5719. width:100%;
  5720. }
  5721. #u40954_text {
  5722. border-width:0px;
  5723. word-wrap:break-word;
  5724. text-transform:none;
  5725. visibility:hidden;
  5726. }
  5727. #u40955_div {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:0px;
  5731. top:0px;
  5732. width:375px;
  5733. height:524px;
  5734. background:inherit;
  5735. background-color:rgba(255, 255, 255, 0.996078431372549);
  5736. border:none;
  5737. border-radius:0px;
  5738. -moz-box-shadow:none;
  5739. -webkit-box-shadow:none;
  5740. box-shadow:none;
  5741. }
  5742. #u40955 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:482px;
  5746. top:255px;
  5747. width:375px;
  5748. height:524px;
  5749. display:flex;
  5750. }
  5751. #u40955 .text {
  5752. position:absolute;
  5753. align-self:center;
  5754. padding:2px 2px 2px 2px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u40955_text {
  5759. border-width:0px;
  5760. word-wrap:break-word;
  5761. text-transform:none;
  5762. visibility:hidden;
  5763. }
  5764. #u40956_div {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:0px;
  5768. top:0px;
  5769. width:73px;
  5770. height:25px;
  5771. background:inherit;
  5772. background-color:rgba(255, 255, 255, 0);
  5773. border:none;
  5774. border-radius:0px;
  5775. -moz-box-shadow:none;
  5776. -webkit-box-shadow:none;
  5777. box-shadow:none;
  5778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5779. font-weight:500;
  5780. font-style:normal;
  5781. font-size:18px;
  5782. }
  5783. #u40956 {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:502px;
  5787. top:274px;
  5788. width:73px;
  5789. height:25px;
  5790. display:flex;
  5791. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5792. font-weight:500;
  5793. font-style:normal;
  5794. font-size:18px;
  5795. }
  5796. #u40956 .text {
  5797. position:absolute;
  5798. align-self:flex-start;
  5799. padding:0px 0px 0px 0px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u40956_text {
  5804. border-width:0px;
  5805. white-space:nowrap;
  5806. text-transform:none;
  5807. }
  5808. #u40957 {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:0px;
  5812. top:0px;
  5813. width:0px;
  5814. height:0px;
  5815. }
  5816. #u40958 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:0px;
  5822. height:0px;
  5823. }
  5824. #u40959_img {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:0px;
  5828. top:0px;
  5829. width:20px;
  5830. height:20px;
  5831. }
  5832. #u40959 {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:488px;
  5836. top:120px;
  5837. width:20px;
  5838. height:20px;
  5839. display:flex;
  5840. font-size:11px;
  5841. color:#1890FF;
  5842. }
  5843. #u40959 .text {
  5844. position:absolute;
  5845. align-self:center;
  5846. padding:2px 2px 2px 2px;
  5847. box-sizing:border-box;
  5848. width:100%;
  5849. }
  5850. #u40959_text {
  5851. border-width:0px;
  5852. word-wrap:break-word;
  5853. text-transform:none;
  5854. }
  5855. #u40960_div {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:49px;
  5861. height:30px;
  5862. background:inherit;
  5863. background-color:rgba(255, 255, 255, 0);
  5864. border:none;
  5865. border-left:0px;
  5866. border-top:0px;
  5867. border-right:0px;
  5868. border-radius:0px;
  5869. border-bottom-right-radius:0px;
  5870. border-bottom-left-radius:0px;
  5871. -moz-box-shadow:none;
  5872. -webkit-box-shadow:none;
  5873. box-shadow:none;
  5874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:12px;
  5878. color:#FFFFFF;
  5879. line-height:30px;
  5880. }
  5881. #u40960 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:513px;
  5885. top:115px;
  5886. width:49px;
  5887. height:30px;
  5888. display:flex;
  5889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:12px;
  5893. color:#FFFFFF;
  5894. line-height:30px;
  5895. }
  5896. #u40960 .text {
  5897. position:absolute;
  5898. align-self:center;
  5899. padding:0px 0px 0px 0px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u40960_text {
  5904. border-width:0px;
  5905. white-space:nowrap;
  5906. text-transform:none;
  5907. }
  5908. #u40961_img {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:20px;
  5914. height:20px;
  5915. }
  5916. #u40961 {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:575px;
  5920. top:120px;
  5921. width:20px;
  5922. height:20px;
  5923. display:flex;
  5924. font-size:11px;
  5925. color:#1890FF;
  5926. }
  5927. #u40961 .text {
  5928. position:absolute;
  5929. align-self:center;
  5930. padding:2px 2px 2px 2px;
  5931. box-sizing:border-box;
  5932. width:100%;
  5933. }
  5934. #u40961_text {
  5935. border-width:0px;
  5936. word-wrap:break-word;
  5937. text-transform:none;
  5938. }
  5939. #u40962_div {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:0px;
  5943. top:0px;
  5944. width:49px;
  5945. height:30px;
  5946. background:inherit;
  5947. background-color:rgba(255, 255, 255, 0);
  5948. border:none;
  5949. border-left:0px;
  5950. border-top:0px;
  5951. border-right:0px;
  5952. border-radius:0px;
  5953. border-bottom-right-radius:0px;
  5954. border-bottom-left-radius:0px;
  5955. -moz-box-shadow:none;
  5956. -webkit-box-shadow:none;
  5957. box-shadow:none;
  5958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. font-size:12px;
  5962. color:#FFFFFF;
  5963. line-height:30px;
  5964. }
  5965. #u40962 {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:600px;
  5969. top:115px;
  5970. width:49px;
  5971. height:30px;
  5972. display:flex;
  5973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5974. font-weight:400;
  5975. font-style:normal;
  5976. font-size:12px;
  5977. color:#FFFFFF;
  5978. line-height:30px;
  5979. }
  5980. #u40962 .text {
  5981. position:absolute;
  5982. align-self:center;
  5983. padding:0px 0px 0px 0px;
  5984. box-sizing:border-box;
  5985. width:100%;
  5986. }
  5987. #u40962_text {
  5988. border-width:0px;
  5989. white-space:nowrap;
  5990. text-transform:none;
  5991. }
  5992. #u40963_img {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:20px;
  5998. height:20px;
  5999. }
  6000. #u40963 {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:669px;
  6004. top:120px;
  6005. width:20px;
  6006. height:20px;
  6007. display:flex;
  6008. font-size:11px;
  6009. color:#1890FF;
  6010. }
  6011. #u40963 .text {
  6012. position:absolute;
  6013. align-self:center;
  6014. padding:2px 2px 2px 2px;
  6015. box-sizing:border-box;
  6016. width:100%;
  6017. }
  6018. #u40963_text {
  6019. border-width:0px;
  6020. word-wrap:break-word;
  6021. text-transform:none;
  6022. }
  6023. #u40964_div {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:49px;
  6029. height:30px;
  6030. background:inherit;
  6031. background-color:rgba(255, 255, 255, 0);
  6032. border:none;
  6033. border-left:0px;
  6034. border-top:0px;
  6035. border-right:0px;
  6036. border-radius:0px;
  6037. border-bottom-right-radius:0px;
  6038. border-bottom-left-radius:0px;
  6039. -moz-box-shadow:none;
  6040. -webkit-box-shadow:none;
  6041. box-shadow:none;
  6042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6043. font-weight:400;
  6044. font-style:normal;
  6045. font-size:12px;
  6046. color:#FFFFFF;
  6047. line-height:30px;
  6048. }
  6049. #u40964 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:694px;
  6053. top:115px;
  6054. width:49px;
  6055. height:30px;
  6056. display:flex;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:12px;
  6061. color:#FFFFFF;
  6062. line-height:30px;
  6063. }
  6064. #u40964 .text {
  6065. position:absolute;
  6066. align-self:center;
  6067. padding:0px 0px 0px 0px;
  6068. box-sizing:border-box;
  6069. width:100%;
  6070. }
  6071. #u40964_text {
  6072. border-width:0px;
  6073. white-space:nowrap;
  6074. text-transform:none;
  6075. }
  6076. #u40965_img {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:0px;
  6080. top:0px;
  6081. width:20px;
  6082. height:20px;
  6083. }
  6084. #u40965 {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:763px;
  6088. top:120px;
  6089. width:20px;
  6090. height:20px;
  6091. display:flex;
  6092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. font-size:11px;
  6096. color:#1890FF;
  6097. }
  6098. #u40965 .text {
  6099. position:absolute;
  6100. align-self:center;
  6101. padding:2px 2px 2px 2px;
  6102. box-sizing:border-box;
  6103. width:100%;
  6104. }
  6105. #u40965_text {
  6106. border-width:0px;
  6107. word-wrap:break-word;
  6108. text-transform:none;
  6109. }
  6110. #u40966_div {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:49px;
  6116. height:30px;
  6117. background:inherit;
  6118. background-color:rgba(255, 255, 255, 0);
  6119. border:none;
  6120. border-left:0px;
  6121. border-top:0px;
  6122. border-right:0px;
  6123. border-radius:0px;
  6124. border-bottom-right-radius:0px;
  6125. border-bottom-left-radius:0px;
  6126. -moz-box-shadow:none;
  6127. -webkit-box-shadow:none;
  6128. box-shadow:none;
  6129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6130. font-weight:400;
  6131. font-style:normal;
  6132. font-size:12px;
  6133. color:#FFFFFF;
  6134. line-height:30px;
  6135. }
  6136. #u40966 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:788px;
  6140. top:115px;
  6141. width:49px;
  6142. height:30px;
  6143. display:flex;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:12px;
  6148. color:#FFFFFF;
  6149. line-height:30px;
  6150. }
  6151. #u40966 .text {
  6152. position:absolute;
  6153. align-self:center;
  6154. padding:0px 0px 0px 0px;
  6155. box-sizing:border-box;
  6156. width:100%;
  6157. }
  6158. #u40966_text {
  6159. border-width:0px;
  6160. white-space:nowrap;
  6161. text-transform:none;
  6162. }
  6163. #u40967_div {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:375px;
  6169. height:60px;
  6170. background:inherit;
  6171. background-color:rgba(255, 255, 255, 1);
  6172. border:none;
  6173. border-top:0px;
  6174. border-radius:28px;
  6175. border-top-left-radius:0px;
  6176. border-top-right-radius:0px;
  6177. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6178. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6179. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6181. font-weight:400;
  6182. font-style:normal;
  6183. font-size:14px;
  6184. color:#FFFFFF;
  6185. }
  6186. #u40967 {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:482px;
  6190. top:780px;
  6191. width:375px;
  6192. height:60px;
  6193. display:flex;
  6194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6195. font-weight:400;
  6196. font-style:normal;
  6197. font-size:14px;
  6198. color:#FFFFFF;
  6199. }
  6200. #u40967 .text {
  6201. position:absolute;
  6202. align-self:center;
  6203. padding:2px 2px 2px 2px;
  6204. box-sizing:border-box;
  6205. width:100%;
  6206. }
  6207. #u40967_text {
  6208. border-width:0px;
  6209. word-wrap:break-word;
  6210. text-transform:none;
  6211. visibility:hidden;
  6212. }
  6213. #u40968_div {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:324px;
  6219. height:40px;
  6220. background:inherit;
  6221. background-color:rgba(24, 144, 255, 1);
  6222. border:none;
  6223. border-radius:63px;
  6224. -moz-box-shadow:none;
  6225. -webkit-box-shadow:none;
  6226. box-shadow:none;
  6227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6228. font-weight:400;
  6229. font-style:normal;
  6230. font-size:14px;
  6231. color:#FFFFFF;
  6232. }
  6233. #u40968 {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:510px;
  6237. top:789px;
  6238. width:324px;
  6239. height:40px;
  6240. display:flex;
  6241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6242. font-weight:400;
  6243. font-style:normal;
  6244. font-size:14px;
  6245. color:#FFFFFF;
  6246. }
  6247. #u40968 .text {
  6248. position:absolute;
  6249. align-self:center;
  6250. padding:2px 2px 2px 2px;
  6251. box-sizing:border-box;
  6252. width:100%;
  6253. }
  6254. #u40968_text {
  6255. border-width:0px;
  6256. word-wrap:break-word;
  6257. text-transform:none;
  6258. }
  6259. #u40969 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:0px;
  6265. height:0px;
  6266. }
  6267. #u40970_div {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:0px;
  6271. top:0px;
  6272. width:375px;
  6273. height:60px;
  6274. background:inherit;
  6275. background-color:rgba(255, 255, 255, 1);
  6276. border:none;
  6277. border-top:0px;
  6278. border-radius:28px;
  6279. border-top-left-radius:0px;
  6280. border-top-right-radius:0px;
  6281. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6282. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6283. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:14px;
  6288. color:#FFFFFF;
  6289. }
  6290. #u40970 {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:1388px;
  6294. top:992px;
  6295. width:375px;
  6296. height:60px;
  6297. display:flex;
  6298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6299. font-weight:400;
  6300. font-style:normal;
  6301. font-size:14px;
  6302. color:#FFFFFF;
  6303. }
  6304. #u40970 .text {
  6305. position:absolute;
  6306. align-self:center;
  6307. padding:2px 2px 2px 2px;
  6308. box-sizing:border-box;
  6309. width:100%;
  6310. }
  6311. #u40970_text {
  6312. border-width:0px;
  6313. word-wrap:break-word;
  6314. text-transform:none;
  6315. visibility:hidden;
  6316. }
  6317. #u40971_div {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:0px;
  6321. top:0px;
  6322. width:324px;
  6323. height:40px;
  6324. background:inherit;
  6325. background-color:rgba(215, 215, 215, 1);
  6326. border:none;
  6327. border-radius:63px;
  6328. -moz-box-shadow:none;
  6329. -webkit-box-shadow:none;
  6330. box-shadow:none;
  6331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6332. font-weight:400;
  6333. font-style:normal;
  6334. font-size:14px;
  6335. color:#FFFFFF;
  6336. }
  6337. #u40971 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:1416px;
  6341. top:1001px;
  6342. width:324px;
  6343. height:40px;
  6344. display:flex;
  6345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6346. font-weight:400;
  6347. font-style:normal;
  6348. font-size:14px;
  6349. color:#FFFFFF;
  6350. }
  6351. #u40971 .text {
  6352. position:absolute;
  6353. align-self:center;
  6354. padding:2px 2px 2px 2px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u40971_text {
  6359. border-width:0px;
  6360. word-wrap:break-word;
  6361. text-transform:none;
  6362. }
  6363. #u40972_div {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:183px;
  6369. height:20px;
  6370. background:inherit;
  6371. background-color:rgba(255, 255, 255, 0);
  6372. border:none;
  6373. border-left:0px;
  6374. border-top:0px;
  6375. border-right:0px;
  6376. border-radius:0px;
  6377. border-bottom-right-radius:0px;
  6378. border-bottom-left-radius:0px;
  6379. -moz-box-shadow:none;
  6380. -webkit-box-shadow:none;
  6381. box-shadow:none;
  6382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6383. font-weight:400;
  6384. font-style:normal;
  6385. font-size:14px;
  6386. color:#D9001B;
  6387. }
  6388. #u40972 {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:1948px;
  6392. top:643px;
  6393. width:183px;
  6394. height:20px;
  6395. display:flex;
  6396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6397. font-weight:400;
  6398. font-style:normal;
  6399. font-size:14px;
  6400. color:#D9001B;
  6401. }
  6402. #u40972 .text {
  6403. position:absolute;
  6404. align-self:flex-start;
  6405. padding:0px 0px 0px 0px;
  6406. box-sizing:border-box;
  6407. width:100%;
  6408. }
  6409. #u40972_text {
  6410. border-width:0px;
  6411. white-space:nowrap;
  6412. text-transform:none;
  6413. }
  6414. #u40973 {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:0px;
  6420. height:0px;
  6421. }
  6422. #u40974_div {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:375px;
  6428. height:80px;
  6429. background:inherit;
  6430. background-color:rgba(255, 255, 255, 1);
  6431. border:none;
  6432. border-top:0px;
  6433. border-bottom:0px;
  6434. border-radius:0px;
  6435. border-top-left-radius:0px;
  6436. border-top-right-radius:0px;
  6437. border-bottom-right-radius:0px;
  6438. border-bottom-left-radius:0px;
  6439. -moz-box-shadow:none;
  6440. -webkit-box-shadow:none;
  6441. box-shadow:none;
  6442. }
  6443. #u40974 {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:482px;
  6447. top:165px;
  6448. width:375px;
  6449. height:80px;
  6450. display:flex;
  6451. }
  6452. #u40974 .text {
  6453. position:absolute;
  6454. align-self:center;
  6455. padding:2px 2px 2px 2px;
  6456. box-sizing:border-box;
  6457. width:100%;
  6458. }
  6459. #u40974_text {
  6460. border-width:0px;
  6461. word-wrap:break-word;
  6462. text-transform:none;
  6463. visibility:hidden;
  6464. }
  6465. #u40975_div {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:0px;
  6469. top:0px;
  6470. width:73px;
  6471. height:30px;
  6472. background:inherit;
  6473. background-color:rgba(255, 255, 255, 0);
  6474. border:none;
  6475. border-left:0px;
  6476. border-top:0px;
  6477. border-right:0px;
  6478. border-radius:0px;
  6479. border-bottom-right-radius:0px;
  6480. border-bottom-left-radius:0px;
  6481. -moz-box-shadow:none;
  6482. -webkit-box-shadow:none;
  6483. box-shadow:none;
  6484. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6485. font-weight:500;
  6486. font-style:normal;
  6487. font-size:18px;
  6488. line-height:30px;
  6489. }
  6490. #u40975 {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:501px;
  6494. top:175px;
  6495. width:73px;
  6496. height:30px;
  6497. display:flex;
  6498. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6499. font-weight:500;
  6500. font-style:normal;
  6501. font-size:18px;
  6502. line-height:30px;
  6503. }
  6504. #u40975 .text {
  6505. position:absolute;
  6506. align-self:flex-start;
  6507. padding:0px 0px 0px 0px;
  6508. box-sizing:border-box;
  6509. width:100%;
  6510. }
  6511. #u40975_text {
  6512. border-width:0px;
  6513. white-space:nowrap;
  6514. text-transform:none;
  6515. }
  6516. #u40976_input {
  6517. position:absolute;
  6518. left:0px;
  6519. top:0px;
  6520. width:346px;
  6521. height:27px;
  6522. padding:2px 2px 2px 2px;
  6523. font-family:'ArialMT', 'Arial', sans-serif;
  6524. font-weight:400;
  6525. font-style:normal;
  6526. font-size:14px;
  6527. letter-spacing:normal;
  6528. color:#1890FF;
  6529. vertical-align:none;
  6530. text-align:left;
  6531. text-transform:none;
  6532. background-color:transparent;
  6533. border-color:transparent;
  6534. }
  6535. #u40976_input.disabled {
  6536. position:absolute;
  6537. left:0px;
  6538. top:0px;
  6539. width:346px;
  6540. height:27px;
  6541. padding:2px 2px 2px 2px;
  6542. font-family:'ArialMT', 'Arial', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:14px;
  6546. letter-spacing:normal;
  6547. color:#1890FF;
  6548. vertical-align:none;
  6549. text-align:left;
  6550. text-transform:none;
  6551. background-color:transparent;
  6552. border-color:transparent;
  6553. }
  6554. #u40976_div {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:0px;
  6558. top:0px;
  6559. width:346px;
  6560. height:27px;
  6561. background:inherit;
  6562. background-color:rgba(255, 255, 255, 1);
  6563. border:none;
  6564. border-radius:0px;
  6565. -moz-box-shadow:none;
  6566. -webkit-box-shadow:none;
  6567. box-shadow:none;
  6568. font-size:14px;
  6569. color:#1890FF;
  6570. }
  6571. #u40976 {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:501px;
  6575. top:208px;
  6576. width:346px;
  6577. height:27px;
  6578. display:flex;
  6579. font-size:14px;
  6580. color:#1890FF;
  6581. }
  6582. #u40976 .text {
  6583. position:absolute;
  6584. align-self:flex-start;
  6585. padding:2px 2px 2px 2px;
  6586. box-sizing:border-box;
  6587. width:100%;
  6588. }
  6589. #u40976_div.disabled {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:346px;
  6595. height:27px;
  6596. background:inherit;
  6597. background-color:rgba(240, 240, 240, 1);
  6598. border:none;
  6599. border-radius:0px;
  6600. -moz-box-shadow:none;
  6601. -webkit-box-shadow:none;
  6602. box-shadow:none;
  6603. font-size:14px;
  6604. color:#1890FF;
  6605. }
  6606. #u40976.disabled {
  6607. }
  6608. .u40976_input_option {
  6609. font-size:14px;
  6610. }
  6611. #u40977_div {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:0px;
  6615. top:0px;
  6616. width:308px;
  6617. height:34px;
  6618. background:inherit;
  6619. background-color:rgba(255, 255, 255, 0);
  6620. border:none;
  6621. border-left:0px;
  6622. border-top:0px;
  6623. border-right:0px;
  6624. border-radius:0px;
  6625. border-bottom-right-radius:0px;
  6626. border-bottom-left-radius:0px;
  6627. -moz-box-shadow:none;
  6628. -webkit-box-shadow:none;
  6629. box-shadow:none;
  6630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6631. font-weight:400;
  6632. font-style:normal;
  6633. font-size:12px;
  6634. color:#D9001B;
  6635. }
  6636. #u40977 {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:508px;
  6640. top:235px;
  6641. width:308px;
  6642. height:34px;
  6643. display:flex;
  6644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6645. font-weight:400;
  6646. font-style:normal;
  6647. font-size:12px;
  6648. color:#D9001B;
  6649. }
  6650. #u40977 .text {
  6651. position:absolute;
  6652. align-self:center;
  6653. padding:0px 0px 0px 0px;
  6654. box-sizing:border-box;
  6655. width:100%;
  6656. }
  6657. #u40977_text {
  6658. border-width:0px;
  6659. white-space:nowrap;
  6660. text-transform:none;
  6661. }
  6662. #u40978 {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:0px;
  6666. top:0px;
  6667. width:0px;
  6668. height:0px;
  6669. }
  6670. #u40980_img {
  6671. border-width:0px;
  6672. position:absolute;
  6673. left:0px;
  6674. top:0px;
  6675. width:433px;
  6676. height:865px;
  6677. }
  6678. #u40980 {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:2275px;
  6682. top:2px;
  6683. width:433px;
  6684. height:865px;
  6685. display:flex;
  6686. }
  6687. #u40980 .text {
  6688. position:absolute;
  6689. align-self:center;
  6690. padding:2px 2px 2px 2px;
  6691. box-sizing:border-box;
  6692. width:100%;
  6693. }
  6694. #u40980_text {
  6695. border-width:0px;
  6696. word-wrap:break-word;
  6697. text-transform:none;
  6698. visibility:hidden;
  6699. }
  6700. #u40981_div {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:375px;
  6706. height:40px;
  6707. background:inherit;
  6708. background-color:rgba(255, 255, 255, 1);
  6709. box-sizing:border-box;
  6710. border-width:1px;
  6711. border-style:solid;
  6712. border-color:rgba(215, 215, 215, 1);
  6713. border-left:0px;
  6714. border-top:0px;
  6715. border-right:0px;
  6716. border-radius:0px;
  6717. border-bottom-right-radius:0px;
  6718. border-bottom-left-radius:0px;
  6719. -moz-box-shadow:none;
  6720. -webkit-box-shadow:none;
  6721. box-shadow:none;
  6722. }
  6723. #u40981 {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:2304px;
  6727. top:69px;
  6728. width:375px;
  6729. height:40px;
  6730. display:flex;
  6731. }
  6732. #u40981 .text {
  6733. position:absolute;
  6734. align-self:center;
  6735. padding:2px 2px 2px 2px;
  6736. box-sizing:border-box;
  6737. width:100%;
  6738. }
  6739. #u40981_text {
  6740. border-width:0px;
  6741. word-wrap:break-word;
  6742. text-transform:none;
  6743. visibility:hidden;
  6744. }
  6745. #u40982 {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:0px;
  6749. top:0px;
  6750. width:0px;
  6751. height:0px;
  6752. }
  6753. #u40983_div {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:88px;
  6759. height:32px;
  6760. background:inherit;
  6761. background-color:rgba(255, 255, 255, 1);
  6762. box-sizing:border-box;
  6763. border-width:1px;
  6764. border-style:solid;
  6765. border-color:rgba(242, 242, 242, 1);
  6766. border-radius:33px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. }
  6771. #u40983 {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:2584px;
  6775. top:73px;
  6776. width:88px;
  6777. height:32px;
  6778. display:flex;
  6779. }
  6780. #u40983 .text {
  6781. position:absolute;
  6782. align-self:center;
  6783. padding:2px 2px 2px 2px;
  6784. box-sizing:border-box;
  6785. width:100%;
  6786. }
  6787. #u40983_text {
  6788. border-width:0px;
  6789. word-wrap:break-word;
  6790. text-transform:none;
  6791. visibility:hidden;
  6792. }
  6793. #u40984 {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:0px;
  6799. height:0px;
  6800. }
  6801. #u40985_img {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:0px;
  6805. top:0px;
  6806. width:18px;
  6807. height:18px;
  6808. }
  6809. #u40985 {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:2647px;
  6813. top:80px;
  6814. width:18px;
  6815. height:18px;
  6816. display:flex;
  6817. }
  6818. #u40985 .text {
  6819. position:absolute;
  6820. align-self:center;
  6821. padding:2px 2px 2px 2px;
  6822. box-sizing:border-box;
  6823. width:100%;
  6824. }
  6825. #u40985_text {
  6826. border-width:0px;
  6827. word-wrap:break-word;
  6828. text-transform:none;
  6829. visibility:hidden;
  6830. }
  6831. #u40986_img {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:6px;
  6837. height:6px;
  6838. }
  6839. #u40986 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:2653px;
  6843. top:86px;
  6844. width:6px;
  6845. height:6px;
  6846. display:flex;
  6847. }
  6848. #u40986 .text {
  6849. position:absolute;
  6850. align-self:center;
  6851. padding:2px 2px 2px 2px;
  6852. box-sizing:border-box;
  6853. width:100%;
  6854. }
  6855. #u40986_text {
  6856. border-width:0px;
  6857. word-wrap:break-word;
  6858. text-transform:none;
  6859. visibility:hidden;
  6860. }
  6861. #u40987 {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:0px;
  6865. top:0px;
  6866. width:0px;
  6867. height:0px;
  6868. }
  6869. #u40988_img {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:0px;
  6873. top:0px;
  6874. width:5px;
  6875. height:5px;
  6876. }
  6877. #u40988 {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:2598px;
  6881. top:87px;
  6882. width:5px;
  6883. height:5px;
  6884. display:flex;
  6885. }
  6886. #u40988 .text {
  6887. position:absolute;
  6888. align-self:center;
  6889. padding:2px 2px 2px 2px;
  6890. box-sizing:border-box;
  6891. width:100%;
  6892. }
  6893. #u40988_text {
  6894. border-width:0px;
  6895. word-wrap:break-word;
  6896. text-transform:none;
  6897. visibility:hidden;
  6898. }
  6899. #u40989_img {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:5px;
  6905. height:5px;
  6906. }
  6907. #u40989 {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:2614px;
  6911. top:87px;
  6912. width:5px;
  6913. height:5px;
  6914. display:flex;
  6915. }
  6916. #u40989 .text {
  6917. position:absolute;
  6918. align-self:center;
  6919. padding:2px 2px 2px 2px;
  6920. box-sizing:border-box;
  6921. width:100%;
  6922. }
  6923. #u40989_text {
  6924. border-width:0px;
  6925. word-wrap:break-word;
  6926. text-transform:none;
  6927. visibility:hidden;
  6928. }
  6929. #u40990_img {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:7px;
  6935. height:7px;
  6936. }
  6937. #u40990 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:2605px;
  6941. top:86px;
  6942. width:7px;
  6943. height:7px;
  6944. display:flex;
  6945. }
  6946. #u40990 .text {
  6947. position:absolute;
  6948. align-self:center;
  6949. padding:2px 2px 2px 2px;
  6950. box-sizing:border-box;
  6951. width:100%;
  6952. }
  6953. #u40990_text {
  6954. border-width:0px;
  6955. word-wrap:break-word;
  6956. text-transform:none;
  6957. visibility:hidden;
  6958. }
  6959. #u40991_img {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:0px;
  6963. top:0px;
  6964. width:19px;
  6965. height:2px;
  6966. }
  6967. #u40991 {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:2622px;
  6971. top:89px;
  6972. width:18px;
  6973. height:1px;
  6974. display:flex;
  6975. -webkit-transform:rotate(90deg);
  6976. -moz-transform:rotate(90deg);
  6977. -ms-transform:rotate(90deg);
  6978. transform:rotate(90deg);
  6979. }
  6980. #u40991 .text {
  6981. position:absolute;
  6982. align-self:center;
  6983. padding:2px 2px 2px 2px;
  6984. box-sizing:border-box;
  6985. width:100%;
  6986. }
  6987. #u40991_text {
  6988. border-width:0px;
  6989. word-wrap:break-word;
  6990. text-transform:none;
  6991. visibility:hidden;
  6992. }
  6993. #u40992_img {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:0px;
  6997. top:0px;
  6998. width:375px;
  6999. height:44px;
  7000. }
  7001. #u40992 {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:2304px;
  7005. top:26px;
  7006. width:375px;
  7007. height:44px;
  7008. display:flex;
  7009. }
  7010. #u40992 .text {
  7011. position:absolute;
  7012. align-self:center;
  7013. padding:2px 2px 2px 2px;
  7014. box-sizing:border-box;
  7015. width:100%;
  7016. }
  7017. #u40992_text {
  7018. border-width:0px;
  7019. word-wrap:break-word;
  7020. text-transform:none;
  7021. visibility:hidden;
  7022. }
  7023. #u40993_div {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:0px;
  7027. top:0px;
  7028. width:375px;
  7029. height:50px;
  7030. background:inherit;
  7031. background-color:rgba(255, 255, 255, 1);
  7032. box-sizing:border-box;
  7033. border-width:1px;
  7034. border-style:solid;
  7035. border-color:rgba(242, 242, 242, 1);
  7036. border-radius:26px;
  7037. border-top-left-radius:0px;
  7038. border-top-right-radius:0px;
  7039. -moz-box-shadow:none;
  7040. -webkit-box-shadow:none;
  7041. box-shadow:none;
  7042. }
  7043. #u40993 {
  7044. border-width:0px;
  7045. position:absolute;
  7046. left:2304px;
  7047. top:790px;
  7048. width:375px;
  7049. height:50px;
  7050. display:flex;
  7051. }
  7052. #u40993 .text {
  7053. position:absolute;
  7054. align-self:center;
  7055. padding:2px 2px 2px 2px;
  7056. box-sizing:border-box;
  7057. width:100%;
  7058. }
  7059. #u40993_text {
  7060. border-width:0px;
  7061. word-wrap:break-word;
  7062. text-transform:none;
  7063. visibility:hidden;
  7064. }
  7065. #u40994 {
  7066. border-width:0px;
  7067. position:absolute;
  7068. left:0px;
  7069. top:0px;
  7070. width:0px;
  7071. height:0px;
  7072. }
  7073. #u40995_img {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:0px;
  7077. top:0px;
  7078. width:24px;
  7079. height:24px;
  7080. }
  7081. #u40995 {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:2344px;
  7085. top:794px;
  7086. width:24px;
  7087. height:24px;
  7088. display:flex;
  7089. font-size:8px;
  7090. }
  7091. #u40995 .text {
  7092. position:absolute;
  7093. align-self:center;
  7094. padding:2px 2px 2px 2px;
  7095. box-sizing:border-box;
  7096. width:100%;
  7097. }
  7098. #u40995_text {
  7099. border-width:0px;
  7100. word-wrap:break-word;
  7101. text-transform:none;
  7102. }
  7103. #u40996_div {
  7104. border-width:0px;
  7105. position:absolute;
  7106. left:0px;
  7107. top:0px;
  7108. width:25px;
  7109. height:17px;
  7110. background:inherit;
  7111. background-color:rgba(255, 255, 255, 0);
  7112. border:none;
  7113. border-radius:0px;
  7114. -moz-box-shadow:none;
  7115. -webkit-box-shadow:none;
  7116. box-shadow:none;
  7117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7118. font-weight:400;
  7119. font-style:normal;
  7120. font-size:12px;
  7121. }
  7122. #u40996 {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:2344px;
  7126. top:819px;
  7127. width:25px;
  7128. height:17px;
  7129. display:flex;
  7130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7131. font-weight:400;
  7132. font-style:normal;
  7133. font-size:12px;
  7134. }
  7135. #u40996 .text {
  7136. position:absolute;
  7137. align-self:flex-start;
  7138. padding:0px 0px 0px 0px;
  7139. box-sizing:border-box;
  7140. width:100%;
  7141. }
  7142. #u40996_text {
  7143. border-width:0px;
  7144. white-space:nowrap;
  7145. text-transform:none;
  7146. }
  7147. #u40997 {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:0px;
  7151. top:0px;
  7152. width:0px;
  7153. height:0px;
  7154. }
  7155. #u40998_img {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:24px;
  7161. height:24px;
  7162. }
  7163. #u40998 {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:2614px;
  7167. top:796px;
  7168. width:24px;
  7169. height:24px;
  7170. display:flex;
  7171. font-size:8px;
  7172. }
  7173. #u40998 .text {
  7174. position:absolute;
  7175. align-self:center;
  7176. padding:2px 2px 2px 2px;
  7177. box-sizing:border-box;
  7178. width:100%;
  7179. }
  7180. #u40998_text {
  7181. border-width:0px;
  7182. word-wrap:break-word;
  7183. text-transform:none;
  7184. }
  7185. #u40999_div {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:0px;
  7189. top:0px;
  7190. width:25px;
  7191. height:17px;
  7192. background:inherit;
  7193. background-color:rgba(255, 255, 255, 0);
  7194. border:none;
  7195. border-radius:0px;
  7196. -moz-box-shadow:none;
  7197. -webkit-box-shadow:none;
  7198. box-shadow:none;
  7199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7200. font-weight:400;
  7201. font-style:normal;
  7202. font-size:12px;
  7203. }
  7204. #u40999 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:2614px;
  7208. top:821px;
  7209. width:25px;
  7210. height:17px;
  7211. display:flex;
  7212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7213. font-weight:400;
  7214. font-style:normal;
  7215. font-size:12px;
  7216. }
  7217. #u40999 .text {
  7218. position:absolute;
  7219. align-self:flex-start;
  7220. padding:0px 0px 0px 0px;
  7221. box-sizing:border-box;
  7222. width:100%;
  7223. }
  7224. #u40999_text {
  7225. border-width:0px;
  7226. white-space:nowrap;
  7227. text-transform:none;
  7228. }
  7229. #u41000_div {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:0px;
  7233. top:0px;
  7234. width:375px;
  7235. height:681px;
  7236. background:inherit;
  7237. background-color:rgba(242, 242, 242, 0.462745098039216);
  7238. border:none;
  7239. border-radius:0px;
  7240. -moz-box-shadow:none;
  7241. -webkit-box-shadow:none;
  7242. box-shadow:none;
  7243. }
  7244. #u41000 {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:2304px;
  7248. top:109px;
  7249. width:375px;
  7250. height:681px;
  7251. display:flex;
  7252. }
  7253. #u41000 .text {
  7254. position:absolute;
  7255. align-self:center;
  7256. padding:2px 2px 2px 2px;
  7257. box-sizing:border-box;
  7258. width:100%;
  7259. }
  7260. #u41000_text {
  7261. border-width:0px;
  7262. word-wrap:break-word;
  7263. text-transform:none;
  7264. visibility:hidden;
  7265. }
  7266. #u41001 {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:0px;
  7270. top:0px;
  7271. width:0px;
  7272. height:0px;
  7273. }
  7274. #u41002_img {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:0px;
  7278. top:0px;
  7279. width:24px;
  7280. height:24px;
  7281. }
  7282. #u41002 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:2526px;
  7286. top:794px;
  7287. width:24px;
  7288. height:24px;
  7289. display:flex;
  7290. font-size:8px;
  7291. }
  7292. #u41002 .text {
  7293. position:absolute;
  7294. align-self:center;
  7295. padding:2px 2px 2px 2px;
  7296. box-sizing:border-box;
  7297. width:100%;
  7298. }
  7299. #u41002_text {
  7300. border-width:0px;
  7301. word-wrap:break-word;
  7302. text-transform:none;
  7303. }
  7304. #u41003_div {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:0px;
  7308. top:0px;
  7309. width:37px;
  7310. height:17px;
  7311. background:inherit;
  7312. background-color:rgba(255, 255, 255, 0);
  7313. border:none;
  7314. border-radius:0px;
  7315. -moz-box-shadow:none;
  7316. -webkit-box-shadow:none;
  7317. box-shadow:none;
  7318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7319. font-weight:400;
  7320. font-style:normal;
  7321. font-size:12px;
  7322. }
  7323. #u41003 {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:2520px;
  7327. top:819px;
  7328. width:37px;
  7329. height:17px;
  7330. display:flex;
  7331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7332. font-weight:400;
  7333. font-style:normal;
  7334. font-size:12px;
  7335. }
  7336. #u41003 .text {
  7337. position:absolute;
  7338. align-self:flex-start;
  7339. padding:0px 0px 0px 0px;
  7340. box-sizing:border-box;
  7341. width:100%;
  7342. }
  7343. #u41003_text {
  7344. border-width:0px;
  7345. white-space:nowrap;
  7346. text-transform:none;
  7347. }
  7348. #u41004 {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:0px;
  7352. top:0px;
  7353. width:0px;
  7354. height:0px;
  7355. }
  7356. #u41005_img {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:0px;
  7360. top:0px;
  7361. width:24px;
  7362. height:24px;
  7363. }
  7364. #u41005 {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:2432px;
  7368. top:794px;
  7369. width:24px;
  7370. height:24px;
  7371. display:flex;
  7372. font-size:8px;
  7373. }
  7374. #u41005 .text {
  7375. position:absolute;
  7376. align-self:center;
  7377. padding:2px 2px 2px 2px;
  7378. box-sizing:border-box;
  7379. width:100%;
  7380. }
  7381. #u41005_text {
  7382. border-width:0px;
  7383. word-wrap:break-word;
  7384. text-transform:none;
  7385. }
  7386. #u41006_div {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:0px;
  7390. top:0px;
  7391. width:37px;
  7392. height:17px;
  7393. background:inherit;
  7394. background-color:rgba(255, 255, 255, 0);
  7395. border:none;
  7396. border-radius:0px;
  7397. -moz-box-shadow:none;
  7398. -webkit-box-shadow:none;
  7399. box-shadow:none;
  7400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. font-size:12px;
  7404. }
  7405. #u41006 {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:2426px;
  7409. top:819px;
  7410. width:37px;
  7411. height:17px;
  7412. display:flex;
  7413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7414. font-weight:400;
  7415. font-style:normal;
  7416. font-size:12px;
  7417. }
  7418. #u41006 .text {
  7419. position:absolute;
  7420. align-self:flex-start;
  7421. padding:0px 0px 0px 0px;
  7422. box-sizing:border-box;
  7423. width:100%;
  7424. }
  7425. #u41006_text {
  7426. border-width:0px;
  7427. white-space:nowrap;
  7428. text-transform:none;
  7429. }
  7430. #u41007_div {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:375px;
  7436. height:775px;
  7437. background:inherit;
  7438. background-color:rgba(255, 255, 255, 1);
  7439. border:none;
  7440. border-top:0px;
  7441. border-radius:28px;
  7442. border-top-left-radius:0px;
  7443. border-top-right-radius:0px;
  7444. -moz-box-shadow:none;
  7445. -webkit-box-shadow:none;
  7446. box-shadow:none;
  7447. }
  7448. #u41007 {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:2304px;
  7452. top:67px;
  7453. width:375px;
  7454. height:775px;
  7455. display:flex;
  7456. }
  7457. #u41007 .text {
  7458. position:absolute;
  7459. align-self:center;
  7460. padding:2px 2px 2px 2px;
  7461. box-sizing:border-box;
  7462. width:100%;
  7463. }
  7464. #u41007_text {
  7465. border-width:0px;
  7466. word-wrap:break-word;
  7467. text-transform:none;
  7468. visibility:hidden;
  7469. }
  7470. #u41008_div {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:0px;
  7474. top:0px;
  7475. width:121px;
  7476. height:30px;
  7477. background:inherit;
  7478. background-color:rgba(255, 255, 255, 0);
  7479. border:none;
  7480. border-left:0px;
  7481. border-top:0px;
  7482. border-right:0px;
  7483. border-radius:0px;
  7484. border-bottom-right-radius:0px;
  7485. border-bottom-left-radius:0px;
  7486. -moz-box-shadow:none;
  7487. -webkit-box-shadow:none;
  7488. box-shadow:none;
  7489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7490. font-weight:400;
  7491. font-style:normal;
  7492. line-height:30px;
  7493. }
  7494. #u41008 {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:2426px;
  7498. top:228px;
  7499. width:121px;
  7500. height:30px;
  7501. display:flex;
  7502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7503. font-weight:400;
  7504. font-style:normal;
  7505. line-height:30px;
  7506. }
  7507. #u41008 .text {
  7508. position:absolute;
  7509. align-self:center;
  7510. padding:0px 0px 0px 0px;
  7511. box-sizing:border-box;
  7512. width:100%;
  7513. }
  7514. #u41008_text {
  7515. border-width:0px;
  7516. white-space:nowrap;
  7517. text-transform:none;
  7518. }
  7519. #u41009_div {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:0px;
  7523. top:0px;
  7524. width:126px;
  7525. height:40px;
  7526. background:inherit;
  7527. background-color:rgba(255, 255, 255, 1);
  7528. box-sizing:border-box;
  7529. border-width:1px;
  7530. border-style:solid;
  7531. border-color:rgba(121, 121, 121, 1);
  7532. border-radius:63px;
  7533. -moz-box-shadow:none;
  7534. -webkit-box-shadow:none;
  7535. box-shadow:none;
  7536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7537. font-weight:400;
  7538. font-style:normal;
  7539. font-size:14px;
  7540. }
  7541. #u41009 {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:2502px;
  7545. top:355px;
  7546. width:126px;
  7547. height:40px;
  7548. display:flex;
  7549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7550. font-weight:400;
  7551. font-style:normal;
  7552. font-size:14px;
  7553. }
  7554. #u41009 .text {
  7555. position:absolute;
  7556. align-self:center;
  7557. padding:2px 2px 2px 2px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u41009_text {
  7562. border-width:0px;
  7563. word-wrap:break-word;
  7564. text-transform:none;
  7565. }
  7566. #u41010_img {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:83px;
  7572. height:83px;
  7573. }
  7574. #u41010 {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:2450px;
  7578. top:129px;
  7579. width:83px;
  7580. height:83px;
  7581. display:flex;
  7582. }
  7583. #u41010 .text {
  7584. position:absolute;
  7585. align-self:center;
  7586. padding:2px 2px 2px 2px;
  7587. box-sizing:border-box;
  7588. width:100%;
  7589. }
  7590. #u41010_text {
  7591. border-width:0px;
  7592. word-wrap:break-word;
  7593. text-transform:none;
  7594. visibility:hidden;
  7595. }
  7596. #u41011_div {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:0px;
  7600. top:0px;
  7601. width:126px;
  7602. height:40px;
  7603. background:inherit;
  7604. background-color:rgba(255, 255, 255, 1);
  7605. box-sizing:border-box;
  7606. border-width:1px;
  7607. border-style:solid;
  7608. border-color:rgba(121, 121, 121, 1);
  7609. border-radius:63px;
  7610. -moz-box-shadow:none;
  7611. -webkit-box-shadow:none;
  7612. box-shadow:none;
  7613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7614. font-weight:400;
  7615. font-style:normal;
  7616. font-size:14px;
  7617. }
  7618. #u41011 {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:2356px;
  7622. top:355px;
  7623. width:126px;
  7624. height:40px;
  7625. display:flex;
  7626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7627. font-weight:400;
  7628. font-style:normal;
  7629. font-size:14px;
  7630. }
  7631. #u41011 .text {
  7632. position:absolute;
  7633. align-self:center;
  7634. padding:2px 2px 2px 2px;
  7635. box-sizing:border-box;
  7636. width:100%;
  7637. }
  7638. #u41011_text {
  7639. border-width:0px;
  7640. word-wrap:break-word;
  7641. text-transform:none;
  7642. }
  7643. #u41012_div {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:0px;
  7647. top:0px;
  7648. width:30px;
  7649. height:30px;
  7650. background:inherit;
  7651. background-color:rgba(255, 255, 255, 0);
  7652. border:none;
  7653. border-left:0px;
  7654. border-top:0px;
  7655. border-right:0px;
  7656. border-radius:0px;
  7657. border-bottom-right-radius:0px;
  7658. border-bottom-left-radius:0px;
  7659. -moz-box-shadow:none;
  7660. -webkit-box-shadow:none;
  7661. box-shadow:none;
  7662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7663. font-weight:400;
  7664. font-style:normal;
  7665. font-size:18px;
  7666. text-align:center;
  7667. line-height:30px;
  7668. }
  7669. #u41012 {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:2314px;
  7673. top:77px;
  7674. width:30px;
  7675. height:30px;
  7676. display:flex;
  7677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. font-size:18px;
  7681. text-align:center;
  7682. line-height:30px;
  7683. }
  7684. #u41012 .text {
  7685. position:absolute;
  7686. align-self:center;
  7687. padding:0px 0px 0px 0px;
  7688. box-sizing:border-box;
  7689. width:100%;
  7690. }
  7691. #u41012_text {
  7692. border-width:0px;
  7693. word-wrap:break-word;
  7694. text-transform:none;
  7695. }
  7696. #u41013 {
  7697. border-width:0px;
  7698. position:absolute;
  7699. left:0px;
  7700. top:0px;
  7701. width:0px;
  7702. height:0px;
  7703. }
  7704. #u41014_img {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:0px;
  7708. top:0px;
  7709. width:350px;
  7710. height:40px;
  7711. }
  7712. #u41014 {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:2316px;
  7716. top:433px;
  7717. width:350px;
  7718. height:40px;
  7719. display:flex;
  7720. }
  7721. #u41014 .text {
  7722. position:absolute;
  7723. align-self:center;
  7724. padding:2px 2px 2px 2px;
  7725. box-sizing:border-box;
  7726. width:100%;
  7727. }
  7728. #u41014_text {
  7729. border-width:0px;
  7730. word-wrap:break-word;
  7731. text-transform:none;
  7732. visibility:hidden;
  7733. }
  7734. #u41015 {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:0px;
  7738. top:0px;
  7739. width:0px;
  7740. height:0px;
  7741. }
  7742. #u41016_div {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:0px;
  7746. top:0px;
  7747. width:221px;
  7748. height:30px;
  7749. background:inherit;
  7750. background-color:rgba(255, 255, 255, 0);
  7751. border:none;
  7752. border-left:0px;
  7753. border-top:0px;
  7754. border-right:0px;
  7755. border-radius:0px;
  7756. border-bottom-right-radius:0px;
  7757. border-bottom-left-radius:0px;
  7758. -moz-box-shadow:none;
  7759. -webkit-box-shadow:none;
  7760. box-shadow:none;
  7761. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7762. font-style:normal;
  7763. color:#FFFFFF;
  7764. text-align:center;
  7765. line-height:30px;
  7766. }
  7767. #u41016 {
  7768. border-width:0px;
  7769. position:absolute;
  7770. left:2396px;
  7771. top:438px;
  7772. width:221px;
  7773. height:30px;
  7774. display:flex;
  7775. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7776. font-style:normal;
  7777. color:#FFFFFF;
  7778. text-align:center;
  7779. line-height:30px;
  7780. }
  7781. #u41016 .text {
  7782. position:absolute;
  7783. align-self:center;
  7784. padding:0px 0px 0px 0px;
  7785. box-sizing:border-box;
  7786. width:100%;
  7787. }
  7788. #u41016_text {
  7789. border-width:0px;
  7790. white-space:nowrap;
  7791. text-transform:none;
  7792. }
  7793. #u41017_img {
  7794. border-width:0px;
  7795. position:absolute;
  7796. left:0px;
  7797. top:0px;
  7798. width:26px;
  7799. height:26px;
  7800. }
  7801. #u41017 {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:2366px;
  7805. top:440px;
  7806. width:26px;
  7807. height:26px;
  7808. display:flex;
  7809. }
  7810. #u41017 .text {
  7811. position:absolute;
  7812. align-self:center;
  7813. padding:2px 2px 2px 2px;
  7814. box-sizing:border-box;
  7815. width:100%;
  7816. }
  7817. #u41017_text {
  7818. border-width:0px;
  7819. word-wrap:break-word;
  7820. text-transform:none;
  7821. }
  7822. #u41018_div {
  7823. border-width:0px;
  7824. position:absolute;
  7825. left:0px;
  7826. top:0px;
  7827. width:304px;
  7828. height:60px;
  7829. background:inherit;
  7830. background-color:rgba(255, 255, 255, 0);
  7831. border:none;
  7832. border-left:0px;
  7833. border-top:0px;
  7834. border-right:0px;
  7835. border-radius:0px;
  7836. border-bottom-right-radius:0px;
  7837. border-bottom-left-radius:0px;
  7838. -moz-box-shadow:none;
  7839. -webkit-box-shadow:none;
  7840. box-shadow:none;
  7841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7842. font-weight:400;
  7843. font-style:normal;
  7844. font-size:14px;
  7845. text-align:center;
  7846. line-height:30px;
  7847. }
  7848. #u41018 {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:2347px;
  7852. top:269px;
  7853. width:304px;
  7854. height:60px;
  7855. display:flex;
  7856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7857. font-weight:400;
  7858. font-style:normal;
  7859. font-size:14px;
  7860. text-align:center;
  7861. line-height:30px;
  7862. }
  7863. #u41018 .text {
  7864. position:absolute;
  7865. align-self:center;
  7866. padding:0px 0px 0px 0px;
  7867. box-sizing:border-box;
  7868. width:100%;
  7869. }
  7870. #u41018_text {
  7871. border-width:0px;
  7872. word-wrap:break-word;
  7873. text-transform:none;
  7874. }
  7875. #u41019_div {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:0px;
  7879. top:0px;
  7880. width:413px;
  7881. height:40px;
  7882. background:inherit;
  7883. background-color:rgba(255, 255, 255, 0);
  7884. border:none;
  7885. border-left:0px;
  7886. border-top:0px;
  7887. border-right:0px;
  7888. border-radius:0px;
  7889. border-bottom-right-radius:0px;
  7890. border-bottom-left-radius:0px;
  7891. -moz-box-shadow:none;
  7892. -webkit-box-shadow:none;
  7893. box-shadow:none;
  7894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7895. font-weight:400;
  7896. font-style:normal;
  7897. font-size:14px;
  7898. color:#D9001B;
  7899. }
  7900. #u41019 {
  7901. border-width:0px;
  7902. position:absolute;
  7903. left:2482px;
  7904. top:392px;
  7905. width:413px;
  7906. height:40px;
  7907. display:flex;
  7908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7909. font-weight:400;
  7910. font-style:normal;
  7911. font-size:14px;
  7912. color:#D9001B;
  7913. }
  7914. #u41019 .text {
  7915. position:absolute;
  7916. align-self:flex-start;
  7917. padding:0px 0px 0px 0px;
  7918. box-sizing:border-box;
  7919. width:100%;
  7920. }
  7921. #u41019_text {
  7922. border-width:0px;
  7923. white-space:nowrap;
  7924. text-transform:none;
  7925. }
  7926. #u41020 {
  7927. border-width:0px;
  7928. position:absolute;
  7929. left:0px;
  7930. top:0px;
  7931. width:0px;
  7932. height:0px;
  7933. }
  7934. #u41021_div {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:0px;
  7938. top:0px;
  7939. width:645px;
  7940. height:120px;
  7941. background:inherit;
  7942. background-color:rgba(255, 255, 255, 0);
  7943. border:none;
  7944. border-left:0px;
  7945. border-top:0px;
  7946. border-right:0px;
  7947. border-radius:0px;
  7948. border-bottom-right-radius:0px;
  7949. border-bottom-left-radius:0px;
  7950. -moz-box-shadow:none;
  7951. -webkit-box-shadow:none;
  7952. box-shadow:none;
  7953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7954. font-weight:400;
  7955. font-style:normal;
  7956. font-size:14px;
  7957. color:#D9001B;
  7958. }
  7959. #u41021 {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:2156px;
  7963. top:877px;
  7964. width:645px;
  7965. height:120px;
  7966. display:flex;
  7967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7968. font-weight:400;
  7969. font-style:normal;
  7970. font-size:14px;
  7971. color:#D9001B;
  7972. }
  7973. #u41021 .text {
  7974. position:absolute;
  7975. align-self:flex-start;
  7976. padding:0px 0px 0px 0px;
  7977. box-sizing:border-box;
  7978. width:100%;
  7979. }
  7980. #u41021_text {
  7981. border-width:0px;
  7982. white-space:nowrap;
  7983. text-transform:none;
  7984. }
  7985. #u41022 {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:0px;
  7989. top:0px;
  7990. width:0px;
  7991. height:0px;
  7992. }
  7993. #u41023_div {
  7994. border-width:0px;
  7995. position:absolute;
  7996. left:0px;
  7997. top:0px;
  7998. width:260px;
  7999. height:40px;
  8000. background:inherit;
  8001. background-color:rgba(255, 255, 255, 1);
  8002. border:none;
  8003. border-radius:63px;
  8004. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8005. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8006. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8008. font-weight:400;
  8009. font-style:normal;
  8010. font-size:14px;
  8011. }
  8012. #u41023 {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:2159px;
  8016. top:923px;
  8017. width:260px;
  8018. height:40px;
  8019. display:flex;
  8020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8021. font-weight:400;
  8022. font-style:normal;
  8023. font-size:14px;
  8024. }
  8025. #u41023 .text {
  8026. position:absolute;
  8027. align-self:center;
  8028. padding:2px 2px 2px 2px;
  8029. box-sizing:border-box;
  8030. width:100%;
  8031. }
  8032. #u41023_text {
  8033. border-width:0px;
  8034. word-wrap:break-word;
  8035. text-transform:none;
  8036. visibility:hidden;
  8037. }
  8038. #u41024_img {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:0px;
  8042. top:0px;
  8043. width:19px;
  8044. height:19px;
  8045. }
  8046. #u41024 {
  8047. border-width:0px;
  8048. position:absolute;
  8049. left:2169px;
  8050. top:933px;
  8051. width:19px;
  8052. height:19px;
  8053. display:flex;
  8054. }
  8055. #u41024 .text {
  8056. position:absolute;
  8057. align-self:center;
  8058. padding:2px 2px 2px 2px;
  8059. box-sizing:border-box;
  8060. width:100%;
  8061. }
  8062. #u41024_text {
  8063. border-width:0px;
  8064. word-wrap:break-word;
  8065. text-transform:none;
  8066. visibility:hidden;
  8067. }
  8068. #u41025_div {
  8069. border-width:0px;
  8070. position:absolute;
  8071. left:0px;
  8072. top:0px;
  8073. width:199px;
  8074. height:17px;
  8075. background:inherit;
  8076. background-color:rgba(255, 255, 255, 0);
  8077. border:none;
  8078. border-left:0px;
  8079. border-top:0px;
  8080. border-right:0px;
  8081. border-radius:0px;
  8082. border-bottom-right-radius:0px;
  8083. border-bottom-left-radius:0px;
  8084. -moz-box-shadow:none;
  8085. -webkit-box-shadow:none;
  8086. box-shadow:none;
  8087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8088. font-weight:400;
  8089. font-style:normal;
  8090. font-size:12px;
  8091. }
  8092. #u41025 {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:2198px;
  8096. top:934px;
  8097. width:199px;
  8098. height:17px;
  8099. display:flex;
  8100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:12px;
  8104. }
  8105. #u41025 .text {
  8106. position:absolute;
  8107. align-self:flex-start;
  8108. padding:0px 0px 0px 0px;
  8109. box-sizing:border-box;
  8110. width:100%;
  8111. }
  8112. #u41025_text {
  8113. border-width:0px;
  8114. white-space:nowrap;
  8115. text-transform:none;
  8116. }
  8117. #u41026 {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:0px;
  8121. top:0px;
  8122. width:0px;
  8123. height:0px;
  8124. }
  8125. #u41027 {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:0px;
  8129. top:0px;
  8130. width:0px;
  8131. height:0px;
  8132. }
  8133. #u41028_img {
  8134. border-width:0px;
  8135. position:absolute;
  8136. left:0px;
  8137. top:0px;
  8138. width:7px;
  8139. height:12px;
  8140. }
  8141. #u41028 {
  8142. border-width:0px;
  8143. position:absolute;
  8144. left:837px;
  8145. top:363px;
  8146. width:7px;
  8147. height:12px;
  8148. display:flex;
  8149. -webkit-transform:rotate(180deg);
  8150. -moz-transform:rotate(180deg);
  8151. -ms-transform:rotate(180deg);
  8152. transform:rotate(180deg);
  8153. }
  8154. #u41028 .text {
  8155. position:absolute;
  8156. align-self:center;
  8157. padding:2px 2px 2px 2px;
  8158. box-sizing:border-box;
  8159. width:100%;
  8160. }
  8161. #u41028_text {
  8162. border-width:0px;
  8163. word-wrap:break-word;
  8164. text-transform:none;
  8165. visibility:hidden;
  8166. }
  8167. #u41029_div {
  8168. border-width:0px;
  8169. position:absolute;
  8170. left:0px;
  8171. top:0px;
  8172. width:235px;
  8173. height:40px;
  8174. background:inherit;
  8175. background-color:rgba(255, 255, 255, 0);
  8176. border:none;
  8177. border-left:0px;
  8178. border-top:0px;
  8179. border-right:0px;
  8180. border-radius:0px;
  8181. border-bottom-right-radius:0px;
  8182. border-bottom-left-radius:0px;
  8183. -moz-box-shadow:none;
  8184. -webkit-box-shadow:none;
  8185. box-shadow:none;
  8186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8187. font-weight:400;
  8188. font-style:normal;
  8189. font-size:14px;
  8190. color:#AAAAAA;
  8191. line-height:40px;
  8192. }
  8193. #u41029 {
  8194. border-width:0px;
  8195. position:absolute;
  8196. left:502px;
  8197. top:349px;
  8198. width:235px;
  8199. height:40px;
  8200. display:flex;
  8201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8202. font-weight:400;
  8203. font-style:normal;
  8204. font-size:14px;
  8205. color:#AAAAAA;
  8206. line-height:40px;
  8207. }
  8208. #u41029 .text {
  8209. position:absolute;
  8210. align-self:flex-start;
  8211. padding:0px 0px 0px 0px;
  8212. box-sizing:border-box;
  8213. width:100%;
  8214. }
  8215. #u41029_text {
  8216. border-width:0px;
  8217. word-wrap:break-word;
  8218. text-transform:none;
  8219. }
  8220. #u41030_div {
  8221. border-width:0px;
  8222. position:absolute;
  8223. left:0px;
  8224. top:0px;
  8225. width:36px;
  8226. height:40px;
  8227. background:inherit;
  8228. background-color:rgba(255, 255, 255, 0);
  8229. border:none;
  8230. border-left:0px;
  8231. border-top:0px;
  8232. border-right:0px;
  8233. border-radius:0px;
  8234. border-bottom-right-radius:0px;
  8235. border-bottom-left-radius:0px;
  8236. -moz-box-shadow:none;
  8237. -webkit-box-shadow:none;
  8238. box-shadow:none;
  8239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8240. font-weight:400;
  8241. font-style:normal;
  8242. font-size:14px;
  8243. line-height:40px;
  8244. }
  8245. #u41030 {
  8246. border-width:0px;
  8247. position:absolute;
  8248. left:502px;
  8249. top:309px;
  8250. width:36px;
  8251. height:40px;
  8252. display:flex;
  8253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8254. font-weight:400;
  8255. font-style:normal;
  8256. font-size:14px;
  8257. line-height:40px;
  8258. }
  8259. #u41030 .text {
  8260. position:absolute;
  8261. align-self:flex-start;
  8262. padding:0px 0px 0px 0px;
  8263. box-sizing:border-box;
  8264. width:100%;
  8265. }
  8266. #u41030_text {
  8267. border-width:0px;
  8268. white-space:nowrap;
  8269. text-transform:none;
  8270. }
  8271. #u41031 {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:0px;
  8275. top:0px;
  8276. width:0px;
  8277. height:0px;
  8278. }
  8279. #u41032 {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:0px;
  8283. top:0px;
  8284. width:0px;
  8285. height:0px;
  8286. }
  8287. #u41033_img {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:0px;
  8291. top:0px;
  8292. width:7px;
  8293. height:12px;
  8294. }
  8295. #u41033 {
  8296. border-width:0px;
  8297. position:absolute;
  8298. left:837px;
  8299. top:443px;
  8300. width:7px;
  8301. height:12px;
  8302. display:flex;
  8303. -webkit-transform:rotate(180deg);
  8304. -moz-transform:rotate(180deg);
  8305. -ms-transform:rotate(180deg);
  8306. transform:rotate(180deg);
  8307. }
  8308. #u41033 .text {
  8309. position:absolute;
  8310. align-self:center;
  8311. padding:2px 2px 2px 2px;
  8312. box-sizing:border-box;
  8313. width:100%;
  8314. }
  8315. #u41033_text {
  8316. border-width:0px;
  8317. word-wrap:break-word;
  8318. text-transform:none;
  8319. visibility:hidden;
  8320. }
  8321. #u41034_div {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:0px;
  8325. top:0px;
  8326. width:235px;
  8327. height:40px;
  8328. background:inherit;
  8329. background-color:rgba(255, 255, 255, 0);
  8330. border:none;
  8331. border-left:0px;
  8332. border-top:0px;
  8333. border-right:0px;
  8334. border-radius:0px;
  8335. border-bottom-right-radius:0px;
  8336. border-bottom-left-radius:0px;
  8337. -moz-box-shadow:none;
  8338. -webkit-box-shadow:none;
  8339. box-shadow:none;
  8340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8341. font-weight:400;
  8342. font-style:normal;
  8343. font-size:14px;
  8344. color:#AAAAAA;
  8345. line-height:40px;
  8346. }
  8347. #u41034 {
  8348. border-width:0px;
  8349. position:absolute;
  8350. left:502px;
  8351. top:429px;
  8352. width:235px;
  8353. height:40px;
  8354. display:flex;
  8355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8356. font-weight:400;
  8357. font-style:normal;
  8358. font-size:14px;
  8359. color:#AAAAAA;
  8360. line-height:40px;
  8361. }
  8362. #u41034 .text {
  8363. position:absolute;
  8364. align-self:flex-start;
  8365. padding:0px 0px 0px 0px;
  8366. box-sizing:border-box;
  8367. width:100%;
  8368. }
  8369. #u41034_text {
  8370. border-width:0px;
  8371. word-wrap:break-word;
  8372. text-transform:none;
  8373. }
  8374. #u41035_div {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:0px;
  8378. top:0px;
  8379. width:36px;
  8380. height:40px;
  8381. background:inherit;
  8382. background-color:rgba(255, 255, 255, 0);
  8383. border:none;
  8384. border-left:0px;
  8385. border-top:0px;
  8386. border-right:0px;
  8387. border-radius:0px;
  8388. border-bottom-right-radius:0px;
  8389. border-bottom-left-radius:0px;
  8390. -moz-box-shadow:none;
  8391. -webkit-box-shadow:none;
  8392. box-shadow:none;
  8393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8394. font-weight:400;
  8395. font-style:normal;
  8396. font-size:14px;
  8397. line-height:40px;
  8398. }
  8399. #u41035 {
  8400. border-width:0px;
  8401. position:absolute;
  8402. left:502px;
  8403. top:389px;
  8404. width:36px;
  8405. height:40px;
  8406. display:flex;
  8407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8408. font-weight:400;
  8409. font-style:normal;
  8410. font-size:14px;
  8411. line-height:40px;
  8412. }
  8413. #u41035 .text {
  8414. position:absolute;
  8415. align-self:flex-start;
  8416. padding:0px 0px 0px 0px;
  8417. box-sizing:border-box;
  8418. width:100%;
  8419. }
  8420. #u41035_text {
  8421. border-width:0px;
  8422. white-space:nowrap;
  8423. text-transform:none;
  8424. }
  8425. #u41036 {
  8426. border-width:0px;
  8427. position:absolute;
  8428. left:0px;
  8429. top:0px;
  8430. width:0px;
  8431. height:0px;
  8432. }
  8433. #u41037 {
  8434. border-width:0px;
  8435. position:absolute;
  8436. left:0px;
  8437. top:0px;
  8438. width:0px;
  8439. height:0px;
  8440. }
  8441. #u41038_img {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:0px;
  8445. top:0px;
  8446. width:7px;
  8447. height:12px;
  8448. }
  8449. #u41038 {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:837px;
  8453. top:527px;
  8454. width:7px;
  8455. height:12px;
  8456. display:flex;
  8457. -webkit-transform:rotate(180deg);
  8458. -moz-transform:rotate(180deg);
  8459. -ms-transform:rotate(180deg);
  8460. transform:rotate(180deg);
  8461. }
  8462. #u41038 .text {
  8463. position:absolute;
  8464. align-self:center;
  8465. padding:2px 2px 2px 2px;
  8466. box-sizing:border-box;
  8467. width:100%;
  8468. }
  8469. #u41038_text {
  8470. border-width:0px;
  8471. word-wrap:break-word;
  8472. text-transform:none;
  8473. visibility:hidden;
  8474. }
  8475. #u41039_div {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:0px;
  8479. top:0px;
  8480. width:235px;
  8481. height:40px;
  8482. background:inherit;
  8483. background-color:rgba(255, 255, 255, 0);
  8484. border:none;
  8485. border-left:0px;
  8486. border-top:0px;
  8487. border-right:0px;
  8488. border-radius:0px;
  8489. border-bottom-right-radius:0px;
  8490. border-bottom-left-radius:0px;
  8491. -moz-box-shadow:none;
  8492. -webkit-box-shadow:none;
  8493. box-shadow:none;
  8494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8495. font-weight:400;
  8496. font-style:normal;
  8497. font-size:14px;
  8498. color:#AAAAAA;
  8499. line-height:40px;
  8500. }
  8501. #u41039 {
  8502. border-width:0px;
  8503. position:absolute;
  8504. left:502px;
  8505. top:513px;
  8506. width:235px;
  8507. height:40px;
  8508. display:flex;
  8509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8510. font-weight:400;
  8511. font-style:normal;
  8512. font-size:14px;
  8513. color:#AAAAAA;
  8514. line-height:40px;
  8515. }
  8516. #u41039 .text {
  8517. position:absolute;
  8518. align-self:flex-start;
  8519. padding:0px 0px 0px 0px;
  8520. box-sizing:border-box;
  8521. width:100%;
  8522. }
  8523. #u41039_text {
  8524. border-width:0px;
  8525. word-wrap:break-word;
  8526. text-transform:none;
  8527. }
  8528. #u41040_div {
  8529. border-width:0px;
  8530. position:absolute;
  8531. left:0px;
  8532. top:0px;
  8533. width:36px;
  8534. height:40px;
  8535. background:inherit;
  8536. background-color:rgba(255, 255, 255, 0);
  8537. border:none;
  8538. border-left:0px;
  8539. border-top:0px;
  8540. border-right:0px;
  8541. border-radius:0px;
  8542. border-bottom-right-radius:0px;
  8543. border-bottom-left-radius:0px;
  8544. -moz-box-shadow:none;
  8545. -webkit-box-shadow:none;
  8546. box-shadow:none;
  8547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8548. font-weight:400;
  8549. font-style:normal;
  8550. font-size:14px;
  8551. line-height:40px;
  8552. }
  8553. #u41040 {
  8554. border-width:0px;
  8555. position:absolute;
  8556. left:502px;
  8557. top:473px;
  8558. width:36px;
  8559. height:40px;
  8560. display:flex;
  8561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8562. font-weight:400;
  8563. font-style:normal;
  8564. font-size:14px;
  8565. line-height:40px;
  8566. }
  8567. #u41040 .text {
  8568. position:absolute;
  8569. align-self:flex-start;
  8570. padding:0px 0px 0px 0px;
  8571. box-sizing:border-box;
  8572. width:100%;
  8573. }
  8574. #u41040_text {
  8575. border-width:0px;
  8576. white-space:nowrap;
  8577. text-transform:none;
  8578. }
  8579. #u41041 {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:0px;
  8583. top:0px;
  8584. width:0px;
  8585. height:0px;
  8586. }
  8587. #u41042_div {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:0px;
  8591. top:0px;
  8592. width:346px;
  8593. height:222px;
  8594. background:inherit;
  8595. background-color:rgba(255, 255, 255, 1);
  8596. border:none;
  8597. border-radius:9px;
  8598. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8599. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8600. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8601. }
  8602. #u41042 {
  8603. border-width:0px;
  8604. position:absolute;
  8605. left:473px;
  8606. top:930px;
  8607. width:346px;
  8608. height:222px;
  8609. display:flex;
  8610. }
  8611. #u41042 .text {
  8612. position:absolute;
  8613. align-self:center;
  8614. padding:2px 2px 2px 2px;
  8615. box-sizing:border-box;
  8616. width:100%;
  8617. }
  8618. #u41042_text {
  8619. border-width:0px;
  8620. word-wrap:break-word;
  8621. text-transform:none;
  8622. visibility:hidden;
  8623. }
  8624. #u41043_img {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:0px;
  8628. top:0px;
  8629. width:347px;
  8630. height:2px;
  8631. }
  8632. #u41043 {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:473px;
  8636. top:1081px;
  8637. width:346px;
  8638. height:1px;
  8639. display:flex;
  8640. }
  8641. #u41043 .text {
  8642. position:absolute;
  8643. align-self:center;
  8644. padding:2px 2px 2px 2px;
  8645. box-sizing:border-box;
  8646. width:100%;
  8647. }
  8648. #u41043_text {
  8649. border-width:0px;
  8650. word-wrap:break-word;
  8651. text-transform:none;
  8652. visibility:hidden;
  8653. }
  8654. #u41044_img {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:0px;
  8658. top:0px;
  8659. width:2px;
  8660. height:68px;
  8661. }
  8662. #u41044 {
  8663. border-width:0px;
  8664. position:absolute;
  8665. left:638px;
  8666. top:1085px;
  8667. width:1px;
  8668. height:67px;
  8669. display:flex;
  8670. }
  8671. #u41044 .text {
  8672. position:absolute;
  8673. align-self:center;
  8674. padding:2px 2px 2px 2px;
  8675. box-sizing:border-box;
  8676. width:100%;
  8677. }
  8678. #u41044_text {
  8679. border-width:0px;
  8680. word-wrap:break-word;
  8681. text-transform:none;
  8682. visibility:hidden;
  8683. }
  8684. #u41045_img {
  8685. border-width:0px;
  8686. position:absolute;
  8687. left:0px;
  8688. top:0px;
  8689. width:347px;
  8690. height:2px;
  8691. }
  8692. #u41045 {
  8693. border-width:0px;
  8694. position:absolute;
  8695. left:473px;
  8696. top:1081px;
  8697. width:346px;
  8698. height:1px;
  8699. display:flex;
  8700. }
  8701. #u41045 .text {
  8702. position:absolute;
  8703. align-self:center;
  8704. padding:2px 2px 2px 2px;
  8705. box-sizing:border-box;
  8706. width:100%;
  8707. }
  8708. #u41045_text {
  8709. border-width:0px;
  8710. word-wrap:break-word;
  8711. text-transform:none;
  8712. visibility:hidden;
  8713. }
  8714. #u41046_img {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:0px;
  8718. top:0px;
  8719. width:2px;
  8720. height:68px;
  8721. }
  8722. #u41046 {
  8723. border-width:0px;
  8724. position:absolute;
  8725. left:638px;
  8726. top:1085px;
  8727. width:1px;
  8728. height:67px;
  8729. display:flex;
  8730. }
  8731. #u41046 .text {
  8732. position:absolute;
  8733. align-self:center;
  8734. padding:2px 2px 2px 2px;
  8735. box-sizing:border-box;
  8736. width:100%;
  8737. }
  8738. #u41046_text {
  8739. border-width:0px;
  8740. word-wrap:break-word;
  8741. text-transform:none;
  8742. visibility:hidden;
  8743. }
  8744. #u41047_div {
  8745. border-width:0px;
  8746. position:absolute;
  8747. left:0px;
  8748. top:0px;
  8749. width:105px;
  8750. height:30px;
  8751. background:inherit;
  8752. background-color:rgba(255, 255, 255, 0);
  8753. border:none;
  8754. border-radius:0px;
  8755. -moz-box-shadow:none;
  8756. -webkit-box-shadow:none;
  8757. box-shadow:none;
  8758. font-family:'ArialMT', 'Arial', sans-serif;
  8759. font-weight:400;
  8760. font-style:normal;
  8761. font-size:22px;
  8762. color:#0099FF;
  8763. text-align:center;
  8764. }
  8765. #u41047 {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:506px;
  8769. top:1107px;
  8770. width:105px;
  8771. height:30px;
  8772. display:flex;
  8773. font-family:'ArialMT', 'Arial', sans-serif;
  8774. font-weight:400;
  8775. font-style:normal;
  8776. font-size:22px;
  8777. color:#0099FF;
  8778. text-align:center;
  8779. }
  8780. #u41047 .text {
  8781. position:absolute;
  8782. align-self:center;
  8783. padding:0px 0px 0px 0px;
  8784. box-sizing:border-box;
  8785. width:100%;
  8786. }
  8787. #u41047_text {
  8788. border-width:0px;
  8789. word-wrap:break-word;
  8790. text-transform:none;
  8791. }
  8792. #u41048_div {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:0px;
  8796. top:0px;
  8797. width:105px;
  8798. height:30px;
  8799. background:inherit;
  8800. background-color:rgba(255, 255, 255, 0);
  8801. border:none;
  8802. border-radius:0px;
  8803. -moz-box-shadow:none;
  8804. -webkit-box-shadow:none;
  8805. box-shadow:none;
  8806. font-family:'ArialMT', 'Arial', sans-serif;
  8807. font-weight:400;
  8808. font-style:normal;
  8809. font-size:22px;
  8810. color:#0099FF;
  8811. text-align:center;
  8812. }
  8813. #u41048 {
  8814. border-width:0px;
  8815. position:absolute;
  8816. left:679px;
  8817. top:1107px;
  8818. width:105px;
  8819. height:30px;
  8820. display:flex;
  8821. font-family:'ArialMT', 'Arial', sans-serif;
  8822. font-weight:400;
  8823. font-style:normal;
  8824. font-size:22px;
  8825. color:#0099FF;
  8826. text-align:center;
  8827. }
  8828. #u41048 .text {
  8829. position:absolute;
  8830. align-self:center;
  8831. padding:0px 0px 0px 0px;
  8832. box-sizing:border-box;
  8833. width:100%;
  8834. }
  8835. #u41048_text {
  8836. border-width:0px;
  8837. word-wrap:break-word;
  8838. text-transform:none;
  8839. }
  8840. #u41049_div {
  8841. border-width:0px;
  8842. position:absolute;
  8843. left:0px;
  8844. top:0px;
  8845. width:126px;
  8846. height:40px;
  8847. background:inherit;
  8848. background-color:rgba(255, 255, 255, 0);
  8849. border:none;
  8850. border-radius:0px;
  8851. -moz-box-shadow:none;
  8852. -webkit-box-shadow:none;
  8853. box-shadow:none;
  8854. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8855. font-weight:650;
  8856. font-style:normal;
  8857. font-size:22px;
  8858. text-align:center;
  8859. }
  8860. #u41049 {
  8861. border-width:0px;
  8862. position:absolute;
  8863. left:582px;
  8864. top:946px;
  8865. width:126px;
  8866. height:40px;
  8867. display:flex;
  8868. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8869. font-weight:650;
  8870. font-style:normal;
  8871. font-size:22px;
  8872. text-align:center;
  8873. }
  8874. #u41049 .text {
  8875. position:absolute;
  8876. align-self:center;
  8877. padding:0px 0px 0px 0px;
  8878. box-sizing:border-box;
  8879. width:100%;
  8880. }
  8881. #u41049_text {
  8882. border-width:0px;
  8883. word-wrap:break-word;
  8884. text-transform:none;
  8885. }
  8886. #u41050_div {
  8887. border-width:0px;
  8888. position:absolute;
  8889. left:0px;
  8890. top:0px;
  8891. width:280px;
  8892. height:50px;
  8893. background:inherit;
  8894. background-color:rgba(255, 255, 255, 0);
  8895. border:none;
  8896. border-radius:0px;
  8897. -moz-box-shadow:none;
  8898. -webkit-box-shadow:none;
  8899. box-shadow:none;
  8900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8901. font-weight:400;
  8902. font-style:normal;
  8903. font-size:18px;
  8904. text-align:center;
  8905. }
  8906. #u41050 {
  8907. border-width:0px;
  8908. position:absolute;
  8909. left:506px;
  8910. top:999px;
  8911. width:280px;
  8912. height:50px;
  8913. display:flex;
  8914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8915. font-weight:400;
  8916. font-style:normal;
  8917. font-size:18px;
  8918. text-align:center;
  8919. }
  8920. #u41050 .text {
  8921. position:absolute;
  8922. align-self:flex-start;
  8923. padding:0px 0px 0px 0px;
  8924. box-sizing:border-box;
  8925. width:100%;
  8926. }
  8927. #u41050_text {
  8928. border-width:0px;
  8929. word-wrap:break-word;
  8930. text-transform:none;
  8931. }
  8932. #u41052_img {
  8933. border-width:0px;
  8934. position:absolute;
  8935. left:0px;
  8936. top:0px;
  8937. width:433px;
  8938. height:865px;
  8939. }
  8940. #u41052 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:906px;
  8944. top:0px;
  8945. width:433px;
  8946. height:865px;
  8947. display:flex;
  8948. }
  8949. #u41052 .text {
  8950. position:absolute;
  8951. align-self:center;
  8952. padding:2px 2px 2px 2px;
  8953. box-sizing:border-box;
  8954. width:100%;
  8955. }
  8956. #u41052_text {
  8957. border-width:0px;
  8958. word-wrap:break-word;
  8959. text-transform:none;
  8960. visibility:hidden;
  8961. }
  8962. #u41053_div {
  8963. border-width:0px;
  8964. position:absolute;
  8965. left:0px;
  8966. top:0px;
  8967. width:375px;
  8968. height:40px;
  8969. background:inherit;
  8970. background-color:rgba(255, 255, 255, 1);
  8971. box-sizing:border-box;
  8972. border-width:1px;
  8973. border-style:solid;
  8974. border-color:rgba(215, 215, 215, 1);
  8975. border-left:0px;
  8976. border-top:0px;
  8977. border-right:0px;
  8978. border-radius:0px;
  8979. border-bottom-right-radius:0px;
  8980. border-bottom-left-radius:0px;
  8981. -moz-box-shadow:none;
  8982. -webkit-box-shadow:none;
  8983. box-shadow:none;
  8984. }
  8985. #u41053 {
  8986. border-width:0px;
  8987. position:absolute;
  8988. left:935px;
  8989. top:67px;
  8990. width:375px;
  8991. height:40px;
  8992. display:flex;
  8993. }
  8994. #u41053 .text {
  8995. position:absolute;
  8996. align-self:center;
  8997. padding:2px 2px 2px 2px;
  8998. box-sizing:border-box;
  8999. width:100%;
  9000. }
  9001. #u41053_text {
  9002. border-width:0px;
  9003. word-wrap:break-word;
  9004. text-transform:none;
  9005. visibility:hidden;
  9006. }
  9007. #u41054 {
  9008. border-width:0px;
  9009. position:absolute;
  9010. left:0px;
  9011. top:0px;
  9012. width:0px;
  9013. height:0px;
  9014. }
  9015. #u41055_div {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:0px;
  9019. top:0px;
  9020. width:88px;
  9021. height:32px;
  9022. background:inherit;
  9023. background-color:rgba(255, 255, 255, 1);
  9024. box-sizing:border-box;
  9025. border-width:1px;
  9026. border-style:solid;
  9027. border-color:rgba(242, 242, 242, 1);
  9028. border-radius:33px;
  9029. -moz-box-shadow:none;
  9030. -webkit-box-shadow:none;
  9031. box-shadow:none;
  9032. }
  9033. #u41055 {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:1215px;
  9037. top:71px;
  9038. width:88px;
  9039. height:32px;
  9040. display:flex;
  9041. }
  9042. #u41055 .text {
  9043. position:absolute;
  9044. align-self:center;
  9045. padding:2px 2px 2px 2px;
  9046. box-sizing:border-box;
  9047. width:100%;
  9048. }
  9049. #u41055_text {
  9050. border-width:0px;
  9051. word-wrap:break-word;
  9052. text-transform:none;
  9053. visibility:hidden;
  9054. }
  9055. #u41056 {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:0px;
  9061. height:0px;
  9062. }
  9063. #u41057_img {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:0px;
  9067. top:0px;
  9068. width:18px;
  9069. height:18px;
  9070. }
  9071. #u41057 {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:1278px;
  9075. top:78px;
  9076. width:18px;
  9077. height:18px;
  9078. display:flex;
  9079. }
  9080. #u41057 .text {
  9081. position:absolute;
  9082. align-self:center;
  9083. padding:2px 2px 2px 2px;
  9084. box-sizing:border-box;
  9085. width:100%;
  9086. }
  9087. #u41057_text {
  9088. border-width:0px;
  9089. word-wrap:break-word;
  9090. text-transform:none;
  9091. visibility:hidden;
  9092. }
  9093. #u41058_img {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:0px;
  9097. top:0px;
  9098. width:6px;
  9099. height:6px;
  9100. }
  9101. #u41058 {
  9102. border-width:0px;
  9103. position:absolute;
  9104. left:1284px;
  9105. top:84px;
  9106. width:6px;
  9107. height:6px;
  9108. display:flex;
  9109. }
  9110. #u41058 .text {
  9111. position:absolute;
  9112. align-self:center;
  9113. padding:2px 2px 2px 2px;
  9114. box-sizing:border-box;
  9115. width:100%;
  9116. }
  9117. #u41058_text {
  9118. border-width:0px;
  9119. word-wrap:break-word;
  9120. text-transform:none;
  9121. visibility:hidden;
  9122. }
  9123. #u41059 {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:0px;
  9127. top:0px;
  9128. width:0px;
  9129. height:0px;
  9130. }
  9131. #u41060_img {
  9132. border-width:0px;
  9133. position:absolute;
  9134. left:0px;
  9135. top:0px;
  9136. width:5px;
  9137. height:5px;
  9138. }
  9139. #u41060 {
  9140. border-width:0px;
  9141. position:absolute;
  9142. left:1229px;
  9143. top:85px;
  9144. width:5px;
  9145. height:5px;
  9146. display:flex;
  9147. }
  9148. #u41060 .text {
  9149. position:absolute;
  9150. align-self:center;
  9151. padding:2px 2px 2px 2px;
  9152. box-sizing:border-box;
  9153. width:100%;
  9154. }
  9155. #u41060_text {
  9156. border-width:0px;
  9157. word-wrap:break-word;
  9158. text-transform:none;
  9159. visibility:hidden;
  9160. }
  9161. #u41061_img {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:0px;
  9165. top:0px;
  9166. width:5px;
  9167. height:5px;
  9168. }
  9169. #u41061 {
  9170. border-width:0px;
  9171. position:absolute;
  9172. left:1245px;
  9173. top:85px;
  9174. width:5px;
  9175. height:5px;
  9176. display:flex;
  9177. }
  9178. #u41061 .text {
  9179. position:absolute;
  9180. align-self:center;
  9181. padding:2px 2px 2px 2px;
  9182. box-sizing:border-box;
  9183. width:100%;
  9184. }
  9185. #u41061_text {
  9186. border-width:0px;
  9187. word-wrap:break-word;
  9188. text-transform:none;
  9189. visibility:hidden;
  9190. }
  9191. #u41062_img {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:0px;
  9195. top:0px;
  9196. width:7px;
  9197. height:7px;
  9198. }
  9199. #u41062 {
  9200. border-width:0px;
  9201. position:absolute;
  9202. left:1236px;
  9203. top:84px;
  9204. width:7px;
  9205. height:7px;
  9206. display:flex;
  9207. }
  9208. #u41062 .text {
  9209. position:absolute;
  9210. align-self:center;
  9211. padding:2px 2px 2px 2px;
  9212. box-sizing:border-box;
  9213. width:100%;
  9214. }
  9215. #u41062_text {
  9216. border-width:0px;
  9217. word-wrap:break-word;
  9218. text-transform:none;
  9219. visibility:hidden;
  9220. }
  9221. #u41063_img {
  9222. border-width:0px;
  9223. position:absolute;
  9224. left:0px;
  9225. top:0px;
  9226. width:19px;
  9227. height:2px;
  9228. }
  9229. #u41063 {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:1253px;
  9233. top:87px;
  9234. width:18px;
  9235. height:1px;
  9236. display:flex;
  9237. -webkit-transform:rotate(90deg);
  9238. -moz-transform:rotate(90deg);
  9239. -ms-transform:rotate(90deg);
  9240. transform:rotate(90deg);
  9241. }
  9242. #u41063 .text {
  9243. position:absolute;
  9244. align-self:center;
  9245. padding:2px 2px 2px 2px;
  9246. box-sizing:border-box;
  9247. width:100%;
  9248. }
  9249. #u41063_text {
  9250. border-width:0px;
  9251. word-wrap:break-word;
  9252. text-transform:none;
  9253. visibility:hidden;
  9254. }
  9255. #u41064_img {
  9256. border-width:0px;
  9257. position:absolute;
  9258. left:0px;
  9259. top:0px;
  9260. width:375px;
  9261. height:44px;
  9262. }
  9263. #u41064 {
  9264. border-width:0px;
  9265. position:absolute;
  9266. left:935px;
  9267. top:24px;
  9268. width:375px;
  9269. height:44px;
  9270. display:flex;
  9271. }
  9272. #u41064 .text {
  9273. position:absolute;
  9274. align-self:center;
  9275. padding:2px 2px 2px 2px;
  9276. box-sizing:border-box;
  9277. width:100%;
  9278. }
  9279. #u41064_text {
  9280. border-width:0px;
  9281. word-wrap:break-word;
  9282. text-transform:none;
  9283. visibility:hidden;
  9284. }
  9285. #u41065_div {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:0px;
  9289. top:0px;
  9290. width:375px;
  9291. height:50px;
  9292. background:inherit;
  9293. background-color:rgba(255, 255, 255, 1);
  9294. box-sizing:border-box;
  9295. border-width:1px;
  9296. border-style:solid;
  9297. border-color:rgba(242, 242, 242, 1);
  9298. border-radius:26px;
  9299. border-top-left-radius:0px;
  9300. border-top-right-radius:0px;
  9301. -moz-box-shadow:none;
  9302. -webkit-box-shadow:none;
  9303. box-shadow:none;
  9304. }
  9305. #u41065 {
  9306. border-width:0px;
  9307. position:absolute;
  9308. left:935px;
  9309. top:788px;
  9310. width:375px;
  9311. height:50px;
  9312. display:flex;
  9313. }
  9314. #u41065 .text {
  9315. position:absolute;
  9316. align-self:center;
  9317. padding:2px 2px 2px 2px;
  9318. box-sizing:border-box;
  9319. width:100%;
  9320. }
  9321. #u41065_text {
  9322. border-width:0px;
  9323. word-wrap:break-word;
  9324. text-transform:none;
  9325. visibility:hidden;
  9326. }
  9327. #u41066 {
  9328. border-width:0px;
  9329. position:absolute;
  9330. left:0px;
  9331. top:0px;
  9332. width:0px;
  9333. height:0px;
  9334. }
  9335. #u41067_img {
  9336. border-width:0px;
  9337. position:absolute;
  9338. left:0px;
  9339. top:0px;
  9340. width:24px;
  9341. height:24px;
  9342. }
  9343. #u41067 {
  9344. border-width:0px;
  9345. position:absolute;
  9346. left:975px;
  9347. top:792px;
  9348. width:24px;
  9349. height:24px;
  9350. display:flex;
  9351. font-size:8px;
  9352. }
  9353. #u41067 .text {
  9354. position:absolute;
  9355. align-self:center;
  9356. padding:2px 2px 2px 2px;
  9357. box-sizing:border-box;
  9358. width:100%;
  9359. }
  9360. #u41067_text {
  9361. border-width:0px;
  9362. word-wrap:break-word;
  9363. text-transform:none;
  9364. }
  9365. #u41068_div {
  9366. border-width:0px;
  9367. position:absolute;
  9368. left:0px;
  9369. top:0px;
  9370. width:25px;
  9371. height:17px;
  9372. background:inherit;
  9373. background-color:rgba(255, 255, 255, 0);
  9374. border:none;
  9375. border-radius:0px;
  9376. -moz-box-shadow:none;
  9377. -webkit-box-shadow:none;
  9378. box-shadow:none;
  9379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9380. font-weight:400;
  9381. font-style:normal;
  9382. font-size:12px;
  9383. }
  9384. #u41068 {
  9385. border-width:0px;
  9386. position:absolute;
  9387. left:975px;
  9388. top:817px;
  9389. width:25px;
  9390. height:17px;
  9391. display:flex;
  9392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9393. font-weight:400;
  9394. font-style:normal;
  9395. font-size:12px;
  9396. }
  9397. #u41068 .text {
  9398. position:absolute;
  9399. align-self:flex-start;
  9400. padding:0px 0px 0px 0px;
  9401. box-sizing:border-box;
  9402. width:100%;
  9403. }
  9404. #u41068_text {
  9405. border-width:0px;
  9406. white-space:nowrap;
  9407. text-transform:none;
  9408. }
  9409. #u41069 {
  9410. border-width:0px;
  9411. position:absolute;
  9412. left:0px;
  9413. top:0px;
  9414. width:0px;
  9415. height:0px;
  9416. }
  9417. #u41070_img {
  9418. border-width:0px;
  9419. position:absolute;
  9420. left:0px;
  9421. top:0px;
  9422. width:24px;
  9423. height:24px;
  9424. }
  9425. #u41070 {
  9426. border-width:0px;
  9427. position:absolute;
  9428. left:1245px;
  9429. top:794px;
  9430. width:24px;
  9431. height:24px;
  9432. display:flex;
  9433. font-size:8px;
  9434. }
  9435. #u41070 .text {
  9436. position:absolute;
  9437. align-self:center;
  9438. padding:2px 2px 2px 2px;
  9439. box-sizing:border-box;
  9440. width:100%;
  9441. }
  9442. #u41070_text {
  9443. border-width:0px;
  9444. word-wrap:break-word;
  9445. text-transform:none;
  9446. }
  9447. #u41071_div {
  9448. border-width:0px;
  9449. position:absolute;
  9450. left:0px;
  9451. top:0px;
  9452. width:25px;
  9453. height:17px;
  9454. background:inherit;
  9455. background-color:rgba(255, 255, 255, 0);
  9456. border:none;
  9457. border-radius:0px;
  9458. -moz-box-shadow:none;
  9459. -webkit-box-shadow:none;
  9460. box-shadow:none;
  9461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9462. font-weight:400;
  9463. font-style:normal;
  9464. font-size:12px;
  9465. }
  9466. #u41071 {
  9467. border-width:0px;
  9468. position:absolute;
  9469. left:1245px;
  9470. top:819px;
  9471. width:25px;
  9472. height:17px;
  9473. display:flex;
  9474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9475. font-weight:400;
  9476. font-style:normal;
  9477. font-size:12px;
  9478. }
  9479. #u41071 .text {
  9480. position:absolute;
  9481. align-self:flex-start;
  9482. padding:0px 0px 0px 0px;
  9483. box-sizing:border-box;
  9484. width:100%;
  9485. }
  9486. #u41071_text {
  9487. border-width:0px;
  9488. white-space:nowrap;
  9489. text-transform:none;
  9490. }
  9491. #u41072_div {
  9492. border-width:0px;
  9493. position:absolute;
  9494. left:0px;
  9495. top:0px;
  9496. width:375px;
  9497. height:681px;
  9498. background:inherit;
  9499. background-color:rgba(242, 242, 242, 0.462745098039216);
  9500. border:none;
  9501. border-radius:0px;
  9502. -moz-box-shadow:none;
  9503. -webkit-box-shadow:none;
  9504. box-shadow:none;
  9505. }
  9506. #u41072 {
  9507. border-width:0px;
  9508. position:absolute;
  9509. left:935px;
  9510. top:107px;
  9511. width:375px;
  9512. height:681px;
  9513. display:flex;
  9514. }
  9515. #u41072 .text {
  9516. position:absolute;
  9517. align-self:center;
  9518. padding:2px 2px 2px 2px;
  9519. box-sizing:border-box;
  9520. width:100%;
  9521. }
  9522. #u41072_text {
  9523. border-width:0px;
  9524. word-wrap:break-word;
  9525. text-transform:none;
  9526. visibility:hidden;
  9527. }
  9528. #u41073 {
  9529. border-width:0px;
  9530. position:absolute;
  9531. left:0px;
  9532. top:0px;
  9533. width:0px;
  9534. height:0px;
  9535. }
  9536. #u41074_img {
  9537. border-width:0px;
  9538. position:absolute;
  9539. left:0px;
  9540. top:0px;
  9541. width:24px;
  9542. height:24px;
  9543. }
  9544. #u41074 {
  9545. border-width:0px;
  9546. position:absolute;
  9547. left:1157px;
  9548. top:792px;
  9549. width:24px;
  9550. height:24px;
  9551. display:flex;
  9552. font-size:8px;
  9553. }
  9554. #u41074 .text {
  9555. position:absolute;
  9556. align-self:center;
  9557. padding:2px 2px 2px 2px;
  9558. box-sizing:border-box;
  9559. width:100%;
  9560. }
  9561. #u41074_text {
  9562. border-width:0px;
  9563. word-wrap:break-word;
  9564. text-transform:none;
  9565. }
  9566. #u41075_div {
  9567. border-width:0px;
  9568. position:absolute;
  9569. left:0px;
  9570. top:0px;
  9571. width:37px;
  9572. height:17px;
  9573. background:inherit;
  9574. background-color:rgba(255, 255, 255, 0);
  9575. border:none;
  9576. border-radius:0px;
  9577. -moz-box-shadow:none;
  9578. -webkit-box-shadow:none;
  9579. box-shadow:none;
  9580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9581. font-weight:400;
  9582. font-style:normal;
  9583. font-size:12px;
  9584. }
  9585. #u41075 {
  9586. border-width:0px;
  9587. position:absolute;
  9588. left:1151px;
  9589. top:817px;
  9590. width:37px;
  9591. height:17px;
  9592. display:flex;
  9593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9594. font-weight:400;
  9595. font-style:normal;
  9596. font-size:12px;
  9597. }
  9598. #u41075 .text {
  9599. position:absolute;
  9600. align-self:flex-start;
  9601. padding:0px 0px 0px 0px;
  9602. box-sizing:border-box;
  9603. width:100%;
  9604. }
  9605. #u41075_text {
  9606. border-width:0px;
  9607. white-space:nowrap;
  9608. text-transform:none;
  9609. }
  9610. #u41076 {
  9611. border-width:0px;
  9612. position:absolute;
  9613. left:0px;
  9614. top:0px;
  9615. width:0px;
  9616. height:0px;
  9617. }
  9618. #u41077_img {
  9619. border-width:0px;
  9620. position:absolute;
  9621. left:0px;
  9622. top:0px;
  9623. width:24px;
  9624. height:24px;
  9625. }
  9626. #u41077 {
  9627. border-width:0px;
  9628. position:absolute;
  9629. left:1063px;
  9630. top:792px;
  9631. width:24px;
  9632. height:24px;
  9633. display:flex;
  9634. font-size:8px;
  9635. }
  9636. #u41077 .text {
  9637. position:absolute;
  9638. align-self:center;
  9639. padding:2px 2px 2px 2px;
  9640. box-sizing:border-box;
  9641. width:100%;
  9642. }
  9643. #u41077_text {
  9644. border-width:0px;
  9645. word-wrap:break-word;
  9646. text-transform:none;
  9647. }
  9648. #u41078_div {
  9649. border-width:0px;
  9650. position:absolute;
  9651. left:0px;
  9652. top:0px;
  9653. width:37px;
  9654. height:17px;
  9655. background:inherit;
  9656. background-color:rgba(255, 255, 255, 0);
  9657. border:none;
  9658. border-radius:0px;
  9659. -moz-box-shadow:none;
  9660. -webkit-box-shadow:none;
  9661. box-shadow:none;
  9662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9663. font-weight:400;
  9664. font-style:normal;
  9665. font-size:12px;
  9666. }
  9667. #u41078 {
  9668. border-width:0px;
  9669. position:absolute;
  9670. left:1057px;
  9671. top:817px;
  9672. width:37px;
  9673. height:17px;
  9674. display:flex;
  9675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9676. font-weight:400;
  9677. font-style:normal;
  9678. font-size:12px;
  9679. }
  9680. #u41078 .text {
  9681. position:absolute;
  9682. align-self:flex-start;
  9683. padding:0px 0px 0px 0px;
  9684. box-sizing:border-box;
  9685. width:100%;
  9686. }
  9687. #u41078_text {
  9688. border-width:0px;
  9689. white-space:nowrap;
  9690. text-transform:none;
  9691. }
  9692. #u41079_div {
  9693. border-width:0px;
  9694. position:absolute;
  9695. left:0px;
  9696. top:0px;
  9697. width:375px;
  9698. height:732px;
  9699. background:inherit;
  9700. background-color:rgba(244, 244, 244, 1);
  9701. box-sizing:border-box;
  9702. border-width:1px;
  9703. border-style:solid;
  9704. border-color:rgba(242, 242, 242, 1);
  9705. border-radius:26px;
  9706. border-top-left-radius:0px;
  9707. border-top-right-radius:0px;
  9708. -moz-box-shadow:none;
  9709. -webkit-box-shadow:none;
  9710. box-shadow:none;
  9711. }
  9712. #u41079 {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:935px;
  9716. top:107px;
  9717. width:375px;
  9718. height:732px;
  9719. display:flex;
  9720. }
  9721. #u41079 .text {
  9722. position:absolute;
  9723. align-self:center;
  9724. padding:2px 2px 2px 2px;
  9725. box-sizing:border-box;
  9726. width:100%;
  9727. }
  9728. #u41079_text {
  9729. border-width:0px;
  9730. word-wrap:break-word;
  9731. text-transform:none;
  9732. visibility:hidden;
  9733. }
  9734. #u41080_div {
  9735. border-width:0px;
  9736. position:absolute;
  9737. left:0px;
  9738. top:0px;
  9739. width:375px;
  9740. height:732px;
  9741. background:inherit;
  9742. background-color:rgba(242, 242, 242, 1);
  9743. box-sizing:border-box;
  9744. border-width:1px;
  9745. border-style:solid;
  9746. border-color:rgba(242, 242, 242, 1);
  9747. border-radius:26px;
  9748. border-top-left-radius:0px;
  9749. border-top-right-radius:0px;
  9750. -moz-box-shadow:none;
  9751. -webkit-box-shadow:none;
  9752. box-shadow:none;
  9753. }
  9754. #u41080 {
  9755. border-width:0px;
  9756. position:absolute;
  9757. left:935px;
  9758. top:107px;
  9759. width:375px;
  9760. height:732px;
  9761. display:flex;
  9762. }
  9763. #u41080 .text {
  9764. position:absolute;
  9765. align-self:center;
  9766. padding:2px 2px 2px 2px;
  9767. box-sizing:border-box;
  9768. width:100%;
  9769. }
  9770. #u41080_text {
  9771. border-width:0px;
  9772. word-wrap:break-word;
  9773. text-transform:none;
  9774. visibility:hidden;
  9775. }
  9776. #u41081 {
  9777. border-width:0px;
  9778. position:absolute;
  9779. left:0px;
  9780. top:0px;
  9781. width:0px;
  9782. height:0px;
  9783. }
  9784. #u41082_div {
  9785. border-width:0px;
  9786. position:absolute;
  9787. left:0px;
  9788. top:0px;
  9789. width:375px;
  9790. height:40px;
  9791. background:inherit;
  9792. background-color:rgba(255, 255, 255, 1);
  9793. border:none;
  9794. border-left:0px;
  9795. border-top:0px;
  9796. border-right:0px;
  9797. border-radius:0px;
  9798. border-bottom-right-radius:0px;
  9799. border-bottom-left-radius:0px;
  9800. -moz-box-shadow:none;
  9801. -webkit-box-shadow:none;
  9802. box-shadow:none;
  9803. }
  9804. #u41082 {
  9805. border-width:0px;
  9806. position:absolute;
  9807. left:935px;
  9808. top:67px;
  9809. width:375px;
  9810. height:40px;
  9811. display:flex;
  9812. }
  9813. #u41082 .text {
  9814. position:absolute;
  9815. align-self:center;
  9816. padding:2px 2px 2px 2px;
  9817. box-sizing:border-box;
  9818. width:100%;
  9819. }
  9820. #u41082_text {
  9821. border-width:0px;
  9822. word-wrap:break-word;
  9823. text-transform:none;
  9824. visibility:hidden;
  9825. }
  9826. #u41083 {
  9827. border-width:0px;
  9828. position:absolute;
  9829. left:0px;
  9830. top:0px;
  9831. width:0px;
  9832. height:0px;
  9833. }
  9834. #u41084_div {
  9835. border-width:0px;
  9836. position:absolute;
  9837. left:0px;
  9838. top:0px;
  9839. width:88px;
  9840. height:32px;
  9841. background:inherit;
  9842. background-color:rgba(255, 255, 255, 1);
  9843. box-sizing:border-box;
  9844. border-width:1px;
  9845. border-style:solid;
  9846. border-color:rgba(242, 242, 242, 1);
  9847. border-radius:33px;
  9848. -moz-box-shadow:none;
  9849. -webkit-box-shadow:none;
  9850. box-shadow:none;
  9851. }
  9852. #u41084 {
  9853. border-width:0px;
  9854. position:absolute;
  9855. left:1212px;
  9856. top:69px;
  9857. width:88px;
  9858. height:32px;
  9859. display:flex;
  9860. }
  9861. #u41084 .text {
  9862. position:absolute;
  9863. align-self:center;
  9864. padding:2px 2px 2px 2px;
  9865. box-sizing:border-box;
  9866. width:100%;
  9867. }
  9868. #u41084_text {
  9869. border-width:0px;
  9870. word-wrap:break-word;
  9871. text-transform:none;
  9872. visibility:hidden;
  9873. }
  9874. #u41085 {
  9875. border-width:0px;
  9876. position:absolute;
  9877. left:0px;
  9878. top:0px;
  9879. width:0px;
  9880. height:0px;
  9881. }
  9882. #u41086_img {
  9883. border-width:0px;
  9884. position:absolute;
  9885. left:0px;
  9886. top:0px;
  9887. width:18px;
  9888. height:18px;
  9889. }
  9890. #u41086 {
  9891. border-width:0px;
  9892. position:absolute;
  9893. left:1275px;
  9894. top:76px;
  9895. width:18px;
  9896. height:18px;
  9897. display:flex;
  9898. }
  9899. #u41086 .text {
  9900. position:absolute;
  9901. align-self:center;
  9902. padding:2px 2px 2px 2px;
  9903. box-sizing:border-box;
  9904. width:100%;
  9905. }
  9906. #u41086_text {
  9907. border-width:0px;
  9908. word-wrap:break-word;
  9909. text-transform:none;
  9910. visibility:hidden;
  9911. }
  9912. #u41087_img {
  9913. border-width:0px;
  9914. position:absolute;
  9915. left:0px;
  9916. top:0px;
  9917. width:6px;
  9918. height:6px;
  9919. }
  9920. #u41087 {
  9921. border-width:0px;
  9922. position:absolute;
  9923. left:1281px;
  9924. top:82px;
  9925. width:6px;
  9926. height:6px;
  9927. display:flex;
  9928. }
  9929. #u41087 .text {
  9930. position:absolute;
  9931. align-self:center;
  9932. padding:2px 2px 2px 2px;
  9933. box-sizing:border-box;
  9934. width:100%;
  9935. }
  9936. #u41087_text {
  9937. border-width:0px;
  9938. word-wrap:break-word;
  9939. text-transform:none;
  9940. visibility:hidden;
  9941. }
  9942. #u41088 {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:0px;
  9946. top:0px;
  9947. width:0px;
  9948. height:0px;
  9949. }
  9950. #u41089_img {
  9951. border-width:0px;
  9952. position:absolute;
  9953. left:0px;
  9954. top:0px;
  9955. width:5px;
  9956. height:5px;
  9957. }
  9958. #u41089 {
  9959. border-width:0px;
  9960. position:absolute;
  9961. left:1226px;
  9962. top:83px;
  9963. width:5px;
  9964. height:5px;
  9965. display:flex;
  9966. }
  9967. #u41089 .text {
  9968. position:absolute;
  9969. align-self:center;
  9970. padding:2px 2px 2px 2px;
  9971. box-sizing:border-box;
  9972. width:100%;
  9973. }
  9974. #u41089_text {
  9975. border-width:0px;
  9976. word-wrap:break-word;
  9977. text-transform:none;
  9978. visibility:hidden;
  9979. }
  9980. #u41090_img {
  9981. border-width:0px;
  9982. position:absolute;
  9983. left:0px;
  9984. top:0px;
  9985. width:5px;
  9986. height:5px;
  9987. }
  9988. #u41090 {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:1242px;
  9992. top:83px;
  9993. width:5px;
  9994. height:5px;
  9995. display:flex;
  9996. }
  9997. #u41090 .text {
  9998. position:absolute;
  9999. align-self:center;
  10000. padding:2px 2px 2px 2px;
  10001. box-sizing:border-box;
  10002. width:100%;
  10003. }
  10004. #u41090_text {
  10005. border-width:0px;
  10006. word-wrap:break-word;
  10007. text-transform:none;
  10008. visibility:hidden;
  10009. }
  10010. #u41091_img {
  10011. border-width:0px;
  10012. position:absolute;
  10013. left:0px;
  10014. top:0px;
  10015. width:7px;
  10016. height:7px;
  10017. }
  10018. #u41091 {
  10019. border-width:0px;
  10020. position:absolute;
  10021. left:1233px;
  10022. top:82px;
  10023. width:7px;
  10024. height:7px;
  10025. display:flex;
  10026. }
  10027. #u41091 .text {
  10028. position:absolute;
  10029. align-self:center;
  10030. padding:2px 2px 2px 2px;
  10031. box-sizing:border-box;
  10032. width:100%;
  10033. }
  10034. #u41091_text {
  10035. border-width:0px;
  10036. word-wrap:break-word;
  10037. text-transform:none;
  10038. visibility:hidden;
  10039. }
  10040. #u41092_img {
  10041. border-width:0px;
  10042. position:absolute;
  10043. left:0px;
  10044. top:0px;
  10045. width:19px;
  10046. height:2px;
  10047. }
  10048. #u41092 {
  10049. border-width:0px;
  10050. position:absolute;
  10051. left:1250px;
  10052. top:85px;
  10053. width:18px;
  10054. height:1px;
  10055. display:flex;
  10056. -webkit-transform:rotate(90deg);
  10057. -moz-transform:rotate(90deg);
  10058. -ms-transform:rotate(90deg);
  10059. transform:rotate(90deg);
  10060. }
  10061. #u41092 .text {
  10062. position:absolute;
  10063. align-self:center;
  10064. padding:2px 2px 2px 2px;
  10065. box-sizing:border-box;
  10066. width:100%;
  10067. }
  10068. #u41092_text {
  10069. border-width:0px;
  10070. word-wrap:break-word;
  10071. text-transform:none;
  10072. visibility:hidden;
  10073. }
  10074. #u41093_div {
  10075. border-width:0px;
  10076. position:absolute;
  10077. left:0px;
  10078. top:0px;
  10079. width:12px;
  10080. height:12px;
  10081. background:inherit;
  10082. background-color:rgba(255, 255, 255, 0);
  10083. box-sizing:border-box;
  10084. border-width:2px;
  10085. border-style:solid;
  10086. border-color:rgba(51, 51, 51, 1);
  10087. border-right:0px;
  10088. border-bottom:0px;
  10089. border-radius:0px;
  10090. border-top-right-radius:0px;
  10091. border-bottom-left-radius:0px;
  10092. -moz-box-shadow:none;
  10093. -webkit-box-shadow:none;
  10094. box-shadow:none;
  10095. }
  10096. #u41093 {
  10097. border-width:0px;
  10098. position:absolute;
  10099. left:951px;
  10100. top:79px;
  10101. width:12px;
  10102. height:12px;
  10103. display:flex;
  10104. -webkit-transform:rotate(315deg);
  10105. -moz-transform:rotate(315deg);
  10106. -ms-transform:rotate(315deg);
  10107. transform:rotate(315deg);
  10108. }
  10109. #u41093 .text {
  10110. position:absolute;
  10111. align-self:center;
  10112. padding:2px 2px 2px 2px;
  10113. box-sizing:border-box;
  10114. width:100%;
  10115. }
  10116. #u41093_text {
  10117. border-width:0px;
  10118. word-wrap:break-word;
  10119. text-transform:none;
  10120. visibility:hidden;
  10121. }
  10122. #u41094_div {
  10123. border-width:0px;
  10124. position:absolute;
  10125. left:0px;
  10126. top:0px;
  10127. width:109px;
  10128. height:25px;
  10129. background:inherit;
  10130. background-color:rgba(255, 255, 255, 0);
  10131. border:none;
  10132. border-radius:0px;
  10133. -moz-box-shadow:none;
  10134. -webkit-box-shadow:none;
  10135. box-shadow:none;
  10136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10137. font-weight:400;
  10138. font-style:normal;
  10139. font-size:18px;
  10140. }
  10141. #u41094 {
  10142. border-width:0px;
  10143. position:absolute;
  10144. left:965px;
  10145. top:72px;
  10146. width:109px;
  10147. height:25px;
  10148. display:flex;
  10149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10150. font-weight:400;
  10151. font-style:normal;
  10152. font-size:18px;
  10153. }
  10154. #u41094 .text {
  10155. position:absolute;
  10156. align-self:flex-start;
  10157. padding:0px 0px 0px 0px;
  10158. box-sizing:border-box;
  10159. width:100%;
  10160. }
  10161. #u41094_text {
  10162. border-width:0px;
  10163. white-space:nowrap;
  10164. text-transform:none;
  10165. }
  10166. #u41095_div {
  10167. border-width:0px;
  10168. position:absolute;
  10169. left:0px;
  10170. top:0px;
  10171. width:375px;
  10172. height:612px;
  10173. background:inherit;
  10174. background-color:rgba(255, 255, 255, 0.996078431372549);
  10175. border:none;
  10176. border-radius:0px;
  10177. -moz-box-shadow:none;
  10178. -webkit-box-shadow:none;
  10179. box-shadow:none;
  10180. }
  10181. #u41095 {
  10182. border-width:0px;
  10183. position:absolute;
  10184. left:935px;
  10185. top:167px;
  10186. width:375px;
  10187. height:612px;
  10188. display:flex;
  10189. }
  10190. #u41095 .text {
  10191. position:absolute;
  10192. align-self:center;
  10193. padding:2px 2px 2px 2px;
  10194. box-sizing:border-box;
  10195. width:100%;
  10196. }
  10197. #u41095_text {
  10198. border-width:0px;
  10199. word-wrap:break-word;
  10200. text-transform:none;
  10201. visibility:hidden;
  10202. }
  10203. #u41096_div {
  10204. border-width:0px;
  10205. position:absolute;
  10206. left:0px;
  10207. top:0px;
  10208. width:375px;
  10209. height:60px;
  10210. background:inherit;
  10211. background-color:rgba(255, 255, 255, 1);
  10212. border:none;
  10213. border-top:0px;
  10214. border-radius:28px;
  10215. border-top-left-radius:0px;
  10216. border-top-right-radius:0px;
  10217. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  10218. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  10219. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  10220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10221. font-weight:400;
  10222. font-style:normal;
  10223. font-size:14px;
  10224. color:#FFFFFF;
  10225. }
  10226. #u41096 {
  10227. border-width:0px;
  10228. position:absolute;
  10229. left:935px;
  10230. top:780px;
  10231. width:375px;
  10232. height:60px;
  10233. display:flex;
  10234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10235. font-weight:400;
  10236. font-style:normal;
  10237. font-size:14px;
  10238. color:#FFFFFF;
  10239. }
  10240. #u41096 .text {
  10241. position:absolute;
  10242. align-self:center;
  10243. padding:2px 2px 2px 2px;
  10244. box-sizing:border-box;
  10245. width:100%;
  10246. }
  10247. #u41096_text {
  10248. border-width:0px;
  10249. word-wrap:break-word;
  10250. text-transform:none;
  10251. visibility:hidden;
  10252. }
  10253. #u41097_div {
  10254. border-width:0px;
  10255. position:absolute;
  10256. left:0px;
  10257. top:0px;
  10258. width:324px;
  10259. height:40px;
  10260. background:inherit;
  10261. background-color:rgba(215, 215, 215, 1);
  10262. border:none;
  10263. border-radius:63px;
  10264. -moz-box-shadow:none;
  10265. -webkit-box-shadow:none;
  10266. box-shadow:none;
  10267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10268. font-weight:400;
  10269. font-style:normal;
  10270. font-size:14px;
  10271. color:#FFFFFF;
  10272. }
  10273. #u41097 {
  10274. border-width:0px;
  10275. position:absolute;
  10276. left:963px;
  10277. top:789px;
  10278. width:324px;
  10279. height:40px;
  10280. display:flex;
  10281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10282. font-weight:400;
  10283. font-style:normal;
  10284. font-size:14px;
  10285. color:#FFFFFF;
  10286. }
  10287. #u41097 .text {
  10288. position:absolute;
  10289. align-self:center;
  10290. padding:2px 2px 2px 2px;
  10291. box-sizing:border-box;
  10292. width:100%;
  10293. }
  10294. #u41097_text {
  10295. border-width:0px;
  10296. word-wrap:break-word;
  10297. text-transform:none;
  10298. }
  10299. #u41098_div {
  10300. border-width:0px;
  10301. position:absolute;
  10302. left:0px;
  10303. top:0px;
  10304. width:343px;
  10305. height:200px;
  10306. background:inherit;
  10307. background-color:rgba(242, 242, 242, 1);
  10308. border:none;
  10309. border-radius:6px;
  10310. -moz-box-shadow:none;
  10311. -webkit-box-shadow:none;
  10312. box-shadow:none;
  10313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10314. font-weight:400;
  10315. font-style:normal;
  10316. font-size:14px;
  10317. color:#FFFFFF;
  10318. }
  10319. #u41098 {
  10320. border-width:0px;
  10321. position:absolute;
  10322. left:950px;
  10323. top:241px;
  10324. width:343px;
  10325. height:200px;
  10326. display:flex;
  10327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10328. font-weight:400;
  10329. font-style:normal;
  10330. font-size:14px;
  10331. color:#FFFFFF;
  10332. }
  10333. #u41098 .text {
  10334. position:absolute;
  10335. align-self:center;
  10336. padding:2px 2px 2px 2px;
  10337. box-sizing:border-box;
  10338. width:100%;
  10339. }
  10340. #u41098_text {
  10341. border-width:0px;
  10342. word-wrap:break-word;
  10343. text-transform:none;
  10344. visibility:hidden;
  10345. }
  10346. #u41099_div {
  10347. border-width:0px;
  10348. position:absolute;
  10349. left:0px;
  10350. top:0px;
  10351. width:73px;
  10352. height:25px;
  10353. background:inherit;
  10354. background-color:rgba(255, 255, 255, 0);
  10355. border:none;
  10356. border-radius:0px;
  10357. -moz-box-shadow:none;
  10358. -webkit-box-shadow:none;
  10359. box-shadow:none;
  10360. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10361. font-weight:500;
  10362. font-style:normal;
  10363. font-size:18px;
  10364. }
  10365. #u41099 {
  10366. border-width:0px;
  10367. position:absolute;
  10368. left:955px;
  10369. top:184px;
  10370. width:73px;
  10371. height:25px;
  10372. display:flex;
  10373. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10374. font-weight:500;
  10375. font-style:normal;
  10376. font-size:18px;
  10377. }
  10378. #u41099 .text {
  10379. position:absolute;
  10380. align-self:flex-start;
  10381. padding:0px 0px 0px 0px;
  10382. box-sizing:border-box;
  10383. width:100%;
  10384. }
  10385. #u41099_text {
  10386. border-width:0px;
  10387. white-space:nowrap;
  10388. text-transform:none;
  10389. }
  10390. #u41100_div {
  10391. border-width:0px;
  10392. position:absolute;
  10393. left:0px;
  10394. top:0px;
  10395. width:50px;
  10396. height:20px;
  10397. background:inherit;
  10398. background-color:rgba(255, 255, 255, 0);
  10399. border:none;
  10400. border-radius:0px;
  10401. -moz-box-shadow:none;
  10402. -webkit-box-shadow:none;
  10403. box-shadow:none;
  10404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10405. font-weight:400;
  10406. font-style:normal;
  10407. }
  10408. #u41100 {
  10409. border-width:0px;
  10410. position:absolute;
  10411. left:965px;
  10412. top:369px;
  10413. width:50px;
  10414. height:20px;
  10415. display:flex;
  10416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10417. font-weight:400;
  10418. font-style:normal;
  10419. }
  10420. #u41100 .text {
  10421. position:absolute;
  10422. align-self:flex-start;
  10423. padding:0px 0px 0px 0px;
  10424. box-sizing:border-box;
  10425. width:100%;
  10426. }
  10427. #u41100_text {
  10428. border-width:0px;
  10429. white-space:nowrap;
  10430. text-transform:none;
  10431. }
  10432. #u41101_div {
  10433. border-width:0px;
  10434. position:absolute;
  10435. left:0px;
  10436. top:0px;
  10437. width:85px;
  10438. height:20px;
  10439. background:inherit;
  10440. background-color:rgba(255, 255, 255, 0);
  10441. border:none;
  10442. border-radius:0px;
  10443. -moz-box-shadow:none;
  10444. -webkit-box-shadow:none;
  10445. box-shadow:none;
  10446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10447. font-weight:400;
  10448. font-style:normal;
  10449. color:#AAAAAA;
  10450. }
  10451. #u41101 {
  10452. border-width:0px;
  10453. position:absolute;
  10454. left:965px;
  10455. top:394px;
  10456. width:85px;
  10457. height:20px;
  10458. display:flex;
  10459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10460. font-weight:400;
  10461. font-style:normal;
  10462. color:#AAAAAA;
  10463. }
  10464. #u41101 .text {
  10465. position:absolute;
  10466. align-self:flex-start;
  10467. padding:0px 0px 0px 0px;
  10468. box-sizing:border-box;
  10469. width:100%;
  10470. }
  10471. #u41101_text {
  10472. border-width:0px;
  10473. white-space:nowrap;
  10474. text-transform:none;
  10475. }
  10476. #u41102_div {
  10477. border-width:0px;
  10478. position:absolute;
  10479. left:0px;
  10480. top:0px;
  10481. width:57px;
  10482. height:20px;
  10483. background:inherit;
  10484. background-color:rgba(255, 255, 255, 0);
  10485. border:none;
  10486. border-radius:0px;
  10487. -moz-box-shadow:none;
  10488. -webkit-box-shadow:none;
  10489. box-shadow:none;
  10490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10491. font-weight:400;
  10492. font-style:normal;
  10493. }
  10494. #u41102 {
  10495. border-width:0px;
  10496. position:absolute;
  10497. left:965px;
  10498. top:259px;
  10499. width:57px;
  10500. height:20px;
  10501. display:flex;
  10502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10503. font-weight:400;
  10504. font-style:normal;
  10505. }
  10506. #u41102 .text {
  10507. position:absolute;
  10508. align-self:flex-start;
  10509. padding:0px 0px 0px 0px;
  10510. box-sizing:border-box;
  10511. width:100%;
  10512. }
  10513. #u41102_text {
  10514. border-width:0px;
  10515. white-space:nowrap;
  10516. text-transform:none;
  10517. }
  10518. #u41103_div {
  10519. border-width:0px;
  10520. position:absolute;
  10521. left:0px;
  10522. top:0px;
  10523. width:36px;
  10524. height:20px;
  10525. background:inherit;
  10526. background-color:rgba(255, 255, 255, 0);
  10527. border:none;
  10528. border-radius:0px;
  10529. -moz-box-shadow:none;
  10530. -webkit-box-shadow:none;
  10531. box-shadow:none;
  10532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10533. font-weight:400;
  10534. font-style:normal;
  10535. color:#AAAAAA;
  10536. }
  10537. #u41103 {
  10538. border-width:0px;
  10539. position:absolute;
  10540. left:965px;
  10541. top:284px;
  10542. width:36px;
  10543. height:20px;
  10544. display:flex;
  10545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10546. font-weight:400;
  10547. font-style:normal;
  10548. color:#AAAAAA;
  10549. }
  10550. #u41103 .text {
  10551. position:absolute;
  10552. align-self:flex-start;
  10553. padding:0px 0px 0px 0px;
  10554. box-sizing:border-box;
  10555. width:100%;
  10556. }
  10557. #u41103_text {
  10558. border-width:0px;
  10559. white-space:nowrap;
  10560. text-transform:none;
  10561. }
  10562. #u41104_div {
  10563. border-width:0px;
  10564. position:absolute;
  10565. left:0px;
  10566. top:0px;
  10567. width:57px;
  10568. height:20px;
  10569. background:inherit;
  10570. background-color:rgba(255, 255, 255, 0);
  10571. border:none;
  10572. border-radius:0px;
  10573. -moz-box-shadow:none;
  10574. -webkit-box-shadow:none;
  10575. box-shadow:none;
  10576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10577. font-weight:400;
  10578. font-style:normal;
  10579. }
  10580. #u41104 {
  10581. border-width:0px;
  10582. position:absolute;
  10583. left:965px;
  10584. top:314px;
  10585. width:57px;
  10586. height:20px;
  10587. display:flex;
  10588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10589. font-weight:400;
  10590. font-style:normal;
  10591. }
  10592. #u41104 .text {
  10593. position:absolute;
  10594. align-self:flex-start;
  10595. padding:0px 0px 0px 0px;
  10596. box-sizing:border-box;
  10597. width:100%;
  10598. }
  10599. #u41104_text {
  10600. border-width:0px;
  10601. white-space:nowrap;
  10602. text-transform:none;
  10603. }
  10604. #u41105_div {
  10605. border-width:0px;
  10606. position:absolute;
  10607. left:0px;
  10608. top:0px;
  10609. width:83px;
  10610. height:20px;
  10611. background:inherit;
  10612. background-color:rgba(255, 255, 255, 0);
  10613. border:none;
  10614. border-radius:0px;
  10615. -moz-box-shadow:none;
  10616. -webkit-box-shadow:none;
  10617. box-shadow:none;
  10618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10619. font-weight:400;
  10620. font-style:normal;
  10621. color:#AAAAAA;
  10622. }
  10623. #u41105 {
  10624. border-width:0px;
  10625. position:absolute;
  10626. left:965px;
  10627. top:339px;
  10628. width:83px;
  10629. height:20px;
  10630. display:flex;
  10631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10632. font-weight:400;
  10633. font-style:normal;
  10634. color:#AAAAAA;
  10635. }
  10636. #u41105 .text {
  10637. position:absolute;
  10638. align-self:flex-start;
  10639. padding:0px 0px 0px 0px;
  10640. box-sizing:border-box;
  10641. width:100%;
  10642. }
  10643. #u41105_text {
  10644. border-width:0px;
  10645. white-space:nowrap;
  10646. text-transform:none;
  10647. }
  10648. #u41106_div {
  10649. border-width:0px;
  10650. position:absolute;
  10651. left:0px;
  10652. top:0px;
  10653. width:83px;
  10654. height:30px;
  10655. background:inherit;
  10656. background-color:rgba(24, 144, 255, 1);
  10657. border:none;
  10658. border-radius:4px;
  10659. -moz-box-shadow:none;
  10660. -webkit-box-shadow:none;
  10661. box-shadow:none;
  10662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10663. font-weight:400;
  10664. font-style:normal;
  10665. font-size:12px;
  10666. color:#FFFFFF;
  10667. }
  10668. #u41106 {
  10669. border-width:0px;
  10670. position:absolute;
  10671. left:1194px;
  10672. top:334px;
  10673. width:83px;
  10674. height:30px;
  10675. display:flex;
  10676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10677. font-weight:400;
  10678. font-style:normal;
  10679. font-size:12px;
  10680. color:#FFFFFF;
  10681. }
  10682. #u41106 .text {
  10683. position:absolute;
  10684. align-self:center;
  10685. padding:2px 2px 2px 2px;
  10686. box-sizing:border-box;
  10687. width:100%;
  10688. }
  10689. #u41106_text {
  10690. border-width:0px;
  10691. word-wrap:break-word;
  10692. text-transform:none;
  10693. }
  10694. #u41107_div {
  10695. border-width:0px;
  10696. position:absolute;
  10697. left:0px;
  10698. top:0px;
  10699. width:265px;
  10700. height:17px;
  10701. background:inherit;
  10702. background-color:rgba(255, 255, 255, 0);
  10703. border:none;
  10704. border-radius:0px;
  10705. -moz-box-shadow:none;
  10706. -webkit-box-shadow:none;
  10707. box-shadow:none;
  10708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10709. font-weight:400;
  10710. font-style:normal;
  10711. font-size:12px;
  10712. color:#AAAAAA;
  10713. }
  10714. #u41107 {
  10715. border-width:0px;
  10716. position:absolute;
  10717. left:955px;
  10718. top:214px;
  10719. width:265px;
  10720. height:17px;
  10721. display:flex;
  10722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10723. font-weight:400;
  10724. font-style:normal;
  10725. font-size:12px;
  10726. color:#AAAAAA;
  10727. }
  10728. #u41107 .text {
  10729. position:absolute;
  10730. align-self:flex-start;
  10731. padding:0px 0px 0px 0px;
  10732. box-sizing:border-box;
  10733. width:100%;
  10734. }
  10735. #u41107_text {
  10736. border-width:0px;
  10737. white-space:nowrap;
  10738. text-transform:none;
  10739. }
  10740. #u41108_div {
  10741. border-width:0px;
  10742. position:absolute;
  10743. left:0px;
  10744. top:0px;
  10745. width:375px;
  10746. height:58px;
  10747. background:inherit;
  10748. background-color:rgba(24, 144, 255, 1);
  10749. border:none;
  10750. border-radius:0px;
  10751. -moz-box-shadow:none;
  10752. -webkit-box-shadow:none;
  10753. box-shadow:none;
  10754. }
  10755. #u41108 {
  10756. border-width:0px;
  10757. position:absolute;
  10758. left:935px;
  10759. top:101px;
  10760. width:375px;
  10761. height:58px;
  10762. display:flex;
  10763. }
  10764. #u41108 .text {
  10765. position:absolute;
  10766. align-self:center;
  10767. padding:2px 2px 2px 2px;
  10768. box-sizing:border-box;
  10769. width:100%;
  10770. }
  10771. #u41108_text {
  10772. border-width:0px;
  10773. word-wrap:break-word;
  10774. text-transform:none;
  10775. visibility:hidden;
  10776. }
  10777. #u41109 {
  10778. border-width:0px;
  10779. position:absolute;
  10780. left:0px;
  10781. top:0px;
  10782. width:0px;
  10783. height:0px;
  10784. }
  10785. #u41110 {
  10786. border-width:0px;
  10787. position:absolute;
  10788. left:0px;
  10789. top:0px;
  10790. width:0px;
  10791. height:0px;
  10792. }
  10793. #u41111_img {
  10794. border-width:0px;
  10795. position:absolute;
  10796. left:0px;
  10797. top:0px;
  10798. width:20px;
  10799. height:20px;
  10800. }
  10801. #u41111 {
  10802. border-width:0px;
  10803. position:absolute;
  10804. left:941px;
  10805. top:120px;
  10806. width:20px;
  10807. height:20px;
  10808. display:flex;
  10809. font-size:11px;
  10810. color:#1890FF;
  10811. }
  10812. #u41111 .text {
  10813. position:absolute;
  10814. align-self:center;
  10815. padding:2px 2px 2px 2px;
  10816. box-sizing:border-box;
  10817. width:100%;
  10818. }
  10819. #u41111_text {
  10820. border-width:0px;
  10821. word-wrap:break-word;
  10822. text-transform:none;
  10823. }
  10824. #u41112_div {
  10825. border-width:0px;
  10826. position:absolute;
  10827. left:0px;
  10828. top:0px;
  10829. width:49px;
  10830. height:30px;
  10831. background:inherit;
  10832. background-color:rgba(255, 255, 255, 0);
  10833. border:none;
  10834. border-left:0px;
  10835. border-top:0px;
  10836. border-right:0px;
  10837. border-radius:0px;
  10838. border-bottom-right-radius:0px;
  10839. border-bottom-left-radius:0px;
  10840. -moz-box-shadow:none;
  10841. -webkit-box-shadow:none;
  10842. box-shadow:none;
  10843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10844. font-weight:400;
  10845. font-style:normal;
  10846. font-size:12px;
  10847. color:#FFFFFF;
  10848. line-height:30px;
  10849. }
  10850. #u41112 {
  10851. border-width:0px;
  10852. position:absolute;
  10853. left:966px;
  10854. top:115px;
  10855. width:49px;
  10856. height:30px;
  10857. display:flex;
  10858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10859. font-weight:400;
  10860. font-style:normal;
  10861. font-size:12px;
  10862. color:#FFFFFF;
  10863. line-height:30px;
  10864. }
  10865. #u41112 .text {
  10866. position:absolute;
  10867. align-self:center;
  10868. padding:0px 0px 0px 0px;
  10869. box-sizing:border-box;
  10870. width:100%;
  10871. }
  10872. #u41112_text {
  10873. border-width:0px;
  10874. white-space:nowrap;
  10875. text-transform:none;
  10876. }
  10877. #u41113_img {
  10878. border-width:0px;
  10879. position:absolute;
  10880. left:0px;
  10881. top:0px;
  10882. width:20px;
  10883. height:20px;
  10884. }
  10885. #u41113 {
  10886. border-width:0px;
  10887. position:absolute;
  10888. left:1028px;
  10889. top:120px;
  10890. width:20px;
  10891. height:20px;
  10892. display:flex;
  10893. font-size:11px;
  10894. color:#1890FF;
  10895. }
  10896. #u41113 .text {
  10897. position:absolute;
  10898. align-self:center;
  10899. padding:2px 2px 2px 2px;
  10900. box-sizing:border-box;
  10901. width:100%;
  10902. }
  10903. #u41113_text {
  10904. border-width:0px;
  10905. word-wrap:break-word;
  10906. text-transform:none;
  10907. }
  10908. #u41114_div {
  10909. border-width:0px;
  10910. position:absolute;
  10911. left:0px;
  10912. top:0px;
  10913. width:49px;
  10914. height:30px;
  10915. background:inherit;
  10916. background-color:rgba(255, 255, 255, 0);
  10917. border:none;
  10918. border-left:0px;
  10919. border-top:0px;
  10920. border-right:0px;
  10921. border-radius:0px;
  10922. border-bottom-right-radius:0px;
  10923. border-bottom-left-radius:0px;
  10924. -moz-box-shadow:none;
  10925. -webkit-box-shadow:none;
  10926. box-shadow:none;
  10927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10928. font-weight:400;
  10929. font-style:normal;
  10930. font-size:12px;
  10931. color:#FFFFFF;
  10932. line-height:30px;
  10933. }
  10934. #u41114 {
  10935. border-width:0px;
  10936. position:absolute;
  10937. left:1053px;
  10938. top:115px;
  10939. width:49px;
  10940. height:30px;
  10941. display:flex;
  10942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10943. font-weight:400;
  10944. font-style:normal;
  10945. font-size:12px;
  10946. color:#FFFFFF;
  10947. line-height:30px;
  10948. }
  10949. #u41114 .text {
  10950. position:absolute;
  10951. align-self:center;
  10952. padding:0px 0px 0px 0px;
  10953. box-sizing:border-box;
  10954. width:100%;
  10955. }
  10956. #u41114_text {
  10957. border-width:0px;
  10958. white-space:nowrap;
  10959. text-transform:none;
  10960. }
  10961. #u41115_img {
  10962. border-width:0px;
  10963. position:absolute;
  10964. left:0px;
  10965. top:0px;
  10966. width:20px;
  10967. height:20px;
  10968. }
  10969. #u41115 {
  10970. border-width:0px;
  10971. position:absolute;
  10972. left:1122px;
  10973. top:120px;
  10974. width:20px;
  10975. height:20px;
  10976. display:flex;
  10977. font-size:11px;
  10978. color:#1890FF;
  10979. }
  10980. #u41115 .text {
  10981. position:absolute;
  10982. align-self:center;
  10983. padding:2px 2px 2px 2px;
  10984. box-sizing:border-box;
  10985. width:100%;
  10986. }
  10987. #u41115_text {
  10988. border-width:0px;
  10989. word-wrap:break-word;
  10990. text-transform:none;
  10991. }
  10992. #u41116_div {
  10993. border-width:0px;
  10994. position:absolute;
  10995. left:0px;
  10996. top:0px;
  10997. width:49px;
  10998. height:30px;
  10999. background:inherit;
  11000. background-color:rgba(255, 255, 255, 0);
  11001. border:none;
  11002. border-left:0px;
  11003. border-top:0px;
  11004. border-right:0px;
  11005. border-radius:0px;
  11006. border-bottom-right-radius:0px;
  11007. border-bottom-left-radius:0px;
  11008. -moz-box-shadow:none;
  11009. -webkit-box-shadow:none;
  11010. box-shadow:none;
  11011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11012. font-weight:400;
  11013. font-style:normal;
  11014. font-size:12px;
  11015. color:#FFFFFF;
  11016. line-height:30px;
  11017. }
  11018. #u41116 {
  11019. border-width:0px;
  11020. position:absolute;
  11021. left:1147px;
  11022. top:115px;
  11023. width:49px;
  11024. height:30px;
  11025. display:flex;
  11026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11027. font-weight:400;
  11028. font-style:normal;
  11029. font-size:12px;
  11030. color:#FFFFFF;
  11031. line-height:30px;
  11032. }
  11033. #u41116 .text {
  11034. position:absolute;
  11035. align-self:center;
  11036. padding:0px 0px 0px 0px;
  11037. box-sizing:border-box;
  11038. width:100%;
  11039. }
  11040. #u41116_text {
  11041. border-width:0px;
  11042. white-space:nowrap;
  11043. text-transform:none;
  11044. }
  11045. #u41117_img {
  11046. border-width:0px;
  11047. position:absolute;
  11048. left:0px;
  11049. top:0px;
  11050. width:20px;
  11051. height:20px;
  11052. }
  11053. #u41117 {
  11054. border-width:0px;
  11055. position:absolute;
  11056. left:1216px;
  11057. top:120px;
  11058. width:20px;
  11059. height:20px;
  11060. display:flex;
  11061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11062. font-weight:400;
  11063. font-style:normal;
  11064. font-size:11px;
  11065. color:#1890FF;
  11066. }
  11067. #u41117 .text {
  11068. position:absolute;
  11069. align-self:center;
  11070. padding:2px 2px 2px 2px;
  11071. box-sizing:border-box;
  11072. width:100%;
  11073. }
  11074. #u41117_text {
  11075. border-width:0px;
  11076. word-wrap:break-word;
  11077. text-transform:none;
  11078. }
  11079. #u41118_div {
  11080. border-width:0px;
  11081. position:absolute;
  11082. left:0px;
  11083. top:0px;
  11084. width:49px;
  11085. height:30px;
  11086. background:inherit;
  11087. background-color:rgba(255, 255, 255, 0);
  11088. border:none;
  11089. border-left:0px;
  11090. border-top:0px;
  11091. border-right:0px;
  11092. border-radius:0px;
  11093. border-bottom-right-radius:0px;
  11094. border-bottom-left-radius:0px;
  11095. -moz-box-shadow:none;
  11096. -webkit-box-shadow:none;
  11097. box-shadow:none;
  11098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11099. font-weight:400;
  11100. font-style:normal;
  11101. font-size:12px;
  11102. color:#FFFFFF;
  11103. line-height:30px;
  11104. }
  11105. #u41118 {
  11106. border-width:0px;
  11107. position:absolute;
  11108. left:1241px;
  11109. top:115px;
  11110. width:49px;
  11111. height:30px;
  11112. display:flex;
  11113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11114. font-weight:400;
  11115. font-style:normal;
  11116. font-size:12px;
  11117. color:#FFFFFF;
  11118. line-height:30px;
  11119. }
  11120. #u41118 .text {
  11121. position:absolute;
  11122. align-self:center;
  11123. padding:0px 0px 0px 0px;
  11124. box-sizing:border-box;
  11125. width:100%;
  11126. }
  11127. #u41118_text {
  11128. border-width:0px;
  11129. white-space:nowrap;
  11130. text-transform:none;
  11131. }
  11132. #u41119_div {
  11133. border-width:0px;
  11134. position:absolute;
  11135. left:0px;
  11136. top:0px;
  11137. width:375px;
  11138. height:58px;
  11139. background:inherit;
  11140. background-color:rgba(24, 144, 255, 1);
  11141. border:none;
  11142. border-radius:0px;
  11143. -moz-box-shadow:none;
  11144. -webkit-box-shadow:none;
  11145. box-shadow:none;
  11146. }
  11147. #u41119 {
  11148. border-width:0px;
  11149. position:absolute;
  11150. left:1388px;
  11151. top:101px;
  11152. width:375px;
  11153. height:58px;
  11154. display:flex;
  11155. }
  11156. #u41119 .text {
  11157. position:absolute;
  11158. align-self:center;
  11159. padding:2px 2px 2px 2px;
  11160. box-sizing:border-box;
  11161. width:100%;
  11162. }
  11163. #u41119_text {
  11164. border-width:0px;
  11165. word-wrap:break-word;
  11166. text-transform:none;
  11167. visibility:hidden;
  11168. }
  11169. #u41120 {
  11170. border-width:0px;
  11171. position:absolute;
  11172. left:0px;
  11173. top:0px;
  11174. width:0px;
  11175. height:0px;
  11176. }
  11177. #u41121 {
  11178. border-width:0px;
  11179. position:absolute;
  11180. left:0px;
  11181. top:0px;
  11182. width:0px;
  11183. height:0px;
  11184. }
  11185. #u41122_img {
  11186. border-width:0px;
  11187. position:absolute;
  11188. left:0px;
  11189. top:0px;
  11190. width:20px;
  11191. height:20px;
  11192. }
  11193. #u41122 {
  11194. border-width:0px;
  11195. position:absolute;
  11196. left:1394px;
  11197. top:120px;
  11198. width:20px;
  11199. height:20px;
  11200. display:flex;
  11201. font-size:11px;
  11202. color:#1890FF;
  11203. }
  11204. #u41122 .text {
  11205. position:absolute;
  11206. align-self:center;
  11207. padding:2px 2px 2px 2px;
  11208. box-sizing:border-box;
  11209. width:100%;
  11210. }
  11211. #u41122_text {
  11212. border-width:0px;
  11213. word-wrap:break-word;
  11214. text-transform:none;
  11215. }
  11216. #u41123_div {
  11217. border-width:0px;
  11218. position:absolute;
  11219. left:0px;
  11220. top:0px;
  11221. width:49px;
  11222. height:30px;
  11223. background:inherit;
  11224. background-color:rgba(255, 255, 255, 0);
  11225. border:none;
  11226. border-left:0px;
  11227. border-top:0px;
  11228. border-right:0px;
  11229. border-radius:0px;
  11230. border-bottom-right-radius:0px;
  11231. border-bottom-left-radius:0px;
  11232. -moz-box-shadow:none;
  11233. -webkit-box-shadow:none;
  11234. box-shadow:none;
  11235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11236. font-weight:400;
  11237. font-style:normal;
  11238. font-size:12px;
  11239. color:#FFFFFF;
  11240. line-height:30px;
  11241. }
  11242. #u41123 {
  11243. border-width:0px;
  11244. position:absolute;
  11245. left:1419px;
  11246. top:115px;
  11247. width:49px;
  11248. height:30px;
  11249. display:flex;
  11250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11251. font-weight:400;
  11252. font-style:normal;
  11253. font-size:12px;
  11254. color:#FFFFFF;
  11255. line-height:30px;
  11256. }
  11257. #u41123 .text {
  11258. position:absolute;
  11259. align-self:center;
  11260. padding:0px 0px 0px 0px;
  11261. box-sizing:border-box;
  11262. width:100%;
  11263. }
  11264. #u41123_text {
  11265. border-width:0px;
  11266. white-space:nowrap;
  11267. text-transform:none;
  11268. }
  11269. #u41124_img {
  11270. border-width:0px;
  11271. position:absolute;
  11272. left:0px;
  11273. top:0px;
  11274. width:20px;
  11275. height:20px;
  11276. }
  11277. #u41124 {
  11278. border-width:0px;
  11279. position:absolute;
  11280. left:1481px;
  11281. top:120px;
  11282. width:20px;
  11283. height:20px;
  11284. display:flex;
  11285. font-size:11px;
  11286. color:#1890FF;
  11287. }
  11288. #u41124 .text {
  11289. position:absolute;
  11290. align-self:center;
  11291. padding:2px 2px 2px 2px;
  11292. box-sizing:border-box;
  11293. width:100%;
  11294. }
  11295. #u41124_text {
  11296. border-width:0px;
  11297. word-wrap:break-word;
  11298. text-transform:none;
  11299. }
  11300. #u41125_div {
  11301. border-width:0px;
  11302. position:absolute;
  11303. left:0px;
  11304. top:0px;
  11305. width:49px;
  11306. height:30px;
  11307. background:inherit;
  11308. background-color:rgba(255, 255, 255, 0);
  11309. border:none;
  11310. border-left:0px;
  11311. border-top:0px;
  11312. border-right:0px;
  11313. border-radius:0px;
  11314. border-bottom-right-radius:0px;
  11315. border-bottom-left-radius:0px;
  11316. -moz-box-shadow:none;
  11317. -webkit-box-shadow:none;
  11318. box-shadow:none;
  11319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11320. font-weight:400;
  11321. font-style:normal;
  11322. font-size:12px;
  11323. color:#FFFFFF;
  11324. line-height:30px;
  11325. }
  11326. #u41125 {
  11327. border-width:0px;
  11328. position:absolute;
  11329. left:1506px;
  11330. top:115px;
  11331. width:49px;
  11332. height:30px;
  11333. display:flex;
  11334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11335. font-weight:400;
  11336. font-style:normal;
  11337. font-size:12px;
  11338. color:#FFFFFF;
  11339. line-height:30px;
  11340. }
  11341. #u41125 .text {
  11342. position:absolute;
  11343. align-self:center;
  11344. padding:0px 0px 0px 0px;
  11345. box-sizing:border-box;
  11346. width:100%;
  11347. }
  11348. #u41125_text {
  11349. border-width:0px;
  11350. white-space:nowrap;
  11351. text-transform:none;
  11352. }
  11353. #u41126_img {
  11354. border-width:0px;
  11355. position:absolute;
  11356. left:0px;
  11357. top:0px;
  11358. width:20px;
  11359. height:20px;
  11360. }
  11361. #u41126 {
  11362. border-width:0px;
  11363. position:absolute;
  11364. left:1575px;
  11365. top:120px;
  11366. width:20px;
  11367. height:20px;
  11368. display:flex;
  11369. font-size:11px;
  11370. color:#1890FF;
  11371. }
  11372. #u41126 .text {
  11373. position:absolute;
  11374. align-self:center;
  11375. padding:2px 2px 2px 2px;
  11376. box-sizing:border-box;
  11377. width:100%;
  11378. }
  11379. #u41126_text {
  11380. border-width:0px;
  11381. word-wrap:break-word;
  11382. text-transform:none;
  11383. }
  11384. #u41127_div {
  11385. border-width:0px;
  11386. position:absolute;
  11387. left:0px;
  11388. top:0px;
  11389. width:49px;
  11390. height:30px;
  11391. background:inherit;
  11392. background-color:rgba(255, 255, 255, 0);
  11393. border:none;
  11394. border-left:0px;
  11395. border-top:0px;
  11396. border-right:0px;
  11397. border-radius:0px;
  11398. border-bottom-right-radius:0px;
  11399. border-bottom-left-radius:0px;
  11400. -moz-box-shadow:none;
  11401. -webkit-box-shadow:none;
  11402. box-shadow:none;
  11403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11404. font-weight:400;
  11405. font-style:normal;
  11406. font-size:12px;
  11407. color:#FFFFFF;
  11408. line-height:30px;
  11409. }
  11410. #u41127 {
  11411. border-width:0px;
  11412. position:absolute;
  11413. left:1600px;
  11414. top:115px;
  11415. width:49px;
  11416. height:30px;
  11417. display:flex;
  11418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11419. font-weight:400;
  11420. font-style:normal;
  11421. font-size:12px;
  11422. color:#FFFFFF;
  11423. line-height:30px;
  11424. }
  11425. #u41127 .text {
  11426. position:absolute;
  11427. align-self:center;
  11428. padding:0px 0px 0px 0px;
  11429. box-sizing:border-box;
  11430. width:100%;
  11431. }
  11432. #u41127_text {
  11433. border-width:0px;
  11434. white-space:nowrap;
  11435. text-transform:none;
  11436. }
  11437. #u41128_img {
  11438. border-width:0px;
  11439. position:absolute;
  11440. left:0px;
  11441. top:0px;
  11442. width:20px;
  11443. height:20px;
  11444. }
  11445. #u41128 {
  11446. border-width:0px;
  11447. position:absolute;
  11448. left:1669px;
  11449. top:120px;
  11450. width:20px;
  11451. height:20px;
  11452. display:flex;
  11453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11454. font-weight:400;
  11455. font-style:normal;
  11456. font-size:11px;
  11457. color:#1890FF;
  11458. }
  11459. #u41128 .text {
  11460. position:absolute;
  11461. align-self:center;
  11462. padding:2px 2px 2px 2px;
  11463. box-sizing:border-box;
  11464. width:100%;
  11465. }
  11466. #u41128_text {
  11467. border-width:0px;
  11468. word-wrap:break-word;
  11469. text-transform:none;
  11470. }
  11471. #u41129_div {
  11472. border-width:0px;
  11473. position:absolute;
  11474. left:0px;
  11475. top:0px;
  11476. width:49px;
  11477. height:30px;
  11478. background:inherit;
  11479. background-color:rgba(255, 255, 255, 0);
  11480. border:none;
  11481. border-left:0px;
  11482. border-top:0px;
  11483. border-right:0px;
  11484. border-radius:0px;
  11485. border-bottom-right-radius:0px;
  11486. border-bottom-left-radius:0px;
  11487. -moz-box-shadow:none;
  11488. -webkit-box-shadow:none;
  11489. box-shadow:none;
  11490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11491. font-weight:400;
  11492. font-style:normal;
  11493. font-size:12px;
  11494. color:#FFFFFF;
  11495. line-height:30px;
  11496. }
  11497. #u41129 {
  11498. border-width:0px;
  11499. position:absolute;
  11500. left:1694px;
  11501. top:115px;
  11502. width:49px;
  11503. height:30px;
  11504. display:flex;
  11505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11506. font-weight:400;
  11507. font-style:normal;
  11508. font-size:12px;
  11509. color:#FFFFFF;
  11510. line-height:30px;
  11511. }
  11512. #u41129 .text {
  11513. position:absolute;
  11514. align-self:center;
  11515. padding:0px 0px 0px 0px;
  11516. box-sizing:border-box;
  11517. width:100%;
  11518. }
  11519. #u41129_text {
  11520. border-width:0px;
  11521. white-space:nowrap;
  11522. text-transform:none;
  11523. }
  11524. #u41130 {
  11525. border-width:0px;
  11526. position:absolute;
  11527. left:0px;
  11528. top:0px;
  11529. width:0px;
  11530. height:0px;
  11531. }
  11532. #u41131 {
  11533. border-width:0px;
  11534. position:absolute;
  11535. left:0px;
  11536. top:0px;
  11537. width:0px;
  11538. height:0px;
  11539. }
  11540. #u41132 {
  11541. border-width:0px;
  11542. position:absolute;
  11543. left:0px;
  11544. top:0px;
  11545. width:0px;
  11546. height:0px;
  11547. }
  11548. #u41133_div {
  11549. border-width:0px;
  11550. position:absolute;
  11551. left:0px;
  11552. top:0px;
  11553. width:235px;
  11554. height:40px;
  11555. background:inherit;
  11556. background-color:rgba(255, 255, 255, 0);
  11557. border:none;
  11558. border-left:0px;
  11559. border-top:0px;
  11560. border-right:0px;
  11561. border-radius:0px;
  11562. border-bottom-right-radius:0px;
  11563. border-bottom-left-radius:0px;
  11564. -moz-box-shadow:none;
  11565. -webkit-box-shadow:none;
  11566. box-shadow:none;
  11567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11568. font-weight:400;
  11569. font-style:normal;
  11570. font-size:14px;
  11571. color:#AAAAAA;
  11572. line-height:40px;
  11573. }
  11574. #u41133 {
  11575. border-width:0px;
  11576. position:absolute;
  11577. left:1407px;
  11578. top:252px;
  11579. width:235px;
  11580. height:40px;
  11581. display:flex;
  11582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11583. font-weight:400;
  11584. font-style:normal;
  11585. font-size:14px;
  11586. color:#AAAAAA;
  11587. line-height:40px;
  11588. }
  11589. #u41133 .text {
  11590. position:absolute;
  11591. align-self:flex-start;
  11592. padding:0px 0px 0px 0px;
  11593. box-sizing:border-box;
  11594. width:100%;
  11595. }
  11596. #u41133_text {
  11597. border-width:0px;
  11598. word-wrap:break-word;
  11599. text-transform:none;
  11600. }
  11601. #u41134_div {
  11602. border-width:0px;
  11603. position:absolute;
  11604. left:0px;
  11605. top:0px;
  11606. width:36px;
  11607. height:40px;
  11608. background:inherit;
  11609. background-color:rgba(255, 255, 255, 0);
  11610. border:none;
  11611. border-left:0px;
  11612. border-top:0px;
  11613. border-right:0px;
  11614. border-radius:0px;
  11615. border-bottom-right-radius:0px;
  11616. border-bottom-left-radius:0px;
  11617. -moz-box-shadow:none;
  11618. -webkit-box-shadow:none;
  11619. box-shadow:none;
  11620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11621. font-weight:400;
  11622. font-style:normal;
  11623. font-size:14px;
  11624. line-height:40px;
  11625. }
  11626. #u41134 {
  11627. border-width:0px;
  11628. position:absolute;
  11629. left:1407px;
  11630. top:212px;
  11631. width:36px;
  11632. height:40px;
  11633. display:flex;
  11634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11635. font-weight:400;
  11636. font-style:normal;
  11637. font-size:14px;
  11638. line-height:40px;
  11639. }
  11640. #u41134 .text {
  11641. position:absolute;
  11642. align-self:flex-start;
  11643. padding:0px 0px 0px 0px;
  11644. box-sizing:border-box;
  11645. width:100%;
  11646. }
  11647. #u41134_text {
  11648. border-width:0px;
  11649. white-space:nowrap;
  11650. text-transform:none;
  11651. }
  11652. #u41135 {
  11653. border-width:0px;
  11654. position:absolute;
  11655. left:0px;
  11656. top:0px;
  11657. width:0px;
  11658. height:0px;
  11659. }
  11660. #u41136 {
  11661. border-width:0px;
  11662. position:absolute;
  11663. left:0px;
  11664. top:0px;
  11665. width:0px;
  11666. height:0px;
  11667. }
  11668. #u41137_img {
  11669. border-width:0px;
  11670. position:absolute;
  11671. left:0px;
  11672. top:0px;
  11673. width:7px;
  11674. height:12px;
  11675. }
  11676. #u41137 {
  11677. border-width:0px;
  11678. position:absolute;
  11679. left:1742px;
  11680. top:427px;
  11681. width:7px;
  11682. height:12px;
  11683. display:flex;
  11684. -webkit-transform:rotate(180deg);
  11685. -moz-transform:rotate(180deg);
  11686. -ms-transform:rotate(180deg);
  11687. transform:rotate(180deg);
  11688. }
  11689. #u41137 .text {
  11690. position:absolute;
  11691. align-self:center;
  11692. padding:2px 2px 2px 2px;
  11693. box-sizing:border-box;
  11694. width:100%;
  11695. }
  11696. #u41137_text {
  11697. border-width:0px;
  11698. word-wrap:break-word;
  11699. text-transform:none;
  11700. visibility:hidden;
  11701. }
  11702. #u41138_div {
  11703. border-width:0px;
  11704. position:absolute;
  11705. left:0px;
  11706. top:0px;
  11707. width:235px;
  11708. height:40px;
  11709. background:inherit;
  11710. background-color:rgba(255, 255, 255, 0);
  11711. border:none;
  11712. border-left:0px;
  11713. border-top:0px;
  11714. border-right:0px;
  11715. border-radius:0px;
  11716. border-bottom-right-radius:0px;
  11717. border-bottom-left-radius:0px;
  11718. -moz-box-shadow:none;
  11719. -webkit-box-shadow:none;
  11720. box-shadow:none;
  11721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11722. font-weight:400;
  11723. font-style:normal;
  11724. font-size:14px;
  11725. color:#AAAAAA;
  11726. line-height:40px;
  11727. }
  11728. #u41138 {
  11729. border-width:0px;
  11730. position:absolute;
  11731. left:1407px;
  11732. top:413px;
  11733. width:235px;
  11734. height:40px;
  11735. display:flex;
  11736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11737. font-weight:400;
  11738. font-style:normal;
  11739. font-size:14px;
  11740. color:#AAAAAA;
  11741. line-height:40px;
  11742. }
  11743. #u41138 .text {
  11744. position:absolute;
  11745. align-self:flex-start;
  11746. padding:0px 0px 0px 0px;
  11747. box-sizing:border-box;
  11748. width:100%;
  11749. }
  11750. #u41138_text {
  11751. border-width:0px;
  11752. word-wrap:break-word;
  11753. text-transform:none;
  11754. }
  11755. #u41139_div {
  11756. border-width:0px;
  11757. position:absolute;
  11758. left:0px;
  11759. top:0px;
  11760. width:64px;
  11761. height:40px;
  11762. background:inherit;
  11763. background-color:rgba(255, 255, 255, 0);
  11764. border:none;
  11765. border-left:0px;
  11766. border-top:0px;
  11767. border-right:0px;
  11768. border-radius:0px;
  11769. border-bottom-right-radius:0px;
  11770. border-bottom-left-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. font-size:14px;
  11778. line-height:40px;
  11779. }
  11780. #u41139 {
  11781. border-width:0px;
  11782. position:absolute;
  11783. left:1407px;
  11784. top:373px;
  11785. width:64px;
  11786. height:40px;
  11787. display:flex;
  11788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11789. font-weight:400;
  11790. font-style:normal;
  11791. font-size:14px;
  11792. line-height:40px;
  11793. }
  11794. #u41139 .text {
  11795. position:absolute;
  11796. align-self:flex-start;
  11797. padding:0px 0px 0px 0px;
  11798. box-sizing:border-box;
  11799. width:100%;
  11800. }
  11801. #u41139_text {
  11802. border-width:0px;
  11803. white-space:nowrap;
  11804. text-transform:none;
  11805. }
  11806. #u41140 {
  11807. border-width:0px;
  11808. position:absolute;
  11809. left:0px;
  11810. top:0px;
  11811. width:0px;
  11812. height:0px;
  11813. }
  11814. #u41141 {
  11815. border-width:0px;
  11816. position:absolute;
  11817. left:0px;
  11818. top:0px;
  11819. width:0px;
  11820. height:0px;
  11821. }
  11822. #u41142_div {
  11823. border-width:0px;
  11824. position:absolute;
  11825. left:0px;
  11826. top:0px;
  11827. width:235px;
  11828. height:40px;
  11829. background:inherit;
  11830. background-color:rgba(255, 255, 255, 0);
  11831. border:none;
  11832. border-left:0px;
  11833. border-top:0px;
  11834. border-right:0px;
  11835. border-radius:0px;
  11836. border-bottom-right-radius:0px;
  11837. border-bottom-left-radius:0px;
  11838. -moz-box-shadow:none;
  11839. -webkit-box-shadow:none;
  11840. box-shadow:none;
  11841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11842. font-weight:400;
  11843. font-style:normal;
  11844. font-size:14px;
  11845. color:#AAAAAA;
  11846. line-height:40px;
  11847. }
  11848. #u41142 {
  11849. border-width:0px;
  11850. position:absolute;
  11851. left:1407px;
  11852. top:723px;
  11853. width:235px;
  11854. height:40px;
  11855. display:flex;
  11856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11857. font-weight:400;
  11858. font-style:normal;
  11859. font-size:14px;
  11860. color:#AAAAAA;
  11861. line-height:40px;
  11862. }
  11863. #u41142 .text {
  11864. position:absolute;
  11865. align-self:flex-start;
  11866. padding:0px 0px 0px 0px;
  11867. box-sizing:border-box;
  11868. width:100%;
  11869. }
  11870. #u41142_text {
  11871. border-width:0px;
  11872. word-wrap:break-word;
  11873. text-transform:none;
  11874. }
  11875. #u41143_div {
  11876. border-width:0px;
  11877. position:absolute;
  11878. left:0px;
  11879. top:0px;
  11880. width:57px;
  11881. height:40px;
  11882. background:inherit;
  11883. background-color:rgba(255, 255, 255, 0);
  11884. border:none;
  11885. border-left:0px;
  11886. border-top:0px;
  11887. border-right:0px;
  11888. border-radius:0px;
  11889. border-bottom-right-radius:0px;
  11890. border-bottom-left-radius:0px;
  11891. -moz-box-shadow:none;
  11892. -webkit-box-shadow:none;
  11893. box-shadow:none;
  11894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11895. font-weight:400;
  11896. font-style:normal;
  11897. font-size:14px;
  11898. line-height:40px;
  11899. }
  11900. #u41143 {
  11901. border-width:0px;
  11902. position:absolute;
  11903. left:1407px;
  11904. top:683px;
  11905. width:57px;
  11906. height:40px;
  11907. display:flex;
  11908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11909. font-weight:400;
  11910. font-style:normal;
  11911. font-size:14px;
  11912. line-height:40px;
  11913. }
  11914. #u41143 .text {
  11915. position:absolute;
  11916. align-self:flex-start;
  11917. padding:0px 0px 0px 0px;
  11918. box-sizing:border-box;
  11919. width:100%;
  11920. }
  11921. #u41143_text {
  11922. border-width:0px;
  11923. white-space:nowrap;
  11924. text-transform:none;
  11925. }
  11926. #u41144 {
  11927. border-width:0px;
  11928. position:absolute;
  11929. left:0px;
  11930. top:0px;
  11931. width:0px;
  11932. height:0px;
  11933. }
  11934. #u41145_div {
  11935. border-width:0px;
  11936. position:absolute;
  11937. left:0px;
  11938. top:0px;
  11939. width:64px;
  11940. height:40px;
  11941. background:inherit;
  11942. background-color:rgba(255, 255, 255, 0);
  11943. border:none;
  11944. border-left:0px;
  11945. border-top:0px;
  11946. border-right:0px;
  11947. border-radius:0px;
  11948. border-bottom-right-radius:0px;
  11949. border-bottom-left-radius:0px;
  11950. -moz-box-shadow:none;
  11951. -webkit-box-shadow:none;
  11952. box-shadow:none;
  11953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11954. font-weight:400;
  11955. font-style:normal;
  11956. font-size:14px;
  11957. line-height:40px;
  11958. }
  11959. #u41145 {
  11960. border-width:0px;
  11961. position:absolute;
  11962. left:1407px;
  11963. top:533px;
  11964. width:64px;
  11965. height:40px;
  11966. display:flex;
  11967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11968. font-weight:400;
  11969. font-style:normal;
  11970. font-size:14px;
  11971. line-height:40px;
  11972. }
  11973. #u41145 .text {
  11974. position:absolute;
  11975. align-self:flex-start;
  11976. padding:0px 0px 0px 0px;
  11977. box-sizing:border-box;
  11978. width:100%;
  11979. }
  11980. #u41145_text {
  11981. border-width:0px;
  11982. white-space:nowrap;
  11983. text-transform:none;
  11984. }
  11985. #u41146_img {
  11986. border-width:0px;
  11987. position:absolute;
  11988. left:0px;
  11989. top:0px;
  11990. width:331px;
  11991. height:110px;
  11992. }
  11993. #u41146 {
  11994. border-width:0px;
  11995. position:absolute;
  11996. left:1407px;
  11997. top:573px;
  11998. width:331px;
  11999. height:110px;
  12000. display:flex;
  12001. }
  12002. #u41146 .text {
  12003. position:absolute;
  12004. align-self:center;
  12005. padding:2px 2px 2px 2px;
  12006. box-sizing:border-box;
  12007. width:100%;
  12008. }
  12009. #u41146_text {
  12010. border-width:0px;
  12011. word-wrap:break-word;
  12012. text-transform:none;
  12013. visibility:hidden;
  12014. }
  12015. #u41147_div {
  12016. border-width:0px;
  12017. position:absolute;
  12018. left:0px;
  12019. top:0px;
  12020. width:137px;
  12021. height:30px;
  12022. background:inherit;
  12023. background-color:rgba(255, 255, 255, 0);
  12024. border:none;
  12025. border-left:0px;
  12026. border-top:0px;
  12027. border-right:0px;
  12028. border-radius:0px;
  12029. border-bottom-right-radius:0px;
  12030. border-bottom-left-radius:0px;
  12031. -moz-box-shadow:none;
  12032. -webkit-box-shadow:none;
  12033. box-shadow:none;
  12034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12035. font-weight:400;
  12036. font-style:normal;
  12037. font-size:11px;
  12038. color:#D9001B;
  12039. line-height:30px;
  12040. }
  12041. #u41147 {
  12042. border-width:0px;
  12043. position:absolute;
  12044. left:1498px;
  12045. top:544px;
  12046. width:137px;
  12047. height:30px;
  12048. display:flex;
  12049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12050. font-weight:400;
  12051. font-style:normal;
  12052. font-size:11px;
  12053. color:#D9001B;
  12054. line-height:30px;
  12055. }
  12056. #u41147 .text {
  12057. position:absolute;
  12058. align-self:flex-start;
  12059. padding:0px 0px 0px 0px;
  12060. box-sizing:border-box;
  12061. width:100%;
  12062. }
  12063. #u41147_text {
  12064. border-width:0px;
  12065. white-space:nowrap;
  12066. text-transform:none;
  12067. }
  12068. #u41148 {
  12069. border-width:0px;
  12070. position:absolute;
  12071. left:0px;
  12072. top:0px;
  12073. width:0px;
  12074. height:0px;
  12075. }
  12076. #u41149 {
  12077. border-width:0px;
  12078. position:absolute;
  12079. left:0px;
  12080. top:0px;
  12081. width:0px;
  12082. height:0px;
  12083. }
  12084. #u41150_div {
  12085. border-width:0px;
  12086. position:absolute;
  12087. left:0px;
  12088. top:0px;
  12089. width:337px;
  12090. height:40px;
  12091. background:inherit;
  12092. background-color:rgba(255, 255, 255, 0);
  12093. border:none;
  12094. border-left:0px;
  12095. border-top:0px;
  12096. border-right:0px;
  12097. border-radius:0px;
  12098. border-bottom-right-radius:0px;
  12099. border-bottom-left-radius:0px;
  12100. -moz-box-shadow:none;
  12101. -webkit-box-shadow:none;
  12102. box-shadow:none;
  12103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12104. font-weight:400;
  12105. font-style:normal;
  12106. font-size:14px;
  12107. color:#AAAAAA;
  12108. line-height:40px;
  12109. }
  12110. #u41150 {
  12111. border-width:0px;
  12112. position:absolute;
  12113. left:1407px;
  12114. top:331px;
  12115. width:337px;
  12116. height:40px;
  12117. display:flex;
  12118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12119. font-weight:400;
  12120. font-style:normal;
  12121. font-size:14px;
  12122. color:#AAAAAA;
  12123. line-height:40px;
  12124. }
  12125. #u41150 .text {
  12126. position:absolute;
  12127. align-self:flex-start;
  12128. padding:0px 0px 0px 0px;
  12129. box-sizing:border-box;
  12130. width:100%;
  12131. }
  12132. #u41150_text {
  12133. border-width:0px;
  12134. word-wrap:break-word;
  12135. text-transform:none;
  12136. }
  12137. #u41151_div {
  12138. border-width:0px;
  12139. position:absolute;
  12140. left:0px;
  12141. top:0px;
  12142. width:64px;
  12143. height:40px;
  12144. background:inherit;
  12145. background-color:rgba(255, 255, 255, 0);
  12146. border:none;
  12147. border-left:0px;
  12148. border-top:0px;
  12149. border-right:0px;
  12150. border-radius:0px;
  12151. border-bottom-right-radius:0px;
  12152. border-bottom-left-radius:0px;
  12153. -moz-box-shadow:none;
  12154. -webkit-box-shadow:none;
  12155. box-shadow:none;
  12156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12157. font-weight:400;
  12158. font-style:normal;
  12159. font-size:14px;
  12160. line-height:40px;
  12161. }
  12162. #u41151 {
  12163. border-width:0px;
  12164. position:absolute;
  12165. left:1407px;
  12166. top:291px;
  12167. width:64px;
  12168. height:40px;
  12169. display:flex;
  12170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12171. font-weight:400;
  12172. font-style:normal;
  12173. font-size:14px;
  12174. line-height:40px;
  12175. }
  12176. #u41151 .text {
  12177. position:absolute;
  12178. align-self:flex-start;
  12179. padding:0px 0px 0px 0px;
  12180. box-sizing:border-box;
  12181. width:100%;
  12182. }
  12183. #u41151_text {
  12184. border-width:0px;
  12185. white-space:nowrap;
  12186. text-transform:none;
  12187. }
  12188. #u41152 {
  12189. border-width:0px;
  12190. position:absolute;
  12191. left:0px;
  12192. top:0px;
  12193. width:0px;
  12194. height:0px;
  12195. }
  12196. #u41153 {
  12197. border-width:0px;
  12198. position:absolute;
  12199. left:0px;
  12200. top:0px;
  12201. width:0px;
  12202. height:0px;
  12203. }
  12204. #u41154_div {
  12205. border-width:0px;
  12206. position:absolute;
  12207. left:0px;
  12208. top:0px;
  12209. width:235px;
  12210. height:40px;
  12211. background:inherit;
  12212. background-color:rgba(255, 255, 255, 0);
  12213. border:none;
  12214. border-left:0px;
  12215. border-top:0px;
  12216. border-right:0px;
  12217. border-radius:0px;
  12218. border-bottom-right-radius:0px;
  12219. border-bottom-left-radius:0px;
  12220. -moz-box-shadow:none;
  12221. -webkit-box-shadow:none;
  12222. box-shadow:none;
  12223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12224. font-weight:400;
  12225. font-style:normal;
  12226. font-size:14px;
  12227. color:#AAAAAA;
  12228. line-height:40px;
  12229. }
  12230. #u41154 {
  12231. border-width:0px;
  12232. position:absolute;
  12233. left:1407px;
  12234. top:493px;
  12235. width:235px;
  12236. height:40px;
  12237. display:flex;
  12238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12239. font-weight:400;
  12240. font-style:normal;
  12241. font-size:14px;
  12242. color:#AAAAAA;
  12243. line-height:40px;
  12244. }
  12245. #u41154 .text {
  12246. position:absolute;
  12247. align-self:flex-start;
  12248. padding:0px 0px 0px 0px;
  12249. box-sizing:border-box;
  12250. width:100%;
  12251. }
  12252. #u41154_text {
  12253. border-width:0px;
  12254. word-wrap:break-word;
  12255. text-transform:none;
  12256. }
  12257. #u41155_div {
  12258. border-width:0px;
  12259. position:absolute;
  12260. left:0px;
  12261. top:0px;
  12262. width:57px;
  12263. height:40px;
  12264. background:inherit;
  12265. background-color:rgba(255, 255, 255, 0);
  12266. border:none;
  12267. border-left:0px;
  12268. border-top:0px;
  12269. border-right:0px;
  12270. border-radius:0px;
  12271. border-bottom-right-radius:0px;
  12272. border-bottom-left-radius:0px;
  12273. -moz-box-shadow:none;
  12274. -webkit-box-shadow:none;
  12275. box-shadow:none;
  12276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12277. font-weight:400;
  12278. font-style:normal;
  12279. font-size:14px;
  12280. line-height:40px;
  12281. }
  12282. #u41155 {
  12283. border-width:0px;
  12284. position:absolute;
  12285. left:1407px;
  12286. top:453px;
  12287. width:57px;
  12288. height:40px;
  12289. display:flex;
  12290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12291. font-weight:400;
  12292. font-style:normal;
  12293. font-size:14px;
  12294. line-height:40px;
  12295. }
  12296. #u41155 .text {
  12297. position:absolute;
  12298. align-self:flex-start;
  12299. padding:0px 0px 0px 0px;
  12300. box-sizing:border-box;
  12301. width:100%;
  12302. }
  12303. #u41155_text {
  12304. border-width:0px;
  12305. white-space:nowrap;
  12306. text-transform:none;
  12307. }
  12308. #u41156 {
  12309. border-width:0px;
  12310. position:absolute;
  12311. left:0px;
  12312. top:0px;
  12313. width:0px;
  12314. height:0px;
  12315. }
  12316. #u41157 {
  12317. border-width:0px;
  12318. position:absolute;
  12319. left:0px;
  12320. top:0px;
  12321. width:0px;
  12322. height:0px;
  12323. }
  12324. #u41158_div {
  12325. border-width:0px;
  12326. position:absolute;
  12327. left:0px;
  12328. top:0px;
  12329. width:235px;
  12330. height:40px;
  12331. background:inherit;
  12332. background-color:rgba(255, 255, 255, 0);
  12333. border:none;
  12334. border-left:0px;
  12335. border-top:0px;
  12336. border-right:0px;
  12337. border-radius:0px;
  12338. border-bottom-right-radius:0px;
  12339. border-bottom-left-radius:0px;
  12340. -moz-box-shadow:none;
  12341. -webkit-box-shadow:none;
  12342. box-shadow:none;
  12343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12344. font-weight:400;
  12345. font-style:normal;
  12346. font-size:14px;
  12347. color:#AAAAAA;
  12348. line-height:40px;
  12349. }
  12350. #u41158 {
  12351. border-width:0px;
  12352. position:absolute;
  12353. left:1407px;
  12354. top:803px;
  12355. width:235px;
  12356. height:40px;
  12357. display:flex;
  12358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12359. font-weight:400;
  12360. font-style:normal;
  12361. font-size:14px;
  12362. color:#AAAAAA;
  12363. line-height:40px;
  12364. }
  12365. #u41158 .text {
  12366. position:absolute;
  12367. align-self:flex-start;
  12368. padding:0px 0px 0px 0px;
  12369. box-sizing:border-box;
  12370. width:100%;
  12371. }
  12372. #u41158_text {
  12373. border-width:0px;
  12374. word-wrap:break-word;
  12375. text-transform:none;
  12376. }
  12377. #u41159_div {
  12378. border-width:0px;
  12379. position:absolute;
  12380. left:0px;
  12381. top:0px;
  12382. width:64px;
  12383. height:40px;
  12384. background:inherit;
  12385. background-color:rgba(255, 255, 255, 0);
  12386. border:none;
  12387. border-left:0px;
  12388. border-top:0px;
  12389. border-right:0px;
  12390. border-radius:0px;
  12391. border-bottom-right-radius:0px;
  12392. border-bottom-left-radius:0px;
  12393. -moz-box-shadow:none;
  12394. -webkit-box-shadow:none;
  12395. box-shadow:none;
  12396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12397. font-weight:400;
  12398. font-style:normal;
  12399. font-size:14px;
  12400. line-height:40px;
  12401. }
  12402. #u41159 {
  12403. border-width:0px;
  12404. position:absolute;
  12405. left:1407px;
  12406. top:763px;
  12407. width:64px;
  12408. height:40px;
  12409. display:flex;
  12410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12411. font-weight:400;
  12412. font-style:normal;
  12413. font-size:14px;
  12414. line-height:40px;
  12415. }
  12416. #u41159 .text {
  12417. position:absolute;
  12418. align-self:flex-start;
  12419. padding:0px 0px 0px 0px;
  12420. box-sizing:border-box;
  12421. width:100%;
  12422. }
  12423. #u41159_text {
  12424. border-width:0px;
  12425. white-space:nowrap;
  12426. text-transform:none;
  12427. }
  12428. #u41160_div {
  12429. border-width:0px;
  12430. position:absolute;
  12431. left:0px;
  12432. top:0px;
  12433. width:294px;
  12434. height:17px;
  12435. background:inherit;
  12436. background-color:rgba(255, 255, 255, 0);
  12437. border:none;
  12438. border-left:0px;
  12439. border-top:0px;
  12440. border-right:0px;
  12441. border-radius:0px;
  12442. border-bottom-right-radius:0px;
  12443. border-bottom-left-radius:0px;
  12444. -moz-box-shadow:none;
  12445. -webkit-box-shadow:none;
  12446. box-shadow:none;
  12447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12448. font-weight:400;
  12449. font-style:normal;
  12450. font-size:12px;
  12451. color:#D9001B;
  12452. }
  12453. #u41160 {
  12454. border-width:0px;
  12455. position:absolute;
  12456. left:1439px;
  12457. top:792px;
  12458. width:294px;
  12459. height:17px;
  12460. display:flex;
  12461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12462. font-weight:400;
  12463. font-style:normal;
  12464. font-size:12px;
  12465. color:#D9001B;
  12466. }
  12467. #u41160 .text {
  12468. position:absolute;
  12469. align-self:flex-start;
  12470. padding:0px 0px 0px 0px;
  12471. box-sizing:border-box;
  12472. width:100%;
  12473. }
  12474. #u41160_text {
  12475. border-width:0px;
  12476. white-space:nowrap;
  12477. text-transform:none;
  12478. }
  12479. #u41161 {
  12480. border-width:0px;
  12481. position:absolute;
  12482. left:0px;
  12483. top:0px;
  12484. width:0px;
  12485. height:0px;
  12486. }
  12487. #u41162_div {
  12488. border-width:0px;
  12489. position:absolute;
  12490. left:0px;
  12491. top:0px;
  12492. width:57px;
  12493. height:40px;
  12494. background:inherit;
  12495. background-color:rgba(255, 255, 255, 0);
  12496. border:none;
  12497. border-left:0px;
  12498. border-top:0px;
  12499. border-right:0px;
  12500. border-radius:0px;
  12501. border-bottom-right-radius:0px;
  12502. border-bottom-left-radius:0px;
  12503. -moz-box-shadow:none;
  12504. -webkit-box-shadow:none;
  12505. box-shadow:none;
  12506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12507. font-weight:400;
  12508. font-style:normal;
  12509. font-size:14px;
  12510. line-height:40px;
  12511. }
  12512. #u41162 {
  12513. border-width:0px;
  12514. position:absolute;
  12515. left:1407px;
  12516. top:843px;
  12517. width:57px;
  12518. height:40px;
  12519. display:flex;
  12520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12521. font-weight:400;
  12522. font-style:normal;
  12523. font-size:14px;
  12524. line-height:40px;
  12525. }
  12526. #u41162 .text {
  12527. position:absolute;
  12528. align-self:flex-start;
  12529. padding:0px 0px 0px 0px;
  12530. box-sizing:border-box;
  12531. width:100%;
  12532. }
  12533. #u41162_text {
  12534. border-width:0px;
  12535. white-space:nowrap;
  12536. text-transform:none;
  12537. }
  12538. #u41163_div {
  12539. border-width:0px;
  12540. position:absolute;
  12541. left:0px;
  12542. top:0px;
  12543. width:229px;
  12544. height:34px;
  12545. background:inherit;
  12546. background-color:rgba(255, 255, 255, 0);
  12547. border:none;
  12548. border-left:0px;
  12549. border-top:0px;
  12550. border-right:0px;
  12551. border-radius:0px;
  12552. border-bottom-right-radius:0px;
  12553. border-bottom-left-radius:0px;
  12554. -moz-box-shadow:none;
  12555. -webkit-box-shadow:none;
  12556. box-shadow:none;
  12557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12558. font-weight:400;
  12559. font-style:normal;
  12560. font-size:12px;
  12561. color:#AAAAAA;
  12562. }
  12563. #u41163 {
  12564. border-width:0px;
  12565. position:absolute;
  12566. left:1509px;
  12567. top:883px;
  12568. width:229px;
  12569. height:34px;
  12570. display:flex;
  12571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12572. font-weight:400;
  12573. font-style:normal;
  12574. font-size:12px;
  12575. color:#AAAAAA;
  12576. }
  12577. #u41163 .text {
  12578. position:absolute;
  12579. align-self:flex-start;
  12580. padding:0px 0px 0px 0px;
  12581. box-sizing:border-box;
  12582. width:100%;
  12583. }
  12584. #u41163_text {
  12585. border-width:0px;
  12586. white-space:nowrap;
  12587. text-transform:none;
  12588. }
  12589. #u41164_img {
  12590. border-width:0px;
  12591. position:absolute;
  12592. left:0px;
  12593. top:0px;
  12594. width:90px;
  12595. height:90px;
  12596. }
  12597. #u41164 {
  12598. border-width:0px;
  12599. position:absolute;
  12600. left:1407px;
  12601. top:883px;
  12602. width:90px;
  12603. height:90px;
  12604. display:flex;
  12605. font-size:28px;
  12606. }
  12607. #u41164 .text {
  12608. position:absolute;
  12609. align-self:center;
  12610. padding:2px 2px 2px 2px;
  12611. box-sizing:border-box;
  12612. width:100%;
  12613. }
  12614. #u41164_text {
  12615. border-width:0px;
  12616. word-wrap:break-word;
  12617. text-transform:none;
  12618. }
  12619. #u41165_div {
  12620. border-width:0px;
  12621. position:absolute;
  12622. left:0px;
  12623. top:0px;
  12624. width:620px;
  12625. height:34px;
  12626. background:inherit;
  12627. background-color:rgba(255, 255, 255, 0);
  12628. border:none;
  12629. border-left:0px;
  12630. border-top:0px;
  12631. border-right:0px;
  12632. border-radius:0px;
  12633. border-bottom-right-radius:0px;
  12634. border-bottom-left-radius:0px;
  12635. -moz-box-shadow:none;
  12636. -webkit-box-shadow:none;
  12637. box-shadow:none;
  12638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12639. font-weight:400;
  12640. font-style:normal;
  12641. font-size:12px;
  12642. color:#D9001B;
  12643. }
  12644. #u41165 {
  12645. border-width:0px;
  12646. position:absolute;
  12647. left:473px;
  12648. top:883px;
  12649. width:620px;
  12650. height:34px;
  12651. display:flex;
  12652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12653. font-weight:400;
  12654. font-style:normal;
  12655. font-size:12px;
  12656. color:#D9001B;
  12657. }
  12658. #u41165 .text {
  12659. position:absolute;
  12660. align-self:center;
  12661. padding:0px 0px 0px 0px;
  12662. box-sizing:border-box;
  12663. width:100%;
  12664. }
  12665. #u41165_text {
  12666. border-width:0px;
  12667. white-space:nowrap;
  12668. text-transform:none;
  12669. }