styles.css 279 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806148071480814809148101481114812148131481414815148161481714818148191482014821148221482314824148251482614827148281482914830148311483214833148341483514836148371483814839148401484114842148431484414845148461484714848148491485014851148521485314854148551485614857148581485914860148611486214863148641486514866148671486814869148701487114872148731487414875148761487714878148791488014881148821488314884148851488614887148881488914890148911489214893148941489514896148971489814899149001490114902149031490414905149061490714908149091491014911149121491314914149151491614917149181491914920149211492214923149241492514926149271492814929149301493114932149331493414935149361493714938149391494014941149421494314944149451494614947149481494914950149511495214953149541495514956149571495814959149601496114962149631496414965149661496714968149691497014971149721497314974149751497614977149781497914980149811498214983149841498514986149871498814989149901499114992149931499414995149961499714998149991500015001150021500315004150051500615007150081500915010150111501215013150141501515016150171501815019150201502115022150231502415025150261502715028150291503015031150321503315034150351503615037150381503915040150411504215043150441504515046150471504815049150501505115052150531505415055150561505715058150591506015061150621506315064150651506615067150681506915070150711507215073150741507515076150771507815079150801508115082150831508415085150861508715088150891509015091150921509315094150951509615097150981509915100151011510215103151041510515106151071510815109151101511115112151131511415115151161511715118151191512015121151221512315124151251512615127151281512915130151311513215133151341513515136151371513815139151401514115142151431514415145151461514715148151491515015151151521515315154151551515615157151581515915160151611516215163151641516515166151671516815169151701517115172151731517415175151761517715178151791518015181151821518315184151851518615187151881518915190151911519215193151941519515196151971519815199152001520115202152031520415205152061520715208152091521015211152121521315214152151521615217152181521915220152211522215223152241522515226152271522815229152301523115232152331523415235152361523715238152391524015241152421524315244152451524615247152481524915250152511525215253152541525515256152571525815259152601526115262152631526415265152661526715268152691527015271152721527315274152751527615277152781527915280152811528215283152841528515286152871528815289152901529115292152931529415295152961529715298152991530015301153021530315304153051530615307153081530915310153111531215313153141531515316153171531815319153201532115322153231532415325153261532715328153291533015331153321533315334153351533615337153381533915340153411534215343153441534515346153471534815349153501535115352153531535415355153561535715358153591536015361153621536315364153651536615367153681536915370153711537215373153741537515376153771537815379153801538115382153831538415385153861538715388153891539015391153921539315394153951539615397153981539915400154011540215403154041540515406154071540815409154101541115412154131541415415154161541715418154191542015421154221542315424154251542615427154281542915430154311543215433154341543515436154371543815439154401544115442154431544415445154461544715448154491545015451154521545315454154551545615457154581545915460154611546215463154641546515466154671546815469154701547115472154731547415475154761547715478154791548015481154821548315484154851548615487154881548915490154911549215493154941549515496154971549815499155001550115502155031550415505155061550715508155091551015511155121551315514155151551615517155181551915520155211552215523155241552515526155271552815529155301553115532155331553415535155361553715538155391554015541155421554315544155451554615547155481554915550155511555215553155541555515556155571555815559155601556115562155631556415565155661556715568155691557015571155721557315574155751557615577155781557915580155811558215583155841558515586155871558815589155901559115592155931559415595155961559715598155991560015601156021560315604156051560615607156081560915610156111561215613156141561515616156171561815619156201562115622156231562415625156261562715628156291563015631156321563315634156351563615637156381563915640156411564215643156441564515646156471564815649156501565115652156531565415655156561565715658156591566015661156621566315664156651566615667156681566915670156711567215673156741567515676156771567815679156801568115682156831568415685156861568715688156891569015691156921569315694156951569615697156981569915700157011570215703157041570515706157071570815709157101571115712157131571415715157161571715718157191572015721157221572315724157251572615727157281572915730157311573215733157341573515736157371573815739157401574115742157431574415745157461574715748157491575015751157521575315754157551575615757157581575915760157611576215763157641576515766157671576815769157701577115772157731577415775157761577715778157791578015781157821578315784157851578615787157881578915790157911579215793157941579515796157971579815799158001580115802158031580415805158061580715808158091581015811158121581315814158151581615817158181581915820158211582215823158241582515826158271582815829158301583115832158331583415835158361583715838158391584015841158421584315844158451584615847158481584915850158511585215853158541585515856158571585815859158601586115862158631586415865158661586715868158691587015871158721587315874158751587615877158781587915880158811588215883
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3218px;
  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. #u41533_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u41533 {
  28. border-width:0px;
  29. position:absolute;
  30. left:465px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u41533 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u41533_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u41534_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u41534 {
  73. border-width:0px;
  74. position:absolute;
  75. left:494px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u41534 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u41534_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u41535 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u41536_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u41536 {
  121. border-width:0px;
  122. position:absolute;
  123. left:774px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u41536 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u41536_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u41537 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u41538_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u41538 {
  159. border-width:0px;
  160. position:absolute;
  161. left:837px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u41538 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u41538_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u41539_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u41539 {
  189. border-width:0px;
  190. position:absolute;
  191. left:843px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u41539 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u41539_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u41540 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u41541_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u41541 {
  227. border-width:0px;
  228. position:absolute;
  229. left:788px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u41541 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u41541_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u41542_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u41542 {
  257. border-width:0px;
  258. position:absolute;
  259. left:804px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u41542 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u41542_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u41543_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u41543 {
  287. border-width:0px;
  288. position:absolute;
  289. left:795px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u41543 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u41543_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u41544_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u41544 {
  317. border-width:0px;
  318. position:absolute;
  319. left:812px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u41544 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u41544_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u41545_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u41545 {
  351. border-width:0px;
  352. position:absolute;
  353. left:494px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u41545 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u41545_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u41546_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u41546 {
  393. border-width:0px;
  394. position:absolute;
  395. left:494px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u41546 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u41546_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u41547 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u41548_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u41548 {
  431. border-width:0px;
  432. position:absolute;
  433. left:534px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u41548 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u41548_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u41549_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u41549 {
  472. border-width:0px;
  473. position:absolute;
  474. left:534px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u41549 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u41549_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u41550 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u41551_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u41551 {
  513. border-width:0px;
  514. position:absolute;
  515. left:804px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u41551 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u41551_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u41552_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u41552 {
  554. border-width:0px;
  555. position:absolute;
  556. left:804px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u41552 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u41552_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u41553_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u41553 {
  594. border-width:0px;
  595. position:absolute;
  596. left:494px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u41553 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u41553_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u41554 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u41555_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u41555 {
  632. border-width:0px;
  633. position:absolute;
  634. left:716px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u41555 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u41555_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u41556_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u41556 {
  673. border-width:0px;
  674. position:absolute;
  675. left:710px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u41556 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u41556_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u41557 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u41558_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u41558 {
  714. border-width:0px;
  715. position:absolute;
  716. left:622px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u41558 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u41558_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u41559_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u41559 {
  755. border-width:0px;
  756. position:absolute;
  757. left:616px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u41559 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u41559_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u41560_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:732px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u41560 {
  798. border-width:0px;
  799. position:absolute;
  800. left:494px;
  801. top:107px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u41560 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u41560_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u41562_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:433px;
  825. height:865px;
  826. }
  827. #u41562 {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:433px;
  833. height:865px;
  834. display:flex;
  835. }
  836. #u41562 .text {
  837. position:absolute;
  838. align-self:center;
  839. padding:2px 2px 2px 2px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u41562_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. visibility:hidden;
  848. }
  849. #u41563_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:375px;
  855. height:40px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 1);
  858. box-sizing:border-box;
  859. border-width:1px;
  860. border-style:solid;
  861. border-color:rgba(215, 215, 215, 1);
  862. border-left:0px;
  863. border-top:0px;
  864. border-right:0px;
  865. border-radius:0px;
  866. border-bottom-right-radius:0px;
  867. border-bottom-left-radius:0px;
  868. -moz-box-shadow:none;
  869. -webkit-box-shadow:none;
  870. box-shadow:none;
  871. }
  872. #u41563 {
  873. border-width:0px;
  874. position:absolute;
  875. left:29px;
  876. top:67px;
  877. width:375px;
  878. height:40px;
  879. display:flex;
  880. }
  881. #u41563 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u41563_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u41564 {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:0px;
  900. height:0px;
  901. }
  902. #u41565_div {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:88px;
  908. height:32px;
  909. background:inherit;
  910. background-color:rgba(255, 255, 255, 1);
  911. box-sizing:border-box;
  912. border-width:1px;
  913. border-style:solid;
  914. border-color:rgba(242, 242, 242, 1);
  915. border-radius:33px;
  916. -moz-box-shadow:none;
  917. -webkit-box-shadow:none;
  918. box-shadow:none;
  919. }
  920. #u41565 {
  921. border-width:0px;
  922. position:absolute;
  923. left:309px;
  924. top:71px;
  925. width:88px;
  926. height:32px;
  927. display:flex;
  928. }
  929. #u41565 .text {
  930. position:absolute;
  931. align-self:center;
  932. padding:2px 2px 2px 2px;
  933. box-sizing:border-box;
  934. width:100%;
  935. }
  936. #u41565_text {
  937. border-width:0px;
  938. word-wrap:break-word;
  939. text-transform:none;
  940. visibility:hidden;
  941. }
  942. #u41566 {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:0px;
  948. height:0px;
  949. }
  950. #u41567_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:18px;
  956. height:18px;
  957. }
  958. #u41567 {
  959. border-width:0px;
  960. position:absolute;
  961. left:372px;
  962. top:78px;
  963. width:18px;
  964. height:18px;
  965. display:flex;
  966. }
  967. #u41567 .text {
  968. position:absolute;
  969. align-self:center;
  970. padding:2px 2px 2px 2px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u41567_text {
  975. border-width:0px;
  976. word-wrap:break-word;
  977. text-transform:none;
  978. visibility:hidden;
  979. }
  980. #u41568_img {
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:6px;
  986. height:6px;
  987. }
  988. #u41568 {
  989. border-width:0px;
  990. position:absolute;
  991. left:378px;
  992. top:84px;
  993. width:6px;
  994. height:6px;
  995. display:flex;
  996. }
  997. #u41568 .text {
  998. position:absolute;
  999. align-self:center;
  1000. padding:2px 2px 2px 2px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u41568_text {
  1005. border-width:0px;
  1006. word-wrap:break-word;
  1007. text-transform:none;
  1008. visibility:hidden;
  1009. }
  1010. #u41569 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:0px;
  1014. top:0px;
  1015. width:0px;
  1016. height:0px;
  1017. }
  1018. #u41570_img {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:5px;
  1024. height:5px;
  1025. }
  1026. #u41570 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:323px;
  1030. top:85px;
  1031. width:5px;
  1032. height:5px;
  1033. display:flex;
  1034. }
  1035. #u41570 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u41570_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u41571_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:5px;
  1054. height:5px;
  1055. }
  1056. #u41571 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:339px;
  1060. top:85px;
  1061. width:5px;
  1062. height:5px;
  1063. display:flex;
  1064. }
  1065. #u41571 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u41571_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u41572_img {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:7px;
  1084. height:7px;
  1085. }
  1086. #u41572 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:330px;
  1090. top:84px;
  1091. width:7px;
  1092. height:7px;
  1093. display:flex;
  1094. }
  1095. #u41572 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u41572_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u41573_img {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:19px;
  1114. height:2px;
  1115. }
  1116. #u41573 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:347px;
  1120. top:87px;
  1121. width:18px;
  1122. height:1px;
  1123. display:flex;
  1124. -webkit-transform:rotate(90deg);
  1125. -moz-transform:rotate(90deg);
  1126. -ms-transform:rotate(90deg);
  1127. transform:rotate(90deg);
  1128. }
  1129. #u41573 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u41573_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u41574_img {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:375px;
  1148. height:44px;
  1149. }
  1150. #u41574 {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:29px;
  1154. top:24px;
  1155. width:375px;
  1156. height:44px;
  1157. display:flex;
  1158. }
  1159. #u41574 .text {
  1160. position:absolute;
  1161. align-self:center;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u41574_text {
  1167. border-width:0px;
  1168. word-wrap:break-word;
  1169. text-transform:none;
  1170. visibility:hidden;
  1171. }
  1172. #u41575_div {
  1173. border-width:0px;
  1174. position:absolute;
  1175. left:0px;
  1176. top:0px;
  1177. width:375px;
  1178. height:50px;
  1179. background:inherit;
  1180. background-color:rgba(255, 255, 255, 1);
  1181. box-sizing:border-box;
  1182. border-width:1px;
  1183. border-style:solid;
  1184. border-color:rgba(242, 242, 242, 1);
  1185. border-radius:26px;
  1186. border-top-left-radius:0px;
  1187. border-top-right-radius:0px;
  1188. -moz-box-shadow:none;
  1189. -webkit-box-shadow:none;
  1190. box-shadow:none;
  1191. }
  1192. #u41575 {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:29px;
  1196. top:788px;
  1197. width:375px;
  1198. height:50px;
  1199. display:flex;
  1200. }
  1201. #u41575 .text {
  1202. position:absolute;
  1203. align-self:center;
  1204. padding:2px 2px 2px 2px;
  1205. box-sizing:border-box;
  1206. width:100%;
  1207. }
  1208. #u41575_text {
  1209. border-width:0px;
  1210. word-wrap:break-word;
  1211. text-transform:none;
  1212. visibility:hidden;
  1213. }
  1214. #u41576 {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:0px;
  1218. top:0px;
  1219. width:0px;
  1220. height:0px;
  1221. }
  1222. #u41577_img {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:0px;
  1226. top:0px;
  1227. width:24px;
  1228. height:24px;
  1229. }
  1230. #u41577 {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:69px;
  1234. top:792px;
  1235. width:24px;
  1236. height:24px;
  1237. display:flex;
  1238. font-size:8px;
  1239. }
  1240. #u41577 .text {
  1241. position:absolute;
  1242. align-self:center;
  1243. padding:2px 2px 2px 2px;
  1244. box-sizing:border-box;
  1245. width:100%;
  1246. }
  1247. #u41577_text {
  1248. border-width:0px;
  1249. word-wrap:break-word;
  1250. text-transform:none;
  1251. }
  1252. #u41578_div {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:25px;
  1258. height:17px;
  1259. background:inherit;
  1260. background-color:rgba(255, 255, 255, 0);
  1261. border:none;
  1262. border-radius:0px;
  1263. -moz-box-shadow:none;
  1264. -webkit-box-shadow:none;
  1265. box-shadow:none;
  1266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1267. font-weight:400;
  1268. font-style:normal;
  1269. font-size:12px;
  1270. }
  1271. #u41578 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:69px;
  1275. top:817px;
  1276. width:25px;
  1277. height:17px;
  1278. display:flex;
  1279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1280. font-weight:400;
  1281. font-style:normal;
  1282. font-size:12px;
  1283. }
  1284. #u41578 .text {
  1285. position:absolute;
  1286. align-self:flex-start;
  1287. padding:0px 0px 0px 0px;
  1288. box-sizing:border-box;
  1289. width:100%;
  1290. }
  1291. #u41578_text {
  1292. border-width:0px;
  1293. white-space:nowrap;
  1294. text-transform:none;
  1295. }
  1296. #u41579 {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:0px;
  1300. top:0px;
  1301. width:0px;
  1302. height:0px;
  1303. }
  1304. #u41580_img {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:0px;
  1308. top:0px;
  1309. width:24px;
  1310. height:24px;
  1311. }
  1312. #u41580 {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:339px;
  1316. top:794px;
  1317. width:24px;
  1318. height:24px;
  1319. display:flex;
  1320. font-size:8px;
  1321. }
  1322. #u41580 .text {
  1323. position:absolute;
  1324. align-self:center;
  1325. padding:2px 2px 2px 2px;
  1326. box-sizing:border-box;
  1327. width:100%;
  1328. }
  1329. #u41580_text {
  1330. border-width:0px;
  1331. word-wrap:break-word;
  1332. text-transform:none;
  1333. }
  1334. #u41581_div {
  1335. border-width:0px;
  1336. position:absolute;
  1337. left:0px;
  1338. top:0px;
  1339. width:25px;
  1340. height:17px;
  1341. background:inherit;
  1342. background-color:rgba(255, 255, 255, 0);
  1343. border:none;
  1344. border-radius:0px;
  1345. -moz-box-shadow:none;
  1346. -webkit-box-shadow:none;
  1347. box-shadow:none;
  1348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1349. font-weight:400;
  1350. font-style:normal;
  1351. font-size:12px;
  1352. }
  1353. #u41581 {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:339px;
  1357. top:819px;
  1358. width:25px;
  1359. height:17px;
  1360. display:flex;
  1361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1362. font-weight:400;
  1363. font-style:normal;
  1364. font-size:12px;
  1365. }
  1366. #u41581 .text {
  1367. position:absolute;
  1368. align-self:flex-start;
  1369. padding:0px 0px 0px 0px;
  1370. box-sizing:border-box;
  1371. width:100%;
  1372. }
  1373. #u41581_text {
  1374. border-width:0px;
  1375. white-space:nowrap;
  1376. text-transform:none;
  1377. }
  1378. #u41582_div {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:375px;
  1384. height:681px;
  1385. background:inherit;
  1386. background-color:rgba(242, 242, 242, 0.462745098039216);
  1387. border:none;
  1388. border-radius:0px;
  1389. -moz-box-shadow:none;
  1390. -webkit-box-shadow:none;
  1391. box-shadow:none;
  1392. }
  1393. #u41582 {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:29px;
  1397. top:107px;
  1398. width:375px;
  1399. height:681px;
  1400. display:flex;
  1401. }
  1402. #u41582 .text {
  1403. position:absolute;
  1404. align-self:center;
  1405. padding:2px 2px 2px 2px;
  1406. box-sizing:border-box;
  1407. width:100%;
  1408. }
  1409. #u41582_text {
  1410. border-width:0px;
  1411. word-wrap:break-word;
  1412. text-transform:none;
  1413. visibility:hidden;
  1414. }
  1415. #u41583 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:0px;
  1419. top:0px;
  1420. width:0px;
  1421. height:0px;
  1422. }
  1423. #u41584_img {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:24px;
  1429. height:24px;
  1430. }
  1431. #u41584 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:251px;
  1435. top:792px;
  1436. width:24px;
  1437. height:24px;
  1438. display:flex;
  1439. font-size:8px;
  1440. }
  1441. #u41584 .text {
  1442. position:absolute;
  1443. align-self:center;
  1444. padding:2px 2px 2px 2px;
  1445. box-sizing:border-box;
  1446. width:100%;
  1447. }
  1448. #u41584_text {
  1449. border-width:0px;
  1450. word-wrap:break-word;
  1451. text-transform:none;
  1452. }
  1453. #u41585_div {
  1454. border-width:0px;
  1455. position:absolute;
  1456. left:0px;
  1457. top:0px;
  1458. width:37px;
  1459. height:17px;
  1460. background:inherit;
  1461. background-color:rgba(255, 255, 255, 0);
  1462. border:none;
  1463. border-radius:0px;
  1464. -moz-box-shadow:none;
  1465. -webkit-box-shadow:none;
  1466. box-shadow:none;
  1467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1468. font-weight:400;
  1469. font-style:normal;
  1470. font-size:12px;
  1471. }
  1472. #u41585 {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:245px;
  1476. top:817px;
  1477. width:37px;
  1478. height:17px;
  1479. display:flex;
  1480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1481. font-weight:400;
  1482. font-style:normal;
  1483. font-size:12px;
  1484. }
  1485. #u41585 .text {
  1486. position:absolute;
  1487. align-self:flex-start;
  1488. padding:0px 0px 0px 0px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u41585_text {
  1493. border-width:0px;
  1494. white-space:nowrap;
  1495. text-transform:none;
  1496. }
  1497. #u41586 {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:0px;
  1503. height:0px;
  1504. }
  1505. #u41587_img {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:0px;
  1509. top:0px;
  1510. width:24px;
  1511. height:24px;
  1512. }
  1513. #u41587 {
  1514. border-width:0px;
  1515. position:absolute;
  1516. left:157px;
  1517. top:792px;
  1518. width:24px;
  1519. height:24px;
  1520. display:flex;
  1521. font-size:8px;
  1522. }
  1523. #u41587 .text {
  1524. position:absolute;
  1525. align-self:center;
  1526. padding:2px 2px 2px 2px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u41587_text {
  1531. border-width:0px;
  1532. word-wrap:break-word;
  1533. text-transform:none;
  1534. }
  1535. #u41588_div {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:37px;
  1541. height:17px;
  1542. background:inherit;
  1543. background-color:rgba(255, 255, 255, 0);
  1544. border:none;
  1545. border-radius:0px;
  1546. -moz-box-shadow:none;
  1547. -webkit-box-shadow:none;
  1548. box-shadow:none;
  1549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1550. font-weight:400;
  1551. font-style:normal;
  1552. font-size:12px;
  1553. }
  1554. #u41588 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:151px;
  1558. top:817px;
  1559. width:37px;
  1560. height:17px;
  1561. display:flex;
  1562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1563. font-weight:400;
  1564. font-style:normal;
  1565. font-size:12px;
  1566. }
  1567. #u41588 .text {
  1568. position:absolute;
  1569. align-self:flex-start;
  1570. padding:0px 0px 0px 0px;
  1571. box-sizing:border-box;
  1572. width:100%;
  1573. }
  1574. #u41588_text {
  1575. border-width:0px;
  1576. white-space:nowrap;
  1577. text-transform:none;
  1578. }
  1579. #u41589_div {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:0px;
  1583. top:0px;
  1584. width:375px;
  1585. height:732px;
  1586. background:inherit;
  1587. background-color:rgba(242, 242, 242, 0.996078431372549);
  1588. border:none;
  1589. border-top:0px;
  1590. border-radius:28px;
  1591. border-top-left-radius:0px;
  1592. border-top-right-radius:0px;
  1593. -moz-box-shadow:none;
  1594. -webkit-box-shadow:none;
  1595. box-shadow:none;
  1596. }
  1597. #u41589 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:29px;
  1601. top:107px;
  1602. width:375px;
  1603. height:732px;
  1604. display:flex;
  1605. }
  1606. #u41589 .text {
  1607. position:absolute;
  1608. align-self:center;
  1609. padding:2px 2px 2px 2px;
  1610. box-sizing:border-box;
  1611. width:100%;
  1612. }
  1613. #u41589_text {
  1614. border-width:0px;
  1615. word-wrap:break-word;
  1616. text-transform:none;
  1617. visibility:hidden;
  1618. }
  1619. #u41590 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:0px;
  1623. top:0px;
  1624. width:0px;
  1625. height:0px;
  1626. }
  1627. #u41591_div {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:375px;
  1633. height:229px;
  1634. background:inherit;
  1635. background-color:rgba(255, 255, 255, 1);
  1636. border:none;
  1637. border-left:0px;
  1638. border-top:0px;
  1639. border-right:0px;
  1640. border-radius:0px;
  1641. border-bottom-right-radius:0px;
  1642. border-bottom-left-radius:0px;
  1643. -moz-box-shadow:none;
  1644. -webkit-box-shadow:none;
  1645. box-shadow:none;
  1646. }
  1647. #u41591 {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:29px;
  1651. top:108px;
  1652. width:375px;
  1653. height:229px;
  1654. display:flex;
  1655. }
  1656. #u41591 .text {
  1657. position:absolute;
  1658. align-self:center;
  1659. padding:2px 2px 2px 2px;
  1660. box-sizing:border-box;
  1661. width:100%;
  1662. }
  1663. #u41591_text {
  1664. border-width:0px;
  1665. word-wrap:break-word;
  1666. text-transform:none;
  1667. visibility:hidden;
  1668. }
  1669. #u41592_div {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:43px;
  1675. height:20px;
  1676. background:inherit;
  1677. background-color:rgba(255, 255, 255, 0);
  1678. border:none;
  1679. border-radius:0px;
  1680. -moz-box-shadow:none;
  1681. -webkit-box-shadow:none;
  1682. box-shadow:none;
  1683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1684. font-weight:400;
  1685. font-style:normal;
  1686. color:#0089FE;
  1687. }
  1688. #u41592 {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:342px;
  1692. top:124px;
  1693. width:43px;
  1694. height:20px;
  1695. display:flex;
  1696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1697. font-weight:400;
  1698. font-style:normal;
  1699. color:#0089FE;
  1700. }
  1701. #u41592 .text {
  1702. position:absolute;
  1703. align-self:flex-start;
  1704. padding:0px 0px 0px 0px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u41592_text {
  1709. border-width:0px;
  1710. white-space:nowrap;
  1711. text-transform:none;
  1712. }
  1713. #u41593_div {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:0px;
  1717. top:0px;
  1718. width:180px;
  1719. height:30px;
  1720. background:inherit;
  1721. background-color:rgba(255, 255, 255, 0);
  1722. border:none;
  1723. border-left:0px;
  1724. border-top:0px;
  1725. border-right:0px;
  1726. border-radius:0px;
  1727. border-bottom-right-radius:0px;
  1728. border-bottom-left-radius:0px;
  1729. -moz-box-shadow:none;
  1730. -webkit-box-shadow:none;
  1731. box-shadow:none;
  1732. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1733. font-weight:500;
  1734. font-style:normal;
  1735. font-size:14px;
  1736. line-height:30px;
  1737. }
  1738. #u41593 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:42px;
  1742. top:118px;
  1743. width:180px;
  1744. height:30px;
  1745. display:flex;
  1746. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1747. font-weight:500;
  1748. font-style:normal;
  1749. font-size:14px;
  1750. line-height:30px;
  1751. }
  1752. #u41593 .text {
  1753. position:absolute;
  1754. align-self:flex-start;
  1755. padding:0px 0px 0px 0px;
  1756. box-sizing:border-box;
  1757. width:100%;
  1758. }
  1759. #u41593_text {
  1760. border-width:0px;
  1761. white-space:nowrap;
  1762. text-transform:none;
  1763. }
  1764. #u41594_div {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:107px;
  1770. height:25px;
  1771. background:inherit;
  1772. background-color:rgba(255, 255, 255, 0);
  1773. border:none;
  1774. border-left:0px;
  1775. border-top:0px;
  1776. border-right:0px;
  1777. border-radius:0px;
  1778. border-bottom-right-radius:0px;
  1779. border-bottom-left-radius:0px;
  1780. -moz-box-shadow:none;
  1781. -webkit-box-shadow:none;
  1782. box-shadow:none;
  1783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1784. font-weight:400;
  1785. font-style:normal;
  1786. font-size:12px;
  1787. line-height:25px;
  1788. }
  1789. #u41594 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:42px;
  1793. top:148px;
  1794. width:107px;
  1795. height:25px;
  1796. display:flex;
  1797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1798. font-weight:400;
  1799. font-style:normal;
  1800. font-size:12px;
  1801. line-height:25px;
  1802. }
  1803. #u41594 .text {
  1804. position:absolute;
  1805. align-self:flex-start;
  1806. padding:0px 0px 0px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u41594_text {
  1811. border-width:0px;
  1812. white-space:nowrap;
  1813. text-transform:none;
  1814. }
  1815. #u41595_div {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:85px;
  1821. height:30px;
  1822. background:inherit;
  1823. background-color:rgba(255, 255, 255, 0);
  1824. border:none;
  1825. border-left:0px;
  1826. border-top:0px;
  1827. border-right:0px;
  1828. border-radius:0px;
  1829. border-bottom-right-radius:0px;
  1830. border-bottom-left-radius:0px;
  1831. -moz-box-shadow:none;
  1832. -webkit-box-shadow:none;
  1833. box-shadow:none;
  1834. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1835. font-weight:500;
  1836. font-style:normal;
  1837. font-size:12px;
  1838. line-height:30px;
  1839. }
  1840. #u41595 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:57px;
  1844. top:183px;
  1845. width:85px;
  1846. height:30px;
  1847. display:flex;
  1848. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1849. font-weight:500;
  1850. font-style:normal;
  1851. font-size:12px;
  1852. line-height:30px;
  1853. }
  1854. #u41595 .text {
  1855. position:absolute;
  1856. align-self:center;
  1857. padding:0px 0px 0px 0px;
  1858. box-sizing:border-box;
  1859. width:100%;
  1860. }
  1861. #u41595_text {
  1862. border-width:0px;
  1863. white-space:nowrap;
  1864. text-transform:none;
  1865. }
  1866. #u41596_div {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:92px;
  1872. height:30px;
  1873. background:inherit;
  1874. background-color:rgba(255, 255, 255, 0);
  1875. border:none;
  1876. border-left:0px;
  1877. border-top:0px;
  1878. border-right:0px;
  1879. border-radius:0px;
  1880. border-bottom-right-radius:0px;
  1881. border-bottom-left-radius:0px;
  1882. -moz-box-shadow:none;
  1883. -webkit-box-shadow:none;
  1884. box-shadow:none;
  1885. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1886. font-weight:500;
  1887. font-style:normal;
  1888. font-size:12px;
  1889. line-height:30px;
  1890. }
  1891. #u41596 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:57px;
  1895. top:223px;
  1896. width:92px;
  1897. height:30px;
  1898. display:flex;
  1899. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1900. font-weight:500;
  1901. font-style:normal;
  1902. font-size:12px;
  1903. line-height:30px;
  1904. }
  1905. #u41596 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:0px 0px 0px 0px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u41596_text {
  1913. border-width:0px;
  1914. white-space:nowrap;
  1915. text-transform:none;
  1916. }
  1917. #u41597_div {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:333px;
  1923. height:60px;
  1924. background:inherit;
  1925. background-color:rgba(255, 255, 255, 0);
  1926. border:none;
  1927. border-left:0px;
  1928. border-top:0px;
  1929. border-right:0px;
  1930. border-radius:0px;
  1931. border-bottom-right-radius:0px;
  1932. border-bottom-left-radius:0px;
  1933. -moz-box-shadow:none;
  1934. -webkit-box-shadow:none;
  1935. box-shadow:none;
  1936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1937. font-weight:400;
  1938. font-style:normal;
  1939. font-size:12px;
  1940. color:#7F7F7F;
  1941. line-height:20px;
  1942. }
  1943. #u41597 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:57px;
  1947. top:253px;
  1948. width:333px;
  1949. height:60px;
  1950. display:flex;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:12px;
  1955. color:#7F7F7F;
  1956. line-height:20px;
  1957. }
  1958. #u41597 .text {
  1959. position:absolute;
  1960. align-self:flex-start;
  1961. padding:0px 0px 0px 0px;
  1962. box-sizing:border-box;
  1963. width:100%;
  1964. }
  1965. #u41597_text {
  1966. border-width:0px;
  1967. word-wrap:break-word;
  1968. text-transform:none;
  1969. }
  1970. #u41598 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:0px;
  1976. height:0px;
  1977. }
  1978. #u41599_img {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:11px;
  1984. height:11px;
  1985. }
  1986. #u41599 {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:42px;
  1990. top:192px;
  1991. width:11px;
  1992. height:11px;
  1993. display:flex;
  1994. }
  1995. #u41599 .text {
  1996. position:absolute;
  1997. align-self:center;
  1998. padding:2px 2px 2px 2px;
  1999. box-sizing:border-box;
  2000. width:100%;
  2001. }
  2002. #u41599_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. visibility:hidden;
  2007. }
  2008. #u41600_img {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:2px;
  2014. height:40px;
  2015. }
  2016. #u41600 {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:47px;
  2020. top:203px;
  2021. width:1px;
  2022. height:39px;
  2023. display:flex;
  2024. }
  2025. #u41600 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 2px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u41600_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. visibility:hidden;
  2037. }
  2038. #u41601_img {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:11px;
  2044. height:11px;
  2045. }
  2046. #u41601 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:42px;
  2050. top:233px;
  2051. width:11px;
  2052. height:11px;
  2053. display:flex;
  2054. }
  2055. #u41601 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:2px 2px 2px 2px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u41601_text {
  2063. border-width:0px;
  2064. word-wrap:break-word;
  2065. text-transform:none;
  2066. visibility:hidden;
  2067. }
  2068. #u41602_div {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:375px;
  2074. height:41px;
  2075. background:inherit;
  2076. background-color:rgba(255, 255, 255, 1);
  2077. box-sizing:border-box;
  2078. border-width:1px;
  2079. border-style:solid;
  2080. border-color:rgba(215, 215, 215, 1);
  2081. border-left:0px;
  2082. border-top:0px;
  2083. border-right:0px;
  2084. border-radius:0px;
  2085. border-bottom-right-radius:0px;
  2086. border-bottom-left-radius:0px;
  2087. -moz-box-shadow:none;
  2088. -webkit-box-shadow:none;
  2089. box-shadow:none;
  2090. }
  2091. #u41602 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:29px;
  2095. top:67px;
  2096. width:375px;
  2097. height:41px;
  2098. display:flex;
  2099. }
  2100. #u41602 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:2px 2px 2px 2px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u41602_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. visibility:hidden;
  2112. }
  2113. #u41603 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:0px;
  2119. height:0px;
  2120. }
  2121. #u41604_div {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:88px;
  2127. height:32px;
  2128. background:inherit;
  2129. background-color:rgba(255, 255, 255, 1);
  2130. box-sizing:border-box;
  2131. border-width:1px;
  2132. border-style:solid;
  2133. border-color:rgba(242, 242, 242, 1);
  2134. border-radius:33px;
  2135. -moz-box-shadow:none;
  2136. -webkit-box-shadow:none;
  2137. box-shadow:none;
  2138. }
  2139. #u41604 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:309px;
  2143. top:71px;
  2144. width:88px;
  2145. height:32px;
  2146. display:flex;
  2147. }
  2148. #u41604 .text {
  2149. position:absolute;
  2150. align-self:center;
  2151. padding:2px 2px 2px 2px;
  2152. box-sizing:border-box;
  2153. width:100%;
  2154. }
  2155. #u41604_text {
  2156. border-width:0px;
  2157. word-wrap:break-word;
  2158. text-transform:none;
  2159. visibility:hidden;
  2160. }
  2161. #u41605 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:0px;
  2167. height:0px;
  2168. }
  2169. #u41606_img {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:18px;
  2175. height:18px;
  2176. }
  2177. #u41606 {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:372px;
  2181. top:78px;
  2182. width:18px;
  2183. height:18px;
  2184. display:flex;
  2185. }
  2186. #u41606 .text {
  2187. position:absolute;
  2188. align-self:center;
  2189. padding:2px 2px 2px 2px;
  2190. box-sizing:border-box;
  2191. width:100%;
  2192. }
  2193. #u41606_text {
  2194. border-width:0px;
  2195. word-wrap:break-word;
  2196. text-transform:none;
  2197. visibility:hidden;
  2198. }
  2199. #u41607_img {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:0px;
  2203. top:0px;
  2204. width:6px;
  2205. height:6px;
  2206. }
  2207. #u41607 {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:378px;
  2211. top:84px;
  2212. width:6px;
  2213. height:6px;
  2214. display:flex;
  2215. }
  2216. #u41607 .text {
  2217. position:absolute;
  2218. align-self:center;
  2219. padding:2px 2px 2px 2px;
  2220. box-sizing:border-box;
  2221. width:100%;
  2222. }
  2223. #u41607_text {
  2224. border-width:0px;
  2225. word-wrap:break-word;
  2226. text-transform:none;
  2227. visibility:hidden;
  2228. }
  2229. #u41608 {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:0px;
  2235. height:0px;
  2236. }
  2237. #u41609_img {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:5px;
  2243. height:5px;
  2244. }
  2245. #u41609 {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:323px;
  2249. top:85px;
  2250. width:5px;
  2251. height:5px;
  2252. display:flex;
  2253. }
  2254. #u41609 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 2px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u41609_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. visibility:hidden;
  2266. }
  2267. #u41610_img {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:5px;
  2273. height:5px;
  2274. }
  2275. #u41610 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:339px;
  2279. top:85px;
  2280. width:5px;
  2281. height:5px;
  2282. display:flex;
  2283. }
  2284. #u41610 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:2px 2px 2px 2px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u41610_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. visibility:hidden;
  2296. }
  2297. #u41611_img {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:7px;
  2303. height:7px;
  2304. }
  2305. #u41611 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:330px;
  2309. top:84px;
  2310. width:7px;
  2311. height:7px;
  2312. display:flex;
  2313. }
  2314. #u41611 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 2px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u41611_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. visibility:hidden;
  2326. }
  2327. #u41612_img {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:19px;
  2333. height:2px;
  2334. }
  2335. #u41612 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:347px;
  2339. top:87px;
  2340. width:18px;
  2341. height:1px;
  2342. display:flex;
  2343. -webkit-transform:rotate(90deg);
  2344. -moz-transform:rotate(90deg);
  2345. -ms-transform:rotate(90deg);
  2346. transform:rotate(90deg);
  2347. }
  2348. #u41612 .text {
  2349. position:absolute;
  2350. align-self:center;
  2351. padding:2px 2px 2px 2px;
  2352. box-sizing:border-box;
  2353. width:100%;
  2354. }
  2355. #u41612_text {
  2356. border-width:0px;
  2357. word-wrap:break-word;
  2358. text-transform:none;
  2359. visibility:hidden;
  2360. }
  2361. #u41613_div {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:12px;
  2367. height:12px;
  2368. background:inherit;
  2369. background-color:rgba(255, 255, 255, 0);
  2370. box-sizing:border-box;
  2371. border-width:2px;
  2372. border-style:solid;
  2373. border-color:rgba(51, 51, 51, 1);
  2374. border-right:0px;
  2375. border-bottom:0px;
  2376. border-radius:0px;
  2377. border-top-right-radius:0px;
  2378. border-bottom-left-radius:0px;
  2379. -moz-box-shadow:none;
  2380. -webkit-box-shadow:none;
  2381. box-shadow:none;
  2382. }
  2383. #u41613 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:44px;
  2387. top:81px;
  2388. width:12px;
  2389. height:12px;
  2390. display:flex;
  2391. -webkit-transform:rotate(315deg);
  2392. -moz-transform:rotate(315deg);
  2393. -ms-transform:rotate(315deg);
  2394. transform:rotate(315deg);
  2395. }
  2396. #u41613 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 2px 2px 2px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u41613_text {
  2404. border-width:0px;
  2405. word-wrap:break-word;
  2406. text-transform:none;
  2407. visibility:hidden;
  2408. }
  2409. #u41614_div {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:73px;
  2415. height:25px;
  2416. background:inherit;
  2417. background-color:rgba(255, 255, 255, 0);
  2418. border:none;
  2419. border-radius:0px;
  2420. -moz-box-shadow:none;
  2421. -webkit-box-shadow:none;
  2422. box-shadow:none;
  2423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2424. font-weight:400;
  2425. font-style:normal;
  2426. font-size:18px;
  2427. }
  2428. #u41614 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:64px;
  2432. top:75px;
  2433. width:73px;
  2434. height:25px;
  2435. display:flex;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:18px;
  2440. }
  2441. #u41614 .text {
  2442. position:absolute;
  2443. align-self:flex-start;
  2444. padding:0px 0px 0px 0px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u41614_text {
  2449. border-width:0px;
  2450. white-space:nowrap;
  2451. text-transform:none;
  2452. }
  2453. #u41615 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:0px;
  2459. height:0px;
  2460. }
  2461. #u41616_div {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:375px;
  2467. height:196px;
  2468. background:inherit;
  2469. background-color:rgba(255, 255, 255, 1);
  2470. border:none;
  2471. border-left:0px;
  2472. border-right:0px;
  2473. border-radius:0px;
  2474. border-top-left-radius:0px;
  2475. border-top-right-radius:0px;
  2476. border-bottom-right-radius:0px;
  2477. border-bottom-left-radius:0px;
  2478. -moz-box-shadow:none;
  2479. -webkit-box-shadow:none;
  2480. box-shadow:none;
  2481. }
  2482. #u41616 {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:29px;
  2486. top:583px;
  2487. width:375px;
  2488. height:196px;
  2489. display:flex;
  2490. }
  2491. #u41616 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:2px 2px 2px 2px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u41616_text {
  2499. border-width:0px;
  2500. word-wrap:break-word;
  2501. text-transform:none;
  2502. visibility:hidden;
  2503. }
  2504. #u41617_div {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:57px;
  2510. height:30px;
  2511. background:inherit;
  2512. background-color:rgba(255, 255, 255, 0);
  2513. border:none;
  2514. border-left:0px;
  2515. border-top:0px;
  2516. border-right:0px;
  2517. border-radius:0px;
  2518. border-bottom-right-radius:0px;
  2519. border-bottom-left-radius:0px;
  2520. -moz-box-shadow:none;
  2521. -webkit-box-shadow:none;
  2522. box-shadow:none;
  2523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2524. font-weight:400;
  2525. font-style:normal;
  2526. font-size:14px;
  2527. line-height:30px;
  2528. }
  2529. #u41617 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:53px;
  2533. top:593px;
  2534. width:57px;
  2535. height:30px;
  2536. display:flex;
  2537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2538. font-weight:400;
  2539. font-style:normal;
  2540. font-size:14px;
  2541. line-height:30px;
  2542. }
  2543. #u41617 .text {
  2544. position:absolute;
  2545. align-self:flex-start;
  2546. padding:0px 0px 0px 0px;
  2547. box-sizing:border-box;
  2548. width:100%;
  2549. }
  2550. #u41617_text {
  2551. border-width:0px;
  2552. white-space:nowrap;
  2553. text-transform:none;
  2554. }
  2555. #u41618_div {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:97px;
  2561. height:30px;
  2562. background:inherit;
  2563. background-color:rgba(255, 255, 255, 0);
  2564. border:none;
  2565. border-left:0px;
  2566. border-top:0px;
  2567. border-right:0px;
  2568. border-radius:0px;
  2569. border-bottom-right-radius:0px;
  2570. border-bottom-left-radius:0px;
  2571. -moz-box-shadow:none;
  2572. -webkit-box-shadow:none;
  2573. box-shadow:none;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:12px;
  2578. color:#0089FE;
  2579. line-height:30px;
  2580. }
  2581. #u41618 {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:68px;
  2585. top:629px;
  2586. width:97px;
  2587. height:30px;
  2588. display:flex;
  2589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. font-size:12px;
  2593. color:#0089FE;
  2594. line-height:30px;
  2595. }
  2596. #u41618 .text {
  2597. position:absolute;
  2598. align-self:flex-start;
  2599. padding:0px 0px 0px 0px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u41618_text {
  2604. border-width:0px;
  2605. white-space:nowrap;
  2606. text-transform:none;
  2607. }
  2608. #u41619 {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:0px;
  2614. height:0px;
  2615. }
  2616. #u41620_div {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:375px;
  2622. height:60px;
  2623. background:inherit;
  2624. background-color:rgba(255, 255, 255, 1);
  2625. box-sizing:border-box;
  2626. border-width:1px;
  2627. border-style:solid;
  2628. border-color:rgba(242, 242, 242, 1);
  2629. border-radius:20px;
  2630. border-top-left-radius:0px;
  2631. border-top-right-radius:0px;
  2632. -moz-box-shadow:none;
  2633. -webkit-box-shadow:none;
  2634. box-shadow:none;
  2635. }
  2636. #u41620 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:29px;
  2640. top:779px;
  2641. width:375px;
  2642. height:60px;
  2643. display:flex;
  2644. }
  2645. #u41620 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 2px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u41620_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. visibility:hidden;
  2657. }
  2658. #u41621_div {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:342px;
  2664. height:40px;
  2665. background:inherit;
  2666. background-color:rgba(255, 255, 255, 1);
  2667. box-sizing:border-box;
  2668. border-width:1px;
  2669. border-style:solid;
  2670. border-color:rgba(121, 121, 121, 1);
  2671. border-radius:63px;
  2672. -moz-box-shadow:none;
  2673. -webkit-box-shadow:none;
  2674. box-shadow:none;
  2675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2676. font-weight:400;
  2677. font-style:normal;
  2678. font-size:14px;
  2679. color:#555555;
  2680. }
  2681. #u41621 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:48px;
  2685. top:789px;
  2686. width:342px;
  2687. height:40px;
  2688. display:flex;
  2689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2690. font-weight:400;
  2691. font-style:normal;
  2692. font-size:14px;
  2693. color:#555555;
  2694. }
  2695. #u41621 .text {
  2696. position:absolute;
  2697. align-self:center;
  2698. padding:2px 2px 2px 2px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u41621_text {
  2703. border-width:0px;
  2704. word-wrap:break-word;
  2705. text-transform:none;
  2706. }
  2707. #u41622 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:0px;
  2713. height:0px;
  2714. }
  2715. #u41623 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:0px;
  2721. height:0px;
  2722. }
  2723. #u41624_div {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:375px;
  2729. height:125px;
  2730. background:inherit;
  2731. background-color:rgba(255, 255, 255, 1);
  2732. border:none;
  2733. border-left:0px;
  2734. border-top:0px;
  2735. border-right:0px;
  2736. border-radius:0px;
  2737. border-bottom-right-radius:0px;
  2738. border-bottom-left-radius:0px;
  2739. -moz-box-shadow:none;
  2740. -webkit-box-shadow:none;
  2741. box-shadow:none;
  2742. }
  2743. #u41624 {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:494px;
  2747. top:-436px;
  2748. width:375px;
  2749. height:125px;
  2750. display:flex;
  2751. }
  2752. #u41624 .text {
  2753. position:absolute;
  2754. align-self:center;
  2755. padding:2px 2px 2px 2px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u41624_text {
  2760. border-width:0px;
  2761. word-wrap:break-word;
  2762. text-transform:none;
  2763. visibility:hidden;
  2764. }
  2765. #u41625_div {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:43px;
  2771. height:20px;
  2772. background:inherit;
  2773. background-color:rgba(255, 255, 255, 0);
  2774. border:none;
  2775. border-radius:0px;
  2776. -moz-box-shadow:none;
  2777. -webkit-box-shadow:none;
  2778. box-shadow:none;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. color:#0089FE;
  2783. }
  2784. #u41625 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:807px;
  2788. top:-420px;
  2789. width:43px;
  2790. height:20px;
  2791. display:flex;
  2792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. color:#0089FE;
  2796. }
  2797. #u41625 .text {
  2798. position:absolute;
  2799. align-self:flex-start;
  2800. padding:0px 0px 0px 0px;
  2801. box-sizing:border-box;
  2802. width:100%;
  2803. }
  2804. #u41625_text {
  2805. border-width:0px;
  2806. white-space:nowrap;
  2807. text-transform:none;
  2808. }
  2809. #u41626_div {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:124px;
  2815. height:30px;
  2816. background:inherit;
  2817. background-color:rgba(255, 255, 255, 0);
  2818. border:none;
  2819. border-left:0px;
  2820. border-top:0px;
  2821. border-right:0px;
  2822. border-radius:0px;
  2823. border-bottom-right-radius:0px;
  2824. border-bottom-left-radius:0px;
  2825. -moz-box-shadow:none;
  2826. -webkit-box-shadow:none;
  2827. box-shadow:none;
  2828. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2829. font-weight:500;
  2830. font-style:normal;
  2831. font-size:14px;
  2832. line-height:30px;
  2833. }
  2834. #u41626 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:507px;
  2838. top:-426px;
  2839. width:124px;
  2840. height:30px;
  2841. display:flex;
  2842. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2843. font-weight:500;
  2844. font-style:normal;
  2845. font-size:14px;
  2846. line-height:30px;
  2847. }
  2848. #u41626 .text {
  2849. position:absolute;
  2850. align-self:flex-start;
  2851. padding:0px 0px 0px 0px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u41626_text {
  2856. border-width:0px;
  2857. white-space:nowrap;
  2858. text-transform:none;
  2859. }
  2860. #u41627_div {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:167px;
  2866. height:75px;
  2867. background:inherit;
  2868. background-color:rgba(255, 255, 255, 0);
  2869. border:none;
  2870. border-left:0px;
  2871. border-top:0px;
  2872. border-right:0px;
  2873. border-radius:0px;
  2874. border-bottom-right-radius:0px;
  2875. border-bottom-left-radius:0px;
  2876. -moz-box-shadow:none;
  2877. -webkit-box-shadow:none;
  2878. box-shadow:none;
  2879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:12px;
  2883. line-height:25px;
  2884. }
  2885. #u41627 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:507px;
  2889. top:-396px;
  2890. width:167px;
  2891. height:75px;
  2892. display:flex;
  2893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2894. font-weight:400;
  2895. font-style:normal;
  2896. font-size:12px;
  2897. line-height:25px;
  2898. }
  2899. #u41627 .text {
  2900. position:absolute;
  2901. align-self:flex-start;
  2902. padding:0px 0px 0px 0px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u41627_text {
  2907. border-width:0px;
  2908. white-space:nowrap;
  2909. text-transform:none;
  2910. }
  2911. #u41628 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:0px;
  2917. height:0px;
  2918. }
  2919. #u41629_div {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:375px;
  2925. height:180px;
  2926. background:inherit;
  2927. background-color:rgba(255, 255, 255, 1);
  2928. border:none;
  2929. border-top:0px;
  2930. border-bottom:0px;
  2931. border-radius:0px;
  2932. border-top-left-radius:0px;
  2933. border-top-right-radius:0px;
  2934. border-bottom-right-radius:0px;
  2935. border-bottom-left-radius:0px;
  2936. -moz-box-shadow:none;
  2937. -webkit-box-shadow:none;
  2938. box-shadow:none;
  2939. }
  2940. #u41629 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:494px;
  2944. top:-310px;
  2945. width:375px;
  2946. height:180px;
  2947. display:flex;
  2948. }
  2949. #u41629 .text {
  2950. position:absolute;
  2951. align-self:center;
  2952. padding:2px 2px 2px 2px;
  2953. box-sizing:border-box;
  2954. width:100%;
  2955. }
  2956. #u41629_text {
  2957. border-width:0px;
  2958. word-wrap:break-word;
  2959. text-transform:none;
  2960. visibility:hidden;
  2961. }
  2962. #u41630_div {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:150px;
  2968. height:150px;
  2969. background:inherit;
  2970. background-color:rgba(255, 255, 255, 0);
  2971. border:none;
  2972. border-left:0px;
  2973. border-top:0px;
  2974. border-right:0px;
  2975. border-radius:0px;
  2976. border-bottom-right-radius:0px;
  2977. border-bottom-left-radius:0px;
  2978. -moz-box-shadow:none;
  2979. -webkit-box-shadow:none;
  2980. box-shadow:none;
  2981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:12px;
  2985. line-height:25px;
  2986. }
  2987. #u41630 {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:518px;
  2991. top:-296px;
  2992. width:150px;
  2993. height:150px;
  2994. display:flex;
  2995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2996. font-weight:400;
  2997. font-style:normal;
  2998. font-size:12px;
  2999. line-height:25px;
  3000. }
  3001. #u41630 .text {
  3002. position:absolute;
  3003. align-self:flex-start;
  3004. padding:0px 0px 0px 0px;
  3005. box-sizing:border-box;
  3006. width:100%;
  3007. }
  3008. #u41630_text {
  3009. border-width:0px;
  3010. white-space:nowrap;
  3011. text-transform:none;
  3012. }
  3013. #u41631_div {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:375px;
  3019. height:41px;
  3020. background:inherit;
  3021. background-color:rgba(255, 255, 255, 1);
  3022. box-sizing:border-box;
  3023. border-width:1px;
  3024. border-style:solid;
  3025. border-color:rgba(215, 215, 215, 1);
  3026. border-left:0px;
  3027. border-top:0px;
  3028. border-right:0px;
  3029. border-radius:0px;
  3030. border-bottom-right-radius:0px;
  3031. border-bottom-left-radius:0px;
  3032. -moz-box-shadow:none;
  3033. -webkit-box-shadow:none;
  3034. box-shadow:none;
  3035. }
  3036. #u41631 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:494px;
  3040. top:67px;
  3041. width:375px;
  3042. height:41px;
  3043. display:flex;
  3044. }
  3045. #u41631 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:2px 2px 2px 2px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u41631_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. visibility:hidden;
  3057. }
  3058. #u41632 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:0px;
  3064. height:0px;
  3065. }
  3066. #u41633_div {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:88px;
  3072. height:32px;
  3073. background:inherit;
  3074. background-color:rgba(255, 255, 255, 1);
  3075. box-sizing:border-box;
  3076. border-width:1px;
  3077. border-style:solid;
  3078. border-color:rgba(242, 242, 242, 1);
  3079. border-radius:33px;
  3080. -moz-box-shadow:none;
  3081. -webkit-box-shadow:none;
  3082. box-shadow:none;
  3083. }
  3084. #u41633 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:774px;
  3088. top:71px;
  3089. width:88px;
  3090. height:32px;
  3091. display:flex;
  3092. }
  3093. #u41633 .text {
  3094. position:absolute;
  3095. align-self:center;
  3096. padding:2px 2px 2px 2px;
  3097. box-sizing:border-box;
  3098. width:100%;
  3099. }
  3100. #u41633_text {
  3101. border-width:0px;
  3102. word-wrap:break-word;
  3103. text-transform:none;
  3104. visibility:hidden;
  3105. }
  3106. #u41634 {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:0px;
  3112. height:0px;
  3113. }
  3114. #u41635_img {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:18px;
  3120. height:18px;
  3121. }
  3122. #u41635 {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:837px;
  3126. top:78px;
  3127. width:18px;
  3128. height:18px;
  3129. display:flex;
  3130. }
  3131. #u41635 .text {
  3132. position:absolute;
  3133. align-self:center;
  3134. padding:2px 2px 2px 2px;
  3135. box-sizing:border-box;
  3136. width:100%;
  3137. }
  3138. #u41635_text {
  3139. border-width:0px;
  3140. word-wrap:break-word;
  3141. text-transform:none;
  3142. visibility:hidden;
  3143. }
  3144. #u41636_img {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:6px;
  3150. height:6px;
  3151. }
  3152. #u41636 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:843px;
  3156. top:84px;
  3157. width:6px;
  3158. height:6px;
  3159. display:flex;
  3160. }
  3161. #u41636 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:2px 2px 2px 2px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u41636_text {
  3169. border-width:0px;
  3170. word-wrap:break-word;
  3171. text-transform:none;
  3172. visibility:hidden;
  3173. }
  3174. #u41637 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:0px;
  3180. height:0px;
  3181. }
  3182. #u41638_img {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:0px;
  3187. width:5px;
  3188. height:5px;
  3189. }
  3190. #u41638 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:788px;
  3194. top:85px;
  3195. width:5px;
  3196. height:5px;
  3197. display:flex;
  3198. }
  3199. #u41638 .text {
  3200. position:absolute;
  3201. align-self:center;
  3202. padding:2px 2px 2px 2px;
  3203. box-sizing:border-box;
  3204. width:100%;
  3205. }
  3206. #u41638_text {
  3207. border-width:0px;
  3208. word-wrap:break-word;
  3209. text-transform:none;
  3210. visibility:hidden;
  3211. }
  3212. #u41639_img {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:5px;
  3218. height:5px;
  3219. }
  3220. #u41639 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:804px;
  3224. top:85px;
  3225. width:5px;
  3226. height:5px;
  3227. display:flex;
  3228. }
  3229. #u41639 .text {
  3230. position:absolute;
  3231. align-self:center;
  3232. padding:2px 2px 2px 2px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u41639_text {
  3237. border-width:0px;
  3238. word-wrap:break-word;
  3239. text-transform:none;
  3240. visibility:hidden;
  3241. }
  3242. #u41640_img {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:0px;
  3247. width:7px;
  3248. height:7px;
  3249. }
  3250. #u41640 {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:795px;
  3254. top:84px;
  3255. width:7px;
  3256. height:7px;
  3257. display:flex;
  3258. }
  3259. #u41640 .text {
  3260. position:absolute;
  3261. align-self:center;
  3262. padding:2px 2px 2px 2px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u41640_text {
  3267. border-width:0px;
  3268. word-wrap:break-word;
  3269. text-transform:none;
  3270. visibility:hidden;
  3271. }
  3272. #u41641_img {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:19px;
  3278. height:2px;
  3279. }
  3280. #u41641 {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:812px;
  3284. top:87px;
  3285. width:18px;
  3286. height:1px;
  3287. display:flex;
  3288. -webkit-transform:rotate(90deg);
  3289. -moz-transform:rotate(90deg);
  3290. -ms-transform:rotate(90deg);
  3291. transform:rotate(90deg);
  3292. }
  3293. #u41641 .text {
  3294. position:absolute;
  3295. align-self:center;
  3296. padding:2px 2px 2px 2px;
  3297. box-sizing:border-box;
  3298. width:100%;
  3299. }
  3300. #u41641_text {
  3301. border-width:0px;
  3302. word-wrap:break-word;
  3303. text-transform:none;
  3304. visibility:hidden;
  3305. }
  3306. #u41642_div {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:12px;
  3312. height:12px;
  3313. background:inherit;
  3314. background-color:rgba(255, 255, 255, 0);
  3315. box-sizing:border-box;
  3316. border-width:2px;
  3317. border-style:solid;
  3318. border-color:rgba(51, 51, 51, 1);
  3319. border-right:0px;
  3320. border-bottom:0px;
  3321. border-radius:0px;
  3322. border-top-right-radius:0px;
  3323. border-bottom-left-radius:0px;
  3324. -moz-box-shadow:none;
  3325. -webkit-box-shadow:none;
  3326. box-shadow:none;
  3327. }
  3328. #u41642 {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:509px;
  3332. top:81px;
  3333. width:12px;
  3334. height:12px;
  3335. display:flex;
  3336. -webkit-transform:rotate(315deg);
  3337. -moz-transform:rotate(315deg);
  3338. -ms-transform:rotate(315deg);
  3339. transform:rotate(315deg);
  3340. }
  3341. #u41642 .text {
  3342. position:absolute;
  3343. align-self:center;
  3344. padding:2px 2px 2px 2px;
  3345. box-sizing:border-box;
  3346. width:100%;
  3347. }
  3348. #u41642_text {
  3349. border-width:0px;
  3350. word-wrap:break-word;
  3351. text-transform:none;
  3352. visibility:hidden;
  3353. }
  3354. #u41643_div {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:0px;
  3358. top:0px;
  3359. width:73px;
  3360. height:25px;
  3361. background:inherit;
  3362. background-color:rgba(255, 255, 255, 0);
  3363. border:none;
  3364. border-radius:0px;
  3365. -moz-box-shadow:none;
  3366. -webkit-box-shadow:none;
  3367. box-shadow:none;
  3368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:18px;
  3372. }
  3373. #u41643 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:529px;
  3377. top:75px;
  3378. width:73px;
  3379. height:25px;
  3380. display:flex;
  3381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3382. font-weight:400;
  3383. font-style:normal;
  3384. font-size:18px;
  3385. }
  3386. #u41643 .text {
  3387. position:absolute;
  3388. align-self:flex-start;
  3389. padding:0px 0px 0px 0px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u41643_text {
  3394. border-width:0px;
  3395. white-space:nowrap;
  3396. text-transform:none;
  3397. }
  3398. #u41645_img {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:433px;
  3404. height:865px;
  3405. }
  3406. #u41645 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:933px;
  3410. top:0px;
  3411. width:433px;
  3412. height:865px;
  3413. display:flex;
  3414. }
  3415. #u41645 .text {
  3416. position:absolute;
  3417. align-self:center;
  3418. padding:2px 2px 2px 2px;
  3419. box-sizing:border-box;
  3420. width:100%;
  3421. }
  3422. #u41645_text {
  3423. border-width:0px;
  3424. word-wrap:break-word;
  3425. text-transform:none;
  3426. visibility:hidden;
  3427. }
  3428. #u41646_div {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:375px;
  3434. height:40px;
  3435. background:inherit;
  3436. background-color:rgba(255, 255, 255, 1);
  3437. box-sizing:border-box;
  3438. border-width:1px;
  3439. border-style:solid;
  3440. border-color:rgba(215, 215, 215, 1);
  3441. border-left:0px;
  3442. border-top:0px;
  3443. border-right:0px;
  3444. border-radius:0px;
  3445. border-bottom-right-radius:0px;
  3446. border-bottom-left-radius:0px;
  3447. -moz-box-shadow:none;
  3448. -webkit-box-shadow:none;
  3449. box-shadow:none;
  3450. }
  3451. #u41646 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:962px;
  3455. top:67px;
  3456. width:375px;
  3457. height:40px;
  3458. display:flex;
  3459. }
  3460. #u41646 .text {
  3461. position:absolute;
  3462. align-self:center;
  3463. padding:2px 2px 2px 2px;
  3464. box-sizing:border-box;
  3465. width:100%;
  3466. }
  3467. #u41646_text {
  3468. border-width:0px;
  3469. word-wrap:break-word;
  3470. text-transform:none;
  3471. visibility:hidden;
  3472. }
  3473. #u41647 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:0px;
  3479. height:0px;
  3480. }
  3481. #u41648_div {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:88px;
  3487. height:32px;
  3488. background:inherit;
  3489. background-color:rgba(255, 255, 255, 1);
  3490. box-sizing:border-box;
  3491. border-width:1px;
  3492. border-style:solid;
  3493. border-color:rgba(242, 242, 242, 1);
  3494. border-radius:33px;
  3495. -moz-box-shadow:none;
  3496. -webkit-box-shadow:none;
  3497. box-shadow:none;
  3498. }
  3499. #u41648 {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:1242px;
  3503. top:71px;
  3504. width:88px;
  3505. height:32px;
  3506. display:flex;
  3507. }
  3508. #u41648 .text {
  3509. position:absolute;
  3510. align-self:center;
  3511. padding:2px 2px 2px 2px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u41648_text {
  3516. border-width:0px;
  3517. word-wrap:break-word;
  3518. text-transform:none;
  3519. visibility:hidden;
  3520. }
  3521. #u41649 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:0px;
  3525. top:0px;
  3526. width:0px;
  3527. height:0px;
  3528. }
  3529. #u41650_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:18px;
  3535. height:18px;
  3536. }
  3537. #u41650 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:1305px;
  3541. top:78px;
  3542. width:18px;
  3543. height:18px;
  3544. display:flex;
  3545. }
  3546. #u41650 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:2px 2px 2px 2px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u41650_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. visibility:hidden;
  3558. }
  3559. #u41651_img {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:6px;
  3565. height:6px;
  3566. }
  3567. #u41651 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:1311px;
  3571. top:84px;
  3572. width:6px;
  3573. height:6px;
  3574. display:flex;
  3575. }
  3576. #u41651 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 2px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u41651_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u41652 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:0px;
  3595. height:0px;
  3596. }
  3597. #u41653_img {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:5px;
  3603. height:5px;
  3604. }
  3605. #u41653 {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:1256px;
  3609. top:85px;
  3610. width:5px;
  3611. height:5px;
  3612. display:flex;
  3613. }
  3614. #u41653 .text {
  3615. position:absolute;
  3616. align-self:center;
  3617. padding:2px 2px 2px 2px;
  3618. box-sizing:border-box;
  3619. width:100%;
  3620. }
  3621. #u41653_text {
  3622. border-width:0px;
  3623. word-wrap:break-word;
  3624. text-transform:none;
  3625. visibility:hidden;
  3626. }
  3627. #u41654_img {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:5px;
  3633. height:5px;
  3634. }
  3635. #u41654 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:1272px;
  3639. top:85px;
  3640. width:5px;
  3641. height:5px;
  3642. display:flex;
  3643. }
  3644. #u41654 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 2px 2px 2px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u41654_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. visibility:hidden;
  3656. }
  3657. #u41655_img {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:7px;
  3663. height:7px;
  3664. }
  3665. #u41655 {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:1263px;
  3669. top:84px;
  3670. width:7px;
  3671. height:7px;
  3672. display:flex;
  3673. }
  3674. #u41655 .text {
  3675. position:absolute;
  3676. align-self:center;
  3677. padding:2px 2px 2px 2px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u41655_text {
  3682. border-width:0px;
  3683. word-wrap:break-word;
  3684. text-transform:none;
  3685. visibility:hidden;
  3686. }
  3687. #u41656_img {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:19px;
  3693. height:2px;
  3694. }
  3695. #u41656 {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:1280px;
  3699. top:87px;
  3700. width:18px;
  3701. height:1px;
  3702. display:flex;
  3703. -webkit-transform:rotate(90deg);
  3704. -moz-transform:rotate(90deg);
  3705. -ms-transform:rotate(90deg);
  3706. transform:rotate(90deg);
  3707. }
  3708. #u41656 .text {
  3709. position:absolute;
  3710. align-self:center;
  3711. padding:2px 2px 2px 2px;
  3712. box-sizing:border-box;
  3713. width:100%;
  3714. }
  3715. #u41656_text {
  3716. border-width:0px;
  3717. word-wrap:break-word;
  3718. text-transform:none;
  3719. visibility:hidden;
  3720. }
  3721. #u41657_img {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:375px;
  3727. height:44px;
  3728. }
  3729. #u41657 {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:962px;
  3733. top:24px;
  3734. width:375px;
  3735. height:44px;
  3736. display:flex;
  3737. }
  3738. #u41657 .text {
  3739. position:absolute;
  3740. align-self:center;
  3741. padding:2px 2px 2px 2px;
  3742. box-sizing:border-box;
  3743. width:100%;
  3744. }
  3745. #u41657_text {
  3746. border-width:0px;
  3747. word-wrap:break-word;
  3748. text-transform:none;
  3749. visibility:hidden;
  3750. }
  3751. #u41658_div {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:375px;
  3757. height:50px;
  3758. background:inherit;
  3759. background-color:rgba(255, 255, 255, 1);
  3760. box-sizing:border-box;
  3761. border-width:1px;
  3762. border-style:solid;
  3763. border-color:rgba(242, 242, 242, 1);
  3764. border-radius:26px;
  3765. border-top-left-radius:0px;
  3766. border-top-right-radius:0px;
  3767. -moz-box-shadow:none;
  3768. -webkit-box-shadow:none;
  3769. box-shadow:none;
  3770. }
  3771. #u41658 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:962px;
  3775. top:788px;
  3776. width:375px;
  3777. height:50px;
  3778. display:flex;
  3779. }
  3780. #u41658 .text {
  3781. position:absolute;
  3782. align-self:center;
  3783. padding:2px 2px 2px 2px;
  3784. box-sizing:border-box;
  3785. width:100%;
  3786. }
  3787. #u41658_text {
  3788. border-width:0px;
  3789. word-wrap:break-word;
  3790. text-transform:none;
  3791. visibility:hidden;
  3792. }
  3793. #u41659 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:0px;
  3799. height:0px;
  3800. }
  3801. #u41660_img {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:24px;
  3807. height:24px;
  3808. }
  3809. #u41660 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:1002px;
  3813. top:792px;
  3814. width:24px;
  3815. height:24px;
  3816. display:flex;
  3817. font-size:8px;
  3818. }
  3819. #u41660 .text {
  3820. position:absolute;
  3821. align-self:center;
  3822. padding:2px 2px 2px 2px;
  3823. box-sizing:border-box;
  3824. width:100%;
  3825. }
  3826. #u41660_text {
  3827. border-width:0px;
  3828. word-wrap:break-word;
  3829. text-transform:none;
  3830. }
  3831. #u41661_div {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:25px;
  3837. height:17px;
  3838. background:inherit;
  3839. background-color:rgba(255, 255, 255, 0);
  3840. border:none;
  3841. border-radius:0px;
  3842. -moz-box-shadow:none;
  3843. -webkit-box-shadow:none;
  3844. box-shadow:none;
  3845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:12px;
  3849. }
  3850. #u41661 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:1002px;
  3854. top:817px;
  3855. width:25px;
  3856. height:17px;
  3857. display:flex;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:12px;
  3862. }
  3863. #u41661 .text {
  3864. position:absolute;
  3865. align-self:flex-start;
  3866. padding:0px 0px 0px 0px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u41661_text {
  3871. border-width:0px;
  3872. white-space:nowrap;
  3873. text-transform:none;
  3874. }
  3875. #u41662 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:0px;
  3881. height:0px;
  3882. }
  3883. #u41663_img {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:0px;
  3888. width:24px;
  3889. height:24px;
  3890. }
  3891. #u41663 {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:1272px;
  3895. top:794px;
  3896. width:24px;
  3897. height:24px;
  3898. display:flex;
  3899. font-size:8px;
  3900. }
  3901. #u41663 .text {
  3902. position:absolute;
  3903. align-self:center;
  3904. padding:2px 2px 2px 2px;
  3905. box-sizing:border-box;
  3906. width:100%;
  3907. }
  3908. #u41663_text {
  3909. border-width:0px;
  3910. word-wrap:break-word;
  3911. text-transform:none;
  3912. }
  3913. #u41664_div {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:0px;
  3917. top:0px;
  3918. width:25px;
  3919. height:17px;
  3920. background:inherit;
  3921. background-color:rgba(255, 255, 255, 0);
  3922. border:none;
  3923. border-radius:0px;
  3924. -moz-box-shadow:none;
  3925. -webkit-box-shadow:none;
  3926. box-shadow:none;
  3927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3928. font-weight:400;
  3929. font-style:normal;
  3930. font-size:12px;
  3931. }
  3932. #u41664 {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:1272px;
  3936. top:819px;
  3937. width:25px;
  3938. height:17px;
  3939. display:flex;
  3940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3941. font-weight:400;
  3942. font-style:normal;
  3943. font-size:12px;
  3944. }
  3945. #u41664 .text {
  3946. position:absolute;
  3947. align-self:flex-start;
  3948. padding:0px 0px 0px 0px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u41664_text {
  3953. border-width:0px;
  3954. white-space:nowrap;
  3955. text-transform:none;
  3956. }
  3957. #u41665_div {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:375px;
  3963. height:681px;
  3964. background:inherit;
  3965. background-color:rgba(242, 242, 242, 0.462745098039216);
  3966. border:none;
  3967. border-radius:0px;
  3968. -moz-box-shadow:none;
  3969. -webkit-box-shadow:none;
  3970. box-shadow:none;
  3971. }
  3972. #u41665 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:962px;
  3976. top:107px;
  3977. width:375px;
  3978. height:681px;
  3979. display:flex;
  3980. }
  3981. #u41665 .text {
  3982. position:absolute;
  3983. align-self:center;
  3984. padding:2px 2px 2px 2px;
  3985. box-sizing:border-box;
  3986. width:100%;
  3987. }
  3988. #u41665_text {
  3989. border-width:0px;
  3990. word-wrap:break-word;
  3991. text-transform:none;
  3992. visibility:hidden;
  3993. }
  3994. #u41666 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:0px;
  4000. height:0px;
  4001. }
  4002. #u41667_img {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:24px;
  4008. height:24px;
  4009. }
  4010. #u41667 {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:1184px;
  4014. top:792px;
  4015. width:24px;
  4016. height:24px;
  4017. display:flex;
  4018. font-size:8px;
  4019. }
  4020. #u41667 .text {
  4021. position:absolute;
  4022. align-self:center;
  4023. padding:2px 2px 2px 2px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u41667_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. }
  4032. #u41668_div {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:37px;
  4038. height:17px;
  4039. background:inherit;
  4040. background-color:rgba(255, 255, 255, 0);
  4041. border:none;
  4042. border-radius:0px;
  4043. -moz-box-shadow:none;
  4044. -webkit-box-shadow:none;
  4045. box-shadow:none;
  4046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:12px;
  4050. }
  4051. #u41668 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:1178px;
  4055. top:817px;
  4056. width:37px;
  4057. height:17px;
  4058. display:flex;
  4059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:12px;
  4063. }
  4064. #u41668 .text {
  4065. position:absolute;
  4066. align-self:flex-start;
  4067. padding:0px 0px 0px 0px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u41668_text {
  4072. border-width:0px;
  4073. white-space:nowrap;
  4074. text-transform:none;
  4075. }
  4076. #u41669 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:0px;
  4082. height:0px;
  4083. }
  4084. #u41670_img {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:0px;
  4088. top:0px;
  4089. width:24px;
  4090. height:24px;
  4091. }
  4092. #u41670 {
  4093. border-width:0px;
  4094. position:absolute;
  4095. left:1090px;
  4096. top:792px;
  4097. width:24px;
  4098. height:24px;
  4099. display:flex;
  4100. font-size:8px;
  4101. }
  4102. #u41670 .text {
  4103. position:absolute;
  4104. align-self:center;
  4105. padding:2px 2px 2px 2px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u41670_text {
  4110. border-width:0px;
  4111. word-wrap:break-word;
  4112. text-transform:none;
  4113. }
  4114. #u41671_div {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:37px;
  4120. height:17px;
  4121. background:inherit;
  4122. background-color:rgba(255, 255, 255, 0);
  4123. border:none;
  4124. border-radius:0px;
  4125. -moz-box-shadow:none;
  4126. -webkit-box-shadow:none;
  4127. box-shadow:none;
  4128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4129. font-weight:400;
  4130. font-style:normal;
  4131. font-size:12px;
  4132. }
  4133. #u41671 {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:1084px;
  4137. top:817px;
  4138. width:37px;
  4139. height:17px;
  4140. display:flex;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:12px;
  4145. }
  4146. #u41671 .text {
  4147. position:absolute;
  4148. align-self:flex-start;
  4149. padding:0px 0px 0px 0px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u41671_text {
  4154. border-width:0px;
  4155. white-space:nowrap;
  4156. text-transform:none;
  4157. }
  4158. #u41672_div {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:375px;
  4164. height:732px;
  4165. background:inherit;
  4166. background-color:rgba(242, 242, 242, 0.996078431372549);
  4167. border:none;
  4168. border-top:0px;
  4169. border-radius:28px;
  4170. border-top-left-radius:0px;
  4171. border-top-right-radius:0px;
  4172. -moz-box-shadow:none;
  4173. -webkit-box-shadow:none;
  4174. box-shadow:none;
  4175. }
  4176. #u41672 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:962px;
  4180. top:107px;
  4181. width:375px;
  4182. height:732px;
  4183. display:flex;
  4184. }
  4185. #u41672 .text {
  4186. position:absolute;
  4187. align-self:center;
  4188. padding:2px 2px 2px 2px;
  4189. box-sizing:border-box;
  4190. width:100%;
  4191. }
  4192. #u41672_text {
  4193. border-width:0px;
  4194. word-wrap:break-word;
  4195. text-transform:none;
  4196. visibility:hidden;
  4197. }
  4198. #u41673_div {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:375px;
  4204. height:41px;
  4205. background:inherit;
  4206. background-color:rgba(255, 255, 255, 1);
  4207. box-sizing:border-box;
  4208. border-width:1px;
  4209. border-style:solid;
  4210. border-color:rgba(215, 215, 215, 1);
  4211. border-left:0px;
  4212. border-top:0px;
  4213. border-right:0px;
  4214. border-radius:0px;
  4215. border-bottom-right-radius:0px;
  4216. border-bottom-left-radius:0px;
  4217. -moz-box-shadow:none;
  4218. -webkit-box-shadow:none;
  4219. box-shadow:none;
  4220. }
  4221. #u41673 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:962px;
  4225. top:67px;
  4226. width:375px;
  4227. height:41px;
  4228. display:flex;
  4229. }
  4230. #u41673 .text {
  4231. position:absolute;
  4232. align-self:center;
  4233. padding:2px 2px 2px 2px;
  4234. box-sizing:border-box;
  4235. width:100%;
  4236. }
  4237. #u41673_text {
  4238. border-width:0px;
  4239. word-wrap:break-word;
  4240. text-transform:none;
  4241. visibility:hidden;
  4242. }
  4243. #u41674 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:0px;
  4247. top:0px;
  4248. width:0px;
  4249. height:0px;
  4250. }
  4251. #u41675_div {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:88px;
  4257. height:32px;
  4258. background:inherit;
  4259. background-color:rgba(255, 255, 255, 1);
  4260. box-sizing:border-box;
  4261. border-width:1px;
  4262. border-style:solid;
  4263. border-color:rgba(242, 242, 242, 1);
  4264. border-radius:33px;
  4265. -moz-box-shadow:none;
  4266. -webkit-box-shadow:none;
  4267. box-shadow:none;
  4268. }
  4269. #u41675 {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:1242px;
  4273. top:71px;
  4274. width:88px;
  4275. height:32px;
  4276. display:flex;
  4277. }
  4278. #u41675 .text {
  4279. position:absolute;
  4280. align-self:center;
  4281. padding:2px 2px 2px 2px;
  4282. box-sizing:border-box;
  4283. width:100%;
  4284. }
  4285. #u41675_text {
  4286. border-width:0px;
  4287. word-wrap:break-word;
  4288. text-transform:none;
  4289. visibility:hidden;
  4290. }
  4291. #u41676 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:0px;
  4297. height:0px;
  4298. }
  4299. #u41677_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:18px;
  4305. height:18px;
  4306. }
  4307. #u41677 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:1305px;
  4311. top:78px;
  4312. width:18px;
  4313. height:18px;
  4314. display:flex;
  4315. }
  4316. #u41677 .text {
  4317. position:absolute;
  4318. align-self:center;
  4319. padding:2px 2px 2px 2px;
  4320. box-sizing:border-box;
  4321. width:100%;
  4322. }
  4323. #u41677_text {
  4324. border-width:0px;
  4325. word-wrap:break-word;
  4326. text-transform:none;
  4327. visibility:hidden;
  4328. }
  4329. #u41678_img {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:6px;
  4335. height:6px;
  4336. }
  4337. #u41678 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:1311px;
  4341. top:84px;
  4342. width:6px;
  4343. height:6px;
  4344. display:flex;
  4345. }
  4346. #u41678 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 2px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u41678_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. visibility:hidden;
  4358. }
  4359. #u41679 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:0px;
  4365. height:0px;
  4366. }
  4367. #u41680_img {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:5px;
  4373. height:5px;
  4374. }
  4375. #u41680 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:1256px;
  4379. top:85px;
  4380. width:5px;
  4381. height:5px;
  4382. display:flex;
  4383. }
  4384. #u41680 .text {
  4385. position:absolute;
  4386. align-self:center;
  4387. padding:2px 2px 2px 2px;
  4388. box-sizing:border-box;
  4389. width:100%;
  4390. }
  4391. #u41680_text {
  4392. border-width:0px;
  4393. word-wrap:break-word;
  4394. text-transform:none;
  4395. visibility:hidden;
  4396. }
  4397. #u41681_img {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:0px;
  4401. top:0px;
  4402. width:5px;
  4403. height:5px;
  4404. }
  4405. #u41681 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:1272px;
  4409. top:85px;
  4410. width:5px;
  4411. height:5px;
  4412. display:flex;
  4413. }
  4414. #u41681 .text {
  4415. position:absolute;
  4416. align-self:center;
  4417. padding:2px 2px 2px 2px;
  4418. box-sizing:border-box;
  4419. width:100%;
  4420. }
  4421. #u41681_text {
  4422. border-width:0px;
  4423. word-wrap:break-word;
  4424. text-transform:none;
  4425. visibility:hidden;
  4426. }
  4427. #u41682_img {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:0px;
  4431. top:0px;
  4432. width:7px;
  4433. height:7px;
  4434. }
  4435. #u41682 {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:1263px;
  4439. top:84px;
  4440. width:7px;
  4441. height:7px;
  4442. display:flex;
  4443. }
  4444. #u41682 .text {
  4445. position:absolute;
  4446. align-self:center;
  4447. padding:2px 2px 2px 2px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u41682_text {
  4452. border-width:0px;
  4453. word-wrap:break-word;
  4454. text-transform:none;
  4455. visibility:hidden;
  4456. }
  4457. #u41683_img {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:0px;
  4461. top:0px;
  4462. width:19px;
  4463. height:2px;
  4464. }
  4465. #u41683 {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:1280px;
  4469. top:87px;
  4470. width:18px;
  4471. height:1px;
  4472. display:flex;
  4473. -webkit-transform:rotate(90deg);
  4474. -moz-transform:rotate(90deg);
  4475. -ms-transform:rotate(90deg);
  4476. transform:rotate(90deg);
  4477. }
  4478. #u41683 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:2px 2px 2px 2px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u41683_text {
  4486. border-width:0px;
  4487. word-wrap:break-word;
  4488. text-transform:none;
  4489. visibility:hidden;
  4490. }
  4491. #u41684_div {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:0px;
  4495. top:0px;
  4496. width:12px;
  4497. height:12px;
  4498. background:inherit;
  4499. background-color:rgba(255, 255, 255, 0);
  4500. box-sizing:border-box;
  4501. border-width:2px;
  4502. border-style:solid;
  4503. border-color:rgba(51, 51, 51, 1);
  4504. border-right:0px;
  4505. border-bottom:0px;
  4506. border-radius:0px;
  4507. border-top-right-radius:0px;
  4508. border-bottom-left-radius:0px;
  4509. -moz-box-shadow:none;
  4510. -webkit-box-shadow:none;
  4511. box-shadow:none;
  4512. }
  4513. #u41684 {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:977px;
  4517. top:81px;
  4518. width:12px;
  4519. height:12px;
  4520. display:flex;
  4521. -webkit-transform:rotate(315deg);
  4522. -moz-transform:rotate(315deg);
  4523. -ms-transform:rotate(315deg);
  4524. transform:rotate(315deg);
  4525. }
  4526. #u41684 .text {
  4527. position:absolute;
  4528. align-self:center;
  4529. padding:2px 2px 2px 2px;
  4530. box-sizing:border-box;
  4531. width:100%;
  4532. }
  4533. #u41684_text {
  4534. border-width:0px;
  4535. word-wrap:break-word;
  4536. text-transform:none;
  4537. visibility:hidden;
  4538. }
  4539. #u41685_div {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:0px;
  4543. top:0px;
  4544. width:73px;
  4545. height:25px;
  4546. background:inherit;
  4547. background-color:rgba(255, 255, 255, 0);
  4548. border:none;
  4549. border-radius:0px;
  4550. -moz-box-shadow:none;
  4551. -webkit-box-shadow:none;
  4552. box-shadow:none;
  4553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4554. font-weight:400;
  4555. font-style:normal;
  4556. font-size:18px;
  4557. }
  4558. #u41685 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:997px;
  4562. top:75px;
  4563. width:73px;
  4564. height:25px;
  4565. display:flex;
  4566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:18px;
  4570. }
  4571. #u41685 .text {
  4572. position:absolute;
  4573. align-self:flex-start;
  4574. padding:0px 0px 0px 0px;
  4575. box-sizing:border-box;
  4576. width:100%;
  4577. }
  4578. #u41685_text {
  4579. border-width:0px;
  4580. white-space:nowrap;
  4581. text-transform:none;
  4582. }
  4583. #u41687_img {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:433px;
  4589. height:865px;
  4590. }
  4591. #u41687 {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:2322px;
  4595. top:0px;
  4596. width:433px;
  4597. height:865px;
  4598. display:flex;
  4599. }
  4600. #u41687 .text {
  4601. position:absolute;
  4602. align-self:center;
  4603. padding:2px 2px 2px 2px;
  4604. box-sizing:border-box;
  4605. width:100%;
  4606. }
  4607. #u41687_text {
  4608. border-width:0px;
  4609. word-wrap:break-word;
  4610. text-transform:none;
  4611. visibility:hidden;
  4612. }
  4613. #u41688_div {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:375px;
  4619. height:40px;
  4620. background:inherit;
  4621. background-color:rgba(255, 255, 255, 1);
  4622. box-sizing:border-box;
  4623. border-width:1px;
  4624. border-style:solid;
  4625. border-color:rgba(215, 215, 215, 1);
  4626. border-left:0px;
  4627. border-top:0px;
  4628. border-right:0px;
  4629. border-radius:0px;
  4630. border-bottom-right-radius:0px;
  4631. border-bottom-left-radius:0px;
  4632. -moz-box-shadow:none;
  4633. -webkit-box-shadow:none;
  4634. box-shadow:none;
  4635. }
  4636. #u41688 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:2351px;
  4640. top:67px;
  4641. width:375px;
  4642. height:40px;
  4643. display:flex;
  4644. }
  4645. #u41688 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 2px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u41688_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. visibility:hidden;
  4657. }
  4658. #u41689 {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:0px;
  4664. height:0px;
  4665. }
  4666. #u41690_div {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:0px;
  4670. top:0px;
  4671. width:88px;
  4672. height:32px;
  4673. background:inherit;
  4674. background-color:rgba(255, 255, 255, 1);
  4675. box-sizing:border-box;
  4676. border-width:1px;
  4677. border-style:solid;
  4678. border-color:rgba(242, 242, 242, 1);
  4679. border-radius:33px;
  4680. -moz-box-shadow:none;
  4681. -webkit-box-shadow:none;
  4682. box-shadow:none;
  4683. }
  4684. #u41690 {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:2631px;
  4688. top:71px;
  4689. width:88px;
  4690. height:32px;
  4691. display:flex;
  4692. }
  4693. #u41690 .text {
  4694. position:absolute;
  4695. align-self:center;
  4696. padding:2px 2px 2px 2px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u41690_text {
  4701. border-width:0px;
  4702. word-wrap:break-word;
  4703. text-transform:none;
  4704. visibility:hidden;
  4705. }
  4706. #u41691 {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:0px;
  4712. height:0px;
  4713. }
  4714. #u41692_img {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:18px;
  4720. height:18px;
  4721. }
  4722. #u41692 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:2694px;
  4726. top:78px;
  4727. width:18px;
  4728. height:18px;
  4729. display:flex;
  4730. }
  4731. #u41692 .text {
  4732. position:absolute;
  4733. align-self:center;
  4734. padding:2px 2px 2px 2px;
  4735. box-sizing:border-box;
  4736. width:100%;
  4737. }
  4738. #u41692_text {
  4739. border-width:0px;
  4740. word-wrap:break-word;
  4741. text-transform:none;
  4742. visibility:hidden;
  4743. }
  4744. #u41693_img {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:0px;
  4748. top:0px;
  4749. width:6px;
  4750. height:6px;
  4751. }
  4752. #u41693 {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:2700px;
  4756. top:84px;
  4757. width:6px;
  4758. height:6px;
  4759. display:flex;
  4760. }
  4761. #u41693 .text {
  4762. position:absolute;
  4763. align-self:center;
  4764. padding:2px 2px 2px 2px;
  4765. box-sizing:border-box;
  4766. width:100%;
  4767. }
  4768. #u41693_text {
  4769. border-width:0px;
  4770. word-wrap:break-word;
  4771. text-transform:none;
  4772. visibility:hidden;
  4773. }
  4774. #u41694 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:0px;
  4780. height:0px;
  4781. }
  4782. #u41695_img {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:0px;
  4787. width:5px;
  4788. height:5px;
  4789. }
  4790. #u41695 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:2645px;
  4794. top:85px;
  4795. width:5px;
  4796. height:5px;
  4797. display:flex;
  4798. }
  4799. #u41695 .text {
  4800. position:absolute;
  4801. align-self:center;
  4802. padding:2px 2px 2px 2px;
  4803. box-sizing:border-box;
  4804. width:100%;
  4805. }
  4806. #u41695_text {
  4807. border-width:0px;
  4808. word-wrap:break-word;
  4809. text-transform:none;
  4810. visibility:hidden;
  4811. }
  4812. #u41696_img {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:5px;
  4818. height:5px;
  4819. }
  4820. #u41696 {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:2661px;
  4824. top:85px;
  4825. width:5px;
  4826. height:5px;
  4827. display:flex;
  4828. }
  4829. #u41696 .text {
  4830. position:absolute;
  4831. align-self:center;
  4832. padding:2px 2px 2px 2px;
  4833. box-sizing:border-box;
  4834. width:100%;
  4835. }
  4836. #u41696_text {
  4837. border-width:0px;
  4838. word-wrap:break-word;
  4839. text-transform:none;
  4840. visibility:hidden;
  4841. }
  4842. #u41697_img {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:0px;
  4846. top:0px;
  4847. width:7px;
  4848. height:7px;
  4849. }
  4850. #u41697 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:2652px;
  4854. top:84px;
  4855. width:7px;
  4856. height:7px;
  4857. display:flex;
  4858. }
  4859. #u41697 .text {
  4860. position:absolute;
  4861. align-self:center;
  4862. padding:2px 2px 2px 2px;
  4863. box-sizing:border-box;
  4864. width:100%;
  4865. }
  4866. #u41697_text {
  4867. border-width:0px;
  4868. word-wrap:break-word;
  4869. text-transform:none;
  4870. visibility:hidden;
  4871. }
  4872. #u41698_img {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:0px;
  4877. width:19px;
  4878. height:2px;
  4879. }
  4880. #u41698 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:2669px;
  4884. top:87px;
  4885. width:18px;
  4886. height:1px;
  4887. display:flex;
  4888. -webkit-transform:rotate(90deg);
  4889. -moz-transform:rotate(90deg);
  4890. -ms-transform:rotate(90deg);
  4891. transform:rotate(90deg);
  4892. }
  4893. #u41698 .text {
  4894. position:absolute;
  4895. align-self:center;
  4896. padding:2px 2px 2px 2px;
  4897. box-sizing:border-box;
  4898. width:100%;
  4899. }
  4900. #u41698_text {
  4901. border-width:0px;
  4902. word-wrap:break-word;
  4903. text-transform:none;
  4904. visibility:hidden;
  4905. }
  4906. #u41699_img {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:0px;
  4910. top:0px;
  4911. width:375px;
  4912. height:44px;
  4913. }
  4914. #u41699 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:2351px;
  4918. top:24px;
  4919. width:375px;
  4920. height:44px;
  4921. display:flex;
  4922. }
  4923. #u41699 .text {
  4924. position:absolute;
  4925. align-self:center;
  4926. padding:2px 2px 2px 2px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u41699_text {
  4931. border-width:0px;
  4932. word-wrap:break-word;
  4933. text-transform:none;
  4934. visibility:hidden;
  4935. }
  4936. #u41700_div {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:375px;
  4942. height:50px;
  4943. background:inherit;
  4944. background-color:rgba(255, 255, 255, 1);
  4945. box-sizing:border-box;
  4946. border-width:1px;
  4947. border-style:solid;
  4948. border-color:rgba(242, 242, 242, 1);
  4949. border-radius:26px;
  4950. border-top-left-radius:0px;
  4951. border-top-right-radius:0px;
  4952. -moz-box-shadow:none;
  4953. -webkit-box-shadow:none;
  4954. box-shadow:none;
  4955. }
  4956. #u41700 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:2351px;
  4960. top:788px;
  4961. width:375px;
  4962. height:50px;
  4963. display:flex;
  4964. }
  4965. #u41700 .text {
  4966. position:absolute;
  4967. align-self:center;
  4968. padding:2px 2px 2px 2px;
  4969. box-sizing:border-box;
  4970. width:100%;
  4971. }
  4972. #u41700_text {
  4973. border-width:0px;
  4974. word-wrap:break-word;
  4975. text-transform:none;
  4976. visibility:hidden;
  4977. }
  4978. #u41701 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:0px;
  4982. top:0px;
  4983. width:0px;
  4984. height:0px;
  4985. }
  4986. #u41702_img {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:0px;
  4990. top:0px;
  4991. width:24px;
  4992. height:24px;
  4993. }
  4994. #u41702 {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:2391px;
  4998. top:792px;
  4999. width:24px;
  5000. height:24px;
  5001. display:flex;
  5002. font-size:8px;
  5003. }
  5004. #u41702 .text {
  5005. position:absolute;
  5006. align-self:center;
  5007. padding:2px 2px 2px 2px;
  5008. box-sizing:border-box;
  5009. width:100%;
  5010. }
  5011. #u41702_text {
  5012. border-width:0px;
  5013. word-wrap:break-word;
  5014. text-transform:none;
  5015. }
  5016. #u41703_div {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:25px;
  5022. height:17px;
  5023. background:inherit;
  5024. background-color:rgba(255, 255, 255, 0);
  5025. border:none;
  5026. border-radius:0px;
  5027. -moz-box-shadow:none;
  5028. -webkit-box-shadow:none;
  5029. box-shadow:none;
  5030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:12px;
  5034. }
  5035. #u41703 {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:2391px;
  5039. top:817px;
  5040. width:25px;
  5041. height:17px;
  5042. display:flex;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:12px;
  5047. }
  5048. #u41703 .text {
  5049. position:absolute;
  5050. align-self:flex-start;
  5051. padding:0px 0px 0px 0px;
  5052. box-sizing:border-box;
  5053. width:100%;
  5054. }
  5055. #u41703_text {
  5056. border-width:0px;
  5057. white-space:nowrap;
  5058. text-transform:none;
  5059. }
  5060. #u41704 {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:0px;
  5066. height:0px;
  5067. }
  5068. #u41705_img {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:24px;
  5074. height:24px;
  5075. }
  5076. #u41705 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:2661px;
  5080. top:794px;
  5081. width:24px;
  5082. height:24px;
  5083. display:flex;
  5084. font-size:8px;
  5085. }
  5086. #u41705 .text {
  5087. position:absolute;
  5088. align-self:center;
  5089. padding:2px 2px 2px 2px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u41705_text {
  5094. border-width:0px;
  5095. word-wrap:break-word;
  5096. text-transform:none;
  5097. }
  5098. #u41706_div {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:0px;
  5102. top:0px;
  5103. width:25px;
  5104. height:17px;
  5105. background:inherit;
  5106. background-color:rgba(255, 255, 255, 0);
  5107. border:none;
  5108. border-radius:0px;
  5109. -moz-box-shadow:none;
  5110. -webkit-box-shadow:none;
  5111. box-shadow:none;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:12px;
  5116. }
  5117. #u41706 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:2661px;
  5121. top:819px;
  5122. width:25px;
  5123. height:17px;
  5124. display:flex;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:12px;
  5129. }
  5130. #u41706 .text {
  5131. position:absolute;
  5132. align-self:flex-start;
  5133. padding:0px 0px 0px 0px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u41706_text {
  5138. border-width:0px;
  5139. white-space:nowrap;
  5140. text-transform:none;
  5141. }
  5142. #u41707_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:375px;
  5148. height:681px;
  5149. background:inherit;
  5150. background-color:rgba(242, 242, 242, 0.462745098039216);
  5151. border:none;
  5152. border-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. }
  5157. #u41707 {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:2351px;
  5161. top:107px;
  5162. width:375px;
  5163. height:681px;
  5164. display:flex;
  5165. }
  5166. #u41707 .text {
  5167. position:absolute;
  5168. align-self:center;
  5169. padding:2px 2px 2px 2px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u41707_text {
  5174. border-width:0px;
  5175. word-wrap:break-word;
  5176. text-transform:none;
  5177. visibility:hidden;
  5178. }
  5179. #u41708 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:0px;
  5185. height:0px;
  5186. }
  5187. #u41709_img {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:0px;
  5191. top:0px;
  5192. width:24px;
  5193. height:24px;
  5194. }
  5195. #u41709 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:2573px;
  5199. top:792px;
  5200. width:24px;
  5201. height:24px;
  5202. display:flex;
  5203. font-size:8px;
  5204. }
  5205. #u41709 .text {
  5206. position:absolute;
  5207. align-self:center;
  5208. padding:2px 2px 2px 2px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u41709_text {
  5213. border-width:0px;
  5214. word-wrap:break-word;
  5215. text-transform:none;
  5216. }
  5217. #u41710_div {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:37px;
  5223. height:17px;
  5224. background:inherit;
  5225. background-color:rgba(255, 255, 255, 0);
  5226. border:none;
  5227. border-radius:0px;
  5228. -moz-box-shadow:none;
  5229. -webkit-box-shadow:none;
  5230. box-shadow:none;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:12px;
  5235. }
  5236. #u41710 {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:2567px;
  5240. top:817px;
  5241. width:37px;
  5242. height:17px;
  5243. display:flex;
  5244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. font-size:12px;
  5248. }
  5249. #u41710 .text {
  5250. position:absolute;
  5251. align-self:flex-start;
  5252. padding:0px 0px 0px 0px;
  5253. box-sizing:border-box;
  5254. width:100%;
  5255. }
  5256. #u41710_text {
  5257. border-width:0px;
  5258. white-space:nowrap;
  5259. text-transform:none;
  5260. }
  5261. #u41711 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:0px;
  5266. width:0px;
  5267. height:0px;
  5268. }
  5269. #u41712_img {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:0px;
  5273. top:0px;
  5274. width:24px;
  5275. height:24px;
  5276. }
  5277. #u41712 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:2479px;
  5281. top:792px;
  5282. width:24px;
  5283. height:24px;
  5284. display:flex;
  5285. font-size:8px;
  5286. }
  5287. #u41712 .text {
  5288. position:absolute;
  5289. align-self:center;
  5290. padding:2px 2px 2px 2px;
  5291. box-sizing:border-box;
  5292. width:100%;
  5293. }
  5294. #u41712_text {
  5295. border-width:0px;
  5296. word-wrap:break-word;
  5297. text-transform:none;
  5298. }
  5299. #u41713_div {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:0px;
  5303. top:0px;
  5304. width:37px;
  5305. height:17px;
  5306. background:inherit;
  5307. background-color:rgba(255, 255, 255, 0);
  5308. border:none;
  5309. border-radius:0px;
  5310. -moz-box-shadow:none;
  5311. -webkit-box-shadow:none;
  5312. box-shadow:none;
  5313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:12px;
  5317. }
  5318. #u41713 {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:2473px;
  5322. top:817px;
  5323. width:37px;
  5324. height:17px;
  5325. display:flex;
  5326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. font-size:12px;
  5330. }
  5331. #u41713 .text {
  5332. position:absolute;
  5333. align-self:flex-start;
  5334. padding:0px 0px 0px 0px;
  5335. box-sizing:border-box;
  5336. width:100%;
  5337. }
  5338. #u41713_text {
  5339. border-width:0px;
  5340. white-space:nowrap;
  5341. text-transform:none;
  5342. }
  5343. #u41714_div {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:0px;
  5347. top:0px;
  5348. width:375px;
  5349. height:732px;
  5350. background:inherit;
  5351. background-color:rgba(242, 242, 242, 0.996078431372549);
  5352. border:none;
  5353. border-top:0px;
  5354. border-radius:28px;
  5355. border-top-left-radius:0px;
  5356. border-top-right-radius:0px;
  5357. -moz-box-shadow:none;
  5358. -webkit-box-shadow:none;
  5359. box-shadow:none;
  5360. }
  5361. #u41714 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:2351px;
  5365. top:107px;
  5366. width:375px;
  5367. height:732px;
  5368. display:flex;
  5369. }
  5370. #u41714 .text {
  5371. position:absolute;
  5372. align-self:center;
  5373. padding:2px 2px 2px 2px;
  5374. box-sizing:border-box;
  5375. width:100%;
  5376. }
  5377. #u41714_text {
  5378. border-width:0px;
  5379. word-wrap:break-word;
  5380. text-transform:none;
  5381. visibility:hidden;
  5382. }
  5383. #u41715_div {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:0px;
  5387. top:0px;
  5388. width:375px;
  5389. height:41px;
  5390. background:inherit;
  5391. background-color:rgba(255, 255, 255, 1);
  5392. box-sizing:border-box;
  5393. border-width:1px;
  5394. border-style:solid;
  5395. border-color:rgba(215, 215, 215, 1);
  5396. border-left:0px;
  5397. border-top:0px;
  5398. border-right:0px;
  5399. border-radius:0px;
  5400. border-bottom-right-radius:0px;
  5401. border-bottom-left-radius:0px;
  5402. -moz-box-shadow:none;
  5403. -webkit-box-shadow:none;
  5404. box-shadow:none;
  5405. }
  5406. #u41715 {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:2351px;
  5410. top:67px;
  5411. width:375px;
  5412. height:41px;
  5413. display:flex;
  5414. }
  5415. #u41715 .text {
  5416. position:absolute;
  5417. align-self:center;
  5418. padding:2px 2px 2px 2px;
  5419. box-sizing:border-box;
  5420. width:100%;
  5421. }
  5422. #u41715_text {
  5423. border-width:0px;
  5424. word-wrap:break-word;
  5425. text-transform:none;
  5426. visibility:hidden;
  5427. }
  5428. #u41716 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:0px;
  5434. height:0px;
  5435. }
  5436. #u41717_div {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:0px;
  5440. top:0px;
  5441. width:88px;
  5442. height:32px;
  5443. background:inherit;
  5444. background-color:rgba(255, 255, 255, 1);
  5445. box-sizing:border-box;
  5446. border-width:1px;
  5447. border-style:solid;
  5448. border-color:rgba(242, 242, 242, 1);
  5449. border-radius:33px;
  5450. -moz-box-shadow:none;
  5451. -webkit-box-shadow:none;
  5452. box-shadow:none;
  5453. }
  5454. #u41717 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:2631px;
  5458. top:71px;
  5459. width:88px;
  5460. height:32px;
  5461. display:flex;
  5462. }
  5463. #u41717 .text {
  5464. position:absolute;
  5465. align-self:center;
  5466. padding:2px 2px 2px 2px;
  5467. box-sizing:border-box;
  5468. width:100%;
  5469. }
  5470. #u41717_text {
  5471. border-width:0px;
  5472. word-wrap:break-word;
  5473. text-transform:none;
  5474. visibility:hidden;
  5475. }
  5476. #u41718 {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:0px;
  5482. height:0px;
  5483. }
  5484. #u41719_img {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:0px;
  5488. top:0px;
  5489. width:18px;
  5490. height:18px;
  5491. }
  5492. #u41719 {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:2694px;
  5496. top:78px;
  5497. width:18px;
  5498. height:18px;
  5499. display:flex;
  5500. }
  5501. #u41719 .text {
  5502. position:absolute;
  5503. align-self:center;
  5504. padding:2px 2px 2px 2px;
  5505. box-sizing:border-box;
  5506. width:100%;
  5507. }
  5508. #u41719_text {
  5509. border-width:0px;
  5510. word-wrap:break-word;
  5511. text-transform:none;
  5512. visibility:hidden;
  5513. }
  5514. #u41720_img {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:6px;
  5520. height:6px;
  5521. }
  5522. #u41720 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:2700px;
  5526. top:84px;
  5527. width:6px;
  5528. height:6px;
  5529. display:flex;
  5530. }
  5531. #u41720 .text {
  5532. position:absolute;
  5533. align-self:center;
  5534. padding:2px 2px 2px 2px;
  5535. box-sizing:border-box;
  5536. width:100%;
  5537. }
  5538. #u41720_text {
  5539. border-width:0px;
  5540. word-wrap:break-word;
  5541. text-transform:none;
  5542. visibility:hidden;
  5543. }
  5544. #u41721 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:0px;
  5548. top:0px;
  5549. width:0px;
  5550. height:0px;
  5551. }
  5552. #u41722_img {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:0px;
  5556. top:0px;
  5557. width:5px;
  5558. height:5px;
  5559. }
  5560. #u41722 {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:2645px;
  5564. top:85px;
  5565. width:5px;
  5566. height:5px;
  5567. display:flex;
  5568. }
  5569. #u41722 .text {
  5570. position:absolute;
  5571. align-self:center;
  5572. padding:2px 2px 2px 2px;
  5573. box-sizing:border-box;
  5574. width:100%;
  5575. }
  5576. #u41722_text {
  5577. border-width:0px;
  5578. word-wrap:break-word;
  5579. text-transform:none;
  5580. visibility:hidden;
  5581. }
  5582. #u41723_img {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:0px;
  5587. width:5px;
  5588. height:5px;
  5589. }
  5590. #u41723 {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:2661px;
  5594. top:85px;
  5595. width:5px;
  5596. height:5px;
  5597. display:flex;
  5598. }
  5599. #u41723 .text {
  5600. position:absolute;
  5601. align-self:center;
  5602. padding:2px 2px 2px 2px;
  5603. box-sizing:border-box;
  5604. width:100%;
  5605. }
  5606. #u41723_text {
  5607. border-width:0px;
  5608. word-wrap:break-word;
  5609. text-transform:none;
  5610. visibility:hidden;
  5611. }
  5612. #u41724_img {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:7px;
  5618. height:7px;
  5619. }
  5620. #u41724 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:2652px;
  5624. top:84px;
  5625. width:7px;
  5626. height:7px;
  5627. display:flex;
  5628. }
  5629. #u41724 .text {
  5630. position:absolute;
  5631. align-self:center;
  5632. padding:2px 2px 2px 2px;
  5633. box-sizing:border-box;
  5634. width:100%;
  5635. }
  5636. #u41724_text {
  5637. border-width:0px;
  5638. word-wrap:break-word;
  5639. text-transform:none;
  5640. visibility:hidden;
  5641. }
  5642. #u41725_img {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:19px;
  5648. height:2px;
  5649. }
  5650. #u41725 {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:2669px;
  5654. top:87px;
  5655. width:18px;
  5656. height:1px;
  5657. display:flex;
  5658. -webkit-transform:rotate(90deg);
  5659. -moz-transform:rotate(90deg);
  5660. -ms-transform:rotate(90deg);
  5661. transform:rotate(90deg);
  5662. }
  5663. #u41725 .text {
  5664. position:absolute;
  5665. align-self:center;
  5666. padding:2px 2px 2px 2px;
  5667. box-sizing:border-box;
  5668. width:100%;
  5669. }
  5670. #u41725_text {
  5671. border-width:0px;
  5672. word-wrap:break-word;
  5673. text-transform:none;
  5674. visibility:hidden;
  5675. }
  5676. #u41726_div {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:12px;
  5682. height:12px;
  5683. background:inherit;
  5684. background-color:rgba(255, 255, 255, 0);
  5685. box-sizing:border-box;
  5686. border-width:2px;
  5687. border-style:solid;
  5688. border-color:rgba(51, 51, 51, 1);
  5689. border-right:0px;
  5690. border-bottom:0px;
  5691. border-radius:0px;
  5692. border-top-right-radius:0px;
  5693. border-bottom-left-radius:0px;
  5694. -moz-box-shadow:none;
  5695. -webkit-box-shadow:none;
  5696. box-shadow:none;
  5697. }
  5698. #u41726 {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:2366px;
  5702. top:81px;
  5703. width:12px;
  5704. height:12px;
  5705. display:flex;
  5706. -webkit-transform:rotate(315deg);
  5707. -moz-transform:rotate(315deg);
  5708. -ms-transform:rotate(315deg);
  5709. transform:rotate(315deg);
  5710. }
  5711. #u41726 .text {
  5712. position:absolute;
  5713. align-self:center;
  5714. padding:2px 2px 2px 2px;
  5715. box-sizing:border-box;
  5716. width:100%;
  5717. }
  5718. #u41726_text {
  5719. border-width:0px;
  5720. word-wrap:break-word;
  5721. text-transform:none;
  5722. visibility:hidden;
  5723. }
  5724. #u41727_div {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:0px;
  5728. top:0px;
  5729. width:73px;
  5730. height:25px;
  5731. background:inherit;
  5732. background-color:rgba(255, 255, 255, 0);
  5733. border:none;
  5734. border-radius:0px;
  5735. -moz-box-shadow:none;
  5736. -webkit-box-shadow:none;
  5737. box-shadow:none;
  5738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. font-size:18px;
  5742. }
  5743. #u41727 {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:2386px;
  5747. top:75px;
  5748. width:73px;
  5749. height:25px;
  5750. display:flex;
  5751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5752. font-weight:400;
  5753. font-style:normal;
  5754. font-size:18px;
  5755. }
  5756. #u41727 .text {
  5757. position:absolute;
  5758. align-self:flex-start;
  5759. padding:0px 0px 0px 0px;
  5760. box-sizing:border-box;
  5761. width:100%;
  5762. }
  5763. #u41727_text {
  5764. border-width:0px;
  5765. white-space:nowrap;
  5766. text-transform:none;
  5767. }
  5768. #u41728 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:0px;
  5774. height:0px;
  5775. }
  5776. #u41729_div {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:375px;
  5782. height:170px;
  5783. background:inherit;
  5784. background-color:rgba(255, 255, 255, 1);
  5785. border:none;
  5786. border-left:0px;
  5787. border-right:0px;
  5788. border-radius:0px;
  5789. border-top-left-radius:0px;
  5790. border-top-right-radius:0px;
  5791. border-bottom-right-radius:0px;
  5792. border-bottom-left-radius:0px;
  5793. -moz-box-shadow:none;
  5794. -webkit-box-shadow:none;
  5795. box-shadow:none;
  5796. }
  5797. #u41729 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:2351px;
  5801. top:389px;
  5802. width:375px;
  5803. height:170px;
  5804. display:flex;
  5805. }
  5806. #u41729 .text {
  5807. position:absolute;
  5808. align-self:center;
  5809. padding:2px 2px 2px 2px;
  5810. box-sizing:border-box;
  5811. width:100%;
  5812. }
  5813. #u41729_text {
  5814. border-width:0px;
  5815. word-wrap:break-word;
  5816. text-transform:none;
  5817. visibility:hidden;
  5818. }
  5819. #u41730_div {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:0px;
  5823. top:0px;
  5824. width:57px;
  5825. height:30px;
  5826. background:inherit;
  5827. background-color:rgba(255, 255, 255, 0);
  5828. border:none;
  5829. border-left:0px;
  5830. border-top:0px;
  5831. border-right:0px;
  5832. border-radius:0px;
  5833. border-bottom-right-radius:0px;
  5834. border-bottom-left-radius:0px;
  5835. -moz-box-shadow:none;
  5836. -webkit-box-shadow:none;
  5837. box-shadow:none;
  5838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5839. font-weight:400;
  5840. font-style:normal;
  5841. font-size:14px;
  5842. line-height:30px;
  5843. }
  5844. #u41730 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:2375px;
  5848. top:399px;
  5849. width:57px;
  5850. height:30px;
  5851. display:flex;
  5852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:14px;
  5856. line-height:30px;
  5857. }
  5858. #u41730 .text {
  5859. position:absolute;
  5860. align-self:flex-start;
  5861. padding:0px 0px 0px 0px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u41730_text {
  5866. border-width:0px;
  5867. white-space:nowrap;
  5868. text-transform:none;
  5869. }
  5870. #u41731_div {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:181px;
  5876. height:30px;
  5877. background:inherit;
  5878. background-color:rgba(255, 255, 255, 0);
  5879. border:none;
  5880. border-left:0px;
  5881. border-top:0px;
  5882. border-right:0px;
  5883. border-radius:0px;
  5884. border-bottom-right-radius:0px;
  5885. border-bottom-left-radius:0px;
  5886. -moz-box-shadow:none;
  5887. -webkit-box-shadow:none;
  5888. box-shadow:none;
  5889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:12px;
  5893. line-height:30px;
  5894. }
  5895. #u41731 {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:2375px;
  5899. top:429px;
  5900. width:181px;
  5901. height:30px;
  5902. display:flex;
  5903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5904. font-weight:400;
  5905. font-style:normal;
  5906. font-size:12px;
  5907. line-height:30px;
  5908. }
  5909. #u41731 .text {
  5910. position:absolute;
  5911. align-self:flex-start;
  5912. padding:0px 0px 0px 0px;
  5913. box-sizing:border-box;
  5914. width:100%;
  5915. }
  5916. #u41731_text {
  5917. border-width:0px;
  5918. white-space:nowrap;
  5919. text-transform:none;
  5920. }
  5921. #u41732_div {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:0px;
  5925. top:0px;
  5926. width:167px;
  5927. height:30px;
  5928. background:inherit;
  5929. background-color:rgba(255, 255, 255, 0);
  5930. border:none;
  5931. border-left:0px;
  5932. border-top:0px;
  5933. border-right:0px;
  5934. border-radius:0px;
  5935. border-bottom-right-radius:0px;
  5936. border-bottom-left-radius:0px;
  5937. -moz-box-shadow:none;
  5938. -webkit-box-shadow:none;
  5939. box-shadow:none;
  5940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:12px;
  5944. line-height:30px;
  5945. }
  5946. #u41732 {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:2375px;
  5950. top:459px;
  5951. width:167px;
  5952. height:30px;
  5953. display:flex;
  5954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5955. font-weight:400;
  5956. font-style:normal;
  5957. font-size:12px;
  5958. line-height:30px;
  5959. }
  5960. #u41732 .text {
  5961. position:absolute;
  5962. align-self:flex-start;
  5963. padding:0px 0px 0px 0px;
  5964. box-sizing:border-box;
  5965. width:100%;
  5966. }
  5967. #u41732_text {
  5968. border-width:0px;
  5969. white-space:nowrap;
  5970. text-transform:none;
  5971. }
  5972. #u41733_div {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:167px;
  5978. height:30px;
  5979. background:inherit;
  5980. background-color:rgba(255, 255, 255, 0);
  5981. border:none;
  5982. border-left:0px;
  5983. border-top:0px;
  5984. border-right:0px;
  5985. border-radius:0px;
  5986. border-bottom-right-radius:0px;
  5987. border-bottom-left-radius:0px;
  5988. -moz-box-shadow:none;
  5989. -webkit-box-shadow:none;
  5990. box-shadow:none;
  5991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5992. font-weight:400;
  5993. font-style:normal;
  5994. font-size:12px;
  5995. line-height:30px;
  5996. }
  5997. #u41733 {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:2375px;
  6001. top:489px;
  6002. width:167px;
  6003. height:30px;
  6004. display:flex;
  6005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6006. font-weight:400;
  6007. font-style:normal;
  6008. font-size:12px;
  6009. line-height:30px;
  6010. }
  6011. #u41733 .text {
  6012. position:absolute;
  6013. align-self:flex-start;
  6014. padding:0px 0px 0px 0px;
  6015. box-sizing:border-box;
  6016. width:100%;
  6017. }
  6018. #u41733_text {
  6019. border-width:0px;
  6020. white-space:nowrap;
  6021. text-transform:none;
  6022. }
  6023. #u41734_div {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:167px;
  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. line-height:30px;
  6047. }
  6048. #u41734 {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:2375px;
  6052. top:519px;
  6053. width:167px;
  6054. height:30px;
  6055. display:flex;
  6056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. font-size:12px;
  6060. line-height:30px;
  6061. }
  6062. #u41734 .text {
  6063. position:absolute;
  6064. align-self:flex-start;
  6065. padding:0px 0px 0px 0px;
  6066. box-sizing:border-box;
  6067. width:100%;
  6068. }
  6069. #u41734_text {
  6070. border-width:0px;
  6071. white-space:nowrap;
  6072. text-transform:none;
  6073. }
  6074. #u41736_img {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:433px;
  6080. height:865px;
  6081. }
  6082. #u41736 {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:2785px;
  6086. top:0px;
  6087. width:433px;
  6088. height:865px;
  6089. display:flex;
  6090. }
  6091. #u41736 .text {
  6092. position:absolute;
  6093. align-self:center;
  6094. padding:2px 2px 2px 2px;
  6095. box-sizing:border-box;
  6096. width:100%;
  6097. }
  6098. #u41736_text {
  6099. border-width:0px;
  6100. word-wrap:break-word;
  6101. text-transform:none;
  6102. visibility:hidden;
  6103. }
  6104. #u41737_div {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:0px;
  6108. top:0px;
  6109. width:375px;
  6110. height:40px;
  6111. background:inherit;
  6112. background-color:rgba(255, 255, 255, 1);
  6113. box-sizing:border-box;
  6114. border-width:1px;
  6115. border-style:solid;
  6116. border-color:rgba(215, 215, 215, 1);
  6117. border-left:0px;
  6118. border-top:0px;
  6119. border-right:0px;
  6120. border-radius:0px;
  6121. border-bottom-right-radius:0px;
  6122. border-bottom-left-radius:0px;
  6123. -moz-box-shadow:none;
  6124. -webkit-box-shadow:none;
  6125. box-shadow:none;
  6126. }
  6127. #u41737 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:2814px;
  6131. top:67px;
  6132. width:375px;
  6133. height:40px;
  6134. display:flex;
  6135. }
  6136. #u41737 .text {
  6137. position:absolute;
  6138. align-self:center;
  6139. padding:2px 2px 2px 2px;
  6140. box-sizing:border-box;
  6141. width:100%;
  6142. }
  6143. #u41737_text {
  6144. border-width:0px;
  6145. word-wrap:break-word;
  6146. text-transform:none;
  6147. visibility:hidden;
  6148. }
  6149. #u41738 {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:0px;
  6153. top:0px;
  6154. width:0px;
  6155. height:0px;
  6156. }
  6157. #u41739_div {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:88px;
  6163. height:32px;
  6164. background:inherit;
  6165. background-color:rgba(255, 255, 255, 1);
  6166. box-sizing:border-box;
  6167. border-width:1px;
  6168. border-style:solid;
  6169. border-color:rgba(242, 242, 242, 1);
  6170. border-radius:33px;
  6171. -moz-box-shadow:none;
  6172. -webkit-box-shadow:none;
  6173. box-shadow:none;
  6174. }
  6175. #u41739 {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:3094px;
  6179. top:71px;
  6180. width:88px;
  6181. height:32px;
  6182. display:flex;
  6183. }
  6184. #u41739 .text {
  6185. position:absolute;
  6186. align-self:center;
  6187. padding:2px 2px 2px 2px;
  6188. box-sizing:border-box;
  6189. width:100%;
  6190. }
  6191. #u41739_text {
  6192. border-width:0px;
  6193. word-wrap:break-word;
  6194. text-transform:none;
  6195. visibility:hidden;
  6196. }
  6197. #u41740 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:0px;
  6201. top:0px;
  6202. width:0px;
  6203. height:0px;
  6204. }
  6205. #u41741_img {
  6206. border-width:0px;
  6207. position:absolute;
  6208. left:0px;
  6209. top:0px;
  6210. width:18px;
  6211. height:18px;
  6212. }
  6213. #u41741 {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:3157px;
  6217. top:78px;
  6218. width:18px;
  6219. height:18px;
  6220. display:flex;
  6221. }
  6222. #u41741 .text {
  6223. position:absolute;
  6224. align-self:center;
  6225. padding:2px 2px 2px 2px;
  6226. box-sizing:border-box;
  6227. width:100%;
  6228. }
  6229. #u41741_text {
  6230. border-width:0px;
  6231. word-wrap:break-word;
  6232. text-transform:none;
  6233. visibility:hidden;
  6234. }
  6235. #u41742_img {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:6px;
  6241. height:6px;
  6242. }
  6243. #u41742 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:3163px;
  6247. top:84px;
  6248. width:6px;
  6249. height:6px;
  6250. display:flex;
  6251. }
  6252. #u41742 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:2px 2px 2px 2px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u41742_text {
  6260. border-width:0px;
  6261. word-wrap:break-word;
  6262. text-transform:none;
  6263. visibility:hidden;
  6264. }
  6265. #u41743 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:0px;
  6271. height:0px;
  6272. }
  6273. #u41744_img {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:0px;
  6277. top:0px;
  6278. width:5px;
  6279. height:5px;
  6280. }
  6281. #u41744 {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:3108px;
  6285. top:85px;
  6286. width:5px;
  6287. height:5px;
  6288. display:flex;
  6289. }
  6290. #u41744 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:2px 2px 2px 2px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u41744_text {
  6298. border-width:0px;
  6299. word-wrap:break-word;
  6300. text-transform:none;
  6301. visibility:hidden;
  6302. }
  6303. #u41745_img {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:5px;
  6309. height:5px;
  6310. }
  6311. #u41745 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:3124px;
  6315. top:85px;
  6316. width:5px;
  6317. height:5px;
  6318. display:flex;
  6319. }
  6320. #u41745 .text {
  6321. position:absolute;
  6322. align-self:center;
  6323. padding:2px 2px 2px 2px;
  6324. box-sizing:border-box;
  6325. width:100%;
  6326. }
  6327. #u41745_text {
  6328. border-width:0px;
  6329. word-wrap:break-word;
  6330. text-transform:none;
  6331. visibility:hidden;
  6332. }
  6333. #u41746_img {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:7px;
  6339. height:7px;
  6340. }
  6341. #u41746 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:3115px;
  6345. top:84px;
  6346. width:7px;
  6347. height:7px;
  6348. display:flex;
  6349. }
  6350. #u41746 .text {
  6351. position:absolute;
  6352. align-self:center;
  6353. padding:2px 2px 2px 2px;
  6354. box-sizing:border-box;
  6355. width:100%;
  6356. }
  6357. #u41746_text {
  6358. border-width:0px;
  6359. word-wrap:break-word;
  6360. text-transform:none;
  6361. visibility:hidden;
  6362. }
  6363. #u41747_img {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:19px;
  6369. height:2px;
  6370. }
  6371. #u41747 {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:3132px;
  6375. top:87px;
  6376. width:18px;
  6377. height:1px;
  6378. display:flex;
  6379. -webkit-transform:rotate(90deg);
  6380. -moz-transform:rotate(90deg);
  6381. -ms-transform:rotate(90deg);
  6382. transform:rotate(90deg);
  6383. }
  6384. #u41747 .text {
  6385. position:absolute;
  6386. align-self:center;
  6387. padding:2px 2px 2px 2px;
  6388. box-sizing:border-box;
  6389. width:100%;
  6390. }
  6391. #u41747_text {
  6392. border-width:0px;
  6393. word-wrap:break-word;
  6394. text-transform:none;
  6395. visibility:hidden;
  6396. }
  6397. #u41748_img {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:0px;
  6401. top:0px;
  6402. width:375px;
  6403. height:44px;
  6404. }
  6405. #u41748 {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:2814px;
  6409. top:24px;
  6410. width:375px;
  6411. height:44px;
  6412. display:flex;
  6413. }
  6414. #u41748 .text {
  6415. position:absolute;
  6416. align-self:center;
  6417. padding:2px 2px 2px 2px;
  6418. box-sizing:border-box;
  6419. width:100%;
  6420. }
  6421. #u41748_text {
  6422. border-width:0px;
  6423. word-wrap:break-word;
  6424. text-transform:none;
  6425. visibility:hidden;
  6426. }
  6427. #u41749_div {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:375px;
  6433. height:50px;
  6434. background:inherit;
  6435. background-color:rgba(255, 255, 255, 1);
  6436. box-sizing:border-box;
  6437. border-width:1px;
  6438. border-style:solid;
  6439. border-color:rgba(242, 242, 242, 1);
  6440. border-radius:26px;
  6441. border-top-left-radius:0px;
  6442. border-top-right-radius:0px;
  6443. -moz-box-shadow:none;
  6444. -webkit-box-shadow:none;
  6445. box-shadow:none;
  6446. }
  6447. #u41749 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:2814px;
  6451. top:788px;
  6452. width:375px;
  6453. height:50px;
  6454. display:flex;
  6455. }
  6456. #u41749 .text {
  6457. position:absolute;
  6458. align-self:center;
  6459. padding:2px 2px 2px 2px;
  6460. box-sizing:border-box;
  6461. width:100%;
  6462. }
  6463. #u41749_text {
  6464. border-width:0px;
  6465. word-wrap:break-word;
  6466. text-transform:none;
  6467. visibility:hidden;
  6468. }
  6469. #u41750 {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:0px;
  6473. top:0px;
  6474. width:0px;
  6475. height:0px;
  6476. }
  6477. #u41751_img {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:0px;
  6481. top:0px;
  6482. width:24px;
  6483. height:24px;
  6484. }
  6485. #u41751 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:2854px;
  6489. top:792px;
  6490. width:24px;
  6491. height:24px;
  6492. display:flex;
  6493. font-size:8px;
  6494. }
  6495. #u41751 .text {
  6496. position:absolute;
  6497. align-self:center;
  6498. padding:2px 2px 2px 2px;
  6499. box-sizing:border-box;
  6500. width:100%;
  6501. }
  6502. #u41751_text {
  6503. border-width:0px;
  6504. word-wrap:break-word;
  6505. text-transform:none;
  6506. }
  6507. #u41752_div {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:0px;
  6511. top:0px;
  6512. width:25px;
  6513. height:17px;
  6514. background:inherit;
  6515. background-color:rgba(255, 255, 255, 0);
  6516. border:none;
  6517. border-radius:0px;
  6518. -moz-box-shadow:none;
  6519. -webkit-box-shadow:none;
  6520. box-shadow:none;
  6521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:12px;
  6525. }
  6526. #u41752 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:2854px;
  6530. top:817px;
  6531. width:25px;
  6532. height:17px;
  6533. display:flex;
  6534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6535. font-weight:400;
  6536. font-style:normal;
  6537. font-size:12px;
  6538. }
  6539. #u41752 .text {
  6540. position:absolute;
  6541. align-self:flex-start;
  6542. padding:0px 0px 0px 0px;
  6543. box-sizing:border-box;
  6544. width:100%;
  6545. }
  6546. #u41752_text {
  6547. border-width:0px;
  6548. white-space:nowrap;
  6549. text-transform:none;
  6550. }
  6551. #u41753 {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:0px;
  6557. height:0px;
  6558. }
  6559. #u41754_img {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:0px;
  6563. top:0px;
  6564. width:24px;
  6565. height:24px;
  6566. }
  6567. #u41754 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:3124px;
  6571. top:794px;
  6572. width:24px;
  6573. height:24px;
  6574. display:flex;
  6575. font-size:8px;
  6576. }
  6577. #u41754 .text {
  6578. position:absolute;
  6579. align-self:center;
  6580. padding:2px 2px 2px 2px;
  6581. box-sizing:border-box;
  6582. width:100%;
  6583. }
  6584. #u41754_text {
  6585. border-width:0px;
  6586. word-wrap:break-word;
  6587. text-transform:none;
  6588. }
  6589. #u41755_div {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:25px;
  6595. height:17px;
  6596. background:inherit;
  6597. background-color:rgba(255, 255, 255, 0);
  6598. border:none;
  6599. border-radius:0px;
  6600. -moz-box-shadow:none;
  6601. -webkit-box-shadow:none;
  6602. box-shadow:none;
  6603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:12px;
  6607. }
  6608. #u41755 {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:3124px;
  6612. top:819px;
  6613. width:25px;
  6614. height:17px;
  6615. display:flex;
  6616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6617. font-weight:400;
  6618. font-style:normal;
  6619. font-size:12px;
  6620. }
  6621. #u41755 .text {
  6622. position:absolute;
  6623. align-self:flex-start;
  6624. padding:0px 0px 0px 0px;
  6625. box-sizing:border-box;
  6626. width:100%;
  6627. }
  6628. #u41755_text {
  6629. border-width:0px;
  6630. white-space:nowrap;
  6631. text-transform:none;
  6632. }
  6633. #u41756_div {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:0px;
  6637. top:0px;
  6638. width:375px;
  6639. height:681px;
  6640. background:inherit;
  6641. background-color:rgba(242, 242, 242, 0.462745098039216);
  6642. border:none;
  6643. border-radius:0px;
  6644. -moz-box-shadow:none;
  6645. -webkit-box-shadow:none;
  6646. box-shadow:none;
  6647. }
  6648. #u41756 {
  6649. border-width:0px;
  6650. position:absolute;
  6651. left:2814px;
  6652. top:107px;
  6653. width:375px;
  6654. height:681px;
  6655. display:flex;
  6656. }
  6657. #u41756 .text {
  6658. position:absolute;
  6659. align-self:center;
  6660. padding:2px 2px 2px 2px;
  6661. box-sizing:border-box;
  6662. width:100%;
  6663. }
  6664. #u41756_text {
  6665. border-width:0px;
  6666. word-wrap:break-word;
  6667. text-transform:none;
  6668. visibility:hidden;
  6669. }
  6670. #u41757 {
  6671. border-width:0px;
  6672. position:absolute;
  6673. left:0px;
  6674. top:0px;
  6675. width:0px;
  6676. height:0px;
  6677. }
  6678. #u41758_img {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:0px;
  6682. top:0px;
  6683. width:24px;
  6684. height:24px;
  6685. }
  6686. #u41758 {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:3036px;
  6690. top:792px;
  6691. width:24px;
  6692. height:24px;
  6693. display:flex;
  6694. font-size:8px;
  6695. }
  6696. #u41758 .text {
  6697. position:absolute;
  6698. align-self:center;
  6699. padding:2px 2px 2px 2px;
  6700. box-sizing:border-box;
  6701. width:100%;
  6702. }
  6703. #u41758_text {
  6704. border-width:0px;
  6705. word-wrap:break-word;
  6706. text-transform:none;
  6707. }
  6708. #u41759_div {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:0px;
  6712. top:0px;
  6713. width:37px;
  6714. height:17px;
  6715. background:inherit;
  6716. background-color:rgba(255, 255, 255, 0);
  6717. border:none;
  6718. border-radius:0px;
  6719. -moz-box-shadow:none;
  6720. -webkit-box-shadow:none;
  6721. box-shadow:none;
  6722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6723. font-weight:400;
  6724. font-style:normal;
  6725. font-size:12px;
  6726. }
  6727. #u41759 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:3030px;
  6731. top:817px;
  6732. width:37px;
  6733. height:17px;
  6734. display:flex;
  6735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6736. font-weight:400;
  6737. font-style:normal;
  6738. font-size:12px;
  6739. }
  6740. #u41759 .text {
  6741. position:absolute;
  6742. align-self:flex-start;
  6743. padding:0px 0px 0px 0px;
  6744. box-sizing:border-box;
  6745. width:100%;
  6746. }
  6747. #u41759_text {
  6748. border-width:0px;
  6749. white-space:nowrap;
  6750. text-transform:none;
  6751. }
  6752. #u41760 {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:0px;
  6756. top:0px;
  6757. width:0px;
  6758. height:0px;
  6759. }
  6760. #u41761_img {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:0px;
  6764. top:0px;
  6765. width:24px;
  6766. height:24px;
  6767. }
  6768. #u41761 {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:2942px;
  6772. top:792px;
  6773. width:24px;
  6774. height:24px;
  6775. display:flex;
  6776. font-size:8px;
  6777. }
  6778. #u41761 .text {
  6779. position:absolute;
  6780. align-self:center;
  6781. padding:2px 2px 2px 2px;
  6782. box-sizing:border-box;
  6783. width:100%;
  6784. }
  6785. #u41761_text {
  6786. border-width:0px;
  6787. word-wrap:break-word;
  6788. text-transform:none;
  6789. }
  6790. #u41762_div {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:0px;
  6794. top:0px;
  6795. width:37px;
  6796. height:17px;
  6797. background:inherit;
  6798. background-color:rgba(255, 255, 255, 0);
  6799. border:none;
  6800. border-radius:0px;
  6801. -moz-box-shadow:none;
  6802. -webkit-box-shadow:none;
  6803. box-shadow:none;
  6804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:12px;
  6808. }
  6809. #u41762 {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:2936px;
  6813. top:817px;
  6814. width:37px;
  6815. height:17px;
  6816. display:flex;
  6817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6818. font-weight:400;
  6819. font-style:normal;
  6820. font-size:12px;
  6821. }
  6822. #u41762 .text {
  6823. position:absolute;
  6824. align-self:flex-start;
  6825. padding:0px 0px 0px 0px;
  6826. box-sizing:border-box;
  6827. width:100%;
  6828. }
  6829. #u41762_text {
  6830. border-width:0px;
  6831. white-space:nowrap;
  6832. text-transform:none;
  6833. }
  6834. #u41763_div {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:375px;
  6840. height:732px;
  6841. background:inherit;
  6842. background-color:rgba(242, 242, 242, 0.996078431372549);
  6843. border:none;
  6844. border-top:0px;
  6845. border-radius:28px;
  6846. border-top-left-radius:0px;
  6847. border-top-right-radius:0px;
  6848. -moz-box-shadow:none;
  6849. -webkit-box-shadow:none;
  6850. box-shadow:none;
  6851. }
  6852. #u41763 {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:2814px;
  6856. top:107px;
  6857. width:375px;
  6858. height:732px;
  6859. display:flex;
  6860. }
  6861. #u41763 .text {
  6862. position:absolute;
  6863. align-self:center;
  6864. padding:2px 2px 2px 2px;
  6865. box-sizing:border-box;
  6866. width:100%;
  6867. }
  6868. #u41763_text {
  6869. border-width:0px;
  6870. word-wrap:break-word;
  6871. text-transform:none;
  6872. visibility:hidden;
  6873. }
  6874. #u41764_div {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:375px;
  6880. height:41px;
  6881. background:inherit;
  6882. background-color:rgba(255, 255, 255, 1);
  6883. box-sizing:border-box;
  6884. border-width:1px;
  6885. border-style:solid;
  6886. border-color:rgba(215, 215, 215, 1);
  6887. border-left:0px;
  6888. border-top:0px;
  6889. border-right:0px;
  6890. border-radius:0px;
  6891. border-bottom-right-radius:0px;
  6892. border-bottom-left-radius:0px;
  6893. -moz-box-shadow:none;
  6894. -webkit-box-shadow:none;
  6895. box-shadow:none;
  6896. }
  6897. #u41764 {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:2814px;
  6901. top:67px;
  6902. width:375px;
  6903. height:41px;
  6904. display:flex;
  6905. }
  6906. #u41764 .text {
  6907. position:absolute;
  6908. align-self:center;
  6909. padding:2px 2px 2px 2px;
  6910. box-sizing:border-box;
  6911. width:100%;
  6912. }
  6913. #u41764_text {
  6914. border-width:0px;
  6915. word-wrap:break-word;
  6916. text-transform:none;
  6917. visibility:hidden;
  6918. }
  6919. #u41765 {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:0px;
  6923. top:0px;
  6924. width:0px;
  6925. height:0px;
  6926. }
  6927. #u41766_div {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:88px;
  6933. height:32px;
  6934. background:inherit;
  6935. background-color:rgba(255, 255, 255, 1);
  6936. box-sizing:border-box;
  6937. border-width:1px;
  6938. border-style:solid;
  6939. border-color:rgba(242, 242, 242, 1);
  6940. border-radius:33px;
  6941. -moz-box-shadow:none;
  6942. -webkit-box-shadow:none;
  6943. box-shadow:none;
  6944. }
  6945. #u41766 {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:3094px;
  6949. top:71px;
  6950. width:88px;
  6951. height:32px;
  6952. display:flex;
  6953. }
  6954. #u41766 .text {
  6955. position:absolute;
  6956. align-self:center;
  6957. padding:2px 2px 2px 2px;
  6958. box-sizing:border-box;
  6959. width:100%;
  6960. }
  6961. #u41766_text {
  6962. border-width:0px;
  6963. word-wrap:break-word;
  6964. text-transform:none;
  6965. visibility:hidden;
  6966. }
  6967. #u41767 {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:0px;
  6973. height:0px;
  6974. }
  6975. #u41768_img {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:0px;
  6979. top:0px;
  6980. width:18px;
  6981. height:18px;
  6982. }
  6983. #u41768 {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:3157px;
  6987. top:78px;
  6988. width:18px;
  6989. height:18px;
  6990. display:flex;
  6991. }
  6992. #u41768 .text {
  6993. position:absolute;
  6994. align-self:center;
  6995. padding:2px 2px 2px 2px;
  6996. box-sizing:border-box;
  6997. width:100%;
  6998. }
  6999. #u41768_text {
  7000. border-width:0px;
  7001. word-wrap:break-word;
  7002. text-transform:none;
  7003. visibility:hidden;
  7004. }
  7005. #u41769_img {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:0px;
  7009. top:0px;
  7010. width:6px;
  7011. height:6px;
  7012. }
  7013. #u41769 {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:3163px;
  7017. top:84px;
  7018. width:6px;
  7019. height:6px;
  7020. display:flex;
  7021. }
  7022. #u41769 .text {
  7023. position:absolute;
  7024. align-self:center;
  7025. padding:2px 2px 2px 2px;
  7026. box-sizing:border-box;
  7027. width:100%;
  7028. }
  7029. #u41769_text {
  7030. border-width:0px;
  7031. word-wrap:break-word;
  7032. text-transform:none;
  7033. visibility:hidden;
  7034. }
  7035. #u41770 {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:0px;
  7039. top:0px;
  7040. width:0px;
  7041. height:0px;
  7042. }
  7043. #u41771_img {
  7044. border-width:0px;
  7045. position:absolute;
  7046. left:0px;
  7047. top:0px;
  7048. width:5px;
  7049. height:5px;
  7050. }
  7051. #u41771 {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:3108px;
  7055. top:85px;
  7056. width:5px;
  7057. height:5px;
  7058. display:flex;
  7059. }
  7060. #u41771 .text {
  7061. position:absolute;
  7062. align-self:center;
  7063. padding:2px 2px 2px 2px;
  7064. box-sizing:border-box;
  7065. width:100%;
  7066. }
  7067. #u41771_text {
  7068. border-width:0px;
  7069. word-wrap:break-word;
  7070. text-transform:none;
  7071. visibility:hidden;
  7072. }
  7073. #u41772_img {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:0px;
  7077. top:0px;
  7078. width:5px;
  7079. height:5px;
  7080. }
  7081. #u41772 {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:3124px;
  7085. top:85px;
  7086. width:5px;
  7087. height:5px;
  7088. display:flex;
  7089. }
  7090. #u41772 .text {
  7091. position:absolute;
  7092. align-self:center;
  7093. padding:2px 2px 2px 2px;
  7094. box-sizing:border-box;
  7095. width:100%;
  7096. }
  7097. #u41772_text {
  7098. border-width:0px;
  7099. word-wrap:break-word;
  7100. text-transform:none;
  7101. visibility:hidden;
  7102. }
  7103. #u41773_img {
  7104. border-width:0px;
  7105. position:absolute;
  7106. left:0px;
  7107. top:0px;
  7108. width:7px;
  7109. height:7px;
  7110. }
  7111. #u41773 {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:3115px;
  7115. top:84px;
  7116. width:7px;
  7117. height:7px;
  7118. display:flex;
  7119. }
  7120. #u41773 .text {
  7121. position:absolute;
  7122. align-self:center;
  7123. padding:2px 2px 2px 2px;
  7124. box-sizing:border-box;
  7125. width:100%;
  7126. }
  7127. #u41773_text {
  7128. border-width:0px;
  7129. word-wrap:break-word;
  7130. text-transform:none;
  7131. visibility:hidden;
  7132. }
  7133. #u41774_img {
  7134. border-width:0px;
  7135. position:absolute;
  7136. left:0px;
  7137. top:0px;
  7138. width:19px;
  7139. height:2px;
  7140. }
  7141. #u41774 {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:3132px;
  7145. top:87px;
  7146. width:18px;
  7147. height:1px;
  7148. display:flex;
  7149. -webkit-transform:rotate(90deg);
  7150. -moz-transform:rotate(90deg);
  7151. -ms-transform:rotate(90deg);
  7152. transform:rotate(90deg);
  7153. }
  7154. #u41774 .text {
  7155. position:absolute;
  7156. align-self:center;
  7157. padding:2px 2px 2px 2px;
  7158. box-sizing:border-box;
  7159. width:100%;
  7160. }
  7161. #u41774_text {
  7162. border-width:0px;
  7163. word-wrap:break-word;
  7164. text-transform:none;
  7165. visibility:hidden;
  7166. }
  7167. #u41775_div {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:12px;
  7173. height:12px;
  7174. background:inherit;
  7175. background-color:rgba(255, 255, 255, 0);
  7176. box-sizing:border-box;
  7177. border-width:2px;
  7178. border-style:solid;
  7179. border-color:rgba(51, 51, 51, 1);
  7180. border-right:0px;
  7181. border-bottom:0px;
  7182. border-radius:0px;
  7183. border-top-right-radius:0px;
  7184. border-bottom-left-radius:0px;
  7185. -moz-box-shadow:none;
  7186. -webkit-box-shadow:none;
  7187. box-shadow:none;
  7188. }
  7189. #u41775 {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:2829px;
  7193. top:81px;
  7194. width:12px;
  7195. height:12px;
  7196. display:flex;
  7197. -webkit-transform:rotate(315deg);
  7198. -moz-transform:rotate(315deg);
  7199. -ms-transform:rotate(315deg);
  7200. transform:rotate(315deg);
  7201. }
  7202. #u41775 .text {
  7203. position:absolute;
  7204. align-self:center;
  7205. padding:2px 2px 2px 2px;
  7206. box-sizing:border-box;
  7207. width:100%;
  7208. }
  7209. #u41775_text {
  7210. border-width:0px;
  7211. word-wrap:break-word;
  7212. text-transform:none;
  7213. visibility:hidden;
  7214. }
  7215. #u41776_div {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:73px;
  7221. height:25px;
  7222. background:inherit;
  7223. background-color:rgba(255, 255, 255, 0);
  7224. border:none;
  7225. border-radius:0px;
  7226. -moz-box-shadow:none;
  7227. -webkit-box-shadow:none;
  7228. box-shadow:none;
  7229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7230. font-weight:400;
  7231. font-style:normal;
  7232. font-size:18px;
  7233. }
  7234. #u41776 {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:2849px;
  7238. top:75px;
  7239. width:73px;
  7240. height:25px;
  7241. display:flex;
  7242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7243. font-weight:400;
  7244. font-style:normal;
  7245. font-size:18px;
  7246. }
  7247. #u41776 .text {
  7248. position:absolute;
  7249. align-self:flex-start;
  7250. padding:0px 0px 0px 0px;
  7251. box-sizing:border-box;
  7252. width:100%;
  7253. }
  7254. #u41776_text {
  7255. border-width:0px;
  7256. white-space:nowrap;
  7257. text-transform:none;
  7258. }
  7259. #u41777 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:0px;
  7263. top:0px;
  7264. width:0px;
  7265. height:0px;
  7266. }
  7267. #u41778_div {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:375px;
  7273. height:110px;
  7274. background:inherit;
  7275. background-color:rgba(255, 255, 255, 1);
  7276. border:none;
  7277. border-left:0px;
  7278. border-top:0px;
  7279. border-right:0px;
  7280. border-radius:0px;
  7281. border-bottom-right-radius:0px;
  7282. border-bottom-left-radius:0px;
  7283. -moz-box-shadow:none;
  7284. -webkit-box-shadow:none;
  7285. box-shadow:none;
  7286. }
  7287. #u41778 {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:2814px;
  7291. top:389px;
  7292. width:375px;
  7293. height:110px;
  7294. display:flex;
  7295. }
  7296. #u41778 .text {
  7297. position:absolute;
  7298. align-self:center;
  7299. padding:2px 2px 2px 2px;
  7300. box-sizing:border-box;
  7301. width:100%;
  7302. }
  7303. #u41778_text {
  7304. border-width:0px;
  7305. word-wrap:break-word;
  7306. text-transform:none;
  7307. visibility:hidden;
  7308. }
  7309. #u41779_div {
  7310. border-width:0px;
  7311. position:absolute;
  7312. left:0px;
  7313. top:0px;
  7314. width:167px;
  7315. height:30px;
  7316. background:inherit;
  7317. background-color:rgba(255, 255, 255, 0);
  7318. border:none;
  7319. border-left:0px;
  7320. border-top:0px;
  7321. border-right:0px;
  7322. border-radius:0px;
  7323. border-bottom-right-radius:0px;
  7324. border-bottom-left-radius:0px;
  7325. -moz-box-shadow:none;
  7326. -webkit-box-shadow:none;
  7327. box-shadow:none;
  7328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7329. font-weight:400;
  7330. font-style:normal;
  7331. font-size:12px;
  7332. line-height:30px;
  7333. }
  7334. #u41779 {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:2827px;
  7338. top:399px;
  7339. width:167px;
  7340. height:30px;
  7341. display:flex;
  7342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:12px;
  7346. line-height:30px;
  7347. }
  7348. #u41779 .text {
  7349. position:absolute;
  7350. align-self:flex-start;
  7351. padding:0px 0px 0px 0px;
  7352. box-sizing:border-box;
  7353. width:100%;
  7354. }
  7355. #u41779_text {
  7356. border-width:0px;
  7357. white-space:nowrap;
  7358. text-transform:none;
  7359. }
  7360. #u41780_div {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:186px;
  7366. height:30px;
  7367. background:inherit;
  7368. background-color:rgba(255, 255, 255, 0);
  7369. border:none;
  7370. border-left:0px;
  7371. border-top:0px;
  7372. border-right:0px;
  7373. border-radius:0px;
  7374. border-bottom-right-radius:0px;
  7375. border-bottom-left-radius:0px;
  7376. -moz-box-shadow:none;
  7377. -webkit-box-shadow:none;
  7378. box-shadow:none;
  7379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7380. font-weight:400;
  7381. font-style:normal;
  7382. font-size:12px;
  7383. line-height:30px;
  7384. }
  7385. #u41780 {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:2827px;
  7389. top:429px;
  7390. width:186px;
  7391. height:30px;
  7392. display:flex;
  7393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7394. font-weight:400;
  7395. font-style:normal;
  7396. font-size:12px;
  7397. line-height:30px;
  7398. }
  7399. #u41780 .text {
  7400. position:absolute;
  7401. align-self:flex-start;
  7402. padding:0px 0px 0px 0px;
  7403. box-sizing:border-box;
  7404. width:100%;
  7405. }
  7406. #u41780_text {
  7407. border-width:0px;
  7408. white-space:nowrap;
  7409. text-transform:none;
  7410. }
  7411. #u41781_div {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:0px;
  7415. top:0px;
  7416. width:133px;
  7417. height:30px;
  7418. background:inherit;
  7419. background-color:rgba(255, 255, 255, 0);
  7420. border:none;
  7421. border-left:0px;
  7422. border-top:0px;
  7423. border-right:0px;
  7424. border-radius:0px;
  7425. border-bottom-right-radius:0px;
  7426. border-bottom-left-radius:0px;
  7427. -moz-box-shadow:none;
  7428. -webkit-box-shadow:none;
  7429. box-shadow:none;
  7430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. font-size:12px;
  7434. line-height:30px;
  7435. }
  7436. #u41781 {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:2827px;
  7440. top:459px;
  7441. width:133px;
  7442. height:30px;
  7443. display:flex;
  7444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7445. font-weight:400;
  7446. font-style:normal;
  7447. font-size:12px;
  7448. line-height:30px;
  7449. }
  7450. #u41781 .text {
  7451. position:absolute;
  7452. align-self:flex-start;
  7453. padding:0px 0px 0px 0px;
  7454. box-sizing:border-box;
  7455. width:100%;
  7456. }
  7457. #u41781_text {
  7458. border-width:0px;
  7459. white-space:nowrap;
  7460. text-transform:none;
  7461. }
  7462. #u41782 {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:0px;
  7468. height:0px;
  7469. }
  7470. #u41783_div {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:0px;
  7474. top:0px;
  7475. width:375px;
  7476. height:60px;
  7477. background:inherit;
  7478. background-color:rgba(255, 255, 255, 1);
  7479. box-sizing:border-box;
  7480. border-width:1px;
  7481. border-style:solid;
  7482. border-color:rgba(242, 242, 242, 1);
  7483. border-radius:20px;
  7484. border-top-left-radius:0px;
  7485. border-top-right-radius:0px;
  7486. -moz-box-shadow:none;
  7487. -webkit-box-shadow:none;
  7488. box-shadow:none;
  7489. }
  7490. #u41783 {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:494px;
  7494. top:779px;
  7495. width:375px;
  7496. height:60px;
  7497. display:flex;
  7498. }
  7499. #u41783 .text {
  7500. position:absolute;
  7501. align-self:center;
  7502. padding:2px 2px 2px 2px;
  7503. box-sizing:border-box;
  7504. width:100%;
  7505. }
  7506. #u41783_text {
  7507. border-width:0px;
  7508. word-wrap:break-word;
  7509. text-transform:none;
  7510. visibility:hidden;
  7511. }
  7512. #u41784_div {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:342px;
  7518. height:40px;
  7519. background:inherit;
  7520. background-color:rgba(255, 255, 255, 1);
  7521. box-sizing:border-box;
  7522. border-width:1px;
  7523. border-style:solid;
  7524. border-color:rgba(121, 121, 121, 1);
  7525. border-radius:63px;
  7526. -moz-box-shadow:none;
  7527. -webkit-box-shadow:none;
  7528. box-shadow:none;
  7529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:14px;
  7533. color:#555555;
  7534. }
  7535. #u41784 {
  7536. border-width:0px;
  7537. position:absolute;
  7538. left:513px;
  7539. top:789px;
  7540. width:342px;
  7541. height:40px;
  7542. display:flex;
  7543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:14px;
  7547. color:#555555;
  7548. }
  7549. #u41784 .text {
  7550. position:absolute;
  7551. align-self:center;
  7552. padding:2px 2px 2px 2px;
  7553. box-sizing:border-box;
  7554. width:100%;
  7555. }
  7556. #u41784_text {
  7557. border-width:0px;
  7558. word-wrap:break-word;
  7559. text-transform:none;
  7560. }
  7561. #u41785 {
  7562. border-width:0px;
  7563. position:absolute;
  7564. left:0px;
  7565. top:0px;
  7566. width:0px;
  7567. height:0px;
  7568. }
  7569. #u41786_div {
  7570. border-width:0px;
  7571. position:absolute;
  7572. left:0px;
  7573. top:0px;
  7574. width:240px;
  7575. height:122px;
  7576. background:inherit;
  7577. background-color:rgba(255, 255, 255, 1);
  7578. border:none;
  7579. border-radius:4px;
  7580. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  7581. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  7582. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  7583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7584. font-weight:400;
  7585. font-style:normal;
  7586. font-size:12px;
  7587. color:#FFFFFF;
  7588. }
  7589. #u41786 {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:132px;
  7593. top:657px;
  7594. width:240px;
  7595. height:122px;
  7596. display:flex;
  7597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7598. font-weight:400;
  7599. font-style:normal;
  7600. font-size:12px;
  7601. color:#FFFFFF;
  7602. }
  7603. #u41786 .text {
  7604. position:absolute;
  7605. align-self:center;
  7606. padding:8px 15px 8px 15px;
  7607. box-sizing:border-box;
  7608. width:100%;
  7609. }
  7610. #u41786_text {
  7611. border-width:0px;
  7612. word-wrap:break-word;
  7613. text-transform:none;
  7614. visibility:hidden;
  7615. }
  7616. #u41787_div {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:183px;
  7622. height:35px;
  7623. background:inherit;
  7624. background-color:rgba(51, 153, 255, 0);
  7625. border:none;
  7626. border-radius:0px;
  7627. -moz-box-shadow:none;
  7628. -webkit-box-shadow:none;
  7629. box-shadow:none;
  7630. font-family:'.PingFangSC-Regular', '.PingFang SC', sans-serif;
  7631. font-weight:400;
  7632. font-style:normal;
  7633. font-size:16px;
  7634. }
  7635. #u41787 {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:161px;
  7639. top:682px;
  7640. width:183px;
  7641. height:35px;
  7642. display:flex;
  7643. font-family:'.PingFangSC-Regular', '.PingFang SC', sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:16px;
  7647. }
  7648. #u41787 .text {
  7649. position:absolute;
  7650. align-self:center;
  7651. padding:8px 15px 8px 20px;
  7652. box-sizing:border-box;
  7653. width:100%;
  7654. }
  7655. #u41787_text {
  7656. border-width:0px;
  7657. white-space:nowrap;
  7658. text-transform:none;
  7659. }
  7660. #u41788_img {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:120px;
  7666. height:38px;
  7667. }
  7668. #u41788 {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:132px;
  7672. top:741px;
  7673. width:120px;
  7674. height:38px;
  7675. display:flex;
  7676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7677. font-weight:400;
  7678. font-style:normal;
  7679. font-size:12px;
  7680. }
  7681. #u41788 .text {
  7682. position:absolute;
  7683. align-self:center;
  7684. padding:8px 0px 8px 0px;
  7685. box-sizing:border-box;
  7686. width:100%;
  7687. }
  7688. #u41788_text {
  7689. border-width:0px;
  7690. word-wrap:break-word;
  7691. text-transform:none;
  7692. }
  7693. #u41789_img {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:0px;
  7697. top:0px;
  7698. width:121px;
  7699. height:38px;
  7700. }
  7701. #u41789 {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:251px;
  7705. top:741px;
  7706. width:121px;
  7707. height:38px;
  7708. display:flex;
  7709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7710. font-weight:400;
  7711. font-style:normal;
  7712. font-size:12px;
  7713. color:#1890FF;
  7714. }
  7715. #u41789 .text {
  7716. position:absolute;
  7717. align-self:center;
  7718. padding:8px 0px 8px 0px;
  7719. box-sizing:border-box;
  7720. width:100%;
  7721. }
  7722. #u41789_text {
  7723. border-width:0px;
  7724. word-wrap:break-word;
  7725. text-transform:none;
  7726. }
  7727. #u41790 {
  7728. border-width:0px;
  7729. position:absolute;
  7730. left:0px;
  7731. top:0px;
  7732. width:0px;
  7733. height:0px;
  7734. }
  7735. #u41791_div {
  7736. border-width:0px;
  7737. position:absolute;
  7738. left:0px;
  7739. top:0px;
  7740. width:375px;
  7741. height:390px;
  7742. background:inherit;
  7743. background-color:rgba(255, 255, 255, 1);
  7744. border:none;
  7745. border-left:0px;
  7746. border-right:0px;
  7747. border-radius:0px;
  7748. border-top-left-radius:0px;
  7749. border-top-right-radius:0px;
  7750. border-bottom-right-radius:0px;
  7751. border-bottom-left-radius:0px;
  7752. -moz-box-shadow:none;
  7753. -webkit-box-shadow:none;
  7754. box-shadow:none;
  7755. }
  7756. #u41791 {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:962px;
  7760. top:389px;
  7761. width:375px;
  7762. height:390px;
  7763. display:flex;
  7764. }
  7765. #u41791 .text {
  7766. position:absolute;
  7767. align-self:center;
  7768. padding:2px 2px 2px 2px;
  7769. box-sizing:border-box;
  7770. width:100%;
  7771. }
  7772. #u41791_text {
  7773. border-width:0px;
  7774. word-wrap:break-word;
  7775. text-transform:none;
  7776. visibility:hidden;
  7777. }
  7778. #u41792_div {
  7779. border-width:0px;
  7780. position:absolute;
  7781. left:0px;
  7782. top:0px;
  7783. width:57px;
  7784. height:30px;
  7785. background:inherit;
  7786. background-color:rgba(255, 255, 255, 0);
  7787. border:none;
  7788. border-left:0px;
  7789. border-top:0px;
  7790. border-right:0px;
  7791. border-radius:0px;
  7792. border-bottom-right-radius:0px;
  7793. border-bottom-left-radius:0px;
  7794. -moz-box-shadow:none;
  7795. -webkit-box-shadow:none;
  7796. box-shadow:none;
  7797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7798. font-weight:400;
  7799. font-style:normal;
  7800. font-size:14px;
  7801. line-height:30px;
  7802. }
  7803. #u41792 {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:986px;
  7807. top:399px;
  7808. width:57px;
  7809. height:30px;
  7810. display:flex;
  7811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7812. font-weight:400;
  7813. font-style:normal;
  7814. font-size:14px;
  7815. line-height:30px;
  7816. }
  7817. #u41792 .text {
  7818. position:absolute;
  7819. align-self:flex-start;
  7820. padding:0px 0px 0px 0px;
  7821. box-sizing:border-box;
  7822. width:100%;
  7823. }
  7824. #u41792_text {
  7825. border-width:0px;
  7826. white-space:nowrap;
  7827. text-transform:none;
  7828. }
  7829. #u41793_div {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:0px;
  7833. top:0px;
  7834. width:181px;
  7835. height:30px;
  7836. background:inherit;
  7837. background-color:rgba(255, 255, 255, 0);
  7838. border:none;
  7839. border-left:0px;
  7840. border-top:0px;
  7841. border-right:0px;
  7842. border-radius:0px;
  7843. border-bottom-right-radius:0px;
  7844. border-bottom-left-radius:0px;
  7845. -moz-box-shadow:none;
  7846. -webkit-box-shadow:none;
  7847. box-shadow:none;
  7848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7849. font-weight:400;
  7850. font-style:normal;
  7851. font-size:12px;
  7852. line-height:30px;
  7853. }
  7854. #u41793 {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:986px;
  7858. top:429px;
  7859. width:181px;
  7860. height:30px;
  7861. display:flex;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:12px;
  7866. line-height:30px;
  7867. }
  7868. #u41793 .text {
  7869. position:absolute;
  7870. align-self:flex-start;
  7871. padding:0px 0px 0px 0px;
  7872. box-sizing:border-box;
  7873. width:100%;
  7874. }
  7875. #u41793_text {
  7876. border-width:0px;
  7877. white-space:nowrap;
  7878. text-transform:none;
  7879. }
  7880. #u41794_div {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:167px;
  7886. height:30px;
  7887. background:inherit;
  7888. background-color:rgba(255, 255, 255, 0);
  7889. border:none;
  7890. border-left:0px;
  7891. border-top:0px;
  7892. border-right:0px;
  7893. border-radius:0px;
  7894. border-bottom-right-radius:0px;
  7895. border-bottom-left-radius:0px;
  7896. -moz-box-shadow:none;
  7897. -webkit-box-shadow:none;
  7898. box-shadow:none;
  7899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7900. font-weight:400;
  7901. font-style:normal;
  7902. font-size:12px;
  7903. line-height:30px;
  7904. }
  7905. #u41794 {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:986px;
  7909. top:459px;
  7910. width:167px;
  7911. height:30px;
  7912. display:flex;
  7913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7914. font-weight:400;
  7915. font-style:normal;
  7916. font-size:12px;
  7917. line-height:30px;
  7918. }
  7919. #u41794 .text {
  7920. position:absolute;
  7921. align-self:flex-start;
  7922. padding:0px 0px 0px 0px;
  7923. box-sizing:border-box;
  7924. width:100%;
  7925. }
  7926. #u41794_text {
  7927. border-width:0px;
  7928. white-space:nowrap;
  7929. text-transform:none;
  7930. }
  7931. #u41795_div {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:0px;
  7935. top:0px;
  7936. width:167px;
  7937. height:30px;
  7938. background:inherit;
  7939. background-color:rgba(255, 255, 255, 0);
  7940. border:none;
  7941. border-left:0px;
  7942. border-top:0px;
  7943. border-right:0px;
  7944. border-radius:0px;
  7945. border-bottom-right-radius:0px;
  7946. border-bottom-left-radius:0px;
  7947. -moz-box-shadow:none;
  7948. -webkit-box-shadow:none;
  7949. box-shadow:none;
  7950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7951. font-weight:400;
  7952. font-style:normal;
  7953. font-size:12px;
  7954. line-height:30px;
  7955. }
  7956. #u41795 {
  7957. border-width:0px;
  7958. position:absolute;
  7959. left:986px;
  7960. top:489px;
  7961. width:167px;
  7962. height:30px;
  7963. display:flex;
  7964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7965. font-weight:400;
  7966. font-style:normal;
  7967. font-size:12px;
  7968. line-height:30px;
  7969. }
  7970. #u41795 .text {
  7971. position:absolute;
  7972. align-self:flex-start;
  7973. padding:0px 0px 0px 0px;
  7974. box-sizing:border-box;
  7975. width:100%;
  7976. }
  7977. #u41795_text {
  7978. border-width:0px;
  7979. white-space:nowrap;
  7980. text-transform:none;
  7981. }
  7982. #u41796_div {
  7983. border-width:0px;
  7984. position:absolute;
  7985. left:0px;
  7986. top:0px;
  7987. width:133px;
  7988. height:30px;
  7989. background:inherit;
  7990. background-color:rgba(255, 255, 255, 0);
  7991. border:none;
  7992. border-left:0px;
  7993. border-top:0px;
  7994. border-right:0px;
  7995. border-radius:0px;
  7996. border-bottom-right-radius:0px;
  7997. border-bottom-left-radius:0px;
  7998. -moz-box-shadow:none;
  7999. -webkit-box-shadow:none;
  8000. box-shadow:none;
  8001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8002. font-weight:400;
  8003. font-style:normal;
  8004. font-size:12px;
  8005. color:#0089FE;
  8006. line-height:30px;
  8007. }
  8008. #u41796 {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:1190px;
  8012. top:399px;
  8013. width:133px;
  8014. height:30px;
  8015. display:flex;
  8016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8017. font-weight:400;
  8018. font-style:normal;
  8019. font-size:12px;
  8020. color:#0089FE;
  8021. line-height:30px;
  8022. }
  8023. #u41796 .text {
  8024. position:absolute;
  8025. align-self:flex-start;
  8026. padding:0px 0px 0px 0px;
  8027. box-sizing:border-box;
  8028. width:100%;
  8029. }
  8030. #u41796_text {
  8031. border-width:0px;
  8032. white-space:nowrap;
  8033. text-transform:none;
  8034. }
  8035. #u41797_div {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:0px;
  8039. top:0px;
  8040. width:337px;
  8041. height:44px;
  8042. background:inherit;
  8043. background-color:rgba(51, 51, 51, 1);
  8044. border:none;
  8045. border-radius:5px;
  8046. -moz-box-shadow:none;
  8047. -webkit-box-shadow:none;
  8048. box-shadow:none;
  8049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8050. font-weight:400;
  8051. font-style:normal;
  8052. font-size:14px;
  8053. color:#FFFFFF;
  8054. line-height:30px;
  8055. }
  8056. #u41797 {
  8057. border-width:0px;
  8058. position:absolute;
  8059. left:980px;
  8060. top:529px;
  8061. width:337px;
  8062. height:44px;
  8063. display:flex;
  8064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8065. font-weight:400;
  8066. font-style:normal;
  8067. font-size:14px;
  8068. color:#FFFFFF;
  8069. line-height:30px;
  8070. }
  8071. #u41797 .text {
  8072. position:absolute;
  8073. align-self:center;
  8074. padding:2px 2px 2px 2px;
  8075. box-sizing:border-box;
  8076. width:100%;
  8077. }
  8078. #u41797_text {
  8079. border-width:0px;
  8080. word-wrap:break-word;
  8081. text-transform:none;
  8082. }
  8083. #u41798_img {
  8084. border-width:0px;
  8085. position:absolute;
  8086. left:0px;
  8087. top:0px;
  8088. width:375px;
  8089. height:192px;
  8090. }
  8091. #u41798 {
  8092. border-width:0px;
  8093. position:absolute;
  8094. left:962px;
  8095. top:587px;
  8096. width:375px;
  8097. height:192px;
  8098. display:flex;
  8099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8100. font-weight:400;
  8101. font-style:normal;
  8102. }
  8103. #u41798 .text {
  8104. position:absolute;
  8105. align-self:center;
  8106. padding:2px 2px 2px 2px;
  8107. box-sizing:border-box;
  8108. width:100%;
  8109. }
  8110. #u41798_text {
  8111. border-width:0px;
  8112. word-wrap:break-word;
  8113. text-transform:none;
  8114. }
  8115. #u41799 {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:0px;
  8119. top:0px;
  8120. width:0px;
  8121. height:0px;
  8122. }
  8123. #u41800_div {
  8124. border-width:0px;
  8125. position:absolute;
  8126. left:0px;
  8127. top:0px;
  8128. width:375px;
  8129. height:60px;
  8130. background:inherit;
  8131. background-color:rgba(255, 255, 255, 1);
  8132. box-sizing:border-box;
  8133. border-width:1px;
  8134. border-style:solid;
  8135. border-color:rgba(242, 242, 242, 1);
  8136. border-radius:20px;
  8137. border-top-left-radius:0px;
  8138. border-top-right-radius:0px;
  8139. -moz-box-shadow:none;
  8140. -webkit-box-shadow:none;
  8141. box-shadow:none;
  8142. }
  8143. #u41800 {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:962px;
  8147. top:779px;
  8148. width:375px;
  8149. height:60px;
  8150. display:flex;
  8151. }
  8152. #u41800 .text {
  8153. position:absolute;
  8154. align-self:center;
  8155. padding:2px 2px 2px 2px;
  8156. box-sizing:border-box;
  8157. width:100%;
  8158. }
  8159. #u41800_text {
  8160. border-width:0px;
  8161. word-wrap:break-word;
  8162. text-transform:none;
  8163. visibility:hidden;
  8164. }
  8165. #u41801_div {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:0px;
  8169. top:0px;
  8170. width:342px;
  8171. height:40px;
  8172. background:inherit;
  8173. background-color:rgba(255, 255, 255, 1);
  8174. box-sizing:border-box;
  8175. border-width:1px;
  8176. border-style:solid;
  8177. border-color:rgba(121, 121, 121, 1);
  8178. border-radius:63px;
  8179. -moz-box-shadow:none;
  8180. -webkit-box-shadow:none;
  8181. box-shadow:none;
  8182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8183. font-weight:400;
  8184. font-style:normal;
  8185. font-size:14px;
  8186. color:#555555;
  8187. }
  8188. #u41801 {
  8189. border-width:0px;
  8190. position:absolute;
  8191. left:981px;
  8192. top:789px;
  8193. width:342px;
  8194. height:40px;
  8195. display:flex;
  8196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8197. font-weight:400;
  8198. font-style:normal;
  8199. font-size:14px;
  8200. color:#555555;
  8201. }
  8202. #u41801 .text {
  8203. position:absolute;
  8204. align-self:center;
  8205. padding:2px 2px 2px 2px;
  8206. box-sizing:border-box;
  8207. width:100%;
  8208. }
  8209. #u41801_text {
  8210. border-width:0px;
  8211. word-wrap:break-word;
  8212. text-transform:none;
  8213. }
  8214. #u41803_img {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:0px;
  8218. top:0px;
  8219. width:433px;
  8220. height:865px;
  8221. }
  8222. #u41803 {
  8223. border-width:0px;
  8224. position:absolute;
  8225. left:1396px;
  8226. top:0px;
  8227. width:433px;
  8228. height:865px;
  8229. display:flex;
  8230. }
  8231. #u41803 .text {
  8232. position:absolute;
  8233. align-self:center;
  8234. padding:2px 2px 2px 2px;
  8235. box-sizing:border-box;
  8236. width:100%;
  8237. }
  8238. #u41803_text {
  8239. border-width:0px;
  8240. word-wrap:break-word;
  8241. text-transform:none;
  8242. visibility:hidden;
  8243. }
  8244. #u41804_div {
  8245. border-width:0px;
  8246. position:absolute;
  8247. left:0px;
  8248. top:0px;
  8249. width:375px;
  8250. height:40px;
  8251. background:inherit;
  8252. background-color:rgba(255, 255, 255, 1);
  8253. box-sizing:border-box;
  8254. border-width:1px;
  8255. border-style:solid;
  8256. border-color:rgba(215, 215, 215, 1);
  8257. border-left:0px;
  8258. border-top:0px;
  8259. border-right:0px;
  8260. border-radius:0px;
  8261. border-bottom-right-radius:0px;
  8262. border-bottom-left-radius:0px;
  8263. -moz-box-shadow:none;
  8264. -webkit-box-shadow:none;
  8265. box-shadow:none;
  8266. }
  8267. #u41804 {
  8268. border-width:0px;
  8269. position:absolute;
  8270. left:1425px;
  8271. top:67px;
  8272. width:375px;
  8273. height:40px;
  8274. display:flex;
  8275. }
  8276. #u41804 .text {
  8277. position:absolute;
  8278. align-self:center;
  8279. padding:2px 2px 2px 2px;
  8280. box-sizing:border-box;
  8281. width:100%;
  8282. }
  8283. #u41804_text {
  8284. border-width:0px;
  8285. word-wrap:break-word;
  8286. text-transform:none;
  8287. visibility:hidden;
  8288. }
  8289. #u41805 {
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:0px;
  8293. top:0px;
  8294. width:0px;
  8295. height:0px;
  8296. }
  8297. #u41806_div {
  8298. border-width:0px;
  8299. position:absolute;
  8300. left:0px;
  8301. top:0px;
  8302. width:88px;
  8303. height:32px;
  8304. background:inherit;
  8305. background-color:rgba(255, 255, 255, 1);
  8306. box-sizing:border-box;
  8307. border-width:1px;
  8308. border-style:solid;
  8309. border-color:rgba(242, 242, 242, 1);
  8310. border-radius:33px;
  8311. -moz-box-shadow:none;
  8312. -webkit-box-shadow:none;
  8313. box-shadow:none;
  8314. }
  8315. #u41806 {
  8316. border-width:0px;
  8317. position:absolute;
  8318. left:1705px;
  8319. top:71px;
  8320. width:88px;
  8321. height:32px;
  8322. display:flex;
  8323. }
  8324. #u41806 .text {
  8325. position:absolute;
  8326. align-self:center;
  8327. padding:2px 2px 2px 2px;
  8328. box-sizing:border-box;
  8329. width:100%;
  8330. }
  8331. #u41806_text {
  8332. border-width:0px;
  8333. word-wrap:break-word;
  8334. text-transform:none;
  8335. visibility:hidden;
  8336. }
  8337. #u41807 {
  8338. border-width:0px;
  8339. position:absolute;
  8340. left:0px;
  8341. top:0px;
  8342. width:0px;
  8343. height:0px;
  8344. }
  8345. #u41808_img {
  8346. border-width:0px;
  8347. position:absolute;
  8348. left:0px;
  8349. top:0px;
  8350. width:18px;
  8351. height:18px;
  8352. }
  8353. #u41808 {
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:1768px;
  8357. top:78px;
  8358. width:18px;
  8359. height:18px;
  8360. display:flex;
  8361. }
  8362. #u41808 .text {
  8363. position:absolute;
  8364. align-self:center;
  8365. padding:2px 2px 2px 2px;
  8366. box-sizing:border-box;
  8367. width:100%;
  8368. }
  8369. #u41808_text {
  8370. border-width:0px;
  8371. word-wrap:break-word;
  8372. text-transform:none;
  8373. visibility:hidden;
  8374. }
  8375. #u41809_img {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:0px;
  8379. top:0px;
  8380. width:6px;
  8381. height:6px;
  8382. }
  8383. #u41809 {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:1774px;
  8387. top:84px;
  8388. width:6px;
  8389. height:6px;
  8390. display:flex;
  8391. }
  8392. #u41809 .text {
  8393. position:absolute;
  8394. align-self:center;
  8395. padding:2px 2px 2px 2px;
  8396. box-sizing:border-box;
  8397. width:100%;
  8398. }
  8399. #u41809_text {
  8400. border-width:0px;
  8401. word-wrap:break-word;
  8402. text-transform:none;
  8403. visibility:hidden;
  8404. }
  8405. #u41810 {
  8406. border-width:0px;
  8407. position:absolute;
  8408. left:0px;
  8409. top:0px;
  8410. width:0px;
  8411. height:0px;
  8412. }
  8413. #u41811_img {
  8414. border-width:0px;
  8415. position:absolute;
  8416. left:0px;
  8417. top:0px;
  8418. width:5px;
  8419. height:5px;
  8420. }
  8421. #u41811 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:1719px;
  8425. top:85px;
  8426. width:5px;
  8427. height:5px;
  8428. display:flex;
  8429. }
  8430. #u41811 .text {
  8431. position:absolute;
  8432. align-self:center;
  8433. padding:2px 2px 2px 2px;
  8434. box-sizing:border-box;
  8435. width:100%;
  8436. }
  8437. #u41811_text {
  8438. border-width:0px;
  8439. word-wrap:break-word;
  8440. text-transform:none;
  8441. visibility:hidden;
  8442. }
  8443. #u41812_img {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:0px;
  8447. top:0px;
  8448. width:5px;
  8449. height:5px;
  8450. }
  8451. #u41812 {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:1735px;
  8455. top:85px;
  8456. width:5px;
  8457. height:5px;
  8458. display:flex;
  8459. }
  8460. #u41812 .text {
  8461. position:absolute;
  8462. align-self:center;
  8463. padding:2px 2px 2px 2px;
  8464. box-sizing:border-box;
  8465. width:100%;
  8466. }
  8467. #u41812_text {
  8468. border-width:0px;
  8469. word-wrap:break-word;
  8470. text-transform:none;
  8471. visibility:hidden;
  8472. }
  8473. #u41813_img {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:0px;
  8477. top:0px;
  8478. width:7px;
  8479. height:7px;
  8480. }
  8481. #u41813 {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:1726px;
  8485. top:84px;
  8486. width:7px;
  8487. height:7px;
  8488. display:flex;
  8489. }
  8490. #u41813 .text {
  8491. position:absolute;
  8492. align-self:center;
  8493. padding:2px 2px 2px 2px;
  8494. box-sizing:border-box;
  8495. width:100%;
  8496. }
  8497. #u41813_text {
  8498. border-width:0px;
  8499. word-wrap:break-word;
  8500. text-transform:none;
  8501. visibility:hidden;
  8502. }
  8503. #u41814_img {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:0px;
  8507. top:0px;
  8508. width:19px;
  8509. height:2px;
  8510. }
  8511. #u41814 {
  8512. border-width:0px;
  8513. position:absolute;
  8514. left:1743px;
  8515. top:87px;
  8516. width:18px;
  8517. height:1px;
  8518. display:flex;
  8519. -webkit-transform:rotate(90deg);
  8520. -moz-transform:rotate(90deg);
  8521. -ms-transform:rotate(90deg);
  8522. transform:rotate(90deg);
  8523. }
  8524. #u41814 .text {
  8525. position:absolute;
  8526. align-self:center;
  8527. padding:2px 2px 2px 2px;
  8528. box-sizing:border-box;
  8529. width:100%;
  8530. }
  8531. #u41814_text {
  8532. border-width:0px;
  8533. word-wrap:break-word;
  8534. text-transform:none;
  8535. visibility:hidden;
  8536. }
  8537. #u41815_img {
  8538. border-width:0px;
  8539. position:absolute;
  8540. left:0px;
  8541. top:0px;
  8542. width:375px;
  8543. height:44px;
  8544. }
  8545. #u41815 {
  8546. border-width:0px;
  8547. position:absolute;
  8548. left:1425px;
  8549. top:24px;
  8550. width:375px;
  8551. height:44px;
  8552. display:flex;
  8553. }
  8554. #u41815 .text {
  8555. position:absolute;
  8556. align-self:center;
  8557. padding:2px 2px 2px 2px;
  8558. box-sizing:border-box;
  8559. width:100%;
  8560. }
  8561. #u41815_text {
  8562. border-width:0px;
  8563. word-wrap:break-word;
  8564. text-transform:none;
  8565. visibility:hidden;
  8566. }
  8567. #u41816_div {
  8568. border-width:0px;
  8569. position:absolute;
  8570. left:0px;
  8571. top:0px;
  8572. width:375px;
  8573. height:50px;
  8574. background:inherit;
  8575. background-color:rgba(255, 255, 255, 1);
  8576. box-sizing:border-box;
  8577. border-width:1px;
  8578. border-style:solid;
  8579. border-color:rgba(242, 242, 242, 1);
  8580. border-radius:26px;
  8581. border-top-left-radius:0px;
  8582. border-top-right-radius:0px;
  8583. -moz-box-shadow:none;
  8584. -webkit-box-shadow:none;
  8585. box-shadow:none;
  8586. }
  8587. #u41816 {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:1425px;
  8591. top:788px;
  8592. width:375px;
  8593. height:50px;
  8594. display:flex;
  8595. }
  8596. #u41816 .text {
  8597. position:absolute;
  8598. align-self:center;
  8599. padding:2px 2px 2px 2px;
  8600. box-sizing:border-box;
  8601. width:100%;
  8602. }
  8603. #u41816_text {
  8604. border-width:0px;
  8605. word-wrap:break-word;
  8606. text-transform:none;
  8607. visibility:hidden;
  8608. }
  8609. #u41817 {
  8610. border-width:0px;
  8611. position:absolute;
  8612. left:0px;
  8613. top:0px;
  8614. width:0px;
  8615. height:0px;
  8616. }
  8617. #u41818_img {
  8618. border-width:0px;
  8619. position:absolute;
  8620. left:0px;
  8621. top:0px;
  8622. width:24px;
  8623. height:24px;
  8624. }
  8625. #u41818 {
  8626. border-width:0px;
  8627. position:absolute;
  8628. left:1465px;
  8629. top:792px;
  8630. width:24px;
  8631. height:24px;
  8632. display:flex;
  8633. font-size:8px;
  8634. }
  8635. #u41818 .text {
  8636. position:absolute;
  8637. align-self:center;
  8638. padding:2px 2px 2px 2px;
  8639. box-sizing:border-box;
  8640. width:100%;
  8641. }
  8642. #u41818_text {
  8643. border-width:0px;
  8644. word-wrap:break-word;
  8645. text-transform:none;
  8646. }
  8647. #u41819_div {
  8648. border-width:0px;
  8649. position:absolute;
  8650. left:0px;
  8651. top:0px;
  8652. width:25px;
  8653. height:17px;
  8654. background:inherit;
  8655. background-color:rgba(255, 255, 255, 0);
  8656. border:none;
  8657. border-radius:0px;
  8658. -moz-box-shadow:none;
  8659. -webkit-box-shadow:none;
  8660. box-shadow:none;
  8661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8662. font-weight:400;
  8663. font-style:normal;
  8664. font-size:12px;
  8665. }
  8666. #u41819 {
  8667. border-width:0px;
  8668. position:absolute;
  8669. left:1465px;
  8670. top:817px;
  8671. width:25px;
  8672. height:17px;
  8673. display:flex;
  8674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8675. font-weight:400;
  8676. font-style:normal;
  8677. font-size:12px;
  8678. }
  8679. #u41819 .text {
  8680. position:absolute;
  8681. align-self:flex-start;
  8682. padding:0px 0px 0px 0px;
  8683. box-sizing:border-box;
  8684. width:100%;
  8685. }
  8686. #u41819_text {
  8687. border-width:0px;
  8688. white-space:nowrap;
  8689. text-transform:none;
  8690. }
  8691. #u41820 {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:0px;
  8695. top:0px;
  8696. width:0px;
  8697. height:0px;
  8698. }
  8699. #u41821_img {
  8700. border-width:0px;
  8701. position:absolute;
  8702. left:0px;
  8703. top:0px;
  8704. width:24px;
  8705. height:24px;
  8706. }
  8707. #u41821 {
  8708. border-width:0px;
  8709. position:absolute;
  8710. left:1735px;
  8711. top:794px;
  8712. width:24px;
  8713. height:24px;
  8714. display:flex;
  8715. font-size:8px;
  8716. }
  8717. #u41821 .text {
  8718. position:absolute;
  8719. align-self:center;
  8720. padding:2px 2px 2px 2px;
  8721. box-sizing:border-box;
  8722. width:100%;
  8723. }
  8724. #u41821_text {
  8725. border-width:0px;
  8726. word-wrap:break-word;
  8727. text-transform:none;
  8728. }
  8729. #u41822_div {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:0px;
  8733. top:0px;
  8734. width:25px;
  8735. height:17px;
  8736. background:inherit;
  8737. background-color:rgba(255, 255, 255, 0);
  8738. border:none;
  8739. border-radius:0px;
  8740. -moz-box-shadow:none;
  8741. -webkit-box-shadow:none;
  8742. box-shadow:none;
  8743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8744. font-weight:400;
  8745. font-style:normal;
  8746. font-size:12px;
  8747. }
  8748. #u41822 {
  8749. border-width:0px;
  8750. position:absolute;
  8751. left:1735px;
  8752. top:819px;
  8753. width:25px;
  8754. height:17px;
  8755. display:flex;
  8756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8757. font-weight:400;
  8758. font-style:normal;
  8759. font-size:12px;
  8760. }
  8761. #u41822 .text {
  8762. position:absolute;
  8763. align-self:flex-start;
  8764. padding:0px 0px 0px 0px;
  8765. box-sizing:border-box;
  8766. width:100%;
  8767. }
  8768. #u41822_text {
  8769. border-width:0px;
  8770. white-space:nowrap;
  8771. text-transform:none;
  8772. }
  8773. #u41823_div {
  8774. border-width:0px;
  8775. position:absolute;
  8776. left:0px;
  8777. top:0px;
  8778. width:375px;
  8779. height:681px;
  8780. background:inherit;
  8781. background-color:rgba(242, 242, 242, 0.462745098039216);
  8782. border:none;
  8783. border-radius:0px;
  8784. -moz-box-shadow:none;
  8785. -webkit-box-shadow:none;
  8786. box-shadow:none;
  8787. }
  8788. #u41823 {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:1425px;
  8792. top:107px;
  8793. width:375px;
  8794. height:681px;
  8795. display:flex;
  8796. }
  8797. #u41823 .text {
  8798. position:absolute;
  8799. align-self:center;
  8800. padding:2px 2px 2px 2px;
  8801. box-sizing:border-box;
  8802. width:100%;
  8803. }
  8804. #u41823_text {
  8805. border-width:0px;
  8806. word-wrap:break-word;
  8807. text-transform:none;
  8808. visibility:hidden;
  8809. }
  8810. #u41824 {
  8811. border-width:0px;
  8812. position:absolute;
  8813. left:0px;
  8814. top:0px;
  8815. width:0px;
  8816. height:0px;
  8817. }
  8818. #u41825_img {
  8819. border-width:0px;
  8820. position:absolute;
  8821. left:0px;
  8822. top:0px;
  8823. width:24px;
  8824. height:24px;
  8825. }
  8826. #u41825 {
  8827. border-width:0px;
  8828. position:absolute;
  8829. left:1647px;
  8830. top:792px;
  8831. width:24px;
  8832. height:24px;
  8833. display:flex;
  8834. font-size:8px;
  8835. }
  8836. #u41825 .text {
  8837. position:absolute;
  8838. align-self:center;
  8839. padding:2px 2px 2px 2px;
  8840. box-sizing:border-box;
  8841. width:100%;
  8842. }
  8843. #u41825_text {
  8844. border-width:0px;
  8845. word-wrap:break-word;
  8846. text-transform:none;
  8847. }
  8848. #u41826_div {
  8849. border-width:0px;
  8850. position:absolute;
  8851. left:0px;
  8852. top:0px;
  8853. width:37px;
  8854. height:17px;
  8855. background:inherit;
  8856. background-color:rgba(255, 255, 255, 0);
  8857. border:none;
  8858. border-radius:0px;
  8859. -moz-box-shadow:none;
  8860. -webkit-box-shadow:none;
  8861. box-shadow:none;
  8862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8863. font-weight:400;
  8864. font-style:normal;
  8865. font-size:12px;
  8866. }
  8867. #u41826 {
  8868. border-width:0px;
  8869. position:absolute;
  8870. left:1641px;
  8871. top:817px;
  8872. width:37px;
  8873. height:17px;
  8874. display:flex;
  8875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8876. font-weight:400;
  8877. font-style:normal;
  8878. font-size:12px;
  8879. }
  8880. #u41826 .text {
  8881. position:absolute;
  8882. align-self:flex-start;
  8883. padding:0px 0px 0px 0px;
  8884. box-sizing:border-box;
  8885. width:100%;
  8886. }
  8887. #u41826_text {
  8888. border-width:0px;
  8889. white-space:nowrap;
  8890. text-transform:none;
  8891. }
  8892. #u41827 {
  8893. border-width:0px;
  8894. position:absolute;
  8895. left:0px;
  8896. top:0px;
  8897. width:0px;
  8898. height:0px;
  8899. }
  8900. #u41828_img {
  8901. border-width:0px;
  8902. position:absolute;
  8903. left:0px;
  8904. top:0px;
  8905. width:24px;
  8906. height:24px;
  8907. }
  8908. #u41828 {
  8909. border-width:0px;
  8910. position:absolute;
  8911. left:1553px;
  8912. top:792px;
  8913. width:24px;
  8914. height:24px;
  8915. display:flex;
  8916. font-size:8px;
  8917. }
  8918. #u41828 .text {
  8919. position:absolute;
  8920. align-self:center;
  8921. padding:2px 2px 2px 2px;
  8922. box-sizing:border-box;
  8923. width:100%;
  8924. }
  8925. #u41828_text {
  8926. border-width:0px;
  8927. word-wrap:break-word;
  8928. text-transform:none;
  8929. }
  8930. #u41829_div {
  8931. border-width:0px;
  8932. position:absolute;
  8933. left:0px;
  8934. top:0px;
  8935. width:37px;
  8936. height:17px;
  8937. background:inherit;
  8938. background-color:rgba(255, 255, 255, 0);
  8939. border:none;
  8940. border-radius:0px;
  8941. -moz-box-shadow:none;
  8942. -webkit-box-shadow:none;
  8943. box-shadow:none;
  8944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8945. font-weight:400;
  8946. font-style:normal;
  8947. font-size:12px;
  8948. }
  8949. #u41829 {
  8950. border-width:0px;
  8951. position:absolute;
  8952. left:1547px;
  8953. top:817px;
  8954. width:37px;
  8955. height:17px;
  8956. display:flex;
  8957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8958. font-weight:400;
  8959. font-style:normal;
  8960. font-size:12px;
  8961. }
  8962. #u41829 .text {
  8963. position:absolute;
  8964. align-self:flex-start;
  8965. padding:0px 0px 0px 0px;
  8966. box-sizing:border-box;
  8967. width:100%;
  8968. }
  8969. #u41829_text {
  8970. border-width:0px;
  8971. white-space:nowrap;
  8972. text-transform:none;
  8973. }
  8974. #u41830_div {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:0px;
  8978. top:0px;
  8979. width:375px;
  8980. height:732px;
  8981. background:inherit;
  8982. background-color:rgba(242, 242, 242, 0.996078431372549);
  8983. border:none;
  8984. border-top:0px;
  8985. border-radius:28px;
  8986. border-top-left-radius:0px;
  8987. border-top-right-radius:0px;
  8988. -moz-box-shadow:none;
  8989. -webkit-box-shadow:none;
  8990. box-shadow:none;
  8991. }
  8992. #u41830 {
  8993. border-width:0px;
  8994. position:absolute;
  8995. left:1425px;
  8996. top:107px;
  8997. width:375px;
  8998. height:732px;
  8999. display:flex;
  9000. }
  9001. #u41830 .text {
  9002. position:absolute;
  9003. align-self:center;
  9004. padding:2px 2px 2px 2px;
  9005. box-sizing:border-box;
  9006. width:100%;
  9007. }
  9008. #u41830_text {
  9009. border-width:0px;
  9010. word-wrap:break-word;
  9011. text-transform:none;
  9012. visibility:hidden;
  9013. }
  9014. #u41831_div {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:0px;
  9018. top:0px;
  9019. width:375px;
  9020. height:41px;
  9021. background:inherit;
  9022. background-color:rgba(255, 255, 255, 1);
  9023. box-sizing:border-box;
  9024. border-width:1px;
  9025. border-style:solid;
  9026. border-color:rgba(215, 215, 215, 1);
  9027. border-left:0px;
  9028. border-top:0px;
  9029. border-right:0px;
  9030. border-radius:0px;
  9031. border-bottom-right-radius:0px;
  9032. border-bottom-left-radius:0px;
  9033. -moz-box-shadow:none;
  9034. -webkit-box-shadow:none;
  9035. box-shadow:none;
  9036. }
  9037. #u41831 {
  9038. border-width:0px;
  9039. position:absolute;
  9040. left:1425px;
  9041. top:67px;
  9042. width:375px;
  9043. height:41px;
  9044. display:flex;
  9045. }
  9046. #u41831 .text {
  9047. position:absolute;
  9048. align-self:center;
  9049. padding:2px 2px 2px 2px;
  9050. box-sizing:border-box;
  9051. width:100%;
  9052. }
  9053. #u41831_text {
  9054. border-width:0px;
  9055. word-wrap:break-word;
  9056. text-transform:none;
  9057. visibility:hidden;
  9058. }
  9059. #u41832 {
  9060. border-width:0px;
  9061. position:absolute;
  9062. left:0px;
  9063. top:0px;
  9064. width:0px;
  9065. height:0px;
  9066. }
  9067. #u41833_div {
  9068. border-width:0px;
  9069. position:absolute;
  9070. left:0px;
  9071. top:0px;
  9072. width:88px;
  9073. height:32px;
  9074. background:inherit;
  9075. background-color:rgba(255, 255, 255, 1);
  9076. box-sizing:border-box;
  9077. border-width:1px;
  9078. border-style:solid;
  9079. border-color:rgba(242, 242, 242, 1);
  9080. border-radius:33px;
  9081. -moz-box-shadow:none;
  9082. -webkit-box-shadow:none;
  9083. box-shadow:none;
  9084. }
  9085. #u41833 {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:1705px;
  9089. top:71px;
  9090. width:88px;
  9091. height:32px;
  9092. display:flex;
  9093. }
  9094. #u41833 .text {
  9095. position:absolute;
  9096. align-self:center;
  9097. padding:2px 2px 2px 2px;
  9098. box-sizing:border-box;
  9099. width:100%;
  9100. }
  9101. #u41833_text {
  9102. border-width:0px;
  9103. word-wrap:break-word;
  9104. text-transform:none;
  9105. visibility:hidden;
  9106. }
  9107. #u41834 {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:0px;
  9111. top:0px;
  9112. width:0px;
  9113. height:0px;
  9114. }
  9115. #u41835_img {
  9116. border-width:0px;
  9117. position:absolute;
  9118. left:0px;
  9119. top:0px;
  9120. width:18px;
  9121. height:18px;
  9122. }
  9123. #u41835 {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:1768px;
  9127. top:78px;
  9128. width:18px;
  9129. height:18px;
  9130. display:flex;
  9131. }
  9132. #u41835 .text {
  9133. position:absolute;
  9134. align-self:center;
  9135. padding:2px 2px 2px 2px;
  9136. box-sizing:border-box;
  9137. width:100%;
  9138. }
  9139. #u41835_text {
  9140. border-width:0px;
  9141. word-wrap:break-word;
  9142. text-transform:none;
  9143. visibility:hidden;
  9144. }
  9145. #u41836_img {
  9146. border-width:0px;
  9147. position:absolute;
  9148. left:0px;
  9149. top:0px;
  9150. width:6px;
  9151. height:6px;
  9152. }
  9153. #u41836 {
  9154. border-width:0px;
  9155. position:absolute;
  9156. left:1774px;
  9157. top:84px;
  9158. width:6px;
  9159. height:6px;
  9160. display:flex;
  9161. }
  9162. #u41836 .text {
  9163. position:absolute;
  9164. align-self:center;
  9165. padding:2px 2px 2px 2px;
  9166. box-sizing:border-box;
  9167. width:100%;
  9168. }
  9169. #u41836_text {
  9170. border-width:0px;
  9171. word-wrap:break-word;
  9172. text-transform:none;
  9173. visibility:hidden;
  9174. }
  9175. #u41837 {
  9176. border-width:0px;
  9177. position:absolute;
  9178. left:0px;
  9179. top:0px;
  9180. width:0px;
  9181. height:0px;
  9182. }
  9183. #u41838_img {
  9184. border-width:0px;
  9185. position:absolute;
  9186. left:0px;
  9187. top:0px;
  9188. width:5px;
  9189. height:5px;
  9190. }
  9191. #u41838 {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:1719px;
  9195. top:85px;
  9196. width:5px;
  9197. height:5px;
  9198. display:flex;
  9199. }
  9200. #u41838 .text {
  9201. position:absolute;
  9202. align-self:center;
  9203. padding:2px 2px 2px 2px;
  9204. box-sizing:border-box;
  9205. width:100%;
  9206. }
  9207. #u41838_text {
  9208. border-width:0px;
  9209. word-wrap:break-word;
  9210. text-transform:none;
  9211. visibility:hidden;
  9212. }
  9213. #u41839_img {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:0px;
  9217. top:0px;
  9218. width:5px;
  9219. height:5px;
  9220. }
  9221. #u41839 {
  9222. border-width:0px;
  9223. position:absolute;
  9224. left:1735px;
  9225. top:85px;
  9226. width:5px;
  9227. height:5px;
  9228. display:flex;
  9229. }
  9230. #u41839 .text {
  9231. position:absolute;
  9232. align-self:center;
  9233. padding:2px 2px 2px 2px;
  9234. box-sizing:border-box;
  9235. width:100%;
  9236. }
  9237. #u41839_text {
  9238. border-width:0px;
  9239. word-wrap:break-word;
  9240. text-transform:none;
  9241. visibility:hidden;
  9242. }
  9243. #u41840_img {
  9244. border-width:0px;
  9245. position:absolute;
  9246. left:0px;
  9247. top:0px;
  9248. width:7px;
  9249. height:7px;
  9250. }
  9251. #u41840 {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:1726px;
  9255. top:84px;
  9256. width:7px;
  9257. height:7px;
  9258. display:flex;
  9259. }
  9260. #u41840 .text {
  9261. position:absolute;
  9262. align-self:center;
  9263. padding:2px 2px 2px 2px;
  9264. box-sizing:border-box;
  9265. width:100%;
  9266. }
  9267. #u41840_text {
  9268. border-width:0px;
  9269. word-wrap:break-word;
  9270. text-transform:none;
  9271. visibility:hidden;
  9272. }
  9273. #u41841_img {
  9274. border-width:0px;
  9275. position:absolute;
  9276. left:0px;
  9277. top:0px;
  9278. width:19px;
  9279. height:2px;
  9280. }
  9281. #u41841 {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:1743px;
  9285. top:87px;
  9286. width:18px;
  9287. height:1px;
  9288. display:flex;
  9289. -webkit-transform:rotate(90deg);
  9290. -moz-transform:rotate(90deg);
  9291. -ms-transform:rotate(90deg);
  9292. transform:rotate(90deg);
  9293. }
  9294. #u41841 .text {
  9295. position:absolute;
  9296. align-self:center;
  9297. padding:2px 2px 2px 2px;
  9298. box-sizing:border-box;
  9299. width:100%;
  9300. }
  9301. #u41841_text {
  9302. border-width:0px;
  9303. word-wrap:break-word;
  9304. text-transform:none;
  9305. visibility:hidden;
  9306. }
  9307. #u41842_div {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:0px;
  9311. top:0px;
  9312. width:12px;
  9313. height:12px;
  9314. background:inherit;
  9315. background-color:rgba(255, 255, 255, 0);
  9316. box-sizing:border-box;
  9317. border-width:2px;
  9318. border-style:solid;
  9319. border-color:rgba(51, 51, 51, 1);
  9320. border-right:0px;
  9321. border-bottom:0px;
  9322. border-radius:0px;
  9323. border-top-right-radius:0px;
  9324. border-bottom-left-radius:0px;
  9325. -moz-box-shadow:none;
  9326. -webkit-box-shadow:none;
  9327. box-shadow:none;
  9328. }
  9329. #u41842 {
  9330. border-width:0px;
  9331. position:absolute;
  9332. left:1440px;
  9333. top:81px;
  9334. width:12px;
  9335. height:12px;
  9336. display:flex;
  9337. -webkit-transform:rotate(315deg);
  9338. -moz-transform:rotate(315deg);
  9339. -ms-transform:rotate(315deg);
  9340. transform:rotate(315deg);
  9341. }
  9342. #u41842 .text {
  9343. position:absolute;
  9344. align-self:center;
  9345. padding:2px 2px 2px 2px;
  9346. box-sizing:border-box;
  9347. width:100%;
  9348. }
  9349. #u41842_text {
  9350. border-width:0px;
  9351. word-wrap:break-word;
  9352. text-transform:none;
  9353. visibility:hidden;
  9354. }
  9355. #u41843_div {
  9356. border-width:0px;
  9357. position:absolute;
  9358. left:0px;
  9359. top:0px;
  9360. width:73px;
  9361. height:25px;
  9362. background:inherit;
  9363. background-color:rgba(255, 255, 255, 0);
  9364. border:none;
  9365. border-radius:0px;
  9366. -moz-box-shadow:none;
  9367. -webkit-box-shadow:none;
  9368. box-shadow:none;
  9369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9370. font-weight:400;
  9371. font-style:normal;
  9372. font-size:18px;
  9373. }
  9374. #u41843 {
  9375. border-width:0px;
  9376. position:absolute;
  9377. left:1460px;
  9378. top:75px;
  9379. width:73px;
  9380. height:25px;
  9381. display:flex;
  9382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9383. font-weight:400;
  9384. font-style:normal;
  9385. font-size:18px;
  9386. }
  9387. #u41843 .text {
  9388. position:absolute;
  9389. align-self:flex-start;
  9390. padding:0px 0px 0px 0px;
  9391. box-sizing:border-box;
  9392. width:100%;
  9393. }
  9394. #u41843_text {
  9395. border-width:0px;
  9396. white-space:nowrap;
  9397. text-transform:none;
  9398. }
  9399. #u41844 {
  9400. border-width:0px;
  9401. position:absolute;
  9402. left:0px;
  9403. top:0px;
  9404. width:0px;
  9405. height:0px;
  9406. }
  9407. #u41845_div {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:0px;
  9411. top:0px;
  9412. width:375px;
  9413. height:356px;
  9414. background:inherit;
  9415. background-color:rgba(255, 255, 255, 1);
  9416. border:none;
  9417. border-left:0px;
  9418. border-right:0px;
  9419. border-radius:0px;
  9420. border-top-left-radius:0px;
  9421. border-top-right-radius:0px;
  9422. border-bottom-right-radius:0px;
  9423. border-bottom-left-radius:0px;
  9424. -moz-box-shadow:none;
  9425. -webkit-box-shadow:none;
  9426. box-shadow:none;
  9427. }
  9428. #u41845 {
  9429. border-width:0px;
  9430. position:absolute;
  9431. left:1425px;
  9432. top:389px;
  9433. width:375px;
  9434. height:356px;
  9435. display:flex;
  9436. }
  9437. #u41845 .text {
  9438. position:absolute;
  9439. align-self:center;
  9440. padding:2px 2px 2px 2px;
  9441. box-sizing:border-box;
  9442. width:100%;
  9443. }
  9444. #u41845_text {
  9445. border-width:0px;
  9446. word-wrap:break-word;
  9447. text-transform:none;
  9448. visibility:hidden;
  9449. }
  9450. #u41846_div {
  9451. border-width:0px;
  9452. position:absolute;
  9453. left:0px;
  9454. top:0px;
  9455. width:57px;
  9456. height:30px;
  9457. background:inherit;
  9458. background-color:rgba(255, 255, 255, 0);
  9459. border:none;
  9460. border-left:0px;
  9461. border-top:0px;
  9462. border-right:0px;
  9463. border-radius:0px;
  9464. border-bottom-right-radius:0px;
  9465. border-bottom-left-radius:0px;
  9466. -moz-box-shadow:none;
  9467. -webkit-box-shadow:none;
  9468. box-shadow:none;
  9469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9470. font-weight:400;
  9471. font-style:normal;
  9472. font-size:14px;
  9473. line-height:30px;
  9474. }
  9475. #u41846 {
  9476. border-width:0px;
  9477. position:absolute;
  9478. left:1449px;
  9479. top:399px;
  9480. width:57px;
  9481. height:30px;
  9482. display:flex;
  9483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9484. font-weight:400;
  9485. font-style:normal;
  9486. font-size:14px;
  9487. line-height:30px;
  9488. }
  9489. #u41846 .text {
  9490. position:absolute;
  9491. align-self:flex-start;
  9492. padding:0px 0px 0px 0px;
  9493. box-sizing:border-box;
  9494. width:100%;
  9495. }
  9496. #u41846_text {
  9497. border-width:0px;
  9498. white-space:nowrap;
  9499. text-transform:none;
  9500. }
  9501. #u41847_div {
  9502. border-width:0px;
  9503. position:absolute;
  9504. left:0px;
  9505. top:0px;
  9506. width:181px;
  9507. height:30px;
  9508. background:inherit;
  9509. background-color:rgba(255, 255, 255, 0);
  9510. border:none;
  9511. border-left:0px;
  9512. border-top:0px;
  9513. border-right:0px;
  9514. border-radius:0px;
  9515. border-bottom-right-radius:0px;
  9516. border-bottom-left-radius:0px;
  9517. -moz-box-shadow:none;
  9518. -webkit-box-shadow:none;
  9519. box-shadow:none;
  9520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9521. font-weight:400;
  9522. font-style:normal;
  9523. font-size:12px;
  9524. line-height:30px;
  9525. }
  9526. #u41847 {
  9527. border-width:0px;
  9528. position:absolute;
  9529. left:1449px;
  9530. top:429px;
  9531. width:181px;
  9532. height:30px;
  9533. display:flex;
  9534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9535. font-weight:400;
  9536. font-style:normal;
  9537. font-size:12px;
  9538. line-height:30px;
  9539. }
  9540. #u41847 .text {
  9541. position:absolute;
  9542. align-self:flex-start;
  9543. padding:0px 0px 0px 0px;
  9544. box-sizing:border-box;
  9545. width:100%;
  9546. }
  9547. #u41847_text {
  9548. border-width:0px;
  9549. white-space:nowrap;
  9550. text-transform:none;
  9551. }
  9552. #u41848_div {
  9553. border-width:0px;
  9554. position:absolute;
  9555. left:0px;
  9556. top:0px;
  9557. width:167px;
  9558. height:30px;
  9559. background:inherit;
  9560. background-color:rgba(255, 255, 255, 0);
  9561. border:none;
  9562. border-left:0px;
  9563. border-top:0px;
  9564. border-right:0px;
  9565. border-radius:0px;
  9566. border-bottom-right-radius:0px;
  9567. border-bottom-left-radius:0px;
  9568. -moz-box-shadow:none;
  9569. -webkit-box-shadow:none;
  9570. box-shadow:none;
  9571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9572. font-weight:400;
  9573. font-style:normal;
  9574. font-size:12px;
  9575. line-height:30px;
  9576. }
  9577. #u41848 {
  9578. border-width:0px;
  9579. position:absolute;
  9580. left:1449px;
  9581. top:459px;
  9582. width:167px;
  9583. height:30px;
  9584. display:flex;
  9585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9586. font-weight:400;
  9587. font-style:normal;
  9588. font-size:12px;
  9589. line-height:30px;
  9590. }
  9591. #u41848 .text {
  9592. position:absolute;
  9593. align-self:flex-start;
  9594. padding:0px 0px 0px 0px;
  9595. box-sizing:border-box;
  9596. width:100%;
  9597. }
  9598. #u41848_text {
  9599. border-width:0px;
  9600. white-space:nowrap;
  9601. text-transform:none;
  9602. }
  9603. #u41849_img {
  9604. border-width:0px;
  9605. position:absolute;
  9606. left:0px;
  9607. top:0px;
  9608. width:375px;
  9609. height:218px;
  9610. }
  9611. #u41849 {
  9612. border-width:0px;
  9613. position:absolute;
  9614. left:1425px;
  9615. top:587px;
  9616. width:375px;
  9617. height:218px;
  9618. display:flex;
  9619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9620. font-weight:400;
  9621. font-style:normal;
  9622. }
  9623. #u41849 .text {
  9624. position:absolute;
  9625. align-self:center;
  9626. padding:2px 2px 2px 2px;
  9627. box-sizing:border-box;
  9628. width:100%;
  9629. }
  9630. #u41849_text {
  9631. border-width:0px;
  9632. word-wrap:break-word;
  9633. text-transform:none;
  9634. }
  9635. #u41850_div {
  9636. border-width:0px;
  9637. position:absolute;
  9638. left:0px;
  9639. top:0px;
  9640. width:167px;
  9641. height:30px;
  9642. background:inherit;
  9643. background-color:rgba(255, 255, 255, 0);
  9644. border:none;
  9645. border-left:0px;
  9646. border-top:0px;
  9647. border-right:0px;
  9648. border-radius:0px;
  9649. border-bottom-right-radius:0px;
  9650. border-bottom-left-radius:0px;
  9651. -moz-box-shadow:none;
  9652. -webkit-box-shadow:none;
  9653. box-shadow:none;
  9654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9655. font-weight:400;
  9656. font-style:normal;
  9657. font-size:12px;
  9658. line-height:30px;
  9659. }
  9660. #u41850 {
  9661. border-width:0px;
  9662. position:absolute;
  9663. left:1449px;
  9664. top:489px;
  9665. width:167px;
  9666. height:30px;
  9667. display:flex;
  9668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9669. font-weight:400;
  9670. font-style:normal;
  9671. font-size:12px;
  9672. line-height:30px;
  9673. }
  9674. #u41850 .text {
  9675. position:absolute;
  9676. align-self:flex-start;
  9677. padding:0px 0px 0px 0px;
  9678. box-sizing:border-box;
  9679. width:100%;
  9680. }
  9681. #u41850_text {
  9682. border-width:0px;
  9683. white-space:nowrap;
  9684. text-transform:none;
  9685. }
  9686. #u41851_div {
  9687. border-width:0px;
  9688. position:absolute;
  9689. left:0px;
  9690. top:0px;
  9691. width:92px;
  9692. height:30px;
  9693. background:inherit;
  9694. background-color:rgba(255, 255, 255, 0);
  9695. border:none;
  9696. border-left:0px;
  9697. border-top:0px;
  9698. border-right:0px;
  9699. border-radius:0px;
  9700. border-bottom-right-radius:0px;
  9701. border-bottom-left-radius:0px;
  9702. -moz-box-shadow:none;
  9703. -webkit-box-shadow:none;
  9704. box-shadow:none;
  9705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9706. font-weight:400;
  9707. font-style:normal;
  9708. font-size:12px;
  9709. color:#0089FE;
  9710. line-height:30px;
  9711. }
  9712. #u41851 {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:1694px;
  9716. top:399px;
  9717. width:92px;
  9718. height:30px;
  9719. display:flex;
  9720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9721. font-weight:400;
  9722. font-style:normal;
  9723. font-size:12px;
  9724. color:#0089FE;
  9725. line-height:30px;
  9726. }
  9727. #u41851 .text {
  9728. position:absolute;
  9729. align-self:flex-start;
  9730. padding:0px 0px 0px 0px;
  9731. box-sizing:border-box;
  9732. width:100%;
  9733. }
  9734. #u41851_text {
  9735. border-width:0px;
  9736. white-space:nowrap;
  9737. text-transform:none;
  9738. }
  9739. #u41852_div {
  9740. border-width:0px;
  9741. position:absolute;
  9742. left:0px;
  9743. top:0px;
  9744. width:337px;
  9745. height:48px;
  9746. background:inherit;
  9747. background-color:rgba(51, 51, 51, 1);
  9748. border:none;
  9749. border-radius:5px;
  9750. -moz-box-shadow:none;
  9751. -webkit-box-shadow:none;
  9752. box-shadow:none;
  9753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9754. font-weight:400;
  9755. font-style:normal;
  9756. font-size:14px;
  9757. color:#FFFFFF;
  9758. line-height:30px;
  9759. }
  9760. #u41852 {
  9761. border-width:0px;
  9762. position:absolute;
  9763. left:1441px;
  9764. top:525px;
  9765. width:337px;
  9766. height:48px;
  9767. display:flex;
  9768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9769. font-weight:400;
  9770. font-style:normal;
  9771. font-size:14px;
  9772. color:#FFFFFF;
  9773. line-height:30px;
  9774. }
  9775. #u41852 .text {
  9776. position:absolute;
  9777. align-self:center;
  9778. padding:2px 2px 2px 2px;
  9779. box-sizing:border-box;
  9780. width:100%;
  9781. }
  9782. #u41852_text {
  9783. border-width:0px;
  9784. word-wrap:break-word;
  9785. text-transform:none;
  9786. }
  9787. #u41854_img {
  9788. border-width:0px;
  9789. position:absolute;
  9790. left:0px;
  9791. top:0px;
  9792. width:433px;
  9793. height:865px;
  9794. }
  9795. #u41854 {
  9796. border-width:0px;
  9797. position:absolute;
  9798. left:1859px;
  9799. top:0px;
  9800. width:433px;
  9801. height:865px;
  9802. display:flex;
  9803. }
  9804. #u41854 .text {
  9805. position:absolute;
  9806. align-self:center;
  9807. padding:2px 2px 2px 2px;
  9808. box-sizing:border-box;
  9809. width:100%;
  9810. }
  9811. #u41854_text {
  9812. border-width:0px;
  9813. word-wrap:break-word;
  9814. text-transform:none;
  9815. visibility:hidden;
  9816. }
  9817. #u41855_div {
  9818. border-width:0px;
  9819. position:absolute;
  9820. left:0px;
  9821. top:0px;
  9822. width:375px;
  9823. height:40px;
  9824. background:inherit;
  9825. background-color:rgba(255, 255, 255, 1);
  9826. box-sizing:border-box;
  9827. border-width:1px;
  9828. border-style:solid;
  9829. border-color:rgba(215, 215, 215, 1);
  9830. border-left:0px;
  9831. border-top:0px;
  9832. border-right:0px;
  9833. border-radius:0px;
  9834. border-bottom-right-radius:0px;
  9835. border-bottom-left-radius:0px;
  9836. -moz-box-shadow:none;
  9837. -webkit-box-shadow:none;
  9838. box-shadow:none;
  9839. }
  9840. #u41855 {
  9841. border-width:0px;
  9842. position:absolute;
  9843. left:1888px;
  9844. top:67px;
  9845. width:375px;
  9846. height:40px;
  9847. display:flex;
  9848. }
  9849. #u41855 .text {
  9850. position:absolute;
  9851. align-self:center;
  9852. padding:2px 2px 2px 2px;
  9853. box-sizing:border-box;
  9854. width:100%;
  9855. }
  9856. #u41855_text {
  9857. border-width:0px;
  9858. word-wrap:break-word;
  9859. text-transform:none;
  9860. visibility:hidden;
  9861. }
  9862. #u41856 {
  9863. border-width:0px;
  9864. position:absolute;
  9865. left:0px;
  9866. top:0px;
  9867. width:0px;
  9868. height:0px;
  9869. }
  9870. #u41857_div {
  9871. border-width:0px;
  9872. position:absolute;
  9873. left:0px;
  9874. top:0px;
  9875. width:88px;
  9876. height:32px;
  9877. background:inherit;
  9878. background-color:rgba(255, 255, 255, 1);
  9879. box-sizing:border-box;
  9880. border-width:1px;
  9881. border-style:solid;
  9882. border-color:rgba(242, 242, 242, 1);
  9883. border-radius:33px;
  9884. -moz-box-shadow:none;
  9885. -webkit-box-shadow:none;
  9886. box-shadow:none;
  9887. }
  9888. #u41857 {
  9889. border-width:0px;
  9890. position:absolute;
  9891. left:2168px;
  9892. top:71px;
  9893. width:88px;
  9894. height:32px;
  9895. display:flex;
  9896. }
  9897. #u41857 .text {
  9898. position:absolute;
  9899. align-self:center;
  9900. padding:2px 2px 2px 2px;
  9901. box-sizing:border-box;
  9902. width:100%;
  9903. }
  9904. #u41857_text {
  9905. border-width:0px;
  9906. word-wrap:break-word;
  9907. text-transform:none;
  9908. visibility:hidden;
  9909. }
  9910. #u41858 {
  9911. border-width:0px;
  9912. position:absolute;
  9913. left:0px;
  9914. top:0px;
  9915. width:0px;
  9916. height:0px;
  9917. }
  9918. #u41859_img {
  9919. border-width:0px;
  9920. position:absolute;
  9921. left:0px;
  9922. top:0px;
  9923. width:18px;
  9924. height:18px;
  9925. }
  9926. #u41859 {
  9927. border-width:0px;
  9928. position:absolute;
  9929. left:2231px;
  9930. top:78px;
  9931. width:18px;
  9932. height:18px;
  9933. display:flex;
  9934. }
  9935. #u41859 .text {
  9936. position:absolute;
  9937. align-self:center;
  9938. padding:2px 2px 2px 2px;
  9939. box-sizing:border-box;
  9940. width:100%;
  9941. }
  9942. #u41859_text {
  9943. border-width:0px;
  9944. word-wrap:break-word;
  9945. text-transform:none;
  9946. visibility:hidden;
  9947. }
  9948. #u41860_img {
  9949. border-width:0px;
  9950. position:absolute;
  9951. left:0px;
  9952. top:0px;
  9953. width:6px;
  9954. height:6px;
  9955. }
  9956. #u41860 {
  9957. border-width:0px;
  9958. position:absolute;
  9959. left:2237px;
  9960. top:84px;
  9961. width:6px;
  9962. height:6px;
  9963. display:flex;
  9964. }
  9965. #u41860 .text {
  9966. position:absolute;
  9967. align-self:center;
  9968. padding:2px 2px 2px 2px;
  9969. box-sizing:border-box;
  9970. width:100%;
  9971. }
  9972. #u41860_text {
  9973. border-width:0px;
  9974. word-wrap:break-word;
  9975. text-transform:none;
  9976. visibility:hidden;
  9977. }
  9978. #u41861 {
  9979. border-width:0px;
  9980. position:absolute;
  9981. left:0px;
  9982. top:0px;
  9983. width:0px;
  9984. height:0px;
  9985. }
  9986. #u41862_img {
  9987. border-width:0px;
  9988. position:absolute;
  9989. left:0px;
  9990. top:0px;
  9991. width:5px;
  9992. height:5px;
  9993. }
  9994. #u41862 {
  9995. border-width:0px;
  9996. position:absolute;
  9997. left:2182px;
  9998. top:85px;
  9999. width:5px;
  10000. height:5px;
  10001. display:flex;
  10002. }
  10003. #u41862 .text {
  10004. position:absolute;
  10005. align-self:center;
  10006. padding:2px 2px 2px 2px;
  10007. box-sizing:border-box;
  10008. width:100%;
  10009. }
  10010. #u41862_text {
  10011. border-width:0px;
  10012. word-wrap:break-word;
  10013. text-transform:none;
  10014. visibility:hidden;
  10015. }
  10016. #u41863_img {
  10017. border-width:0px;
  10018. position:absolute;
  10019. left:0px;
  10020. top:0px;
  10021. width:5px;
  10022. height:5px;
  10023. }
  10024. #u41863 {
  10025. border-width:0px;
  10026. position:absolute;
  10027. left:2198px;
  10028. top:85px;
  10029. width:5px;
  10030. height:5px;
  10031. display:flex;
  10032. }
  10033. #u41863 .text {
  10034. position:absolute;
  10035. align-self:center;
  10036. padding:2px 2px 2px 2px;
  10037. box-sizing:border-box;
  10038. width:100%;
  10039. }
  10040. #u41863_text {
  10041. border-width:0px;
  10042. word-wrap:break-word;
  10043. text-transform:none;
  10044. visibility:hidden;
  10045. }
  10046. #u41864_img {
  10047. border-width:0px;
  10048. position:absolute;
  10049. left:0px;
  10050. top:0px;
  10051. width:7px;
  10052. height:7px;
  10053. }
  10054. #u41864 {
  10055. border-width:0px;
  10056. position:absolute;
  10057. left:2189px;
  10058. top:84px;
  10059. width:7px;
  10060. height:7px;
  10061. display:flex;
  10062. }
  10063. #u41864 .text {
  10064. position:absolute;
  10065. align-self:center;
  10066. padding:2px 2px 2px 2px;
  10067. box-sizing:border-box;
  10068. width:100%;
  10069. }
  10070. #u41864_text {
  10071. border-width:0px;
  10072. word-wrap:break-word;
  10073. text-transform:none;
  10074. visibility:hidden;
  10075. }
  10076. #u41865_img {
  10077. border-width:0px;
  10078. position:absolute;
  10079. left:0px;
  10080. top:0px;
  10081. width:19px;
  10082. height:2px;
  10083. }
  10084. #u41865 {
  10085. border-width:0px;
  10086. position:absolute;
  10087. left:2206px;
  10088. top:87px;
  10089. width:18px;
  10090. height:1px;
  10091. display:flex;
  10092. -webkit-transform:rotate(90deg);
  10093. -moz-transform:rotate(90deg);
  10094. -ms-transform:rotate(90deg);
  10095. transform:rotate(90deg);
  10096. }
  10097. #u41865 .text {
  10098. position:absolute;
  10099. align-self:center;
  10100. padding:2px 2px 2px 2px;
  10101. box-sizing:border-box;
  10102. width:100%;
  10103. }
  10104. #u41865_text {
  10105. border-width:0px;
  10106. word-wrap:break-word;
  10107. text-transform:none;
  10108. visibility:hidden;
  10109. }
  10110. #u41866_img {
  10111. border-width:0px;
  10112. position:absolute;
  10113. left:0px;
  10114. top:0px;
  10115. width:375px;
  10116. height:44px;
  10117. }
  10118. #u41866 {
  10119. border-width:0px;
  10120. position:absolute;
  10121. left:1888px;
  10122. top:24px;
  10123. width:375px;
  10124. height:44px;
  10125. display:flex;
  10126. }
  10127. #u41866 .text {
  10128. position:absolute;
  10129. align-self:center;
  10130. padding:2px 2px 2px 2px;
  10131. box-sizing:border-box;
  10132. width:100%;
  10133. }
  10134. #u41866_text {
  10135. border-width:0px;
  10136. word-wrap:break-word;
  10137. text-transform:none;
  10138. visibility:hidden;
  10139. }
  10140. #u41867_div {
  10141. border-width:0px;
  10142. position:absolute;
  10143. left:0px;
  10144. top:0px;
  10145. width:375px;
  10146. height:50px;
  10147. background:inherit;
  10148. background-color:rgba(255, 255, 255, 1);
  10149. box-sizing:border-box;
  10150. border-width:1px;
  10151. border-style:solid;
  10152. border-color:rgba(242, 242, 242, 1);
  10153. border-radius:26px;
  10154. border-top-left-radius:0px;
  10155. border-top-right-radius:0px;
  10156. -moz-box-shadow:none;
  10157. -webkit-box-shadow:none;
  10158. box-shadow:none;
  10159. }
  10160. #u41867 {
  10161. border-width:0px;
  10162. position:absolute;
  10163. left:1888px;
  10164. top:788px;
  10165. width:375px;
  10166. height:50px;
  10167. display:flex;
  10168. }
  10169. #u41867 .text {
  10170. position:absolute;
  10171. align-self:center;
  10172. padding:2px 2px 2px 2px;
  10173. box-sizing:border-box;
  10174. width:100%;
  10175. }
  10176. #u41867_text {
  10177. border-width:0px;
  10178. word-wrap:break-word;
  10179. text-transform:none;
  10180. visibility:hidden;
  10181. }
  10182. #u41868 {
  10183. border-width:0px;
  10184. position:absolute;
  10185. left:0px;
  10186. top:0px;
  10187. width:0px;
  10188. height:0px;
  10189. }
  10190. #u41869_img {
  10191. border-width:0px;
  10192. position:absolute;
  10193. left:0px;
  10194. top:0px;
  10195. width:24px;
  10196. height:24px;
  10197. }
  10198. #u41869 {
  10199. border-width:0px;
  10200. position:absolute;
  10201. left:1928px;
  10202. top:792px;
  10203. width:24px;
  10204. height:24px;
  10205. display:flex;
  10206. font-size:8px;
  10207. }
  10208. #u41869 .text {
  10209. position:absolute;
  10210. align-self:center;
  10211. padding:2px 2px 2px 2px;
  10212. box-sizing:border-box;
  10213. width:100%;
  10214. }
  10215. #u41869_text {
  10216. border-width:0px;
  10217. word-wrap:break-word;
  10218. text-transform:none;
  10219. }
  10220. #u41870_div {
  10221. border-width:0px;
  10222. position:absolute;
  10223. left:0px;
  10224. top:0px;
  10225. width:25px;
  10226. height:17px;
  10227. background:inherit;
  10228. background-color:rgba(255, 255, 255, 0);
  10229. border:none;
  10230. border-radius:0px;
  10231. -moz-box-shadow:none;
  10232. -webkit-box-shadow:none;
  10233. box-shadow:none;
  10234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10235. font-weight:400;
  10236. font-style:normal;
  10237. font-size:12px;
  10238. }
  10239. #u41870 {
  10240. border-width:0px;
  10241. position:absolute;
  10242. left:1928px;
  10243. top:817px;
  10244. width:25px;
  10245. height:17px;
  10246. display:flex;
  10247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10248. font-weight:400;
  10249. font-style:normal;
  10250. font-size:12px;
  10251. }
  10252. #u41870 .text {
  10253. position:absolute;
  10254. align-self:flex-start;
  10255. padding:0px 0px 0px 0px;
  10256. box-sizing:border-box;
  10257. width:100%;
  10258. }
  10259. #u41870_text {
  10260. border-width:0px;
  10261. white-space:nowrap;
  10262. text-transform:none;
  10263. }
  10264. #u41871 {
  10265. border-width:0px;
  10266. position:absolute;
  10267. left:0px;
  10268. top:0px;
  10269. width:0px;
  10270. height:0px;
  10271. }
  10272. #u41872_img {
  10273. border-width:0px;
  10274. position:absolute;
  10275. left:0px;
  10276. top:0px;
  10277. width:24px;
  10278. height:24px;
  10279. }
  10280. #u41872 {
  10281. border-width:0px;
  10282. position:absolute;
  10283. left:2198px;
  10284. top:794px;
  10285. width:24px;
  10286. height:24px;
  10287. display:flex;
  10288. font-size:8px;
  10289. }
  10290. #u41872 .text {
  10291. position:absolute;
  10292. align-self:center;
  10293. padding:2px 2px 2px 2px;
  10294. box-sizing:border-box;
  10295. width:100%;
  10296. }
  10297. #u41872_text {
  10298. border-width:0px;
  10299. word-wrap:break-word;
  10300. text-transform:none;
  10301. }
  10302. #u41873_div {
  10303. border-width:0px;
  10304. position:absolute;
  10305. left:0px;
  10306. top:0px;
  10307. width:25px;
  10308. height:17px;
  10309. background:inherit;
  10310. background-color:rgba(255, 255, 255, 0);
  10311. border:none;
  10312. border-radius:0px;
  10313. -moz-box-shadow:none;
  10314. -webkit-box-shadow:none;
  10315. box-shadow:none;
  10316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10317. font-weight:400;
  10318. font-style:normal;
  10319. font-size:12px;
  10320. }
  10321. #u41873 {
  10322. border-width:0px;
  10323. position:absolute;
  10324. left:2198px;
  10325. top:819px;
  10326. width:25px;
  10327. height:17px;
  10328. display:flex;
  10329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10330. font-weight:400;
  10331. font-style:normal;
  10332. font-size:12px;
  10333. }
  10334. #u41873 .text {
  10335. position:absolute;
  10336. align-self:flex-start;
  10337. padding:0px 0px 0px 0px;
  10338. box-sizing:border-box;
  10339. width:100%;
  10340. }
  10341. #u41873_text {
  10342. border-width:0px;
  10343. white-space:nowrap;
  10344. text-transform:none;
  10345. }
  10346. #u41874_div {
  10347. border-width:0px;
  10348. position:absolute;
  10349. left:0px;
  10350. top:0px;
  10351. width:375px;
  10352. height:681px;
  10353. background:inherit;
  10354. background-color:rgba(242, 242, 242, 0.462745098039216);
  10355. border:none;
  10356. border-radius:0px;
  10357. -moz-box-shadow:none;
  10358. -webkit-box-shadow:none;
  10359. box-shadow:none;
  10360. }
  10361. #u41874 {
  10362. border-width:0px;
  10363. position:absolute;
  10364. left:1888px;
  10365. top:107px;
  10366. width:375px;
  10367. height:681px;
  10368. display:flex;
  10369. }
  10370. #u41874 .text {
  10371. position:absolute;
  10372. align-self:center;
  10373. padding:2px 2px 2px 2px;
  10374. box-sizing:border-box;
  10375. width:100%;
  10376. }
  10377. #u41874_text {
  10378. border-width:0px;
  10379. word-wrap:break-word;
  10380. text-transform:none;
  10381. visibility:hidden;
  10382. }
  10383. #u41875 {
  10384. border-width:0px;
  10385. position:absolute;
  10386. left:0px;
  10387. top:0px;
  10388. width:0px;
  10389. height:0px;
  10390. }
  10391. #u41876_img {
  10392. border-width:0px;
  10393. position:absolute;
  10394. left:0px;
  10395. top:0px;
  10396. width:24px;
  10397. height:24px;
  10398. }
  10399. #u41876 {
  10400. border-width:0px;
  10401. position:absolute;
  10402. left:2110px;
  10403. top:792px;
  10404. width:24px;
  10405. height:24px;
  10406. display:flex;
  10407. font-size:8px;
  10408. }
  10409. #u41876 .text {
  10410. position:absolute;
  10411. align-self:center;
  10412. padding:2px 2px 2px 2px;
  10413. box-sizing:border-box;
  10414. width:100%;
  10415. }
  10416. #u41876_text {
  10417. border-width:0px;
  10418. word-wrap:break-word;
  10419. text-transform:none;
  10420. }
  10421. #u41877_div {
  10422. border-width:0px;
  10423. position:absolute;
  10424. left:0px;
  10425. top:0px;
  10426. width:37px;
  10427. height:17px;
  10428. background:inherit;
  10429. background-color:rgba(255, 255, 255, 0);
  10430. border:none;
  10431. border-radius:0px;
  10432. -moz-box-shadow:none;
  10433. -webkit-box-shadow:none;
  10434. box-shadow:none;
  10435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10436. font-weight:400;
  10437. font-style:normal;
  10438. font-size:12px;
  10439. }
  10440. #u41877 {
  10441. border-width:0px;
  10442. position:absolute;
  10443. left:2104px;
  10444. top:817px;
  10445. width:37px;
  10446. height:17px;
  10447. display:flex;
  10448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10449. font-weight:400;
  10450. font-style:normal;
  10451. font-size:12px;
  10452. }
  10453. #u41877 .text {
  10454. position:absolute;
  10455. align-self:flex-start;
  10456. padding:0px 0px 0px 0px;
  10457. box-sizing:border-box;
  10458. width:100%;
  10459. }
  10460. #u41877_text {
  10461. border-width:0px;
  10462. white-space:nowrap;
  10463. text-transform:none;
  10464. }
  10465. #u41878 {
  10466. border-width:0px;
  10467. position:absolute;
  10468. left:0px;
  10469. top:0px;
  10470. width:0px;
  10471. height:0px;
  10472. }
  10473. #u41879_img {
  10474. border-width:0px;
  10475. position:absolute;
  10476. left:0px;
  10477. top:0px;
  10478. width:24px;
  10479. height:24px;
  10480. }
  10481. #u41879 {
  10482. border-width:0px;
  10483. position:absolute;
  10484. left:2016px;
  10485. top:792px;
  10486. width:24px;
  10487. height:24px;
  10488. display:flex;
  10489. font-size:8px;
  10490. }
  10491. #u41879 .text {
  10492. position:absolute;
  10493. align-self:center;
  10494. padding:2px 2px 2px 2px;
  10495. box-sizing:border-box;
  10496. width:100%;
  10497. }
  10498. #u41879_text {
  10499. border-width:0px;
  10500. word-wrap:break-word;
  10501. text-transform:none;
  10502. }
  10503. #u41880_div {
  10504. border-width:0px;
  10505. position:absolute;
  10506. left:0px;
  10507. top:0px;
  10508. width:37px;
  10509. height:17px;
  10510. background:inherit;
  10511. background-color:rgba(255, 255, 255, 0);
  10512. border:none;
  10513. border-radius:0px;
  10514. -moz-box-shadow:none;
  10515. -webkit-box-shadow:none;
  10516. box-shadow:none;
  10517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10518. font-weight:400;
  10519. font-style:normal;
  10520. font-size:12px;
  10521. }
  10522. #u41880 {
  10523. border-width:0px;
  10524. position:absolute;
  10525. left:2010px;
  10526. top:817px;
  10527. width:37px;
  10528. height:17px;
  10529. display:flex;
  10530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10531. font-weight:400;
  10532. font-style:normal;
  10533. font-size:12px;
  10534. }
  10535. #u41880 .text {
  10536. position:absolute;
  10537. align-self:flex-start;
  10538. padding:0px 0px 0px 0px;
  10539. box-sizing:border-box;
  10540. width:100%;
  10541. }
  10542. #u41880_text {
  10543. border-width:0px;
  10544. white-space:nowrap;
  10545. text-transform:none;
  10546. }
  10547. #u41881_div {
  10548. border-width:0px;
  10549. position:absolute;
  10550. left:0px;
  10551. top:0px;
  10552. width:375px;
  10553. height:732px;
  10554. background:inherit;
  10555. background-color:rgba(242, 242, 242, 0.996078431372549);
  10556. border:none;
  10557. border-top:0px;
  10558. border-radius:28px;
  10559. border-top-left-radius:0px;
  10560. border-top-right-radius:0px;
  10561. -moz-box-shadow:none;
  10562. -webkit-box-shadow:none;
  10563. box-shadow:none;
  10564. }
  10565. #u41881 {
  10566. border-width:0px;
  10567. position:absolute;
  10568. left:1888px;
  10569. top:107px;
  10570. width:375px;
  10571. height:732px;
  10572. display:flex;
  10573. }
  10574. #u41881 .text {
  10575. position:absolute;
  10576. align-self:center;
  10577. padding:2px 2px 2px 2px;
  10578. box-sizing:border-box;
  10579. width:100%;
  10580. }
  10581. #u41881_text {
  10582. border-width:0px;
  10583. word-wrap:break-word;
  10584. text-transform:none;
  10585. visibility:hidden;
  10586. }
  10587. #u41882_div {
  10588. border-width:0px;
  10589. position:absolute;
  10590. left:0px;
  10591. top:0px;
  10592. width:375px;
  10593. height:41px;
  10594. background:inherit;
  10595. background-color:rgba(255, 255, 255, 1);
  10596. box-sizing:border-box;
  10597. border-width:1px;
  10598. border-style:solid;
  10599. border-color:rgba(215, 215, 215, 1);
  10600. border-left:0px;
  10601. border-top:0px;
  10602. border-right:0px;
  10603. border-radius:0px;
  10604. border-bottom-right-radius:0px;
  10605. border-bottom-left-radius:0px;
  10606. -moz-box-shadow:none;
  10607. -webkit-box-shadow:none;
  10608. box-shadow:none;
  10609. }
  10610. #u41882 {
  10611. border-width:0px;
  10612. position:absolute;
  10613. left:1888px;
  10614. top:67px;
  10615. width:375px;
  10616. height:41px;
  10617. display:flex;
  10618. }
  10619. #u41882 .text {
  10620. position:absolute;
  10621. align-self:center;
  10622. padding:2px 2px 2px 2px;
  10623. box-sizing:border-box;
  10624. width:100%;
  10625. }
  10626. #u41882_text {
  10627. border-width:0px;
  10628. word-wrap:break-word;
  10629. text-transform:none;
  10630. visibility:hidden;
  10631. }
  10632. #u41883 {
  10633. border-width:0px;
  10634. position:absolute;
  10635. left:0px;
  10636. top:0px;
  10637. width:0px;
  10638. height:0px;
  10639. }
  10640. #u41884_div {
  10641. border-width:0px;
  10642. position:absolute;
  10643. left:0px;
  10644. top:0px;
  10645. width:88px;
  10646. height:32px;
  10647. background:inherit;
  10648. background-color:rgba(255, 255, 255, 1);
  10649. box-sizing:border-box;
  10650. border-width:1px;
  10651. border-style:solid;
  10652. border-color:rgba(242, 242, 242, 1);
  10653. border-radius:33px;
  10654. -moz-box-shadow:none;
  10655. -webkit-box-shadow:none;
  10656. box-shadow:none;
  10657. }
  10658. #u41884 {
  10659. border-width:0px;
  10660. position:absolute;
  10661. left:2168px;
  10662. top:71px;
  10663. width:88px;
  10664. height:32px;
  10665. display:flex;
  10666. }
  10667. #u41884 .text {
  10668. position:absolute;
  10669. align-self:center;
  10670. padding:2px 2px 2px 2px;
  10671. box-sizing:border-box;
  10672. width:100%;
  10673. }
  10674. #u41884_text {
  10675. border-width:0px;
  10676. word-wrap:break-word;
  10677. text-transform:none;
  10678. visibility:hidden;
  10679. }
  10680. #u41885 {
  10681. border-width:0px;
  10682. position:absolute;
  10683. left:0px;
  10684. top:0px;
  10685. width:0px;
  10686. height:0px;
  10687. }
  10688. #u41886_img {
  10689. border-width:0px;
  10690. position:absolute;
  10691. left:0px;
  10692. top:0px;
  10693. width:18px;
  10694. height:18px;
  10695. }
  10696. #u41886 {
  10697. border-width:0px;
  10698. position:absolute;
  10699. left:2231px;
  10700. top:78px;
  10701. width:18px;
  10702. height:18px;
  10703. display:flex;
  10704. }
  10705. #u41886 .text {
  10706. position:absolute;
  10707. align-self:center;
  10708. padding:2px 2px 2px 2px;
  10709. box-sizing:border-box;
  10710. width:100%;
  10711. }
  10712. #u41886_text {
  10713. border-width:0px;
  10714. word-wrap:break-word;
  10715. text-transform:none;
  10716. visibility:hidden;
  10717. }
  10718. #u41887_img {
  10719. border-width:0px;
  10720. position:absolute;
  10721. left:0px;
  10722. top:0px;
  10723. width:6px;
  10724. height:6px;
  10725. }
  10726. #u41887 {
  10727. border-width:0px;
  10728. position:absolute;
  10729. left:2237px;
  10730. top:84px;
  10731. width:6px;
  10732. height:6px;
  10733. display:flex;
  10734. }
  10735. #u41887 .text {
  10736. position:absolute;
  10737. align-self:center;
  10738. padding:2px 2px 2px 2px;
  10739. box-sizing:border-box;
  10740. width:100%;
  10741. }
  10742. #u41887_text {
  10743. border-width:0px;
  10744. word-wrap:break-word;
  10745. text-transform:none;
  10746. visibility:hidden;
  10747. }
  10748. #u41888 {
  10749. border-width:0px;
  10750. position:absolute;
  10751. left:0px;
  10752. top:0px;
  10753. width:0px;
  10754. height:0px;
  10755. }
  10756. #u41889_img {
  10757. border-width:0px;
  10758. position:absolute;
  10759. left:0px;
  10760. top:0px;
  10761. width:5px;
  10762. height:5px;
  10763. }
  10764. #u41889 {
  10765. border-width:0px;
  10766. position:absolute;
  10767. left:2182px;
  10768. top:85px;
  10769. width:5px;
  10770. height:5px;
  10771. display:flex;
  10772. }
  10773. #u41889 .text {
  10774. position:absolute;
  10775. align-self:center;
  10776. padding:2px 2px 2px 2px;
  10777. box-sizing:border-box;
  10778. width:100%;
  10779. }
  10780. #u41889_text {
  10781. border-width:0px;
  10782. word-wrap:break-word;
  10783. text-transform:none;
  10784. visibility:hidden;
  10785. }
  10786. #u41890_img {
  10787. border-width:0px;
  10788. position:absolute;
  10789. left:0px;
  10790. top:0px;
  10791. width:5px;
  10792. height:5px;
  10793. }
  10794. #u41890 {
  10795. border-width:0px;
  10796. position:absolute;
  10797. left:2198px;
  10798. top:85px;
  10799. width:5px;
  10800. height:5px;
  10801. display:flex;
  10802. }
  10803. #u41890 .text {
  10804. position:absolute;
  10805. align-self:center;
  10806. padding:2px 2px 2px 2px;
  10807. box-sizing:border-box;
  10808. width:100%;
  10809. }
  10810. #u41890_text {
  10811. border-width:0px;
  10812. word-wrap:break-word;
  10813. text-transform:none;
  10814. visibility:hidden;
  10815. }
  10816. #u41891_img {
  10817. border-width:0px;
  10818. position:absolute;
  10819. left:0px;
  10820. top:0px;
  10821. width:7px;
  10822. height:7px;
  10823. }
  10824. #u41891 {
  10825. border-width:0px;
  10826. position:absolute;
  10827. left:2189px;
  10828. top:84px;
  10829. width:7px;
  10830. height:7px;
  10831. display:flex;
  10832. }
  10833. #u41891 .text {
  10834. position:absolute;
  10835. align-self:center;
  10836. padding:2px 2px 2px 2px;
  10837. box-sizing:border-box;
  10838. width:100%;
  10839. }
  10840. #u41891_text {
  10841. border-width:0px;
  10842. word-wrap:break-word;
  10843. text-transform:none;
  10844. visibility:hidden;
  10845. }
  10846. #u41892_img {
  10847. border-width:0px;
  10848. position:absolute;
  10849. left:0px;
  10850. top:0px;
  10851. width:19px;
  10852. height:2px;
  10853. }
  10854. #u41892 {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:2206px;
  10858. top:87px;
  10859. width:18px;
  10860. height:1px;
  10861. display:flex;
  10862. -webkit-transform:rotate(90deg);
  10863. -moz-transform:rotate(90deg);
  10864. -ms-transform:rotate(90deg);
  10865. transform:rotate(90deg);
  10866. }
  10867. #u41892 .text {
  10868. position:absolute;
  10869. align-self:center;
  10870. padding:2px 2px 2px 2px;
  10871. box-sizing:border-box;
  10872. width:100%;
  10873. }
  10874. #u41892_text {
  10875. border-width:0px;
  10876. word-wrap:break-word;
  10877. text-transform:none;
  10878. visibility:hidden;
  10879. }
  10880. #u41893_div {
  10881. border-width:0px;
  10882. position:absolute;
  10883. left:0px;
  10884. top:0px;
  10885. width:12px;
  10886. height:12px;
  10887. background:inherit;
  10888. background-color:rgba(255, 255, 255, 0);
  10889. box-sizing:border-box;
  10890. border-width:2px;
  10891. border-style:solid;
  10892. border-color:rgba(51, 51, 51, 1);
  10893. border-right:0px;
  10894. border-bottom:0px;
  10895. border-radius:0px;
  10896. border-top-right-radius:0px;
  10897. border-bottom-left-radius:0px;
  10898. -moz-box-shadow:none;
  10899. -webkit-box-shadow:none;
  10900. box-shadow:none;
  10901. }
  10902. #u41893 {
  10903. border-width:0px;
  10904. position:absolute;
  10905. left:1903px;
  10906. top:81px;
  10907. width:12px;
  10908. height:12px;
  10909. display:flex;
  10910. -webkit-transform:rotate(315deg);
  10911. -moz-transform:rotate(315deg);
  10912. -ms-transform:rotate(315deg);
  10913. transform:rotate(315deg);
  10914. }
  10915. #u41893 .text {
  10916. position:absolute;
  10917. align-self:center;
  10918. padding:2px 2px 2px 2px;
  10919. box-sizing:border-box;
  10920. width:100%;
  10921. }
  10922. #u41893_text {
  10923. border-width:0px;
  10924. word-wrap:break-word;
  10925. text-transform:none;
  10926. visibility:hidden;
  10927. }
  10928. #u41894_div {
  10929. border-width:0px;
  10930. position:absolute;
  10931. left:0px;
  10932. top:0px;
  10933. width:73px;
  10934. height:25px;
  10935. background:inherit;
  10936. background-color:rgba(255, 255, 255, 0);
  10937. border:none;
  10938. border-radius:0px;
  10939. -moz-box-shadow:none;
  10940. -webkit-box-shadow:none;
  10941. box-shadow:none;
  10942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10943. font-weight:400;
  10944. font-style:normal;
  10945. font-size:18px;
  10946. }
  10947. #u41894 {
  10948. border-width:0px;
  10949. position:absolute;
  10950. left:1923px;
  10951. top:75px;
  10952. width:73px;
  10953. height:25px;
  10954. display:flex;
  10955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10956. font-weight:400;
  10957. font-style:normal;
  10958. font-size:18px;
  10959. }
  10960. #u41894 .text {
  10961. position:absolute;
  10962. align-self:flex-start;
  10963. padding:0px 0px 0px 0px;
  10964. box-sizing:border-box;
  10965. width:100%;
  10966. }
  10967. #u41894_text {
  10968. border-width:0px;
  10969. white-space:nowrap;
  10970. text-transform:none;
  10971. }
  10972. #u41895 {
  10973. border-width:0px;
  10974. position:absolute;
  10975. left:0px;
  10976. top:0px;
  10977. width:0px;
  10978. height:0px;
  10979. }
  10980. #u41896_div {
  10981. border-width:0px;
  10982. position:absolute;
  10983. left:0px;
  10984. top:0px;
  10985. width:375px;
  10986. height:356px;
  10987. background:inherit;
  10988. background-color:rgba(255, 255, 255, 1);
  10989. border:none;
  10990. border-left:0px;
  10991. border-right:0px;
  10992. border-radius:0px;
  10993. border-top-left-radius:0px;
  10994. border-top-right-radius:0px;
  10995. border-bottom-right-radius:0px;
  10996. border-bottom-left-radius:0px;
  10997. -moz-box-shadow:none;
  10998. -webkit-box-shadow:none;
  10999. box-shadow:none;
  11000. }
  11001. #u41896 {
  11002. border-width:0px;
  11003. position:absolute;
  11004. left:1888px;
  11005. top:389px;
  11006. width:375px;
  11007. height:356px;
  11008. display:flex;
  11009. }
  11010. #u41896 .text {
  11011. position:absolute;
  11012. align-self:center;
  11013. padding:2px 2px 2px 2px;
  11014. box-sizing:border-box;
  11015. width:100%;
  11016. }
  11017. #u41896_text {
  11018. border-width:0px;
  11019. word-wrap:break-word;
  11020. text-transform:none;
  11021. visibility:hidden;
  11022. }
  11023. #u41897_div {
  11024. border-width:0px;
  11025. position:absolute;
  11026. left:0px;
  11027. top:0px;
  11028. width:57px;
  11029. height:30px;
  11030. background:inherit;
  11031. background-color:rgba(255, 255, 255, 0);
  11032. border:none;
  11033. border-left:0px;
  11034. border-top:0px;
  11035. border-right:0px;
  11036. border-radius:0px;
  11037. border-bottom-right-radius:0px;
  11038. border-bottom-left-radius:0px;
  11039. -moz-box-shadow:none;
  11040. -webkit-box-shadow:none;
  11041. box-shadow:none;
  11042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11043. font-weight:400;
  11044. font-style:normal;
  11045. font-size:14px;
  11046. line-height:30px;
  11047. }
  11048. #u41897 {
  11049. border-width:0px;
  11050. position:absolute;
  11051. left:1912px;
  11052. top:399px;
  11053. width:57px;
  11054. height:30px;
  11055. display:flex;
  11056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11057. font-weight:400;
  11058. font-style:normal;
  11059. font-size:14px;
  11060. line-height:30px;
  11061. }
  11062. #u41897 .text {
  11063. position:absolute;
  11064. align-self:flex-start;
  11065. padding:0px 0px 0px 0px;
  11066. box-sizing:border-box;
  11067. width:100%;
  11068. }
  11069. #u41897_text {
  11070. border-width:0px;
  11071. white-space:nowrap;
  11072. text-transform:none;
  11073. }
  11074. #u41898_div {
  11075. border-width:0px;
  11076. position:absolute;
  11077. left:0px;
  11078. top:0px;
  11079. width:181px;
  11080. height:30px;
  11081. background:inherit;
  11082. background-color:rgba(255, 255, 255, 0);
  11083. border:none;
  11084. border-left:0px;
  11085. border-top:0px;
  11086. border-right:0px;
  11087. border-radius:0px;
  11088. border-bottom-right-radius:0px;
  11089. border-bottom-left-radius:0px;
  11090. -moz-box-shadow:none;
  11091. -webkit-box-shadow:none;
  11092. box-shadow:none;
  11093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11094. font-weight:400;
  11095. font-style:normal;
  11096. font-size:12px;
  11097. line-height:30px;
  11098. }
  11099. #u41898 {
  11100. border-width:0px;
  11101. position:absolute;
  11102. left:1912px;
  11103. top:429px;
  11104. width:181px;
  11105. height:30px;
  11106. display:flex;
  11107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11108. font-weight:400;
  11109. font-style:normal;
  11110. font-size:12px;
  11111. line-height:30px;
  11112. }
  11113. #u41898 .text {
  11114. position:absolute;
  11115. align-self:flex-start;
  11116. padding:0px 0px 0px 0px;
  11117. box-sizing:border-box;
  11118. width:100%;
  11119. }
  11120. #u41898_text {
  11121. border-width:0px;
  11122. white-space:nowrap;
  11123. text-transform:none;
  11124. }
  11125. #u41899_div {
  11126. border-width:0px;
  11127. position:absolute;
  11128. left:0px;
  11129. top:0px;
  11130. width:167px;
  11131. height:30px;
  11132. background:inherit;
  11133. background-color:rgba(255, 255, 255, 0);
  11134. border:none;
  11135. border-left:0px;
  11136. border-top:0px;
  11137. border-right:0px;
  11138. border-radius:0px;
  11139. border-bottom-right-radius:0px;
  11140. border-bottom-left-radius:0px;
  11141. -moz-box-shadow:none;
  11142. -webkit-box-shadow:none;
  11143. box-shadow:none;
  11144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11145. font-weight:400;
  11146. font-style:normal;
  11147. font-size:12px;
  11148. line-height:30px;
  11149. }
  11150. #u41899 {
  11151. border-width:0px;
  11152. position:absolute;
  11153. left:1912px;
  11154. top:459px;
  11155. width:167px;
  11156. height:30px;
  11157. display:flex;
  11158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11159. font-weight:400;
  11160. font-style:normal;
  11161. font-size:12px;
  11162. line-height:30px;
  11163. }
  11164. #u41899 .text {
  11165. position:absolute;
  11166. align-self:flex-start;
  11167. padding:0px 0px 0px 0px;
  11168. box-sizing:border-box;
  11169. width:100%;
  11170. }
  11171. #u41899_text {
  11172. border-width:0px;
  11173. white-space:nowrap;
  11174. text-transform:none;
  11175. }
  11176. #u41900_img {
  11177. border-width:0px;
  11178. position:absolute;
  11179. left:0px;
  11180. top:0px;
  11181. width:375px;
  11182. height:218px;
  11183. }
  11184. #u41900 {
  11185. border-width:0px;
  11186. position:absolute;
  11187. left:1888px;
  11188. top:587px;
  11189. width:375px;
  11190. height:218px;
  11191. display:flex;
  11192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11193. font-weight:400;
  11194. font-style:normal;
  11195. }
  11196. #u41900 .text {
  11197. position:absolute;
  11198. align-self:center;
  11199. padding:2px 2px 2px 2px;
  11200. box-sizing:border-box;
  11201. width:100%;
  11202. }
  11203. #u41900_text {
  11204. border-width:0px;
  11205. word-wrap:break-word;
  11206. text-transform:none;
  11207. }
  11208. #u41901_div {
  11209. border-width:0px;
  11210. position:absolute;
  11211. left:0px;
  11212. top:0px;
  11213. width:167px;
  11214. height:30px;
  11215. background:inherit;
  11216. background-color:rgba(255, 255, 255, 0);
  11217. border:none;
  11218. border-left:0px;
  11219. border-top:0px;
  11220. border-right:0px;
  11221. border-radius:0px;
  11222. border-bottom-right-radius:0px;
  11223. border-bottom-left-radius:0px;
  11224. -moz-box-shadow:none;
  11225. -webkit-box-shadow:none;
  11226. box-shadow:none;
  11227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11228. font-weight:400;
  11229. font-style:normal;
  11230. font-size:12px;
  11231. line-height:30px;
  11232. }
  11233. #u41901 {
  11234. border-width:0px;
  11235. position:absolute;
  11236. left:1912px;
  11237. top:489px;
  11238. width:167px;
  11239. height:30px;
  11240. display:flex;
  11241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11242. font-weight:400;
  11243. font-style:normal;
  11244. font-size:12px;
  11245. line-height:30px;
  11246. }
  11247. #u41901 .text {
  11248. position:absolute;
  11249. align-self:flex-start;
  11250. padding:0px 0px 0px 0px;
  11251. box-sizing:border-box;
  11252. width:100%;
  11253. }
  11254. #u41901_text {
  11255. border-width:0px;
  11256. white-space:nowrap;
  11257. text-transform:none;
  11258. }
  11259. #u41902_div {
  11260. border-width:0px;
  11261. position:absolute;
  11262. left:0px;
  11263. top:0px;
  11264. width:92px;
  11265. height:30px;
  11266. background:inherit;
  11267. background-color:rgba(255, 255, 255, 0);
  11268. border:none;
  11269. border-left:0px;
  11270. border-top:0px;
  11271. border-right:0px;
  11272. border-radius:0px;
  11273. border-bottom-right-radius:0px;
  11274. border-bottom-left-radius:0px;
  11275. -moz-box-shadow:none;
  11276. -webkit-box-shadow:none;
  11277. box-shadow:none;
  11278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11279. font-weight:400;
  11280. font-style:normal;
  11281. font-size:12px;
  11282. color:#0089FE;
  11283. line-height:30px;
  11284. }
  11285. #u41902 {
  11286. border-width:0px;
  11287. position:absolute;
  11288. left:2157px;
  11289. top:399px;
  11290. width:92px;
  11291. height:30px;
  11292. display:flex;
  11293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11294. font-weight:400;
  11295. font-style:normal;
  11296. font-size:12px;
  11297. color:#0089FE;
  11298. line-height:30px;
  11299. }
  11300. #u41902 .text {
  11301. position:absolute;
  11302. align-self:flex-start;
  11303. padding:0px 0px 0px 0px;
  11304. box-sizing:border-box;
  11305. width:100%;
  11306. }
  11307. #u41902_text {
  11308. border-width:0px;
  11309. white-space:nowrap;
  11310. text-transform:none;
  11311. }
  11312. #u41903_div {
  11313. border-width:0px;
  11314. position:absolute;
  11315. left:0px;
  11316. top:0px;
  11317. width:337px;
  11318. height:48px;
  11319. background:inherit;
  11320. background-color:rgba(51, 51, 51, 1);
  11321. border:none;
  11322. border-radius:5px;
  11323. -moz-box-shadow:none;
  11324. -webkit-box-shadow:none;
  11325. box-shadow:none;
  11326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11327. font-weight:400;
  11328. font-style:normal;
  11329. font-size:14px;
  11330. color:#FFFFFF;
  11331. line-height:30px;
  11332. }
  11333. #u41903 {
  11334. border-width:0px;
  11335. position:absolute;
  11336. left:1907px;
  11337. top:525px;
  11338. width:337px;
  11339. height:48px;
  11340. display:flex;
  11341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11342. font-weight:400;
  11343. font-style:normal;
  11344. font-size:14px;
  11345. color:#FFFFFF;
  11346. line-height:30px;
  11347. }
  11348. #u41903 .text {
  11349. position:absolute;
  11350. align-self:center;
  11351. padding:2px 2px 2px 2px;
  11352. box-sizing:border-box;
  11353. width:100%;
  11354. }
  11355. #u41903_text {
  11356. border-width:0px;
  11357. word-wrap:break-word;
  11358. text-transform:none;
  11359. }
  11360. #u41904 {
  11361. border-width:0px;
  11362. position:absolute;
  11363. left:0px;
  11364. top:0px;
  11365. width:0px;
  11366. height:0px;
  11367. }
  11368. #u41905_div {
  11369. border-width:0px;
  11370. position:absolute;
  11371. left:0px;
  11372. top:0px;
  11373. width:375px;
  11374. height:40px;
  11375. background:inherit;
  11376. background-color:rgba(255, 255, 128, 0.0980392156862745);
  11377. border:none;
  11378. border-radius:0px;
  11379. -moz-box-shadow:none;
  11380. -webkit-box-shadow:none;
  11381. box-shadow:none;
  11382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11383. font-weight:400;
  11384. font-style:normal;
  11385. font-size:14px;
  11386. color:#F59A23;
  11387. }
  11388. #u41905 {
  11389. border-width:0px;
  11390. position:absolute;
  11391. left:1888px;
  11392. top:799px;
  11393. width:375px;
  11394. height:40px;
  11395. display:flex;
  11396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11397. font-weight:400;
  11398. font-style:normal;
  11399. font-size:14px;
  11400. color:#F59A23;
  11401. }
  11402. #u41905 .text {
  11403. position:absolute;
  11404. align-self:center;
  11405. padding:2px 2px 2px 2px;
  11406. box-sizing:border-box;
  11407. width:100%;
  11408. }
  11409. #u41905_text {
  11410. border-width:0px;
  11411. word-wrap:break-word;
  11412. text-transform:none;
  11413. }
  11414. #u41906_img {
  11415. border-width:0px;
  11416. position:absolute;
  11417. left:0px;
  11418. top:0px;
  11419. width:15px;
  11420. height:15px;
  11421. }
  11422. #u41906 {
  11423. border-width:0px;
  11424. position:absolute;
  11425. left:2208px;
  11426. top:811px;
  11427. width:15px;
  11428. height:15px;
  11429. display:flex;
  11430. }
  11431. #u41906 .text {
  11432. position:absolute;
  11433. align-self:center;
  11434. padding:2px 2px 2px 2px;
  11435. box-sizing:border-box;
  11436. width:100%;
  11437. }
  11438. #u41906_text {
  11439. border-width:0px;
  11440. word-wrap:break-word;
  11441. text-transform:none;
  11442. visibility:hidden;
  11443. }
  11444. #u41907 {
  11445. border-width:0px;
  11446. position:absolute;
  11447. left:0px;
  11448. top:0px;
  11449. width:0px;
  11450. height:0px;
  11451. }
  11452. #u41908_div {
  11453. border-width:0px;
  11454. position:absolute;
  11455. left:0px;
  11456. top:0px;
  11457. width:375px;
  11458. height:40px;
  11459. background:inherit;
  11460. background-color:rgba(255, 255, 128, 0.0980392156862745);
  11461. border:none;
  11462. border-radius:0px;
  11463. -moz-box-shadow:none;
  11464. -webkit-box-shadow:none;
  11465. box-shadow:none;
  11466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11467. font-weight:400;
  11468. font-style:normal;
  11469. font-size:14px;
  11470. color:#F59A23;
  11471. }
  11472. #u41908 {
  11473. border-width:0px;
  11474. position:absolute;
  11475. left:1425px;
  11476. top:799px;
  11477. width:375px;
  11478. height:40px;
  11479. display:flex;
  11480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11481. font-weight:400;
  11482. font-style:normal;
  11483. font-size:14px;
  11484. color:#F59A23;
  11485. }
  11486. #u41908 .text {
  11487. position:absolute;
  11488. align-self:center;
  11489. padding:2px 2px 2px 2px;
  11490. box-sizing:border-box;
  11491. width:100%;
  11492. }
  11493. #u41908_text {
  11494. border-width:0px;
  11495. word-wrap:break-word;
  11496. text-transform:none;
  11497. }
  11498. #u41909_img {
  11499. border-width:0px;
  11500. position:absolute;
  11501. left:0px;
  11502. top:0px;
  11503. width:15px;
  11504. height:15px;
  11505. }
  11506. #u41909 {
  11507. border-width:0px;
  11508. position:absolute;
  11509. left:1745px;
  11510. top:811px;
  11511. width:15px;
  11512. height:15px;
  11513. display:flex;
  11514. }
  11515. #u41909 .text {
  11516. position:absolute;
  11517. align-self:center;
  11518. padding:2px 2px 2px 2px;
  11519. box-sizing:border-box;
  11520. width:100%;
  11521. }
  11522. #u41909_text {
  11523. border-width:0px;
  11524. word-wrap:break-word;
  11525. text-transform:none;
  11526. visibility:hidden;
  11527. }
  11528. #u41910 {
  11529. border-width:0px;
  11530. position:absolute;
  11531. left:0px;
  11532. top:0px;
  11533. width:0px;
  11534. height:0px;
  11535. }
  11536. #u41911_div {
  11537. border-width:0px;
  11538. position:absolute;
  11539. left:0px;
  11540. top:0px;
  11541. width:375px;
  11542. height:306px;
  11543. background:inherit;
  11544. background-color:rgba(255, 255, 255, 1);
  11545. border:none;
  11546. border-left:0px;
  11547. border-right:0px;
  11548. border-radius:0px;
  11549. border-top-left-radius:0px;
  11550. border-top-right-radius:0px;
  11551. border-bottom-right-radius:0px;
  11552. border-bottom-left-radius:0px;
  11553. -moz-box-shadow:none;
  11554. -webkit-box-shadow:none;
  11555. box-shadow:none;
  11556. }
  11557. #u41911 {
  11558. border-width:0px;
  11559. position:absolute;
  11560. left:494px;
  11561. top:473px;
  11562. width:375px;
  11563. height:306px;
  11564. display:flex;
  11565. }
  11566. #u41911 .text {
  11567. position:absolute;
  11568. align-self:center;
  11569. padding:2px 2px 2px 2px;
  11570. box-sizing:border-box;
  11571. width:100%;
  11572. }
  11573. #u41911_text {
  11574. border-width:0px;
  11575. word-wrap:break-word;
  11576. text-transform:none;
  11577. visibility:hidden;
  11578. }
  11579. #u41912_div {
  11580. border-width:0px;
  11581. position:absolute;
  11582. left:0px;
  11583. top:0px;
  11584. width:57px;
  11585. height:30px;
  11586. background:inherit;
  11587. background-color:rgba(255, 255, 255, 0);
  11588. border:none;
  11589. border-left:0px;
  11590. border-top:0px;
  11591. border-right:0px;
  11592. border-radius:0px;
  11593. border-bottom-right-radius:0px;
  11594. border-bottom-left-radius:0px;
  11595. -moz-box-shadow:none;
  11596. -webkit-box-shadow:none;
  11597. box-shadow:none;
  11598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11599. font-weight:400;
  11600. font-style:normal;
  11601. font-size:14px;
  11602. line-height:30px;
  11603. }
  11604. #u41912 {
  11605. border-width:0px;
  11606. position:absolute;
  11607. left:512px;
  11608. top:483px;
  11609. width:57px;
  11610. height:30px;
  11611. display:flex;
  11612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11613. font-weight:400;
  11614. font-style:normal;
  11615. font-size:14px;
  11616. line-height:30px;
  11617. }
  11618. #u41912 .text {
  11619. position:absolute;
  11620. align-self:flex-start;
  11621. padding:0px 0px 0px 0px;
  11622. box-sizing:border-box;
  11623. width:100%;
  11624. }
  11625. #u41912_text {
  11626. border-width:0px;
  11627. white-space:nowrap;
  11628. text-transform:none;
  11629. }
  11630. #u41913_div {
  11631. border-width:0px;
  11632. position:absolute;
  11633. left:0px;
  11634. top:0px;
  11635. width:181px;
  11636. height:30px;
  11637. background:inherit;
  11638. background-color:rgba(255, 255, 255, 0);
  11639. border:none;
  11640. border-left:0px;
  11641. border-top:0px;
  11642. border-right:0px;
  11643. border-radius:0px;
  11644. border-bottom-right-radius:0px;
  11645. border-bottom-left-radius:0px;
  11646. -moz-box-shadow:none;
  11647. -webkit-box-shadow:none;
  11648. box-shadow:none;
  11649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11650. font-weight:400;
  11651. font-style:normal;
  11652. font-size:12px;
  11653. line-height:30px;
  11654. }
  11655. #u41913 {
  11656. border-width:0px;
  11657. position:absolute;
  11658. left:512px;
  11659. top:513px;
  11660. width:181px;
  11661. height:30px;
  11662. display:flex;
  11663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11664. font-weight:400;
  11665. font-style:normal;
  11666. font-size:12px;
  11667. line-height:30px;
  11668. }
  11669. #u41913 .text {
  11670. position:absolute;
  11671. align-self:flex-start;
  11672. padding:0px 0px 0px 0px;
  11673. box-sizing:border-box;
  11674. width:100%;
  11675. }
  11676. #u41913_text {
  11677. border-width:0px;
  11678. white-space:nowrap;
  11679. text-transform:none;
  11680. }
  11681. #u41914_div {
  11682. border-width:0px;
  11683. position:absolute;
  11684. left:0px;
  11685. top:0px;
  11686. width:167px;
  11687. height:30px;
  11688. background:inherit;
  11689. background-color:rgba(255, 255, 255, 0);
  11690. border:none;
  11691. border-left:0px;
  11692. border-top:0px;
  11693. border-right:0px;
  11694. border-radius:0px;
  11695. border-bottom-right-radius:0px;
  11696. border-bottom-left-radius:0px;
  11697. -moz-box-shadow:none;
  11698. -webkit-box-shadow:none;
  11699. box-shadow:none;
  11700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11701. font-weight:400;
  11702. font-style:normal;
  11703. font-size:12px;
  11704. line-height:30px;
  11705. }
  11706. #u41914 {
  11707. border-width:0px;
  11708. position:absolute;
  11709. left:512px;
  11710. top:543px;
  11711. width:167px;
  11712. height:30px;
  11713. display:flex;
  11714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11715. font-weight:400;
  11716. font-style:normal;
  11717. font-size:12px;
  11718. line-height:30px;
  11719. }
  11720. #u41914 .text {
  11721. position:absolute;
  11722. align-self:flex-start;
  11723. padding:0px 0px 0px 0px;
  11724. box-sizing:border-box;
  11725. width:100%;
  11726. }
  11727. #u41914_text {
  11728. border-width:0px;
  11729. white-space:nowrap;
  11730. text-transform:none;
  11731. }
  11732. #u41915_div {
  11733. border-width:0px;
  11734. position:absolute;
  11735. left:0px;
  11736. top:0px;
  11737. width:85px;
  11738. height:30px;
  11739. background:inherit;
  11740. background-color:rgba(255, 255, 255, 0);
  11741. border:none;
  11742. border-left:0px;
  11743. border-top:0px;
  11744. border-right:0px;
  11745. border-radius:0px;
  11746. border-bottom-right-radius:0px;
  11747. border-bottom-left-radius:0px;
  11748. -moz-box-shadow:none;
  11749. -webkit-box-shadow:none;
  11750. box-shadow:none;
  11751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11752. font-weight:400;
  11753. font-style:normal;
  11754. font-size:12px;
  11755. color:#0089FE;
  11756. line-height:30px;
  11757. }
  11758. #u41915 {
  11759. border-width:0px;
  11760. position:absolute;
  11761. left:770px;
  11762. top:483px;
  11763. width:85px;
  11764. height:30px;
  11765. display:flex;
  11766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11767. font-weight:400;
  11768. font-style:normal;
  11769. font-size:12px;
  11770. color:#0089FE;
  11771. line-height:30px;
  11772. }
  11773. #u41915 .text {
  11774. position:absolute;
  11775. align-self:flex-start;
  11776. padding:0px 0px 0px 0px;
  11777. box-sizing:border-box;
  11778. width:100%;
  11779. }
  11780. #u41915_text {
  11781. border-width:0px;
  11782. white-space:nowrap;
  11783. text-transform:none;
  11784. }
  11785. #u41916_div {
  11786. border-width:0px;
  11787. position:absolute;
  11788. left:0px;
  11789. top:0px;
  11790. width:337px;
  11791. height:48px;
  11792. background:inherit;
  11793. background-color:rgba(51, 51, 51, 1);
  11794. border:none;
  11795. border-radius:5px;
  11796. -moz-box-shadow:none;
  11797. -webkit-box-shadow:none;
  11798. box-shadow:none;
  11799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11800. font-weight:400;
  11801. font-style:normal;
  11802. font-size:14px;
  11803. color:#FFFFFF;
  11804. line-height:30px;
  11805. }
  11806. #u41916 {
  11807. border-width:0px;
  11808. position:absolute;
  11809. left:512px;
  11810. top:583px;
  11811. width:337px;
  11812. height:48px;
  11813. display:flex;
  11814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11815. font-weight:400;
  11816. font-style:normal;
  11817. font-size:14px;
  11818. color:#FFFFFF;
  11819. line-height:30px;
  11820. }
  11821. #u41916 .text {
  11822. position:absolute;
  11823. align-self:center;
  11824. padding:2px 2px 2px 2px;
  11825. box-sizing:border-box;
  11826. width:100%;
  11827. }
  11828. #u41916_text {
  11829. border-width:0px;
  11830. word-wrap:break-word;
  11831. text-transform:none;
  11832. }
  11833. #u41917_img {
  11834. border-width:0px;
  11835. position:absolute;
  11836. left:0px;
  11837. top:0px;
  11838. width:375px;
  11839. height:140px;
  11840. }
  11841. #u41917 {
  11842. border-width:0px;
  11843. position:absolute;
  11844. left:494px;
  11845. top:639px;
  11846. width:375px;
  11847. height:140px;
  11848. display:flex;
  11849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11850. font-weight:400;
  11851. font-style:normal;
  11852. }
  11853. #u41917 .text {
  11854. position:absolute;
  11855. align-self:center;
  11856. padding:2px 2px 2px 2px;
  11857. box-sizing:border-box;
  11858. width:100%;
  11859. }
  11860. #u41917_text {
  11861. border-width:0px;
  11862. word-wrap:break-word;
  11863. text-transform:none;
  11864. }
  11865. #u41918 {
  11866. border-width:0px;
  11867. position:absolute;
  11868. left:0px;
  11869. top:0px;
  11870. width:0px;
  11871. height:0px;
  11872. }
  11873. #u41919_div {
  11874. border-width:0px;
  11875. position:absolute;
  11876. left:0px;
  11877. top:0px;
  11878. width:375px;
  11879. height:235px;
  11880. background:inherit;
  11881. background-color:rgba(255, 255, 255, 1);
  11882. border:none;
  11883. border-left:0px;
  11884. border-top:0px;
  11885. border-right:0px;
  11886. border-radius:0px;
  11887. border-bottom-right-radius:0px;
  11888. border-bottom-left-radius:0px;
  11889. -moz-box-shadow:none;
  11890. -webkit-box-shadow:none;
  11891. box-shadow:none;
  11892. }
  11893. #u41919 {
  11894. border-width:0px;
  11895. position:absolute;
  11896. left:29px;
  11897. top:338px;
  11898. width:375px;
  11899. height:235px;
  11900. display:flex;
  11901. }
  11902. #u41919 .text {
  11903. position:absolute;
  11904. align-self:center;
  11905. padding:2px 2px 2px 2px;
  11906. box-sizing:border-box;
  11907. width:100%;
  11908. }
  11909. #u41919_text {
  11910. border-width:0px;
  11911. word-wrap:break-word;
  11912. text-transform:none;
  11913. visibility:hidden;
  11914. }
  11915. #u41920_div {
  11916. border-width:0px;
  11917. position:absolute;
  11918. left:0px;
  11919. top:0px;
  11920. width:57px;
  11921. height:25px;
  11922. background:inherit;
  11923. background-color:rgba(255, 255, 255, 0);
  11924. border:none;
  11925. border-left:0px;
  11926. border-top:0px;
  11927. border-right:0px;
  11928. border-radius:0px;
  11929. border-bottom-right-radius:0px;
  11930. border-bottom-left-radius:0px;
  11931. -moz-box-shadow:none;
  11932. -webkit-box-shadow:none;
  11933. box-shadow:none;
  11934. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11935. font-weight:500;
  11936. font-style:normal;
  11937. font-size:14px;
  11938. line-height:25px;
  11939. }
  11940. #u41920 {
  11941. border-width:0px;
  11942. position:absolute;
  11943. left:40px;
  11944. top:348px;
  11945. width:57px;
  11946. height:25px;
  11947. display:flex;
  11948. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11949. font-weight:500;
  11950. font-style:normal;
  11951. font-size:14px;
  11952. line-height:25px;
  11953. }
  11954. #u41920 .text {
  11955. position:absolute;
  11956. align-self:flex-start;
  11957. padding:0px 0px 0px 0px;
  11958. box-sizing:border-box;
  11959. width:100%;
  11960. }
  11961. #u41920_text {
  11962. border-width:0px;
  11963. white-space:nowrap;
  11964. text-transform:none;
  11965. }
  11966. #u41921_div {
  11967. border-width:0px;
  11968. position:absolute;
  11969. left:0px;
  11970. top:0px;
  11971. width:71px;
  11972. height:60px;
  11973. background:inherit;
  11974. background-color:rgba(255, 255, 255, 0);
  11975. border:none;
  11976. border-left:0px;
  11977. border-top:0px;
  11978. border-right:0px;
  11979. border-radius:0px;
  11980. border-bottom-right-radius:0px;
  11981. border-bottom-left-radius:0px;
  11982. -moz-box-shadow:none;
  11983. -webkit-box-shadow:none;
  11984. box-shadow:none;
  11985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11986. font-weight:400;
  11987. font-style:normal;
  11988. font-size:14px;
  11989. line-height:30px;
  11990. }
  11991. #u41921 {
  11992. border-width:0px;
  11993. position:absolute;
  11994. left:53px;
  11995. top:453px;
  11996. width:71px;
  11997. height:60px;
  11998. display:flex;
  11999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12000. font-weight:400;
  12001. font-style:normal;
  12002. font-size:14px;
  12003. line-height:30px;
  12004. }
  12005. #u41921 .text {
  12006. position:absolute;
  12007. align-self:flex-start;
  12008. padding:0px 0px 0px 0px;
  12009. box-sizing:border-box;
  12010. width:100%;
  12011. }
  12012. #u41921_text {
  12013. border-width:0px;
  12014. white-space:nowrap;
  12015. text-transform:none;
  12016. }
  12017. #u41922_div {
  12018. border-width:0px;
  12019. position:absolute;
  12020. left:0px;
  12021. top:0px;
  12022. width:350px;
  12023. height:60px;
  12024. background:inherit;
  12025. background-color:rgba(255, 255, 255, 1);
  12026. box-sizing:border-box;
  12027. border-width:1px;
  12028. border-style:solid;
  12029. border-color:rgba(215, 215, 215, 1);
  12030. border-radius:10px;
  12031. -moz-box-shadow:none;
  12032. -webkit-box-shadow:none;
  12033. box-shadow:none;
  12034. }
  12035. #u41922 {
  12036. border-width:0px;
  12037. position:absolute;
  12038. left:40px;
  12039. top:383px;
  12040. width:350px;
  12041. height:60px;
  12042. display:flex;
  12043. }
  12044. #u41922 .text {
  12045. position:absolute;
  12046. align-self:center;
  12047. padding:2px 2px 2px 2px;
  12048. box-sizing:border-box;
  12049. width:100%;
  12050. }
  12051. #u41922_text {
  12052. border-width:0px;
  12053. word-wrap:break-word;
  12054. text-transform:none;
  12055. visibility:hidden;
  12056. }
  12057. #u41923_div {
  12058. border-width:0px;
  12059. position:absolute;
  12060. left:0px;
  12061. top:0px;
  12062. width:133px;
  12063. height:30px;
  12064. background:inherit;
  12065. background-color:rgba(255, 255, 255, 0);
  12066. border:none;
  12067. border-left:0px;
  12068. border-top:0px;
  12069. border-right:0px;
  12070. border-radius:0px;
  12071. border-bottom-right-radius:0px;
  12072. border-bottom-left-radius:0px;
  12073. -moz-box-shadow:none;
  12074. -webkit-box-shadow:none;
  12075. box-shadow:none;
  12076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12077. font-weight:400;
  12078. font-style:normal;
  12079. line-height:30px;
  12080. }
  12081. #u41923 {
  12082. border-width:0px;
  12083. position:absolute;
  12084. left:58px;
  12085. top:398px;
  12086. width:133px;
  12087. height:30px;
  12088. display:flex;
  12089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12090. font-weight:400;
  12091. font-style:normal;
  12092. line-height:30px;
  12093. }
  12094. #u41923 .text {
  12095. position:absolute;
  12096. align-self:flex-start;
  12097. padding:0px 0px 0px 0px;
  12098. box-sizing:border-box;
  12099. width:100%;
  12100. }
  12101. #u41923_text {
  12102. border-width:0px;
  12103. white-space:nowrap;
  12104. text-transform:none;
  12105. }
  12106. #u41924_div {
  12107. border-width:0px;
  12108. position:absolute;
  12109. left:0px;
  12110. top:0px;
  12111. width:44px;
  12112. height:60px;
  12113. background:inherit;
  12114. background-color:rgba(255, 255, 255, 0);
  12115. border:none;
  12116. border-left:0px;
  12117. border-top:0px;
  12118. border-right:0px;
  12119. border-radius:0px;
  12120. border-bottom-right-radius:0px;
  12121. border-bottom-left-radius:0px;
  12122. -moz-box-shadow:none;
  12123. -webkit-box-shadow:none;
  12124. box-shadow:none;
  12125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12126. font-weight:400;
  12127. font-style:normal;
  12128. font-size:14px;
  12129. text-align:right;
  12130. line-height:30px;
  12131. }
  12132. #u41924 {
  12133. border-width:0px;
  12134. position:absolute;
  12135. left:346px;
  12136. top:453px;
  12137. width:44px;
  12138. height:60px;
  12139. display:flex;
  12140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12141. font-weight:400;
  12142. font-style:normal;
  12143. font-size:14px;
  12144. text-align:right;
  12145. line-height:30px;
  12146. }
  12147. #u41924 .text {
  12148. position:absolute;
  12149. align-self:flex-start;
  12150. padding:0px 0px 0px 0px;
  12151. box-sizing:border-box;
  12152. width:100%;
  12153. }
  12154. #u41924_text {
  12155. border-width:0px;
  12156. white-space:nowrap;
  12157. text-transform:none;
  12158. }
  12159. #u41925_div {
  12160. border-width:0px;
  12161. position:absolute;
  12162. left:0px;
  12163. top:0px;
  12164. width:375px;
  12165. height:40px;
  12166. background:inherit;
  12167. background-color:rgba(24, 144, 255, 0.0470588235294118);
  12168. border:none;
  12169. border-left:0px;
  12170. border-top:0px;
  12171. border-right:0px;
  12172. border-radius:0px;
  12173. border-bottom-right-radius:0px;
  12174. border-bottom-left-radius:0px;
  12175. -moz-box-shadow:none;
  12176. -webkit-box-shadow:none;
  12177. box-shadow:none;
  12178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12179. font-weight:400;
  12180. font-style:normal;
  12181. text-align:right;
  12182. line-height:30px;
  12183. }
  12184. #u41925 {
  12185. border-width:0px;
  12186. position:absolute;
  12187. left:29px;
  12188. top:533px;
  12189. width:375px;
  12190. height:40px;
  12191. display:flex;
  12192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12193. font-weight:400;
  12194. font-style:normal;
  12195. text-align:right;
  12196. line-height:30px;
  12197. }
  12198. #u41925 .text {
  12199. position:absolute;
  12200. align-self:center;
  12201. padding:0px 20px 0px 20px;
  12202. box-sizing:border-box;
  12203. width:100%;
  12204. }
  12205. #u41925_text {
  12206. border-width:0px;
  12207. word-wrap:break-word;
  12208. text-transform:none;
  12209. }
  12210. #u41926_img {
  12211. border-width:0px;
  12212. position:absolute;
  12213. left:0px;
  12214. top:0px;
  12215. width:10px;
  12216. height:9px;
  12217. }
  12218. #u41926 {
  12219. border-width:0px;
  12220. position:absolute;
  12221. left:372px;
  12222. top:356px;
  12223. width:10px;
  12224. height:9px;
  12225. display:flex;
  12226. }
  12227. #u41926 .text {
  12228. position:absolute;
  12229. align-self:center;
  12230. padding:2px 2px 2px 2px;
  12231. box-sizing:border-box;
  12232. width:100%;
  12233. }
  12234. #u41926_text {
  12235. border-width:0px;
  12236. word-wrap:break-word;
  12237. text-transform:none;
  12238. visibility:hidden;
  12239. }
  12240. #u41927 {
  12241. border-width:0px;
  12242. position:absolute;
  12243. left:0px;
  12244. top:0px;
  12245. width:0px;
  12246. height:0px;
  12247. }
  12248. #u41928_div {
  12249. border-width:0px;
  12250. position:absolute;
  12251. left:0px;
  12252. top:0px;
  12253. width:375px;
  12254. height:229px;
  12255. background:inherit;
  12256. background-color:rgba(255, 255, 255, 1);
  12257. border:none;
  12258. border-left:0px;
  12259. border-top:0px;
  12260. border-right:0px;
  12261. border-radius:0px;
  12262. border-bottom-right-radius:0px;
  12263. border-bottom-left-radius:0px;
  12264. -moz-box-shadow:none;
  12265. -webkit-box-shadow:none;
  12266. box-shadow:none;
  12267. }
  12268. #u41928 {
  12269. border-width:0px;
  12270. position:absolute;
  12271. left:494px;
  12272. top:108px;
  12273. width:375px;
  12274. height:229px;
  12275. display:flex;
  12276. }
  12277. #u41928 .text {
  12278. position:absolute;
  12279. align-self:center;
  12280. padding:2px 2px 2px 2px;
  12281. box-sizing:border-box;
  12282. width:100%;
  12283. }
  12284. #u41928_text {
  12285. border-width:0px;
  12286. word-wrap:break-word;
  12287. text-transform:none;
  12288. visibility:hidden;
  12289. }
  12290. #u41929_div {
  12291. border-width:0px;
  12292. position:absolute;
  12293. left:0px;
  12294. top:0px;
  12295. width:43px;
  12296. height:20px;
  12297. background:inherit;
  12298. background-color:rgba(255, 255, 255, 0);
  12299. border:none;
  12300. border-radius:0px;
  12301. -moz-box-shadow:none;
  12302. -webkit-box-shadow:none;
  12303. box-shadow:none;
  12304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12305. font-weight:400;
  12306. font-style:normal;
  12307. color:#0089FE;
  12308. }
  12309. #u41929 {
  12310. border-width:0px;
  12311. position:absolute;
  12312. left:807px;
  12313. top:124px;
  12314. width:43px;
  12315. height:20px;
  12316. display:flex;
  12317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12318. font-weight:400;
  12319. font-style:normal;
  12320. color:#0089FE;
  12321. }
  12322. #u41929 .text {
  12323. position:absolute;
  12324. align-self:flex-start;
  12325. padding:0px 0px 0px 0px;
  12326. box-sizing:border-box;
  12327. width:100%;
  12328. }
  12329. #u41929_text {
  12330. border-width:0px;
  12331. white-space:nowrap;
  12332. text-transform:none;
  12333. }
  12334. #u41930_div {
  12335. border-width:0px;
  12336. position:absolute;
  12337. left:0px;
  12338. top:0px;
  12339. width:180px;
  12340. height:30px;
  12341. background:inherit;
  12342. background-color:rgba(255, 255, 255, 0);
  12343. border:none;
  12344. border-left:0px;
  12345. border-top:0px;
  12346. border-right:0px;
  12347. border-radius:0px;
  12348. border-bottom-right-radius:0px;
  12349. border-bottom-left-radius:0px;
  12350. -moz-box-shadow:none;
  12351. -webkit-box-shadow:none;
  12352. box-shadow:none;
  12353. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12354. font-weight:500;
  12355. font-style:normal;
  12356. font-size:14px;
  12357. line-height:30px;
  12358. }
  12359. #u41930 {
  12360. border-width:0px;
  12361. position:absolute;
  12362. left:507px;
  12363. top:118px;
  12364. width:180px;
  12365. height:30px;
  12366. display:flex;
  12367. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12368. font-weight:500;
  12369. font-style:normal;
  12370. font-size:14px;
  12371. line-height:30px;
  12372. }
  12373. #u41930 .text {
  12374. position:absolute;
  12375. align-self:flex-start;
  12376. padding:0px 0px 0px 0px;
  12377. box-sizing:border-box;
  12378. width:100%;
  12379. }
  12380. #u41930_text {
  12381. border-width:0px;
  12382. white-space:nowrap;
  12383. text-transform:none;
  12384. }
  12385. #u41931_div {
  12386. border-width:0px;
  12387. position:absolute;
  12388. left:0px;
  12389. top:0px;
  12390. width:107px;
  12391. height:25px;
  12392. background:inherit;
  12393. background-color:rgba(255, 255, 255, 0);
  12394. border:none;
  12395. border-left:0px;
  12396. border-top:0px;
  12397. border-right:0px;
  12398. border-radius:0px;
  12399. border-bottom-right-radius:0px;
  12400. border-bottom-left-radius:0px;
  12401. -moz-box-shadow:none;
  12402. -webkit-box-shadow:none;
  12403. box-shadow:none;
  12404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12405. font-weight:400;
  12406. font-style:normal;
  12407. font-size:12px;
  12408. line-height:25px;
  12409. }
  12410. #u41931 {
  12411. border-width:0px;
  12412. position:absolute;
  12413. left:507px;
  12414. top:148px;
  12415. width:107px;
  12416. height:25px;
  12417. display:flex;
  12418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12419. font-weight:400;
  12420. font-style:normal;
  12421. font-size:12px;
  12422. line-height:25px;
  12423. }
  12424. #u41931 .text {
  12425. position:absolute;
  12426. align-self:flex-start;
  12427. padding:0px 0px 0px 0px;
  12428. box-sizing:border-box;
  12429. width:100%;
  12430. }
  12431. #u41931_text {
  12432. border-width:0px;
  12433. white-space:nowrap;
  12434. text-transform:none;
  12435. }
  12436. #u41932_div {
  12437. border-width:0px;
  12438. position:absolute;
  12439. left:0px;
  12440. top:0px;
  12441. width:85px;
  12442. height:30px;
  12443. background:inherit;
  12444. background-color:rgba(255, 255, 255, 0);
  12445. border:none;
  12446. border-left:0px;
  12447. border-top:0px;
  12448. border-right:0px;
  12449. border-radius:0px;
  12450. border-bottom-right-radius:0px;
  12451. border-bottom-left-radius:0px;
  12452. -moz-box-shadow:none;
  12453. -webkit-box-shadow:none;
  12454. box-shadow:none;
  12455. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12456. font-weight:500;
  12457. font-style:normal;
  12458. font-size:12px;
  12459. line-height:30px;
  12460. }
  12461. #u41932 {
  12462. border-width:0px;
  12463. position:absolute;
  12464. left:522px;
  12465. top:183px;
  12466. width:85px;
  12467. height:30px;
  12468. display:flex;
  12469. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12470. font-weight:500;
  12471. font-style:normal;
  12472. font-size:12px;
  12473. line-height:30px;
  12474. }
  12475. #u41932 .text {
  12476. position:absolute;
  12477. align-self:center;
  12478. padding:0px 0px 0px 0px;
  12479. box-sizing:border-box;
  12480. width:100%;
  12481. }
  12482. #u41932_text {
  12483. border-width:0px;
  12484. white-space:nowrap;
  12485. text-transform:none;
  12486. }
  12487. #u41933_div {
  12488. border-width:0px;
  12489. position:absolute;
  12490. left:0px;
  12491. top:0px;
  12492. width:92px;
  12493. height:30px;
  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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12507. font-weight:500;
  12508. font-style:normal;
  12509. font-size:12px;
  12510. line-height:30px;
  12511. }
  12512. #u41933 {
  12513. border-width:0px;
  12514. position:absolute;
  12515. left:522px;
  12516. top:223px;
  12517. width:92px;
  12518. height:30px;
  12519. display:flex;
  12520. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12521. font-weight:500;
  12522. font-style:normal;
  12523. font-size:12px;
  12524. line-height:30px;
  12525. }
  12526. #u41933 .text {
  12527. position:absolute;
  12528. align-self:center;
  12529. padding:0px 0px 0px 0px;
  12530. box-sizing:border-box;
  12531. width:100%;
  12532. }
  12533. #u41933_text {
  12534. border-width:0px;
  12535. white-space:nowrap;
  12536. text-transform:none;
  12537. }
  12538. #u41934_div {
  12539. border-width:0px;
  12540. position:absolute;
  12541. left:0px;
  12542. top:0px;
  12543. width:333px;
  12544. height:60px;
  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:#7F7F7F;
  12562. line-height:20px;
  12563. }
  12564. #u41934 {
  12565. border-width:0px;
  12566. position:absolute;
  12567. left:522px;
  12568. top:253px;
  12569. width:333px;
  12570. height:60px;
  12571. display:flex;
  12572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12573. font-weight:400;
  12574. font-style:normal;
  12575. font-size:12px;
  12576. color:#7F7F7F;
  12577. line-height:20px;
  12578. }
  12579. #u41934 .text {
  12580. position:absolute;
  12581. align-self:flex-start;
  12582. padding:0px 0px 0px 0px;
  12583. box-sizing:border-box;
  12584. width:100%;
  12585. }
  12586. #u41934_text {
  12587. border-width:0px;
  12588. word-wrap:break-word;
  12589. text-transform:none;
  12590. }
  12591. #u41935 {
  12592. border-width:0px;
  12593. position:absolute;
  12594. left:0px;
  12595. top:0px;
  12596. width:0px;
  12597. height:0px;
  12598. }
  12599. #u41936_img {
  12600. border-width:0px;
  12601. position:absolute;
  12602. left:0px;
  12603. top:0px;
  12604. width:11px;
  12605. height:11px;
  12606. }
  12607. #u41936 {
  12608. border-width:0px;
  12609. position:absolute;
  12610. left:507px;
  12611. top:192px;
  12612. width:11px;
  12613. height:11px;
  12614. display:flex;
  12615. }
  12616. #u41936 .text {
  12617. position:absolute;
  12618. align-self:center;
  12619. padding:2px 2px 2px 2px;
  12620. box-sizing:border-box;
  12621. width:100%;
  12622. }
  12623. #u41936_text {
  12624. border-width:0px;
  12625. word-wrap:break-word;
  12626. text-transform:none;
  12627. visibility:hidden;
  12628. }
  12629. #u41937_img {
  12630. border-width:0px;
  12631. position:absolute;
  12632. left:0px;
  12633. top:0px;
  12634. width:11px;
  12635. height:11px;
  12636. }
  12637. #u41937 {
  12638. border-width:0px;
  12639. position:absolute;
  12640. left:507px;
  12641. top:232px;
  12642. width:11px;
  12643. height:11px;
  12644. display:flex;
  12645. }
  12646. #u41937 .text {
  12647. position:absolute;
  12648. align-self:center;
  12649. padding:2px 2px 2px 2px;
  12650. box-sizing:border-box;
  12651. width:100%;
  12652. }
  12653. #u41937_text {
  12654. border-width:0px;
  12655. word-wrap:break-word;
  12656. text-transform:none;
  12657. visibility:hidden;
  12658. }
  12659. #u41938_img {
  12660. border-width:0px;
  12661. position:absolute;
  12662. left:0px;
  12663. top:0px;
  12664. width:2px;
  12665. height:40px;
  12666. }
  12667. #u41938 {
  12668. border-width:0px;
  12669. position:absolute;
  12670. left:512px;
  12671. top:203px;
  12672. width:1px;
  12673. height:39px;
  12674. display:flex;
  12675. }
  12676. #u41938 .text {
  12677. position:absolute;
  12678. align-self:center;
  12679. padding:2px 2px 2px 2px;
  12680. box-sizing:border-box;
  12681. width:100%;
  12682. }
  12683. #u41938_text {
  12684. border-width:0px;
  12685. word-wrap:break-word;
  12686. text-transform:none;
  12687. visibility:hidden;
  12688. }
  12689. #u41939 {
  12690. border-width:0px;
  12691. position:absolute;
  12692. left:0px;
  12693. top:0px;
  12694. width:0px;
  12695. height:0px;
  12696. }
  12697. #u41940_div {
  12698. border-width:0px;
  12699. position:absolute;
  12700. left:0px;
  12701. top:0px;
  12702. width:375px;
  12703. height:125px;
  12704. background:inherit;
  12705. background-color:rgba(255, 255, 255, 1);
  12706. border:none;
  12707. border-left:0px;
  12708. border-top:0px;
  12709. border-right:0px;
  12710. border-radius:0px;
  12711. border-bottom-right-radius:0px;
  12712. border-bottom-left-radius:0px;
  12713. -moz-box-shadow:none;
  12714. -webkit-box-shadow:none;
  12715. box-shadow:none;
  12716. }
  12717. #u41940 {
  12718. border-width:0px;
  12719. position:absolute;
  12720. left:494px;
  12721. top:338px;
  12722. width:375px;
  12723. height:125px;
  12724. display:flex;
  12725. }
  12726. #u41940 .text {
  12727. position:absolute;
  12728. align-self:center;
  12729. padding:2px 2px 2px 2px;
  12730. box-sizing:border-box;
  12731. width:100%;
  12732. }
  12733. #u41940_text {
  12734. border-width:0px;
  12735. word-wrap:break-word;
  12736. text-transform:none;
  12737. visibility:hidden;
  12738. }
  12739. #u41941_div {
  12740. border-width:0px;
  12741. position:absolute;
  12742. left:0px;
  12743. top:0px;
  12744. width:57px;
  12745. height:25px;
  12746. background:inherit;
  12747. background-color:rgba(255, 255, 255, 0);
  12748. border:none;
  12749. border-left:0px;
  12750. border-top:0px;
  12751. border-right:0px;
  12752. border-radius:0px;
  12753. border-bottom-right-radius:0px;
  12754. border-bottom-left-radius:0px;
  12755. -moz-box-shadow:none;
  12756. -webkit-box-shadow:none;
  12757. box-shadow:none;
  12758. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12759. font-weight:500;
  12760. font-style:normal;
  12761. font-size:14px;
  12762. line-height:25px;
  12763. }
  12764. #u41941 {
  12765. border-width:0px;
  12766. position:absolute;
  12767. left:505px;
  12768. top:348px;
  12769. width:57px;
  12770. height:25px;
  12771. display:flex;
  12772. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12773. font-weight:500;
  12774. font-style:normal;
  12775. font-size:14px;
  12776. line-height:25px;
  12777. }
  12778. #u41941 .text {
  12779. position:absolute;
  12780. align-self:flex-start;
  12781. padding:0px 0px 0px 0px;
  12782. box-sizing:border-box;
  12783. width:100%;
  12784. }
  12785. #u41941_text {
  12786. border-width:0px;
  12787. white-space:nowrap;
  12788. text-transform:none;
  12789. }
  12790. #u41942_div {
  12791. border-width:0px;
  12792. position:absolute;
  12793. left:0px;
  12794. top:0px;
  12795. width:350px;
  12796. height:60px;
  12797. background:inherit;
  12798. background-color:rgba(255, 255, 255, 1);
  12799. box-sizing:border-box;
  12800. border-width:1px;
  12801. border-style:solid;
  12802. border-color:rgba(215, 215, 215, 1);
  12803. border-radius:10px;
  12804. -moz-box-shadow:none;
  12805. -webkit-box-shadow:none;
  12806. box-shadow:none;
  12807. }
  12808. #u41942 {
  12809. border-width:0px;
  12810. position:absolute;
  12811. left:505px;
  12812. top:383px;
  12813. width:350px;
  12814. height:60px;
  12815. display:flex;
  12816. }
  12817. #u41942 .text {
  12818. position:absolute;
  12819. align-self:center;
  12820. padding:2px 2px 2px 2px;
  12821. box-sizing:border-box;
  12822. width:100%;
  12823. }
  12824. #u41942_text {
  12825. border-width:0px;
  12826. word-wrap:break-word;
  12827. text-transform:none;
  12828. visibility:hidden;
  12829. }
  12830. #u41943_div {
  12831. border-width:0px;
  12832. position:absolute;
  12833. left:0px;
  12834. top:0px;
  12835. width:109px;
  12836. height:30px;
  12837. background:inherit;
  12838. background-color:rgba(255, 255, 255, 0);
  12839. border:none;
  12840. border-left:0px;
  12841. border-top:0px;
  12842. border-right:0px;
  12843. border-radius:0px;
  12844. border-bottom-right-radius:0px;
  12845. border-bottom-left-radius:0px;
  12846. -moz-box-shadow:none;
  12847. -webkit-box-shadow:none;
  12848. box-shadow:none;
  12849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12850. font-weight:400;
  12851. font-style:normal;
  12852. font-size:18px;
  12853. line-height:30px;
  12854. }
  12855. #u41943 {
  12856. border-width:0px;
  12857. position:absolute;
  12858. left:523px;
  12859. top:398px;
  12860. width:109px;
  12861. height:30px;
  12862. display:flex;
  12863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12864. font-weight:400;
  12865. font-style:normal;
  12866. font-size:18px;
  12867. line-height:30px;
  12868. }
  12869. #u41943 .text {
  12870. position:absolute;
  12871. align-self:flex-start;
  12872. padding:0px 0px 0px 0px;
  12873. box-sizing:border-box;
  12874. width:100%;
  12875. }
  12876. #u41943_text {
  12877. border-width:0px;
  12878. white-space:nowrap;
  12879. text-transform:none;
  12880. }
  12881. #u41944_img {
  12882. border-width:0px;
  12883. position:absolute;
  12884. left:0px;
  12885. top:0px;
  12886. width:10px;
  12887. height:9px;
  12888. }
  12889. #u41944 {
  12890. border-width:0px;
  12891. position:absolute;
  12892. left:841px;
  12893. top:356px;
  12894. width:10px;
  12895. height:9px;
  12896. display:flex;
  12897. }
  12898. #u41944 .text {
  12899. position:absolute;
  12900. align-self:center;
  12901. padding:2px 2px 2px 2px;
  12902. box-sizing:border-box;
  12903. width:100%;
  12904. }
  12905. #u41944_text {
  12906. border-width:0px;
  12907. word-wrap:break-word;
  12908. text-transform:none;
  12909. visibility:hidden;
  12910. }
  12911. #u41945 {
  12912. border-width:0px;
  12913. position:absolute;
  12914. left:0px;
  12915. top:0px;
  12916. width:0px;
  12917. height:0px;
  12918. }
  12919. #u41946_div {
  12920. border-width:0px;
  12921. position:absolute;
  12922. left:0px;
  12923. top:0px;
  12924. width:375px;
  12925. height:229px;
  12926. background:inherit;
  12927. background-color:rgba(255, 255, 255, 1);
  12928. border:none;
  12929. border-left:0px;
  12930. border-top:0px;
  12931. border-right:0px;
  12932. border-radius:0px;
  12933. border-bottom-right-radius:0px;
  12934. border-bottom-left-radius:0px;
  12935. -moz-box-shadow:none;
  12936. -webkit-box-shadow:none;
  12937. box-shadow:none;
  12938. }
  12939. #u41946 {
  12940. border-width:0px;
  12941. position:absolute;
  12942. left:962px;
  12943. top:108px;
  12944. width:375px;
  12945. height:229px;
  12946. display:flex;
  12947. }
  12948. #u41946 .text {
  12949. position:absolute;
  12950. align-self:center;
  12951. padding:2px 2px 2px 2px;
  12952. box-sizing:border-box;
  12953. width:100%;
  12954. }
  12955. #u41946_text {
  12956. border-width:0px;
  12957. word-wrap:break-word;
  12958. text-transform:none;
  12959. visibility:hidden;
  12960. }
  12961. #u41947_div {
  12962. border-width:0px;
  12963. position:absolute;
  12964. left:0px;
  12965. top:0px;
  12966. width:43px;
  12967. height:20px;
  12968. background:inherit;
  12969. background-color:rgba(255, 255, 255, 0);
  12970. border:none;
  12971. border-radius:0px;
  12972. -moz-box-shadow:none;
  12973. -webkit-box-shadow:none;
  12974. box-shadow:none;
  12975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12976. font-weight:400;
  12977. font-style:normal;
  12978. color:#0089FE;
  12979. }
  12980. #u41947 {
  12981. border-width:0px;
  12982. position:absolute;
  12983. left:1275px;
  12984. top:124px;
  12985. width:43px;
  12986. height:20px;
  12987. display:flex;
  12988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12989. font-weight:400;
  12990. font-style:normal;
  12991. color:#0089FE;
  12992. }
  12993. #u41947 .text {
  12994. position:absolute;
  12995. align-self:flex-start;
  12996. padding:0px 0px 0px 0px;
  12997. box-sizing:border-box;
  12998. width:100%;
  12999. }
  13000. #u41947_text {
  13001. border-width:0px;
  13002. white-space:nowrap;
  13003. text-transform:none;
  13004. }
  13005. #u41948_div {
  13006. border-width:0px;
  13007. position:absolute;
  13008. left:0px;
  13009. top:0px;
  13010. width:180px;
  13011. height:30px;
  13012. background:inherit;
  13013. background-color:rgba(255, 255, 255, 0);
  13014. border:none;
  13015. border-left:0px;
  13016. border-top:0px;
  13017. border-right:0px;
  13018. border-radius:0px;
  13019. border-bottom-right-radius:0px;
  13020. border-bottom-left-radius:0px;
  13021. -moz-box-shadow:none;
  13022. -webkit-box-shadow:none;
  13023. box-shadow:none;
  13024. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13025. font-weight:500;
  13026. font-style:normal;
  13027. font-size:14px;
  13028. line-height:30px;
  13029. }
  13030. #u41948 {
  13031. border-width:0px;
  13032. position:absolute;
  13033. left:975px;
  13034. top:118px;
  13035. width:180px;
  13036. height:30px;
  13037. display:flex;
  13038. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13039. font-weight:500;
  13040. font-style:normal;
  13041. font-size:14px;
  13042. line-height:30px;
  13043. }
  13044. #u41948 .text {
  13045. position:absolute;
  13046. align-self:flex-start;
  13047. padding:0px 0px 0px 0px;
  13048. box-sizing:border-box;
  13049. width:100%;
  13050. }
  13051. #u41948_text {
  13052. border-width:0px;
  13053. white-space:nowrap;
  13054. text-transform:none;
  13055. }
  13056. #u41949_div {
  13057. border-width:0px;
  13058. position:absolute;
  13059. left:0px;
  13060. top:0px;
  13061. width:107px;
  13062. height:25px;
  13063. background:inherit;
  13064. background-color:rgba(255, 255, 255, 0);
  13065. border:none;
  13066. border-left:0px;
  13067. border-top:0px;
  13068. border-right:0px;
  13069. border-radius:0px;
  13070. border-bottom-right-radius:0px;
  13071. border-bottom-left-radius:0px;
  13072. -moz-box-shadow:none;
  13073. -webkit-box-shadow:none;
  13074. box-shadow:none;
  13075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13076. font-weight:400;
  13077. font-style:normal;
  13078. font-size:12px;
  13079. line-height:25px;
  13080. }
  13081. #u41949 {
  13082. border-width:0px;
  13083. position:absolute;
  13084. left:975px;
  13085. top:148px;
  13086. width:107px;
  13087. height:25px;
  13088. display:flex;
  13089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13090. font-weight:400;
  13091. font-style:normal;
  13092. font-size:12px;
  13093. line-height:25px;
  13094. }
  13095. #u41949 .text {
  13096. position:absolute;
  13097. align-self:flex-start;
  13098. padding:0px 0px 0px 0px;
  13099. box-sizing:border-box;
  13100. width:100%;
  13101. }
  13102. #u41949_text {
  13103. border-width:0px;
  13104. white-space:nowrap;
  13105. text-transform:none;
  13106. }
  13107. #u41950_div {
  13108. border-width:0px;
  13109. position:absolute;
  13110. left:0px;
  13111. top:0px;
  13112. width:85px;
  13113. height:30px;
  13114. background:inherit;
  13115. background-color:rgba(255, 255, 255, 0);
  13116. border:none;
  13117. border-left:0px;
  13118. border-top:0px;
  13119. border-right:0px;
  13120. border-radius:0px;
  13121. border-bottom-right-radius:0px;
  13122. border-bottom-left-radius:0px;
  13123. -moz-box-shadow:none;
  13124. -webkit-box-shadow:none;
  13125. box-shadow:none;
  13126. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13127. font-weight:500;
  13128. font-style:normal;
  13129. font-size:12px;
  13130. line-height:30px;
  13131. }
  13132. #u41950 {
  13133. border-width:0px;
  13134. position:absolute;
  13135. left:990px;
  13136. top:183px;
  13137. width:85px;
  13138. height:30px;
  13139. display:flex;
  13140. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13141. font-weight:500;
  13142. font-style:normal;
  13143. font-size:12px;
  13144. line-height:30px;
  13145. }
  13146. #u41950 .text {
  13147. position:absolute;
  13148. align-self:center;
  13149. padding:0px 0px 0px 0px;
  13150. box-sizing:border-box;
  13151. width:100%;
  13152. }
  13153. #u41950_text {
  13154. border-width:0px;
  13155. white-space:nowrap;
  13156. text-transform:none;
  13157. }
  13158. #u41951_div {
  13159. border-width:0px;
  13160. position:absolute;
  13161. left:0px;
  13162. top:0px;
  13163. width:92px;
  13164. height:30px;
  13165. background:inherit;
  13166. background-color:rgba(255, 255, 255, 0);
  13167. border:none;
  13168. border-left:0px;
  13169. border-top:0px;
  13170. border-right:0px;
  13171. border-radius:0px;
  13172. border-bottom-right-radius:0px;
  13173. border-bottom-left-radius:0px;
  13174. -moz-box-shadow:none;
  13175. -webkit-box-shadow:none;
  13176. box-shadow:none;
  13177. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13178. font-weight:500;
  13179. font-style:normal;
  13180. font-size:12px;
  13181. line-height:30px;
  13182. }
  13183. #u41951 {
  13184. border-width:0px;
  13185. position:absolute;
  13186. left:990px;
  13187. top:223px;
  13188. width:92px;
  13189. height:30px;
  13190. display:flex;
  13191. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13192. font-weight:500;
  13193. font-style:normal;
  13194. font-size:12px;
  13195. line-height:30px;
  13196. }
  13197. #u41951 .text {
  13198. position:absolute;
  13199. align-self:center;
  13200. padding:0px 0px 0px 0px;
  13201. box-sizing:border-box;
  13202. width:100%;
  13203. }
  13204. #u41951_text {
  13205. border-width:0px;
  13206. white-space:nowrap;
  13207. text-transform:none;
  13208. }
  13209. #u41952_div {
  13210. border-width:0px;
  13211. position:absolute;
  13212. left:0px;
  13213. top:0px;
  13214. width:333px;
  13215. height:60px;
  13216. background:inherit;
  13217. background-color:rgba(255, 255, 255, 0);
  13218. border:none;
  13219. border-left:0px;
  13220. border-top:0px;
  13221. border-right:0px;
  13222. border-radius:0px;
  13223. border-bottom-right-radius:0px;
  13224. border-bottom-left-radius:0px;
  13225. -moz-box-shadow:none;
  13226. -webkit-box-shadow:none;
  13227. box-shadow:none;
  13228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13229. font-weight:400;
  13230. font-style:normal;
  13231. font-size:12px;
  13232. color:#7F7F7F;
  13233. line-height:20px;
  13234. }
  13235. #u41952 {
  13236. border-width:0px;
  13237. position:absolute;
  13238. left:990px;
  13239. top:253px;
  13240. width:333px;
  13241. height:60px;
  13242. display:flex;
  13243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13244. font-weight:400;
  13245. font-style:normal;
  13246. font-size:12px;
  13247. color:#7F7F7F;
  13248. line-height:20px;
  13249. }
  13250. #u41952 .text {
  13251. position:absolute;
  13252. align-self:flex-start;
  13253. padding:0px 0px 0px 0px;
  13254. box-sizing:border-box;
  13255. width:100%;
  13256. }
  13257. #u41952_text {
  13258. border-width:0px;
  13259. word-wrap:break-word;
  13260. text-transform:none;
  13261. }
  13262. #u41953 {
  13263. border-width:0px;
  13264. position:absolute;
  13265. left:0px;
  13266. top:0px;
  13267. width:0px;
  13268. height:0px;
  13269. }
  13270. #u41954_img {
  13271. border-width:0px;
  13272. position:absolute;
  13273. left:0px;
  13274. top:0px;
  13275. width:11px;
  13276. height:11px;
  13277. }
  13278. #u41954 {
  13279. border-width:0px;
  13280. position:absolute;
  13281. left:975px;
  13282. top:192px;
  13283. width:11px;
  13284. height:11px;
  13285. display:flex;
  13286. }
  13287. #u41954 .text {
  13288. position:absolute;
  13289. align-self:center;
  13290. padding:2px 2px 2px 2px;
  13291. box-sizing:border-box;
  13292. width:100%;
  13293. }
  13294. #u41954_text {
  13295. border-width:0px;
  13296. word-wrap:break-word;
  13297. text-transform:none;
  13298. visibility:hidden;
  13299. }
  13300. #u41955_img {
  13301. border-width:0px;
  13302. position:absolute;
  13303. left:0px;
  13304. top:0px;
  13305. width:11px;
  13306. height:11px;
  13307. }
  13308. #u41955 {
  13309. border-width:0px;
  13310. position:absolute;
  13311. left:975px;
  13312. top:233px;
  13313. width:11px;
  13314. height:11px;
  13315. display:flex;
  13316. }
  13317. #u41955 .text {
  13318. position:absolute;
  13319. align-self:center;
  13320. padding:2px 2px 2px 2px;
  13321. box-sizing:border-box;
  13322. width:100%;
  13323. }
  13324. #u41955_text {
  13325. border-width:0px;
  13326. word-wrap:break-word;
  13327. text-transform:none;
  13328. visibility:hidden;
  13329. }
  13330. #u41956_img {
  13331. border-width:0px;
  13332. position:absolute;
  13333. left:0px;
  13334. top:0px;
  13335. width:2px;
  13336. height:40px;
  13337. }
  13338. #u41956 {
  13339. border-width:0px;
  13340. position:absolute;
  13341. left:980px;
  13342. top:203px;
  13343. width:1px;
  13344. height:39px;
  13345. display:flex;
  13346. }
  13347. #u41956 .text {
  13348. position:absolute;
  13349. align-self:center;
  13350. padding:2px 2px 2px 2px;
  13351. box-sizing:border-box;
  13352. width:100%;
  13353. }
  13354. #u41956_text {
  13355. border-width:0px;
  13356. word-wrap:break-word;
  13357. text-transform:none;
  13358. visibility:hidden;
  13359. }
  13360. #u41957 {
  13361. border-width:0px;
  13362. position:absolute;
  13363. left:0px;
  13364. top:0px;
  13365. width:0px;
  13366. height:0px;
  13367. }
  13368. #u41958_div {
  13369. border-width:0px;
  13370. position:absolute;
  13371. left:0px;
  13372. top:0px;
  13373. width:375px;
  13374. height:41px;
  13375. background:inherit;
  13376. background-color:rgba(255, 255, 255, 1);
  13377. border:none;
  13378. border-left:0px;
  13379. border-top:0px;
  13380. border-right:0px;
  13381. border-radius:0px;
  13382. border-bottom-right-radius:0px;
  13383. border-bottom-left-radius:0px;
  13384. -moz-box-shadow:none;
  13385. -webkit-box-shadow:none;
  13386. box-shadow:none;
  13387. }
  13388. #u41958 {
  13389. border-width:0px;
  13390. position:absolute;
  13391. left:962px;
  13392. top:338px;
  13393. width:375px;
  13394. height:41px;
  13395. display:flex;
  13396. }
  13397. #u41958 .text {
  13398. position:absolute;
  13399. align-self:center;
  13400. padding:2px 2px 2px 2px;
  13401. box-sizing:border-box;
  13402. width:100%;
  13403. }
  13404. #u41958_text {
  13405. border-width:0px;
  13406. word-wrap:break-word;
  13407. text-transform:none;
  13408. visibility:hidden;
  13409. }
  13410. #u41959_div {
  13411. border-width:0px;
  13412. position:absolute;
  13413. left:0px;
  13414. top:0px;
  13415. width:57px;
  13416. height:25px;
  13417. background:inherit;
  13418. background-color:rgba(255, 255, 255, 0);
  13419. border:none;
  13420. border-left:0px;
  13421. border-top:0px;
  13422. border-right:0px;
  13423. border-radius:0px;
  13424. border-bottom-right-radius:0px;
  13425. border-bottom-left-radius:0px;
  13426. -moz-box-shadow:none;
  13427. -webkit-box-shadow:none;
  13428. box-shadow:none;
  13429. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13430. font-weight:500;
  13431. font-style:normal;
  13432. font-size:14px;
  13433. line-height:25px;
  13434. }
  13435. #u41959 {
  13436. border-width:0px;
  13437. position:absolute;
  13438. left:973px;
  13439. top:348px;
  13440. width:57px;
  13441. height:25px;
  13442. display:flex;
  13443. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13444. font-weight:500;
  13445. font-style:normal;
  13446. font-size:14px;
  13447. line-height:25px;
  13448. }
  13449. #u41959 .text {
  13450. position:absolute;
  13451. align-self:flex-start;
  13452. padding:0px 0px 0px 0px;
  13453. box-sizing:border-box;
  13454. width:100%;
  13455. }
  13456. #u41959_text {
  13457. border-width:0px;
  13458. white-space:nowrap;
  13459. text-transform:none;
  13460. }
  13461. #u41960_img {
  13462. border-width:0px;
  13463. position:absolute;
  13464. left:0px;
  13465. top:0px;
  13466. width:10px;
  13467. height:9px;
  13468. }
  13469. #u41960 {
  13470. border-width:0px;
  13471. position:absolute;
  13472. left:1309px;
  13473. top:356px;
  13474. width:10px;
  13475. height:9px;
  13476. display:flex;
  13477. -webkit-transform:rotate(90deg);
  13478. -moz-transform:rotate(90deg);
  13479. -ms-transform:rotate(90deg);
  13480. transform:rotate(90deg);
  13481. }
  13482. #u41960 .text {
  13483. position:absolute;
  13484. align-self:center;
  13485. padding:2px 2px 2px 2px;
  13486. box-sizing:border-box;
  13487. width:100%;
  13488. }
  13489. #u41960_text {
  13490. border-width:0px;
  13491. word-wrap:break-word;
  13492. text-transform:none;
  13493. visibility:hidden;
  13494. }
  13495. #u41961 {
  13496. border-width:0px;
  13497. position:absolute;
  13498. left:0px;
  13499. top:0px;
  13500. width:0px;
  13501. height:0px;
  13502. }
  13503. #u41962_div {
  13504. border-width:0px;
  13505. position:absolute;
  13506. left:0px;
  13507. top:0px;
  13508. width:375px;
  13509. height:229px;
  13510. background:inherit;
  13511. background-color:rgba(255, 255, 255, 1);
  13512. border:none;
  13513. border-left:0px;
  13514. border-top:0px;
  13515. border-right:0px;
  13516. border-radius:0px;
  13517. border-bottom-right-radius:0px;
  13518. border-bottom-left-radius:0px;
  13519. -moz-box-shadow:none;
  13520. -webkit-box-shadow:none;
  13521. box-shadow:none;
  13522. }
  13523. #u41962 {
  13524. border-width:0px;
  13525. position:absolute;
  13526. left:1425px;
  13527. top:108px;
  13528. width:375px;
  13529. height:229px;
  13530. display:flex;
  13531. }
  13532. #u41962 .text {
  13533. position:absolute;
  13534. align-self:center;
  13535. padding:2px 2px 2px 2px;
  13536. box-sizing:border-box;
  13537. width:100%;
  13538. }
  13539. #u41962_text {
  13540. border-width:0px;
  13541. word-wrap:break-word;
  13542. text-transform:none;
  13543. visibility:hidden;
  13544. }
  13545. #u41963_div {
  13546. border-width:0px;
  13547. position:absolute;
  13548. left:0px;
  13549. top:0px;
  13550. width:43px;
  13551. height:20px;
  13552. background:inherit;
  13553. background-color:rgba(255, 255, 255, 0);
  13554. border:none;
  13555. border-radius:0px;
  13556. -moz-box-shadow:none;
  13557. -webkit-box-shadow:none;
  13558. box-shadow:none;
  13559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13560. font-weight:400;
  13561. font-style:normal;
  13562. color:#0089FE;
  13563. }
  13564. #u41963 {
  13565. border-width:0px;
  13566. position:absolute;
  13567. left:1738px;
  13568. top:124px;
  13569. width:43px;
  13570. height:20px;
  13571. display:flex;
  13572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13573. font-weight:400;
  13574. font-style:normal;
  13575. color:#0089FE;
  13576. }
  13577. #u41963 .text {
  13578. position:absolute;
  13579. align-self:flex-start;
  13580. padding:0px 0px 0px 0px;
  13581. box-sizing:border-box;
  13582. width:100%;
  13583. }
  13584. #u41963_text {
  13585. border-width:0px;
  13586. white-space:nowrap;
  13587. text-transform:none;
  13588. }
  13589. #u41964_div {
  13590. border-width:0px;
  13591. position:absolute;
  13592. left:0px;
  13593. top:0px;
  13594. width:180px;
  13595. height:30px;
  13596. background:inherit;
  13597. background-color:rgba(255, 255, 255, 0);
  13598. border:none;
  13599. border-left:0px;
  13600. border-top:0px;
  13601. border-right:0px;
  13602. border-radius:0px;
  13603. border-bottom-right-radius:0px;
  13604. border-bottom-left-radius:0px;
  13605. -moz-box-shadow:none;
  13606. -webkit-box-shadow:none;
  13607. box-shadow:none;
  13608. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13609. font-weight:500;
  13610. font-style:normal;
  13611. font-size:14px;
  13612. line-height:30px;
  13613. }
  13614. #u41964 {
  13615. border-width:0px;
  13616. position:absolute;
  13617. left:1438px;
  13618. top:118px;
  13619. width:180px;
  13620. height:30px;
  13621. display:flex;
  13622. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13623. font-weight:500;
  13624. font-style:normal;
  13625. font-size:14px;
  13626. line-height:30px;
  13627. }
  13628. #u41964 .text {
  13629. position:absolute;
  13630. align-self:flex-start;
  13631. padding:0px 0px 0px 0px;
  13632. box-sizing:border-box;
  13633. width:100%;
  13634. }
  13635. #u41964_text {
  13636. border-width:0px;
  13637. white-space:nowrap;
  13638. text-transform:none;
  13639. }
  13640. #u41965_div {
  13641. border-width:0px;
  13642. position:absolute;
  13643. left:0px;
  13644. top:0px;
  13645. width:107px;
  13646. height:25px;
  13647. background:inherit;
  13648. background-color:rgba(255, 255, 255, 0);
  13649. border:none;
  13650. border-left:0px;
  13651. border-top:0px;
  13652. border-right:0px;
  13653. border-radius:0px;
  13654. border-bottom-right-radius:0px;
  13655. border-bottom-left-radius:0px;
  13656. -moz-box-shadow:none;
  13657. -webkit-box-shadow:none;
  13658. box-shadow:none;
  13659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13660. font-weight:400;
  13661. font-style:normal;
  13662. font-size:12px;
  13663. line-height:25px;
  13664. }
  13665. #u41965 {
  13666. border-width:0px;
  13667. position:absolute;
  13668. left:1438px;
  13669. top:148px;
  13670. width:107px;
  13671. height:25px;
  13672. display:flex;
  13673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13674. font-weight:400;
  13675. font-style:normal;
  13676. font-size:12px;
  13677. line-height:25px;
  13678. }
  13679. #u41965 .text {
  13680. position:absolute;
  13681. align-self:flex-start;
  13682. padding:0px 0px 0px 0px;
  13683. box-sizing:border-box;
  13684. width:100%;
  13685. }
  13686. #u41965_text {
  13687. border-width:0px;
  13688. white-space:nowrap;
  13689. text-transform:none;
  13690. }
  13691. #u41966_div {
  13692. border-width:0px;
  13693. position:absolute;
  13694. left:0px;
  13695. top:0px;
  13696. width:85px;
  13697. height:30px;
  13698. background:inherit;
  13699. background-color:rgba(255, 255, 255, 0);
  13700. border:none;
  13701. border-left:0px;
  13702. border-top:0px;
  13703. border-right:0px;
  13704. border-radius:0px;
  13705. border-bottom-right-radius:0px;
  13706. border-bottom-left-radius:0px;
  13707. -moz-box-shadow:none;
  13708. -webkit-box-shadow:none;
  13709. box-shadow:none;
  13710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13711. font-weight:500;
  13712. font-style:normal;
  13713. font-size:12px;
  13714. line-height:30px;
  13715. }
  13716. #u41966 {
  13717. border-width:0px;
  13718. position:absolute;
  13719. left:1453px;
  13720. top:183px;
  13721. width:85px;
  13722. height:30px;
  13723. display:flex;
  13724. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13725. font-weight:500;
  13726. font-style:normal;
  13727. font-size:12px;
  13728. line-height:30px;
  13729. }
  13730. #u41966 .text {
  13731. position:absolute;
  13732. align-self:center;
  13733. padding:0px 0px 0px 0px;
  13734. box-sizing:border-box;
  13735. width:100%;
  13736. }
  13737. #u41966_text {
  13738. border-width:0px;
  13739. white-space:nowrap;
  13740. text-transform:none;
  13741. }
  13742. #u41967_div {
  13743. border-width:0px;
  13744. position:absolute;
  13745. left:0px;
  13746. top:0px;
  13747. width:92px;
  13748. height:30px;
  13749. background:inherit;
  13750. background-color:rgba(255, 255, 255, 0);
  13751. border:none;
  13752. border-left:0px;
  13753. border-top:0px;
  13754. border-right:0px;
  13755. border-radius:0px;
  13756. border-bottom-right-radius:0px;
  13757. border-bottom-left-radius:0px;
  13758. -moz-box-shadow:none;
  13759. -webkit-box-shadow:none;
  13760. box-shadow:none;
  13761. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13762. font-weight:500;
  13763. font-style:normal;
  13764. font-size:12px;
  13765. line-height:30px;
  13766. }
  13767. #u41967 {
  13768. border-width:0px;
  13769. position:absolute;
  13770. left:1453px;
  13771. top:223px;
  13772. width:92px;
  13773. height:30px;
  13774. display:flex;
  13775. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13776. font-weight:500;
  13777. font-style:normal;
  13778. font-size:12px;
  13779. line-height:30px;
  13780. }
  13781. #u41967 .text {
  13782. position:absolute;
  13783. align-self:center;
  13784. padding:0px 0px 0px 0px;
  13785. box-sizing:border-box;
  13786. width:100%;
  13787. }
  13788. #u41967_text {
  13789. border-width:0px;
  13790. white-space:nowrap;
  13791. text-transform:none;
  13792. }
  13793. #u41968_div {
  13794. border-width:0px;
  13795. position:absolute;
  13796. left:0px;
  13797. top:0px;
  13798. width:333px;
  13799. height:60px;
  13800. background:inherit;
  13801. background-color:rgba(255, 255, 255, 0);
  13802. border:none;
  13803. border-left:0px;
  13804. border-top:0px;
  13805. border-right:0px;
  13806. border-radius:0px;
  13807. border-bottom-right-radius:0px;
  13808. border-bottom-left-radius:0px;
  13809. -moz-box-shadow:none;
  13810. -webkit-box-shadow:none;
  13811. box-shadow:none;
  13812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13813. font-weight:400;
  13814. font-style:normal;
  13815. font-size:12px;
  13816. color:#7F7F7F;
  13817. line-height:20px;
  13818. }
  13819. #u41968 {
  13820. border-width:0px;
  13821. position:absolute;
  13822. left:1453px;
  13823. top:253px;
  13824. width:333px;
  13825. height:60px;
  13826. display:flex;
  13827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13828. font-weight:400;
  13829. font-style:normal;
  13830. font-size:12px;
  13831. color:#7F7F7F;
  13832. line-height:20px;
  13833. }
  13834. #u41968 .text {
  13835. position:absolute;
  13836. align-self:flex-start;
  13837. padding:0px 0px 0px 0px;
  13838. box-sizing:border-box;
  13839. width:100%;
  13840. }
  13841. #u41968_text {
  13842. border-width:0px;
  13843. word-wrap:break-word;
  13844. text-transform:none;
  13845. }
  13846. #u41969 {
  13847. border-width:0px;
  13848. position:absolute;
  13849. left:0px;
  13850. top:0px;
  13851. width:0px;
  13852. height:0px;
  13853. }
  13854. #u41970_img {
  13855. border-width:0px;
  13856. position:absolute;
  13857. left:0px;
  13858. top:0px;
  13859. width:11px;
  13860. height:11px;
  13861. }
  13862. #u41970 {
  13863. border-width:0px;
  13864. position:absolute;
  13865. left:1438px;
  13866. top:192px;
  13867. width:11px;
  13868. height:11px;
  13869. display:flex;
  13870. }
  13871. #u41970 .text {
  13872. position:absolute;
  13873. align-self:center;
  13874. padding:2px 2px 2px 2px;
  13875. box-sizing:border-box;
  13876. width:100%;
  13877. }
  13878. #u41970_text {
  13879. border-width:0px;
  13880. word-wrap:break-word;
  13881. text-transform:none;
  13882. visibility:hidden;
  13883. }
  13884. #u41971_img {
  13885. border-width:0px;
  13886. position:absolute;
  13887. left:0px;
  13888. top:0px;
  13889. width:11px;
  13890. height:11px;
  13891. }
  13892. #u41971 {
  13893. border-width:0px;
  13894. position:absolute;
  13895. left:1438px;
  13896. top:233px;
  13897. width:11px;
  13898. height:11px;
  13899. display:flex;
  13900. }
  13901. #u41971 .text {
  13902. position:absolute;
  13903. align-self:center;
  13904. padding:2px 2px 2px 2px;
  13905. box-sizing:border-box;
  13906. width:100%;
  13907. }
  13908. #u41971_text {
  13909. border-width:0px;
  13910. word-wrap:break-word;
  13911. text-transform:none;
  13912. visibility:hidden;
  13913. }
  13914. #u41972_img {
  13915. border-width:0px;
  13916. position:absolute;
  13917. left:0px;
  13918. top:0px;
  13919. width:2px;
  13920. height:40px;
  13921. }
  13922. #u41972 {
  13923. border-width:0px;
  13924. position:absolute;
  13925. left:1443px;
  13926. top:203px;
  13927. width:1px;
  13928. height:39px;
  13929. display:flex;
  13930. }
  13931. #u41972 .text {
  13932. position:absolute;
  13933. align-self:center;
  13934. padding:2px 2px 2px 2px;
  13935. box-sizing:border-box;
  13936. width:100%;
  13937. }
  13938. #u41972_text {
  13939. border-width:0px;
  13940. word-wrap:break-word;
  13941. text-transform:none;
  13942. visibility:hidden;
  13943. }
  13944. #u41973 {
  13945. border-width:0px;
  13946. position:absolute;
  13947. left:0px;
  13948. top:0px;
  13949. width:0px;
  13950. height:0px;
  13951. }
  13952. #u41974_div {
  13953. border-width:0px;
  13954. position:absolute;
  13955. left:0px;
  13956. top:0px;
  13957. width:375px;
  13958. height:41px;
  13959. background:inherit;
  13960. background-color:rgba(255, 255, 255, 1);
  13961. border:none;
  13962. border-left:0px;
  13963. border-top:0px;
  13964. border-right:0px;
  13965. border-radius:0px;
  13966. border-bottom-right-radius:0px;
  13967. border-bottom-left-radius:0px;
  13968. -moz-box-shadow:none;
  13969. -webkit-box-shadow:none;
  13970. box-shadow:none;
  13971. }
  13972. #u41974 {
  13973. border-width:0px;
  13974. position:absolute;
  13975. left:1425px;
  13976. top:338px;
  13977. width:375px;
  13978. height:41px;
  13979. display:flex;
  13980. }
  13981. #u41974 .text {
  13982. position:absolute;
  13983. align-self:center;
  13984. padding:2px 2px 2px 2px;
  13985. box-sizing:border-box;
  13986. width:100%;
  13987. }
  13988. #u41974_text {
  13989. border-width:0px;
  13990. word-wrap:break-word;
  13991. text-transform:none;
  13992. visibility:hidden;
  13993. }
  13994. #u41975_div {
  13995. border-width:0px;
  13996. position:absolute;
  13997. left:0px;
  13998. top:0px;
  13999. width:57px;
  14000. height:25px;
  14001. background:inherit;
  14002. background-color:rgba(255, 255, 255, 0);
  14003. border:none;
  14004. border-left:0px;
  14005. border-top:0px;
  14006. border-right:0px;
  14007. border-radius:0px;
  14008. border-bottom-right-radius:0px;
  14009. border-bottom-left-radius:0px;
  14010. -moz-box-shadow:none;
  14011. -webkit-box-shadow:none;
  14012. box-shadow:none;
  14013. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14014. font-weight:500;
  14015. font-style:normal;
  14016. font-size:14px;
  14017. line-height:25px;
  14018. }
  14019. #u41975 {
  14020. border-width:0px;
  14021. position:absolute;
  14022. left:1436px;
  14023. top:348px;
  14024. width:57px;
  14025. height:25px;
  14026. display:flex;
  14027. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14028. font-weight:500;
  14029. font-style:normal;
  14030. font-size:14px;
  14031. line-height:25px;
  14032. }
  14033. #u41975 .text {
  14034. position:absolute;
  14035. align-self:flex-start;
  14036. padding:0px 0px 0px 0px;
  14037. box-sizing:border-box;
  14038. width:100%;
  14039. }
  14040. #u41975_text {
  14041. border-width:0px;
  14042. white-space:nowrap;
  14043. text-transform:none;
  14044. }
  14045. #u41976_img {
  14046. border-width:0px;
  14047. position:absolute;
  14048. left:0px;
  14049. top:0px;
  14050. width:10px;
  14051. height:9px;
  14052. }
  14053. #u41976 {
  14054. border-width:0px;
  14055. position:absolute;
  14056. left:1772px;
  14057. top:356px;
  14058. width:10px;
  14059. height:9px;
  14060. display:flex;
  14061. -webkit-transform:rotate(90deg);
  14062. -moz-transform:rotate(90deg);
  14063. -ms-transform:rotate(90deg);
  14064. transform:rotate(90deg);
  14065. }
  14066. #u41976 .text {
  14067. position:absolute;
  14068. align-self:center;
  14069. padding:2px 2px 2px 2px;
  14070. box-sizing:border-box;
  14071. width:100%;
  14072. }
  14073. #u41976_text {
  14074. border-width:0px;
  14075. word-wrap:break-word;
  14076. text-transform:none;
  14077. visibility:hidden;
  14078. }
  14079. #u41977 {
  14080. border-width:0px;
  14081. position:absolute;
  14082. left:0px;
  14083. top:0px;
  14084. width:0px;
  14085. height:0px;
  14086. }
  14087. #u41978_div {
  14088. border-width:0px;
  14089. position:absolute;
  14090. left:0px;
  14091. top:0px;
  14092. width:375px;
  14093. height:229px;
  14094. background:inherit;
  14095. background-color:rgba(255, 255, 255, 1);
  14096. border:none;
  14097. border-left:0px;
  14098. border-top:0px;
  14099. border-right:0px;
  14100. border-radius:0px;
  14101. border-bottom-right-radius:0px;
  14102. border-bottom-left-radius:0px;
  14103. -moz-box-shadow:none;
  14104. -webkit-box-shadow:none;
  14105. box-shadow:none;
  14106. }
  14107. #u41978 {
  14108. border-width:0px;
  14109. position:absolute;
  14110. left:1888px;
  14111. top:108px;
  14112. width:375px;
  14113. height:229px;
  14114. display:flex;
  14115. }
  14116. #u41978 .text {
  14117. position:absolute;
  14118. align-self:center;
  14119. padding:2px 2px 2px 2px;
  14120. box-sizing:border-box;
  14121. width:100%;
  14122. }
  14123. #u41978_text {
  14124. border-width:0px;
  14125. word-wrap:break-word;
  14126. text-transform:none;
  14127. visibility:hidden;
  14128. }
  14129. #u41979_div {
  14130. border-width:0px;
  14131. position:absolute;
  14132. left:0px;
  14133. top:0px;
  14134. width:57px;
  14135. height:20px;
  14136. background:inherit;
  14137. background-color:rgba(255, 255, 255, 0);
  14138. border:none;
  14139. border-radius:0px;
  14140. -moz-box-shadow:none;
  14141. -webkit-box-shadow:none;
  14142. box-shadow:none;
  14143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14144. font-weight:400;
  14145. font-style:normal;
  14146. color:#0089FE;
  14147. }
  14148. #u41979 {
  14149. border-width:0px;
  14150. position:absolute;
  14151. left:2191px;
  14152. top:124px;
  14153. width:57px;
  14154. height:20px;
  14155. display:flex;
  14156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14157. font-weight:400;
  14158. font-style:normal;
  14159. color:#0089FE;
  14160. }
  14161. #u41979 .text {
  14162. position:absolute;
  14163. align-self:flex-start;
  14164. padding:0px 0px 0px 0px;
  14165. box-sizing:border-box;
  14166. width:100%;
  14167. }
  14168. #u41979_text {
  14169. border-width:0px;
  14170. white-space:nowrap;
  14171. text-transform:none;
  14172. }
  14173. #u41980_div {
  14174. border-width:0px;
  14175. position:absolute;
  14176. left:0px;
  14177. top:0px;
  14178. width:180px;
  14179. height:30px;
  14180. background:inherit;
  14181. background-color:rgba(255, 255, 255, 0);
  14182. border:none;
  14183. border-left:0px;
  14184. border-top:0px;
  14185. border-right:0px;
  14186. border-radius:0px;
  14187. border-bottom-right-radius:0px;
  14188. border-bottom-left-radius:0px;
  14189. -moz-box-shadow:none;
  14190. -webkit-box-shadow:none;
  14191. box-shadow:none;
  14192. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14193. font-weight:500;
  14194. font-style:normal;
  14195. font-size:14px;
  14196. line-height:30px;
  14197. }
  14198. #u41980 {
  14199. border-width:0px;
  14200. position:absolute;
  14201. left:1901px;
  14202. top:118px;
  14203. width:180px;
  14204. height:30px;
  14205. display:flex;
  14206. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14207. font-weight:500;
  14208. font-style:normal;
  14209. font-size:14px;
  14210. line-height:30px;
  14211. }
  14212. #u41980 .text {
  14213. position:absolute;
  14214. align-self:flex-start;
  14215. padding:0px 0px 0px 0px;
  14216. box-sizing:border-box;
  14217. width:100%;
  14218. }
  14219. #u41980_text {
  14220. border-width:0px;
  14221. white-space:nowrap;
  14222. text-transform:none;
  14223. }
  14224. #u41981_div {
  14225. border-width:0px;
  14226. position:absolute;
  14227. left:0px;
  14228. top:0px;
  14229. width:107px;
  14230. height:25px;
  14231. background:inherit;
  14232. background-color:rgba(255, 255, 255, 0);
  14233. border:none;
  14234. border-left:0px;
  14235. border-top:0px;
  14236. border-right:0px;
  14237. border-radius:0px;
  14238. border-bottom-right-radius:0px;
  14239. border-bottom-left-radius:0px;
  14240. -moz-box-shadow:none;
  14241. -webkit-box-shadow:none;
  14242. box-shadow:none;
  14243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14244. font-weight:400;
  14245. font-style:normal;
  14246. font-size:12px;
  14247. line-height:25px;
  14248. }
  14249. #u41981 {
  14250. border-width:0px;
  14251. position:absolute;
  14252. left:1901px;
  14253. top:148px;
  14254. width:107px;
  14255. height:25px;
  14256. display:flex;
  14257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14258. font-weight:400;
  14259. font-style:normal;
  14260. font-size:12px;
  14261. line-height:25px;
  14262. }
  14263. #u41981 .text {
  14264. position:absolute;
  14265. align-self:flex-start;
  14266. padding:0px 0px 0px 0px;
  14267. box-sizing:border-box;
  14268. width:100%;
  14269. }
  14270. #u41981_text {
  14271. border-width:0px;
  14272. white-space:nowrap;
  14273. text-transform:none;
  14274. }
  14275. #u41982_div {
  14276. border-width:0px;
  14277. position:absolute;
  14278. left:0px;
  14279. top:0px;
  14280. width:85px;
  14281. height:30px;
  14282. background:inherit;
  14283. background-color:rgba(255, 255, 255, 0);
  14284. border:none;
  14285. border-left:0px;
  14286. border-top:0px;
  14287. border-right:0px;
  14288. border-radius:0px;
  14289. border-bottom-right-radius:0px;
  14290. border-bottom-left-radius:0px;
  14291. -moz-box-shadow:none;
  14292. -webkit-box-shadow:none;
  14293. box-shadow:none;
  14294. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14295. font-weight:500;
  14296. font-style:normal;
  14297. font-size:12px;
  14298. line-height:30px;
  14299. }
  14300. #u41982 {
  14301. border-width:0px;
  14302. position:absolute;
  14303. left:1916px;
  14304. top:183px;
  14305. width:85px;
  14306. height:30px;
  14307. display:flex;
  14308. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14309. font-weight:500;
  14310. font-style:normal;
  14311. font-size:12px;
  14312. line-height:30px;
  14313. }
  14314. #u41982 .text {
  14315. position:absolute;
  14316. align-self:center;
  14317. padding:0px 0px 0px 0px;
  14318. box-sizing:border-box;
  14319. width:100%;
  14320. }
  14321. #u41982_text {
  14322. border-width:0px;
  14323. white-space:nowrap;
  14324. text-transform:none;
  14325. }
  14326. #u41983_div {
  14327. border-width:0px;
  14328. position:absolute;
  14329. left:0px;
  14330. top:0px;
  14331. width:92px;
  14332. height:30px;
  14333. background:inherit;
  14334. background-color:rgba(255, 255, 255, 0);
  14335. border:none;
  14336. border-left:0px;
  14337. border-top:0px;
  14338. border-right:0px;
  14339. border-radius:0px;
  14340. border-bottom-right-radius:0px;
  14341. border-bottom-left-radius:0px;
  14342. -moz-box-shadow:none;
  14343. -webkit-box-shadow:none;
  14344. box-shadow:none;
  14345. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14346. font-weight:500;
  14347. font-style:normal;
  14348. font-size:12px;
  14349. line-height:30px;
  14350. }
  14351. #u41983 {
  14352. border-width:0px;
  14353. position:absolute;
  14354. left:1916px;
  14355. top:223px;
  14356. width:92px;
  14357. height:30px;
  14358. display:flex;
  14359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14360. font-weight:500;
  14361. font-style:normal;
  14362. font-size:12px;
  14363. line-height:30px;
  14364. }
  14365. #u41983 .text {
  14366. position:absolute;
  14367. align-self:center;
  14368. padding:0px 0px 0px 0px;
  14369. box-sizing:border-box;
  14370. width:100%;
  14371. }
  14372. #u41983_text {
  14373. border-width:0px;
  14374. white-space:nowrap;
  14375. text-transform:none;
  14376. }
  14377. #u41984_div {
  14378. border-width:0px;
  14379. position:absolute;
  14380. left:0px;
  14381. top:0px;
  14382. width:333px;
  14383. height:60px;
  14384. background:inherit;
  14385. background-color:rgba(255, 255, 255, 0);
  14386. border:none;
  14387. border-left:0px;
  14388. border-top:0px;
  14389. border-right:0px;
  14390. border-radius:0px;
  14391. border-bottom-right-radius:0px;
  14392. border-bottom-left-radius:0px;
  14393. -moz-box-shadow:none;
  14394. -webkit-box-shadow:none;
  14395. box-shadow:none;
  14396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14397. font-weight:400;
  14398. font-style:normal;
  14399. font-size:12px;
  14400. color:#7F7F7F;
  14401. line-height:20px;
  14402. }
  14403. #u41984 {
  14404. border-width:0px;
  14405. position:absolute;
  14406. left:1916px;
  14407. top:253px;
  14408. width:333px;
  14409. height:60px;
  14410. display:flex;
  14411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14412. font-weight:400;
  14413. font-style:normal;
  14414. font-size:12px;
  14415. color:#7F7F7F;
  14416. line-height:20px;
  14417. }
  14418. #u41984 .text {
  14419. position:absolute;
  14420. align-self:flex-start;
  14421. padding:0px 0px 0px 0px;
  14422. box-sizing:border-box;
  14423. width:100%;
  14424. }
  14425. #u41984_text {
  14426. border-width:0px;
  14427. word-wrap:break-word;
  14428. text-transform:none;
  14429. }
  14430. #u41985 {
  14431. border-width:0px;
  14432. position:absolute;
  14433. left:0px;
  14434. top:0px;
  14435. width:0px;
  14436. height:0px;
  14437. }
  14438. #u41986_img {
  14439. border-width:0px;
  14440. position:absolute;
  14441. left:0px;
  14442. top:0px;
  14443. width:11px;
  14444. height:11px;
  14445. }
  14446. #u41986 {
  14447. border-width:0px;
  14448. position:absolute;
  14449. left:1901px;
  14450. top:192px;
  14451. width:11px;
  14452. height:11px;
  14453. display:flex;
  14454. }
  14455. #u41986 .text {
  14456. position:absolute;
  14457. align-self:center;
  14458. padding:2px 2px 2px 2px;
  14459. box-sizing:border-box;
  14460. width:100%;
  14461. }
  14462. #u41986_text {
  14463. border-width:0px;
  14464. word-wrap:break-word;
  14465. text-transform:none;
  14466. visibility:hidden;
  14467. }
  14468. #u41987_img {
  14469. border-width:0px;
  14470. position:absolute;
  14471. left:0px;
  14472. top:0px;
  14473. width:11px;
  14474. height:11px;
  14475. }
  14476. #u41987 {
  14477. border-width:0px;
  14478. position:absolute;
  14479. left:1901px;
  14480. top:233px;
  14481. width:11px;
  14482. height:11px;
  14483. display:flex;
  14484. }
  14485. #u41987 .text {
  14486. position:absolute;
  14487. align-self:center;
  14488. padding:2px 2px 2px 2px;
  14489. box-sizing:border-box;
  14490. width:100%;
  14491. }
  14492. #u41987_text {
  14493. border-width:0px;
  14494. word-wrap:break-word;
  14495. text-transform:none;
  14496. visibility:hidden;
  14497. }
  14498. #u41988_img {
  14499. border-width:0px;
  14500. position:absolute;
  14501. left:0px;
  14502. top:0px;
  14503. width:2px;
  14504. height:40px;
  14505. }
  14506. #u41988 {
  14507. border-width:0px;
  14508. position:absolute;
  14509. left:1906px;
  14510. top:203px;
  14511. width:1px;
  14512. height:39px;
  14513. display:flex;
  14514. }
  14515. #u41988 .text {
  14516. position:absolute;
  14517. align-self:center;
  14518. padding:2px 2px 2px 2px;
  14519. box-sizing:border-box;
  14520. width:100%;
  14521. }
  14522. #u41988_text {
  14523. border-width:0px;
  14524. word-wrap:break-word;
  14525. text-transform:none;
  14526. visibility:hidden;
  14527. }
  14528. #u41989 {
  14529. border-width:0px;
  14530. position:absolute;
  14531. left:0px;
  14532. top:0px;
  14533. width:0px;
  14534. height:0px;
  14535. }
  14536. #u41990_div {
  14537. border-width:0px;
  14538. position:absolute;
  14539. left:0px;
  14540. top:0px;
  14541. width:375px;
  14542. height:41px;
  14543. background:inherit;
  14544. background-color:rgba(255, 255, 255, 1);
  14545. border:none;
  14546. border-left:0px;
  14547. border-top:0px;
  14548. border-right:0px;
  14549. border-radius:0px;
  14550. border-bottom-right-radius:0px;
  14551. border-bottom-left-radius:0px;
  14552. -moz-box-shadow:none;
  14553. -webkit-box-shadow:none;
  14554. box-shadow:none;
  14555. }
  14556. #u41990 {
  14557. border-width:0px;
  14558. position:absolute;
  14559. left:1888px;
  14560. top:338px;
  14561. width:375px;
  14562. height:41px;
  14563. display:flex;
  14564. }
  14565. #u41990 .text {
  14566. position:absolute;
  14567. align-self:center;
  14568. padding:2px 2px 2px 2px;
  14569. box-sizing:border-box;
  14570. width:100%;
  14571. }
  14572. #u41990_text {
  14573. border-width:0px;
  14574. word-wrap:break-word;
  14575. text-transform:none;
  14576. visibility:hidden;
  14577. }
  14578. #u41991_div {
  14579. border-width:0px;
  14580. position:absolute;
  14581. left:0px;
  14582. top:0px;
  14583. width:57px;
  14584. height:25px;
  14585. background:inherit;
  14586. background-color:rgba(255, 255, 255, 0);
  14587. border:none;
  14588. border-left:0px;
  14589. border-top:0px;
  14590. border-right:0px;
  14591. border-radius:0px;
  14592. border-bottom-right-radius:0px;
  14593. border-bottom-left-radius:0px;
  14594. -moz-box-shadow:none;
  14595. -webkit-box-shadow:none;
  14596. box-shadow:none;
  14597. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14598. font-weight:500;
  14599. font-style:normal;
  14600. font-size:14px;
  14601. line-height:25px;
  14602. }
  14603. #u41991 {
  14604. border-width:0px;
  14605. position:absolute;
  14606. left:1899px;
  14607. top:348px;
  14608. width:57px;
  14609. height:25px;
  14610. display:flex;
  14611. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14612. font-weight:500;
  14613. font-style:normal;
  14614. font-size:14px;
  14615. line-height:25px;
  14616. }
  14617. #u41991 .text {
  14618. position:absolute;
  14619. align-self:flex-start;
  14620. padding:0px 0px 0px 0px;
  14621. box-sizing:border-box;
  14622. width:100%;
  14623. }
  14624. #u41991_text {
  14625. border-width:0px;
  14626. white-space:nowrap;
  14627. text-transform:none;
  14628. }
  14629. #u41992_img {
  14630. border-width:0px;
  14631. position:absolute;
  14632. left:0px;
  14633. top:0px;
  14634. width:10px;
  14635. height:9px;
  14636. }
  14637. #u41992 {
  14638. border-width:0px;
  14639. position:absolute;
  14640. left:2235px;
  14641. top:356px;
  14642. width:10px;
  14643. height:9px;
  14644. display:flex;
  14645. -webkit-transform:rotate(90deg);
  14646. -moz-transform:rotate(90deg);
  14647. -ms-transform:rotate(90deg);
  14648. transform:rotate(90deg);
  14649. }
  14650. #u41992 .text {
  14651. position:absolute;
  14652. align-self:center;
  14653. padding:2px 2px 2px 2px;
  14654. box-sizing:border-box;
  14655. width:100%;
  14656. }
  14657. #u41992_text {
  14658. border-width:0px;
  14659. word-wrap:break-word;
  14660. text-transform:none;
  14661. visibility:hidden;
  14662. }
  14663. #u41993_div {
  14664. border-width:0px;
  14665. position:absolute;
  14666. left:0px;
  14667. top:0px;
  14668. width:73px;
  14669. height:25px;
  14670. background:inherit;
  14671. background-color:rgba(255, 255, 255, 0);
  14672. border:none;
  14673. border-left:0px;
  14674. border-top:0px;
  14675. border-right:0px;
  14676. border-radius:0px;
  14677. border-bottom-right-radius:0px;
  14678. border-bottom-left-radius:0px;
  14679. -moz-box-shadow:none;
  14680. -webkit-box-shadow:none;
  14681. box-shadow:none;
  14682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14683. font-weight:400;
  14684. font-style:normal;
  14685. font-size:12px;
  14686. color:#D9001B;
  14687. line-height:25px;
  14688. }
  14689. #u41993 {
  14690. border-width:0px;
  14691. position:absolute;
  14692. left:2171px;
  14693. top:144px;
  14694. width:73px;
  14695. height:25px;
  14696. display:flex;
  14697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14698. font-weight:400;
  14699. font-style:normal;
  14700. font-size:12px;
  14701. color:#D9001B;
  14702. line-height:25px;
  14703. }
  14704. #u41993 .text {
  14705. position:absolute;
  14706. align-self:flex-start;
  14707. padding:0px 0px 0px 0px;
  14708. box-sizing:border-box;
  14709. width:100%;
  14710. }
  14711. #u41993_text {
  14712. border-width:0px;
  14713. white-space:nowrap;
  14714. text-transform:none;
  14715. }
  14716. #u41994 {
  14717. border-width:0px;
  14718. position:absolute;
  14719. left:0px;
  14720. top:0px;
  14721. width:0px;
  14722. height:0px;
  14723. }
  14724. #u41995_div {
  14725. border-width:0px;
  14726. position:absolute;
  14727. left:0px;
  14728. top:0px;
  14729. width:375px;
  14730. height:229px;
  14731. background:inherit;
  14732. background-color:rgba(255, 255, 255, 1);
  14733. border:none;
  14734. border-left:0px;
  14735. border-top:0px;
  14736. border-right:0px;
  14737. border-radius:0px;
  14738. border-bottom-right-radius:0px;
  14739. border-bottom-left-radius:0px;
  14740. -moz-box-shadow:none;
  14741. -webkit-box-shadow:none;
  14742. box-shadow:none;
  14743. }
  14744. #u41995 {
  14745. border-width:0px;
  14746. position:absolute;
  14747. left:2351px;
  14748. top:108px;
  14749. width:375px;
  14750. height:229px;
  14751. display:flex;
  14752. }
  14753. #u41995 .text {
  14754. position:absolute;
  14755. align-self:center;
  14756. padding:2px 2px 2px 2px;
  14757. box-sizing:border-box;
  14758. width:100%;
  14759. }
  14760. #u41995_text {
  14761. border-width:0px;
  14762. word-wrap:break-word;
  14763. text-transform:none;
  14764. visibility:hidden;
  14765. }
  14766. #u41996_div {
  14767. border-width:0px;
  14768. position:absolute;
  14769. left:0px;
  14770. top:0px;
  14771. width:43px;
  14772. height:20px;
  14773. background:inherit;
  14774. background-color:rgba(255, 255, 255, 0);
  14775. border:none;
  14776. border-radius:0px;
  14777. -moz-box-shadow:none;
  14778. -webkit-box-shadow:none;
  14779. box-shadow:none;
  14780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14781. font-weight:400;
  14782. font-style:normal;
  14783. color:#0089FE;
  14784. }
  14785. #u41996 {
  14786. border-width:0px;
  14787. position:absolute;
  14788. left:2654px;
  14789. top:124px;
  14790. width:43px;
  14791. height:20px;
  14792. display:flex;
  14793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14794. font-weight:400;
  14795. font-style:normal;
  14796. color:#0089FE;
  14797. }
  14798. #u41996 .text {
  14799. position:absolute;
  14800. align-self:flex-start;
  14801. padding:0px 0px 0px 0px;
  14802. box-sizing:border-box;
  14803. width:100%;
  14804. }
  14805. #u41996_text {
  14806. border-width:0px;
  14807. white-space:nowrap;
  14808. text-transform:none;
  14809. }
  14810. #u41997_div {
  14811. border-width:0px;
  14812. position:absolute;
  14813. left:0px;
  14814. top:0px;
  14815. width:180px;
  14816. height:30px;
  14817. background:inherit;
  14818. background-color:rgba(255, 255, 255, 0);
  14819. border:none;
  14820. border-left:0px;
  14821. border-top:0px;
  14822. border-right:0px;
  14823. border-radius:0px;
  14824. border-bottom-right-radius:0px;
  14825. border-bottom-left-radius:0px;
  14826. -moz-box-shadow:none;
  14827. -webkit-box-shadow:none;
  14828. box-shadow:none;
  14829. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14830. font-weight:500;
  14831. font-style:normal;
  14832. font-size:14px;
  14833. line-height:30px;
  14834. }
  14835. #u41997 {
  14836. border-width:0px;
  14837. position:absolute;
  14838. left:2364px;
  14839. top:118px;
  14840. width:180px;
  14841. height:30px;
  14842. display:flex;
  14843. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14844. font-weight:500;
  14845. font-style:normal;
  14846. font-size:14px;
  14847. line-height:30px;
  14848. }
  14849. #u41997 .text {
  14850. position:absolute;
  14851. align-self:flex-start;
  14852. padding:0px 0px 0px 0px;
  14853. box-sizing:border-box;
  14854. width:100%;
  14855. }
  14856. #u41997_text {
  14857. border-width:0px;
  14858. white-space:nowrap;
  14859. text-transform:none;
  14860. }
  14861. #u41998_div {
  14862. border-width:0px;
  14863. position:absolute;
  14864. left:0px;
  14865. top:0px;
  14866. width:107px;
  14867. height:25px;
  14868. background:inherit;
  14869. background-color:rgba(255, 255, 255, 0);
  14870. border:none;
  14871. border-left:0px;
  14872. border-top:0px;
  14873. border-right:0px;
  14874. border-radius:0px;
  14875. border-bottom-right-radius:0px;
  14876. border-bottom-left-radius:0px;
  14877. -moz-box-shadow:none;
  14878. -webkit-box-shadow:none;
  14879. box-shadow:none;
  14880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14881. font-weight:400;
  14882. font-style:normal;
  14883. font-size:12px;
  14884. line-height:25px;
  14885. }
  14886. #u41998 {
  14887. border-width:0px;
  14888. position:absolute;
  14889. left:2364px;
  14890. top:148px;
  14891. width:107px;
  14892. height:25px;
  14893. display:flex;
  14894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14895. font-weight:400;
  14896. font-style:normal;
  14897. font-size:12px;
  14898. line-height:25px;
  14899. }
  14900. #u41998 .text {
  14901. position:absolute;
  14902. align-self:flex-start;
  14903. padding:0px 0px 0px 0px;
  14904. box-sizing:border-box;
  14905. width:100%;
  14906. }
  14907. #u41998_text {
  14908. border-width:0px;
  14909. white-space:nowrap;
  14910. text-transform:none;
  14911. }
  14912. #u41999_div {
  14913. border-width:0px;
  14914. position:absolute;
  14915. left:0px;
  14916. top:0px;
  14917. width:85px;
  14918. height:30px;
  14919. background:inherit;
  14920. background-color:rgba(255, 255, 255, 0);
  14921. border:none;
  14922. border-left:0px;
  14923. border-top:0px;
  14924. border-right:0px;
  14925. border-radius:0px;
  14926. border-bottom-right-radius:0px;
  14927. border-bottom-left-radius:0px;
  14928. -moz-box-shadow:none;
  14929. -webkit-box-shadow:none;
  14930. box-shadow:none;
  14931. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14932. font-weight:500;
  14933. font-style:normal;
  14934. font-size:12px;
  14935. line-height:30px;
  14936. }
  14937. #u41999 {
  14938. border-width:0px;
  14939. position:absolute;
  14940. left:2379px;
  14941. top:183px;
  14942. width:85px;
  14943. height:30px;
  14944. display:flex;
  14945. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14946. font-weight:500;
  14947. font-style:normal;
  14948. font-size:12px;
  14949. line-height:30px;
  14950. }
  14951. #u41999 .text {
  14952. position:absolute;
  14953. align-self:center;
  14954. padding:0px 0px 0px 0px;
  14955. box-sizing:border-box;
  14956. width:100%;
  14957. }
  14958. #u41999_text {
  14959. border-width:0px;
  14960. white-space:nowrap;
  14961. text-transform:none;
  14962. }
  14963. #u42000_div {
  14964. border-width:0px;
  14965. position:absolute;
  14966. left:0px;
  14967. top:0px;
  14968. width:92px;
  14969. height:30px;
  14970. background:inherit;
  14971. background-color:rgba(255, 255, 255, 0);
  14972. border:none;
  14973. border-left:0px;
  14974. border-top:0px;
  14975. border-right:0px;
  14976. border-radius:0px;
  14977. border-bottom-right-radius:0px;
  14978. border-bottom-left-radius:0px;
  14979. -moz-box-shadow:none;
  14980. -webkit-box-shadow:none;
  14981. box-shadow:none;
  14982. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14983. font-weight:500;
  14984. font-style:normal;
  14985. font-size:12px;
  14986. line-height:30px;
  14987. }
  14988. #u42000 {
  14989. border-width:0px;
  14990. position:absolute;
  14991. left:2379px;
  14992. top:223px;
  14993. width:92px;
  14994. height:30px;
  14995. display:flex;
  14996. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14997. font-weight:500;
  14998. font-style:normal;
  14999. font-size:12px;
  15000. line-height:30px;
  15001. }
  15002. #u42000 .text {
  15003. position:absolute;
  15004. align-self:center;
  15005. padding:0px 0px 0px 0px;
  15006. box-sizing:border-box;
  15007. width:100%;
  15008. }
  15009. #u42000_text {
  15010. border-width:0px;
  15011. white-space:nowrap;
  15012. text-transform:none;
  15013. }
  15014. #u42001_div {
  15015. border-width:0px;
  15016. position:absolute;
  15017. left:0px;
  15018. top:0px;
  15019. width:333px;
  15020. height:60px;
  15021. background:inherit;
  15022. background-color:rgba(255, 255, 255, 0);
  15023. border:none;
  15024. border-left:0px;
  15025. border-top:0px;
  15026. border-right:0px;
  15027. border-radius:0px;
  15028. border-bottom-right-radius:0px;
  15029. border-bottom-left-radius:0px;
  15030. -moz-box-shadow:none;
  15031. -webkit-box-shadow:none;
  15032. box-shadow:none;
  15033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15034. font-weight:400;
  15035. font-style:normal;
  15036. font-size:12px;
  15037. color:#7F7F7F;
  15038. line-height:20px;
  15039. }
  15040. #u42001 {
  15041. border-width:0px;
  15042. position:absolute;
  15043. left:2379px;
  15044. top:253px;
  15045. width:333px;
  15046. height:60px;
  15047. display:flex;
  15048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15049. font-weight:400;
  15050. font-style:normal;
  15051. font-size:12px;
  15052. color:#7F7F7F;
  15053. line-height:20px;
  15054. }
  15055. #u42001 .text {
  15056. position:absolute;
  15057. align-self:flex-start;
  15058. padding:0px 0px 0px 0px;
  15059. box-sizing:border-box;
  15060. width:100%;
  15061. }
  15062. #u42001_text {
  15063. border-width:0px;
  15064. word-wrap:break-word;
  15065. text-transform:none;
  15066. }
  15067. #u42002 {
  15068. border-width:0px;
  15069. position:absolute;
  15070. left:0px;
  15071. top:0px;
  15072. width:0px;
  15073. height:0px;
  15074. }
  15075. #u42003_img {
  15076. border-width:0px;
  15077. position:absolute;
  15078. left:0px;
  15079. top:0px;
  15080. width:11px;
  15081. height:11px;
  15082. }
  15083. #u42003 {
  15084. border-width:0px;
  15085. position:absolute;
  15086. left:2364px;
  15087. top:192px;
  15088. width:11px;
  15089. height:11px;
  15090. display:flex;
  15091. }
  15092. #u42003 .text {
  15093. position:absolute;
  15094. align-self:center;
  15095. padding:2px 2px 2px 2px;
  15096. box-sizing:border-box;
  15097. width:100%;
  15098. }
  15099. #u42003_text {
  15100. border-width:0px;
  15101. word-wrap:break-word;
  15102. text-transform:none;
  15103. visibility:hidden;
  15104. }
  15105. #u42004_img {
  15106. border-width:0px;
  15107. position:absolute;
  15108. left:0px;
  15109. top:0px;
  15110. width:2px;
  15111. height:40px;
  15112. }
  15113. #u42004 {
  15114. border-width:0px;
  15115. position:absolute;
  15116. left:2369px;
  15117. top:203px;
  15118. width:1px;
  15119. height:39px;
  15120. display:flex;
  15121. }
  15122. #u42004 .text {
  15123. position:absolute;
  15124. align-self:center;
  15125. padding:2px 2px 2px 2px;
  15126. box-sizing:border-box;
  15127. width:100%;
  15128. }
  15129. #u42004_text {
  15130. border-width:0px;
  15131. word-wrap:break-word;
  15132. text-transform:none;
  15133. visibility:hidden;
  15134. }
  15135. #u42005_img {
  15136. border-width:0px;
  15137. position:absolute;
  15138. left:0px;
  15139. top:0px;
  15140. width:11px;
  15141. height:11px;
  15142. }
  15143. #u42005 {
  15144. border-width:0px;
  15145. position:absolute;
  15146. left:2364px;
  15147. top:233px;
  15148. width:11px;
  15149. height:11px;
  15150. display:flex;
  15151. }
  15152. #u42005 .text {
  15153. position:absolute;
  15154. align-self:center;
  15155. padding:2px 2px 2px 2px;
  15156. box-sizing:border-box;
  15157. width:100%;
  15158. }
  15159. #u42005_text {
  15160. border-width:0px;
  15161. word-wrap:break-word;
  15162. text-transform:none;
  15163. visibility:hidden;
  15164. }
  15165. #u42006 {
  15166. border-width:0px;
  15167. position:absolute;
  15168. left:0px;
  15169. top:0px;
  15170. width:0px;
  15171. height:0px;
  15172. }
  15173. #u42007_div {
  15174. border-width:0px;
  15175. position:absolute;
  15176. left:0px;
  15177. top:0px;
  15178. width:375px;
  15179. height:41px;
  15180. background:inherit;
  15181. background-color:rgba(255, 255, 255, 1);
  15182. border:none;
  15183. border-left:0px;
  15184. border-top:0px;
  15185. border-right:0px;
  15186. border-radius:0px;
  15187. border-bottom-right-radius:0px;
  15188. border-bottom-left-radius:0px;
  15189. -moz-box-shadow:none;
  15190. -webkit-box-shadow:none;
  15191. box-shadow:none;
  15192. }
  15193. #u42007 {
  15194. border-width:0px;
  15195. position:absolute;
  15196. left:2351px;
  15197. top:338px;
  15198. width:375px;
  15199. height:41px;
  15200. display:flex;
  15201. }
  15202. #u42007 .text {
  15203. position:absolute;
  15204. align-self:center;
  15205. padding:2px 2px 2px 2px;
  15206. box-sizing:border-box;
  15207. width:100%;
  15208. }
  15209. #u42007_text {
  15210. border-width:0px;
  15211. word-wrap:break-word;
  15212. text-transform:none;
  15213. visibility:hidden;
  15214. }
  15215. #u42008_div {
  15216. border-width:0px;
  15217. position:absolute;
  15218. left:0px;
  15219. top:0px;
  15220. width:57px;
  15221. height:25px;
  15222. background:inherit;
  15223. background-color:rgba(255, 255, 255, 0);
  15224. border:none;
  15225. border-left:0px;
  15226. border-top:0px;
  15227. border-right:0px;
  15228. border-radius:0px;
  15229. border-bottom-right-radius:0px;
  15230. border-bottom-left-radius:0px;
  15231. -moz-box-shadow:none;
  15232. -webkit-box-shadow:none;
  15233. box-shadow:none;
  15234. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  15235. font-weight:500;
  15236. font-style:normal;
  15237. font-size:14px;
  15238. line-height:25px;
  15239. }
  15240. #u42008 {
  15241. border-width:0px;
  15242. position:absolute;
  15243. left:2362px;
  15244. top:348px;
  15245. width:57px;
  15246. height:25px;
  15247. display:flex;
  15248. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  15249. font-weight:500;
  15250. font-style:normal;
  15251. font-size:14px;
  15252. line-height:25px;
  15253. }
  15254. #u42008 .text {
  15255. position:absolute;
  15256. align-self:flex-start;
  15257. padding:0px 0px 0px 0px;
  15258. box-sizing:border-box;
  15259. width:100%;
  15260. }
  15261. #u42008_text {
  15262. border-width:0px;
  15263. white-space:nowrap;
  15264. text-transform:none;
  15265. }
  15266. #u42009_img {
  15267. border-width:0px;
  15268. position:absolute;
  15269. left:0px;
  15270. top:0px;
  15271. width:10px;
  15272. height:9px;
  15273. }
  15274. #u42009 {
  15275. border-width:0px;
  15276. position:absolute;
  15277. left:2698px;
  15278. top:356px;
  15279. width:10px;
  15280. height:9px;
  15281. display:flex;
  15282. -webkit-transform:rotate(90deg);
  15283. -moz-transform:rotate(90deg);
  15284. -ms-transform:rotate(90deg);
  15285. transform:rotate(90deg);
  15286. }
  15287. #u42009 .text {
  15288. position:absolute;
  15289. align-self:center;
  15290. padding:2px 2px 2px 2px;
  15291. box-sizing:border-box;
  15292. width:100%;
  15293. }
  15294. #u42009_text {
  15295. border-width:0px;
  15296. word-wrap:break-word;
  15297. text-transform:none;
  15298. visibility:hidden;
  15299. }
  15300. #u42010 {
  15301. border-width:0px;
  15302. position:absolute;
  15303. left:0px;
  15304. top:0px;
  15305. width:0px;
  15306. height:0px;
  15307. }
  15308. #u42011_div {
  15309. border-width:0px;
  15310. position:absolute;
  15311. left:0px;
  15312. top:0px;
  15313. width:375px;
  15314. height:229px;
  15315. background:inherit;
  15316. background-color:rgba(255, 255, 255, 1);
  15317. border:none;
  15318. border-left:0px;
  15319. border-top:0px;
  15320. border-right:0px;
  15321. border-radius:0px;
  15322. border-bottom-right-radius:0px;
  15323. border-bottom-left-radius:0px;
  15324. -moz-box-shadow:none;
  15325. -webkit-box-shadow:none;
  15326. box-shadow:none;
  15327. }
  15328. #u42011 {
  15329. border-width:0px;
  15330. position:absolute;
  15331. left:2814px;
  15332. top:108px;
  15333. width:375px;
  15334. height:229px;
  15335. display:flex;
  15336. }
  15337. #u42011 .text {
  15338. position:absolute;
  15339. align-self:center;
  15340. padding:2px 2px 2px 2px;
  15341. box-sizing:border-box;
  15342. width:100%;
  15343. }
  15344. #u42011_text {
  15345. border-width:0px;
  15346. word-wrap:break-word;
  15347. text-transform:none;
  15348. visibility:hidden;
  15349. }
  15350. #u42012_div {
  15351. border-width:0px;
  15352. position:absolute;
  15353. left:0px;
  15354. top:0px;
  15355. width:43px;
  15356. height:20px;
  15357. background:inherit;
  15358. background-color:rgba(255, 255, 255, 0);
  15359. border:none;
  15360. border-radius:0px;
  15361. -moz-box-shadow:none;
  15362. -webkit-box-shadow:none;
  15363. box-shadow:none;
  15364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15365. font-weight:400;
  15366. font-style:normal;
  15367. color:#0089FE;
  15368. }
  15369. #u42012 {
  15370. border-width:0px;
  15371. position:absolute;
  15372. left:3117px;
  15373. top:124px;
  15374. width:43px;
  15375. height:20px;
  15376. display:flex;
  15377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15378. font-weight:400;
  15379. font-style:normal;
  15380. color:#0089FE;
  15381. }
  15382. #u42012 .text {
  15383. position:absolute;
  15384. align-self:flex-start;
  15385. padding:0px 0px 0px 0px;
  15386. box-sizing:border-box;
  15387. width:100%;
  15388. }
  15389. #u42012_text {
  15390. border-width:0px;
  15391. white-space:nowrap;
  15392. text-transform:none;
  15393. }
  15394. #u42013_div {
  15395. border-width:0px;
  15396. position:absolute;
  15397. left:0px;
  15398. top:0px;
  15399. width:180px;
  15400. height:30px;
  15401. background:inherit;
  15402. background-color:rgba(255, 255, 255, 0);
  15403. border:none;
  15404. border-left:0px;
  15405. border-top:0px;
  15406. border-right:0px;
  15407. border-radius:0px;
  15408. border-bottom-right-radius:0px;
  15409. border-bottom-left-radius:0px;
  15410. -moz-box-shadow:none;
  15411. -webkit-box-shadow:none;
  15412. box-shadow:none;
  15413. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  15414. font-weight:500;
  15415. font-style:normal;
  15416. font-size:14px;
  15417. line-height:30px;
  15418. }
  15419. #u42013 {
  15420. border-width:0px;
  15421. position:absolute;
  15422. left:2827px;
  15423. top:118px;
  15424. width:180px;
  15425. height:30px;
  15426. display:flex;
  15427. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  15428. font-weight:500;
  15429. font-style:normal;
  15430. font-size:14px;
  15431. line-height:30px;
  15432. }
  15433. #u42013 .text {
  15434. position:absolute;
  15435. align-self:flex-start;
  15436. padding:0px 0px 0px 0px;
  15437. box-sizing:border-box;
  15438. width:100%;
  15439. }
  15440. #u42013_text {
  15441. border-width:0px;
  15442. white-space:nowrap;
  15443. text-transform:none;
  15444. }
  15445. #u42014_div {
  15446. border-width:0px;
  15447. position:absolute;
  15448. left:0px;
  15449. top:0px;
  15450. width:107px;
  15451. height:25px;
  15452. background:inherit;
  15453. background-color:rgba(255, 255, 255, 0);
  15454. border:none;
  15455. border-left:0px;
  15456. border-top:0px;
  15457. border-right:0px;
  15458. border-radius:0px;
  15459. border-bottom-right-radius:0px;
  15460. border-bottom-left-radius:0px;
  15461. -moz-box-shadow:none;
  15462. -webkit-box-shadow:none;
  15463. box-shadow:none;
  15464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15465. font-weight:400;
  15466. font-style:normal;
  15467. font-size:12px;
  15468. line-height:25px;
  15469. }
  15470. #u42014 {
  15471. border-width:0px;
  15472. position:absolute;
  15473. left:2827px;
  15474. top:148px;
  15475. width:107px;
  15476. height:25px;
  15477. display:flex;
  15478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15479. font-weight:400;
  15480. font-style:normal;
  15481. font-size:12px;
  15482. line-height:25px;
  15483. }
  15484. #u42014 .text {
  15485. position:absolute;
  15486. align-self:flex-start;
  15487. padding:0px 0px 0px 0px;
  15488. box-sizing:border-box;
  15489. width:100%;
  15490. }
  15491. #u42014_text {
  15492. border-width:0px;
  15493. white-space:nowrap;
  15494. text-transform:none;
  15495. }
  15496. #u42015_div {
  15497. border-width:0px;
  15498. position:absolute;
  15499. left:0px;
  15500. top:0px;
  15501. width:85px;
  15502. height:30px;
  15503. background:inherit;
  15504. background-color:rgba(255, 255, 255, 0);
  15505. border:none;
  15506. border-left:0px;
  15507. border-top:0px;
  15508. border-right:0px;
  15509. border-radius:0px;
  15510. border-bottom-right-radius:0px;
  15511. border-bottom-left-radius:0px;
  15512. -moz-box-shadow:none;
  15513. -webkit-box-shadow:none;
  15514. box-shadow:none;
  15515. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  15516. font-weight:500;
  15517. font-style:normal;
  15518. font-size:12px;
  15519. line-height:30px;
  15520. }
  15521. #u42015 {
  15522. border-width:0px;
  15523. position:absolute;
  15524. left:2842px;
  15525. top:183px;
  15526. width:85px;
  15527. height:30px;
  15528. display:flex;
  15529. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  15530. font-weight:500;
  15531. font-style:normal;
  15532. font-size:12px;
  15533. line-height:30px;
  15534. }
  15535. #u42015 .text {
  15536. position:absolute;
  15537. align-self:center;
  15538. padding:0px 0px 0px 0px;
  15539. box-sizing:border-box;
  15540. width:100%;
  15541. }
  15542. #u42015_text {
  15543. border-width:0px;
  15544. white-space:nowrap;
  15545. text-transform:none;
  15546. }
  15547. #u42016_div {
  15548. border-width:0px;
  15549. position:absolute;
  15550. left:0px;
  15551. top:0px;
  15552. width:92px;
  15553. height:30px;
  15554. background:inherit;
  15555. background-color:rgba(255, 255, 255, 0);
  15556. border:none;
  15557. border-left:0px;
  15558. border-top:0px;
  15559. border-right:0px;
  15560. border-radius:0px;
  15561. border-bottom-right-radius:0px;
  15562. border-bottom-left-radius:0px;
  15563. -moz-box-shadow:none;
  15564. -webkit-box-shadow:none;
  15565. box-shadow:none;
  15566. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  15567. font-weight:500;
  15568. font-style:normal;
  15569. font-size:12px;
  15570. line-height:30px;
  15571. }
  15572. #u42016 {
  15573. border-width:0px;
  15574. position:absolute;
  15575. left:2842px;
  15576. top:223px;
  15577. width:92px;
  15578. height:30px;
  15579. display:flex;
  15580. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  15581. font-weight:500;
  15582. font-style:normal;
  15583. font-size:12px;
  15584. line-height:30px;
  15585. }
  15586. #u42016 .text {
  15587. position:absolute;
  15588. align-self:center;
  15589. padding:0px 0px 0px 0px;
  15590. box-sizing:border-box;
  15591. width:100%;
  15592. }
  15593. #u42016_text {
  15594. border-width:0px;
  15595. white-space:nowrap;
  15596. text-transform:none;
  15597. }
  15598. #u42017_div {
  15599. border-width:0px;
  15600. position:absolute;
  15601. left:0px;
  15602. top:0px;
  15603. width:333px;
  15604. height:60px;
  15605. background:inherit;
  15606. background-color:rgba(255, 255, 255, 0);
  15607. border:none;
  15608. border-left:0px;
  15609. border-top:0px;
  15610. border-right:0px;
  15611. border-radius:0px;
  15612. border-bottom-right-radius:0px;
  15613. border-bottom-left-radius:0px;
  15614. -moz-box-shadow:none;
  15615. -webkit-box-shadow:none;
  15616. box-shadow:none;
  15617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15618. font-weight:400;
  15619. font-style:normal;
  15620. font-size:12px;
  15621. color:#7F7F7F;
  15622. line-height:20px;
  15623. }
  15624. #u42017 {
  15625. border-width:0px;
  15626. position:absolute;
  15627. left:2842px;
  15628. top:253px;
  15629. width:333px;
  15630. height:60px;
  15631. display:flex;
  15632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15633. font-weight:400;
  15634. font-style:normal;
  15635. font-size:12px;
  15636. color:#7F7F7F;
  15637. line-height:20px;
  15638. }
  15639. #u42017 .text {
  15640. position:absolute;
  15641. align-self:flex-start;
  15642. padding:0px 0px 0px 0px;
  15643. box-sizing:border-box;
  15644. width:100%;
  15645. }
  15646. #u42017_text {
  15647. border-width:0px;
  15648. word-wrap:break-word;
  15649. text-transform:none;
  15650. }
  15651. #u42018 {
  15652. border-width:0px;
  15653. position:absolute;
  15654. left:0px;
  15655. top:0px;
  15656. width:0px;
  15657. height:0px;
  15658. }
  15659. #u42019_img {
  15660. border-width:0px;
  15661. position:absolute;
  15662. left:0px;
  15663. top:0px;
  15664. width:11px;
  15665. height:11px;
  15666. }
  15667. #u42019 {
  15668. border-width:0px;
  15669. position:absolute;
  15670. left:2827px;
  15671. top:192px;
  15672. width:11px;
  15673. height:11px;
  15674. display:flex;
  15675. }
  15676. #u42019 .text {
  15677. position:absolute;
  15678. align-self:center;
  15679. padding:2px 2px 2px 2px;
  15680. box-sizing:border-box;
  15681. width:100%;
  15682. }
  15683. #u42019_text {
  15684. border-width:0px;
  15685. word-wrap:break-word;
  15686. text-transform:none;
  15687. visibility:hidden;
  15688. }
  15689. #u42020_img {
  15690. border-width:0px;
  15691. position:absolute;
  15692. left:0px;
  15693. top:0px;
  15694. width:11px;
  15695. height:11px;
  15696. }
  15697. #u42020 {
  15698. border-width:0px;
  15699. position:absolute;
  15700. left:2827px;
  15701. top:233px;
  15702. width:11px;
  15703. height:11px;
  15704. display:flex;
  15705. }
  15706. #u42020 .text {
  15707. position:absolute;
  15708. align-self:center;
  15709. padding:2px 2px 2px 2px;
  15710. box-sizing:border-box;
  15711. width:100%;
  15712. }
  15713. #u42020_text {
  15714. border-width:0px;
  15715. word-wrap:break-word;
  15716. text-transform:none;
  15717. visibility:hidden;
  15718. }
  15719. #u42021_img {
  15720. border-width:0px;
  15721. position:absolute;
  15722. left:0px;
  15723. top:0px;
  15724. width:2px;
  15725. height:40px;
  15726. }
  15727. #u42021 {
  15728. border-width:0px;
  15729. position:absolute;
  15730. left:2832px;
  15731. top:203px;
  15732. width:1px;
  15733. height:39px;
  15734. display:flex;
  15735. }
  15736. #u42021 .text {
  15737. position:absolute;
  15738. align-self:center;
  15739. padding:2px 2px 2px 2px;
  15740. box-sizing:border-box;
  15741. width:100%;
  15742. }
  15743. #u42021_text {
  15744. border-width:0px;
  15745. word-wrap:break-word;
  15746. text-transform:none;
  15747. visibility:hidden;
  15748. }
  15749. #u42022 {
  15750. border-width:0px;
  15751. position:absolute;
  15752. left:0px;
  15753. top:0px;
  15754. width:0px;
  15755. height:0px;
  15756. }
  15757. #u42023_div {
  15758. border-width:0px;
  15759. position:absolute;
  15760. left:0px;
  15761. top:0px;
  15762. width:375px;
  15763. height:41px;
  15764. background:inherit;
  15765. background-color:rgba(255, 255, 255, 1);
  15766. border:none;
  15767. border-left:0px;
  15768. border-top:0px;
  15769. border-right:0px;
  15770. border-radius:0px;
  15771. border-bottom-right-radius:0px;
  15772. border-bottom-left-radius:0px;
  15773. -moz-box-shadow:none;
  15774. -webkit-box-shadow:none;
  15775. box-shadow:none;
  15776. }
  15777. #u42023 {
  15778. border-width:0px;
  15779. position:absolute;
  15780. left:2814px;
  15781. top:338px;
  15782. width:375px;
  15783. height:41px;
  15784. display:flex;
  15785. }
  15786. #u42023 .text {
  15787. position:absolute;
  15788. align-self:center;
  15789. padding:2px 2px 2px 2px;
  15790. box-sizing:border-box;
  15791. width:100%;
  15792. }
  15793. #u42023_text {
  15794. border-width:0px;
  15795. word-wrap:break-word;
  15796. text-transform:none;
  15797. visibility:hidden;
  15798. }
  15799. #u42024_div {
  15800. border-width:0px;
  15801. position:absolute;
  15802. left:0px;
  15803. top:0px;
  15804. width:57px;
  15805. height:25px;
  15806. background:inherit;
  15807. background-color:rgba(255, 255, 255, 0);
  15808. border:none;
  15809. border-left:0px;
  15810. border-top:0px;
  15811. border-right:0px;
  15812. border-radius:0px;
  15813. border-bottom-right-radius:0px;
  15814. border-bottom-left-radius:0px;
  15815. -moz-box-shadow:none;
  15816. -webkit-box-shadow:none;
  15817. box-shadow:none;
  15818. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  15819. font-weight:500;
  15820. font-style:normal;
  15821. font-size:14px;
  15822. line-height:25px;
  15823. }
  15824. #u42024 {
  15825. border-width:0px;
  15826. position:absolute;
  15827. left:2825px;
  15828. top:348px;
  15829. width:57px;
  15830. height:25px;
  15831. display:flex;
  15832. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  15833. font-weight:500;
  15834. font-style:normal;
  15835. font-size:14px;
  15836. line-height:25px;
  15837. }
  15838. #u42024 .text {
  15839. position:absolute;
  15840. align-self:flex-start;
  15841. padding:0px 0px 0px 0px;
  15842. box-sizing:border-box;
  15843. width:100%;
  15844. }
  15845. #u42024_text {
  15846. border-width:0px;
  15847. white-space:nowrap;
  15848. text-transform:none;
  15849. }
  15850. #u42025_img {
  15851. border-width:0px;
  15852. position:absolute;
  15853. left:0px;
  15854. top:0px;
  15855. width:10px;
  15856. height:9px;
  15857. }
  15858. #u42025 {
  15859. border-width:0px;
  15860. position:absolute;
  15861. left:3161px;
  15862. top:356px;
  15863. width:10px;
  15864. height:9px;
  15865. display:flex;
  15866. -webkit-transform:rotate(90deg);
  15867. -moz-transform:rotate(90deg);
  15868. -ms-transform:rotate(90deg);
  15869. transform:rotate(90deg);
  15870. }
  15871. #u42025 .text {
  15872. position:absolute;
  15873. align-self:center;
  15874. padding:2px 2px 2px 2px;
  15875. box-sizing:border-box;
  15876. width:100%;
  15877. }
  15878. #u42025_text {
  15879. border-width:0px;
  15880. word-wrap:break-word;
  15881. text-transform:none;
  15882. visibility:hidden;
  15883. }