styles.css 289 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116151171511815119151201512115122151231512415125151261512715128151291513015131151321513315134151351513615137151381513915140151411514215143151441514515146151471514815149151501515115152151531515415155151561515715158151591516015161151621516315164151651516615167151681516915170151711517215173151741517515176151771517815179151801518115182151831518415185151861518715188151891519015191151921519315194151951519615197151981519915200152011520215203152041520515206152071520815209152101521115212152131521415215152161521715218152191522015221152221522315224152251522615227152281522915230152311523215233152341523515236152371523815239152401524115242152431524415245152461524715248152491525015251152521525315254152551525615257152581525915260152611526215263152641526515266152671526815269152701527115272152731527415275152761527715278152791528015281152821528315284152851528615287152881528915290152911529215293152941529515296152971529815299153001530115302153031530415305153061530715308153091531015311153121531315314153151531615317153181531915320153211532215323153241532515326153271532815329153301533115332153331533415335153361533715338153391534015341153421534315344153451534615347153481534915350153511535215353153541535515356153571535815359153601536115362153631536415365153661536715368153691537015371153721537315374153751537615377153781537915380153811538215383153841538515386153871538815389153901539115392153931539415395153961539715398153991540015401154021540315404154051540615407154081540915410154111541215413154141541515416154171541815419154201542115422154231542415425154261542715428154291543015431154321543315434154351543615437154381543915440154411544215443154441544515446154471544815449154501545115452154531545415455154561545715458154591546015461154621546315464154651546615467154681546915470154711547215473154741547515476154771547815479154801548115482154831548415485154861548715488154891549015491154921549315494154951549615497154981549915500155011550215503155041550515506155071550815509155101551115512155131551415515155161551715518155191552015521155221552315524155251552615527155281552915530155311553215533155341553515536155371553815539155401554115542155431554415545155461554715548155491555015551155521555315554155551555615557155581555915560155611556215563155641556515566155671556815569155701557115572155731557415575155761557715578155791558015581155821558315584155851558615587155881558915590155911559215593155941559515596155971559815599156001560115602156031560415605156061560715608156091561015611156121561315614156151561615617156181561915620156211562215623156241562515626156271562815629156301563115632156331563415635156361563715638156391564015641156421564315644156451564615647156481564915650156511565215653156541565515656156571565815659156601566115662156631566415665156661566715668156691567015671156721567315674156751567615677156781567915680156811568215683156841568515686156871568815689156901569115692156931569415695156961569715698156991570015701157021570315704157051570615707157081570915710157111571215713157141571515716157171571815719157201572115722157231572415725157261572715728157291573015731157321573315734157351573615737157381573915740157411574215743157441574515746157471574815749157501575115752157531575415755157561575715758157591576015761157621576315764157651576615767157681576915770157711577215773157741577515776157771577815779157801578115782157831578415785157861578715788157891579015791157921579315794157951579615797157981579915800158011580215803158041580515806158071580815809158101581115812158131581415815158161581715818158191582015821158221582315824158251582615827158281582915830158311583215833158341583515836158371583815839158401584115842158431584415845158461584715848158491585015851158521585315854158551585615857158581585915860158611586215863158641586515866158671586815869158701587115872158731587415875158761587715878158791588015881158821588315884158851588615887158881588915890158911589215893158941589515896158971589815899159001590115902159031590415905159061590715908159091591015911159121591315914159151591615917159181591915920159211592215923159241592515926159271592815929159301593115932159331593415935159361593715938159391594015941159421594315944159451594615947159481594915950159511595215953159541595515956159571595815959159601596115962159631596415965159661596715968159691597015971159721597315974159751597615977159781597915980159811598215983159841598515986159871598815989159901599115992159931599415995159961599715998159991600016001160021600316004160051600616007160081600916010160111601216013160141601516016160171601816019160201602116022160231602416025160261602716028160291603016031160321603316034160351603616037160381603916040160411604216043160441604516046160471604816049160501605116052160531605416055160561605716058160591606016061160621606316064160651606616067160681606916070160711607216073160741607516076160771607816079160801608116082160831608416085160861608716088160891609016091160921609316094160951609616097160981609916100161011610216103161041610516106161071610816109161101611116112161131611416115161161611716118161191612016121161221612316124161251612616127161281612916130161311613216133161341613516136161371613816139161401614116142161431614416145161461614716148161491615016151161521615316154161551615616157161581615916160161611616216163161641616516166161671616816169161701617116172161731617416175161761617716178161791618016181161821618316184161851618616187161881618916190161911619216193161941619516196161971619816199162001620116202162031620416205162061620716208162091621016211162121621316214162151621616217162181621916220162211622216223162241622516226162271622816229162301623116232162331623416235162361623716238162391624016241162421624316244162451624616247162481624916250162511625216253162541625516256162571625816259162601626116262162631626416265162661626716268162691627016271162721627316274162751627616277162781627916280162811628216283162841628516286162871628816289162901629116292162931629416295162961629716298162991630016301163021630316304163051630616307163081630916310163111631216313163141631516316163171631816319163201632116322163231632416325163261632716328163291633016331163321633316334163351633616337163381633916340163411634216343163441634516346163471634816349163501635116352163531635416355163561635716358163591636016361163621636316364163651636616367163681636916370163711637216373163741637516376163771637816379163801638116382163831638416385163861638716388163891639016391163921639316394163951639616397163981639916400164011640216403164041640516406164071640816409164101641116412164131641416415164161641716418164191642016421164221642316424164251642616427164281642916430164311643216433164341643516436164371643816439164401644116442164431644416445164461644716448164491645016451164521645316454164551645616457164581645916460164611646216463164641646516466164671646816469164701647116472164731647416475164761647716478164791648016481164821648316484164851648616487164881648916490164911649216493164941649516496164971649816499165001650116502165031650416505165061650716508165091651016511165121651316514165151651616517165181651916520165211652216523165241652516526165271652816529165301653116532165331653416535165361653716538165391654016541165421654316544165451654616547165481654916550165511655216553165541655516556165571655816559165601656116562165631656416565165661656716568165691657016571165721657316574165751657616577165781657916580165811658216583165841658516586165871658816589165901659116592165931659416595165961659716598165991660016601166021660316604166051660616607166081660916610166111661216613166141661516616166171661816619166201662116622166231662416625166261662716628166291663016631166321663316634166351663616637166381663916640166411664216643166441664516646
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:4860px;
  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. #u1_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u1 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u1 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u1_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u2_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u2 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u2 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u2_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u3_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u3 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u3 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u3_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u4 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u5_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u5 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u5 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u5_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u6_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u6 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u6 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u6_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u7_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u7 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u7 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u7_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u8 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u9_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u9 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u9 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u9_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u10_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u10 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u10 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u10_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u11 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u12_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u12 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u12 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u12_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u13_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u13 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u13 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u13_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u14 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u15_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u15 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u15 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u15_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u16_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u16 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u16 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u16_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u17 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u18_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u18 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u18 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u18_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u19_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u19 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u19 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u19_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u20 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u21_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u21 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u21 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u21_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u22_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u22 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u22 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u22_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u23 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u24_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u24 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u24 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u24_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u25_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u25 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u25 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u25_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u26 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u27_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u27 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u27 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u27_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u28_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u28 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u28 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u28_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u29 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u30_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u30 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u30 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u30_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u31_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u31 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u31 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u31_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u32 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u33_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u33 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u33 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u33_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u34_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u34 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u34 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u34_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u35 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u36_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u36 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u36 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u36_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u37_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u37 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u37 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u37_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u38 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u39_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u39 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u39 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u39_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u40_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u40 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u40 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u40_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u41 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u42_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u42_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u42_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u42 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u42 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u42_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u42.disabled {
  1276. }
  1277. .u42_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u43_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u43 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u43 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u43_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u44_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u44 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u44 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u44_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u45_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u45 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u45 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u45_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u46 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u47_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u47 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u47 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u47_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u48_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u48 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u48 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u48_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u49_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u49 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u49 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u49_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u50_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u50 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u50 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u50_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u51_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u51 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u51 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u51_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u52 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u53_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u53 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u53 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u53_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u54_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u54 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u54 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u54_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u55_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1479px;
  1648. height:1189px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1654. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1655. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1656. }
  1657. #u55 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:121px;
  1661. top:51px;
  1662. width:1479px;
  1663. height:1189px;
  1664. display:flex;
  1665. }
  1666. #u55 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u55_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u56_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:73px;
  1685. height:25px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 0);
  1688. border:none;
  1689. border-radius:0px;
  1690. -moz-box-shadow:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1694. font-weight:500;
  1695. font-style:normal;
  1696. font-size:18px;
  1697. }
  1698. #u56 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:153px;
  1702. top:71px;
  1703. width:73px;
  1704. height:25px;
  1705. display:flex;
  1706. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1707. font-weight:500;
  1708. font-style:normal;
  1709. font-size:18px;
  1710. }
  1711. #u56 .text {
  1712. position:absolute;
  1713. align-self:flex-start;
  1714. padding:0px 0px 0px 0px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u56_text {
  1719. border-width:0px;
  1720. white-space:nowrap;
  1721. text-transform:none;
  1722. }
  1723. #u57 {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:0px;
  1729. height:0px;
  1730. }
  1731. #u58_div {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:353px;
  1737. height:120px;
  1738. background:inherit;
  1739. background-color:rgba(255, 255, 255, 1);
  1740. border:none;
  1741. border-radius:4px;
  1742. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1743. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1744. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1745. }
  1746. #u58 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:153px;
  1750. top:106px;
  1751. width:353px;
  1752. height:120px;
  1753. display:flex;
  1754. }
  1755. #u58 .text {
  1756. position:absolute;
  1757. align-self:center;
  1758. padding:2px 2px 2px 2px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u58_text {
  1763. border-width:0px;
  1764. word-wrap:break-word;
  1765. text-transform:none;
  1766. visibility:hidden;
  1767. }
  1768. #u59_div {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:109px;
  1774. height:25px;
  1775. background:inherit;
  1776. background-color:rgba(255, 255, 255, 0);
  1777. border:none;
  1778. border-radius:0px;
  1779. -moz-box-shadow:none;
  1780. -webkit-box-shadow:none;
  1781. box-shadow:none;
  1782. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1783. font-weight:500;
  1784. font-style:normal;
  1785. font-size:18px;
  1786. }
  1787. #u59 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:177px;
  1791. top:117px;
  1792. width:109px;
  1793. height:25px;
  1794. display:flex;
  1795. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1796. font-weight:500;
  1797. font-style:normal;
  1798. font-size:18px;
  1799. }
  1800. #u59 .text {
  1801. position:absolute;
  1802. align-self:flex-start;
  1803. padding:0px 0px 0px 0px;
  1804. box-sizing:border-box;
  1805. width:100%;
  1806. }
  1807. #u59_text {
  1808. border-width:0px;
  1809. white-space:nowrap;
  1810. text-transform:none;
  1811. }
  1812. #u60_div {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:43px;
  1818. height:40px;
  1819. background:inherit;
  1820. background-color:rgba(255, 255, 255, 0);
  1821. border:none;
  1822. border-radius:0px;
  1823. -moz-box-shadow:none;
  1824. -webkit-box-shadow:none;
  1825. box-shadow:none;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. line-height:20px;
  1830. }
  1831. #u60 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:177px;
  1835. top:162px;
  1836. width:43px;
  1837. height:40px;
  1838. display:flex;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. line-height:20px;
  1843. }
  1844. #u60 .text {
  1845. position:absolute;
  1846. align-self:flex-start;
  1847. padding:0px 0px 0px 0px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u60_text {
  1852. border-width:0px;
  1853. white-space:nowrap;
  1854. text-transform:none;
  1855. }
  1856. #u61_div {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:73px;
  1862. height:25px;
  1863. background:inherit;
  1864. background-color:rgba(255, 255, 255, 0);
  1865. border:none;
  1866. border-radius:0px;
  1867. -moz-box-shadow:none;
  1868. -webkit-box-shadow:none;
  1869. box-shadow:none;
  1870. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1871. font-weight:500;
  1872. font-style:normal;
  1873. font-size:18px;
  1874. }
  1875. #u61 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:153px;
  1879. top:260px;
  1880. width:73px;
  1881. height:25px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1884. font-weight:500;
  1885. font-style:normal;
  1886. font-size:18px;
  1887. }
  1888. #u61 .text {
  1889. position:absolute;
  1890. align-self:flex-start;
  1891. padding:0px 0px 0px 0px;
  1892. box-sizing:border-box;
  1893. width:100%;
  1894. }
  1895. #u61_text {
  1896. border-width:0px;
  1897. white-space:nowrap;
  1898. text-transform:none;
  1899. }
  1900. #u62 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:0px;
  1906. height:0px;
  1907. }
  1908. #u63_div {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:0px;
  1912. top:0px;
  1913. width:353px;
  1914. height:120px;
  1915. background:inherit;
  1916. background-color:rgba(255, 255, 255, 1);
  1917. border:none;
  1918. border-radius:4px;
  1919. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1920. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1921. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1922. }
  1923. #u63 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:526px;
  1927. top:106px;
  1928. width:353px;
  1929. height:120px;
  1930. display:flex;
  1931. }
  1932. #u63 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:2px 2px 2px 2px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u63_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. visibility:hidden;
  1944. }
  1945. #u64_div {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:109px;
  1951. height:25px;
  1952. background:inherit;
  1953. background-color:rgba(255, 255, 255, 0);
  1954. border:none;
  1955. border-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1960. font-weight:500;
  1961. font-style:normal;
  1962. font-size:18px;
  1963. }
  1964. #u64 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:550px;
  1968. top:117px;
  1969. width:109px;
  1970. height:25px;
  1971. display:flex;
  1972. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1973. font-weight:500;
  1974. font-style:normal;
  1975. font-size:18px;
  1976. }
  1977. #u64 .text {
  1978. position:absolute;
  1979. align-self:flex-start;
  1980. padding:0px 0px 0px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u64_text {
  1985. border-width:0px;
  1986. white-space:nowrap;
  1987. text-transform:none;
  1988. }
  1989. #u65_div {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:43px;
  1995. height:40px;
  1996. background:inherit;
  1997. background-color:rgba(255, 255, 255, 0);
  1998. border:none;
  1999. border-radius:0px;
  2000. -moz-box-shadow:none;
  2001. -webkit-box-shadow:none;
  2002. box-shadow:none;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. line-height:20px;
  2007. }
  2008. #u65 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:550px;
  2012. top:162px;
  2013. width:43px;
  2014. height:40px;
  2015. display:flex;
  2016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. line-height:20px;
  2020. }
  2021. #u65 .text {
  2022. position:absolute;
  2023. align-self:flex-start;
  2024. padding:0px 0px 0px 0px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u65_text {
  2029. border-width:0px;
  2030. white-space:nowrap;
  2031. text-transform:none;
  2032. }
  2033. #u66_div {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:519px;
  2039. height:20px;
  2040. background:inherit;
  2041. background-color:rgba(255, 255, 255, 0);
  2042. border:none;
  2043. border-radius:0px;
  2044. -moz-box-shadow:none;
  2045. -webkit-box-shadow:none;
  2046. box-shadow:none;
  2047. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2048. font-weight:500;
  2049. font-style:normal;
  2050. }
  2051. #u66 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:153px;
  2055. top:306px;
  2056. width:519px;
  2057. height:20px;
  2058. display:flex;
  2059. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2060. font-weight:500;
  2061. font-style:normal;
  2062. }
  2063. #u66 .text {
  2064. position:absolute;
  2065. align-self:flex-start;
  2066. padding:0px 0px 0px 0px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u66_text {
  2071. border-width:0px;
  2072. white-space:nowrap;
  2073. text-transform:none;
  2074. }
  2075. #u67 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:0px;
  2081. height:0px;
  2082. }
  2083. #u68_div {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:240px;
  2089. height:80px;
  2090. background:inherit;
  2091. background-color:rgba(242, 242, 242, 1);
  2092. border:none;
  2093. border-radius:0px;
  2094. -moz-box-shadow:none;
  2095. -webkit-box-shadow:none;
  2096. box-shadow:none;
  2097. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2098. font-weight:700;
  2099. font-style:normal;
  2100. }
  2101. #u68 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:153px;
  2105. top:336px;
  2106. width:240px;
  2107. height:80px;
  2108. display:flex;
  2109. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2110. font-weight:700;
  2111. font-style:normal;
  2112. }
  2113. #u68 .text {
  2114. position:absolute;
  2115. align-self:center;
  2116. padding:2px 2px 2px 2px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u68_text {
  2121. border-width:0px;
  2122. word-wrap:break-word;
  2123. text-transform:none;
  2124. visibility:hidden;
  2125. }
  2126. #u69_img {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:50px;
  2132. height:53px;
  2133. }
  2134. #u69 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:169px;
  2138. top:349px;
  2139. width:50px;
  2140. height:53px;
  2141. display:flex;
  2142. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2143. font-weight:700;
  2144. font-style:normal;
  2145. }
  2146. #u69 .text {
  2147. position:absolute;
  2148. align-self:center;
  2149. padding:2px 2px 2px 2px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u69_text {
  2154. border-width:0px;
  2155. word-wrap:break-word;
  2156. text-transform:none;
  2157. visibility:hidden;
  2158. }
  2159. #u70 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:0px;
  2165. height:0px;
  2166. }
  2167. #u71_div {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:73px;
  2173. height:25px;
  2174. background:inherit;
  2175. background-color:rgba(255, 255, 255, 0);
  2176. border:none;
  2177. border-left:0px;
  2178. border-top:0px;
  2179. border-right:0px;
  2180. border-radius:0px;
  2181. border-bottom-right-radius:0px;
  2182. border-bottom-left-radius:0px;
  2183. -moz-box-shadow:none;
  2184. -webkit-box-shadow:none;
  2185. box-shadow:none;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:18px;
  2190. }
  2191. #u71 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:234px;
  2195. top:352px;
  2196. width:73px;
  2197. height:25px;
  2198. display:flex;
  2199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2200. font-weight:400;
  2201. font-style:normal;
  2202. font-size:18px;
  2203. }
  2204. #u71 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:0px 0px 0px 0px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u71_text {
  2212. border-width:0px;
  2213. white-space:nowrap;
  2214. text-transform:none;
  2215. }
  2216. #u72_div {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:181px;
  2222. height:17px;
  2223. background:inherit;
  2224. background-color:rgba(255, 255, 255, 0);
  2225. border:none;
  2226. border-left:0px;
  2227. border-top:0px;
  2228. border-right:0px;
  2229. border-radius:0px;
  2230. border-bottom-right-radius:0px;
  2231. border-bottom-left-radius:0px;
  2232. -moz-box-shadow:none;
  2233. -webkit-box-shadow:none;
  2234. box-shadow:none;
  2235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2236. font-weight:400;
  2237. font-style:normal;
  2238. font-size:12px;
  2239. color:#7F7F7F;
  2240. }
  2241. #u72 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:234px;
  2245. top:382px;
  2246. width:181px;
  2247. height:17px;
  2248. display:flex;
  2249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2250. font-weight:400;
  2251. font-style:normal;
  2252. font-size:12px;
  2253. color:#7F7F7F;
  2254. }
  2255. #u72 .text {
  2256. position:absolute;
  2257. align-self:center;
  2258. padding:0px 0px 0px 0px;
  2259. box-sizing:border-box;
  2260. width:100%;
  2261. }
  2262. #u72_text {
  2263. border-width:0px;
  2264. white-space:nowrap;
  2265. text-transform:none;
  2266. }
  2267. #u73 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:0px;
  2273. height:0px;
  2274. }
  2275. #u74_div {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:240px;
  2281. height:80px;
  2282. background:inherit;
  2283. background-color:rgba(242, 242, 242, 1);
  2284. border:none;
  2285. border-radius:0px;
  2286. -moz-box-shadow:none;
  2287. -webkit-box-shadow:none;
  2288. box-shadow:none;
  2289. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2290. font-weight:700;
  2291. font-style:normal;
  2292. }
  2293. #u74 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:423px;
  2297. top:336px;
  2298. width:240px;
  2299. height:80px;
  2300. display:flex;
  2301. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2302. font-weight:700;
  2303. font-style:normal;
  2304. }
  2305. #u74 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 2px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u74_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. visibility:hidden;
  2317. }
  2318. #u75_img {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:50px;
  2324. height:53px;
  2325. }
  2326. #u75 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:439px;
  2330. top:349px;
  2331. width:50px;
  2332. height:53px;
  2333. display:flex;
  2334. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2335. font-weight:700;
  2336. font-style:normal;
  2337. }
  2338. #u75 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:2px 2px 2px 2px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u75_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. visibility:hidden;
  2350. }
  2351. #u76 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:0px;
  2357. height:0px;
  2358. }
  2359. #u77_div {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:73px;
  2365. height:25px;
  2366. background:inherit;
  2367. background-color:rgba(255, 255, 255, 0);
  2368. border:none;
  2369. border-left:0px;
  2370. border-top:0px;
  2371. border-right:0px;
  2372. border-radius:0px;
  2373. border-bottom-right-radius:0px;
  2374. border-bottom-left-radius:0px;
  2375. -moz-box-shadow:none;
  2376. -webkit-box-shadow:none;
  2377. box-shadow:none;
  2378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:18px;
  2382. }
  2383. #u77 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:504px;
  2387. top:352px;
  2388. width:73px;
  2389. height:25px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:18px;
  2395. }
  2396. #u77 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:0px 0px 0px 0px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u77_text {
  2404. border-width:0px;
  2405. white-space:nowrap;
  2406. text-transform:none;
  2407. }
  2408. #u78_div {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:193px;
  2414. height:17px;
  2415. background:inherit;
  2416. background-color:rgba(255, 255, 255, 0);
  2417. border:none;
  2418. border-left:0px;
  2419. border-top:0px;
  2420. border-right:0px;
  2421. border-radius:0px;
  2422. border-bottom-right-radius:0px;
  2423. border-bottom-left-radius:0px;
  2424. -moz-box-shadow:none;
  2425. -webkit-box-shadow:none;
  2426. box-shadow:none;
  2427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2428. font-weight:400;
  2429. font-style:normal;
  2430. font-size:12px;
  2431. color:#7F7F7F;
  2432. }
  2433. #u78 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:504px;
  2437. top:382px;
  2438. width:193px;
  2439. height:17px;
  2440. display:flex;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:12px;
  2445. color:#7F7F7F;
  2446. }
  2447. #u78 .text {
  2448. position:absolute;
  2449. align-self:center;
  2450. padding:0px 0px 0px 0px;
  2451. box-sizing:border-box;
  2452. width:100%;
  2453. }
  2454. #u78_text {
  2455. border-width:0px;
  2456. white-space:nowrap;
  2457. text-transform:none;
  2458. }
  2459. #u79 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:0px;
  2465. height:0px;
  2466. }
  2467. #u80_div {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:240px;
  2473. height:80px;
  2474. background:inherit;
  2475. background-color:rgba(242, 242, 242, 1);
  2476. border:none;
  2477. border-radius:0px;
  2478. -moz-box-shadow:none;
  2479. -webkit-box-shadow:none;
  2480. box-shadow:none;
  2481. }
  2482. #u80 {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:157px;
  2486. top:1132px;
  2487. width:240px;
  2488. height:80px;
  2489. display:flex;
  2490. }
  2491. #u80 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:2px 2px 2px 2px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u80_text {
  2499. border-width:0px;
  2500. word-wrap:break-word;
  2501. text-transform:none;
  2502. visibility:hidden;
  2503. }
  2504. #u81_img {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:50px;
  2510. height:53px;
  2511. }
  2512. #u81 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:173px;
  2516. top:1145px;
  2517. width:50px;
  2518. height:53px;
  2519. display:flex;
  2520. }
  2521. #u81 .text {
  2522. position:absolute;
  2523. align-self:center;
  2524. padding:2px 2px 2px 2px;
  2525. box-sizing:border-box;
  2526. width:100%;
  2527. }
  2528. #u81_text {
  2529. border-width:0px;
  2530. word-wrap:break-word;
  2531. text-transform:none;
  2532. visibility:hidden;
  2533. }
  2534. #u82 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:0px;
  2540. height:0px;
  2541. }
  2542. #u83_div {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:73px;
  2548. height:25px;
  2549. background:inherit;
  2550. background-color:rgba(255, 255, 255, 0);
  2551. border:none;
  2552. border-left:0px;
  2553. border-top:0px;
  2554. border-right:0px;
  2555. border-radius:0px;
  2556. border-bottom-right-radius:0px;
  2557. border-bottom-left-radius:0px;
  2558. -moz-box-shadow:none;
  2559. -webkit-box-shadow:none;
  2560. box-shadow:none;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:18px;
  2565. }
  2566. #u83 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:238px;
  2570. top:1148px;
  2571. width:73px;
  2572. height:25px;
  2573. display:flex;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:18px;
  2578. }
  2579. #u83 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:0px 0px 0px 0px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u83_text {
  2587. border-width:0px;
  2588. white-space:nowrap;
  2589. text-transform:none;
  2590. }
  2591. #u84_div {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:169px;
  2597. height:17px;
  2598. background:inherit;
  2599. background-color:rgba(255, 255, 255, 0);
  2600. border:none;
  2601. border-left:0px;
  2602. border-top:0px;
  2603. border-right:0px;
  2604. border-radius:0px;
  2605. border-bottom-right-radius:0px;
  2606. border-bottom-left-radius:0px;
  2607. -moz-box-shadow:none;
  2608. -webkit-box-shadow:none;
  2609. box-shadow:none;
  2610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2611. font-weight:400;
  2612. font-style:normal;
  2613. font-size:12px;
  2614. color:#7F7F7F;
  2615. }
  2616. #u84 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:238px;
  2620. top:1178px;
  2621. width:169px;
  2622. height:17px;
  2623. display:flex;
  2624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:12px;
  2628. color:#7F7F7F;
  2629. }
  2630. #u84 .text {
  2631. position:absolute;
  2632. align-self:center;
  2633. padding:0px 0px 0px 0px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u84_text {
  2638. border-width:0px;
  2639. white-space:nowrap;
  2640. text-transform:none;
  2641. }
  2642. #u85 {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:0px;
  2648. height:0px;
  2649. }
  2650. #u86_div {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:240px;
  2656. height:80px;
  2657. background:inherit;
  2658. background-color:rgba(242, 242, 242, 1);
  2659. border:none;
  2660. border-radius:0px;
  2661. -moz-box-shadow:none;
  2662. -webkit-box-shadow:none;
  2663. box-shadow:none;
  2664. }
  2665. #u86 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:694px;
  2669. top:336px;
  2670. width:240px;
  2671. height:80px;
  2672. display:flex;
  2673. }
  2674. #u86 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 2px 2px 2px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u86_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. visibility:hidden;
  2686. }
  2687. #u87_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:50px;
  2693. height:53px;
  2694. }
  2695. #u87 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:710px;
  2699. top:349px;
  2700. width:50px;
  2701. height:53px;
  2702. display:flex;
  2703. }
  2704. #u87 .text {
  2705. position:absolute;
  2706. align-self:center;
  2707. padding:2px 2px 2px 2px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u87_text {
  2712. border-width:0px;
  2713. word-wrap:break-word;
  2714. text-transform:none;
  2715. visibility:hidden;
  2716. }
  2717. #u88 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:0px;
  2723. height:0px;
  2724. }
  2725. #u89_div {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:73px;
  2731. height:25px;
  2732. background:inherit;
  2733. background-color:rgba(255, 255, 255, 0);
  2734. border:none;
  2735. border-left:0px;
  2736. border-top:0px;
  2737. border-right:0px;
  2738. border-radius:0px;
  2739. border-bottom-right-radius:0px;
  2740. border-bottom-left-radius:0px;
  2741. -moz-box-shadow:none;
  2742. -webkit-box-shadow:none;
  2743. box-shadow:none;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:18px;
  2748. }
  2749. #u89 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:775px;
  2753. top:352px;
  2754. width:73px;
  2755. height:25px;
  2756. display:flex;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:18px;
  2761. }
  2762. #u89 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:0px 0px 0px 0px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u89_text {
  2770. border-width:0px;
  2771. white-space:nowrap;
  2772. text-transform:none;
  2773. }
  2774. #u90_div {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:121px;
  2780. height:17px;
  2781. background:inherit;
  2782. background-color:rgba(255, 255, 255, 0);
  2783. border:none;
  2784. border-left:0px;
  2785. border-top:0px;
  2786. border-right:0px;
  2787. border-radius:0px;
  2788. border-bottom-right-radius:0px;
  2789. border-bottom-left-radius:0px;
  2790. -moz-box-shadow:none;
  2791. -webkit-box-shadow:none;
  2792. box-shadow:none;
  2793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2794. font-weight:400;
  2795. font-style:normal;
  2796. font-size:12px;
  2797. color:#7F7F7F;
  2798. }
  2799. #u90 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:775px;
  2803. top:382px;
  2804. width:121px;
  2805. height:17px;
  2806. display:flex;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. color:#7F7F7F;
  2812. }
  2813. #u90 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:0px 0px 0px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u90_text {
  2821. border-width:0px;
  2822. white-space:nowrap;
  2823. text-transform:none;
  2824. }
  2825. #u91 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:0px;
  2831. height:0px;
  2832. }
  2833. #u92_div {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:240px;
  2839. height:80px;
  2840. background:inherit;
  2841. background-color:rgba(242, 242, 242, 1);
  2842. border:none;
  2843. border-radius:0px;
  2844. -moz-box-shadow:none;
  2845. -webkit-box-shadow:none;
  2846. box-shadow:none;
  2847. }
  2848. #u92 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:964px;
  2852. top:336px;
  2853. width:240px;
  2854. height:80px;
  2855. display:flex;
  2856. }
  2857. #u92 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:2px 2px 2px 2px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u92_text {
  2865. border-width:0px;
  2866. word-wrap:break-word;
  2867. text-transform:none;
  2868. visibility:hidden;
  2869. }
  2870. #u93_img {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:50px;
  2876. height:53px;
  2877. }
  2878. #u93 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:980px;
  2882. top:349px;
  2883. width:50px;
  2884. height:53px;
  2885. display:flex;
  2886. }
  2887. #u93 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 2px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u93_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. visibility:hidden;
  2899. }
  2900. #u94 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:0px;
  2906. height:0px;
  2907. }
  2908. #u95_div {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:0px;
  2912. top:0px;
  2913. width:73px;
  2914. height:25px;
  2915. background:inherit;
  2916. background-color:rgba(255, 255, 255, 0);
  2917. border:none;
  2918. border-left:0px;
  2919. border-top:0px;
  2920. border-right:0px;
  2921. border-radius:0px;
  2922. border-bottom-right-radius:0px;
  2923. border-bottom-left-radius:0px;
  2924. -moz-box-shadow:none;
  2925. -webkit-box-shadow:none;
  2926. box-shadow:none;
  2927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2928. font-weight:400;
  2929. font-style:normal;
  2930. font-size:18px;
  2931. }
  2932. #u95 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:1045px;
  2936. top:352px;
  2937. width:73px;
  2938. height:25px;
  2939. display:flex;
  2940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:18px;
  2944. }
  2945. #u95 .text {
  2946. position:absolute;
  2947. align-self:center;
  2948. padding:0px 0px 0px 0px;
  2949. box-sizing:border-box;
  2950. width:100%;
  2951. }
  2952. #u95_text {
  2953. border-width:0px;
  2954. white-space:nowrap;
  2955. text-transform:none;
  2956. }
  2957. #u96_div {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:181px;
  2963. height:17px;
  2964. background:inherit;
  2965. background-color:rgba(255, 255, 255, 0);
  2966. border:none;
  2967. border-left:0px;
  2968. border-top:0px;
  2969. border-right:0px;
  2970. border-radius:0px;
  2971. border-bottom-right-radius:0px;
  2972. border-bottom-left-radius:0px;
  2973. -moz-box-shadow:none;
  2974. -webkit-box-shadow:none;
  2975. box-shadow:none;
  2976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2977. font-weight:400;
  2978. font-style:normal;
  2979. font-size:12px;
  2980. color:#7F7F7F;
  2981. }
  2982. #u96 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:1045px;
  2986. top:382px;
  2987. width:181px;
  2988. height:17px;
  2989. display:flex;
  2990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. color:#7F7F7F;
  2995. }
  2996. #u96 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:0px 0px 0px 0px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u96_text {
  3004. border-width:0px;
  3005. white-space:nowrap;
  3006. text-transform:none;
  3007. }
  3008. #u97 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:0px;
  3014. height:0px;
  3015. }
  3016. #u98_div {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:240px;
  3022. height:80px;
  3023. background:inherit;
  3024. background-color:rgba(242, 242, 242, 1);
  3025. border:none;
  3026. border-radius:0px;
  3027. -moz-box-shadow:none;
  3028. -webkit-box-shadow:none;
  3029. box-shadow:none;
  3030. }
  3031. #u98 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:1234px;
  3035. top:336px;
  3036. width:240px;
  3037. height:80px;
  3038. display:flex;
  3039. }
  3040. #u98 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 2px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u98_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. visibility:hidden;
  3052. }
  3053. #u99_img {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:50px;
  3059. height:53px;
  3060. }
  3061. #u99 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:1250px;
  3065. top:349px;
  3066. width:50px;
  3067. height:53px;
  3068. display:flex;
  3069. }
  3070. #u99 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 2px 2px 2px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u99_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. visibility:hidden;
  3082. }
  3083. #u100 {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:0px;
  3089. height:0px;
  3090. }
  3091. #u101_div {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:73px;
  3097. height:25px;
  3098. background:inherit;
  3099. background-color:rgba(255, 255, 255, 0);
  3100. border:none;
  3101. border-left:0px;
  3102. border-top:0px;
  3103. border-right:0px;
  3104. border-radius:0px;
  3105. border-bottom-right-radius:0px;
  3106. border-bottom-left-radius:0px;
  3107. -moz-box-shadow:none;
  3108. -webkit-box-shadow:none;
  3109. box-shadow:none;
  3110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3111. font-weight:400;
  3112. font-style:normal;
  3113. font-size:18px;
  3114. }
  3115. #u101 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:1315px;
  3119. top:352px;
  3120. width:73px;
  3121. height:25px;
  3122. display:flex;
  3123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:18px;
  3127. }
  3128. #u101 .text {
  3129. position:absolute;
  3130. align-self:center;
  3131. padding:0px 0px 0px 0px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u101_text {
  3136. border-width:0px;
  3137. white-space:nowrap;
  3138. text-transform:none;
  3139. }
  3140. #u102_div {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:205px;
  3146. height:17px;
  3147. background:inherit;
  3148. background-color:rgba(255, 255, 255, 0);
  3149. border:none;
  3150. border-left:0px;
  3151. border-top:0px;
  3152. border-right:0px;
  3153. border-radius:0px;
  3154. border-bottom-right-radius:0px;
  3155. border-bottom-left-radius:0px;
  3156. -moz-box-shadow:none;
  3157. -webkit-box-shadow:none;
  3158. box-shadow:none;
  3159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3160. font-weight:400;
  3161. font-style:normal;
  3162. font-size:12px;
  3163. color:#7F7F7F;
  3164. }
  3165. #u102 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:1315px;
  3169. top:382px;
  3170. width:205px;
  3171. height:17px;
  3172. display:flex;
  3173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3174. font-weight:400;
  3175. font-style:normal;
  3176. font-size:12px;
  3177. color:#7F7F7F;
  3178. }
  3179. #u102 .text {
  3180. position:absolute;
  3181. align-self:center;
  3182. padding:0px 0px 0px 0px;
  3183. box-sizing:border-box;
  3184. width:100%;
  3185. }
  3186. #u102_text {
  3187. border-width:0px;
  3188. white-space:nowrap;
  3189. text-transform:none;
  3190. }
  3191. #u103 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:0px;
  3197. height:0px;
  3198. }
  3199. #u104_div {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:240px;
  3205. height:80px;
  3206. background:inherit;
  3207. background-color:rgba(242, 242, 242, 1);
  3208. border:none;
  3209. border-radius:0px;
  3210. -moz-box-shadow:none;
  3211. -webkit-box-shadow:none;
  3212. box-shadow:none;
  3213. }
  3214. #u104 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:964px;
  3218. top:436px;
  3219. width:240px;
  3220. height:80px;
  3221. display:flex;
  3222. }
  3223. #u104 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:2px 2px 2px 2px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u104_text {
  3231. border-width:0px;
  3232. word-wrap:break-word;
  3233. text-transform:none;
  3234. visibility:hidden;
  3235. }
  3236. #u105_img {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:50px;
  3242. height:53px;
  3243. }
  3244. #u105 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:980px;
  3248. top:449px;
  3249. width:50px;
  3250. height:53px;
  3251. display:flex;
  3252. }
  3253. #u105 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 2px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u105_text {
  3261. border-width:0px;
  3262. word-wrap:break-word;
  3263. text-transform:none;
  3264. visibility:hidden;
  3265. }
  3266. #u106 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:0px;
  3272. height:0px;
  3273. }
  3274. #u107_div {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:73px;
  3280. height:25px;
  3281. background:inherit;
  3282. background-color:rgba(255, 255, 255, 0);
  3283. border:none;
  3284. border-left:0px;
  3285. border-top:0px;
  3286. border-right:0px;
  3287. border-radius:0px;
  3288. border-bottom-right-radius:0px;
  3289. border-bottom-left-radius:0px;
  3290. -moz-box-shadow:none;
  3291. -webkit-box-shadow:none;
  3292. box-shadow:none;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:18px;
  3297. }
  3298. #u107 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:1045px;
  3302. top:452px;
  3303. width:73px;
  3304. height:25px;
  3305. display:flex;
  3306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. font-size:18px;
  3310. }
  3311. #u107 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:0px 0px 0px 0px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u107_text {
  3319. border-width:0px;
  3320. white-space:nowrap;
  3321. text-transform:none;
  3322. }
  3323. #u108_div {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:169px;
  3329. height:17px;
  3330. background:inherit;
  3331. background-color:rgba(255, 255, 255, 0);
  3332. border:none;
  3333. border-left:0px;
  3334. border-top:0px;
  3335. border-right:0px;
  3336. border-radius:0px;
  3337. border-bottom-right-radius:0px;
  3338. border-bottom-left-radius:0px;
  3339. -moz-box-shadow:none;
  3340. -webkit-box-shadow:none;
  3341. box-shadow:none;
  3342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3343. font-weight:400;
  3344. font-style:normal;
  3345. font-size:12px;
  3346. color:#7F7F7F;
  3347. }
  3348. #u108 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:1045px;
  3352. top:482px;
  3353. width:169px;
  3354. height:17px;
  3355. display:flex;
  3356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3357. font-weight:400;
  3358. font-style:normal;
  3359. font-size:12px;
  3360. color:#7F7F7F;
  3361. }
  3362. #u108 .text {
  3363. position:absolute;
  3364. align-self:center;
  3365. padding:0px 0px 0px 0px;
  3366. box-sizing:border-box;
  3367. width:100%;
  3368. }
  3369. #u108_text {
  3370. border-width:0px;
  3371. white-space:nowrap;
  3372. text-transform:none;
  3373. }
  3374. #u109 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:0px;
  3380. height:0px;
  3381. }
  3382. #u110_div {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:240px;
  3388. height:80px;
  3389. background:inherit;
  3390. background-color:rgba(242, 242, 242, 1);
  3391. border:none;
  3392. border-radius:0px;
  3393. -moz-box-shadow:none;
  3394. -webkit-box-shadow:none;
  3395. box-shadow:none;
  3396. }
  3397. #u110 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:423px;
  3401. top:436px;
  3402. width:240px;
  3403. height:80px;
  3404. display:flex;
  3405. }
  3406. #u110 .text {
  3407. position:absolute;
  3408. align-self:center;
  3409. padding:2px 2px 2px 2px;
  3410. box-sizing:border-box;
  3411. width:100%;
  3412. }
  3413. #u110_text {
  3414. border-width:0px;
  3415. word-wrap:break-word;
  3416. text-transform:none;
  3417. visibility:hidden;
  3418. }
  3419. #u111_img {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:50px;
  3425. height:53px;
  3426. }
  3427. #u111 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:439px;
  3431. top:449px;
  3432. width:50px;
  3433. height:53px;
  3434. display:flex;
  3435. }
  3436. #u111 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 2px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u111_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u112 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:0px;
  3455. height:0px;
  3456. }
  3457. #u113_div {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:0px;
  3461. top:0px;
  3462. width:73px;
  3463. height:25px;
  3464. background:inherit;
  3465. background-color:rgba(255, 255, 255, 0);
  3466. border:none;
  3467. border-left:0px;
  3468. border-top:0px;
  3469. border-right:0px;
  3470. border-radius:0px;
  3471. border-bottom-right-radius:0px;
  3472. border-bottom-left-radius:0px;
  3473. -moz-box-shadow:none;
  3474. -webkit-box-shadow:none;
  3475. box-shadow:none;
  3476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:18px;
  3480. }
  3481. #u113 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:504px;
  3485. top:452px;
  3486. width:73px;
  3487. height:25px;
  3488. display:flex;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:18px;
  3493. }
  3494. #u113 .text {
  3495. position:absolute;
  3496. align-self:center;
  3497. padding:0px 0px 0px 0px;
  3498. box-sizing:border-box;
  3499. width:100%;
  3500. }
  3501. #u113_text {
  3502. border-width:0px;
  3503. white-space:nowrap;
  3504. text-transform:none;
  3505. }
  3506. #u114_div {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:181px;
  3512. height:17px;
  3513. background:inherit;
  3514. background-color:rgba(255, 255, 255, 0);
  3515. border:none;
  3516. border-left:0px;
  3517. border-top:0px;
  3518. border-right:0px;
  3519. border-radius:0px;
  3520. border-bottom-right-radius:0px;
  3521. border-bottom-left-radius:0px;
  3522. -moz-box-shadow:none;
  3523. -webkit-box-shadow:none;
  3524. box-shadow:none;
  3525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:12px;
  3529. color:#7F7F7F;
  3530. }
  3531. #u114 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:504px;
  3535. top:482px;
  3536. width:181px;
  3537. height:17px;
  3538. display:flex;
  3539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. color:#7F7F7F;
  3544. }
  3545. #u114 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:0px 0px 0px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u114_text {
  3553. border-width:0px;
  3554. white-space:nowrap;
  3555. text-transform:none;
  3556. }
  3557. #u115 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:0px;
  3563. height:0px;
  3564. }
  3565. #u116_div {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:240px;
  3571. height:80px;
  3572. background:inherit;
  3573. background-color:rgba(242, 242, 242, 1);
  3574. border:none;
  3575. border-radius:0px;
  3576. -moz-box-shadow:none;
  3577. -webkit-box-shadow:none;
  3578. box-shadow:none;
  3579. }
  3580. #u116 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:694px;
  3584. top:436px;
  3585. width:240px;
  3586. height:80px;
  3587. display:flex;
  3588. }
  3589. #u116 .text {
  3590. position:absolute;
  3591. align-self:center;
  3592. padding:2px 2px 2px 2px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u116_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. visibility:hidden;
  3601. }
  3602. #u117_img {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:50px;
  3608. height:53px;
  3609. }
  3610. #u117 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:710px;
  3614. top:449px;
  3615. width:50px;
  3616. height:53px;
  3617. display:flex;
  3618. }
  3619. #u117 .text {
  3620. position:absolute;
  3621. align-self:center;
  3622. padding:2px 2px 2px 2px;
  3623. box-sizing:border-box;
  3624. width:100%;
  3625. }
  3626. #u117_text {
  3627. border-width:0px;
  3628. word-wrap:break-word;
  3629. text-transform:none;
  3630. visibility:hidden;
  3631. }
  3632. #u118 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:0px;
  3638. height:0px;
  3639. }
  3640. #u119_div {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:73px;
  3646. height:25px;
  3647. background:inherit;
  3648. background-color:rgba(255, 255, 255, 0);
  3649. border:none;
  3650. border-left:0px;
  3651. border-top:0px;
  3652. border-right:0px;
  3653. border-radius:0px;
  3654. border-bottom-right-radius:0px;
  3655. border-bottom-left-radius:0px;
  3656. -moz-box-shadow:none;
  3657. -webkit-box-shadow:none;
  3658. box-shadow:none;
  3659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:18px;
  3663. }
  3664. #u119 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:775px;
  3668. top:452px;
  3669. width:73px;
  3670. height:25px;
  3671. display:flex;
  3672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. font-size:18px;
  3676. }
  3677. #u119 .text {
  3678. position:absolute;
  3679. align-self:center;
  3680. padding:0px 0px 0px 0px;
  3681. box-sizing:border-box;
  3682. width:100%;
  3683. }
  3684. #u119_text {
  3685. border-width:0px;
  3686. white-space:nowrap;
  3687. text-transform:none;
  3688. }
  3689. #u120_div {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:0px;
  3693. top:0px;
  3694. width:145px;
  3695. height:17px;
  3696. background:inherit;
  3697. background-color:rgba(255, 255, 255, 0);
  3698. border:none;
  3699. border-left:0px;
  3700. border-top:0px;
  3701. border-right:0px;
  3702. border-radius:0px;
  3703. border-bottom-right-radius:0px;
  3704. border-bottom-left-radius:0px;
  3705. -moz-box-shadow:none;
  3706. -webkit-box-shadow:none;
  3707. box-shadow:none;
  3708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3709. font-weight:400;
  3710. font-style:normal;
  3711. font-size:12px;
  3712. color:#7F7F7F;
  3713. }
  3714. #u120 {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:775px;
  3718. top:482px;
  3719. width:145px;
  3720. height:17px;
  3721. display:flex;
  3722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3723. font-weight:400;
  3724. font-style:normal;
  3725. font-size:12px;
  3726. color:#7F7F7F;
  3727. }
  3728. #u120 .text {
  3729. position:absolute;
  3730. align-self:center;
  3731. padding:0px 0px 0px 0px;
  3732. box-sizing:border-box;
  3733. width:100%;
  3734. }
  3735. #u120_text {
  3736. border-width:0px;
  3737. white-space:nowrap;
  3738. text-transform:none;
  3739. }
  3740. #u121 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:0px;
  3746. height:0px;
  3747. }
  3748. #u122_div {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:240px;
  3754. height:80px;
  3755. background:inherit;
  3756. background-color:rgba(242, 242, 242, 1);
  3757. border:none;
  3758. border-radius:0px;
  3759. -moz-box-shadow:none;
  3760. -webkit-box-shadow:none;
  3761. box-shadow:none;
  3762. }
  3763. #u122 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:694px;
  3767. top:636px;
  3768. width:240px;
  3769. height:80px;
  3770. display:flex;
  3771. }
  3772. #u122 .text {
  3773. position:absolute;
  3774. align-self:center;
  3775. padding:2px 2px 2px 2px;
  3776. box-sizing:border-box;
  3777. width:100%;
  3778. }
  3779. #u122_text {
  3780. border-width:0px;
  3781. word-wrap:break-word;
  3782. text-transform:none;
  3783. visibility:hidden;
  3784. }
  3785. #u123_img {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:50px;
  3791. height:53px;
  3792. }
  3793. #u123 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:710px;
  3797. top:649px;
  3798. width:50px;
  3799. height:53px;
  3800. display:flex;
  3801. }
  3802. #u123 .text {
  3803. position:absolute;
  3804. align-self:center;
  3805. padding:2px 2px 2px 2px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u123_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. visibility:hidden;
  3814. }
  3815. #u124 {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:0px;
  3821. height:0px;
  3822. }
  3823. #u125_div {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:0px;
  3827. top:0px;
  3828. width:73px;
  3829. height:25px;
  3830. background:inherit;
  3831. background-color:rgba(255, 255, 255, 0);
  3832. border:none;
  3833. border-left:0px;
  3834. border-top:0px;
  3835. border-right:0px;
  3836. border-radius:0px;
  3837. border-bottom-right-radius:0px;
  3838. border-bottom-left-radius:0px;
  3839. -moz-box-shadow:none;
  3840. -webkit-box-shadow:none;
  3841. box-shadow:none;
  3842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3843. font-weight:400;
  3844. font-style:normal;
  3845. font-size:18px;
  3846. }
  3847. #u125 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:775px;
  3851. top:652px;
  3852. width:73px;
  3853. height:25px;
  3854. display:flex;
  3855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. font-size:18px;
  3859. }
  3860. #u125 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:0px 0px 0px 0px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u125_text {
  3868. border-width:0px;
  3869. white-space:nowrap;
  3870. text-transform:none;
  3871. }
  3872. #u126_div {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:169px;
  3878. height:17px;
  3879. background:inherit;
  3880. background-color:rgba(255, 255, 255, 0);
  3881. border:none;
  3882. border-left:0px;
  3883. border-top:0px;
  3884. border-right:0px;
  3885. border-radius:0px;
  3886. border-bottom-right-radius:0px;
  3887. border-bottom-left-radius:0px;
  3888. -moz-box-shadow:none;
  3889. -webkit-box-shadow:none;
  3890. box-shadow:none;
  3891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3892. font-weight:400;
  3893. font-style:normal;
  3894. font-size:12px;
  3895. color:#7F7F7F;
  3896. }
  3897. #u126 {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:775px;
  3901. top:682px;
  3902. width:169px;
  3903. height:17px;
  3904. display:flex;
  3905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3906. font-weight:400;
  3907. font-style:normal;
  3908. font-size:12px;
  3909. color:#7F7F7F;
  3910. }
  3911. #u126 .text {
  3912. position:absolute;
  3913. align-self:center;
  3914. padding:0px 0px 0px 0px;
  3915. box-sizing:border-box;
  3916. width:100%;
  3917. }
  3918. #u126_text {
  3919. border-width:0px;
  3920. white-space:nowrap;
  3921. text-transform:none;
  3922. }
  3923. #u127 {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:0px;
  3929. height:0px;
  3930. }
  3931. #u128_div {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:240px;
  3937. height:80px;
  3938. background:inherit;
  3939. background-color:rgba(242, 242, 242, 1);
  3940. border:none;
  3941. border-radius:0px;
  3942. -moz-box-shadow:none;
  3943. -webkit-box-shadow:none;
  3944. box-shadow:none;
  3945. }
  3946. #u128 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:1235px;
  3950. top:636px;
  3951. width:240px;
  3952. height:80px;
  3953. display:flex;
  3954. }
  3955. #u128 .text {
  3956. position:absolute;
  3957. align-self:center;
  3958. padding:2px 2px 2px 2px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u128_text {
  3963. border-width:0px;
  3964. word-wrap:break-word;
  3965. text-transform:none;
  3966. visibility:hidden;
  3967. }
  3968. #u129_img {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:50px;
  3974. height:53px;
  3975. }
  3976. #u129 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:1251px;
  3980. top:649px;
  3981. width:50px;
  3982. height:53px;
  3983. display:flex;
  3984. }
  3985. #u129 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 2px 2px 2px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u129_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. visibility:hidden;
  3997. }
  3998. #u130 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:0px;
  4004. height:0px;
  4005. }
  4006. #u131_div {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:73px;
  4012. height:25px;
  4013. background:inherit;
  4014. background-color:rgba(255, 255, 255, 0);
  4015. border:none;
  4016. border-left:0px;
  4017. border-top:0px;
  4018. border-right:0px;
  4019. border-radius:0px;
  4020. border-bottom-right-radius:0px;
  4021. border-bottom-left-radius:0px;
  4022. -moz-box-shadow:none;
  4023. -webkit-box-shadow:none;
  4024. box-shadow:none;
  4025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. font-size:18px;
  4029. }
  4030. #u131 {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:1316px;
  4034. top:652px;
  4035. width:73px;
  4036. height:25px;
  4037. display:flex;
  4038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4039. font-weight:400;
  4040. font-style:normal;
  4041. font-size:18px;
  4042. }
  4043. #u131 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:0px 0px 0px 0px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u131_text {
  4051. border-width:0px;
  4052. white-space:nowrap;
  4053. text-transform:none;
  4054. }
  4055. #u132_div {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:157px;
  4061. height:17px;
  4062. background:inherit;
  4063. background-color:rgba(255, 255, 255, 0);
  4064. border:none;
  4065. border-left:0px;
  4066. border-top:0px;
  4067. border-right:0px;
  4068. border-radius:0px;
  4069. border-bottom-right-radius:0px;
  4070. border-bottom-left-radius:0px;
  4071. -moz-box-shadow:none;
  4072. -webkit-box-shadow:none;
  4073. box-shadow:none;
  4074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:12px;
  4078. color:#7F7F7F;
  4079. }
  4080. #u132 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:1316px;
  4084. top:682px;
  4085. width:157px;
  4086. height:17px;
  4087. display:flex;
  4088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4089. font-weight:400;
  4090. font-style:normal;
  4091. font-size:12px;
  4092. color:#7F7F7F;
  4093. }
  4094. #u132 .text {
  4095. position:absolute;
  4096. align-self:center;
  4097. padding:0px 0px 0px 0px;
  4098. box-sizing:border-box;
  4099. width:100%;
  4100. }
  4101. #u132_text {
  4102. border-width:0px;
  4103. white-space:nowrap;
  4104. text-transform:none;
  4105. }
  4106. #u133 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:0px;
  4112. height:0px;
  4113. }
  4114. #u134_div {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:240px;
  4120. height:80px;
  4121. background:inherit;
  4122. background-color:rgba(242, 242, 242, 1);
  4123. border:none;
  4124. border-radius:0px;
  4125. -moz-box-shadow:none;
  4126. -webkit-box-shadow:none;
  4127. box-shadow:none;
  4128. }
  4129. #u134 {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:964px;
  4133. top:636px;
  4134. width:240px;
  4135. height:80px;
  4136. display:flex;
  4137. }
  4138. #u134 .text {
  4139. position:absolute;
  4140. align-self:center;
  4141. padding:2px 2px 2px 2px;
  4142. box-sizing:border-box;
  4143. width:100%;
  4144. }
  4145. #u134_text {
  4146. border-width:0px;
  4147. word-wrap:break-word;
  4148. text-transform:none;
  4149. visibility:hidden;
  4150. }
  4151. #u135_img {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:0px;
  4156. width:50px;
  4157. height:53px;
  4158. }
  4159. #u135 {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:980px;
  4163. top:649px;
  4164. width:50px;
  4165. height:53px;
  4166. display:flex;
  4167. }
  4168. #u135 .text {
  4169. position:absolute;
  4170. align-self:center;
  4171. padding:2px 2px 2px 2px;
  4172. box-sizing:border-box;
  4173. width:100%;
  4174. }
  4175. #u135_text {
  4176. border-width:0px;
  4177. word-wrap:break-word;
  4178. text-transform:none;
  4179. visibility:hidden;
  4180. }
  4181. #u136 {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:0px;
  4185. top:0px;
  4186. width:0px;
  4187. height:0px;
  4188. }
  4189. #u137_div {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:73px;
  4195. height:25px;
  4196. background:inherit;
  4197. background-color:rgba(255, 255, 255, 0);
  4198. border:none;
  4199. border-left:0px;
  4200. border-top:0px;
  4201. border-right:0px;
  4202. border-radius:0px;
  4203. border-bottom-right-radius:0px;
  4204. border-bottom-left-radius:0px;
  4205. -moz-box-shadow:none;
  4206. -webkit-box-shadow:none;
  4207. box-shadow:none;
  4208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:18px;
  4212. }
  4213. #u137 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:1045px;
  4217. top:652px;
  4218. width:73px;
  4219. height:25px;
  4220. display:flex;
  4221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:18px;
  4225. }
  4226. #u137 .text {
  4227. position:absolute;
  4228. align-self:center;
  4229. padding:0px 0px 0px 0px;
  4230. box-sizing:border-box;
  4231. width:100%;
  4232. }
  4233. #u137_text {
  4234. border-width:0px;
  4235. white-space:nowrap;
  4236. text-transform:none;
  4237. }
  4238. #u138_div {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:85px;
  4244. height:17px;
  4245. background:inherit;
  4246. background-color:rgba(255, 255, 255, 0);
  4247. border:none;
  4248. border-left:0px;
  4249. border-top:0px;
  4250. border-right:0px;
  4251. border-radius:0px;
  4252. border-bottom-right-radius:0px;
  4253. border-bottom-left-radius:0px;
  4254. -moz-box-shadow:none;
  4255. -webkit-box-shadow:none;
  4256. box-shadow:none;
  4257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. font-size:12px;
  4261. color:#7F7F7F;
  4262. }
  4263. #u138 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:1045px;
  4267. top:682px;
  4268. width:85px;
  4269. height:17px;
  4270. display:flex;
  4271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. font-size:12px;
  4275. color:#7F7F7F;
  4276. }
  4277. #u138 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:0px 0px 0px 0px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u138_text {
  4285. border-width:0px;
  4286. white-space:nowrap;
  4287. text-transform:none;
  4288. }
  4289. #u139 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:0px;
  4295. height:0px;
  4296. }
  4297. #u140_div {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:240px;
  4303. height:80px;
  4304. background:inherit;
  4305. background-color:rgba(242, 242, 242, 1);
  4306. border:none;
  4307. border-radius:0px;
  4308. -moz-box-shadow:none;
  4309. -webkit-box-shadow:none;
  4310. box-shadow:none;
  4311. }
  4312. #u140 {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:153px;
  4316. top:436px;
  4317. width:240px;
  4318. height:80px;
  4319. display:flex;
  4320. }
  4321. #u140 .text {
  4322. position:absolute;
  4323. align-self:center;
  4324. padding:2px 2px 2px 2px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u140_text {
  4329. border-width:0px;
  4330. word-wrap:break-word;
  4331. text-transform:none;
  4332. visibility:hidden;
  4333. }
  4334. #u141_img {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:50px;
  4340. height:53px;
  4341. }
  4342. #u141 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:169px;
  4346. top:449px;
  4347. width:50px;
  4348. height:53px;
  4349. display:flex;
  4350. }
  4351. #u141 .text {
  4352. position:absolute;
  4353. align-self:center;
  4354. padding:2px 2px 2px 2px;
  4355. box-sizing:border-box;
  4356. width:100%;
  4357. }
  4358. #u141_text {
  4359. border-width:0px;
  4360. word-wrap:break-word;
  4361. text-transform:none;
  4362. visibility:hidden;
  4363. }
  4364. #u142 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:0px;
  4370. height:0px;
  4371. }
  4372. #u143_div {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:73px;
  4378. height:25px;
  4379. background:inherit;
  4380. background-color:rgba(255, 255, 255, 0);
  4381. border:none;
  4382. border-left:0px;
  4383. border-top:0px;
  4384. border-right:0px;
  4385. border-radius:0px;
  4386. border-bottom-right-radius:0px;
  4387. border-bottom-left-radius:0px;
  4388. -moz-box-shadow:none;
  4389. -webkit-box-shadow:none;
  4390. box-shadow:none;
  4391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4392. font-weight:400;
  4393. font-style:normal;
  4394. font-size:18px;
  4395. }
  4396. #u143 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:234px;
  4400. top:452px;
  4401. width:73px;
  4402. height:25px;
  4403. display:flex;
  4404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4405. font-weight:400;
  4406. font-style:normal;
  4407. font-size:18px;
  4408. }
  4409. #u143 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:0px 0px 0px 0px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u143_text {
  4417. border-width:0px;
  4418. white-space:nowrap;
  4419. text-transform:none;
  4420. }
  4421. #u144_div {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:193px;
  4427. height:17px;
  4428. background:inherit;
  4429. background-color:rgba(255, 255, 255, 0);
  4430. border:none;
  4431. border-left:0px;
  4432. border-top:0px;
  4433. border-right:0px;
  4434. border-radius:0px;
  4435. border-bottom-right-radius:0px;
  4436. border-bottom-left-radius:0px;
  4437. -moz-box-shadow:none;
  4438. -webkit-box-shadow:none;
  4439. box-shadow:none;
  4440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:12px;
  4444. color:#7F7F7F;
  4445. }
  4446. #u144 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:234px;
  4450. top:482px;
  4451. width:193px;
  4452. height:17px;
  4453. display:flex;
  4454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4455. font-weight:400;
  4456. font-style:normal;
  4457. font-size:12px;
  4458. color:#7F7F7F;
  4459. }
  4460. #u144 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:0px 0px 0px 0px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u144_text {
  4468. border-width:0px;
  4469. white-space:nowrap;
  4470. text-transform:none;
  4471. }
  4472. #u145 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:0px;
  4478. height:0px;
  4479. }
  4480. #u146_div {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:240px;
  4486. height:80px;
  4487. background:inherit;
  4488. background-color:rgba(242, 242, 242, 1);
  4489. border:none;
  4490. border-radius:0px;
  4491. -moz-box-shadow:none;
  4492. -webkit-box-shadow:none;
  4493. box-shadow:none;
  4494. }
  4495. #u146 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:423px;
  4499. top:636px;
  4500. width:240px;
  4501. height:80px;
  4502. display:flex;
  4503. }
  4504. #u146 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 2px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u146_text {
  4512. border-width:0px;
  4513. word-wrap:break-word;
  4514. text-transform:none;
  4515. visibility:hidden;
  4516. }
  4517. #u147_img {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:50px;
  4523. height:53px;
  4524. }
  4525. #u147 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:439px;
  4529. top:649px;
  4530. width:50px;
  4531. height:53px;
  4532. display:flex;
  4533. }
  4534. #u147 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:2px 2px 2px 2px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u147_text {
  4542. border-width:0px;
  4543. word-wrap:break-word;
  4544. text-transform:none;
  4545. visibility:hidden;
  4546. }
  4547. #u148 {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:0px;
  4553. height:0px;
  4554. }
  4555. #u149_div {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:109px;
  4561. height:25px;
  4562. background:inherit;
  4563. background-color:rgba(255, 255, 255, 0);
  4564. border:none;
  4565. border-left:0px;
  4566. border-top:0px;
  4567. border-right:0px;
  4568. border-radius:0px;
  4569. border-bottom-right-radius:0px;
  4570. border-bottom-left-radius:0px;
  4571. -moz-box-shadow:none;
  4572. -webkit-box-shadow:none;
  4573. box-shadow:none;
  4574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4575. font-weight:400;
  4576. font-style:normal;
  4577. font-size:18px;
  4578. }
  4579. #u149 {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:504px;
  4583. top:652px;
  4584. width:109px;
  4585. height:25px;
  4586. display:flex;
  4587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:18px;
  4591. }
  4592. #u149 .text {
  4593. position:absolute;
  4594. align-self:center;
  4595. padding:0px 0px 0px 0px;
  4596. box-sizing:border-box;
  4597. width:100%;
  4598. }
  4599. #u149_text {
  4600. border-width:0px;
  4601. white-space:nowrap;
  4602. text-transform:none;
  4603. }
  4604. #u150_div {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:145px;
  4610. height:17px;
  4611. background:inherit;
  4612. background-color:rgba(255, 255, 255, 0);
  4613. border:none;
  4614. border-left:0px;
  4615. border-top:0px;
  4616. border-right:0px;
  4617. border-radius:0px;
  4618. border-bottom-right-radius:0px;
  4619. border-bottom-left-radius:0px;
  4620. -moz-box-shadow:none;
  4621. -webkit-box-shadow:none;
  4622. box-shadow:none;
  4623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4624. font-weight:400;
  4625. font-style:normal;
  4626. font-size:12px;
  4627. color:#7F7F7F;
  4628. }
  4629. #u150 {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:504px;
  4633. top:682px;
  4634. width:145px;
  4635. height:17px;
  4636. display:flex;
  4637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4638. font-weight:400;
  4639. font-style:normal;
  4640. font-size:12px;
  4641. color:#7F7F7F;
  4642. }
  4643. #u150 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:0px 0px 0px 0px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u150_text {
  4651. border-width:0px;
  4652. white-space:nowrap;
  4653. text-transform:none;
  4654. }
  4655. #u151 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:0px;
  4661. height:0px;
  4662. }
  4663. #u152_div {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:240px;
  4669. height:80px;
  4670. background:inherit;
  4671. background-color:rgba(242, 242, 242, 1);
  4672. border:none;
  4673. border-radius:0px;
  4674. -moz-box-shadow:none;
  4675. -webkit-box-shadow:none;
  4676. box-shadow:none;
  4677. }
  4678. #u152 {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:1235px;
  4682. top:436px;
  4683. width:240px;
  4684. height:80px;
  4685. display:flex;
  4686. }
  4687. #u152 .text {
  4688. position:absolute;
  4689. align-self:center;
  4690. padding:2px 2px 2px 2px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u152_text {
  4695. border-width:0px;
  4696. word-wrap:break-word;
  4697. text-transform:none;
  4698. visibility:hidden;
  4699. }
  4700. #u153_img {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:50px;
  4706. height:53px;
  4707. }
  4708. #u153 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:1251px;
  4712. top:449px;
  4713. width:50px;
  4714. height:53px;
  4715. display:flex;
  4716. }
  4717. #u153 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 2px 2px 2px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u153_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u154 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:0px;
  4736. height:0px;
  4737. }
  4738. #u155_div {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:73px;
  4744. height:25px;
  4745. background:inherit;
  4746. background-color:rgba(255, 255, 255, 0);
  4747. border:none;
  4748. border-left:0px;
  4749. border-top:0px;
  4750. border-right:0px;
  4751. border-radius:0px;
  4752. border-bottom-right-radius:0px;
  4753. border-bottom-left-radius:0px;
  4754. -moz-box-shadow:none;
  4755. -webkit-box-shadow:none;
  4756. box-shadow:none;
  4757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4758. font-weight:400;
  4759. font-style:normal;
  4760. font-size:18px;
  4761. }
  4762. #u155 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:1316px;
  4766. top:452px;
  4767. width:73px;
  4768. height:25px;
  4769. display:flex;
  4770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:18px;
  4774. }
  4775. #u155 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:0px 0px 0px 0px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u155_text {
  4783. border-width:0px;
  4784. white-space:nowrap;
  4785. text-transform:none;
  4786. }
  4787. #u156_div {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:121px;
  4793. height:17px;
  4794. background:inherit;
  4795. background-color:rgba(255, 255, 255, 0);
  4796. border:none;
  4797. border-left:0px;
  4798. border-top:0px;
  4799. border-right:0px;
  4800. border-radius:0px;
  4801. border-bottom-right-radius:0px;
  4802. border-bottom-left-radius:0px;
  4803. -moz-box-shadow:none;
  4804. -webkit-box-shadow:none;
  4805. box-shadow:none;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:12px;
  4810. color:#7F7F7F;
  4811. }
  4812. #u156 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:1316px;
  4816. top:482px;
  4817. width:121px;
  4818. height:17px;
  4819. display:flex;
  4820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:12px;
  4824. color:#7F7F7F;
  4825. }
  4826. #u156 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:0px 0px 0px 0px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u156_text {
  4834. border-width:0px;
  4835. white-space:nowrap;
  4836. text-transform:none;
  4837. }
  4838. #u157 {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:0px;
  4844. height:0px;
  4845. }
  4846. #u158_div {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:240px;
  4852. height:80px;
  4853. background:inherit;
  4854. background-color:rgba(242, 242, 242, 1);
  4855. border:none;
  4856. border-radius:0px;
  4857. -moz-box-shadow:none;
  4858. -webkit-box-shadow:none;
  4859. box-shadow:none;
  4860. }
  4861. #u158 {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:1236px;
  4865. top:536px;
  4866. width:240px;
  4867. height:80px;
  4868. display:flex;
  4869. }
  4870. #u158 .text {
  4871. position:absolute;
  4872. align-self:center;
  4873. padding:2px 2px 2px 2px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u158_text {
  4878. border-width:0px;
  4879. word-wrap:break-word;
  4880. text-transform:none;
  4881. visibility:hidden;
  4882. }
  4883. #u159_img {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:50px;
  4889. height:53px;
  4890. }
  4891. #u159 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:1252px;
  4895. top:549px;
  4896. width:50px;
  4897. height:53px;
  4898. display:flex;
  4899. }
  4900. #u159 .text {
  4901. position:absolute;
  4902. align-self:center;
  4903. padding:2px 2px 2px 2px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u159_text {
  4908. border-width:0px;
  4909. word-wrap:break-word;
  4910. text-transform:none;
  4911. visibility:hidden;
  4912. }
  4913. #u160 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:0px;
  4919. height:0px;
  4920. }
  4921. #u161_div {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:73px;
  4927. height:25px;
  4928. background:inherit;
  4929. background-color:rgba(255, 255, 255, 0);
  4930. border:none;
  4931. border-left:0px;
  4932. border-top:0px;
  4933. border-right:0px;
  4934. border-radius:0px;
  4935. border-bottom-right-radius:0px;
  4936. border-bottom-left-radius:0px;
  4937. -moz-box-shadow:none;
  4938. -webkit-box-shadow:none;
  4939. box-shadow:none;
  4940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4941. font-weight:400;
  4942. font-style:normal;
  4943. font-size:18px;
  4944. }
  4945. #u161 {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:1317px;
  4949. top:552px;
  4950. width:73px;
  4951. height:25px;
  4952. display:flex;
  4953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4954. font-weight:400;
  4955. font-style:normal;
  4956. font-size:18px;
  4957. }
  4958. #u161 .text {
  4959. position:absolute;
  4960. align-self:center;
  4961. padding:0px 0px 0px 0px;
  4962. box-sizing:border-box;
  4963. width:100%;
  4964. }
  4965. #u161_text {
  4966. border-width:0px;
  4967. white-space:nowrap;
  4968. text-transform:none;
  4969. }
  4970. #u162_div {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:193px;
  4976. height:17px;
  4977. background:inherit;
  4978. background-color:rgba(255, 255, 255, 0);
  4979. border:none;
  4980. border-left:0px;
  4981. border-top:0px;
  4982. border-right:0px;
  4983. border-radius:0px;
  4984. border-bottom-right-radius:0px;
  4985. border-bottom-left-radius:0px;
  4986. -moz-box-shadow:none;
  4987. -webkit-box-shadow:none;
  4988. box-shadow:none;
  4989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:12px;
  4993. color:#7F7F7F;
  4994. }
  4995. #u162 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:1317px;
  4999. top:582px;
  5000. width:193px;
  5001. height:17px;
  5002. display:flex;
  5003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5004. font-weight:400;
  5005. font-style:normal;
  5006. font-size:12px;
  5007. color:#7F7F7F;
  5008. }
  5009. #u162 .text {
  5010. position:absolute;
  5011. align-self:center;
  5012. padding:0px 0px 0px 0px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u162_text {
  5017. border-width:0px;
  5018. white-space:nowrap;
  5019. text-transform:none;
  5020. }
  5021. #u163 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:0px;
  5027. height:0px;
  5028. }
  5029. #u164_div {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:240px;
  5035. height:80px;
  5036. background:inherit;
  5037. background-color:rgba(242, 242, 242, 1);
  5038. border:none;
  5039. border-radius:0px;
  5040. -moz-box-shadow:none;
  5041. -webkit-box-shadow:none;
  5042. box-shadow:none;
  5043. }
  5044. #u164 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:965px;
  5048. top:536px;
  5049. width:240px;
  5050. height:80px;
  5051. display:flex;
  5052. }
  5053. #u164 .text {
  5054. position:absolute;
  5055. align-self:center;
  5056. padding:2px 2px 2px 2px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u164_text {
  5061. border-width:0px;
  5062. word-wrap:break-word;
  5063. text-transform:none;
  5064. visibility:hidden;
  5065. }
  5066. #u165_img {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:50px;
  5072. height:53px;
  5073. }
  5074. #u165 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:981px;
  5078. top:549px;
  5079. width:50px;
  5080. height:53px;
  5081. display:flex;
  5082. }
  5083. #u165 .text {
  5084. position:absolute;
  5085. align-self:center;
  5086. padding:2px 2px 2px 2px;
  5087. box-sizing:border-box;
  5088. width:100%;
  5089. }
  5090. #u165_text {
  5091. border-width:0px;
  5092. word-wrap:break-word;
  5093. text-transform:none;
  5094. visibility:hidden;
  5095. }
  5096. #u166 {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:0px;
  5102. height:0px;
  5103. }
  5104. #u167_div {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:73px;
  5110. height:25px;
  5111. background:inherit;
  5112. background-color:rgba(255, 255, 255, 0);
  5113. border:none;
  5114. border-left:0px;
  5115. border-top:0px;
  5116. border-right:0px;
  5117. border-radius:0px;
  5118. border-bottom-right-radius:0px;
  5119. border-bottom-left-radius:0px;
  5120. -moz-box-shadow:none;
  5121. -webkit-box-shadow:none;
  5122. box-shadow:none;
  5123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5124. font-weight:400;
  5125. font-style:normal;
  5126. font-size:18px;
  5127. }
  5128. #u167 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:1046px;
  5132. top:552px;
  5133. width:73px;
  5134. height:25px;
  5135. display:flex;
  5136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5137. font-weight:400;
  5138. font-style:normal;
  5139. font-size:18px;
  5140. }
  5141. #u167 .text {
  5142. position:absolute;
  5143. align-self:center;
  5144. padding:0px 0px 0px 0px;
  5145. box-sizing:border-box;
  5146. width:100%;
  5147. }
  5148. #u167_text {
  5149. border-width:0px;
  5150. white-space:nowrap;
  5151. text-transform:none;
  5152. }
  5153. #u168_div {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:73px;
  5159. height:17px;
  5160. background:inherit;
  5161. background-color:rgba(255, 255, 255, 0);
  5162. border:none;
  5163. border-left:0px;
  5164. border-top:0px;
  5165. border-right:0px;
  5166. border-radius:0px;
  5167. border-bottom-right-radius:0px;
  5168. border-bottom-left-radius:0px;
  5169. -moz-box-shadow:none;
  5170. -webkit-box-shadow:none;
  5171. box-shadow:none;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:12px;
  5176. color:#7F7F7F;
  5177. }
  5178. #u168 {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:1046px;
  5182. top:582px;
  5183. width:73px;
  5184. height:17px;
  5185. display:flex;
  5186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5187. font-weight:400;
  5188. font-style:normal;
  5189. font-size:12px;
  5190. color:#7F7F7F;
  5191. }
  5192. #u168 .text {
  5193. position:absolute;
  5194. align-self:center;
  5195. padding:0px 0px 0px 0px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u168_text {
  5200. border-width:0px;
  5201. white-space:nowrap;
  5202. text-transform:none;
  5203. }
  5204. #u169 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:0px;
  5210. height:0px;
  5211. }
  5212. #u170_div {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:0px;
  5216. top:0px;
  5217. width:240px;
  5218. height:80px;
  5219. background:inherit;
  5220. background-color:rgba(242, 242, 242, 1);
  5221. border:none;
  5222. border-radius:0px;
  5223. -moz-box-shadow:none;
  5224. -webkit-box-shadow:none;
  5225. box-shadow:none;
  5226. }
  5227. #u170 {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:153px;
  5231. top:636px;
  5232. width:240px;
  5233. height:80px;
  5234. display:flex;
  5235. }
  5236. #u170 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:2px 2px 2px 2px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u170_text {
  5244. border-width:0px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. visibility:hidden;
  5248. }
  5249. #u171_img {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:50px;
  5255. height:53px;
  5256. }
  5257. #u171 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:169px;
  5261. top:649px;
  5262. width:50px;
  5263. height:53px;
  5264. display:flex;
  5265. }
  5266. #u171 .text {
  5267. position:absolute;
  5268. align-self:center;
  5269. padding:2px 2px 2px 2px;
  5270. box-sizing:border-box;
  5271. width:100%;
  5272. }
  5273. #u171_text {
  5274. border-width:0px;
  5275. word-wrap:break-word;
  5276. text-transform:none;
  5277. visibility:hidden;
  5278. }
  5279. #u172 {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:0px;
  5285. height:0px;
  5286. }
  5287. #u173_div {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:91px;
  5293. height:25px;
  5294. background:inherit;
  5295. background-color:rgba(255, 255, 255, 0);
  5296. border:none;
  5297. border-left:0px;
  5298. border-top:0px;
  5299. border-right:0px;
  5300. border-radius:0px;
  5301. border-bottom-right-radius:0px;
  5302. border-bottom-left-radius:0px;
  5303. -moz-box-shadow:none;
  5304. -webkit-box-shadow:none;
  5305. box-shadow:none;
  5306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:18px;
  5310. }
  5311. #u173 {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:234px;
  5315. top:652px;
  5316. width:91px;
  5317. height:25px;
  5318. display:flex;
  5319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5320. font-weight:400;
  5321. font-style:normal;
  5322. font-size:18px;
  5323. }
  5324. #u173 .text {
  5325. position:absolute;
  5326. align-self:center;
  5327. padding:0px 0px 0px 0px;
  5328. box-sizing:border-box;
  5329. width:100%;
  5330. }
  5331. #u173_text {
  5332. border-width:0px;
  5333. white-space:nowrap;
  5334. text-transform:none;
  5335. }
  5336. #u174_div {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:121px;
  5342. height:17px;
  5343. background:inherit;
  5344. background-color:rgba(255, 255, 255, 0);
  5345. border:none;
  5346. border-left:0px;
  5347. border-top:0px;
  5348. border-right:0px;
  5349. border-radius:0px;
  5350. border-bottom-right-radius:0px;
  5351. border-bottom-left-radius:0px;
  5352. -moz-box-shadow:none;
  5353. -webkit-box-shadow:none;
  5354. box-shadow:none;
  5355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5356. font-weight:400;
  5357. font-style:normal;
  5358. font-size:12px;
  5359. color:#7F7F7F;
  5360. }
  5361. #u174 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:234px;
  5365. top:682px;
  5366. width:121px;
  5367. height:17px;
  5368. display:flex;
  5369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:12px;
  5373. color:#7F7F7F;
  5374. }
  5375. #u174 .text {
  5376. position:absolute;
  5377. align-self:center;
  5378. padding:0px 0px 0px 0px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u174_text {
  5383. border-width:0px;
  5384. white-space:nowrap;
  5385. text-transform:none;
  5386. }
  5387. #u175 {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:0px;
  5393. height:0px;
  5394. }
  5395. #u176_div {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:0px;
  5399. top:0px;
  5400. width:240px;
  5401. height:80px;
  5402. background:inherit;
  5403. background-color:rgba(242, 242, 242, 1);
  5404. border:none;
  5405. border-radius:0px;
  5406. -moz-box-shadow:none;
  5407. -webkit-box-shadow:none;
  5408. box-shadow:none;
  5409. }
  5410. #u176 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:694px;
  5414. top:536px;
  5415. width:240px;
  5416. height:80px;
  5417. display:flex;
  5418. }
  5419. #u176 .text {
  5420. position:absolute;
  5421. align-self:center;
  5422. padding:2px 2px 2px 2px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u176_text {
  5427. border-width:0px;
  5428. word-wrap:break-word;
  5429. text-transform:none;
  5430. visibility:hidden;
  5431. }
  5432. #u177_img {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:50px;
  5438. height:53px;
  5439. }
  5440. #u177 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:710px;
  5444. top:549px;
  5445. width:50px;
  5446. height:53px;
  5447. display:flex;
  5448. }
  5449. #u177 .text {
  5450. position:absolute;
  5451. align-self:center;
  5452. padding:2px 2px 2px 2px;
  5453. box-sizing:border-box;
  5454. width:100%;
  5455. }
  5456. #u177_text {
  5457. border-width:0px;
  5458. word-wrap:break-word;
  5459. text-transform:none;
  5460. visibility:hidden;
  5461. }
  5462. #u178 {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:0px;
  5468. height:0px;
  5469. }
  5470. #u179_div {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:73px;
  5476. height:25px;
  5477. background:inherit;
  5478. background-color:rgba(255, 255, 255, 0);
  5479. border:none;
  5480. border-left:0px;
  5481. border-top:0px;
  5482. border-right:0px;
  5483. border-radius:0px;
  5484. border-bottom-right-radius:0px;
  5485. border-bottom-left-radius:0px;
  5486. -moz-box-shadow:none;
  5487. -webkit-box-shadow:none;
  5488. box-shadow:none;
  5489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:18px;
  5493. }
  5494. #u179 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:775px;
  5498. top:552px;
  5499. width:73px;
  5500. height:25px;
  5501. display:flex;
  5502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5503. font-weight:400;
  5504. font-style:normal;
  5505. font-size:18px;
  5506. }
  5507. #u179 .text {
  5508. position:absolute;
  5509. align-self:center;
  5510. padding:0px 0px 0px 0px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u179_text {
  5515. border-width:0px;
  5516. white-space:nowrap;
  5517. text-transform:none;
  5518. }
  5519. #u180_div {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:157px;
  5525. height:17px;
  5526. background:inherit;
  5527. background-color:rgba(255, 255, 255, 0);
  5528. border:none;
  5529. border-left:0px;
  5530. border-top:0px;
  5531. border-right:0px;
  5532. border-radius:0px;
  5533. border-bottom-right-radius:0px;
  5534. border-bottom-left-radius:0px;
  5535. -moz-box-shadow:none;
  5536. -webkit-box-shadow:none;
  5537. box-shadow:none;
  5538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5539. font-weight:400;
  5540. font-style:normal;
  5541. font-size:12px;
  5542. color:#7F7F7F;
  5543. }
  5544. #u180 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:775px;
  5548. top:582px;
  5549. width:157px;
  5550. height:17px;
  5551. display:flex;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:12px;
  5556. color:#7F7F7F;
  5557. }
  5558. #u180 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:0px 0px 0px 0px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u180_text {
  5566. border-width:0px;
  5567. white-space:nowrap;
  5568. text-transform:none;
  5569. }
  5570. #u181 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:0px;
  5576. height:0px;
  5577. }
  5578. #u182_div {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:0px;
  5582. top:0px;
  5583. width:240px;
  5584. height:80px;
  5585. background:inherit;
  5586. background-color:rgba(242, 242, 242, 1);
  5587. border:none;
  5588. border-radius:0px;
  5589. -moz-box-shadow:none;
  5590. -webkit-box-shadow:none;
  5591. box-shadow:none;
  5592. }
  5593. #u182 {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:423px;
  5597. top:536px;
  5598. width:240px;
  5599. height:80px;
  5600. display:flex;
  5601. }
  5602. #u182 .text {
  5603. position:absolute;
  5604. align-self:center;
  5605. padding:2px 2px 2px 2px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u182_text {
  5610. border-width:0px;
  5611. word-wrap:break-word;
  5612. text-transform:none;
  5613. visibility:hidden;
  5614. }
  5615. #u183_img {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:50px;
  5621. height:53px;
  5622. }
  5623. #u183 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:439px;
  5627. top:549px;
  5628. width:50px;
  5629. height:53px;
  5630. display:flex;
  5631. }
  5632. #u183 .text {
  5633. position:absolute;
  5634. align-self:center;
  5635. padding:2px 2px 2px 2px;
  5636. box-sizing:border-box;
  5637. width:100%;
  5638. }
  5639. #u183_text {
  5640. border-width:0px;
  5641. word-wrap:break-word;
  5642. text-transform:none;
  5643. visibility:hidden;
  5644. }
  5645. #u184 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:0px;
  5651. height:0px;
  5652. }
  5653. #u185_div {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:73px;
  5659. height:25px;
  5660. background:inherit;
  5661. background-color:rgba(255, 255, 255, 0);
  5662. border:none;
  5663. border-left:0px;
  5664. border-top:0px;
  5665. border-right:0px;
  5666. border-radius:0px;
  5667. border-bottom-right-radius:0px;
  5668. border-bottom-left-radius:0px;
  5669. -moz-box-shadow:none;
  5670. -webkit-box-shadow:none;
  5671. box-shadow:none;
  5672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:18px;
  5676. }
  5677. #u185 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:504px;
  5681. top:552px;
  5682. width:73px;
  5683. height:25px;
  5684. display:flex;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:18px;
  5689. }
  5690. #u185 .text {
  5691. position:absolute;
  5692. align-self:center;
  5693. padding:0px 0px 0px 0px;
  5694. box-sizing:border-box;
  5695. width:100%;
  5696. }
  5697. #u185_text {
  5698. border-width:0px;
  5699. white-space:nowrap;
  5700. text-transform:none;
  5701. }
  5702. #u186_div {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:229px;
  5708. height:17px;
  5709. background:inherit;
  5710. background-color:rgba(255, 255, 255, 0);
  5711. border:none;
  5712. border-left:0px;
  5713. border-top:0px;
  5714. border-right:0px;
  5715. border-radius:0px;
  5716. border-bottom-right-radius:0px;
  5717. border-bottom-left-radius:0px;
  5718. -moz-box-shadow:none;
  5719. -webkit-box-shadow:none;
  5720. box-shadow:none;
  5721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5722. font-weight:400;
  5723. font-style:normal;
  5724. font-size:12px;
  5725. color:#7F7F7F;
  5726. }
  5727. #u186 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:504px;
  5731. top:582px;
  5732. width:229px;
  5733. height:17px;
  5734. display:flex;
  5735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5736. font-weight:400;
  5737. font-style:normal;
  5738. font-size:12px;
  5739. color:#7F7F7F;
  5740. }
  5741. #u186 .text {
  5742. position:absolute;
  5743. align-self:center;
  5744. padding:0px 0px 0px 0px;
  5745. box-sizing:border-box;
  5746. width:100%;
  5747. }
  5748. #u186_text {
  5749. border-width:0px;
  5750. white-space:nowrap;
  5751. text-transform:none;
  5752. }
  5753. #u187 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:0px;
  5759. height:0px;
  5760. }
  5761. #u188_div {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:240px;
  5767. height:80px;
  5768. background:inherit;
  5769. background-color:rgba(242, 242, 242, 1);
  5770. border:none;
  5771. border-radius:0px;
  5772. -moz-box-shadow:none;
  5773. -webkit-box-shadow:none;
  5774. box-shadow:none;
  5775. }
  5776. #u188 {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:153px;
  5780. top:536px;
  5781. width:240px;
  5782. height:80px;
  5783. display:flex;
  5784. }
  5785. #u188 .text {
  5786. position:absolute;
  5787. align-self:center;
  5788. padding:2px 2px 2px 2px;
  5789. box-sizing:border-box;
  5790. width:100%;
  5791. }
  5792. #u188_text {
  5793. border-width:0px;
  5794. word-wrap:break-word;
  5795. text-transform:none;
  5796. visibility:hidden;
  5797. }
  5798. #u189_img {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:50px;
  5804. height:53px;
  5805. }
  5806. #u189 {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:169px;
  5810. top:549px;
  5811. width:50px;
  5812. height:53px;
  5813. display:flex;
  5814. }
  5815. #u189 .text {
  5816. position:absolute;
  5817. align-self:center;
  5818. padding:2px 2px 2px 2px;
  5819. box-sizing:border-box;
  5820. width:100%;
  5821. }
  5822. #u189_text {
  5823. border-width:0px;
  5824. word-wrap:break-word;
  5825. text-transform:none;
  5826. visibility:hidden;
  5827. }
  5828. #u190 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:0px;
  5834. height:0px;
  5835. }
  5836. #u191_div {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:73px;
  5842. height:25px;
  5843. background:inherit;
  5844. background-color:rgba(255, 255, 255, 0);
  5845. border:none;
  5846. border-left:0px;
  5847. border-top:0px;
  5848. border-right:0px;
  5849. border-radius:0px;
  5850. border-bottom-right-radius:0px;
  5851. border-bottom-left-radius:0px;
  5852. -moz-box-shadow:none;
  5853. -webkit-box-shadow:none;
  5854. box-shadow:none;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:18px;
  5859. }
  5860. #u191 {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:234px;
  5864. top:552px;
  5865. width:73px;
  5866. height:25px;
  5867. display:flex;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:18px;
  5872. }
  5873. #u191 .text {
  5874. position:absolute;
  5875. align-self:center;
  5876. padding:0px 0px 0px 0px;
  5877. box-sizing:border-box;
  5878. width:100%;
  5879. }
  5880. #u191_text {
  5881. border-width:0px;
  5882. white-space:nowrap;
  5883. text-transform:none;
  5884. }
  5885. #u192_div {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:205px;
  5891. height:17px;
  5892. background:inherit;
  5893. background-color:rgba(255, 255, 255, 0);
  5894. border:none;
  5895. border-left:0px;
  5896. border-top:0px;
  5897. border-right:0px;
  5898. border-radius:0px;
  5899. border-bottom-right-radius:0px;
  5900. border-bottom-left-radius:0px;
  5901. -moz-box-shadow:none;
  5902. -webkit-box-shadow:none;
  5903. box-shadow:none;
  5904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. font-size:12px;
  5908. color:#7F7F7F;
  5909. }
  5910. #u192 {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:234px;
  5914. top:582px;
  5915. width:205px;
  5916. height:17px;
  5917. display:flex;
  5918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. font-size:12px;
  5922. color:#7F7F7F;
  5923. }
  5924. #u192 .text {
  5925. position:absolute;
  5926. align-self:center;
  5927. padding:0px 0px 0px 0px;
  5928. box-sizing:border-box;
  5929. width:100%;
  5930. }
  5931. #u192_text {
  5932. border-width:0px;
  5933. white-space:nowrap;
  5934. text-transform:none;
  5935. }
  5936. #u193 {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:0px;
  5942. height:0px;
  5943. }
  5944. #u194_div {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:240px;
  5950. height:80px;
  5951. background:inherit;
  5952. background-color:rgba(242, 242, 242, 1);
  5953. border:none;
  5954. border-radius:0px;
  5955. -moz-box-shadow:none;
  5956. -webkit-box-shadow:none;
  5957. box-shadow:none;
  5958. }
  5959. #u194 {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:153px;
  5963. top:836px;
  5964. width:240px;
  5965. height:80px;
  5966. display:flex;
  5967. }
  5968. #u194 .text {
  5969. position:absolute;
  5970. align-self:center;
  5971. padding:2px 2px 2px 2px;
  5972. box-sizing:border-box;
  5973. width:100%;
  5974. }
  5975. #u194_text {
  5976. border-width:0px;
  5977. word-wrap:break-word;
  5978. text-transform:none;
  5979. visibility:hidden;
  5980. }
  5981. #u195_img {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:50px;
  5987. height:53px;
  5988. }
  5989. #u195 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:169px;
  5993. top:849px;
  5994. width:50px;
  5995. height:53px;
  5996. display:flex;
  5997. }
  5998. #u195 .text {
  5999. position:absolute;
  6000. align-self:center;
  6001. padding:2px 2px 2px 2px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u195_text {
  6006. border-width:0px;
  6007. word-wrap:break-word;
  6008. text-transform:none;
  6009. visibility:hidden;
  6010. }
  6011. #u196 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:0px;
  6017. height:0px;
  6018. }
  6019. #u197_div {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:73px;
  6025. height:25px;
  6026. background:inherit;
  6027. background-color:rgba(255, 255, 255, 0);
  6028. border:none;
  6029. border-left:0px;
  6030. border-top:0px;
  6031. border-right:0px;
  6032. border-radius:0px;
  6033. border-bottom-right-radius:0px;
  6034. border-bottom-left-radius:0px;
  6035. -moz-box-shadow:none;
  6036. -webkit-box-shadow:none;
  6037. box-shadow:none;
  6038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. font-size:18px;
  6042. }
  6043. #u197 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:234px;
  6047. top:852px;
  6048. width:73px;
  6049. height:25px;
  6050. display:flex;
  6051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6052. font-weight:400;
  6053. font-style:normal;
  6054. font-size:18px;
  6055. }
  6056. #u197 .text {
  6057. position:absolute;
  6058. align-self:center;
  6059. padding:0px 0px 0px 0px;
  6060. box-sizing:border-box;
  6061. width:100%;
  6062. }
  6063. #u197_text {
  6064. border-width:0px;
  6065. white-space:nowrap;
  6066. text-transform:none;
  6067. }
  6068. #u198_div {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:0px;
  6072. top:0px;
  6073. width:97px;
  6074. height:17px;
  6075. background:inherit;
  6076. background-color:rgba(255, 255, 255, 0);
  6077. border:none;
  6078. border-left:0px;
  6079. border-top:0px;
  6080. border-right:0px;
  6081. border-radius:0px;
  6082. border-bottom-right-radius:0px;
  6083. border-bottom-left-radius:0px;
  6084. -moz-box-shadow:none;
  6085. -webkit-box-shadow:none;
  6086. box-shadow:none;
  6087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6088. font-weight:400;
  6089. font-style:normal;
  6090. font-size:12px;
  6091. color:#7F7F7F;
  6092. }
  6093. #u198 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:234px;
  6097. top:882px;
  6098. width:97px;
  6099. height:17px;
  6100. display:flex;
  6101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. font-size:12px;
  6105. color:#7F7F7F;
  6106. }
  6107. #u198 .text {
  6108. position:absolute;
  6109. align-self:center;
  6110. padding:0px 0px 0px 0px;
  6111. box-sizing:border-box;
  6112. width:100%;
  6113. }
  6114. #u198_text {
  6115. border-width:0px;
  6116. white-space:nowrap;
  6117. text-transform:none;
  6118. }
  6119. #u199 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:0px;
  6125. height:0px;
  6126. }
  6127. #u200_div {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:240px;
  6133. height:80px;
  6134. background:inherit;
  6135. background-color:rgba(242, 242, 242, 1);
  6136. border:none;
  6137. border-radius:0px;
  6138. -moz-box-shadow:none;
  6139. -webkit-box-shadow:none;
  6140. box-shadow:none;
  6141. }
  6142. #u200 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:424px;
  6146. top:836px;
  6147. width:240px;
  6148. height:80px;
  6149. display:flex;
  6150. }
  6151. #u200 .text {
  6152. position:absolute;
  6153. align-self:center;
  6154. padding:2px 2px 2px 2px;
  6155. box-sizing:border-box;
  6156. width:100%;
  6157. }
  6158. #u200_text {
  6159. border-width:0px;
  6160. word-wrap:break-word;
  6161. text-transform:none;
  6162. visibility:hidden;
  6163. }
  6164. #u201_img {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:0px;
  6168. top:0px;
  6169. width:50px;
  6170. height:53px;
  6171. }
  6172. #u201 {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:440px;
  6176. top:849px;
  6177. width:50px;
  6178. height:53px;
  6179. display:flex;
  6180. }
  6181. #u201 .text {
  6182. position:absolute;
  6183. align-self:center;
  6184. padding:2px 2px 2px 2px;
  6185. box-sizing:border-box;
  6186. width:100%;
  6187. }
  6188. #u201_text {
  6189. border-width:0px;
  6190. word-wrap:break-word;
  6191. text-transform:none;
  6192. visibility:hidden;
  6193. }
  6194. #u202 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:0px;
  6200. height:0px;
  6201. }
  6202. #u203_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:73px;
  6208. height:25px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 0);
  6211. border:none;
  6212. border-left:0px;
  6213. border-top:0px;
  6214. border-right:0px;
  6215. border-radius:0px;
  6216. border-bottom-right-radius:0px;
  6217. border-bottom-left-radius:0px;
  6218. -moz-box-shadow:none;
  6219. -webkit-box-shadow:none;
  6220. box-shadow:none;
  6221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:18px;
  6225. }
  6226. #u203 {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:505px;
  6230. top:852px;
  6231. width:73px;
  6232. height:25px;
  6233. display:flex;
  6234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6235. font-weight:400;
  6236. font-style:normal;
  6237. font-size:18px;
  6238. }
  6239. #u203 .text {
  6240. position:absolute;
  6241. align-self:center;
  6242. padding:0px 0px 0px 0px;
  6243. box-sizing:border-box;
  6244. width:100%;
  6245. }
  6246. #u203_text {
  6247. border-width:0px;
  6248. white-space:nowrap;
  6249. text-transform:none;
  6250. }
  6251. #u204_div {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:0px;
  6255. top:0px;
  6256. width:97px;
  6257. height:17px;
  6258. background:inherit;
  6259. background-color:rgba(255, 255, 255, 0);
  6260. border:none;
  6261. border-left:0px;
  6262. border-top:0px;
  6263. border-right:0px;
  6264. border-radius:0px;
  6265. border-bottom-right-radius:0px;
  6266. border-bottom-left-radius:0px;
  6267. -moz-box-shadow:none;
  6268. -webkit-box-shadow:none;
  6269. box-shadow:none;
  6270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6271. font-weight:400;
  6272. font-style:normal;
  6273. font-size:12px;
  6274. color:#7F7F7F;
  6275. }
  6276. #u204 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:505px;
  6280. top:882px;
  6281. width:97px;
  6282. height:17px;
  6283. display:flex;
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:12px;
  6288. color:#7F7F7F;
  6289. }
  6290. #u204 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:0px 0px 0px 0px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u204_text {
  6298. border-width:0px;
  6299. white-space:nowrap;
  6300. text-transform:none;
  6301. }
  6302. #u205 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:0px;
  6306. top:0px;
  6307. width:0px;
  6308. height:0px;
  6309. }
  6310. #u206_div {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:0px;
  6314. top:0px;
  6315. width:240px;
  6316. height:80px;
  6317. background:inherit;
  6318. background-color:rgba(242, 242, 242, 1);
  6319. border:none;
  6320. border-radius:0px;
  6321. -moz-box-shadow:none;
  6322. -webkit-box-shadow:none;
  6323. box-shadow:none;
  6324. }
  6325. #u206 {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:964px;
  6329. top:736px;
  6330. width:240px;
  6331. height:80px;
  6332. display:flex;
  6333. }
  6334. #u206 .text {
  6335. position:absolute;
  6336. align-self:center;
  6337. padding:2px 2px 2px 2px;
  6338. box-sizing:border-box;
  6339. width:100%;
  6340. }
  6341. #u206_text {
  6342. border-width:0px;
  6343. word-wrap:break-word;
  6344. text-transform:none;
  6345. visibility:hidden;
  6346. }
  6347. #u207_img {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:50px;
  6353. height:53px;
  6354. }
  6355. #u207 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:980px;
  6359. top:749px;
  6360. width:50px;
  6361. height:53px;
  6362. display:flex;
  6363. }
  6364. #u207 .text {
  6365. position:absolute;
  6366. align-self:center;
  6367. padding:2px 2px 2px 2px;
  6368. box-sizing:border-box;
  6369. width:100%;
  6370. }
  6371. #u207_text {
  6372. border-width:0px;
  6373. word-wrap:break-word;
  6374. text-transform:none;
  6375. visibility:hidden;
  6376. }
  6377. #u208 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:0px;
  6383. height:0px;
  6384. }
  6385. #u209_div {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:0px;
  6389. top:0px;
  6390. width:73px;
  6391. height:25px;
  6392. background:inherit;
  6393. background-color:rgba(255, 255, 255, 0);
  6394. border:none;
  6395. border-left:0px;
  6396. border-top:0px;
  6397. border-right:0px;
  6398. border-radius:0px;
  6399. border-bottom-right-radius:0px;
  6400. border-bottom-left-radius:0px;
  6401. -moz-box-shadow:none;
  6402. -webkit-box-shadow:none;
  6403. box-shadow:none;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:18px;
  6408. }
  6409. #u209 {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:1045px;
  6413. top:752px;
  6414. width:73px;
  6415. height:25px;
  6416. display:flex;
  6417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6418. font-weight:400;
  6419. font-style:normal;
  6420. font-size:18px;
  6421. }
  6422. #u209 .text {
  6423. position:absolute;
  6424. align-self:center;
  6425. padding:0px 0px 0px 0px;
  6426. box-sizing:border-box;
  6427. width:100%;
  6428. }
  6429. #u209_text {
  6430. border-width:0px;
  6431. white-space:nowrap;
  6432. text-transform:none;
  6433. }
  6434. #u210_div {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:133px;
  6440. height:17px;
  6441. background:inherit;
  6442. background-color:rgba(255, 255, 255, 0);
  6443. border:none;
  6444. border-left:0px;
  6445. border-top:0px;
  6446. border-right:0px;
  6447. border-radius:0px;
  6448. border-bottom-right-radius:0px;
  6449. border-bottom-left-radius:0px;
  6450. -moz-box-shadow:none;
  6451. -webkit-box-shadow:none;
  6452. box-shadow:none;
  6453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:12px;
  6457. color:#7F7F7F;
  6458. }
  6459. #u210 {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:1045px;
  6463. top:782px;
  6464. width:133px;
  6465. height:17px;
  6466. display:flex;
  6467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6468. font-weight:400;
  6469. font-style:normal;
  6470. font-size:12px;
  6471. color:#7F7F7F;
  6472. }
  6473. #u210 .text {
  6474. position:absolute;
  6475. align-self:center;
  6476. padding:0px 0px 0px 0px;
  6477. box-sizing:border-box;
  6478. width:100%;
  6479. }
  6480. #u210_text {
  6481. border-width:0px;
  6482. white-space:nowrap;
  6483. text-transform:none;
  6484. }
  6485. #u211 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:0px;
  6489. top:0px;
  6490. width:0px;
  6491. height:0px;
  6492. }
  6493. #u212_div {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:240px;
  6499. height:80px;
  6500. background:inherit;
  6501. background-color:rgba(242, 242, 242, 1);
  6502. border:none;
  6503. border-radius:0px;
  6504. -moz-box-shadow:none;
  6505. -webkit-box-shadow:none;
  6506. box-shadow:none;
  6507. }
  6508. #u212 {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:694px;
  6512. top:839px;
  6513. width:240px;
  6514. height:80px;
  6515. display:flex;
  6516. }
  6517. #u212 .text {
  6518. position:absolute;
  6519. align-self:center;
  6520. padding:2px 2px 2px 2px;
  6521. box-sizing:border-box;
  6522. width:100%;
  6523. }
  6524. #u212_text {
  6525. border-width:0px;
  6526. word-wrap:break-word;
  6527. text-transform:none;
  6528. visibility:hidden;
  6529. }
  6530. #u213_img {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:50px;
  6536. height:53px;
  6537. }
  6538. #u213 {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:710px;
  6542. top:852px;
  6543. width:50px;
  6544. height:53px;
  6545. display:flex;
  6546. }
  6547. #u213 .text {
  6548. position:absolute;
  6549. align-self:center;
  6550. padding:2px 2px 2px 2px;
  6551. box-sizing:border-box;
  6552. width:100%;
  6553. }
  6554. #u213_text {
  6555. border-width:0px;
  6556. word-wrap:break-word;
  6557. text-transform:none;
  6558. visibility:hidden;
  6559. }
  6560. #u214 {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:0px;
  6566. height:0px;
  6567. }
  6568. #u215_div {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:0px;
  6572. top:0px;
  6573. width:73px;
  6574. height:25px;
  6575. background:inherit;
  6576. background-color:rgba(255, 255, 255, 0);
  6577. border:none;
  6578. border-left:0px;
  6579. border-top:0px;
  6580. border-right:0px;
  6581. border-radius:0px;
  6582. border-bottom-right-radius:0px;
  6583. border-bottom-left-radius:0px;
  6584. -moz-box-shadow:none;
  6585. -webkit-box-shadow:none;
  6586. box-shadow:none;
  6587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:18px;
  6591. }
  6592. #u215 {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:775px;
  6596. top:855px;
  6597. width:73px;
  6598. height:25px;
  6599. display:flex;
  6600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6601. font-weight:400;
  6602. font-style:normal;
  6603. font-size:18px;
  6604. }
  6605. #u215 .text {
  6606. position:absolute;
  6607. align-self:center;
  6608. padding:0px 0px 0px 0px;
  6609. box-sizing:border-box;
  6610. width:100%;
  6611. }
  6612. #u215_text {
  6613. border-width:0px;
  6614. white-space:nowrap;
  6615. text-transform:none;
  6616. }
  6617. #u216_div {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:133px;
  6623. height:17px;
  6624. background:inherit;
  6625. background-color:rgba(255, 255, 255, 0);
  6626. border:none;
  6627. border-left:0px;
  6628. border-top:0px;
  6629. border-right:0px;
  6630. border-radius:0px;
  6631. border-bottom-right-radius:0px;
  6632. border-bottom-left-radius:0px;
  6633. -moz-box-shadow:none;
  6634. -webkit-box-shadow:none;
  6635. box-shadow:none;
  6636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6637. font-weight:400;
  6638. font-style:normal;
  6639. font-size:12px;
  6640. color:#7F7F7F;
  6641. }
  6642. #u216 {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:775px;
  6646. top:885px;
  6647. width:133px;
  6648. height:17px;
  6649. display:flex;
  6650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6651. font-weight:400;
  6652. font-style:normal;
  6653. font-size:12px;
  6654. color:#7F7F7F;
  6655. }
  6656. #u216 .text {
  6657. position:absolute;
  6658. align-self:center;
  6659. padding:0px 0px 0px 0px;
  6660. box-sizing:border-box;
  6661. width:100%;
  6662. }
  6663. #u216_text {
  6664. border-width:0px;
  6665. white-space:nowrap;
  6666. text-transform:none;
  6667. }
  6668. #u217 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:0px;
  6674. height:0px;
  6675. }
  6676. #u218_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:240px;
  6682. height:80px;
  6683. background:inherit;
  6684. background-color:rgba(242, 242, 242, 1);
  6685. border:none;
  6686. border-radius:0px;
  6687. -moz-box-shadow:none;
  6688. -webkit-box-shadow:none;
  6689. box-shadow:none;
  6690. }
  6691. #u218 {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:965px;
  6695. top:828px;
  6696. width:240px;
  6697. height:80px;
  6698. display:flex;
  6699. }
  6700. #u218 .text {
  6701. position:absolute;
  6702. align-self:center;
  6703. padding:2px 2px 2px 2px;
  6704. box-sizing:border-box;
  6705. width:100%;
  6706. }
  6707. #u218_text {
  6708. border-width:0px;
  6709. word-wrap:break-word;
  6710. text-transform:none;
  6711. visibility:hidden;
  6712. }
  6713. #u219_img {
  6714. border-width:0px;
  6715. position:absolute;
  6716. left:0px;
  6717. top:0px;
  6718. width:50px;
  6719. height:53px;
  6720. }
  6721. #u219 {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:981px;
  6725. top:841px;
  6726. width:50px;
  6727. height:53px;
  6728. display:flex;
  6729. }
  6730. #u219 .text {
  6731. position:absolute;
  6732. align-self:center;
  6733. padding:2px 2px 2px 2px;
  6734. box-sizing:border-box;
  6735. width:100%;
  6736. }
  6737. #u219_text {
  6738. border-width:0px;
  6739. word-wrap:break-word;
  6740. text-transform:none;
  6741. visibility:hidden;
  6742. }
  6743. #u220 {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:0px;
  6747. top:0px;
  6748. width:0px;
  6749. height:0px;
  6750. }
  6751. #u221_div {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:0px;
  6755. top:0px;
  6756. width:73px;
  6757. height:25px;
  6758. background:inherit;
  6759. background-color:rgba(255, 255, 255, 0);
  6760. border:none;
  6761. border-left:0px;
  6762. border-top:0px;
  6763. border-right:0px;
  6764. border-radius:0px;
  6765. border-bottom-right-radius:0px;
  6766. border-bottom-left-radius:0px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:18px;
  6774. }
  6775. #u221 {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:1046px;
  6779. top:844px;
  6780. width:73px;
  6781. height:25px;
  6782. display:flex;
  6783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6784. font-weight:400;
  6785. font-style:normal;
  6786. font-size:18px;
  6787. }
  6788. #u221 .text {
  6789. position:absolute;
  6790. align-self:center;
  6791. padding:0px 0px 0px 0px;
  6792. box-sizing:border-box;
  6793. width:100%;
  6794. }
  6795. #u221_text {
  6796. border-width:0px;
  6797. white-space:nowrap;
  6798. text-transform:none;
  6799. }
  6800. #u222_div {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:97px;
  6806. height:17px;
  6807. background:inherit;
  6808. background-color:rgba(255, 255, 255, 0);
  6809. border:none;
  6810. border-left:0px;
  6811. border-top:0px;
  6812. border-right:0px;
  6813. border-radius:0px;
  6814. border-bottom-right-radius:0px;
  6815. border-bottom-left-radius:0px;
  6816. -moz-box-shadow:none;
  6817. -webkit-box-shadow:none;
  6818. box-shadow:none;
  6819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6820. font-weight:400;
  6821. font-style:normal;
  6822. font-size:12px;
  6823. color:#7F7F7F;
  6824. }
  6825. #u222 {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:1046px;
  6829. top:874px;
  6830. width:97px;
  6831. height:17px;
  6832. display:flex;
  6833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6834. font-weight:400;
  6835. font-style:normal;
  6836. font-size:12px;
  6837. color:#7F7F7F;
  6838. }
  6839. #u222 .text {
  6840. position:absolute;
  6841. align-self:center;
  6842. padding:0px 0px 0px 0px;
  6843. box-sizing:border-box;
  6844. width:100%;
  6845. }
  6846. #u222_text {
  6847. border-width:0px;
  6848. white-space:nowrap;
  6849. text-transform:none;
  6850. }
  6851. #u223 {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:0px;
  6855. top:0px;
  6856. width:0px;
  6857. height:0px;
  6858. }
  6859. #u224_div {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:240px;
  6865. height:80px;
  6866. background:inherit;
  6867. background-color:rgba(242, 242, 242, 1);
  6868. border:none;
  6869. border-radius:0px;
  6870. -moz-box-shadow:none;
  6871. -webkit-box-shadow:none;
  6872. box-shadow:none;
  6873. }
  6874. #u224 {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:1236px;
  6878. top:736px;
  6879. width:240px;
  6880. height:80px;
  6881. display:flex;
  6882. }
  6883. #u224 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:2px 2px 2px 2px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u224_text {
  6891. border-width:0px;
  6892. word-wrap:break-word;
  6893. text-transform:none;
  6894. visibility:hidden;
  6895. }
  6896. #u225_img {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:0px;
  6900. top:0px;
  6901. width:50px;
  6902. height:53px;
  6903. }
  6904. #u225 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:1252px;
  6908. top:749px;
  6909. width:50px;
  6910. height:53px;
  6911. display:flex;
  6912. }
  6913. #u225 .text {
  6914. position:absolute;
  6915. align-self:center;
  6916. padding:2px 2px 2px 2px;
  6917. box-sizing:border-box;
  6918. width:100%;
  6919. }
  6920. #u225_text {
  6921. border-width:0px;
  6922. word-wrap:break-word;
  6923. text-transform:none;
  6924. visibility:hidden;
  6925. }
  6926. #u226 {
  6927. border-width:0px;
  6928. position:absolute;
  6929. left:0px;
  6930. top:0px;
  6931. width:0px;
  6932. height:0px;
  6933. }
  6934. #u227_div {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:73px;
  6940. height:25px;
  6941. background:inherit;
  6942. background-color:rgba(255, 255, 255, 0);
  6943. border:none;
  6944. border-left:0px;
  6945. border-top:0px;
  6946. border-right:0px;
  6947. border-radius:0px;
  6948. border-bottom-right-radius:0px;
  6949. border-bottom-left-radius:0px;
  6950. -moz-box-shadow:none;
  6951. -webkit-box-shadow:none;
  6952. box-shadow:none;
  6953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6954. font-weight:400;
  6955. font-style:normal;
  6956. font-size:18px;
  6957. }
  6958. #u227 {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:1317px;
  6962. top:752px;
  6963. width:73px;
  6964. height:25px;
  6965. display:flex;
  6966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6967. font-weight:400;
  6968. font-style:normal;
  6969. font-size:18px;
  6970. }
  6971. #u227 .text {
  6972. position:absolute;
  6973. align-self:center;
  6974. padding:0px 0px 0px 0px;
  6975. box-sizing:border-box;
  6976. width:100%;
  6977. }
  6978. #u227_text {
  6979. border-width:0px;
  6980. white-space:nowrap;
  6981. text-transform:none;
  6982. }
  6983. #u228_div {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:0px;
  6987. top:0px;
  6988. width:109px;
  6989. height:17px;
  6990. background:inherit;
  6991. background-color:rgba(255, 255, 255, 0);
  6992. border:none;
  6993. border-left:0px;
  6994. border-top:0px;
  6995. border-right:0px;
  6996. border-radius:0px;
  6997. border-bottom-right-radius:0px;
  6998. border-bottom-left-radius:0px;
  6999. -moz-box-shadow:none;
  7000. -webkit-box-shadow:none;
  7001. box-shadow:none;
  7002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7003. font-weight:400;
  7004. font-style:normal;
  7005. font-size:12px;
  7006. color:#7F7F7F;
  7007. }
  7008. #u228 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:1317px;
  7012. top:782px;
  7013. width:109px;
  7014. height:17px;
  7015. display:flex;
  7016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7017. font-weight:400;
  7018. font-style:normal;
  7019. font-size:12px;
  7020. color:#7F7F7F;
  7021. }
  7022. #u228 .text {
  7023. position:absolute;
  7024. align-self:center;
  7025. padding:0px 0px 0px 0px;
  7026. box-sizing:border-box;
  7027. width:100%;
  7028. }
  7029. #u228_text {
  7030. border-width:0px;
  7031. white-space:nowrap;
  7032. text-transform:none;
  7033. }
  7034. #u229 {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:0px;
  7038. top:0px;
  7039. width:0px;
  7040. height:0px;
  7041. }
  7042. #u230_div {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:240px;
  7048. height:80px;
  7049. background:inherit;
  7050. background-color:rgba(242, 242, 242, 1);
  7051. border:none;
  7052. border-radius:0px;
  7053. -moz-box-shadow:none;
  7054. -webkit-box-shadow:none;
  7055. box-shadow:none;
  7056. }
  7057. #u230 {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:1235px;
  7061. top:828px;
  7062. width:240px;
  7063. height:80px;
  7064. display:flex;
  7065. }
  7066. #u230 .text {
  7067. position:absolute;
  7068. align-self:center;
  7069. padding:2px 2px 2px 2px;
  7070. box-sizing:border-box;
  7071. width:100%;
  7072. }
  7073. #u230_text {
  7074. border-width:0px;
  7075. word-wrap:break-word;
  7076. text-transform:none;
  7077. visibility:hidden;
  7078. }
  7079. #u231_img {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:0px;
  7083. top:0px;
  7084. width:50px;
  7085. height:53px;
  7086. }
  7087. #u231 {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:1251px;
  7091. top:841px;
  7092. width:50px;
  7093. height:53px;
  7094. display:flex;
  7095. }
  7096. #u231 .text {
  7097. position:absolute;
  7098. align-self:center;
  7099. padding:2px 2px 2px 2px;
  7100. box-sizing:border-box;
  7101. width:100%;
  7102. }
  7103. #u231_text {
  7104. border-width:0px;
  7105. word-wrap:break-word;
  7106. text-transform:none;
  7107. visibility:hidden;
  7108. }
  7109. #u232 {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:0px;
  7113. top:0px;
  7114. width:0px;
  7115. height:0px;
  7116. }
  7117. #u233_div {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:73px;
  7123. height:25px;
  7124. background:inherit;
  7125. background-color:rgba(255, 255, 255, 0);
  7126. border:none;
  7127. border-left:0px;
  7128. border-top:0px;
  7129. border-right:0px;
  7130. border-radius:0px;
  7131. border-bottom-right-radius:0px;
  7132. border-bottom-left-radius:0px;
  7133. -moz-box-shadow:none;
  7134. -webkit-box-shadow:none;
  7135. box-shadow:none;
  7136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7137. font-weight:400;
  7138. font-style:normal;
  7139. font-size:18px;
  7140. }
  7141. #u233 {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:1316px;
  7145. top:844px;
  7146. width:73px;
  7147. height:25px;
  7148. display:flex;
  7149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7150. font-weight:400;
  7151. font-style:normal;
  7152. font-size:18px;
  7153. }
  7154. #u233 .text {
  7155. position:absolute;
  7156. align-self:center;
  7157. padding:0px 0px 0px 0px;
  7158. box-sizing:border-box;
  7159. width:100%;
  7160. }
  7161. #u233_text {
  7162. border-width:0px;
  7163. white-space:nowrap;
  7164. text-transform:none;
  7165. }
  7166. #u234_div {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:0px;
  7170. top:0px;
  7171. width:217px;
  7172. height:17px;
  7173. background:inherit;
  7174. background-color:rgba(255, 255, 255, 0);
  7175. border:none;
  7176. border-left:0px;
  7177. border-top:0px;
  7178. border-right:0px;
  7179. border-radius:0px;
  7180. border-bottom-right-radius:0px;
  7181. border-bottom-left-radius:0px;
  7182. -moz-box-shadow:none;
  7183. -webkit-box-shadow:none;
  7184. box-shadow:none;
  7185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7186. font-weight:400;
  7187. font-style:normal;
  7188. font-size:12px;
  7189. color:#7F7F7F;
  7190. }
  7191. #u234 {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:1316px;
  7195. top:874px;
  7196. width:217px;
  7197. height:17px;
  7198. display:flex;
  7199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7200. font-weight:400;
  7201. font-style:normal;
  7202. font-size:12px;
  7203. color:#7F7F7F;
  7204. }
  7205. #u234 .text {
  7206. position:absolute;
  7207. align-self:center;
  7208. padding:0px 0px 0px 0px;
  7209. box-sizing:border-box;
  7210. width:100%;
  7211. }
  7212. #u234_text {
  7213. border-width:0px;
  7214. white-space:nowrap;
  7215. text-transform:none;
  7216. }
  7217. #u235 {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:0px;
  7221. top:0px;
  7222. width:0px;
  7223. height:0px;
  7224. }
  7225. #u236_div {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:0px;
  7229. top:0px;
  7230. width:240px;
  7231. height:80px;
  7232. background:inherit;
  7233. background-color:rgba(242, 242, 242, 1);
  7234. border:none;
  7235. border-radius:0px;
  7236. -moz-box-shadow:none;
  7237. -webkit-box-shadow:none;
  7238. box-shadow:none;
  7239. }
  7240. #u236 {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:153px;
  7244. top:1036px;
  7245. width:240px;
  7246. height:80px;
  7247. display:flex;
  7248. }
  7249. #u236 .text {
  7250. position:absolute;
  7251. align-self:center;
  7252. padding:2px 2px 2px 2px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u236_text {
  7257. border-width:0px;
  7258. word-wrap:break-word;
  7259. text-transform:none;
  7260. visibility:hidden;
  7261. }
  7262. #u237_img {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:0px;
  7266. top:0px;
  7267. width:50px;
  7268. height:53px;
  7269. }
  7270. #u237 {
  7271. border-width:0px;
  7272. position:absolute;
  7273. left:169px;
  7274. top:1049px;
  7275. width:50px;
  7276. height:53px;
  7277. display:flex;
  7278. }
  7279. #u237 .text {
  7280. position:absolute;
  7281. align-self:center;
  7282. padding:2px 2px 2px 2px;
  7283. box-sizing:border-box;
  7284. width:100%;
  7285. }
  7286. #u237_text {
  7287. border-width:0px;
  7288. word-wrap:break-word;
  7289. text-transform:none;
  7290. visibility:hidden;
  7291. }
  7292. #u238 {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:0px;
  7296. top:0px;
  7297. width:0px;
  7298. height:0px;
  7299. }
  7300. #u239_div {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:0px;
  7304. top:0px;
  7305. width:73px;
  7306. height:25px;
  7307. background:inherit;
  7308. background-color:rgba(255, 255, 255, 0);
  7309. border:none;
  7310. border-left:0px;
  7311. border-top:0px;
  7312. border-right:0px;
  7313. border-radius:0px;
  7314. border-bottom-right-radius:0px;
  7315. border-bottom-left-radius:0px;
  7316. -moz-box-shadow:none;
  7317. -webkit-box-shadow:none;
  7318. box-shadow:none;
  7319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:18px;
  7323. }
  7324. #u239 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:234px;
  7328. top:1052px;
  7329. width:73px;
  7330. height:25px;
  7331. display:flex;
  7332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7333. font-weight:400;
  7334. font-style:normal;
  7335. font-size:18px;
  7336. }
  7337. #u239 .text {
  7338. position:absolute;
  7339. align-self:center;
  7340. padding:0px 0px 0px 0px;
  7341. box-sizing:border-box;
  7342. width:100%;
  7343. }
  7344. #u239_text {
  7345. border-width:0px;
  7346. white-space:nowrap;
  7347. text-transform:none;
  7348. }
  7349. #u240_div {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:121px;
  7355. height:17px;
  7356. background:inherit;
  7357. background-color:rgba(255, 255, 255, 0);
  7358. border:none;
  7359. border-left:0px;
  7360. border-top:0px;
  7361. border-right:0px;
  7362. border-radius:0px;
  7363. border-bottom-right-radius:0px;
  7364. border-bottom-left-radius:0px;
  7365. -moz-box-shadow:none;
  7366. -webkit-box-shadow:none;
  7367. box-shadow:none;
  7368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7369. font-weight:400;
  7370. font-style:normal;
  7371. font-size:12px;
  7372. color:#7F7F7F;
  7373. }
  7374. #u240 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:234px;
  7378. top:1082px;
  7379. width:121px;
  7380. height:17px;
  7381. display:flex;
  7382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7383. font-weight:400;
  7384. font-style:normal;
  7385. font-size:12px;
  7386. color:#7F7F7F;
  7387. }
  7388. #u240 .text {
  7389. position:absolute;
  7390. align-self:center;
  7391. padding:0px 0px 0px 0px;
  7392. box-sizing:border-box;
  7393. width:100%;
  7394. }
  7395. #u240_text {
  7396. border-width:0px;
  7397. white-space:nowrap;
  7398. text-transform:none;
  7399. }
  7400. #u241 {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:0px;
  7404. top:0px;
  7405. width:0px;
  7406. height:0px;
  7407. }
  7408. #u242_div {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:0px;
  7412. top:0px;
  7413. width:240px;
  7414. height:80px;
  7415. background:inherit;
  7416. background-color:rgba(242, 242, 242, 1);
  7417. border:none;
  7418. border-radius:0px;
  7419. -moz-box-shadow:none;
  7420. -webkit-box-shadow:none;
  7421. box-shadow:none;
  7422. }
  7423. #u242 {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:423px;
  7427. top:936px;
  7428. width:240px;
  7429. height:80px;
  7430. display:flex;
  7431. }
  7432. #u242 .text {
  7433. position:absolute;
  7434. align-self:center;
  7435. padding:2px 2px 2px 2px;
  7436. box-sizing:border-box;
  7437. width:100%;
  7438. }
  7439. #u242_text {
  7440. border-width:0px;
  7441. word-wrap:break-word;
  7442. text-transform:none;
  7443. visibility:hidden;
  7444. }
  7445. #u243_img {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:0px;
  7449. top:0px;
  7450. width:50px;
  7451. height:53px;
  7452. }
  7453. #u243 {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:439px;
  7457. top:949px;
  7458. width:50px;
  7459. height:53px;
  7460. display:flex;
  7461. }
  7462. #u243 .text {
  7463. position:absolute;
  7464. align-self:center;
  7465. padding:2px 2px 2px 2px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u243_text {
  7470. border-width:0px;
  7471. word-wrap:break-word;
  7472. text-transform:none;
  7473. visibility:hidden;
  7474. }
  7475. #u244 {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:0px;
  7479. top:0px;
  7480. width:0px;
  7481. height:0px;
  7482. }
  7483. #u245_div {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:0px;
  7487. top:0px;
  7488. width:73px;
  7489. height:25px;
  7490. background:inherit;
  7491. background-color:rgba(255, 255, 255, 0);
  7492. border:none;
  7493. border-left:0px;
  7494. border-top:0px;
  7495. border-right:0px;
  7496. border-radius:0px;
  7497. border-bottom-right-radius:0px;
  7498. border-bottom-left-radius:0px;
  7499. -moz-box-shadow:none;
  7500. -webkit-box-shadow:none;
  7501. box-shadow:none;
  7502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7503. font-weight:400;
  7504. font-style:normal;
  7505. font-size:18px;
  7506. }
  7507. #u245 {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:504px;
  7511. top:952px;
  7512. width:73px;
  7513. height:25px;
  7514. display:flex;
  7515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7516. font-weight:400;
  7517. font-style:normal;
  7518. font-size:18px;
  7519. }
  7520. #u245 .text {
  7521. position:absolute;
  7522. align-self:center;
  7523. padding:0px 0px 0px 0px;
  7524. box-sizing:border-box;
  7525. width:100%;
  7526. }
  7527. #u245_text {
  7528. border-width:0px;
  7529. white-space:nowrap;
  7530. text-transform:none;
  7531. }
  7532. #u246_div {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:109px;
  7538. height:17px;
  7539. background:inherit;
  7540. background-color:rgba(255, 255, 255, 0);
  7541. border:none;
  7542. border-left:0px;
  7543. border-top:0px;
  7544. border-right:0px;
  7545. border-radius:0px;
  7546. border-bottom-right-radius:0px;
  7547. border-bottom-left-radius:0px;
  7548. -moz-box-shadow:none;
  7549. -webkit-box-shadow:none;
  7550. box-shadow:none;
  7551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7552. font-weight:400;
  7553. font-style:normal;
  7554. font-size:12px;
  7555. color:#7F7F7F;
  7556. }
  7557. #u246 {
  7558. border-width:0px;
  7559. position:absolute;
  7560. left:504px;
  7561. top:982px;
  7562. width:109px;
  7563. height:17px;
  7564. display:flex;
  7565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7566. font-weight:400;
  7567. font-style:normal;
  7568. font-size:12px;
  7569. color:#7F7F7F;
  7570. }
  7571. #u246 .text {
  7572. position:absolute;
  7573. align-self:center;
  7574. padding:0px 0px 0px 0px;
  7575. box-sizing:border-box;
  7576. width:100%;
  7577. }
  7578. #u246_text {
  7579. border-width:0px;
  7580. white-space:nowrap;
  7581. text-transform:none;
  7582. }
  7583. #u247 {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:0px;
  7587. top:0px;
  7588. width:0px;
  7589. height:0px;
  7590. }
  7591. #u248_div {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:0px;
  7595. top:0px;
  7596. width:240px;
  7597. height:80px;
  7598. background:inherit;
  7599. background-color:rgba(242, 242, 242, 1);
  7600. border:none;
  7601. border-radius:0px;
  7602. -moz-box-shadow:none;
  7603. -webkit-box-shadow:none;
  7604. box-shadow:none;
  7605. }
  7606. #u248 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:423px;
  7610. top:1036px;
  7611. width:240px;
  7612. height:80px;
  7613. display:flex;
  7614. }
  7615. #u248 .text {
  7616. position:absolute;
  7617. align-self:center;
  7618. padding:2px 2px 2px 2px;
  7619. box-sizing:border-box;
  7620. width:100%;
  7621. }
  7622. #u248_text {
  7623. border-width:0px;
  7624. word-wrap:break-word;
  7625. text-transform:none;
  7626. visibility:hidden;
  7627. }
  7628. #u249_img {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:0px;
  7632. top:0px;
  7633. width:50px;
  7634. height:53px;
  7635. }
  7636. #u249 {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:439px;
  7640. top:1049px;
  7641. width:50px;
  7642. height:53px;
  7643. display:flex;
  7644. }
  7645. #u249 .text {
  7646. position:absolute;
  7647. align-self:center;
  7648. padding:2px 2px 2px 2px;
  7649. box-sizing:border-box;
  7650. width:100%;
  7651. }
  7652. #u249_text {
  7653. border-width:0px;
  7654. word-wrap:break-word;
  7655. text-transform:none;
  7656. visibility:hidden;
  7657. }
  7658. #u250 {
  7659. border-width:0px;
  7660. position:absolute;
  7661. left:0px;
  7662. top:0px;
  7663. width:0px;
  7664. height:0px;
  7665. }
  7666. #u251_div {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:73px;
  7672. height:25px;
  7673. background:inherit;
  7674. background-color:rgba(255, 255, 255, 0);
  7675. border:none;
  7676. border-left:0px;
  7677. border-top:0px;
  7678. border-right:0px;
  7679. border-radius:0px;
  7680. border-bottom-right-radius:0px;
  7681. border-bottom-left-radius:0px;
  7682. -moz-box-shadow:none;
  7683. -webkit-box-shadow:none;
  7684. box-shadow:none;
  7685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7686. font-weight:400;
  7687. font-style:normal;
  7688. font-size:18px;
  7689. }
  7690. #u251 {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:504px;
  7694. top:1052px;
  7695. width:73px;
  7696. height:25px;
  7697. display:flex;
  7698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:18px;
  7702. }
  7703. #u251 .text {
  7704. position:absolute;
  7705. align-self:center;
  7706. padding:0px 0px 0px 0px;
  7707. box-sizing:border-box;
  7708. width:100%;
  7709. }
  7710. #u251_text {
  7711. border-width:0px;
  7712. white-space:nowrap;
  7713. text-transform:none;
  7714. }
  7715. #u252_div {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:0px;
  7719. top:0px;
  7720. width:169px;
  7721. height:17px;
  7722. background:inherit;
  7723. background-color:rgba(255, 255, 255, 0);
  7724. border:none;
  7725. border-left:0px;
  7726. border-top:0px;
  7727. border-right:0px;
  7728. border-radius:0px;
  7729. border-bottom-right-radius:0px;
  7730. border-bottom-left-radius:0px;
  7731. -moz-box-shadow:none;
  7732. -webkit-box-shadow:none;
  7733. box-shadow:none;
  7734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7735. font-weight:400;
  7736. font-style:normal;
  7737. font-size:12px;
  7738. color:#7F7F7F;
  7739. }
  7740. #u252 {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:504px;
  7744. top:1082px;
  7745. width:169px;
  7746. height:17px;
  7747. display:flex;
  7748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7749. font-weight:400;
  7750. font-style:normal;
  7751. font-size:12px;
  7752. color:#7F7F7F;
  7753. }
  7754. #u252 .text {
  7755. position:absolute;
  7756. align-self:center;
  7757. padding:0px 0px 0px 0px;
  7758. box-sizing:border-box;
  7759. width:100%;
  7760. }
  7761. #u252_text {
  7762. border-width:0px;
  7763. white-space:nowrap;
  7764. text-transform:none;
  7765. }
  7766. #u253 {
  7767. border-width:0px;
  7768. position:absolute;
  7769. left:0px;
  7770. top:0px;
  7771. width:0px;
  7772. height:0px;
  7773. }
  7774. #u254_div {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:0px;
  7778. top:0px;
  7779. width:240px;
  7780. height:80px;
  7781. background:inherit;
  7782. background-color:rgba(242, 242, 242, 1);
  7783. border:none;
  7784. border-radius:0px;
  7785. -moz-box-shadow:none;
  7786. -webkit-box-shadow:none;
  7787. box-shadow:none;
  7788. }
  7789. #u254 {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:694px;
  7793. top:1036px;
  7794. width:240px;
  7795. height:80px;
  7796. display:flex;
  7797. }
  7798. #u254 .text {
  7799. position:absolute;
  7800. align-self:center;
  7801. padding:2px 2px 2px 2px;
  7802. box-sizing:border-box;
  7803. width:100%;
  7804. }
  7805. #u254_text {
  7806. border-width:0px;
  7807. word-wrap:break-word;
  7808. text-transform:none;
  7809. visibility:hidden;
  7810. }
  7811. #u255_img {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:50px;
  7817. height:53px;
  7818. }
  7819. #u255 {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:710px;
  7823. top:1049px;
  7824. width:50px;
  7825. height:53px;
  7826. display:flex;
  7827. }
  7828. #u255 .text {
  7829. position:absolute;
  7830. align-self:center;
  7831. padding:2px 2px 2px 2px;
  7832. box-sizing:border-box;
  7833. width:100%;
  7834. }
  7835. #u255_text {
  7836. border-width:0px;
  7837. word-wrap:break-word;
  7838. text-transform:none;
  7839. visibility:hidden;
  7840. }
  7841. #u256 {
  7842. border-width:0px;
  7843. position:absolute;
  7844. left:0px;
  7845. top:0px;
  7846. width:0px;
  7847. height:0px;
  7848. }
  7849. #u257_div {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:0px;
  7853. top:0px;
  7854. width:73px;
  7855. height:25px;
  7856. background:inherit;
  7857. background-color:rgba(255, 255, 255, 0);
  7858. border:none;
  7859. border-left:0px;
  7860. border-top:0px;
  7861. border-right:0px;
  7862. border-radius:0px;
  7863. border-bottom-right-radius:0px;
  7864. border-bottom-left-radius:0px;
  7865. -moz-box-shadow:none;
  7866. -webkit-box-shadow:none;
  7867. box-shadow:none;
  7868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7869. font-weight:400;
  7870. font-style:normal;
  7871. font-size:18px;
  7872. }
  7873. #u257 {
  7874. border-width:0px;
  7875. position:absolute;
  7876. left:775px;
  7877. top:1052px;
  7878. width:73px;
  7879. height:25px;
  7880. display:flex;
  7881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7882. font-weight:400;
  7883. font-style:normal;
  7884. font-size:18px;
  7885. }
  7886. #u257 .text {
  7887. position:absolute;
  7888. align-self:center;
  7889. padding:0px 0px 0px 0px;
  7890. box-sizing:border-box;
  7891. width:100%;
  7892. }
  7893. #u257_text {
  7894. border-width:0px;
  7895. white-space:nowrap;
  7896. text-transform:none;
  7897. }
  7898. #u258_div {
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:0px;
  7902. top:0px;
  7903. width:169px;
  7904. height:17px;
  7905. background:inherit;
  7906. background-color:rgba(255, 255, 255, 0);
  7907. border:none;
  7908. border-left:0px;
  7909. border-top:0px;
  7910. border-right:0px;
  7911. border-radius:0px;
  7912. border-bottom-right-radius:0px;
  7913. border-bottom-left-radius:0px;
  7914. -moz-box-shadow:none;
  7915. -webkit-box-shadow:none;
  7916. box-shadow:none;
  7917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7918. font-weight:400;
  7919. font-style:normal;
  7920. font-size:12px;
  7921. color:#7F7F7F;
  7922. }
  7923. #u258 {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:775px;
  7927. top:1082px;
  7928. width:169px;
  7929. height:17px;
  7930. display:flex;
  7931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7932. font-weight:400;
  7933. font-style:normal;
  7934. font-size:12px;
  7935. color:#7F7F7F;
  7936. }
  7937. #u258 .text {
  7938. position:absolute;
  7939. align-self:center;
  7940. padding:0px 0px 0px 0px;
  7941. box-sizing:border-box;
  7942. width:100%;
  7943. }
  7944. #u258_text {
  7945. border-width:0px;
  7946. white-space:nowrap;
  7947. text-transform:none;
  7948. }
  7949. #u259 {
  7950. border-width:0px;
  7951. position:absolute;
  7952. left:0px;
  7953. top:0px;
  7954. width:0px;
  7955. height:0px;
  7956. }
  7957. #u260_div {
  7958. border-width:0px;
  7959. position:absolute;
  7960. left:0px;
  7961. top:0px;
  7962. width:240px;
  7963. height:80px;
  7964. background:inherit;
  7965. background-color:rgba(242, 242, 242, 1);
  7966. border:none;
  7967. border-radius:0px;
  7968. -moz-box-shadow:none;
  7969. -webkit-box-shadow:none;
  7970. box-shadow:none;
  7971. }
  7972. #u260 {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:964px;
  7976. top:936px;
  7977. width:240px;
  7978. height:80px;
  7979. display:flex;
  7980. }
  7981. #u260 .text {
  7982. position:absolute;
  7983. align-self:center;
  7984. padding:2px 2px 2px 2px;
  7985. box-sizing:border-box;
  7986. width:100%;
  7987. }
  7988. #u260_text {
  7989. border-width:0px;
  7990. word-wrap:break-word;
  7991. text-transform:none;
  7992. visibility:hidden;
  7993. }
  7994. #u261_img {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:50px;
  8000. height:53px;
  8001. }
  8002. #u261 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:980px;
  8006. top:949px;
  8007. width:50px;
  8008. height:53px;
  8009. display:flex;
  8010. }
  8011. #u261 .text {
  8012. position:absolute;
  8013. align-self:center;
  8014. padding:2px 2px 2px 2px;
  8015. box-sizing:border-box;
  8016. width:100%;
  8017. }
  8018. #u261_text {
  8019. border-width:0px;
  8020. word-wrap:break-word;
  8021. text-transform:none;
  8022. visibility:hidden;
  8023. }
  8024. #u262 {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:0px;
  8028. top:0px;
  8029. width:0px;
  8030. height:0px;
  8031. }
  8032. #u263_div {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:0px;
  8036. top:0px;
  8037. width:73px;
  8038. height:25px;
  8039. background:inherit;
  8040. background-color:rgba(255, 255, 255, 0);
  8041. border:none;
  8042. border-left:0px;
  8043. border-top:0px;
  8044. border-right:0px;
  8045. border-radius:0px;
  8046. border-bottom-right-radius:0px;
  8047. border-bottom-left-radius:0px;
  8048. -moz-box-shadow:none;
  8049. -webkit-box-shadow:none;
  8050. box-shadow:none;
  8051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8052. font-weight:400;
  8053. font-style:normal;
  8054. font-size:18px;
  8055. }
  8056. #u263 {
  8057. border-width:0px;
  8058. position:absolute;
  8059. left:1045px;
  8060. top:952px;
  8061. width:73px;
  8062. height:25px;
  8063. display:flex;
  8064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8065. font-weight:400;
  8066. font-style:normal;
  8067. font-size:18px;
  8068. }
  8069. #u263 .text {
  8070. position:absolute;
  8071. align-self:center;
  8072. padding:0px 0px 0px 0px;
  8073. box-sizing:border-box;
  8074. width:100%;
  8075. }
  8076. #u263_text {
  8077. border-width:0px;
  8078. white-space:nowrap;
  8079. text-transform:none;
  8080. }
  8081. #u264_div {
  8082. border-width:0px;
  8083. position:absolute;
  8084. left:0px;
  8085. top:0px;
  8086. width:205px;
  8087. height:17px;
  8088. background:inherit;
  8089. background-color:rgba(255, 255, 255, 0);
  8090. border:none;
  8091. border-left:0px;
  8092. border-top:0px;
  8093. border-right:0px;
  8094. border-radius:0px;
  8095. border-bottom-right-radius:0px;
  8096. border-bottom-left-radius:0px;
  8097. -moz-box-shadow:none;
  8098. -webkit-box-shadow:none;
  8099. box-shadow:none;
  8100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:12px;
  8104. color:#7F7F7F;
  8105. }
  8106. #u264 {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:1045px;
  8110. top:982px;
  8111. width:205px;
  8112. height:17px;
  8113. display:flex;
  8114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8115. font-weight:400;
  8116. font-style:normal;
  8117. font-size:12px;
  8118. color:#7F7F7F;
  8119. }
  8120. #u264 .text {
  8121. position:absolute;
  8122. align-self:center;
  8123. padding:0px 0px 0px 0px;
  8124. box-sizing:border-box;
  8125. width:100%;
  8126. }
  8127. #u264_text {
  8128. border-width:0px;
  8129. white-space:nowrap;
  8130. text-transform:none;
  8131. }
  8132. #u265 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:0px;
  8138. height:0px;
  8139. }
  8140. #u266_div {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:0px;
  8144. top:0px;
  8145. width:240px;
  8146. height:80px;
  8147. background:inherit;
  8148. background-color:rgba(242, 242, 242, 1);
  8149. border:none;
  8150. border-radius:0px;
  8151. -moz-box-shadow:none;
  8152. -webkit-box-shadow:none;
  8153. box-shadow:none;
  8154. }
  8155. #u266 {
  8156. border-width:0px;
  8157. position:absolute;
  8158. left:423px;
  8159. top:736px;
  8160. width:240px;
  8161. height:80px;
  8162. display:flex;
  8163. }
  8164. #u266 .text {
  8165. position:absolute;
  8166. align-self:center;
  8167. padding:2px 2px 2px 2px;
  8168. box-sizing:border-box;
  8169. width:100%;
  8170. }
  8171. #u266_text {
  8172. border-width:0px;
  8173. word-wrap:break-word;
  8174. text-transform:none;
  8175. visibility:hidden;
  8176. }
  8177. #u267_img {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:0px;
  8181. top:0px;
  8182. width:50px;
  8183. height:53px;
  8184. }
  8185. #u267 {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:439px;
  8189. top:749px;
  8190. width:50px;
  8191. height:53px;
  8192. display:flex;
  8193. }
  8194. #u267 .text {
  8195. position:absolute;
  8196. align-self:center;
  8197. padding:2px 2px 2px 2px;
  8198. box-sizing:border-box;
  8199. width:100%;
  8200. }
  8201. #u267_text {
  8202. border-width:0px;
  8203. word-wrap:break-word;
  8204. text-transform:none;
  8205. visibility:hidden;
  8206. }
  8207. #u268 {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:0px;
  8211. top:0px;
  8212. width:0px;
  8213. height:0px;
  8214. }
  8215. #u269_div {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:0px;
  8219. top:0px;
  8220. width:73px;
  8221. height:25px;
  8222. background:inherit;
  8223. background-color:rgba(255, 255, 255, 0);
  8224. border:none;
  8225. border-left:0px;
  8226. border-top:0px;
  8227. border-right:0px;
  8228. border-radius:0px;
  8229. border-bottom-right-radius:0px;
  8230. border-bottom-left-radius:0px;
  8231. -moz-box-shadow:none;
  8232. -webkit-box-shadow:none;
  8233. box-shadow:none;
  8234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8235. font-weight:400;
  8236. font-style:normal;
  8237. font-size:18px;
  8238. }
  8239. #u269 {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:504px;
  8243. top:752px;
  8244. width:73px;
  8245. height:25px;
  8246. display:flex;
  8247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8248. font-weight:400;
  8249. font-style:normal;
  8250. font-size:18px;
  8251. }
  8252. #u269 .text {
  8253. position:absolute;
  8254. align-self:center;
  8255. padding:0px 0px 0px 0px;
  8256. box-sizing:border-box;
  8257. width:100%;
  8258. }
  8259. #u269_text {
  8260. border-width:0px;
  8261. white-space:nowrap;
  8262. text-transform:none;
  8263. }
  8264. #u270_div {
  8265. border-width:0px;
  8266. position:absolute;
  8267. left:0px;
  8268. top:0px;
  8269. width:145px;
  8270. height:17px;
  8271. background:inherit;
  8272. background-color:rgba(255, 255, 255, 0);
  8273. border:none;
  8274. border-left:0px;
  8275. border-top:0px;
  8276. border-right:0px;
  8277. border-radius:0px;
  8278. border-bottom-right-radius:0px;
  8279. border-bottom-left-radius:0px;
  8280. -moz-box-shadow:none;
  8281. -webkit-box-shadow:none;
  8282. box-shadow:none;
  8283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8284. font-weight:400;
  8285. font-style:normal;
  8286. font-size:12px;
  8287. color:#7F7F7F;
  8288. }
  8289. #u270 {
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:504px;
  8293. top:782px;
  8294. width:145px;
  8295. height:17px;
  8296. display:flex;
  8297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8298. font-weight:400;
  8299. font-style:normal;
  8300. font-size:12px;
  8301. color:#7F7F7F;
  8302. }
  8303. #u270 .text {
  8304. position:absolute;
  8305. align-self:center;
  8306. padding:0px 0px 0px 0px;
  8307. box-sizing:border-box;
  8308. width:100%;
  8309. }
  8310. #u270_text {
  8311. border-width:0px;
  8312. white-space:nowrap;
  8313. text-transform:none;
  8314. }
  8315. #u271 {
  8316. border-width:0px;
  8317. position:absolute;
  8318. left:0px;
  8319. top:0px;
  8320. width:0px;
  8321. height:0px;
  8322. }
  8323. #u272_div {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:0px;
  8327. top:0px;
  8328. width:240px;
  8329. height:80px;
  8330. background:inherit;
  8331. background-color:rgba(242, 242, 242, 1);
  8332. border:none;
  8333. border-radius:0px;
  8334. -moz-box-shadow:none;
  8335. -webkit-box-shadow:none;
  8336. box-shadow:none;
  8337. }
  8338. #u272 {
  8339. border-width:0px;
  8340. position:absolute;
  8341. left:693px;
  8342. top:736px;
  8343. width:240px;
  8344. height:80px;
  8345. display:flex;
  8346. }
  8347. #u272 .text {
  8348. position:absolute;
  8349. align-self:center;
  8350. padding:2px 2px 2px 2px;
  8351. box-sizing:border-box;
  8352. width:100%;
  8353. }
  8354. #u272_text {
  8355. border-width:0px;
  8356. word-wrap:break-word;
  8357. text-transform:none;
  8358. visibility:hidden;
  8359. }
  8360. #u273_img {
  8361. border-width:0px;
  8362. position:absolute;
  8363. left:0px;
  8364. top:0px;
  8365. width:50px;
  8366. height:53px;
  8367. }
  8368. #u273 {
  8369. border-width:0px;
  8370. position:absolute;
  8371. left:709px;
  8372. top:749px;
  8373. width:50px;
  8374. height:53px;
  8375. display:flex;
  8376. }
  8377. #u273 .text {
  8378. position:absolute;
  8379. align-self:center;
  8380. padding:2px 2px 2px 2px;
  8381. box-sizing:border-box;
  8382. width:100%;
  8383. }
  8384. #u273_text {
  8385. border-width:0px;
  8386. word-wrap:break-word;
  8387. text-transform:none;
  8388. visibility:hidden;
  8389. }
  8390. #u274 {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:0px;
  8394. top:0px;
  8395. width:0px;
  8396. height:0px;
  8397. }
  8398. #u275_div {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:0px;
  8402. top:0px;
  8403. width:73px;
  8404. height:25px;
  8405. background:inherit;
  8406. background-color:rgba(255, 255, 255, 0);
  8407. border:none;
  8408. border-left:0px;
  8409. border-top:0px;
  8410. border-right:0px;
  8411. border-radius:0px;
  8412. border-bottom-right-radius:0px;
  8413. border-bottom-left-radius:0px;
  8414. -moz-box-shadow:none;
  8415. -webkit-box-shadow:none;
  8416. box-shadow:none;
  8417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8418. font-weight:400;
  8419. font-style:normal;
  8420. font-size:18px;
  8421. }
  8422. #u275 {
  8423. border-width:0px;
  8424. position:absolute;
  8425. left:774px;
  8426. top:752px;
  8427. width:73px;
  8428. height:25px;
  8429. display:flex;
  8430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8431. font-weight:400;
  8432. font-style:normal;
  8433. font-size:18px;
  8434. }
  8435. #u275 .text {
  8436. position:absolute;
  8437. align-self:center;
  8438. padding:0px 0px 0px 0px;
  8439. box-sizing:border-box;
  8440. width:100%;
  8441. }
  8442. #u275_text {
  8443. border-width:0px;
  8444. white-space:nowrap;
  8445. text-transform:none;
  8446. }
  8447. #u276_div {
  8448. border-width:0px;
  8449. position:absolute;
  8450. left:0px;
  8451. top:0px;
  8452. width:241px;
  8453. height:17px;
  8454. background:inherit;
  8455. background-color:rgba(255, 255, 255, 0);
  8456. border:none;
  8457. border-left:0px;
  8458. border-top:0px;
  8459. border-right:0px;
  8460. border-radius:0px;
  8461. border-bottom-right-radius:0px;
  8462. border-bottom-left-radius:0px;
  8463. -moz-box-shadow:none;
  8464. -webkit-box-shadow:none;
  8465. box-shadow:none;
  8466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8467. font-weight:400;
  8468. font-style:normal;
  8469. font-size:12px;
  8470. color:#7F7F7F;
  8471. }
  8472. #u276 {
  8473. border-width:0px;
  8474. position:absolute;
  8475. left:774px;
  8476. top:782px;
  8477. width:241px;
  8478. height:17px;
  8479. display:flex;
  8480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8481. font-weight:400;
  8482. font-style:normal;
  8483. font-size:12px;
  8484. color:#7F7F7F;
  8485. }
  8486. #u276 .text {
  8487. position:absolute;
  8488. align-self:center;
  8489. padding:0px 0px 0px 0px;
  8490. box-sizing:border-box;
  8491. width:100%;
  8492. }
  8493. #u276_text {
  8494. border-width:0px;
  8495. white-space:nowrap;
  8496. text-transform:none;
  8497. }
  8498. #u277 {
  8499. border-width:0px;
  8500. position:absolute;
  8501. left:0px;
  8502. top:0px;
  8503. width:0px;
  8504. height:0px;
  8505. }
  8506. #u278_div {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:0px;
  8510. top:0px;
  8511. width:240px;
  8512. height:80px;
  8513. background:inherit;
  8514. background-color:rgba(242, 242, 242, 1);
  8515. border:none;
  8516. border-radius:0px;
  8517. -moz-box-shadow:none;
  8518. -webkit-box-shadow:none;
  8519. box-shadow:none;
  8520. }
  8521. #u278 {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:153px;
  8525. top:736px;
  8526. width:240px;
  8527. height:80px;
  8528. display:flex;
  8529. }
  8530. #u278 .text {
  8531. position:absolute;
  8532. align-self:center;
  8533. padding:2px 2px 2px 2px;
  8534. box-sizing:border-box;
  8535. width:100%;
  8536. }
  8537. #u278_text {
  8538. border-width:0px;
  8539. word-wrap:break-word;
  8540. text-transform:none;
  8541. visibility:hidden;
  8542. }
  8543. #u279_img {
  8544. border-width:0px;
  8545. position:absolute;
  8546. left:0px;
  8547. top:0px;
  8548. width:50px;
  8549. height:53px;
  8550. }
  8551. #u279 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:169px;
  8555. top:749px;
  8556. width:50px;
  8557. height:53px;
  8558. display:flex;
  8559. }
  8560. #u279 .text {
  8561. position:absolute;
  8562. align-self:center;
  8563. padding:2px 2px 2px 2px;
  8564. box-sizing:border-box;
  8565. width:100%;
  8566. }
  8567. #u279_text {
  8568. border-width:0px;
  8569. word-wrap:break-word;
  8570. text-transform:none;
  8571. visibility:hidden;
  8572. }
  8573. #u280 {
  8574. border-width:0px;
  8575. position:absolute;
  8576. left:0px;
  8577. top:0px;
  8578. width:0px;
  8579. height:0px;
  8580. }
  8581. #u281_div {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:0px;
  8585. top:0px;
  8586. width:91px;
  8587. height:25px;
  8588. background:inherit;
  8589. background-color:rgba(255, 255, 255, 0);
  8590. border:none;
  8591. border-left:0px;
  8592. border-top:0px;
  8593. border-right:0px;
  8594. border-radius:0px;
  8595. border-bottom-right-radius:0px;
  8596. border-bottom-left-radius:0px;
  8597. -moz-box-shadow:none;
  8598. -webkit-box-shadow:none;
  8599. box-shadow:none;
  8600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8601. font-weight:400;
  8602. font-style:normal;
  8603. font-size:18px;
  8604. }
  8605. #u281 {
  8606. border-width:0px;
  8607. position:absolute;
  8608. left:234px;
  8609. top:752px;
  8610. width:91px;
  8611. height:25px;
  8612. display:flex;
  8613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8614. font-weight:400;
  8615. font-style:normal;
  8616. font-size:18px;
  8617. }
  8618. #u281 .text {
  8619. position:absolute;
  8620. align-self:center;
  8621. padding:0px 0px 0px 0px;
  8622. box-sizing:border-box;
  8623. width:100%;
  8624. }
  8625. #u281_text {
  8626. border-width:0px;
  8627. white-space:nowrap;
  8628. text-transform:none;
  8629. }
  8630. #u282_div {
  8631. border-width:0px;
  8632. position:absolute;
  8633. left:0px;
  8634. top:0px;
  8635. width:145px;
  8636. height:17px;
  8637. background:inherit;
  8638. background-color:rgba(255, 255, 255, 0);
  8639. border:none;
  8640. border-left:0px;
  8641. border-top:0px;
  8642. border-right:0px;
  8643. border-radius:0px;
  8644. border-bottom-right-radius:0px;
  8645. border-bottom-left-radius:0px;
  8646. -moz-box-shadow:none;
  8647. -webkit-box-shadow:none;
  8648. box-shadow:none;
  8649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8650. font-weight:400;
  8651. font-style:normal;
  8652. font-size:12px;
  8653. color:#7F7F7F;
  8654. }
  8655. #u282 {
  8656. border-width:0px;
  8657. position:absolute;
  8658. left:234px;
  8659. top:782px;
  8660. width:145px;
  8661. height:17px;
  8662. display:flex;
  8663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8664. font-weight:400;
  8665. font-style:normal;
  8666. font-size:12px;
  8667. color:#7F7F7F;
  8668. }
  8669. #u282 .text {
  8670. position:absolute;
  8671. align-self:center;
  8672. padding:0px 0px 0px 0px;
  8673. box-sizing:border-box;
  8674. width:100%;
  8675. }
  8676. #u282_text {
  8677. border-width:0px;
  8678. white-space:nowrap;
  8679. text-transform:none;
  8680. }
  8681. #u283 {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:0px;
  8685. top:0px;
  8686. width:0px;
  8687. height:0px;
  8688. }
  8689. #u284_div {
  8690. border-width:0px;
  8691. position:absolute;
  8692. left:0px;
  8693. top:0px;
  8694. width:240px;
  8695. height:80px;
  8696. background:inherit;
  8697. background-color:rgba(242, 242, 242, 1);
  8698. border:none;
  8699. border-radius:0px;
  8700. -moz-box-shadow:none;
  8701. -webkit-box-shadow:none;
  8702. box-shadow:none;
  8703. }
  8704. #u284 {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:153px;
  8708. top:936px;
  8709. width:240px;
  8710. height:80px;
  8711. display:flex;
  8712. }
  8713. #u284 .text {
  8714. position:absolute;
  8715. align-self:center;
  8716. padding:2px 2px 2px 2px;
  8717. box-sizing:border-box;
  8718. width:100%;
  8719. }
  8720. #u284_text {
  8721. border-width:0px;
  8722. word-wrap:break-word;
  8723. text-transform:none;
  8724. visibility:hidden;
  8725. }
  8726. #u285_img {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:0px;
  8730. top:0px;
  8731. width:50px;
  8732. height:53px;
  8733. }
  8734. #u285 {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:169px;
  8738. top:949px;
  8739. width:50px;
  8740. height:53px;
  8741. display:flex;
  8742. }
  8743. #u285 .text {
  8744. position:absolute;
  8745. align-self:center;
  8746. padding:2px 2px 2px 2px;
  8747. box-sizing:border-box;
  8748. width:100%;
  8749. }
  8750. #u285_text {
  8751. border-width:0px;
  8752. word-wrap:break-word;
  8753. text-transform:none;
  8754. visibility:hidden;
  8755. }
  8756. #u286 {
  8757. border-width:0px;
  8758. position:absolute;
  8759. left:0px;
  8760. top:0px;
  8761. width:0px;
  8762. height:0px;
  8763. }
  8764. #u287_div {
  8765. border-width:0px;
  8766. position:absolute;
  8767. left:0px;
  8768. top:0px;
  8769. width:73px;
  8770. height:25px;
  8771. background:inherit;
  8772. background-color:rgba(255, 255, 255, 0);
  8773. border:none;
  8774. border-left:0px;
  8775. border-top:0px;
  8776. border-right:0px;
  8777. border-radius:0px;
  8778. border-bottom-right-radius:0px;
  8779. border-bottom-left-radius:0px;
  8780. -moz-box-shadow:none;
  8781. -webkit-box-shadow:none;
  8782. box-shadow:none;
  8783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8784. font-weight:400;
  8785. font-style:normal;
  8786. font-size:18px;
  8787. }
  8788. #u287 {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:234px;
  8792. top:952px;
  8793. width:73px;
  8794. height:25px;
  8795. display:flex;
  8796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8797. font-weight:400;
  8798. font-style:normal;
  8799. font-size:18px;
  8800. }
  8801. #u287 .text {
  8802. position:absolute;
  8803. align-self:center;
  8804. padding:0px 0px 0px 0px;
  8805. box-sizing:border-box;
  8806. width:100%;
  8807. }
  8808. #u287_text {
  8809. border-width:0px;
  8810. white-space:nowrap;
  8811. text-transform:none;
  8812. }
  8813. #u288_div {
  8814. border-width:0px;
  8815. position:absolute;
  8816. left:0px;
  8817. top:0px;
  8818. width:181px;
  8819. height:17px;
  8820. background:inherit;
  8821. background-color:rgba(255, 255, 255, 0);
  8822. border:none;
  8823. border-left:0px;
  8824. border-top:0px;
  8825. border-right:0px;
  8826. border-radius:0px;
  8827. border-bottom-right-radius:0px;
  8828. border-bottom-left-radius:0px;
  8829. -moz-box-shadow:none;
  8830. -webkit-box-shadow:none;
  8831. box-shadow:none;
  8832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8833. font-weight:400;
  8834. font-style:normal;
  8835. font-size:12px;
  8836. color:#7F7F7F;
  8837. }
  8838. #u288 {
  8839. border-width:0px;
  8840. position:absolute;
  8841. left:234px;
  8842. top:982px;
  8843. width:181px;
  8844. height:17px;
  8845. display:flex;
  8846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8847. font-weight:400;
  8848. font-style:normal;
  8849. font-size:12px;
  8850. color:#7F7F7F;
  8851. }
  8852. #u288 .text {
  8853. position:absolute;
  8854. align-self:center;
  8855. padding:0px 0px 0px 0px;
  8856. box-sizing:border-box;
  8857. width:100%;
  8858. }
  8859. #u288_text {
  8860. border-width:0px;
  8861. white-space:nowrap;
  8862. text-transform:none;
  8863. }
  8864. #u289 {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:0px;
  8868. top:0px;
  8869. width:0px;
  8870. height:0px;
  8871. }
  8872. #u290_div {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:0px;
  8876. top:0px;
  8877. width:240px;
  8878. height:80px;
  8879. background:inherit;
  8880. background-color:rgba(242, 242, 242, 1);
  8881. border:none;
  8882. border-radius:0px;
  8883. -moz-box-shadow:none;
  8884. -webkit-box-shadow:none;
  8885. box-shadow:none;
  8886. }
  8887. #u290 {
  8888. border-width:0px;
  8889. position:absolute;
  8890. left:964px;
  8891. top:1036px;
  8892. width:240px;
  8893. height:80px;
  8894. display:flex;
  8895. }
  8896. #u290 .text {
  8897. position:absolute;
  8898. align-self:center;
  8899. padding:2px 2px 2px 2px;
  8900. box-sizing:border-box;
  8901. width:100%;
  8902. }
  8903. #u290_text {
  8904. border-width:0px;
  8905. word-wrap:break-word;
  8906. text-transform:none;
  8907. visibility:hidden;
  8908. }
  8909. #u291_img {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:0px;
  8913. top:0px;
  8914. width:50px;
  8915. height:53px;
  8916. }
  8917. #u291 {
  8918. border-width:0px;
  8919. position:absolute;
  8920. left:980px;
  8921. top:1049px;
  8922. width:50px;
  8923. height:53px;
  8924. display:flex;
  8925. }
  8926. #u291 .text {
  8927. position:absolute;
  8928. align-self:center;
  8929. padding:2px 2px 2px 2px;
  8930. box-sizing:border-box;
  8931. width:100%;
  8932. }
  8933. #u291_text {
  8934. border-width:0px;
  8935. word-wrap:break-word;
  8936. text-transform:none;
  8937. visibility:hidden;
  8938. }
  8939. #u292 {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:0px;
  8943. top:0px;
  8944. width:0px;
  8945. height:0px;
  8946. }
  8947. #u293_div {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:0px;
  8951. top:0px;
  8952. width:109px;
  8953. height:25px;
  8954. background:inherit;
  8955. background-color:rgba(255, 255, 255, 0);
  8956. border:none;
  8957. border-left:0px;
  8958. border-top:0px;
  8959. border-right:0px;
  8960. border-radius:0px;
  8961. border-bottom-right-radius:0px;
  8962. border-bottom-left-radius:0px;
  8963. -moz-box-shadow:none;
  8964. -webkit-box-shadow:none;
  8965. box-shadow:none;
  8966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8967. font-weight:400;
  8968. font-style:normal;
  8969. font-size:18px;
  8970. }
  8971. #u293 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:1045px;
  8975. top:1052px;
  8976. width:109px;
  8977. height:25px;
  8978. display:flex;
  8979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:18px;
  8983. }
  8984. #u293 .text {
  8985. position:absolute;
  8986. align-self:center;
  8987. padding:0px 0px 0px 0px;
  8988. box-sizing:border-box;
  8989. width:100%;
  8990. }
  8991. #u293_text {
  8992. border-width:0px;
  8993. white-space:nowrap;
  8994. text-transform:none;
  8995. }
  8996. #u294_div {
  8997. border-width:0px;
  8998. position:absolute;
  8999. left:0px;
  9000. top:0px;
  9001. width:211px;
  9002. height:17px;
  9003. background:inherit;
  9004. background-color:rgba(255, 255, 255, 0);
  9005. border:none;
  9006. border-left:0px;
  9007. border-top:0px;
  9008. border-right:0px;
  9009. border-radius:0px;
  9010. border-bottom-right-radius:0px;
  9011. border-bottom-left-radius:0px;
  9012. -moz-box-shadow:none;
  9013. -webkit-box-shadow:none;
  9014. box-shadow:none;
  9015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9016. font-weight:400;
  9017. font-style:normal;
  9018. font-size:12px;
  9019. color:#7F7F7F;
  9020. }
  9021. #u294 {
  9022. border-width:0px;
  9023. position:absolute;
  9024. left:1045px;
  9025. top:1082px;
  9026. width:211px;
  9027. height:17px;
  9028. display:flex;
  9029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9030. font-weight:400;
  9031. font-style:normal;
  9032. font-size:12px;
  9033. color:#7F7F7F;
  9034. }
  9035. #u294 .text {
  9036. position:absolute;
  9037. align-self:center;
  9038. padding:0px 0px 0px 0px;
  9039. box-sizing:border-box;
  9040. width:100%;
  9041. }
  9042. #u294_text {
  9043. border-width:0px;
  9044. white-space:nowrap;
  9045. text-transform:none;
  9046. }
  9047. #u295 {
  9048. border-width:0px;
  9049. position:absolute;
  9050. left:0px;
  9051. top:0px;
  9052. width:0px;
  9053. height:0px;
  9054. }
  9055. #u296_div {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:240px;
  9061. height:80px;
  9062. background:inherit;
  9063. background-color:rgba(242, 242, 242, 1);
  9064. border:none;
  9065. border-radius:0px;
  9066. -moz-box-shadow:none;
  9067. -webkit-box-shadow:none;
  9068. box-shadow:none;
  9069. }
  9070. #u296 {
  9071. border-width:0px;
  9072. position:absolute;
  9073. left:1235px;
  9074. top:1036px;
  9075. width:240px;
  9076. height:80px;
  9077. display:flex;
  9078. }
  9079. #u296 .text {
  9080. position:absolute;
  9081. align-self:center;
  9082. padding:2px 2px 2px 2px;
  9083. box-sizing:border-box;
  9084. width:100%;
  9085. }
  9086. #u296_text {
  9087. border-width:0px;
  9088. word-wrap:break-word;
  9089. text-transform:none;
  9090. visibility:hidden;
  9091. }
  9092. #u297_img {
  9093. border-width:0px;
  9094. position:absolute;
  9095. left:0px;
  9096. top:0px;
  9097. width:50px;
  9098. height:53px;
  9099. }
  9100. #u297 {
  9101. border-width:0px;
  9102. position:absolute;
  9103. left:1251px;
  9104. top:1049px;
  9105. width:50px;
  9106. height:53px;
  9107. display:flex;
  9108. }
  9109. #u297 .text {
  9110. position:absolute;
  9111. align-self:center;
  9112. padding:2px 2px 2px 2px;
  9113. box-sizing:border-box;
  9114. width:100%;
  9115. }
  9116. #u297_text {
  9117. border-width:0px;
  9118. word-wrap:break-word;
  9119. text-transform:none;
  9120. visibility:hidden;
  9121. }
  9122. #u298 {
  9123. border-width:0px;
  9124. position:absolute;
  9125. left:0px;
  9126. top:0px;
  9127. width:0px;
  9128. height:0px;
  9129. }
  9130. #u299_div {
  9131. border-width:0px;
  9132. position:absolute;
  9133. left:0px;
  9134. top:0px;
  9135. width:145px;
  9136. height:25px;
  9137. background:inherit;
  9138. background-color:rgba(255, 255, 255, 0);
  9139. border:none;
  9140. border-left:0px;
  9141. border-top:0px;
  9142. border-right:0px;
  9143. border-radius:0px;
  9144. border-bottom-right-radius:0px;
  9145. border-bottom-left-radius:0px;
  9146. -moz-box-shadow:none;
  9147. -webkit-box-shadow:none;
  9148. box-shadow:none;
  9149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9150. font-weight:400;
  9151. font-style:normal;
  9152. font-size:18px;
  9153. }
  9154. #u299 {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:1316px;
  9158. top:1052px;
  9159. width:145px;
  9160. height:25px;
  9161. display:flex;
  9162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9163. font-weight:400;
  9164. font-style:normal;
  9165. font-size:18px;
  9166. }
  9167. #u299 .text {
  9168. position:absolute;
  9169. align-self:center;
  9170. padding:0px 0px 0px 0px;
  9171. box-sizing:border-box;
  9172. width:100%;
  9173. }
  9174. #u299_text {
  9175. border-width:0px;
  9176. white-space:nowrap;
  9177. text-transform:none;
  9178. }
  9179. #u300_div {
  9180. border-width:0px;
  9181. position:absolute;
  9182. left:0px;
  9183. top:0px;
  9184. width:205px;
  9185. height:17px;
  9186. background:inherit;
  9187. background-color:rgba(255, 255, 255, 0);
  9188. border:none;
  9189. border-left:0px;
  9190. border-top:0px;
  9191. border-right:0px;
  9192. border-radius:0px;
  9193. border-bottom-right-radius:0px;
  9194. border-bottom-left-radius:0px;
  9195. -moz-box-shadow:none;
  9196. -webkit-box-shadow:none;
  9197. box-shadow:none;
  9198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9199. font-weight:400;
  9200. font-style:normal;
  9201. font-size:12px;
  9202. color:#7F7F7F;
  9203. }
  9204. #u300 {
  9205. border-width:0px;
  9206. position:absolute;
  9207. left:1316px;
  9208. top:1082px;
  9209. width:205px;
  9210. height:17px;
  9211. display:flex;
  9212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9213. font-weight:400;
  9214. font-style:normal;
  9215. font-size:12px;
  9216. color:#7F7F7F;
  9217. }
  9218. #u300 .text {
  9219. position:absolute;
  9220. align-self:center;
  9221. padding:0px 0px 0px 0px;
  9222. box-sizing:border-box;
  9223. width:100%;
  9224. }
  9225. #u300_text {
  9226. border-width:0px;
  9227. white-space:nowrap;
  9228. text-transform:none;
  9229. }
  9230. #u301 {
  9231. border-width:0px;
  9232. position:absolute;
  9233. left:0px;
  9234. top:0px;
  9235. width:0px;
  9236. height:0px;
  9237. }
  9238. #u302_div {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:0px;
  9242. top:0px;
  9243. width:240px;
  9244. height:80px;
  9245. background:inherit;
  9246. background-color:rgba(242, 242, 242, 1);
  9247. border:none;
  9248. border-radius:0px;
  9249. -moz-box-shadow:none;
  9250. -webkit-box-shadow:none;
  9251. box-shadow:none;
  9252. }
  9253. #u302 {
  9254. border-width:0px;
  9255. position:absolute;
  9256. left:694px;
  9257. top:936px;
  9258. width:240px;
  9259. height:80px;
  9260. display:flex;
  9261. }
  9262. #u302 .text {
  9263. position:absolute;
  9264. align-self:center;
  9265. padding:2px 2px 2px 2px;
  9266. box-sizing:border-box;
  9267. width:100%;
  9268. }
  9269. #u302_text {
  9270. border-width:0px;
  9271. word-wrap:break-word;
  9272. text-transform:none;
  9273. visibility:hidden;
  9274. }
  9275. #u303_img {
  9276. border-width:0px;
  9277. position:absolute;
  9278. left:0px;
  9279. top:0px;
  9280. width:50px;
  9281. height:53px;
  9282. }
  9283. #u303 {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:710px;
  9287. top:949px;
  9288. width:50px;
  9289. height:53px;
  9290. display:flex;
  9291. }
  9292. #u303 .text {
  9293. position:absolute;
  9294. align-self:center;
  9295. padding:2px 2px 2px 2px;
  9296. box-sizing:border-box;
  9297. width:100%;
  9298. }
  9299. #u303_text {
  9300. border-width:0px;
  9301. word-wrap:break-word;
  9302. text-transform:none;
  9303. visibility:hidden;
  9304. }
  9305. #u304 {
  9306. border-width:0px;
  9307. position:absolute;
  9308. left:0px;
  9309. top:0px;
  9310. width:0px;
  9311. height:0px;
  9312. }
  9313. #u305_div {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:0px;
  9317. top:0px;
  9318. width:73px;
  9319. height:25px;
  9320. background:inherit;
  9321. background-color:rgba(255, 255, 255, 0);
  9322. border:none;
  9323. border-left:0px;
  9324. border-top:0px;
  9325. border-right:0px;
  9326. border-radius:0px;
  9327. border-bottom-right-radius:0px;
  9328. border-bottom-left-radius:0px;
  9329. -moz-box-shadow:none;
  9330. -webkit-box-shadow:none;
  9331. box-shadow:none;
  9332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9333. font-weight:400;
  9334. font-style:normal;
  9335. font-size:18px;
  9336. }
  9337. #u305 {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:775px;
  9341. top:952px;
  9342. width:73px;
  9343. height:25px;
  9344. display:flex;
  9345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9346. font-weight:400;
  9347. font-style:normal;
  9348. font-size:18px;
  9349. }
  9350. #u305 .text {
  9351. position:absolute;
  9352. align-self:center;
  9353. padding:0px 0px 0px 0px;
  9354. box-sizing:border-box;
  9355. width:100%;
  9356. }
  9357. #u305_text {
  9358. border-width:0px;
  9359. white-space:nowrap;
  9360. text-transform:none;
  9361. }
  9362. #u306_div {
  9363. border-width:0px;
  9364. position:absolute;
  9365. left:0px;
  9366. top:0px;
  9367. width:145px;
  9368. height:17px;
  9369. background:inherit;
  9370. background-color:rgba(255, 255, 255, 0);
  9371. border:none;
  9372. border-left:0px;
  9373. border-top:0px;
  9374. border-right:0px;
  9375. border-radius:0px;
  9376. border-bottom-right-radius:0px;
  9377. border-bottom-left-radius:0px;
  9378. -moz-box-shadow:none;
  9379. -webkit-box-shadow:none;
  9380. box-shadow:none;
  9381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9382. font-weight:400;
  9383. font-style:normal;
  9384. font-size:12px;
  9385. color:#7F7F7F;
  9386. }
  9387. #u306 {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:775px;
  9391. top:982px;
  9392. width:145px;
  9393. height:17px;
  9394. display:flex;
  9395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9396. font-weight:400;
  9397. font-style:normal;
  9398. font-size:12px;
  9399. color:#7F7F7F;
  9400. }
  9401. #u306 .text {
  9402. position:absolute;
  9403. align-self:center;
  9404. padding:0px 0px 0px 0px;
  9405. box-sizing:border-box;
  9406. width:100%;
  9407. }
  9408. #u306_text {
  9409. border-width:0px;
  9410. white-space:nowrap;
  9411. text-transform:none;
  9412. }
  9413. #u307 {
  9414. border-width:0px;
  9415. position:absolute;
  9416. left:0px;
  9417. top:0px;
  9418. width:0px;
  9419. height:0px;
  9420. }
  9421. #u308_div {
  9422. border-width:0px;
  9423. position:absolute;
  9424. left:0px;
  9425. top:0px;
  9426. width:240px;
  9427. height:80px;
  9428. background:inherit;
  9429. background-color:rgba(242, 242, 242, 1);
  9430. border:none;
  9431. border-radius:0px;
  9432. -moz-box-shadow:none;
  9433. -webkit-box-shadow:none;
  9434. box-shadow:none;
  9435. }
  9436. #u308 {
  9437. border-width:0px;
  9438. position:absolute;
  9439. left:1234px;
  9440. top:936px;
  9441. width:240px;
  9442. height:80px;
  9443. display:flex;
  9444. }
  9445. #u308 .text {
  9446. position:absolute;
  9447. align-self:center;
  9448. padding:2px 2px 2px 2px;
  9449. box-sizing:border-box;
  9450. width:100%;
  9451. }
  9452. #u308_text {
  9453. border-width:0px;
  9454. word-wrap:break-word;
  9455. text-transform:none;
  9456. visibility:hidden;
  9457. }
  9458. #u309_img {
  9459. border-width:0px;
  9460. position:absolute;
  9461. left:0px;
  9462. top:0px;
  9463. width:50px;
  9464. height:53px;
  9465. }
  9466. #u309 {
  9467. border-width:0px;
  9468. position:absolute;
  9469. left:1250px;
  9470. top:949px;
  9471. width:50px;
  9472. height:53px;
  9473. display:flex;
  9474. }
  9475. #u309 .text {
  9476. position:absolute;
  9477. align-self:center;
  9478. padding:2px 2px 2px 2px;
  9479. box-sizing:border-box;
  9480. width:100%;
  9481. }
  9482. #u309_text {
  9483. border-width:0px;
  9484. word-wrap:break-word;
  9485. text-transform:none;
  9486. visibility:hidden;
  9487. }
  9488. #u310 {
  9489. border-width:0px;
  9490. position:absolute;
  9491. left:0px;
  9492. top:0px;
  9493. width:0px;
  9494. height:0px;
  9495. }
  9496. #u311_div {
  9497. border-width:0px;
  9498. position:absolute;
  9499. left:0px;
  9500. top:0px;
  9501. width:73px;
  9502. height:25px;
  9503. background:inherit;
  9504. background-color:rgba(255, 255, 255, 0);
  9505. border:none;
  9506. border-left:0px;
  9507. border-top:0px;
  9508. border-right:0px;
  9509. border-radius:0px;
  9510. border-bottom-right-radius:0px;
  9511. border-bottom-left-radius:0px;
  9512. -moz-box-shadow:none;
  9513. -webkit-box-shadow:none;
  9514. box-shadow:none;
  9515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9516. font-weight:400;
  9517. font-style:normal;
  9518. font-size:18px;
  9519. }
  9520. #u311 {
  9521. border-width:0px;
  9522. position:absolute;
  9523. left:1315px;
  9524. top:952px;
  9525. width:73px;
  9526. height:25px;
  9527. display:flex;
  9528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9529. font-weight:400;
  9530. font-style:normal;
  9531. font-size:18px;
  9532. }
  9533. #u311 .text {
  9534. position:absolute;
  9535. align-self:center;
  9536. padding:0px 0px 0px 0px;
  9537. box-sizing:border-box;
  9538. width:100%;
  9539. }
  9540. #u311_text {
  9541. border-width:0px;
  9542. white-space:nowrap;
  9543. text-transform:none;
  9544. }
  9545. #u312_div {
  9546. border-width:0px;
  9547. position:absolute;
  9548. left:0px;
  9549. top:0px;
  9550. width:193px;
  9551. height:17px;
  9552. background:inherit;
  9553. background-color:rgba(255, 255, 255, 0);
  9554. border:none;
  9555. border-left:0px;
  9556. border-top:0px;
  9557. border-right:0px;
  9558. border-radius:0px;
  9559. border-bottom-right-radius:0px;
  9560. border-bottom-left-radius:0px;
  9561. -moz-box-shadow:none;
  9562. -webkit-box-shadow:none;
  9563. box-shadow:none;
  9564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9565. font-weight:400;
  9566. font-style:normal;
  9567. font-size:12px;
  9568. color:#7F7F7F;
  9569. }
  9570. #u312 {
  9571. border-width:0px;
  9572. position:absolute;
  9573. left:1315px;
  9574. top:982px;
  9575. width:193px;
  9576. height:17px;
  9577. display:flex;
  9578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9579. font-weight:400;
  9580. font-style:normal;
  9581. font-size:12px;
  9582. color:#7F7F7F;
  9583. }
  9584. #u312 .text {
  9585. position:absolute;
  9586. align-self:center;
  9587. padding:0px 0px 0px 0px;
  9588. box-sizing:border-box;
  9589. width:100%;
  9590. }
  9591. #u312_text {
  9592. border-width:0px;
  9593. white-space:nowrap;
  9594. text-transform:none;
  9595. }
  9596. #u313 {
  9597. border-width:0px;
  9598. position:absolute;
  9599. left:0px;
  9600. top:0px;
  9601. width:0px;
  9602. height:0px;
  9603. }
  9604. #u314_div {
  9605. border-width:0px;
  9606. position:absolute;
  9607. left:0px;
  9608. top:0px;
  9609. width:240px;
  9610. height:80px;
  9611. background:inherit;
  9612. background-color:rgba(242, 242, 242, 1);
  9613. border:none;
  9614. border-radius:0px;
  9615. -moz-box-shadow:none;
  9616. -webkit-box-shadow:none;
  9617. box-shadow:none;
  9618. }
  9619. #u314 {
  9620. border-width:0px;
  9621. position:absolute;
  9622. left:423px;
  9623. top:1132px;
  9624. width:240px;
  9625. height:80px;
  9626. display:flex;
  9627. }
  9628. #u314 .text {
  9629. position:absolute;
  9630. align-self:center;
  9631. padding:2px 2px 2px 2px;
  9632. box-sizing:border-box;
  9633. width:100%;
  9634. }
  9635. #u314_text {
  9636. border-width:0px;
  9637. word-wrap:break-word;
  9638. text-transform:none;
  9639. visibility:hidden;
  9640. }
  9641. #u315_img {
  9642. border-width:0px;
  9643. position:absolute;
  9644. left:0px;
  9645. top:0px;
  9646. width:50px;
  9647. height:53px;
  9648. }
  9649. #u315 {
  9650. border-width:0px;
  9651. position:absolute;
  9652. left:439px;
  9653. top:1145px;
  9654. width:50px;
  9655. height:53px;
  9656. display:flex;
  9657. }
  9658. #u315 .text {
  9659. position:absolute;
  9660. align-self:center;
  9661. padding:2px 2px 2px 2px;
  9662. box-sizing:border-box;
  9663. width:100%;
  9664. }
  9665. #u315_text {
  9666. border-width:0px;
  9667. word-wrap:break-word;
  9668. text-transform:none;
  9669. visibility:hidden;
  9670. }
  9671. #u316 {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:0px;
  9675. top:0px;
  9676. width:0px;
  9677. height:0px;
  9678. }
  9679. #u317_div {
  9680. border-width:0px;
  9681. position:absolute;
  9682. left:0px;
  9683. top:0px;
  9684. width:91px;
  9685. height:25px;
  9686. background:inherit;
  9687. background-color:rgba(255, 255, 255, 0);
  9688. border:none;
  9689. border-left:0px;
  9690. border-top:0px;
  9691. border-right:0px;
  9692. border-radius:0px;
  9693. border-bottom-right-radius:0px;
  9694. border-bottom-left-radius:0px;
  9695. -moz-box-shadow:none;
  9696. -webkit-box-shadow:none;
  9697. box-shadow:none;
  9698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9699. font-weight:400;
  9700. font-style:normal;
  9701. font-size:18px;
  9702. }
  9703. #u317 {
  9704. border-width:0px;
  9705. position:absolute;
  9706. left:504px;
  9707. top:1148px;
  9708. width:91px;
  9709. height:25px;
  9710. display:flex;
  9711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9712. font-weight:400;
  9713. font-style:normal;
  9714. font-size:18px;
  9715. }
  9716. #u317 .text {
  9717. position:absolute;
  9718. align-self:center;
  9719. padding:0px 0px 0px 0px;
  9720. box-sizing:border-box;
  9721. width:100%;
  9722. }
  9723. #u317_text {
  9724. border-width:0px;
  9725. white-space:nowrap;
  9726. text-transform:none;
  9727. }
  9728. #u318_div {
  9729. border-width:0px;
  9730. position:absolute;
  9731. left:0px;
  9732. top:0px;
  9733. width:109px;
  9734. height:17px;
  9735. background:inherit;
  9736. background-color:rgba(255, 255, 255, 0);
  9737. border:none;
  9738. border-left:0px;
  9739. border-top:0px;
  9740. border-right:0px;
  9741. border-radius:0px;
  9742. border-bottom-right-radius:0px;
  9743. border-bottom-left-radius:0px;
  9744. -moz-box-shadow:none;
  9745. -webkit-box-shadow:none;
  9746. box-shadow:none;
  9747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9748. font-weight:400;
  9749. font-style:normal;
  9750. font-size:12px;
  9751. color:#7F7F7F;
  9752. }
  9753. #u318 {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:504px;
  9757. top:1178px;
  9758. width:109px;
  9759. height:17px;
  9760. display:flex;
  9761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9762. font-weight:400;
  9763. font-style:normal;
  9764. font-size:12px;
  9765. color:#7F7F7F;
  9766. }
  9767. #u318 .text {
  9768. position:absolute;
  9769. align-self:center;
  9770. padding:0px 0px 0px 0px;
  9771. box-sizing:border-box;
  9772. width:100%;
  9773. }
  9774. #u318_text {
  9775. border-width:0px;
  9776. white-space:nowrap;
  9777. text-transform:none;
  9778. }
  9779. #u319 {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:0px;
  9783. top:0px;
  9784. width:0px;
  9785. height:0px;
  9786. }
  9787. #u320_div {
  9788. border-width:0px;
  9789. position:absolute;
  9790. left:0px;
  9791. top:0px;
  9792. width:240px;
  9793. height:80px;
  9794. background:inherit;
  9795. background-color:rgba(242, 242, 242, 1);
  9796. border:none;
  9797. border-radius:0px;
  9798. -moz-box-shadow:none;
  9799. -webkit-box-shadow:none;
  9800. box-shadow:none;
  9801. }
  9802. #u320 {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:694px;
  9806. top:1132px;
  9807. width:240px;
  9808. height:80px;
  9809. display:flex;
  9810. }
  9811. #u320 .text {
  9812. position:absolute;
  9813. align-self:center;
  9814. padding:2px 2px 2px 2px;
  9815. box-sizing:border-box;
  9816. width:100%;
  9817. }
  9818. #u320_text {
  9819. border-width:0px;
  9820. word-wrap:break-word;
  9821. text-transform:none;
  9822. visibility:hidden;
  9823. }
  9824. #u321_img {
  9825. border-width:0px;
  9826. position:absolute;
  9827. left:0px;
  9828. top:0px;
  9829. width:50px;
  9830. height:53px;
  9831. }
  9832. #u321 {
  9833. border-width:0px;
  9834. position:absolute;
  9835. left:710px;
  9836. top:1145px;
  9837. width:50px;
  9838. height:53px;
  9839. display:flex;
  9840. }
  9841. #u321 .text {
  9842. position:absolute;
  9843. align-self:center;
  9844. padding:2px 2px 2px 2px;
  9845. box-sizing:border-box;
  9846. width:100%;
  9847. }
  9848. #u321_text {
  9849. border-width:0px;
  9850. word-wrap:break-word;
  9851. text-transform:none;
  9852. visibility:hidden;
  9853. }
  9854. #u322 {
  9855. border-width:0px;
  9856. position:absolute;
  9857. left:0px;
  9858. top:0px;
  9859. width:0px;
  9860. height:0px;
  9861. }
  9862. #u323_div {
  9863. border-width:0px;
  9864. position:absolute;
  9865. left:0px;
  9866. top:0px;
  9867. width:73px;
  9868. height:25px;
  9869. background:inherit;
  9870. background-color:rgba(255, 255, 255, 0);
  9871. border:none;
  9872. border-left:0px;
  9873. border-top:0px;
  9874. border-right:0px;
  9875. border-radius:0px;
  9876. border-bottom-right-radius:0px;
  9877. border-bottom-left-radius:0px;
  9878. -moz-box-shadow:none;
  9879. -webkit-box-shadow:none;
  9880. box-shadow:none;
  9881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9882. font-weight:400;
  9883. font-style:normal;
  9884. font-size:18px;
  9885. }
  9886. #u323 {
  9887. border-width:0px;
  9888. position:absolute;
  9889. left:775px;
  9890. top:1148px;
  9891. width:73px;
  9892. height:25px;
  9893. display:flex;
  9894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9895. font-weight:400;
  9896. font-style:normal;
  9897. font-size:18px;
  9898. }
  9899. #u323 .text {
  9900. position:absolute;
  9901. align-self:center;
  9902. padding:0px 0px 0px 0px;
  9903. box-sizing:border-box;
  9904. width:100%;
  9905. }
  9906. #u323_text {
  9907. border-width:0px;
  9908. white-space:nowrap;
  9909. text-transform:none;
  9910. }
  9911. #u324_div {
  9912. border-width:0px;
  9913. position:absolute;
  9914. left:0px;
  9915. top:0px;
  9916. width:97px;
  9917. height:17px;
  9918. background:inherit;
  9919. background-color:rgba(255, 255, 255, 0);
  9920. border:none;
  9921. border-left:0px;
  9922. border-top:0px;
  9923. border-right:0px;
  9924. border-radius:0px;
  9925. border-bottom-right-radius:0px;
  9926. border-bottom-left-radius:0px;
  9927. -moz-box-shadow:none;
  9928. -webkit-box-shadow:none;
  9929. box-shadow:none;
  9930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9931. font-weight:400;
  9932. font-style:normal;
  9933. font-size:12px;
  9934. color:#7F7F7F;
  9935. }
  9936. #u324 {
  9937. border-width:0px;
  9938. position:absolute;
  9939. left:775px;
  9940. top:1178px;
  9941. width:97px;
  9942. height:17px;
  9943. display:flex;
  9944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9945. font-weight:400;
  9946. font-style:normal;
  9947. font-size:12px;
  9948. color:#7F7F7F;
  9949. }
  9950. #u324 .text {
  9951. position:absolute;
  9952. align-self:center;
  9953. padding:0px 0px 0px 0px;
  9954. box-sizing:border-box;
  9955. width:100%;
  9956. }
  9957. #u324_text {
  9958. border-width:0px;
  9959. white-space:nowrap;
  9960. text-transform:none;
  9961. }
  9962. #u325 {
  9963. border-width:0px;
  9964. position:absolute;
  9965. left:0px;
  9966. top:0px;
  9967. width:0px;
  9968. height:0px;
  9969. }
  9970. #u327_div {
  9971. border-width:0px;
  9972. position:absolute;
  9973. left:0px;
  9974. top:0px;
  9975. width:1600px;
  9976. height:50px;
  9977. background:inherit;
  9978. background-color:rgba(30, 42, 68, 1);
  9979. border:none;
  9980. border-radius:0px;
  9981. -moz-box-shadow:none;
  9982. -webkit-box-shadow:none;
  9983. box-shadow:none;
  9984. color:#AFB3B6;
  9985. }
  9986. #u327 {
  9987. border-width:0px;
  9988. position:absolute;
  9989. left:1630px;
  9990. top:-1px;
  9991. width:1600px;
  9992. height:50px;
  9993. display:flex;
  9994. color:#AFB3B6;
  9995. }
  9996. #u327 .text {
  9997. position:absolute;
  9998. align-self:center;
  9999. padding:2px 2px 2px 2px;
  10000. box-sizing:border-box;
  10001. width:100%;
  10002. }
  10003. #u327_text {
  10004. border-width:0px;
  10005. word-wrap:break-word;
  10006. text-transform:none;
  10007. visibility:hidden;
  10008. }
  10009. #u328_div {
  10010. border-width:0px;
  10011. position:absolute;
  10012. left:0px;
  10013. top:0px;
  10014. width:1480px;
  10015. height:1200px;
  10016. background:inherit;
  10017. background-color:rgba(242, 242, 242, 1);
  10018. border:none;
  10019. border-radius:0px;
  10020. -moz-box-shadow:none;
  10021. -webkit-box-shadow:none;
  10022. box-shadow:none;
  10023. }
  10024. #u328 {
  10025. border-width:0px;
  10026. position:absolute;
  10027. left:1750px;
  10028. top:49px;
  10029. width:1480px;
  10030. height:1200px;
  10031. display:flex;
  10032. }
  10033. #u328 .text {
  10034. position:absolute;
  10035. align-self:center;
  10036. padding:2px 2px 2px 2px;
  10037. box-sizing:border-box;
  10038. width:100%;
  10039. }
  10040. #u328_text {
  10041. border-width:0px;
  10042. word-wrap:break-word;
  10043. text-transform:none;
  10044. visibility:hidden;
  10045. }
  10046. #u329 {
  10047. border-width:0px;
  10048. position:absolute;
  10049. left:0px;
  10050. top:0px;
  10051. width:0px;
  10052. height:0px;
  10053. }
  10054. #u330_img {
  10055. border-width:0px;
  10056. position:absolute;
  10057. left:0px;
  10058. top:0px;
  10059. width:31px;
  10060. height:31px;
  10061. }
  10062. #u330 {
  10063. border-width:0px;
  10064. position:absolute;
  10065. left:1649px;
  10066. top:9px;
  10067. width:31px;
  10068. height:31px;
  10069. display:flex;
  10070. }
  10071. #u330 .text {
  10072. position:absolute;
  10073. align-self:center;
  10074. padding:2px 2px 2px 2px;
  10075. box-sizing:border-box;
  10076. width:100%;
  10077. }
  10078. #u330_text {
  10079. border-width:0px;
  10080. word-wrap:break-word;
  10081. text-transform:none;
  10082. }
  10083. #u331_div {
  10084. border-width:0px;
  10085. position:absolute;
  10086. left:0px;
  10087. top:0px;
  10088. width:161px;
  10089. height:22px;
  10090. background:inherit;
  10091. background-color:rgba(255, 255, 255, 0);
  10092. border:none;
  10093. border-radius:0px;
  10094. -moz-box-shadow:none;
  10095. -webkit-box-shadow:none;
  10096. box-shadow:none;
  10097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10098. font-weight:400;
  10099. font-style:normal;
  10100. font-size:16px;
  10101. color:#FFFFFF;
  10102. }
  10103. #u331 {
  10104. border-width:0px;
  10105. position:absolute;
  10106. left:1692px;
  10107. top:13px;
  10108. width:161px;
  10109. height:22px;
  10110. display:flex;
  10111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10112. font-weight:400;
  10113. font-style:normal;
  10114. font-size:16px;
  10115. color:#FFFFFF;
  10116. }
  10117. #u331 .text {
  10118. position:absolute;
  10119. align-self:flex-start;
  10120. padding:0px 0px 0px 0px;
  10121. box-sizing:border-box;
  10122. width:100%;
  10123. }
  10124. #u331_text {
  10125. border-width:0px;
  10126. white-space:nowrap;
  10127. text-transform:none;
  10128. }
  10129. #u332_div {
  10130. border-width:0px;
  10131. position:absolute;
  10132. left:0px;
  10133. top:0px;
  10134. width:120px;
  10135. height:1200px;
  10136. background:inherit;
  10137. background-color:rgba(30, 42, 68, 1);
  10138. border:none;
  10139. border-radius:0px;
  10140. -moz-box-shadow:none;
  10141. -webkit-box-shadow:none;
  10142. box-shadow:none;
  10143. color:#AFB3B6;
  10144. }
  10145. #u332 {
  10146. border-width:0px;
  10147. position:absolute;
  10148. left:1630px;
  10149. top:49px;
  10150. width:120px;
  10151. height:1200px;
  10152. display:flex;
  10153. color:#AFB3B6;
  10154. }
  10155. #u332 .text {
  10156. position:absolute;
  10157. align-self:center;
  10158. padding:2px 2px 2px 2px;
  10159. box-sizing:border-box;
  10160. width:100%;
  10161. }
  10162. #u332_text {
  10163. border-width:0px;
  10164. word-wrap:break-word;
  10165. text-transform:none;
  10166. visibility:hidden;
  10167. }
  10168. #u333 {
  10169. border-width:0px;
  10170. position:absolute;
  10171. left:0px;
  10172. top:0px;
  10173. width:0px;
  10174. height:0px;
  10175. }
  10176. #u334_input {
  10177. position:absolute;
  10178. left:0px;
  10179. top:0px;
  10180. width:214px;
  10181. height:27px;
  10182. padding:2px 2px 2px 2px;
  10183. font-family:'ArialMT', 'Arial', sans-serif;
  10184. font-weight:400;
  10185. font-style:normal;
  10186. font-size:14px;
  10187. letter-spacing:normal;
  10188. color:#FFFFFF;
  10189. vertical-align:none;
  10190. text-align:left;
  10191. text-transform:none;
  10192. background-color:transparent;
  10193. border-color:transparent;
  10194. }
  10195. #u334_input.disabled {
  10196. position:absolute;
  10197. left:0px;
  10198. top:0px;
  10199. width:214px;
  10200. height:27px;
  10201. padding:2px 2px 2px 2px;
  10202. font-family:'ArialMT', 'Arial', sans-serif;
  10203. font-weight:400;
  10204. font-style:normal;
  10205. font-size:14px;
  10206. letter-spacing:normal;
  10207. color:#FFFFFF;
  10208. vertical-align:none;
  10209. text-align:left;
  10210. text-transform:none;
  10211. background-color:transparent;
  10212. border-color:transparent;
  10213. }
  10214. #u334_div {
  10215. border-width:0px;
  10216. position:absolute;
  10217. left:0px;
  10218. top:0px;
  10219. width:214px;
  10220. height:27px;
  10221. background:inherit;
  10222. background-color:rgba(255, 255, 255, 0);
  10223. border:none;
  10224. border-radius:0px;
  10225. -moz-box-shadow:none;
  10226. -webkit-box-shadow:none;
  10227. box-shadow:none;
  10228. font-size:14px;
  10229. color:#FFFFFF;
  10230. }
  10231. #u334 {
  10232. border-width:0px;
  10233. position:absolute;
  10234. left:1916px;
  10235. top:11px;
  10236. width:214px;
  10237. height:27px;
  10238. display:flex;
  10239. font-size:14px;
  10240. color:#FFFFFF;
  10241. }
  10242. #u334 .text {
  10243. position:absolute;
  10244. align-self:flex-start;
  10245. padding:2px 2px 2px 2px;
  10246. box-sizing:border-box;
  10247. width:100%;
  10248. }
  10249. #u334_div.disabled {
  10250. border-width:0px;
  10251. position:absolute;
  10252. left:0px;
  10253. top:0px;
  10254. width:214px;
  10255. height:27px;
  10256. background:inherit;
  10257. background-color:rgba(240, 240, 240, 1);
  10258. border:none;
  10259. border-radius:0px;
  10260. -moz-box-shadow:none;
  10261. -webkit-box-shadow:none;
  10262. box-shadow:none;
  10263. font-size:14px;
  10264. color:#FFFFFF;
  10265. }
  10266. #u334.disabled {
  10267. }
  10268. .u334_input_option {
  10269. font-size:14px;
  10270. }
  10271. #u335_img {
  10272. border-width:0px;
  10273. position:absolute;
  10274. left:0px;
  10275. top:0px;
  10276. width:22px;
  10277. height:22px;
  10278. }
  10279. #u335 {
  10280. border-width:0px;
  10281. position:absolute;
  10282. left:1889px;
  10283. top:16px;
  10284. width:22px;
  10285. height:22px;
  10286. display:flex;
  10287. }
  10288. #u335 .text {
  10289. position:absolute;
  10290. align-self:center;
  10291. padding:2px 2px 2px 2px;
  10292. box-sizing:border-box;
  10293. width:100%;
  10294. }
  10295. #u335_text {
  10296. border-width:0px;
  10297. word-wrap:break-word;
  10298. text-transform:none;
  10299. visibility:hidden;
  10300. }
  10301. #u336 {
  10302. border-width:0px;
  10303. position:absolute;
  10304. left:0px;
  10305. top:0px;
  10306. width:0px;
  10307. height:0px;
  10308. }
  10309. #u337_div {
  10310. border-width:0px;
  10311. position:absolute;
  10312. left:0px;
  10313. top:0px;
  10314. width:97px;
  10315. height:24px;
  10316. background:inherit;
  10317. background-color:rgba(242, 242, 242, 0.2);
  10318. border:none;
  10319. border-radius:25px;
  10320. -moz-box-shadow:none;
  10321. -webkit-box-shadow:none;
  10322. box-shadow:none;
  10323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10324. font-weight:400;
  10325. font-style:normal;
  10326. color:#FFFFFF;
  10327. text-align:center;
  10328. }
  10329. #u337 {
  10330. border-width:0px;
  10331. position:absolute;
  10332. left:2140px;
  10333. top:13px;
  10334. width:97px;
  10335. height:24px;
  10336. display:flex;
  10337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10338. font-weight:400;
  10339. font-style:normal;
  10340. color:#FFFFFF;
  10341. text-align:center;
  10342. }
  10343. #u337 .text {
  10344. position:absolute;
  10345. align-self:center;
  10346. padding:0px 0px 0px 0px;
  10347. box-sizing:border-box;
  10348. width:100%;
  10349. }
  10350. #u337_text {
  10351. border-width:0px;
  10352. word-wrap:break-word;
  10353. text-transform:none;
  10354. visibility:hidden;
  10355. }
  10356. #u338_input {
  10357. position:absolute;
  10358. left:0px;
  10359. top:0px;
  10360. width:73px;
  10361. height:27px;
  10362. padding:2px 2px 2px 2px;
  10363. font-family:'ArialMT', 'Arial', sans-serif;
  10364. font-weight:400;
  10365. font-style:normal;
  10366. font-size:14px;
  10367. letter-spacing:normal;
  10368. color:#FFFFFF;
  10369. vertical-align:none;
  10370. text-align:left;
  10371. text-transform:none;
  10372. background-color:transparent;
  10373. border-color:transparent;
  10374. }
  10375. #u338_input.disabled {
  10376. position:absolute;
  10377. left:0px;
  10378. top:0px;
  10379. width:73px;
  10380. height:27px;
  10381. padding:2px 2px 2px 2px;
  10382. font-family:'ArialMT', 'Arial', sans-serif;
  10383. font-weight:400;
  10384. font-style:normal;
  10385. font-size:14px;
  10386. letter-spacing:normal;
  10387. color:#FFFFFF;
  10388. vertical-align:none;
  10389. text-align:left;
  10390. text-transform:none;
  10391. background-color:transparent;
  10392. border-color:transparent;
  10393. }
  10394. #u338_div {
  10395. border-width:0px;
  10396. position:absolute;
  10397. left:0px;
  10398. top:0px;
  10399. width:73px;
  10400. height:27px;
  10401. background:inherit;
  10402. background-color:rgba(255, 255, 255, 0);
  10403. border:none;
  10404. border-radius:0px;
  10405. -moz-box-shadow:none;
  10406. -webkit-box-shadow:none;
  10407. box-shadow:none;
  10408. font-size:14px;
  10409. color:#FFFFFF;
  10410. }
  10411. #u338 {
  10412. border-width:0px;
  10413. position:absolute;
  10414. left:2152px;
  10415. top:11px;
  10416. width:73px;
  10417. height:27px;
  10418. display:flex;
  10419. font-size:14px;
  10420. color:#FFFFFF;
  10421. }
  10422. #u338 .text {
  10423. position:absolute;
  10424. align-self:flex-start;
  10425. padding:2px 2px 2px 2px;
  10426. box-sizing:border-box;
  10427. width:100%;
  10428. }
  10429. #u338_div.disabled {
  10430. border-width:0px;
  10431. position:absolute;
  10432. left:0px;
  10433. top:0px;
  10434. width:73px;
  10435. height:27px;
  10436. background:inherit;
  10437. background-color:rgba(240, 240, 240, 1);
  10438. border:none;
  10439. border-radius:0px;
  10440. -moz-box-shadow:none;
  10441. -webkit-box-shadow:none;
  10442. box-shadow:none;
  10443. font-size:14px;
  10444. color:#FFFFFF;
  10445. }
  10446. #u338.disabled {
  10447. }
  10448. .u338_input_option {
  10449. font-size:14px;
  10450. }
  10451. #u339 {
  10452. border-width:0px;
  10453. position:absolute;
  10454. left:0px;
  10455. top:0px;
  10456. width:0px;
  10457. height:0px;
  10458. }
  10459. #u340 {
  10460. border-width:0px;
  10461. position:absolute;
  10462. left:0px;
  10463. top:0px;
  10464. width:0px;
  10465. height:0px;
  10466. }
  10467. #u341_div {
  10468. border-width:0px;
  10469. position:absolute;
  10470. left:0px;
  10471. top:0px;
  10472. width:29px;
  10473. height:20px;
  10474. background:inherit;
  10475. background-color:rgba(255, 255, 255, 0);
  10476. border:none;
  10477. border-radius:25px;
  10478. -moz-box-shadow:none;
  10479. -webkit-box-shadow:none;
  10480. box-shadow:none;
  10481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10482. font-weight:400;
  10483. font-style:normal;
  10484. color:#FFFFFF;
  10485. }
  10486. #u341 {
  10487. border-width:0px;
  10488. position:absolute;
  10489. left:3072px;
  10490. top:16px;
  10491. width:29px;
  10492. height:20px;
  10493. display:flex;
  10494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10495. font-weight:400;
  10496. font-style:normal;
  10497. color:#FFFFFF;
  10498. }
  10499. #u341 .text {
  10500. position:absolute;
  10501. align-self:center;
  10502. padding:0px 0px 0px 0px;
  10503. box-sizing:border-box;
  10504. width:100%;
  10505. }
  10506. #u341_text {
  10507. border-width:0px;
  10508. white-space:nowrap;
  10509. text-transform:none;
  10510. }
  10511. #u342_img {
  10512. border-width:0px;
  10513. position:absolute;
  10514. left:0px;
  10515. top:0px;
  10516. width:22px;
  10517. height:22px;
  10518. }
  10519. #u342 {
  10520. border-width:0px;
  10521. position:absolute;
  10522. left:3040px;
  10523. top:15px;
  10524. width:22px;
  10525. height:22px;
  10526. display:flex;
  10527. }
  10528. #u342 .text {
  10529. position:absolute;
  10530. align-self:center;
  10531. padding:2px 2px 2px 2px;
  10532. box-sizing:border-box;
  10533. width:100%;
  10534. }
  10535. #u342_text {
  10536. border-width:0px;
  10537. word-wrap:break-word;
  10538. text-transform:none;
  10539. visibility:hidden;
  10540. }
  10541. #u343_img {
  10542. border-width:0px;
  10543. position:absolute;
  10544. left:-5px;
  10545. top:-5px;
  10546. width:23px;
  10547. height:23px;
  10548. }
  10549. #u343 {
  10550. border-width:0px;
  10551. position:absolute;
  10552. left:3095px;
  10553. top:11px;
  10554. width:13px;
  10555. height:13px;
  10556. display:flex;
  10557. font-size:10px;
  10558. color:#FFFFFF;
  10559. }
  10560. #u343 .text {
  10561. position:absolute;
  10562. align-self:center;
  10563. padding:2px 2px 2px 2px;
  10564. box-sizing:border-box;
  10565. width:100%;
  10566. }
  10567. #u343_text {
  10568. border-width:0px;
  10569. word-wrap:break-word;
  10570. text-transform:none;
  10571. }
  10572. #u344 {
  10573. border-width:0px;
  10574. position:absolute;
  10575. left:0px;
  10576. top:0px;
  10577. width:0px;
  10578. height:0px;
  10579. }
  10580. #u345_div {
  10581. border-width:0px;
  10582. position:absolute;
  10583. left:0px;
  10584. top:0px;
  10585. width:29px;
  10586. height:20px;
  10587. background:inherit;
  10588. background-color:rgba(255, 255, 255, 0);
  10589. border:none;
  10590. border-radius:25px;
  10591. -moz-box-shadow:none;
  10592. -webkit-box-shadow:none;
  10593. box-shadow:none;
  10594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10595. font-weight:400;
  10596. font-style:normal;
  10597. color:#FFFFFF;
  10598. }
  10599. #u345 {
  10600. border-width:0px;
  10601. position:absolute;
  10602. left:3184px;
  10603. top:16px;
  10604. width:29px;
  10605. height:20px;
  10606. display:flex;
  10607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10608. font-weight:400;
  10609. font-style:normal;
  10610. color:#FFFFFF;
  10611. }
  10612. #u345 .text {
  10613. position:absolute;
  10614. align-self:center;
  10615. padding:0px 0px 0px 0px;
  10616. box-sizing:border-box;
  10617. width:100%;
  10618. }
  10619. #u345_text {
  10620. border-width:0px;
  10621. white-space:nowrap;
  10622. text-transform:none;
  10623. }
  10624. #u346_img {
  10625. border-width:0px;
  10626. position:absolute;
  10627. left:0px;
  10628. top:0px;
  10629. width:22px;
  10630. height:22px;
  10631. }
  10632. #u346 {
  10633. border-width:0px;
  10634. position:absolute;
  10635. left:3152px;
  10636. top:15px;
  10637. width:22px;
  10638. height:22px;
  10639. display:flex;
  10640. }
  10641. #u346 .text {
  10642. position:absolute;
  10643. align-self:center;
  10644. padding:2px 2px 2px 2px;
  10645. box-sizing:border-box;
  10646. width:100%;
  10647. }
  10648. #u346_text {
  10649. border-width:0px;
  10650. word-wrap:break-word;
  10651. text-transform:none;
  10652. visibility:hidden;
  10653. }
  10654. #u347_img {
  10655. border-width:0px;
  10656. position:absolute;
  10657. left:-5px;
  10658. top:-5px;
  10659. width:23px;
  10660. height:23px;
  10661. }
  10662. #u347 {
  10663. border-width:0px;
  10664. position:absolute;
  10665. left:3210px;
  10666. top:11px;
  10667. width:13px;
  10668. height:13px;
  10669. display:flex;
  10670. font-size:10px;
  10671. color:#FFFFFF;
  10672. }
  10673. #u347 .text {
  10674. position:absolute;
  10675. align-self:center;
  10676. padding:2px 2px 2px 2px;
  10677. box-sizing:border-box;
  10678. width:100%;
  10679. }
  10680. #u347_text {
  10681. border-width:0px;
  10682. word-wrap:break-word;
  10683. text-transform:none;
  10684. }
  10685. #u348 {
  10686. border-width:0px;
  10687. position:absolute;
  10688. left:0px;
  10689. top:0px;
  10690. width:0px;
  10691. height:0px;
  10692. }
  10693. #u349_div {
  10694. border-width:0px;
  10695. position:absolute;
  10696. left:0px;
  10697. top:0px;
  10698. width:29px;
  10699. height:20px;
  10700. background:inherit;
  10701. background-color:rgba(255, 255, 255, 0);
  10702. border:none;
  10703. border-radius:25px;
  10704. -moz-box-shadow:none;
  10705. -webkit-box-shadow:none;
  10706. box-shadow:none;
  10707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10708. font-weight:400;
  10709. font-style:normal;
  10710. color:#FFFFFF;
  10711. }
  10712. #u349 {
  10713. border-width:0px;
  10714. position:absolute;
  10715. left:2983px;
  10716. top:16px;
  10717. width:29px;
  10718. height:20px;
  10719. display:flex;
  10720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10721. font-weight:400;
  10722. font-style:normal;
  10723. color:#FFFFFF;
  10724. }
  10725. #u349 .text {
  10726. position:absolute;
  10727. align-self:center;
  10728. padding:0px 0px 0px 0px;
  10729. box-sizing:border-box;
  10730. width:100%;
  10731. }
  10732. #u349_text {
  10733. border-width:0px;
  10734. white-space:nowrap;
  10735. text-transform:none;
  10736. }
  10737. #u350_img {
  10738. border-width:0px;
  10739. position:absolute;
  10740. left:0px;
  10741. top:0px;
  10742. width:22px;
  10743. height:22px;
  10744. }
  10745. #u350 {
  10746. border-width:0px;
  10747. position:absolute;
  10748. left:2951px;
  10749. top:15px;
  10750. width:22px;
  10751. height:22px;
  10752. display:flex;
  10753. }
  10754. #u350 .text {
  10755. position:absolute;
  10756. align-self:center;
  10757. padding:2px 2px 2px 2px;
  10758. box-sizing:border-box;
  10759. width:100%;
  10760. }
  10761. #u350_text {
  10762. border-width:0px;
  10763. word-wrap:break-word;
  10764. text-transform:none;
  10765. visibility:hidden;
  10766. }
  10767. #u351_img {
  10768. border-width:0px;
  10769. position:absolute;
  10770. left:-5px;
  10771. top:-5px;
  10772. width:23px;
  10773. height:23px;
  10774. }
  10775. #u351 {
  10776. border-width:0px;
  10777. position:absolute;
  10778. left:3007px;
  10779. top:11px;
  10780. width:13px;
  10781. height:13px;
  10782. display:flex;
  10783. font-size:10px;
  10784. color:#FFFFFF;
  10785. }
  10786. #u351 .text {
  10787. position:absolute;
  10788. align-self:center;
  10789. padding:2px 2px 2px 2px;
  10790. box-sizing:border-box;
  10791. width:100%;
  10792. }
  10793. #u351_text {
  10794. border-width:0px;
  10795. word-wrap:break-word;
  10796. text-transform:none;
  10797. }
  10798. #u352_img {
  10799. border-width:0px;
  10800. position:absolute;
  10801. left:0px;
  10802. top:0px;
  10803. width:2px;
  10804. height:15px;
  10805. }
  10806. #u352 {
  10807. border-width:0px;
  10808. position:absolute;
  10809. left:3126px;
  10810. top:19px;
  10811. width:1px;
  10812. height:14px;
  10813. display:flex;
  10814. }
  10815. #u352 .text {
  10816. position:absolute;
  10817. align-self:center;
  10818. padding:2px 2px 2px 2px;
  10819. box-sizing:border-box;
  10820. width:100%;
  10821. }
  10822. #u352_text {
  10823. border-width:0px;
  10824. word-wrap:break-word;
  10825. text-transform:none;
  10826. visibility:hidden;
  10827. }
  10828. #u353 {
  10829. border-width:0px;
  10830. position:absolute;
  10831. left:0px;
  10832. top:0px;
  10833. width:0px;
  10834. height:0px;
  10835. }
  10836. #u354_div {
  10837. border-width:0px;
  10838. position:absolute;
  10839. left:0px;
  10840. top:0px;
  10841. width:33px;
  10842. height:22px;
  10843. background:inherit;
  10844. background-color:rgba(255, 255, 255, 0);
  10845. border:none;
  10846. border-radius:0px;
  10847. -moz-box-shadow:none;
  10848. -webkit-box-shadow:none;
  10849. box-shadow:none;
  10850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10851. font-weight:400;
  10852. font-style:normal;
  10853. font-size:16px;
  10854. color:#FFFFFF;
  10855. }
  10856. #u354 {
  10857. border-width:0px;
  10858. position:absolute;
  10859. left:1669px;
  10860. top:60px;
  10861. width:33px;
  10862. height:22px;
  10863. display:flex;
  10864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10865. font-weight:400;
  10866. font-style:normal;
  10867. font-size:16px;
  10868. color:#FFFFFF;
  10869. }
  10870. #u354 .text {
  10871. position:absolute;
  10872. align-self:flex-start;
  10873. padding:0px 0px 0px 0px;
  10874. box-sizing:border-box;
  10875. width:100%;
  10876. }
  10877. #u354_text {
  10878. border-width:0px;
  10879. white-space:nowrap;
  10880. text-transform:none;
  10881. }
  10882. #u355_img {
  10883. border-width:0px;
  10884. position:absolute;
  10885. left:0px;
  10886. top:0px;
  10887. width:14px;
  10888. height:14px;
  10889. }
  10890. #u355 {
  10891. border-width:0px;
  10892. position:absolute;
  10893. left:1650px;
  10894. top:64px;
  10895. width:14px;
  10896. height:14px;
  10897. display:flex;
  10898. }
  10899. #u355 .text {
  10900. position:absolute;
  10901. align-self:center;
  10902. padding:2px 2px 2px 2px;
  10903. box-sizing:border-box;
  10904. width:100%;
  10905. }
  10906. #u355_text {
  10907. border-width:0px;
  10908. word-wrap:break-word;
  10909. text-transform:none;
  10910. visibility:hidden;
  10911. }
  10912. #u356 {
  10913. border-width:0px;
  10914. position:absolute;
  10915. left:0px;
  10916. top:0px;
  10917. width:0px;
  10918. height:0px;
  10919. }
  10920. #u357_div {
  10921. border-width:0px;
  10922. position:absolute;
  10923. left:0px;
  10924. top:0px;
  10925. width:33px;
  10926. height:22px;
  10927. background:inherit;
  10928. background-color:rgba(255, 255, 255, 0);
  10929. border:none;
  10930. border-radius:0px;
  10931. -moz-box-shadow:none;
  10932. -webkit-box-shadow:none;
  10933. box-shadow:none;
  10934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10935. font-weight:400;
  10936. font-style:normal;
  10937. font-size:16px;
  10938. color:#FFFFFF;
  10939. }
  10940. #u357 {
  10941. border-width:0px;
  10942. position:absolute;
  10943. left:1669px;
  10944. top:141px;
  10945. width:33px;
  10946. height:22px;
  10947. display:flex;
  10948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10949. font-weight:400;
  10950. font-style:normal;
  10951. font-size:16px;
  10952. color:#FFFFFF;
  10953. }
  10954. #u357 .text {
  10955. position:absolute;
  10956. align-self:flex-start;
  10957. padding:0px 0px 0px 0px;
  10958. box-sizing:border-box;
  10959. width:100%;
  10960. }
  10961. #u357_text {
  10962. border-width:0px;
  10963. white-space:nowrap;
  10964. text-transform:none;
  10965. }
  10966. #u358_img {
  10967. border-width:0px;
  10968. position:absolute;
  10969. left:0px;
  10970. top:0px;
  10971. width:14px;
  10972. height:14px;
  10973. }
  10974. #u358 {
  10975. border-width:0px;
  10976. position:absolute;
  10977. left:1650px;
  10978. top:145px;
  10979. width:14px;
  10980. height:14px;
  10981. display:flex;
  10982. }
  10983. #u358 .text {
  10984. position:absolute;
  10985. align-self:center;
  10986. padding:2px 2px 2px 2px;
  10987. box-sizing:border-box;
  10988. width:100%;
  10989. }
  10990. #u358_text {
  10991. border-width:0px;
  10992. word-wrap:break-word;
  10993. text-transform:none;
  10994. visibility:hidden;
  10995. }
  10996. #u359 {
  10997. border-width:0px;
  10998. position:absolute;
  10999. left:0px;
  11000. top:0px;
  11001. width:0px;
  11002. height:0px;
  11003. }
  11004. #u360_div {
  11005. border-width:0px;
  11006. position:absolute;
  11007. left:0px;
  11008. top:0px;
  11009. width:33px;
  11010. height:22px;
  11011. background:inherit;
  11012. background-color:rgba(255, 255, 255, 0);
  11013. border:none;
  11014. border-radius:0px;
  11015. -moz-box-shadow:none;
  11016. -webkit-box-shadow:none;
  11017. box-shadow:none;
  11018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11019. font-weight:400;
  11020. font-style:normal;
  11021. font-size:16px;
  11022. color:#FFFFFF;
  11023. }
  11024. #u360 {
  11025. border-width:0px;
  11026. position:absolute;
  11027. left:1669px;
  11028. top:100px;
  11029. width:33px;
  11030. height:22px;
  11031. display:flex;
  11032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11033. font-weight:400;
  11034. font-style:normal;
  11035. font-size:16px;
  11036. color:#FFFFFF;
  11037. }
  11038. #u360 .text {
  11039. position:absolute;
  11040. align-self:flex-start;
  11041. padding:0px 0px 0px 0px;
  11042. box-sizing:border-box;
  11043. width:100%;
  11044. }
  11045. #u360_text {
  11046. border-width:0px;
  11047. white-space:nowrap;
  11048. text-transform:none;
  11049. }
  11050. #u361_img {
  11051. border-width:0px;
  11052. position:absolute;
  11053. left:0px;
  11054. top:0px;
  11055. width:14px;
  11056. height:14px;
  11057. }
  11058. #u361 {
  11059. border-width:0px;
  11060. position:absolute;
  11061. left:1650px;
  11062. top:104px;
  11063. width:14px;
  11064. height:14px;
  11065. display:flex;
  11066. }
  11067. #u361 .text {
  11068. position:absolute;
  11069. align-self:center;
  11070. padding:2px 2px 2px 2px;
  11071. box-sizing:border-box;
  11072. width:100%;
  11073. }
  11074. #u361_text {
  11075. border-width:0px;
  11076. word-wrap:break-word;
  11077. text-transform:none;
  11078. visibility:hidden;
  11079. }
  11080. #u362 {
  11081. border-width:0px;
  11082. position:absolute;
  11083. left:0px;
  11084. top:0px;
  11085. width:0px;
  11086. height:0px;
  11087. }
  11088. #u363_div {
  11089. border-width:0px;
  11090. position:absolute;
  11091. left:0px;
  11092. top:0px;
  11093. width:33px;
  11094. height:22px;
  11095. background:inherit;
  11096. background-color:rgba(255, 255, 255, 0);
  11097. border:none;
  11098. border-radius:0px;
  11099. -moz-box-shadow:none;
  11100. -webkit-box-shadow:none;
  11101. box-shadow:none;
  11102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11103. font-weight:400;
  11104. font-style:normal;
  11105. font-size:16px;
  11106. color:#FFFFFF;
  11107. }
  11108. #u363 {
  11109. border-width:0px;
  11110. position:absolute;
  11111. left:1669px;
  11112. top:181px;
  11113. width:33px;
  11114. height:22px;
  11115. display:flex;
  11116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11117. font-weight:400;
  11118. font-style:normal;
  11119. font-size:16px;
  11120. color:#FFFFFF;
  11121. }
  11122. #u363 .text {
  11123. position:absolute;
  11124. align-self:flex-start;
  11125. padding:0px 0px 0px 0px;
  11126. box-sizing:border-box;
  11127. width:100%;
  11128. }
  11129. #u363_text {
  11130. border-width:0px;
  11131. white-space:nowrap;
  11132. text-transform:none;
  11133. }
  11134. #u364_img {
  11135. border-width:0px;
  11136. position:absolute;
  11137. left:0px;
  11138. top:0px;
  11139. width:14px;
  11140. height:14px;
  11141. }
  11142. #u364 {
  11143. border-width:0px;
  11144. position:absolute;
  11145. left:1650px;
  11146. top:185px;
  11147. width:14px;
  11148. height:14px;
  11149. display:flex;
  11150. }
  11151. #u364 .text {
  11152. position:absolute;
  11153. align-self:center;
  11154. padding:2px 2px 2px 2px;
  11155. box-sizing:border-box;
  11156. width:100%;
  11157. }
  11158. #u364_text {
  11159. border-width:0px;
  11160. word-wrap:break-word;
  11161. text-transform:none;
  11162. visibility:hidden;
  11163. }
  11164. #u365 {
  11165. border-width:0px;
  11166. position:absolute;
  11167. left:0px;
  11168. top:0px;
  11169. width:0px;
  11170. height:0px;
  11171. }
  11172. #u366_div {
  11173. border-width:0px;
  11174. position:absolute;
  11175. left:0px;
  11176. top:0px;
  11177. width:33px;
  11178. height:22px;
  11179. background:inherit;
  11180. background-color:rgba(255, 255, 255, 0);
  11181. border:none;
  11182. border-radius:0px;
  11183. -moz-box-shadow:none;
  11184. -webkit-box-shadow:none;
  11185. box-shadow:none;
  11186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11187. font-weight:400;
  11188. font-style:normal;
  11189. font-size:16px;
  11190. color:#FFFFFF;
  11191. }
  11192. #u366 {
  11193. border-width:0px;
  11194. position:absolute;
  11195. left:1669px;
  11196. top:222px;
  11197. width:33px;
  11198. height:22px;
  11199. display:flex;
  11200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11201. font-weight:400;
  11202. font-style:normal;
  11203. font-size:16px;
  11204. color:#FFFFFF;
  11205. }
  11206. #u366 .text {
  11207. position:absolute;
  11208. align-self:flex-start;
  11209. padding:0px 0px 0px 0px;
  11210. box-sizing:border-box;
  11211. width:100%;
  11212. }
  11213. #u366_text {
  11214. border-width:0px;
  11215. white-space:nowrap;
  11216. text-transform:none;
  11217. }
  11218. #u367_img {
  11219. border-width:0px;
  11220. position:absolute;
  11221. left:0px;
  11222. top:0px;
  11223. width:14px;
  11224. height:14px;
  11225. }
  11226. #u367 {
  11227. border-width:0px;
  11228. position:absolute;
  11229. left:1650px;
  11230. top:226px;
  11231. width:14px;
  11232. height:14px;
  11233. display:flex;
  11234. }
  11235. #u367 .text {
  11236. position:absolute;
  11237. align-self:center;
  11238. padding:2px 2px 2px 2px;
  11239. box-sizing:border-box;
  11240. width:100%;
  11241. }
  11242. #u367_text {
  11243. border-width:0px;
  11244. word-wrap:break-word;
  11245. text-transform:none;
  11246. visibility:hidden;
  11247. }
  11248. #u368_div {
  11249. border-width:0px;
  11250. position:absolute;
  11251. left:0px;
  11252. top:0px;
  11253. width:1480px;
  11254. height:1196px;
  11255. background:inherit;
  11256. background-color:rgba(242, 242, 242, 1);
  11257. border:none;
  11258. border-radius:0px;
  11259. -moz-box-shadow:none;
  11260. -webkit-box-shadow:none;
  11261. box-shadow:none;
  11262. }
  11263. #u368 {
  11264. border-width:0px;
  11265. position:absolute;
  11266. left:1750px;
  11267. top:50px;
  11268. width:1480px;
  11269. height:1196px;
  11270. display:flex;
  11271. }
  11272. #u368 .text {
  11273. position:absolute;
  11274. align-self:center;
  11275. padding:2px 2px 2px 2px;
  11276. box-sizing:border-box;
  11277. width:100%;
  11278. }
  11279. #u368_text {
  11280. border-width:0px;
  11281. word-wrap:break-word;
  11282. text-transform:none;
  11283. visibility:hidden;
  11284. }
  11285. #u369_div {
  11286. border-width:0px;
  11287. position:absolute;
  11288. left:0px;
  11289. top:0px;
  11290. width:1456px;
  11291. height:1170px;
  11292. background:inherit;
  11293. background-color:rgba(255, 255, 255, 1);
  11294. border:none;
  11295. border-radius:0px;
  11296. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  11297. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  11298. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  11299. }
  11300. #u369 {
  11301. border-width:0px;
  11302. position:absolute;
  11303. left:1762px;
  11304. top:63px;
  11305. width:1456px;
  11306. height:1170px;
  11307. display:flex;
  11308. }
  11309. #u369 .text {
  11310. position:absolute;
  11311. align-self:center;
  11312. padding:2px 2px 2px 2px;
  11313. box-sizing:border-box;
  11314. width:100%;
  11315. }
  11316. #u369_text {
  11317. border-width:0px;
  11318. word-wrap:break-word;
  11319. text-transform:none;
  11320. visibility:hidden;
  11321. }
  11322. #u370_div {
  11323. border-width:0px;
  11324. position:absolute;
  11325. left:0px;
  11326. top:0px;
  11327. width:77px;
  11328. height:25px;
  11329. background:inherit;
  11330. background-color:rgba(255, 255, 255, 0);
  11331. border:none;
  11332. border-radius:0px;
  11333. -moz-box-shadow:none;
  11334. -webkit-box-shadow:none;
  11335. box-shadow:none;
  11336. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11337. font-weight:500;
  11338. font-style:normal;
  11339. font-size:18px;
  11340. }
  11341. #u370 {
  11342. border-width:0px;
  11343. position:absolute;
  11344. left:1806px;
  11345. top:83px;
  11346. width:77px;
  11347. height:25px;
  11348. display:flex;
  11349. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11350. font-weight:500;
  11351. font-style:normal;
  11352. font-size:18px;
  11353. }
  11354. #u370 .text {
  11355. position:absolute;
  11356. align-self:flex-start;
  11357. padding:0px 0px 0px 0px;
  11358. box-sizing:border-box;
  11359. width:100%;
  11360. }
  11361. #u370_text {
  11362. border-width:0px;
  11363. word-wrap:break-word;
  11364. text-transform:none;
  11365. }
  11366. #u371_div {
  11367. border-width:0px;
  11368. position:absolute;
  11369. left:0px;
  11370. top:0px;
  11371. width:77px;
  11372. height:25px;
  11373. background:inherit;
  11374. background-color:rgba(255, 255, 255, 0);
  11375. border:none;
  11376. border-radius:0px;
  11377. -moz-box-shadow:none;
  11378. -webkit-box-shadow:none;
  11379. box-shadow:none;
  11380. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11381. font-weight:500;
  11382. font-style:normal;
  11383. font-size:18px;
  11384. }
  11385. #u371 {
  11386. border-width:0px;
  11387. position:absolute;
  11388. left:1806px;
  11389. top:382px;
  11390. width:77px;
  11391. height:25px;
  11392. display:flex;
  11393. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11394. font-weight:500;
  11395. font-style:normal;
  11396. font-size:18px;
  11397. }
  11398. #u371 .text {
  11399. position:absolute;
  11400. align-self:flex-start;
  11401. padding:0px 0px 0px 0px;
  11402. box-sizing:border-box;
  11403. width:100%;
  11404. }
  11405. #u371_text {
  11406. border-width:0px;
  11407. word-wrap:break-word;
  11408. text-transform:none;
  11409. }
  11410. #u372 {
  11411. border-width:0px;
  11412. position:absolute;
  11413. left:0px;
  11414. top:0px;
  11415. width:0px;
  11416. height:0px;
  11417. }
  11418. #u373 {
  11419. border-width:0px;
  11420. position:absolute;
  11421. left:0px;
  11422. top:0px;
  11423. width:0px;
  11424. height:0px;
  11425. }
  11426. #u374_div {
  11427. border-width:0px;
  11428. position:absolute;
  11429. left:0px;
  11430. top:0px;
  11431. width:258px;
  11432. height:17px;
  11433. background:inherit;
  11434. background-color:rgba(255, 255, 255, 0);
  11435. border:none;
  11436. border-radius:0px;
  11437. -moz-box-shadow:none;
  11438. -webkit-box-shadow:none;
  11439. box-shadow:none;
  11440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11441. font-weight:400;
  11442. font-style:normal;
  11443. font-size:12px;
  11444. color:#555555;
  11445. }
  11446. #u374 {
  11447. border-width:0px;
  11448. position:absolute;
  11449. left:1806px;
  11450. top:129px;
  11451. width:258px;
  11452. height:17px;
  11453. display:flex;
  11454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11455. font-weight:400;
  11456. font-style:normal;
  11457. font-size:12px;
  11458. color:#555555;
  11459. }
  11460. #u374 .text {
  11461. position:absolute;
  11462. align-self:flex-start;
  11463. padding:0px 0px 0px 0px;
  11464. box-sizing:border-box;
  11465. width:100%;
  11466. }
  11467. #u374_text {
  11468. border-width:0px;
  11469. word-wrap:break-word;
  11470. text-transform:none;
  11471. }
  11472. #u375_div {
  11473. border-width:0px;
  11474. position:absolute;
  11475. left:0px;
  11476. top:0px;
  11477. width:76px;
  11478. height:17px;
  11479. background:inherit;
  11480. background-color:rgba(255, 255, 255, 0);
  11481. border:none;
  11482. border-radius:0px;
  11483. -moz-box-shadow:none;
  11484. -webkit-box-shadow:none;
  11485. box-shadow:none;
  11486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11487. font-weight:400;
  11488. font-style:normal;
  11489. font-size:12px;
  11490. color:#555555;
  11491. text-align:right;
  11492. }
  11493. #u375 {
  11494. border-width:0px;
  11495. position:absolute;
  11496. left:2203px;
  11497. top:129px;
  11498. width:76px;
  11499. height:17px;
  11500. display:flex;
  11501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11502. font-weight:400;
  11503. font-style:normal;
  11504. font-size:12px;
  11505. color:#555555;
  11506. text-align:right;
  11507. }
  11508. #u375 .text {
  11509. position:absolute;
  11510. align-self:flex-start;
  11511. padding:0px 0px 0px 0px;
  11512. box-sizing:border-box;
  11513. width:100%;
  11514. }
  11515. #u375_text {
  11516. border-width:0px;
  11517. word-wrap:break-word;
  11518. text-transform:none;
  11519. }
  11520. #u376 {
  11521. border-width:0px;
  11522. position:absolute;
  11523. left:0px;
  11524. top:0px;
  11525. width:0px;
  11526. height:0px;
  11527. }
  11528. #u377_div {
  11529. border-width:0px;
  11530. position:absolute;
  11531. left:0px;
  11532. top:0px;
  11533. width:258px;
  11534. height:17px;
  11535. background:inherit;
  11536. background-color:rgba(255, 255, 255, 0);
  11537. border:none;
  11538. border-radius:0px;
  11539. -moz-box-shadow:none;
  11540. -webkit-box-shadow:none;
  11541. box-shadow:none;
  11542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11543. font-weight:400;
  11544. font-style:normal;
  11545. font-size:12px;
  11546. color:#555555;
  11547. }
  11548. #u377 {
  11549. border-width:0px;
  11550. position:absolute;
  11551. left:1806px;
  11552. top:156px;
  11553. width:258px;
  11554. height:17px;
  11555. display:flex;
  11556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11557. font-weight:400;
  11558. font-style:normal;
  11559. font-size:12px;
  11560. color:#555555;
  11561. }
  11562. #u377 .text {
  11563. position:absolute;
  11564. align-self:flex-start;
  11565. padding:0px 0px 0px 0px;
  11566. box-sizing:border-box;
  11567. width:100%;
  11568. }
  11569. #u377_text {
  11570. border-width:0px;
  11571. word-wrap:break-word;
  11572. text-transform:none;
  11573. }
  11574. #u378_div {
  11575. border-width:0px;
  11576. position:absolute;
  11577. left:0px;
  11578. top:0px;
  11579. width:76px;
  11580. height:17px;
  11581. background:inherit;
  11582. background-color:rgba(255, 255, 255, 0);
  11583. border:none;
  11584. border-radius:0px;
  11585. -moz-box-shadow:none;
  11586. -webkit-box-shadow:none;
  11587. box-shadow:none;
  11588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11589. font-weight:400;
  11590. font-style:normal;
  11591. font-size:12px;
  11592. color:#555555;
  11593. text-align:right;
  11594. }
  11595. #u378 {
  11596. border-width:0px;
  11597. position:absolute;
  11598. left:2203px;
  11599. top:156px;
  11600. width:76px;
  11601. height:17px;
  11602. display:flex;
  11603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11604. font-weight:400;
  11605. font-style:normal;
  11606. font-size:12px;
  11607. color:#555555;
  11608. text-align:right;
  11609. }
  11610. #u378 .text {
  11611. position:absolute;
  11612. align-self:flex-start;
  11613. padding:0px 0px 0px 0px;
  11614. box-sizing:border-box;
  11615. width:100%;
  11616. }
  11617. #u378_text {
  11618. border-width:0px;
  11619. word-wrap:break-word;
  11620. text-transform:none;
  11621. }
  11622. #u379 {
  11623. border-width:0px;
  11624. position:absolute;
  11625. left:0px;
  11626. top:0px;
  11627. width:0px;
  11628. height:0px;
  11629. }
  11630. #u380_div {
  11631. border-width:0px;
  11632. position:absolute;
  11633. left:0px;
  11634. top:0px;
  11635. width:258px;
  11636. height:17px;
  11637. background:inherit;
  11638. background-color:rgba(255, 255, 255, 0);
  11639. border:none;
  11640. border-radius:0px;
  11641. -moz-box-shadow:none;
  11642. -webkit-box-shadow:none;
  11643. box-shadow:none;
  11644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11645. font-weight:400;
  11646. font-style:normal;
  11647. font-size:12px;
  11648. color:#555555;
  11649. }
  11650. #u380 {
  11651. border-width:0px;
  11652. position:absolute;
  11653. left:1806px;
  11654. top:184px;
  11655. width:258px;
  11656. height:17px;
  11657. display:flex;
  11658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11659. font-weight:400;
  11660. font-style:normal;
  11661. font-size:12px;
  11662. color:#555555;
  11663. }
  11664. #u380 .text {
  11665. position:absolute;
  11666. align-self:flex-start;
  11667. padding:0px 0px 0px 0px;
  11668. box-sizing:border-box;
  11669. width:100%;
  11670. }
  11671. #u380_text {
  11672. border-width:0px;
  11673. word-wrap:break-word;
  11674. text-transform:none;
  11675. }
  11676. #u381_div {
  11677. border-width:0px;
  11678. position:absolute;
  11679. left:0px;
  11680. top:0px;
  11681. width:76px;
  11682. height:17px;
  11683. background:inherit;
  11684. background-color:rgba(255, 255, 255, 0);
  11685. border:none;
  11686. border-radius:0px;
  11687. -moz-box-shadow:none;
  11688. -webkit-box-shadow:none;
  11689. box-shadow:none;
  11690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11691. font-weight:400;
  11692. font-style:normal;
  11693. font-size:12px;
  11694. color:#555555;
  11695. text-align:right;
  11696. }
  11697. #u381 {
  11698. border-width:0px;
  11699. position:absolute;
  11700. left:2203px;
  11701. top:184px;
  11702. width:76px;
  11703. height:17px;
  11704. display:flex;
  11705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11706. font-weight:400;
  11707. font-style:normal;
  11708. font-size:12px;
  11709. color:#555555;
  11710. text-align:right;
  11711. }
  11712. #u381 .text {
  11713. position:absolute;
  11714. align-self:flex-start;
  11715. padding:0px 0px 0px 0px;
  11716. box-sizing:border-box;
  11717. width:100%;
  11718. }
  11719. #u381_text {
  11720. border-width:0px;
  11721. word-wrap:break-word;
  11722. text-transform:none;
  11723. }
  11724. #u382 {
  11725. border-width:0px;
  11726. position:absolute;
  11727. left:0px;
  11728. top:0px;
  11729. width:0px;
  11730. height:0px;
  11731. }
  11732. #u383_div {
  11733. border-width:0px;
  11734. position:absolute;
  11735. left:0px;
  11736. top:0px;
  11737. width:258px;
  11738. height:17px;
  11739. background:inherit;
  11740. background-color:rgba(255, 255, 255, 0);
  11741. border:none;
  11742. border-radius:0px;
  11743. -moz-box-shadow:none;
  11744. -webkit-box-shadow:none;
  11745. box-shadow:none;
  11746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11747. font-weight:400;
  11748. font-style:normal;
  11749. font-size:12px;
  11750. color:#555555;
  11751. }
  11752. #u383 {
  11753. border-width:0px;
  11754. position:absolute;
  11755. left:1806px;
  11756. top:211px;
  11757. width:258px;
  11758. height:17px;
  11759. display:flex;
  11760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11761. font-weight:400;
  11762. font-style:normal;
  11763. font-size:12px;
  11764. color:#555555;
  11765. }
  11766. #u383 .text {
  11767. position:absolute;
  11768. align-self:flex-start;
  11769. padding:0px 0px 0px 0px;
  11770. box-sizing:border-box;
  11771. width:100%;
  11772. }
  11773. #u383_text {
  11774. border-width:0px;
  11775. word-wrap:break-word;
  11776. text-transform:none;
  11777. }
  11778. #u384_div {
  11779. border-width:0px;
  11780. position:absolute;
  11781. left:0px;
  11782. top:0px;
  11783. width:76px;
  11784. height:17px;
  11785. background:inherit;
  11786. background-color:rgba(255, 255, 255, 0);
  11787. border:none;
  11788. border-radius:0px;
  11789. -moz-box-shadow:none;
  11790. -webkit-box-shadow:none;
  11791. box-shadow:none;
  11792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11793. font-weight:400;
  11794. font-style:normal;
  11795. font-size:12px;
  11796. color:#555555;
  11797. text-align:right;
  11798. }
  11799. #u384 {
  11800. border-width:0px;
  11801. position:absolute;
  11802. left:2203px;
  11803. top:211px;
  11804. width:76px;
  11805. height:17px;
  11806. display:flex;
  11807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11808. font-weight:400;
  11809. font-style:normal;
  11810. font-size:12px;
  11811. color:#555555;
  11812. text-align:right;
  11813. }
  11814. #u384 .text {
  11815. position:absolute;
  11816. align-self:flex-start;
  11817. padding:0px 0px 0px 0px;
  11818. box-sizing:border-box;
  11819. width:100%;
  11820. }
  11821. #u384_text {
  11822. border-width:0px;
  11823. word-wrap:break-word;
  11824. text-transform:none;
  11825. }
  11826. #u385 {
  11827. border-width:0px;
  11828. position:absolute;
  11829. left:0px;
  11830. top:0px;
  11831. width:0px;
  11832. height:0px;
  11833. }
  11834. #u386_div {
  11835. border-width:0px;
  11836. position:absolute;
  11837. left:0px;
  11838. top:0px;
  11839. width:258px;
  11840. height:17px;
  11841. background:inherit;
  11842. background-color:rgba(255, 255, 255, 0);
  11843. border:none;
  11844. border-radius:0px;
  11845. -moz-box-shadow:none;
  11846. -webkit-box-shadow:none;
  11847. box-shadow:none;
  11848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11849. font-weight:400;
  11850. font-style:normal;
  11851. font-size:12px;
  11852. color:#555555;
  11853. }
  11854. #u386 {
  11855. border-width:0px;
  11856. position:absolute;
  11857. left:1806px;
  11858. top:238px;
  11859. width:258px;
  11860. height:17px;
  11861. display:flex;
  11862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11863. font-weight:400;
  11864. font-style:normal;
  11865. font-size:12px;
  11866. color:#555555;
  11867. }
  11868. #u386 .text {
  11869. position:absolute;
  11870. align-self:flex-start;
  11871. padding:0px 0px 0px 0px;
  11872. box-sizing:border-box;
  11873. width:100%;
  11874. }
  11875. #u386_text {
  11876. border-width:0px;
  11877. word-wrap:break-word;
  11878. text-transform:none;
  11879. }
  11880. #u387_div {
  11881. border-width:0px;
  11882. position:absolute;
  11883. left:0px;
  11884. top:0px;
  11885. width:76px;
  11886. height:17px;
  11887. background:inherit;
  11888. background-color:rgba(255, 255, 255, 0);
  11889. border:none;
  11890. border-radius:0px;
  11891. -moz-box-shadow:none;
  11892. -webkit-box-shadow:none;
  11893. box-shadow:none;
  11894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11895. font-weight:400;
  11896. font-style:normal;
  11897. font-size:12px;
  11898. color:#555555;
  11899. text-align:right;
  11900. }
  11901. #u387 {
  11902. border-width:0px;
  11903. position:absolute;
  11904. left:2203px;
  11905. top:238px;
  11906. width:76px;
  11907. height:17px;
  11908. display:flex;
  11909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11910. font-weight:400;
  11911. font-style:normal;
  11912. font-size:12px;
  11913. color:#555555;
  11914. text-align:right;
  11915. }
  11916. #u387 .text {
  11917. position:absolute;
  11918. align-self:flex-start;
  11919. padding:0px 0px 0px 0px;
  11920. box-sizing:border-box;
  11921. width:100%;
  11922. }
  11923. #u387_text {
  11924. border-width:0px;
  11925. word-wrap:break-word;
  11926. text-transform:none;
  11927. }
  11928. #u388 {
  11929. border-width:0px;
  11930. position:absolute;
  11931. left:0px;
  11932. top:0px;
  11933. width:0px;
  11934. height:0px;
  11935. }
  11936. #u389_div {
  11937. border-width:0px;
  11938. position:absolute;
  11939. left:0px;
  11940. top:0px;
  11941. width:258px;
  11942. height:17px;
  11943. background:inherit;
  11944. background-color:rgba(255, 255, 255, 0);
  11945. border:none;
  11946. border-radius:0px;
  11947. -moz-box-shadow:none;
  11948. -webkit-box-shadow:none;
  11949. box-shadow:none;
  11950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11951. font-weight:400;
  11952. font-style:normal;
  11953. font-size:12px;
  11954. color:#555555;
  11955. }
  11956. #u389 {
  11957. border-width:0px;
  11958. position:absolute;
  11959. left:1806px;
  11960. top:266px;
  11961. width:258px;
  11962. height:17px;
  11963. display:flex;
  11964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11965. font-weight:400;
  11966. font-style:normal;
  11967. font-size:12px;
  11968. color:#555555;
  11969. }
  11970. #u389 .text {
  11971. position:absolute;
  11972. align-self:flex-start;
  11973. padding:0px 0px 0px 0px;
  11974. box-sizing:border-box;
  11975. width:100%;
  11976. }
  11977. #u389_text {
  11978. border-width:0px;
  11979. word-wrap:break-word;
  11980. text-transform:none;
  11981. }
  11982. #u390_div {
  11983. border-width:0px;
  11984. position:absolute;
  11985. left:0px;
  11986. top:0px;
  11987. width:76px;
  11988. height:17px;
  11989. background:inherit;
  11990. background-color:rgba(255, 255, 255, 0);
  11991. border:none;
  11992. border-radius:0px;
  11993. -moz-box-shadow:none;
  11994. -webkit-box-shadow:none;
  11995. box-shadow:none;
  11996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11997. font-weight:400;
  11998. font-style:normal;
  11999. font-size:12px;
  12000. color:#555555;
  12001. text-align:right;
  12002. }
  12003. #u390 {
  12004. border-width:0px;
  12005. position:absolute;
  12006. left:2203px;
  12007. top:266px;
  12008. width:76px;
  12009. height:17px;
  12010. display:flex;
  12011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12012. font-weight:400;
  12013. font-style:normal;
  12014. font-size:12px;
  12015. color:#555555;
  12016. text-align:right;
  12017. }
  12018. #u390 .text {
  12019. position:absolute;
  12020. align-self:flex-start;
  12021. padding:0px 0px 0px 0px;
  12022. box-sizing:border-box;
  12023. width:100%;
  12024. }
  12025. #u390_text {
  12026. border-width:0px;
  12027. word-wrap:break-word;
  12028. text-transform:none;
  12029. }
  12030. #u391 {
  12031. border-width:0px;
  12032. position:absolute;
  12033. left:0px;
  12034. top:0px;
  12035. width:0px;
  12036. height:0px;
  12037. }
  12038. #u392_div {
  12039. border-width:0px;
  12040. position:absolute;
  12041. left:0px;
  12042. top:0px;
  12043. width:258px;
  12044. height:17px;
  12045. background:inherit;
  12046. background-color:rgba(255, 255, 255, 0);
  12047. border:none;
  12048. border-radius:0px;
  12049. -moz-box-shadow:none;
  12050. -webkit-box-shadow:none;
  12051. box-shadow:none;
  12052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12053. font-weight:400;
  12054. font-style:normal;
  12055. font-size:12px;
  12056. color:#555555;
  12057. }
  12058. #u392 {
  12059. border-width:0px;
  12060. position:absolute;
  12061. left:1806px;
  12062. top:293px;
  12063. width:258px;
  12064. height:17px;
  12065. display:flex;
  12066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12067. font-weight:400;
  12068. font-style:normal;
  12069. font-size:12px;
  12070. color:#555555;
  12071. }
  12072. #u392 .text {
  12073. position:absolute;
  12074. align-self:flex-start;
  12075. padding:0px 0px 0px 0px;
  12076. box-sizing:border-box;
  12077. width:100%;
  12078. }
  12079. #u392_text {
  12080. border-width:0px;
  12081. word-wrap:break-word;
  12082. text-transform:none;
  12083. }
  12084. #u393_div {
  12085. border-width:0px;
  12086. position:absolute;
  12087. left:0px;
  12088. top:0px;
  12089. width:76px;
  12090. height:17px;
  12091. background:inherit;
  12092. background-color:rgba(255, 255, 255, 0);
  12093. border:none;
  12094. border-radius:0px;
  12095. -moz-box-shadow:none;
  12096. -webkit-box-shadow:none;
  12097. box-shadow:none;
  12098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12099. font-weight:400;
  12100. font-style:normal;
  12101. font-size:12px;
  12102. color:#555555;
  12103. text-align:right;
  12104. }
  12105. #u393 {
  12106. border-width:0px;
  12107. position:absolute;
  12108. left:2203px;
  12109. top:293px;
  12110. width:76px;
  12111. height:17px;
  12112. display:flex;
  12113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12114. font-weight:400;
  12115. font-style:normal;
  12116. font-size:12px;
  12117. color:#555555;
  12118. text-align:right;
  12119. }
  12120. #u393 .text {
  12121. position:absolute;
  12122. align-self:flex-start;
  12123. padding:0px 0px 0px 0px;
  12124. box-sizing:border-box;
  12125. width:100%;
  12126. }
  12127. #u393_text {
  12128. border-width:0px;
  12129. word-wrap:break-word;
  12130. text-transform:none;
  12131. }
  12132. #u394 {
  12133. border-width:0px;
  12134. position:absolute;
  12135. left:0px;
  12136. top:0px;
  12137. width:0px;
  12138. height:0px;
  12139. }
  12140. #u395_div {
  12141. border-width:0px;
  12142. position:absolute;
  12143. left:0px;
  12144. top:0px;
  12145. width:258px;
  12146. height:17px;
  12147. background:inherit;
  12148. background-color:rgba(255, 255, 255, 0);
  12149. border:none;
  12150. border-radius:0px;
  12151. -moz-box-shadow:none;
  12152. -webkit-box-shadow:none;
  12153. box-shadow:none;
  12154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12155. font-weight:400;
  12156. font-style:normal;
  12157. font-size:12px;
  12158. color:#555555;
  12159. }
  12160. #u395 {
  12161. border-width:0px;
  12162. position:absolute;
  12163. left:1806px;
  12164. top:321px;
  12165. width:258px;
  12166. height:17px;
  12167. display:flex;
  12168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12169. font-weight:400;
  12170. font-style:normal;
  12171. font-size:12px;
  12172. color:#555555;
  12173. }
  12174. #u395 .text {
  12175. position:absolute;
  12176. align-self:flex-start;
  12177. padding:0px 0px 0px 0px;
  12178. box-sizing:border-box;
  12179. width:100%;
  12180. }
  12181. #u395_text {
  12182. border-width:0px;
  12183. word-wrap:break-word;
  12184. text-transform:none;
  12185. }
  12186. #u396_div {
  12187. border-width:0px;
  12188. position:absolute;
  12189. left:0px;
  12190. top:0px;
  12191. width:76px;
  12192. height:17px;
  12193. background:inherit;
  12194. background-color:rgba(255, 255, 255, 0);
  12195. border:none;
  12196. border-radius:0px;
  12197. -moz-box-shadow:none;
  12198. -webkit-box-shadow:none;
  12199. box-shadow:none;
  12200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12201. font-weight:400;
  12202. font-style:normal;
  12203. font-size:12px;
  12204. color:#555555;
  12205. text-align:right;
  12206. }
  12207. #u396 {
  12208. border-width:0px;
  12209. position:absolute;
  12210. left:2203px;
  12211. top:321px;
  12212. width:76px;
  12213. height:17px;
  12214. display:flex;
  12215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12216. font-weight:400;
  12217. font-style:normal;
  12218. font-size:12px;
  12219. color:#555555;
  12220. text-align:right;
  12221. }
  12222. #u396 .text {
  12223. position:absolute;
  12224. align-self:flex-start;
  12225. padding:0px 0px 0px 0px;
  12226. box-sizing:border-box;
  12227. width:100%;
  12228. }
  12229. #u396_text {
  12230. border-width:0px;
  12231. word-wrap:break-word;
  12232. text-transform:none;
  12233. }
  12234. #u397_img {
  12235. border-width:0px;
  12236. position:absolute;
  12237. left:0px;
  12238. top:0px;
  12239. width:4px;
  12240. height:4px;
  12241. }
  12242. #u397 {
  12243. border-width:0px;
  12244. position:absolute;
  12245. left:1806px;
  12246. top:136px;
  12247. width:4px;
  12248. height:4px;
  12249. display:flex;
  12250. }
  12251. #u397 .text {
  12252. position:absolute;
  12253. align-self:center;
  12254. padding:2px 2px 2px 2px;
  12255. box-sizing:border-box;
  12256. width:100%;
  12257. }
  12258. #u397_text {
  12259. border-width:0px;
  12260. word-wrap:break-word;
  12261. text-transform:none;
  12262. visibility:hidden;
  12263. }
  12264. #u398_img {
  12265. border-width:0px;
  12266. position:absolute;
  12267. left:0px;
  12268. top:0px;
  12269. width:4px;
  12270. height:4px;
  12271. }
  12272. #u398 {
  12273. border-width:0px;
  12274. position:absolute;
  12275. left:1806px;
  12276. top:163px;
  12277. width:4px;
  12278. height:4px;
  12279. display:flex;
  12280. }
  12281. #u398 .text {
  12282. position:absolute;
  12283. align-self:center;
  12284. padding:2px 2px 2px 2px;
  12285. box-sizing:border-box;
  12286. width:100%;
  12287. }
  12288. #u398_text {
  12289. border-width:0px;
  12290. word-wrap:break-word;
  12291. text-transform:none;
  12292. visibility:hidden;
  12293. }
  12294. #u399_img {
  12295. border-width:0px;
  12296. position:absolute;
  12297. left:0px;
  12298. top:0px;
  12299. width:4px;
  12300. height:4px;
  12301. }
  12302. #u399 {
  12303. border-width:0px;
  12304. position:absolute;
  12305. left:1806px;
  12306. top:191px;
  12307. width:4px;
  12308. height:4px;
  12309. display:flex;
  12310. }
  12311. #u399 .text {
  12312. position:absolute;
  12313. align-self:center;
  12314. padding:2px 2px 2px 2px;
  12315. box-sizing:border-box;
  12316. width:100%;
  12317. }
  12318. #u399_text {
  12319. border-width:0px;
  12320. word-wrap:break-word;
  12321. text-transform:none;
  12322. visibility:hidden;
  12323. }
  12324. #u400_img {
  12325. border-width:0px;
  12326. position:absolute;
  12327. left:0px;
  12328. top:0px;
  12329. width:4px;
  12330. height:4px;
  12331. }
  12332. #u400 {
  12333. border-width:0px;
  12334. position:absolute;
  12335. left:1806px;
  12336. top:218px;
  12337. width:4px;
  12338. height:4px;
  12339. display:flex;
  12340. }
  12341. #u400 .text {
  12342. position:absolute;
  12343. align-self:center;
  12344. padding:2px 2px 2px 2px;
  12345. box-sizing:border-box;
  12346. width:100%;
  12347. }
  12348. #u400_text {
  12349. border-width:0px;
  12350. word-wrap:break-word;
  12351. text-transform:none;
  12352. visibility:hidden;
  12353. }
  12354. #u401_img {
  12355. border-width:0px;
  12356. position:absolute;
  12357. left:0px;
  12358. top:0px;
  12359. width:4px;
  12360. height:4px;
  12361. }
  12362. #u401 {
  12363. border-width:0px;
  12364. position:absolute;
  12365. left:1806px;
  12366. top:245px;
  12367. width:4px;
  12368. height:4px;
  12369. display:flex;
  12370. }
  12371. #u401 .text {
  12372. position:absolute;
  12373. align-self:center;
  12374. padding:2px 2px 2px 2px;
  12375. box-sizing:border-box;
  12376. width:100%;
  12377. }
  12378. #u401_text {
  12379. border-width:0px;
  12380. word-wrap:break-word;
  12381. text-transform:none;
  12382. visibility:hidden;
  12383. }
  12384. #u402_img {
  12385. border-width:0px;
  12386. position:absolute;
  12387. left:0px;
  12388. top:0px;
  12389. width:4px;
  12390. height:4px;
  12391. }
  12392. #u402 {
  12393. border-width:0px;
  12394. position:absolute;
  12395. left:1806px;
  12396. top:273px;
  12397. width:4px;
  12398. height:4px;
  12399. display:flex;
  12400. }
  12401. #u402 .text {
  12402. position:absolute;
  12403. align-self:center;
  12404. padding:2px 2px 2px 2px;
  12405. box-sizing:border-box;
  12406. width:100%;
  12407. }
  12408. #u402_text {
  12409. border-width:0px;
  12410. word-wrap:break-word;
  12411. text-transform:none;
  12412. visibility:hidden;
  12413. }
  12414. #u403_img {
  12415. border-width:0px;
  12416. position:absolute;
  12417. left:0px;
  12418. top:0px;
  12419. width:4px;
  12420. height:4px;
  12421. }
  12422. #u403 {
  12423. border-width:0px;
  12424. position:absolute;
  12425. left:1806px;
  12426. top:300px;
  12427. width:4px;
  12428. height:4px;
  12429. display:flex;
  12430. }
  12431. #u403 .text {
  12432. position:absolute;
  12433. align-self:center;
  12434. padding:2px 2px 2px 2px;
  12435. box-sizing:border-box;
  12436. width:100%;
  12437. }
  12438. #u403_text {
  12439. border-width:0px;
  12440. word-wrap:break-word;
  12441. text-transform:none;
  12442. visibility:hidden;
  12443. }
  12444. #u404_img {
  12445. border-width:0px;
  12446. position:absolute;
  12447. left:0px;
  12448. top:0px;
  12449. width:4px;
  12450. height:4px;
  12451. }
  12452. #u404 {
  12453. border-width:0px;
  12454. position:absolute;
  12455. left:1806px;
  12456. top:328px;
  12457. width:4px;
  12458. height:4px;
  12459. display:flex;
  12460. }
  12461. #u404 .text {
  12462. position:absolute;
  12463. align-self:center;
  12464. padding:2px 2px 2px 2px;
  12465. box-sizing:border-box;
  12466. width:100%;
  12467. }
  12468. #u404_text {
  12469. border-width:0px;
  12470. word-wrap:break-word;
  12471. text-transform:none;
  12472. visibility:hidden;
  12473. }
  12474. #u405 {
  12475. border-width:0px;
  12476. position:absolute;
  12477. left:0px;
  12478. top:0px;
  12479. width:0px;
  12480. height:0px;
  12481. }
  12482. #u406 {
  12483. border-width:0px;
  12484. position:absolute;
  12485. left:0px;
  12486. top:0px;
  12487. width:0px;
  12488. height:0px;
  12489. }
  12490. #u407_div {
  12491. border-width:0px;
  12492. position:absolute;
  12493. left:0px;
  12494. top:0px;
  12495. width:355px;
  12496. height:17px;
  12497. background:inherit;
  12498. background-color:rgba(255, 255, 255, 0);
  12499. border:none;
  12500. border-radius:0px;
  12501. -moz-box-shadow:none;
  12502. -webkit-box-shadow:none;
  12503. box-shadow:none;
  12504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12505. font-weight:400;
  12506. font-style:normal;
  12507. font-size:12px;
  12508. color:#555555;
  12509. }
  12510. #u407 {
  12511. border-width:0px;
  12512. position:absolute;
  12513. left:1806px;
  12514. top:428px;
  12515. width:355px;
  12516. height:17px;
  12517. display:flex;
  12518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12519. font-weight:400;
  12520. font-style:normal;
  12521. font-size:12px;
  12522. color:#555555;
  12523. }
  12524. #u407 .text {
  12525. position:absolute;
  12526. align-self:flex-start;
  12527. padding:0px 0px 0px 0px;
  12528. box-sizing:border-box;
  12529. width:100%;
  12530. }
  12531. #u407_text {
  12532. border-width:0px;
  12533. word-wrap:break-word;
  12534. text-transform:none;
  12535. }
  12536. #u408_div {
  12537. border-width:0px;
  12538. position:absolute;
  12539. left:0px;
  12540. top:0px;
  12541. width:76px;
  12542. height:17px;
  12543. background:inherit;
  12544. background-color:rgba(255, 255, 255, 0);
  12545. border:none;
  12546. border-radius:0px;
  12547. -moz-box-shadow:none;
  12548. -webkit-box-shadow:none;
  12549. box-shadow:none;
  12550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12551. font-weight:400;
  12552. font-style:normal;
  12553. font-size:12px;
  12554. color:#555555;
  12555. text-align:right;
  12556. }
  12557. #u408 {
  12558. border-width:0px;
  12559. position:absolute;
  12560. left:2203px;
  12561. top:428px;
  12562. width:76px;
  12563. height:17px;
  12564. display:flex;
  12565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12566. font-weight:400;
  12567. font-style:normal;
  12568. font-size:12px;
  12569. color:#555555;
  12570. text-align:right;
  12571. }
  12572. #u408 .text {
  12573. position:absolute;
  12574. align-self:flex-start;
  12575. padding:0px 0px 0px 0px;
  12576. box-sizing:border-box;
  12577. width:100%;
  12578. }
  12579. #u408_text {
  12580. border-width:0px;
  12581. word-wrap:break-word;
  12582. text-transform:none;
  12583. }
  12584. #u409 {
  12585. border-width:0px;
  12586. position:absolute;
  12587. left:0px;
  12588. top:0px;
  12589. width:0px;
  12590. height:0px;
  12591. }
  12592. #u410_div {
  12593. border-width:0px;
  12594. position:absolute;
  12595. left:0px;
  12596. top:0px;
  12597. width:355px;
  12598. height:17px;
  12599. background:inherit;
  12600. background-color:rgba(255, 255, 255, 0);
  12601. border:none;
  12602. border-radius:0px;
  12603. -moz-box-shadow:none;
  12604. -webkit-box-shadow:none;
  12605. box-shadow:none;
  12606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12607. font-weight:400;
  12608. font-style:normal;
  12609. font-size:12px;
  12610. color:#555555;
  12611. }
  12612. #u410 {
  12613. border-width:0px;
  12614. position:absolute;
  12615. left:1806px;
  12616. top:455px;
  12617. width:355px;
  12618. height:17px;
  12619. display:flex;
  12620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12621. font-weight:400;
  12622. font-style:normal;
  12623. font-size:12px;
  12624. color:#555555;
  12625. }
  12626. #u410 .text {
  12627. position:absolute;
  12628. align-self:flex-start;
  12629. padding:0px 0px 0px 0px;
  12630. box-sizing:border-box;
  12631. width:100%;
  12632. }
  12633. #u410_text {
  12634. border-width:0px;
  12635. word-wrap:break-word;
  12636. text-transform:none;
  12637. }
  12638. #u411_div {
  12639. border-width:0px;
  12640. position:absolute;
  12641. left:0px;
  12642. top:0px;
  12643. width:76px;
  12644. height:17px;
  12645. background:inherit;
  12646. background-color:rgba(255, 255, 255, 0);
  12647. border:none;
  12648. border-radius:0px;
  12649. -moz-box-shadow:none;
  12650. -webkit-box-shadow:none;
  12651. box-shadow:none;
  12652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12653. font-weight:400;
  12654. font-style:normal;
  12655. font-size:12px;
  12656. color:#555555;
  12657. text-align:right;
  12658. }
  12659. #u411 {
  12660. border-width:0px;
  12661. position:absolute;
  12662. left:2203px;
  12663. top:455px;
  12664. width:76px;
  12665. height:17px;
  12666. display:flex;
  12667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12668. font-weight:400;
  12669. font-style:normal;
  12670. font-size:12px;
  12671. color:#555555;
  12672. text-align:right;
  12673. }
  12674. #u411 .text {
  12675. position:absolute;
  12676. align-self:flex-start;
  12677. padding:0px 0px 0px 0px;
  12678. box-sizing:border-box;
  12679. width:100%;
  12680. }
  12681. #u411_text {
  12682. border-width:0px;
  12683. word-wrap:break-word;
  12684. text-transform:none;
  12685. }
  12686. #u412_img {
  12687. border-width:0px;
  12688. position:absolute;
  12689. left:0px;
  12690. top:0px;
  12691. width:4px;
  12692. height:4px;
  12693. }
  12694. #u412 {
  12695. border-width:0px;
  12696. position:absolute;
  12697. left:1806px;
  12698. top:435px;
  12699. width:4px;
  12700. height:4px;
  12701. display:flex;
  12702. }
  12703. #u412 .text {
  12704. position:absolute;
  12705. align-self:center;
  12706. padding:2px 2px 2px 2px;
  12707. box-sizing:border-box;
  12708. width:100%;
  12709. }
  12710. #u412_text {
  12711. border-width:0px;
  12712. word-wrap:break-word;
  12713. text-transform:none;
  12714. visibility:hidden;
  12715. }
  12716. #u413_img {
  12717. border-width:0px;
  12718. position:absolute;
  12719. left:0px;
  12720. top:0px;
  12721. width:4px;
  12722. height:4px;
  12723. }
  12724. #u413 {
  12725. border-width:0px;
  12726. position:absolute;
  12727. left:1806px;
  12728. top:462px;
  12729. width:4px;
  12730. height:4px;
  12731. display:flex;
  12732. }
  12733. #u413 .text {
  12734. position:absolute;
  12735. align-self:center;
  12736. padding:2px 2px 2px 2px;
  12737. box-sizing:border-box;
  12738. width:100%;
  12739. }
  12740. #u413_text {
  12741. border-width:0px;
  12742. word-wrap:break-word;
  12743. text-transform:none;
  12744. visibility:hidden;
  12745. }
  12746. #u414 {
  12747. border-width:0px;
  12748. position:absolute;
  12749. left:0px;
  12750. top:0px;
  12751. width:0px;
  12752. height:0px;
  12753. }
  12754. #u415_div {
  12755. border-width:0px;
  12756. position:absolute;
  12757. left:0px;
  12758. top:0px;
  12759. width:355px;
  12760. height:17px;
  12761. background:inherit;
  12762. background-color:rgba(255, 255, 255, 0);
  12763. border:none;
  12764. border-radius:0px;
  12765. -moz-box-shadow:none;
  12766. -webkit-box-shadow:none;
  12767. box-shadow:none;
  12768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12769. font-weight:400;
  12770. font-style:normal;
  12771. font-size:12px;
  12772. color:#555555;
  12773. }
  12774. #u415 {
  12775. border-width:0px;
  12776. position:absolute;
  12777. left:1806px;
  12778. top:483px;
  12779. width:355px;
  12780. height:17px;
  12781. display:flex;
  12782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12783. font-weight:400;
  12784. font-style:normal;
  12785. font-size:12px;
  12786. color:#555555;
  12787. }
  12788. #u415 .text {
  12789. position:absolute;
  12790. align-self:flex-start;
  12791. padding:0px 0px 0px 0px;
  12792. box-sizing:border-box;
  12793. width:100%;
  12794. }
  12795. #u415_text {
  12796. border-width:0px;
  12797. word-wrap:break-word;
  12798. text-transform:none;
  12799. }
  12800. #u416_div {
  12801. border-width:0px;
  12802. position:absolute;
  12803. left:0px;
  12804. top:0px;
  12805. width:76px;
  12806. height:17px;
  12807. background:inherit;
  12808. background-color:rgba(255, 255, 255, 0);
  12809. border:none;
  12810. border-radius:0px;
  12811. -moz-box-shadow:none;
  12812. -webkit-box-shadow:none;
  12813. box-shadow:none;
  12814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12815. font-weight:400;
  12816. font-style:normal;
  12817. font-size:12px;
  12818. color:#555555;
  12819. text-align:right;
  12820. }
  12821. #u416 {
  12822. border-width:0px;
  12823. position:absolute;
  12824. left:2203px;
  12825. top:483px;
  12826. width:76px;
  12827. height:17px;
  12828. display:flex;
  12829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12830. font-weight:400;
  12831. font-style:normal;
  12832. font-size:12px;
  12833. color:#555555;
  12834. text-align:right;
  12835. }
  12836. #u416 .text {
  12837. position:absolute;
  12838. align-self:flex-start;
  12839. padding:0px 0px 0px 0px;
  12840. box-sizing:border-box;
  12841. width:100%;
  12842. }
  12843. #u416_text {
  12844. border-width:0px;
  12845. word-wrap:break-word;
  12846. text-transform:none;
  12847. }
  12848. #u417_img {
  12849. border-width:0px;
  12850. position:absolute;
  12851. left:0px;
  12852. top:0px;
  12853. width:4px;
  12854. height:4px;
  12855. }
  12856. #u417 {
  12857. border-width:0px;
  12858. position:absolute;
  12859. left:1806px;
  12860. top:490px;
  12861. width:4px;
  12862. height:4px;
  12863. display:flex;
  12864. }
  12865. #u417 .text {
  12866. position:absolute;
  12867. align-self:center;
  12868. padding:2px 2px 2px 2px;
  12869. box-sizing:border-box;
  12870. width:100%;
  12871. }
  12872. #u417_text {
  12873. border-width:0px;
  12874. word-wrap:break-word;
  12875. text-transform:none;
  12876. visibility:hidden;
  12877. }
  12878. #u418 {
  12879. border-width:0px;
  12880. position:absolute;
  12881. left:0px;
  12882. top:0px;
  12883. width:0px;
  12884. height:0px;
  12885. }
  12886. #u419_div {
  12887. border-width:0px;
  12888. position:absolute;
  12889. left:0px;
  12890. top:0px;
  12891. width:355px;
  12892. height:17px;
  12893. background:inherit;
  12894. background-color:rgba(255, 255, 255, 0);
  12895. border:none;
  12896. border-radius:0px;
  12897. -moz-box-shadow:none;
  12898. -webkit-box-shadow:none;
  12899. box-shadow:none;
  12900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12901. font-weight:400;
  12902. font-style:normal;
  12903. font-size:12px;
  12904. color:#555555;
  12905. }
  12906. #u419 {
  12907. border-width:0px;
  12908. position:absolute;
  12909. left:1806px;
  12910. top:510px;
  12911. width:355px;
  12912. height:17px;
  12913. display:flex;
  12914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12915. font-weight:400;
  12916. font-style:normal;
  12917. font-size:12px;
  12918. color:#555555;
  12919. }
  12920. #u419 .text {
  12921. position:absolute;
  12922. align-self:flex-start;
  12923. padding:0px 0px 0px 0px;
  12924. box-sizing:border-box;
  12925. width:100%;
  12926. }
  12927. #u419_text {
  12928. border-width:0px;
  12929. word-wrap:break-word;
  12930. text-transform:none;
  12931. }
  12932. #u420_div {
  12933. border-width:0px;
  12934. position:absolute;
  12935. left:0px;
  12936. top:0px;
  12937. width:76px;
  12938. height:17px;
  12939. background:inherit;
  12940. background-color:rgba(255, 255, 255, 0);
  12941. border:none;
  12942. border-radius:0px;
  12943. -moz-box-shadow:none;
  12944. -webkit-box-shadow:none;
  12945. box-shadow:none;
  12946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12947. font-weight:400;
  12948. font-style:normal;
  12949. font-size:12px;
  12950. color:#555555;
  12951. text-align:right;
  12952. }
  12953. #u420 {
  12954. border-width:0px;
  12955. position:absolute;
  12956. left:2203px;
  12957. top:510px;
  12958. width:76px;
  12959. height:17px;
  12960. display:flex;
  12961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12962. font-weight:400;
  12963. font-style:normal;
  12964. font-size:12px;
  12965. color:#555555;
  12966. text-align:right;
  12967. }
  12968. #u420 .text {
  12969. position:absolute;
  12970. align-self:flex-start;
  12971. padding:0px 0px 0px 0px;
  12972. box-sizing:border-box;
  12973. width:100%;
  12974. }
  12975. #u420_text {
  12976. border-width:0px;
  12977. word-wrap:break-word;
  12978. text-transform:none;
  12979. }
  12980. #u421_img {
  12981. border-width:0px;
  12982. position:absolute;
  12983. left:0px;
  12984. top:0px;
  12985. width:4px;
  12986. height:4px;
  12987. }
  12988. #u421 {
  12989. border-width:0px;
  12990. position:absolute;
  12991. left:1806px;
  12992. top:517px;
  12993. width:4px;
  12994. height:4px;
  12995. display:flex;
  12996. }
  12997. #u421 .text {
  12998. position:absolute;
  12999. align-self:center;
  13000. padding:2px 2px 2px 2px;
  13001. box-sizing:border-box;
  13002. width:100%;
  13003. }
  13004. #u421_text {
  13005. border-width:0px;
  13006. word-wrap:break-word;
  13007. text-transform:none;
  13008. visibility:hidden;
  13009. }
  13010. #u422 {
  13011. border-width:0px;
  13012. position:absolute;
  13013. left:0px;
  13014. top:0px;
  13015. width:0px;
  13016. height:0px;
  13017. }
  13018. #u423_div {
  13019. border-width:0px;
  13020. position:absolute;
  13021. left:0px;
  13022. top:0px;
  13023. width:77px;
  13024. height:25px;
  13025. background:inherit;
  13026. background-color:rgba(255, 255, 255, 0);
  13027. border:none;
  13028. border-radius:0px;
  13029. -moz-box-shadow:none;
  13030. -webkit-box-shadow:none;
  13031. box-shadow:none;
  13032. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13033. font-weight:500;
  13034. font-style:normal;
  13035. font-size:18px;
  13036. }
  13037. #u423 {
  13038. border-width:0px;
  13039. position:absolute;
  13040. left:2627px;
  13041. top:83px;
  13042. width:77px;
  13043. height:25px;
  13044. display:flex;
  13045. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13046. font-weight:500;
  13047. font-style:normal;
  13048. font-size:18px;
  13049. }
  13050. #u423 .text {
  13051. position:absolute;
  13052. align-self:flex-start;
  13053. padding:0px 0px 0px 0px;
  13054. box-sizing:border-box;
  13055. width:100%;
  13056. }
  13057. #u423_text {
  13058. border-width:0px;
  13059. word-wrap:break-word;
  13060. text-transform:none;
  13061. }
  13062. #u424 {
  13063. border-width:0px;
  13064. position:absolute;
  13065. left:0px;
  13066. top:0px;
  13067. width:0px;
  13068. height:0px;
  13069. }
  13070. #u425_div {
  13071. border-width:0px;
  13072. position:absolute;
  13073. left:0px;
  13074. top:0px;
  13075. width:367px;
  13076. height:81px;
  13077. background:inherit;
  13078. background-color:rgba(255, 255, 255, 1);
  13079. border:none;
  13080. border-radius:5px;
  13081. -moz-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  13082. -webkit-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  13083. box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  13084. }
  13085. #u425 {
  13086. border-width:0px;
  13087. position:absolute;
  13088. left:2627px;
  13089. top:129px;
  13090. width:367px;
  13091. height:81px;
  13092. display:flex;
  13093. }
  13094. #u425 .text {
  13095. position:absolute;
  13096. align-self:center;
  13097. padding:2px 2px 2px 2px;
  13098. box-sizing:border-box;
  13099. width:100%;
  13100. }
  13101. #u425_text {
  13102. border-width:0px;
  13103. word-wrap:break-word;
  13104. text-transform:none;
  13105. visibility:hidden;
  13106. }
  13107. #u426_div {
  13108. border-width:0px;
  13109. position:absolute;
  13110. left:0px;
  13111. top:0px;
  13112. width:339px;
  13113. height:41px;
  13114. background:inherit;
  13115. background-color:rgba(255, 255, 255, 0);
  13116. border:none;
  13117. border-radius:0px;
  13118. -moz-box-shadow:none;
  13119. -webkit-box-shadow:none;
  13120. box-shadow:none;
  13121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13122. font-weight:400;
  13123. font-style:normal;
  13124. font-size:12px;
  13125. line-height:20px;
  13126. }
  13127. #u426 {
  13128. border-width:0px;
  13129. position:absolute;
  13130. left:2643px;
  13131. top:139px;
  13132. width:339px;
  13133. height:41px;
  13134. display:flex;
  13135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13136. font-weight:400;
  13137. font-style:normal;
  13138. font-size:12px;
  13139. line-height:20px;
  13140. }
  13141. #u426 .text {
  13142. position:absolute;
  13143. align-self:flex-start;
  13144. padding:0px 0px 0px 0px;
  13145. box-sizing:border-box;
  13146. width:100%;
  13147. }
  13148. #u426_text {
  13149. border-width:0px;
  13150. word-wrap:break-word;
  13151. text-transform:none;
  13152. }
  13153. #u427_div {
  13154. border-width:0px;
  13155. position:absolute;
  13156. left:0px;
  13157. top:0px;
  13158. width:37px;
  13159. height:14px;
  13160. background:inherit;
  13161. background-color:rgba(255, 255, 255, 0);
  13162. border:none;
  13163. border-radius:0px;
  13164. -moz-box-shadow:none;
  13165. -webkit-box-shadow:none;
  13166. box-shadow:none;
  13167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13168. font-weight:400;
  13169. font-style:normal;
  13170. font-size:10px;
  13171. color:#7F7F7F;
  13172. }
  13173. #u427 {
  13174. border-width:0px;
  13175. position:absolute;
  13176. left:2645px;
  13177. top:187px;
  13178. width:37px;
  13179. height:14px;
  13180. display:flex;
  13181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13182. font-weight:400;
  13183. font-style:normal;
  13184. font-size:10px;
  13185. color:#7F7F7F;
  13186. }
  13187. #u427 .text {
  13188. position:absolute;
  13189. align-self:flex-start;
  13190. padding:0px 0px 0px 0px;
  13191. box-sizing:border-box;
  13192. width:100%;
  13193. }
  13194. #u427_text {
  13195. border-width:0px;
  13196. word-wrap:break-word;
  13197. text-transform:none;
  13198. }
  13199. #u428 {
  13200. border-width:0px;
  13201. position:absolute;
  13202. left:0px;
  13203. top:0px;
  13204. width:0px;
  13205. height:0px;
  13206. }
  13207. #u429_div {
  13208. border-width:0px;
  13209. position:absolute;
  13210. left:0px;
  13211. top:0px;
  13212. width:367px;
  13213. height:81px;
  13214. background:inherit;
  13215. background-color:rgba(255, 255, 255, 1);
  13216. border:none;
  13217. border-radius:5px;
  13218. -moz-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  13219. -webkit-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  13220. box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  13221. }
  13222. #u429 {
  13223. border-width:0px;
  13224. position:absolute;
  13225. left:2627px;
  13226. top:220px;
  13227. width:367px;
  13228. height:81px;
  13229. display:flex;
  13230. }
  13231. #u429 .text {
  13232. position:absolute;
  13233. align-self:center;
  13234. padding:2px 2px 2px 2px;
  13235. box-sizing:border-box;
  13236. width:100%;
  13237. }
  13238. #u429_text {
  13239. border-width:0px;
  13240. word-wrap:break-word;
  13241. text-transform:none;
  13242. visibility:hidden;
  13243. }
  13244. #u430_div {
  13245. border-width:0px;
  13246. position:absolute;
  13247. left:0px;
  13248. top:0px;
  13249. width:339px;
  13250. height:41px;
  13251. background:inherit;
  13252. background-color:rgba(255, 255, 255, 0);
  13253. border:none;
  13254. border-radius:0px;
  13255. -moz-box-shadow:none;
  13256. -webkit-box-shadow:none;
  13257. box-shadow:none;
  13258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13259. font-weight:400;
  13260. font-style:normal;
  13261. font-size:12px;
  13262. line-height:20px;
  13263. }
  13264. #u430 {
  13265. border-width:0px;
  13266. position:absolute;
  13267. left:2643px;
  13268. top:230px;
  13269. width:339px;
  13270. height:41px;
  13271. display:flex;
  13272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13273. font-weight:400;
  13274. font-style:normal;
  13275. font-size:12px;
  13276. line-height:20px;
  13277. }
  13278. #u430 .text {
  13279. position:absolute;
  13280. align-self:flex-start;
  13281. padding:0px 0px 0px 0px;
  13282. box-sizing:border-box;
  13283. width:100%;
  13284. }
  13285. #u430_text {
  13286. border-width:0px;
  13287. word-wrap:break-word;
  13288. text-transform:none;
  13289. }
  13290. #u431_div {
  13291. border-width:0px;
  13292. position:absolute;
  13293. left:0px;
  13294. top:0px;
  13295. width:52px;
  13296. height:14px;
  13297. background:inherit;
  13298. background-color:rgba(255, 255, 255, 0);
  13299. border:none;
  13300. border-radius:0px;
  13301. -moz-box-shadow:none;
  13302. -webkit-box-shadow:none;
  13303. box-shadow:none;
  13304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13305. font-weight:400;
  13306. font-style:normal;
  13307. font-size:10px;
  13308. color:#7F7F7F;
  13309. }
  13310. #u431 {
  13311. border-width:0px;
  13312. position:absolute;
  13313. left:2645px;
  13314. top:278px;
  13315. width:52px;
  13316. height:14px;
  13317. display:flex;
  13318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13319. font-weight:400;
  13320. font-style:normal;
  13321. font-size:10px;
  13322. color:#7F7F7F;
  13323. }
  13324. #u431 .text {
  13325. position:absolute;
  13326. align-self:flex-start;
  13327. padding:0px 0px 0px 0px;
  13328. box-sizing:border-box;
  13329. width:100%;
  13330. }
  13331. #u431_text {
  13332. border-width:0px;
  13333. word-wrap:break-word;
  13334. text-transform:none;
  13335. }
  13336. #u432 {
  13337. border-width:0px;
  13338. position:absolute;
  13339. left:0px;
  13340. top:0px;
  13341. width:0px;
  13342. height:0px;
  13343. }
  13344. #u433_div {
  13345. border-width:0px;
  13346. position:absolute;
  13347. left:0px;
  13348. top:0px;
  13349. width:367px;
  13350. height:81px;
  13351. background:inherit;
  13352. background-color:rgba(255, 255, 255, 1);
  13353. border:none;
  13354. border-radius:5px;
  13355. -moz-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  13356. -webkit-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  13357. box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  13358. }
  13359. #u433 {
  13360. border-width:0px;
  13361. position:absolute;
  13362. left:2627px;
  13363. top:311px;
  13364. width:367px;
  13365. height:81px;
  13366. display:flex;
  13367. }
  13368. #u433 .text {
  13369. position:absolute;
  13370. align-self:center;
  13371. padding:2px 2px 2px 2px;
  13372. box-sizing:border-box;
  13373. width:100%;
  13374. }
  13375. #u433_text {
  13376. border-width:0px;
  13377. word-wrap:break-word;
  13378. text-transform:none;
  13379. visibility:hidden;
  13380. }
  13381. #u434_div {
  13382. border-width:0px;
  13383. position:absolute;
  13384. left:0px;
  13385. top:0px;
  13386. width:339px;
  13387. height:41px;
  13388. background:inherit;
  13389. background-color:rgba(255, 255, 255, 0);
  13390. border:none;
  13391. border-radius:0px;
  13392. -moz-box-shadow:none;
  13393. -webkit-box-shadow:none;
  13394. box-shadow:none;
  13395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13396. font-weight:400;
  13397. font-style:normal;
  13398. font-size:12px;
  13399. line-height:20px;
  13400. }
  13401. #u434 {
  13402. border-width:0px;
  13403. position:absolute;
  13404. left:2643px;
  13405. top:322px;
  13406. width:339px;
  13407. height:41px;
  13408. display:flex;
  13409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13410. font-weight:400;
  13411. font-style:normal;
  13412. font-size:12px;
  13413. line-height:20px;
  13414. }
  13415. #u434 .text {
  13416. position:absolute;
  13417. align-self:flex-start;
  13418. padding:0px 0px 0px 0px;
  13419. box-sizing:border-box;
  13420. width:100%;
  13421. }
  13422. #u434_text {
  13423. border-width:0px;
  13424. word-wrap:break-word;
  13425. text-transform:none;
  13426. }
  13427. #u435_div {
  13428. border-width:0px;
  13429. position:absolute;
  13430. left:0px;
  13431. top:0px;
  13432. width:52px;
  13433. height:14px;
  13434. background:inherit;
  13435. background-color:rgba(255, 255, 255, 0);
  13436. border:none;
  13437. border-radius:0px;
  13438. -moz-box-shadow:none;
  13439. -webkit-box-shadow:none;
  13440. box-shadow:none;
  13441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13442. font-weight:400;
  13443. font-style:normal;
  13444. font-size:10px;
  13445. color:#7F7F7F;
  13446. }
  13447. #u435 {
  13448. border-width:0px;
  13449. position:absolute;
  13450. left:2645px;
  13451. top:369px;
  13452. width:52px;
  13453. height:14px;
  13454. display:flex;
  13455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13456. font-weight:400;
  13457. font-style:normal;
  13458. font-size:10px;
  13459. color:#7F7F7F;
  13460. }
  13461. #u435 .text {
  13462. position:absolute;
  13463. align-self:flex-start;
  13464. padding:0px 0px 0px 0px;
  13465. box-sizing:border-box;
  13466. width:100%;
  13467. }
  13468. #u435_text {
  13469. border-width:0px;
  13470. word-wrap:break-word;
  13471. text-transform:none;
  13472. }
  13473. #u436 {
  13474. border-width:0px;
  13475. position:absolute;
  13476. left:0px;
  13477. top:0px;
  13478. width:0px;
  13479. height:0px;
  13480. }
  13481. #u437_div {
  13482. border-width:0px;
  13483. position:absolute;
  13484. left:0px;
  13485. top:0px;
  13486. width:367px;
  13487. height:81px;
  13488. background:inherit;
  13489. background-color:rgba(255, 255, 255, 1);
  13490. border:none;
  13491. border-radius:5px;
  13492. -moz-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  13493. -webkit-box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  13494. box-shadow:0px 0px 1px rgba(0, 0, 0, 0.349019607843137);
  13495. }
  13496. #u437 {
  13497. border-width:0px;
  13498. position:absolute;
  13499. left:2627px;
  13500. top:403px;
  13501. width:367px;
  13502. height:81px;
  13503. display:flex;
  13504. }
  13505. #u437 .text {
  13506. position:absolute;
  13507. align-self:center;
  13508. padding:2px 2px 2px 2px;
  13509. box-sizing:border-box;
  13510. width:100%;
  13511. }
  13512. #u437_text {
  13513. border-width:0px;
  13514. word-wrap:break-word;
  13515. text-transform:none;
  13516. visibility:hidden;
  13517. }
  13518. #u438_div {
  13519. border-width:0px;
  13520. position:absolute;
  13521. left:0px;
  13522. top:0px;
  13523. width:339px;
  13524. height:41px;
  13525. background:inherit;
  13526. background-color:rgba(255, 255, 255, 0);
  13527. border:none;
  13528. border-radius:0px;
  13529. -moz-box-shadow:none;
  13530. -webkit-box-shadow:none;
  13531. box-shadow:none;
  13532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13533. font-weight:400;
  13534. font-style:normal;
  13535. font-size:12px;
  13536. line-height:20px;
  13537. }
  13538. #u438 {
  13539. border-width:0px;
  13540. position:absolute;
  13541. left:2643px;
  13542. top:413px;
  13543. width:339px;
  13544. height:41px;
  13545. display:flex;
  13546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13547. font-weight:400;
  13548. font-style:normal;
  13549. font-size:12px;
  13550. line-height:20px;
  13551. }
  13552. #u438 .text {
  13553. position:absolute;
  13554. align-self:flex-start;
  13555. padding:0px 0px 0px 0px;
  13556. box-sizing:border-box;
  13557. width:100%;
  13558. }
  13559. #u438_text {
  13560. border-width:0px;
  13561. word-wrap:break-word;
  13562. text-transform:none;
  13563. }
  13564. #u439_div {
  13565. border-width:0px;
  13566. position:absolute;
  13567. left:0px;
  13568. top:0px;
  13569. width:52px;
  13570. height:14px;
  13571. background:inherit;
  13572. background-color:rgba(255, 255, 255, 0);
  13573. border:none;
  13574. border-radius:0px;
  13575. -moz-box-shadow:none;
  13576. -webkit-box-shadow:none;
  13577. box-shadow:none;
  13578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13579. font-weight:400;
  13580. font-style:normal;
  13581. font-size:10px;
  13582. color:#7F7F7F;
  13583. }
  13584. #u439 {
  13585. border-width:0px;
  13586. position:absolute;
  13587. left:2645px;
  13588. top:460px;
  13589. width:52px;
  13590. height:14px;
  13591. display:flex;
  13592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13593. font-weight:400;
  13594. font-style:normal;
  13595. font-size:10px;
  13596. color:#7F7F7F;
  13597. }
  13598. #u439 .text {
  13599. position:absolute;
  13600. align-self:flex-start;
  13601. padding:0px 0px 0px 0px;
  13602. box-sizing:border-box;
  13603. width:100%;
  13604. }
  13605. #u439_text {
  13606. border-width:0px;
  13607. word-wrap:break-word;
  13608. text-transform:none;
  13609. }
  13610. #u440_img {
  13611. border-width:0px;
  13612. position:absolute;
  13613. left:0px;
  13614. top:0px;
  13615. width:4px;
  13616. height:4px;
  13617. }
  13618. #u440 {
  13619. border-width:0px;
  13620. position:absolute;
  13621. left:2634px;
  13622. top:148px;
  13623. width:4px;
  13624. height:4px;
  13625. display:flex;
  13626. }
  13627. #u440 .text {
  13628. position:absolute;
  13629. align-self:center;
  13630. padding:2px 2px 2px 2px;
  13631. box-sizing:border-box;
  13632. width:100%;
  13633. }
  13634. #u440_text {
  13635. border-width:0px;
  13636. word-wrap:break-word;
  13637. text-transform:none;
  13638. visibility:hidden;
  13639. }
  13640. #u441_img {
  13641. border-width:0px;
  13642. position:absolute;
  13643. left:0px;
  13644. top:0px;
  13645. width:4px;
  13646. height:4px;
  13647. }
  13648. #u441 {
  13649. border-width:0px;
  13650. position:absolute;
  13651. left:2634px;
  13652. top:238px;
  13653. width:4px;
  13654. height:4px;
  13655. display:flex;
  13656. }
  13657. #u441 .text {
  13658. position:absolute;
  13659. align-self:center;
  13660. padding:2px 2px 2px 2px;
  13661. box-sizing:border-box;
  13662. width:100%;
  13663. }
  13664. #u441_text {
  13665. border-width:0px;
  13666. word-wrap:break-word;
  13667. text-transform:none;
  13668. visibility:hidden;
  13669. }
  13670. #u442_img {
  13671. border-width:0px;
  13672. position:absolute;
  13673. left:0px;
  13674. top:0px;
  13675. width:4px;
  13676. height:4px;
  13677. }
  13678. #u442 {
  13679. border-width:0px;
  13680. position:absolute;
  13681. left:2634px;
  13682. top:330px;
  13683. width:4px;
  13684. height:4px;
  13685. display:flex;
  13686. }
  13687. #u442 .text {
  13688. position:absolute;
  13689. align-self:center;
  13690. padding:2px 2px 2px 2px;
  13691. box-sizing:border-box;
  13692. width:100%;
  13693. }
  13694. #u442_text {
  13695. border-width:0px;
  13696. word-wrap:break-word;
  13697. text-transform:none;
  13698. visibility:hidden;
  13699. }
  13700. #u443_img {
  13701. border-width:0px;
  13702. position:absolute;
  13703. left:0px;
  13704. top:0px;
  13705. width:4px;
  13706. height:4px;
  13707. }
  13708. #u443 {
  13709. border-width:0px;
  13710. position:absolute;
  13711. left:2634px;
  13712. top:422px;
  13713. width:4px;
  13714. height:4px;
  13715. display:flex;
  13716. }
  13717. #u443 .text {
  13718. position:absolute;
  13719. align-self:center;
  13720. padding:2px 2px 2px 2px;
  13721. box-sizing:border-box;
  13722. width:100%;
  13723. }
  13724. #u443_text {
  13725. border-width:0px;
  13726. word-wrap:break-word;
  13727. text-transform:none;
  13728. visibility:hidden;
  13729. }
  13730. #u444_img {
  13731. border-width:0px;
  13732. position:absolute;
  13733. left:0px;
  13734. top:0px;
  13735. width:1368px;
  13736. height:317px;
  13737. }
  13738. #u444 {
  13739. border-width:0px;
  13740. position:absolute;
  13741. left:1806px;
  13742. top:568px;
  13743. width:1368px;
  13744. height:317px;
  13745. display:flex;
  13746. }
  13747. #u444 .text {
  13748. position:absolute;
  13749. align-self:center;
  13750. padding:2px 2px 2px 2px;
  13751. box-sizing:border-box;
  13752. width:100%;
  13753. }
  13754. #u444_text {
  13755. border-width:0px;
  13756. word-wrap:break-word;
  13757. text-transform:none;
  13758. visibility:hidden;
  13759. }
  13760. #u445_div {
  13761. border-width:0px;
  13762. position:absolute;
  13763. left:0px;
  13764. top:0px;
  13765. width:1082px;
  13766. height:80px;
  13767. background:inherit;
  13768. background-color:rgba(255, 255, 255, 0);
  13769. border:none;
  13770. border-radius:0px;
  13771. -moz-box-shadow:none;
  13772. -webkit-box-shadow:none;
  13773. box-shadow:none;
  13774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13775. font-weight:400;
  13776. font-style:normal;
  13777. font-size:28px;
  13778. color:#D9001B;
  13779. }
  13780. #u445 {
  13781. border-width:0px;
  13782. position:absolute;
  13783. left:1845px;
  13784. top:1012px;
  13785. width:1082px;
  13786. height:80px;
  13787. display:flex;
  13788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13789. font-weight:400;
  13790. font-style:normal;
  13791. font-size:28px;
  13792. color:#D9001B;
  13793. }
  13794. #u445 .text {
  13795. position:absolute;
  13796. align-self:flex-start;
  13797. padding:0px 0px 0px 0px;
  13798. box-sizing:border-box;
  13799. width:100%;
  13800. }
  13801. #u445_text {
  13802. border-width:0px;
  13803. white-space:nowrap;
  13804. text-transform:none;
  13805. }
  13806. #u446 {
  13807. border-width:0px;
  13808. position:absolute;
  13809. left:0px;
  13810. top:0px;
  13811. width:0px;
  13812. height:0px;
  13813. }
  13814. #u448_div {
  13815. border-width:0px;
  13816. position:absolute;
  13817. left:0px;
  13818. top:0px;
  13819. width:129px;
  13820. height:22px;
  13821. background:inherit;
  13822. background-color:rgba(255, 255, 255, 0);
  13823. border:none;
  13824. border-radius:0px;
  13825. -moz-box-shadow:none;
  13826. -webkit-box-shadow:none;
  13827. box-shadow:none;
  13828. font-size:16px;
  13829. color:#FFFFFF;
  13830. }
  13831. #u448 {
  13832. border-width:0px;
  13833. position:absolute;
  13834. left:3309px;
  13835. top:13px;
  13836. width:129px;
  13837. height:22px;
  13838. display:flex;
  13839. font-size:16px;
  13840. color:#FFFFFF;
  13841. }
  13842. #u448 .text {
  13843. position:absolute;
  13844. align-self:flex-start;
  13845. padding:0px 0px 0px 0px;
  13846. box-sizing:border-box;
  13847. width:100%;
  13848. }
  13849. #u448_text {
  13850. border-width:0px;
  13851. white-space:nowrap;
  13852. text-transform:none;
  13853. }
  13854. #u449_div {
  13855. border-width:0px;
  13856. position:absolute;
  13857. left:0px;
  13858. top:0px;
  13859. width:1600px;
  13860. height:50px;
  13861. background:inherit;
  13862. background-color:rgba(30, 42, 68, 1);
  13863. border:none;
  13864. border-radius:0px;
  13865. -moz-box-shadow:none;
  13866. -webkit-box-shadow:none;
  13867. box-shadow:none;
  13868. color:#AFB3B6;
  13869. }
  13870. #u449 {
  13871. border-width:0px;
  13872. position:absolute;
  13873. left:3260px;
  13874. top:-1px;
  13875. width:1600px;
  13876. height:50px;
  13877. display:flex;
  13878. color:#AFB3B6;
  13879. }
  13880. #u449 .text {
  13881. position:absolute;
  13882. align-self:center;
  13883. padding:2px 2px 2px 2px;
  13884. box-sizing:border-box;
  13885. width:100%;
  13886. }
  13887. #u449_text {
  13888. border-width:0px;
  13889. word-wrap:break-word;
  13890. text-transform:none;
  13891. visibility:hidden;
  13892. }
  13893. #u450 {
  13894. border-width:0px;
  13895. position:absolute;
  13896. left:0px;
  13897. top:0px;
  13898. width:0px;
  13899. height:0px;
  13900. }
  13901. #u451_img {
  13902. border-width:0px;
  13903. position:absolute;
  13904. left:0px;
  13905. top:0px;
  13906. width:31px;
  13907. height:31px;
  13908. }
  13909. #u451 {
  13910. border-width:0px;
  13911. position:absolute;
  13912. left:3279px;
  13913. top:9px;
  13914. width:31px;
  13915. height:31px;
  13916. display:flex;
  13917. }
  13918. #u451 .text {
  13919. position:absolute;
  13920. align-self:center;
  13921. padding:2px 2px 2px 2px;
  13922. box-sizing:border-box;
  13923. width:100%;
  13924. }
  13925. #u451_text {
  13926. border-width:0px;
  13927. word-wrap:break-word;
  13928. text-transform:none;
  13929. }
  13930. #u452_div {
  13931. border-width:0px;
  13932. position:absolute;
  13933. left:0px;
  13934. top:0px;
  13935. width:161px;
  13936. height:22px;
  13937. background:inherit;
  13938. background-color:rgba(255, 255, 255, 0);
  13939. border:none;
  13940. border-radius:0px;
  13941. -moz-box-shadow:none;
  13942. -webkit-box-shadow:none;
  13943. box-shadow:none;
  13944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13945. font-weight:400;
  13946. font-style:normal;
  13947. font-size:16px;
  13948. color:#FFFFFF;
  13949. }
  13950. #u452 {
  13951. border-width:0px;
  13952. position:absolute;
  13953. left:3322px;
  13954. top:13px;
  13955. width:161px;
  13956. height:22px;
  13957. display:flex;
  13958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13959. font-weight:400;
  13960. font-style:normal;
  13961. font-size:16px;
  13962. color:#FFFFFF;
  13963. }
  13964. #u452 .text {
  13965. position:absolute;
  13966. align-self:flex-start;
  13967. padding:0px 0px 0px 0px;
  13968. box-sizing:border-box;
  13969. width:100%;
  13970. }
  13971. #u452_text {
  13972. border-width:0px;
  13973. white-space:nowrap;
  13974. text-transform:none;
  13975. }
  13976. #u453_div {
  13977. border-width:0px;
  13978. position:absolute;
  13979. left:0px;
  13980. top:0px;
  13981. width:120px;
  13982. height:1200px;
  13983. background:inherit;
  13984. background-color:rgba(30, 42, 68, 1);
  13985. border:none;
  13986. border-radius:0px;
  13987. -moz-box-shadow:none;
  13988. -webkit-box-shadow:none;
  13989. box-shadow:none;
  13990. color:#AFB3B6;
  13991. }
  13992. #u453 {
  13993. border-width:0px;
  13994. position:absolute;
  13995. left:3260px;
  13996. top:46px;
  13997. width:120px;
  13998. height:1200px;
  13999. display:flex;
  14000. color:#AFB3B6;
  14001. }
  14002. #u453 .text {
  14003. position:absolute;
  14004. align-self:center;
  14005. padding:2px 2px 2px 2px;
  14006. box-sizing:border-box;
  14007. width:100%;
  14008. }
  14009. #u453_text {
  14010. border-width:0px;
  14011. word-wrap:break-word;
  14012. text-transform:none;
  14013. visibility:hidden;
  14014. }
  14015. #u454_div {
  14016. border-width:0px;
  14017. position:absolute;
  14018. left:0px;
  14019. top:0px;
  14020. width:1480px;
  14021. height:1200px;
  14022. background:inherit;
  14023. background-color:rgba(242, 242, 242, 1);
  14024. border:none;
  14025. border-radius:0px;
  14026. -moz-box-shadow:none;
  14027. -webkit-box-shadow:none;
  14028. box-shadow:none;
  14029. }
  14030. #u454 {
  14031. border-width:0px;
  14032. position:absolute;
  14033. left:3380px;
  14034. top:49px;
  14035. width:1480px;
  14036. height:1200px;
  14037. display:flex;
  14038. }
  14039. #u454 .text {
  14040. position:absolute;
  14041. align-self:center;
  14042. padding:2px 2px 2px 2px;
  14043. box-sizing:border-box;
  14044. width:100%;
  14045. }
  14046. #u454_text {
  14047. border-width:0px;
  14048. word-wrap:break-word;
  14049. text-transform:none;
  14050. visibility:hidden;
  14051. }
  14052. #u455 {
  14053. border-width:0px;
  14054. position:absolute;
  14055. left:0px;
  14056. top:0px;
  14057. width:0px;
  14058. height:0px;
  14059. }
  14060. #u456_div {
  14061. border-width:0px;
  14062. position:absolute;
  14063. left:0px;
  14064. top:0px;
  14065. width:33px;
  14066. height:22px;
  14067. background:inherit;
  14068. background-color:rgba(255, 255, 255, 0);
  14069. border:none;
  14070. border-radius:0px;
  14071. -moz-box-shadow:none;
  14072. -webkit-box-shadow:none;
  14073. box-shadow:none;
  14074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14075. font-weight:400;
  14076. font-style:normal;
  14077. font-size:16px;
  14078. color:#FFFFFF;
  14079. }
  14080. #u456 {
  14081. border-width:0px;
  14082. position:absolute;
  14083. left:3299px;
  14084. top:66px;
  14085. width:33px;
  14086. height:22px;
  14087. display:flex;
  14088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14089. font-weight:400;
  14090. font-style:normal;
  14091. font-size:16px;
  14092. color:#FFFFFF;
  14093. }
  14094. #u456 .text {
  14095. position:absolute;
  14096. align-self:flex-start;
  14097. padding:0px 0px 0px 0px;
  14098. box-sizing:border-box;
  14099. width:100%;
  14100. }
  14101. #u456_text {
  14102. border-width:0px;
  14103. white-space:nowrap;
  14104. text-transform:none;
  14105. }
  14106. #u457_img {
  14107. border-width:0px;
  14108. position:absolute;
  14109. left:0px;
  14110. top:0px;
  14111. width:14px;
  14112. height:14px;
  14113. }
  14114. #u457 {
  14115. border-width:0px;
  14116. position:absolute;
  14117. left:3280px;
  14118. top:70px;
  14119. width:14px;
  14120. height:14px;
  14121. display:flex;
  14122. }
  14123. #u457 .text {
  14124. position:absolute;
  14125. align-self:center;
  14126. padding:2px 2px 2px 2px;
  14127. box-sizing:border-box;
  14128. width:100%;
  14129. }
  14130. #u457_text {
  14131. border-width:0px;
  14132. word-wrap:break-word;
  14133. text-transform:none;
  14134. visibility:hidden;
  14135. }
  14136. #u458 {
  14137. border-width:0px;
  14138. position:absolute;
  14139. left:0px;
  14140. top:0px;
  14141. width:0px;
  14142. height:0px;
  14143. }
  14144. #u459_div {
  14145. border-width:0px;
  14146. position:absolute;
  14147. left:0px;
  14148. top:0px;
  14149. width:33px;
  14150. height:22px;
  14151. background:inherit;
  14152. background-color:rgba(255, 255, 255, 0);
  14153. border:none;
  14154. border-radius:0px;
  14155. -moz-box-shadow:none;
  14156. -webkit-box-shadow:none;
  14157. box-shadow:none;
  14158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14159. font-weight:400;
  14160. font-style:normal;
  14161. font-size:16px;
  14162. color:#FFFFFF;
  14163. }
  14164. #u459 {
  14165. border-width:0px;
  14166. position:absolute;
  14167. left:3299px;
  14168. top:108px;
  14169. width:33px;
  14170. height:22px;
  14171. display:flex;
  14172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14173. font-weight:400;
  14174. font-style:normal;
  14175. font-size:16px;
  14176. color:#FFFFFF;
  14177. }
  14178. #u459 .text {
  14179. position:absolute;
  14180. align-self:flex-start;
  14181. padding:0px 0px 0px 0px;
  14182. box-sizing:border-box;
  14183. width:100%;
  14184. }
  14185. #u459_text {
  14186. border-width:0px;
  14187. white-space:nowrap;
  14188. text-transform:none;
  14189. }
  14190. #u460_img {
  14191. border-width:0px;
  14192. position:absolute;
  14193. left:0px;
  14194. top:0px;
  14195. width:14px;
  14196. height:14px;
  14197. }
  14198. #u460 {
  14199. border-width:0px;
  14200. position:absolute;
  14201. left:3280px;
  14202. top:112px;
  14203. width:14px;
  14204. height:14px;
  14205. display:flex;
  14206. }
  14207. #u460 .text {
  14208. position:absolute;
  14209. align-self:center;
  14210. padding:2px 2px 2px 2px;
  14211. box-sizing:border-box;
  14212. width:100%;
  14213. }
  14214. #u460_text {
  14215. border-width:0px;
  14216. word-wrap:break-word;
  14217. text-transform:none;
  14218. visibility:hidden;
  14219. }
  14220. #u461 {
  14221. border-width:0px;
  14222. position:absolute;
  14223. left:0px;
  14224. top:0px;
  14225. width:0px;
  14226. height:0px;
  14227. }
  14228. #u462_div {
  14229. border-width:0px;
  14230. position:absolute;
  14231. left:0px;
  14232. top:0px;
  14233. width:29px;
  14234. height:20px;
  14235. background:inherit;
  14236. background-color:rgba(255, 255, 255, 0);
  14237. border:none;
  14238. border-radius:25px;
  14239. -moz-box-shadow:none;
  14240. -webkit-box-shadow:none;
  14241. box-shadow:none;
  14242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14243. font-weight:400;
  14244. font-style:normal;
  14245. color:#FFFFFF;
  14246. }
  14247. #u462 {
  14248. border-width:0px;
  14249. position:absolute;
  14250. left:3319px;
  14251. top:1140px;
  14252. width:29px;
  14253. height:20px;
  14254. display:flex;
  14255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14256. font-weight:400;
  14257. font-style:normal;
  14258. color:#FFFFFF;
  14259. }
  14260. #u462 .text {
  14261. position:absolute;
  14262. align-self:center;
  14263. padding:0px 0px 0px 0px;
  14264. box-sizing:border-box;
  14265. width:100%;
  14266. }
  14267. #u462_text {
  14268. border-width:0px;
  14269. white-space:nowrap;
  14270. text-transform:none;
  14271. }
  14272. #u463_img {
  14273. border-width:0px;
  14274. position:absolute;
  14275. left:0px;
  14276. top:0px;
  14277. width:22px;
  14278. height:22px;
  14279. }
  14280. #u463 {
  14281. border-width:0px;
  14282. position:absolute;
  14283. left:3287px;
  14284. top:1139px;
  14285. width:22px;
  14286. height:22px;
  14287. display:flex;
  14288. }
  14289. #u463 .text {
  14290. position:absolute;
  14291. align-self:center;
  14292. padding:2px 2px 2px 2px;
  14293. box-sizing:border-box;
  14294. width:100%;
  14295. }
  14296. #u463_text {
  14297. border-width:0px;
  14298. word-wrap:break-word;
  14299. text-transform:none;
  14300. visibility:hidden;
  14301. }
  14302. #u464 {
  14303. border-width:0px;
  14304. position:absolute;
  14305. left:0px;
  14306. top:0px;
  14307. width:0px;
  14308. height:0px;
  14309. }
  14310. #u465_div {
  14311. border-width:0px;
  14312. position:absolute;
  14313. left:0px;
  14314. top:0px;
  14315. width:29px;
  14316. height:20px;
  14317. background:inherit;
  14318. background-color:rgba(255, 255, 255, 0);
  14319. border:none;
  14320. border-radius:25px;
  14321. -moz-box-shadow:none;
  14322. -webkit-box-shadow:none;
  14323. box-shadow:none;
  14324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14325. font-weight:400;
  14326. font-style:normal;
  14327. color:#FFFFFF;
  14328. }
  14329. #u465 {
  14330. border-width:0px;
  14331. position:absolute;
  14332. left:3319px;
  14333. top:1182px;
  14334. width:29px;
  14335. height:20px;
  14336. display:flex;
  14337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14338. font-weight:400;
  14339. font-style:normal;
  14340. color:#FFFFFF;
  14341. }
  14342. #u465 .text {
  14343. position:absolute;
  14344. align-self:center;
  14345. padding:0px 0px 0px 0px;
  14346. box-sizing:border-box;
  14347. width:100%;
  14348. }
  14349. #u465_text {
  14350. border-width:0px;
  14351. white-space:nowrap;
  14352. text-transform:none;
  14353. }
  14354. #u466_img {
  14355. border-width:0px;
  14356. position:absolute;
  14357. left:0px;
  14358. top:0px;
  14359. width:22px;
  14360. height:22px;
  14361. }
  14362. #u466 {
  14363. border-width:0px;
  14364. position:absolute;
  14365. left:3287px;
  14366. top:1181px;
  14367. width:22px;
  14368. height:22px;
  14369. display:flex;
  14370. }
  14371. #u466 .text {
  14372. position:absolute;
  14373. align-self:center;
  14374. padding:2px 2px 2px 2px;
  14375. box-sizing:border-box;
  14376. width:100%;
  14377. }
  14378. #u466_text {
  14379. border-width:0px;
  14380. word-wrap:break-word;
  14381. text-transform:none;
  14382. visibility:hidden;
  14383. }
  14384. #u467 {
  14385. border-width:0px;
  14386. position:absolute;
  14387. left:0px;
  14388. top:0px;
  14389. width:0px;
  14390. height:0px;
  14391. }
  14392. #u468_div {
  14393. border-width:0px;
  14394. position:absolute;
  14395. left:0px;
  14396. top:0px;
  14397. width:33px;
  14398. height:22px;
  14399. background:inherit;
  14400. background-color:rgba(255, 255, 255, 0);
  14401. border:none;
  14402. border-radius:0px;
  14403. -moz-box-shadow:none;
  14404. -webkit-box-shadow:none;
  14405. box-shadow:none;
  14406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14407. font-weight:400;
  14408. font-style:normal;
  14409. font-size:16px;
  14410. color:#FFFFFF;
  14411. }
  14412. #u468 {
  14413. border-width:0px;
  14414. position:absolute;
  14415. left:3299px;
  14416. top:570px;
  14417. width:33px;
  14418. height:22px;
  14419. display:flex;
  14420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14421. font-weight:400;
  14422. font-style:normal;
  14423. font-size:16px;
  14424. color:#FFFFFF;
  14425. }
  14426. #u468 .text {
  14427. position:absolute;
  14428. align-self:flex-start;
  14429. padding:0px 0px 0px 0px;
  14430. box-sizing:border-box;
  14431. width:100%;
  14432. }
  14433. #u468_text {
  14434. border-width:0px;
  14435. white-space:nowrap;
  14436. text-transform:none;
  14437. }
  14438. #u469_img {
  14439. border-width:0px;
  14440. position:absolute;
  14441. left:0px;
  14442. top:0px;
  14443. width:14px;
  14444. height:14px;
  14445. }
  14446. #u469 {
  14447. border-width:0px;
  14448. position:absolute;
  14449. left:3280px;
  14450. top:574px;
  14451. width:14px;
  14452. height:14px;
  14453. display:flex;
  14454. }
  14455. #u469 .text {
  14456. position:absolute;
  14457. align-self:center;
  14458. padding:2px 2px 2px 2px;
  14459. box-sizing:border-box;
  14460. width:100%;
  14461. }
  14462. #u469_text {
  14463. border-width:0px;
  14464. word-wrap:break-word;
  14465. text-transform:none;
  14466. visibility:hidden;
  14467. }
  14468. #u470 {
  14469. border-width:0px;
  14470. position:absolute;
  14471. left:0px;
  14472. top:0px;
  14473. width:0px;
  14474. height:0px;
  14475. }
  14476. #u471_div {
  14477. border-width:0px;
  14478. position:absolute;
  14479. left:0px;
  14480. top:0px;
  14481. width:33px;
  14482. height:22px;
  14483. background:inherit;
  14484. background-color:rgba(255, 255, 255, 0);
  14485. border:none;
  14486. border-radius:0px;
  14487. -moz-box-shadow:none;
  14488. -webkit-box-shadow:none;
  14489. box-shadow:none;
  14490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14491. font-weight:400;
  14492. font-style:normal;
  14493. font-size:16px;
  14494. color:#FFFFFF;
  14495. }
  14496. #u471 {
  14497. border-width:0px;
  14498. position:absolute;
  14499. left:3299px;
  14500. top:654px;
  14501. width:33px;
  14502. height:22px;
  14503. display:flex;
  14504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14505. font-weight:400;
  14506. font-style:normal;
  14507. font-size:16px;
  14508. color:#FFFFFF;
  14509. }
  14510. #u471 .text {
  14511. position:absolute;
  14512. align-self:flex-start;
  14513. padding:0px 0px 0px 0px;
  14514. box-sizing:border-box;
  14515. width:100%;
  14516. }
  14517. #u471_text {
  14518. border-width:0px;
  14519. white-space:nowrap;
  14520. text-transform:none;
  14521. }
  14522. #u472_img {
  14523. border-width:0px;
  14524. position:absolute;
  14525. left:0px;
  14526. top:0px;
  14527. width:14px;
  14528. height:14px;
  14529. }
  14530. #u472 {
  14531. border-width:0px;
  14532. position:absolute;
  14533. left:3280px;
  14534. top:658px;
  14535. width:14px;
  14536. height:14px;
  14537. display:flex;
  14538. }
  14539. #u472 .text {
  14540. position:absolute;
  14541. align-self:center;
  14542. padding:2px 2px 2px 2px;
  14543. box-sizing:border-box;
  14544. width:100%;
  14545. }
  14546. #u472_text {
  14547. border-width:0px;
  14548. word-wrap:break-word;
  14549. text-transform:none;
  14550. visibility:hidden;
  14551. }
  14552. #u473 {
  14553. border-width:0px;
  14554. position:absolute;
  14555. left:0px;
  14556. top:0px;
  14557. width:0px;
  14558. height:0px;
  14559. }
  14560. #u474_div {
  14561. border-width:0px;
  14562. position:absolute;
  14563. left:0px;
  14564. top:0px;
  14565. width:33px;
  14566. height:22px;
  14567. background:inherit;
  14568. background-color:rgba(255, 255, 255, 0);
  14569. border:none;
  14570. border-radius:0px;
  14571. -moz-box-shadow:none;
  14572. -webkit-box-shadow:none;
  14573. box-shadow:none;
  14574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14575. font-weight:400;
  14576. font-style:normal;
  14577. font-size:16px;
  14578. color:#FFFFFF;
  14579. }
  14580. #u474 {
  14581. border-width:0px;
  14582. position:absolute;
  14583. left:3299px;
  14584. top:276px;
  14585. width:33px;
  14586. height:22px;
  14587. display:flex;
  14588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14589. font-weight:400;
  14590. font-style:normal;
  14591. font-size:16px;
  14592. color:#FFFFFF;
  14593. }
  14594. #u474 .text {
  14595. position:absolute;
  14596. align-self:flex-start;
  14597. padding:0px 0px 0px 0px;
  14598. box-sizing:border-box;
  14599. width:100%;
  14600. }
  14601. #u474_text {
  14602. border-width:0px;
  14603. white-space:nowrap;
  14604. text-transform:none;
  14605. }
  14606. #u475_img {
  14607. border-width:0px;
  14608. position:absolute;
  14609. left:0px;
  14610. top:0px;
  14611. width:14px;
  14612. height:14px;
  14613. }
  14614. #u475 {
  14615. border-width:0px;
  14616. position:absolute;
  14617. left:3280px;
  14618. top:280px;
  14619. width:14px;
  14620. height:14px;
  14621. display:flex;
  14622. }
  14623. #u475 .text {
  14624. position:absolute;
  14625. align-self:center;
  14626. padding:2px 2px 2px 2px;
  14627. box-sizing:border-box;
  14628. width:100%;
  14629. }
  14630. #u475_text {
  14631. border-width:0px;
  14632. word-wrap:break-word;
  14633. text-transform:none;
  14634. visibility:hidden;
  14635. }
  14636. #u476 {
  14637. border-width:0px;
  14638. position:absolute;
  14639. left:0px;
  14640. top:0px;
  14641. width:0px;
  14642. height:0px;
  14643. }
  14644. #u477_div {
  14645. border-width:0px;
  14646. position:absolute;
  14647. left:0px;
  14648. top:0px;
  14649. width:33px;
  14650. height:22px;
  14651. background:inherit;
  14652. background-color:rgba(255, 255, 255, 0);
  14653. border:none;
  14654. border-radius:0px;
  14655. -moz-box-shadow:none;
  14656. -webkit-box-shadow:none;
  14657. box-shadow:none;
  14658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14659. font-weight:400;
  14660. font-style:normal;
  14661. font-size:16px;
  14662. color:#FFFFFF;
  14663. }
  14664. #u477 {
  14665. border-width:0px;
  14666. position:absolute;
  14667. left:3299px;
  14668. top:486px;
  14669. width:33px;
  14670. height:22px;
  14671. display:flex;
  14672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14673. font-weight:400;
  14674. font-style:normal;
  14675. font-size:16px;
  14676. color:#FFFFFF;
  14677. }
  14678. #u477 .text {
  14679. position:absolute;
  14680. align-self:flex-start;
  14681. padding:0px 0px 0px 0px;
  14682. box-sizing:border-box;
  14683. width:100%;
  14684. }
  14685. #u477_text {
  14686. border-width:0px;
  14687. white-space:nowrap;
  14688. text-transform:none;
  14689. }
  14690. #u478_img {
  14691. border-width:0px;
  14692. position:absolute;
  14693. left:0px;
  14694. top:0px;
  14695. width:14px;
  14696. height:14px;
  14697. }
  14698. #u478 {
  14699. border-width:0px;
  14700. position:absolute;
  14701. left:3280px;
  14702. top:490px;
  14703. width:14px;
  14704. height:14px;
  14705. display:flex;
  14706. }
  14707. #u478 .text {
  14708. position:absolute;
  14709. align-self:center;
  14710. padding:2px 2px 2px 2px;
  14711. box-sizing:border-box;
  14712. width:100%;
  14713. }
  14714. #u478_text {
  14715. border-width:0px;
  14716. word-wrap:break-word;
  14717. text-transform:none;
  14718. visibility:hidden;
  14719. }
  14720. #u479 {
  14721. border-width:0px;
  14722. position:absolute;
  14723. left:0px;
  14724. top:0px;
  14725. width:0px;
  14726. height:0px;
  14727. }
  14728. #u480_div {
  14729. border-width:0px;
  14730. position:absolute;
  14731. left:0px;
  14732. top:0px;
  14733. width:33px;
  14734. height:22px;
  14735. background:inherit;
  14736. background-color:rgba(255, 255, 255, 0);
  14737. border:none;
  14738. border-radius:0px;
  14739. -moz-box-shadow:none;
  14740. -webkit-box-shadow:none;
  14741. box-shadow:none;
  14742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14743. font-weight:400;
  14744. font-style:normal;
  14745. font-size:16px;
  14746. color:#FFFFFF;
  14747. }
  14748. #u480 {
  14749. border-width:0px;
  14750. position:absolute;
  14751. left:3299px;
  14752. top:444px;
  14753. width:33px;
  14754. height:22px;
  14755. display:flex;
  14756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14757. font-weight:400;
  14758. font-style:normal;
  14759. font-size:16px;
  14760. color:#FFFFFF;
  14761. }
  14762. #u480 .text {
  14763. position:absolute;
  14764. align-self:flex-start;
  14765. padding:0px 0px 0px 0px;
  14766. box-sizing:border-box;
  14767. width:100%;
  14768. }
  14769. #u480_text {
  14770. border-width:0px;
  14771. white-space:nowrap;
  14772. text-transform:none;
  14773. }
  14774. #u481_img {
  14775. border-width:0px;
  14776. position:absolute;
  14777. left:0px;
  14778. top:0px;
  14779. width:14px;
  14780. height:14px;
  14781. }
  14782. #u481 {
  14783. border-width:0px;
  14784. position:absolute;
  14785. left:3280px;
  14786. top:448px;
  14787. width:14px;
  14788. height:14px;
  14789. display:flex;
  14790. }
  14791. #u481 .text {
  14792. position:absolute;
  14793. align-self:center;
  14794. padding:2px 2px 2px 2px;
  14795. box-sizing:border-box;
  14796. width:100%;
  14797. }
  14798. #u481_text {
  14799. border-width:0px;
  14800. word-wrap:break-word;
  14801. text-transform:none;
  14802. visibility:hidden;
  14803. }
  14804. #u482 {
  14805. border-width:0px;
  14806. position:absolute;
  14807. left:0px;
  14808. top:0px;
  14809. width:0px;
  14810. height:0px;
  14811. }
  14812. #u483_input {
  14813. position:absolute;
  14814. left:0px;
  14815. top:0px;
  14816. width:214px;
  14817. height:27px;
  14818. padding:2px 2px 2px 2px;
  14819. font-family:'ArialMT', 'Arial', sans-serif;
  14820. font-weight:400;
  14821. font-style:normal;
  14822. font-size:14px;
  14823. letter-spacing:normal;
  14824. color:#FFFFFF;
  14825. vertical-align:none;
  14826. text-align:left;
  14827. text-transform:none;
  14828. background-color:transparent;
  14829. border-color:transparent;
  14830. }
  14831. #u483_input.disabled {
  14832. position:absolute;
  14833. left:0px;
  14834. top:0px;
  14835. width:214px;
  14836. height:27px;
  14837. padding:2px 2px 2px 2px;
  14838. font-family:'ArialMT', 'Arial', sans-serif;
  14839. font-weight:400;
  14840. font-style:normal;
  14841. font-size:14px;
  14842. letter-spacing:normal;
  14843. color:#FFFFFF;
  14844. vertical-align:none;
  14845. text-align:left;
  14846. text-transform:none;
  14847. background-color:transparent;
  14848. border-color:transparent;
  14849. }
  14850. #u483_div {
  14851. border-width:0px;
  14852. position:absolute;
  14853. left:0px;
  14854. top:0px;
  14855. width:214px;
  14856. height:27px;
  14857. background:inherit;
  14858. background-color:rgba(255, 255, 255, 0);
  14859. border:none;
  14860. border-radius:0px;
  14861. -moz-box-shadow:none;
  14862. -webkit-box-shadow:none;
  14863. box-shadow:none;
  14864. font-size:14px;
  14865. color:#FFFFFF;
  14866. }
  14867. #u483 {
  14868. border-width:0px;
  14869. position:absolute;
  14870. left:4481px;
  14871. top:10px;
  14872. width:214px;
  14873. height:27px;
  14874. display:flex;
  14875. font-size:14px;
  14876. color:#FFFFFF;
  14877. }
  14878. #u483 .text {
  14879. position:absolute;
  14880. align-self:flex-start;
  14881. padding:2px 2px 2px 2px;
  14882. box-sizing:border-box;
  14883. width:100%;
  14884. }
  14885. #u483_div.disabled {
  14886. border-width:0px;
  14887. position:absolute;
  14888. left:0px;
  14889. top:0px;
  14890. width:214px;
  14891. height:27px;
  14892. background:inherit;
  14893. background-color:rgba(240, 240, 240, 1);
  14894. border:none;
  14895. border-radius:0px;
  14896. -moz-box-shadow:none;
  14897. -webkit-box-shadow:none;
  14898. box-shadow:none;
  14899. font-size:14px;
  14900. color:#FFFFFF;
  14901. }
  14902. #u483.disabled {
  14903. }
  14904. .u483_input_option {
  14905. font-size:14px;
  14906. }
  14907. #u484_img {
  14908. border-width:0px;
  14909. position:absolute;
  14910. left:0px;
  14911. top:0px;
  14912. width:22px;
  14913. height:22px;
  14914. }
  14915. #u484 {
  14916. border-width:0px;
  14917. position:absolute;
  14918. left:4454px;
  14919. top:13px;
  14920. width:22px;
  14921. height:22px;
  14922. display:flex;
  14923. }
  14924. #u484 .text {
  14925. position:absolute;
  14926. align-self:center;
  14927. padding:2px 2px 2px 2px;
  14928. box-sizing:border-box;
  14929. width:100%;
  14930. }
  14931. #u484_text {
  14932. border-width:0px;
  14933. word-wrap:break-word;
  14934. text-transform:none;
  14935. visibility:hidden;
  14936. }
  14937. #u485_div {
  14938. border-width:0px;
  14939. position:absolute;
  14940. left:0px;
  14941. top:0px;
  14942. width:100px;
  14943. height:24px;
  14944. background:inherit;
  14945. background-color:rgba(242, 242, 242, 0.2);
  14946. border:none;
  14947. border-radius:25px;
  14948. -moz-box-shadow:none;
  14949. -webkit-box-shadow:none;
  14950. box-shadow:none;
  14951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14952. font-weight:400;
  14953. font-style:normal;
  14954. color:#FFFFFF;
  14955. text-align:center;
  14956. }
  14957. #u485 {
  14958. border-width:0px;
  14959. position:absolute;
  14960. left:4740px;
  14961. top:12px;
  14962. width:100px;
  14963. height:24px;
  14964. display:flex;
  14965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14966. font-weight:400;
  14967. font-style:normal;
  14968. color:#FFFFFF;
  14969. text-align:center;
  14970. }
  14971. #u485 .text {
  14972. position:absolute;
  14973. align-self:center;
  14974. padding:0px 0px 0px 0px;
  14975. box-sizing:border-box;
  14976. width:100%;
  14977. }
  14978. #u485_text {
  14979. border-width:0px;
  14980. word-wrap:break-word;
  14981. text-transform:none;
  14982. }
  14983. #u486_img {
  14984. border-width:0px;
  14985. position:absolute;
  14986. left:0px;
  14987. top:0px;
  14988. width:2px;
  14989. height:12px;
  14990. }
  14991. #u486 {
  14992. border-width:0px;
  14993. position:absolute;
  14994. left:4712px;
  14995. top:18px;
  14996. width:1px;
  14997. height:11px;
  14998. display:flex;
  14999. }
  15000. #u486 .text {
  15001. position:absolute;
  15002. align-self:center;
  15003. padding:2px 2px 2px 2px;
  15004. box-sizing:border-box;
  15005. width:100%;
  15006. }
  15007. #u486_text {
  15008. border-width:0px;
  15009. word-wrap:break-word;
  15010. text-transform:none;
  15011. visibility:hidden;
  15012. }
  15013. #u487 {
  15014. border-width:0px;
  15015. position:absolute;
  15016. left:0px;
  15017. top:0px;
  15018. width:0px;
  15019. height:0px;
  15020. }
  15021. #u488_div {
  15022. border-width:0px;
  15023. position:absolute;
  15024. left:0px;
  15025. top:0px;
  15026. width:33px;
  15027. height:22px;
  15028. background:inherit;
  15029. background-color:rgba(255, 255, 255, 0);
  15030. border:none;
  15031. border-radius:0px;
  15032. -moz-box-shadow:none;
  15033. -webkit-box-shadow:none;
  15034. box-shadow:none;
  15035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15036. font-weight:400;
  15037. font-style:normal;
  15038. font-size:16px;
  15039. color:#FFFFFF;
  15040. }
  15041. #u488 {
  15042. border-width:0px;
  15043. position:absolute;
  15044. left:3299px;
  15045. top:192px;
  15046. width:33px;
  15047. height:22px;
  15048. display:flex;
  15049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15050. font-weight:400;
  15051. font-style:normal;
  15052. font-size:16px;
  15053. color:#FFFFFF;
  15054. }
  15055. #u488 .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. #u488_text {
  15063. border-width:0px;
  15064. white-space:nowrap;
  15065. text-transform:none;
  15066. }
  15067. #u489_img {
  15068. border-width:0px;
  15069. position:absolute;
  15070. left:0px;
  15071. top:0px;
  15072. width:14px;
  15073. height:14px;
  15074. }
  15075. #u489 {
  15076. border-width:0px;
  15077. position:absolute;
  15078. left:3280px;
  15079. top:196px;
  15080. width:14px;
  15081. height:14px;
  15082. display:flex;
  15083. }
  15084. #u489 .text {
  15085. position:absolute;
  15086. align-self:center;
  15087. padding:2px 2px 2px 2px;
  15088. box-sizing:border-box;
  15089. width:100%;
  15090. }
  15091. #u489_text {
  15092. border-width:0px;
  15093. word-wrap:break-word;
  15094. text-transform:none;
  15095. visibility:hidden;
  15096. }
  15097. #u490 {
  15098. border-width:0px;
  15099. position:absolute;
  15100. left:0px;
  15101. top:0px;
  15102. width:0px;
  15103. height:0px;
  15104. }
  15105. #u491_div {
  15106. border-width:0px;
  15107. position:absolute;
  15108. left:0px;
  15109. top:0px;
  15110. width:33px;
  15111. height:22px;
  15112. background:inherit;
  15113. background-color:rgba(255, 255, 255, 0);
  15114. border:none;
  15115. border-radius:0px;
  15116. -moz-box-shadow:none;
  15117. -webkit-box-shadow:none;
  15118. box-shadow:none;
  15119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15120. font-weight:400;
  15121. font-style:normal;
  15122. font-size:16px;
  15123. color:#FFFFFF;
  15124. }
  15125. #u491 {
  15126. border-width:0px;
  15127. position:absolute;
  15128. left:3299px;
  15129. top:612px;
  15130. width:33px;
  15131. height:22px;
  15132. display:flex;
  15133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15134. font-weight:400;
  15135. font-style:normal;
  15136. font-size:16px;
  15137. color:#FFFFFF;
  15138. }
  15139. #u491 .text {
  15140. position:absolute;
  15141. align-self:flex-start;
  15142. padding:0px 0px 0px 0px;
  15143. box-sizing:border-box;
  15144. width:100%;
  15145. }
  15146. #u491_text {
  15147. border-width:0px;
  15148. white-space:nowrap;
  15149. text-transform:none;
  15150. }
  15151. #u492_img {
  15152. border-width:0px;
  15153. position:absolute;
  15154. left:0px;
  15155. top:0px;
  15156. width:14px;
  15157. height:14px;
  15158. }
  15159. #u492 {
  15160. border-width:0px;
  15161. position:absolute;
  15162. left:3280px;
  15163. top:616px;
  15164. width:14px;
  15165. height:14px;
  15166. display:flex;
  15167. }
  15168. #u492 .text {
  15169. position:absolute;
  15170. align-self:center;
  15171. padding:2px 2px 2px 2px;
  15172. box-sizing:border-box;
  15173. width:100%;
  15174. }
  15175. #u492_text {
  15176. border-width:0px;
  15177. word-wrap:break-word;
  15178. text-transform:none;
  15179. visibility:hidden;
  15180. }
  15181. #u493 {
  15182. border-width:0px;
  15183. position:absolute;
  15184. left:0px;
  15185. top:0px;
  15186. width:0px;
  15187. height:0px;
  15188. }
  15189. #u494_div {
  15190. border-width:0px;
  15191. position:absolute;
  15192. left:0px;
  15193. top:0px;
  15194. width:33px;
  15195. height:22px;
  15196. background:inherit;
  15197. background-color:rgba(255, 255, 255, 0);
  15198. border:none;
  15199. border-radius:0px;
  15200. -moz-box-shadow:none;
  15201. -webkit-box-shadow:none;
  15202. box-shadow:none;
  15203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15204. font-weight:400;
  15205. font-style:normal;
  15206. font-size:16px;
  15207. color:#FFFFFF;
  15208. }
  15209. #u494 {
  15210. border-width:0px;
  15211. position:absolute;
  15212. left:3299px;
  15213. top:150px;
  15214. width:33px;
  15215. height:22px;
  15216. display:flex;
  15217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15218. font-weight:400;
  15219. font-style:normal;
  15220. font-size:16px;
  15221. color:#FFFFFF;
  15222. }
  15223. #u494 .text {
  15224. position:absolute;
  15225. align-self:flex-start;
  15226. padding:0px 0px 0px 0px;
  15227. box-sizing:border-box;
  15228. width:100%;
  15229. }
  15230. #u494_text {
  15231. border-width:0px;
  15232. white-space:nowrap;
  15233. text-transform:none;
  15234. }
  15235. #u495_img {
  15236. border-width:0px;
  15237. position:absolute;
  15238. left:0px;
  15239. top:0px;
  15240. width:14px;
  15241. height:14px;
  15242. }
  15243. #u495 {
  15244. border-width:0px;
  15245. position:absolute;
  15246. left:3280px;
  15247. top:154px;
  15248. width:14px;
  15249. height:14px;
  15250. display:flex;
  15251. }
  15252. #u495 .text {
  15253. position:absolute;
  15254. align-self:center;
  15255. padding:2px 2px 2px 2px;
  15256. box-sizing:border-box;
  15257. width:100%;
  15258. }
  15259. #u495_text {
  15260. border-width:0px;
  15261. word-wrap:break-word;
  15262. text-transform:none;
  15263. visibility:hidden;
  15264. }
  15265. #u496 {
  15266. border-width:0px;
  15267. position:absolute;
  15268. left:0px;
  15269. top:0px;
  15270. width:0px;
  15271. height:0px;
  15272. }
  15273. #u497_div {
  15274. border-width:0px;
  15275. position:absolute;
  15276. left:0px;
  15277. top:0px;
  15278. width:33px;
  15279. height:22px;
  15280. background:inherit;
  15281. background-color:rgba(255, 255, 255, 0);
  15282. border:none;
  15283. border-radius:0px;
  15284. -moz-box-shadow:none;
  15285. -webkit-box-shadow:none;
  15286. box-shadow:none;
  15287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15288. font-weight:400;
  15289. font-style:normal;
  15290. font-size:16px;
  15291. color:#FFFFFF;
  15292. }
  15293. #u497 {
  15294. border-width:0px;
  15295. position:absolute;
  15296. left:3299px;
  15297. top:402px;
  15298. width:33px;
  15299. height:22px;
  15300. display:flex;
  15301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15302. font-weight:400;
  15303. font-style:normal;
  15304. font-size:16px;
  15305. color:#FFFFFF;
  15306. }
  15307. #u497 .text {
  15308. position:absolute;
  15309. align-self:flex-start;
  15310. padding:0px 0px 0px 0px;
  15311. box-sizing:border-box;
  15312. width:100%;
  15313. }
  15314. #u497_text {
  15315. border-width:0px;
  15316. white-space:nowrap;
  15317. text-transform:none;
  15318. }
  15319. #u498_img {
  15320. border-width:0px;
  15321. position:absolute;
  15322. left:0px;
  15323. top:0px;
  15324. width:14px;
  15325. height:14px;
  15326. }
  15327. #u498 {
  15328. border-width:0px;
  15329. position:absolute;
  15330. left:3280px;
  15331. top:406px;
  15332. width:14px;
  15333. height:14px;
  15334. display:flex;
  15335. }
  15336. #u498 .text {
  15337. position:absolute;
  15338. align-self:center;
  15339. padding:2px 2px 2px 2px;
  15340. box-sizing:border-box;
  15341. width:100%;
  15342. }
  15343. #u498_text {
  15344. border-width:0px;
  15345. word-wrap:break-word;
  15346. text-transform:none;
  15347. visibility:hidden;
  15348. }
  15349. #u499 {
  15350. border-width:0px;
  15351. position:absolute;
  15352. left:0px;
  15353. top:0px;
  15354. width:0px;
  15355. height:0px;
  15356. }
  15357. #u500_div {
  15358. border-width:0px;
  15359. position:absolute;
  15360. left:0px;
  15361. top:0px;
  15362. width:33px;
  15363. height:22px;
  15364. background:inherit;
  15365. background-color:rgba(255, 255, 255, 0);
  15366. border:none;
  15367. border-radius:0px;
  15368. -moz-box-shadow:none;
  15369. -webkit-box-shadow:none;
  15370. box-shadow:none;
  15371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15372. font-weight:400;
  15373. font-style:normal;
  15374. font-size:16px;
  15375. color:#FFFFFF;
  15376. }
  15377. #u500 {
  15378. border-width:0px;
  15379. position:absolute;
  15380. left:3299px;
  15381. top:360px;
  15382. width:33px;
  15383. height:22px;
  15384. display:flex;
  15385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15386. font-weight:400;
  15387. font-style:normal;
  15388. font-size:16px;
  15389. color:#FFFFFF;
  15390. }
  15391. #u500 .text {
  15392. position:absolute;
  15393. align-self:flex-start;
  15394. padding:0px 0px 0px 0px;
  15395. box-sizing:border-box;
  15396. width:100%;
  15397. }
  15398. #u500_text {
  15399. border-width:0px;
  15400. white-space:nowrap;
  15401. text-transform:none;
  15402. }
  15403. #u501_img {
  15404. border-width:0px;
  15405. position:absolute;
  15406. left:0px;
  15407. top:0px;
  15408. width:14px;
  15409. height:14px;
  15410. }
  15411. #u501 {
  15412. border-width:0px;
  15413. position:absolute;
  15414. left:3280px;
  15415. top:364px;
  15416. width:14px;
  15417. height:14px;
  15418. display:flex;
  15419. }
  15420. #u501 .text {
  15421. position:absolute;
  15422. align-self:center;
  15423. padding:2px 2px 2px 2px;
  15424. box-sizing:border-box;
  15425. width:100%;
  15426. }
  15427. #u501_text {
  15428. border-width:0px;
  15429. word-wrap:break-word;
  15430. text-transform:none;
  15431. visibility:hidden;
  15432. }
  15433. #u502 {
  15434. border-width:0px;
  15435. position:absolute;
  15436. left:0px;
  15437. top:0px;
  15438. width:0px;
  15439. height:0px;
  15440. }
  15441. #u503_div {
  15442. border-width:0px;
  15443. position:absolute;
  15444. left:0px;
  15445. top:0px;
  15446. width:33px;
  15447. height:22px;
  15448. background:inherit;
  15449. background-color:rgba(255, 255, 255, 0);
  15450. border:none;
  15451. border-radius:0px;
  15452. -moz-box-shadow:none;
  15453. -webkit-box-shadow:none;
  15454. box-shadow:none;
  15455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15456. font-weight:400;
  15457. font-style:normal;
  15458. font-size:16px;
  15459. color:#FFFFFF;
  15460. }
  15461. #u503 {
  15462. border-width:0px;
  15463. position:absolute;
  15464. left:3299px;
  15465. top:234px;
  15466. width:33px;
  15467. height:22px;
  15468. display:flex;
  15469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15470. font-weight:400;
  15471. font-style:normal;
  15472. font-size:16px;
  15473. color:#FFFFFF;
  15474. }
  15475. #u503 .text {
  15476. position:absolute;
  15477. align-self:flex-start;
  15478. padding:0px 0px 0px 0px;
  15479. box-sizing:border-box;
  15480. width:100%;
  15481. }
  15482. #u503_text {
  15483. border-width:0px;
  15484. white-space:nowrap;
  15485. text-transform:none;
  15486. }
  15487. #u504_img {
  15488. border-width:0px;
  15489. position:absolute;
  15490. left:0px;
  15491. top:0px;
  15492. width:14px;
  15493. height:14px;
  15494. }
  15495. #u504 {
  15496. border-width:0px;
  15497. position:absolute;
  15498. left:3280px;
  15499. top:238px;
  15500. width:14px;
  15501. height:14px;
  15502. display:flex;
  15503. }
  15504. #u504 .text {
  15505. position:absolute;
  15506. align-self:center;
  15507. padding:2px 2px 2px 2px;
  15508. box-sizing:border-box;
  15509. width:100%;
  15510. }
  15511. #u504_text {
  15512. border-width:0px;
  15513. word-wrap:break-word;
  15514. text-transform:none;
  15515. visibility:hidden;
  15516. }
  15517. #u505 {
  15518. border-width:0px;
  15519. position:absolute;
  15520. left:0px;
  15521. top:0px;
  15522. width:0px;
  15523. height:0px;
  15524. }
  15525. #u506_div {
  15526. border-width:0px;
  15527. position:absolute;
  15528. left:0px;
  15529. top:0px;
  15530. width:33px;
  15531. height:22px;
  15532. background:inherit;
  15533. background-color:rgba(255, 255, 255, 0);
  15534. border:none;
  15535. border-radius:0px;
  15536. -moz-box-shadow:none;
  15537. -webkit-box-shadow:none;
  15538. box-shadow:none;
  15539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15540. font-weight:400;
  15541. font-style:normal;
  15542. font-size:16px;
  15543. color:#FFFFFF;
  15544. }
  15545. #u506 {
  15546. border-width:0px;
  15547. position:absolute;
  15548. left:3299px;
  15549. top:318px;
  15550. width:33px;
  15551. height:22px;
  15552. display:flex;
  15553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15554. font-weight:400;
  15555. font-style:normal;
  15556. font-size:16px;
  15557. color:#FFFFFF;
  15558. }
  15559. #u506 .text {
  15560. position:absolute;
  15561. align-self:flex-start;
  15562. padding:0px 0px 0px 0px;
  15563. box-sizing:border-box;
  15564. width:100%;
  15565. }
  15566. #u506_text {
  15567. border-width:0px;
  15568. white-space:nowrap;
  15569. text-transform:none;
  15570. }
  15571. #u507_img {
  15572. border-width:0px;
  15573. position:absolute;
  15574. left:0px;
  15575. top:0px;
  15576. width:14px;
  15577. height:14px;
  15578. }
  15579. #u507 {
  15580. border-width:0px;
  15581. position:absolute;
  15582. left:3280px;
  15583. top:322px;
  15584. width:14px;
  15585. height:14px;
  15586. display:flex;
  15587. }
  15588. #u507 .text {
  15589. position:absolute;
  15590. align-self:center;
  15591. padding:2px 2px 2px 2px;
  15592. box-sizing:border-box;
  15593. width:100%;
  15594. }
  15595. #u507_text {
  15596. border-width:0px;
  15597. word-wrap:break-word;
  15598. text-transform:none;
  15599. visibility:hidden;
  15600. }
  15601. #u508 {
  15602. border-width:0px;
  15603. position:absolute;
  15604. left:0px;
  15605. top:0px;
  15606. width:0px;
  15607. height:0px;
  15608. }
  15609. #u509_div {
  15610. border-width:0px;
  15611. position:absolute;
  15612. left:0px;
  15613. top:0px;
  15614. width:33px;
  15615. height:22px;
  15616. background:inherit;
  15617. background-color:rgba(255, 255, 255, 0);
  15618. border:none;
  15619. border-radius:0px;
  15620. -moz-box-shadow:none;
  15621. -webkit-box-shadow:none;
  15622. box-shadow:none;
  15623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15624. font-weight:400;
  15625. font-style:normal;
  15626. font-size:16px;
  15627. color:#FFFFFF;
  15628. }
  15629. #u509 {
  15630. border-width:0px;
  15631. position:absolute;
  15632. left:3299px;
  15633. top:528px;
  15634. width:33px;
  15635. height:22px;
  15636. display:flex;
  15637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15638. font-weight:400;
  15639. font-style:normal;
  15640. font-size:16px;
  15641. color:#FFFFFF;
  15642. }
  15643. #u509 .text {
  15644. position:absolute;
  15645. align-self:flex-start;
  15646. padding:0px 0px 0px 0px;
  15647. box-sizing:border-box;
  15648. width:100%;
  15649. }
  15650. #u509_text {
  15651. border-width:0px;
  15652. white-space:nowrap;
  15653. text-transform:none;
  15654. }
  15655. #u510_img {
  15656. border-width:0px;
  15657. position:absolute;
  15658. left:0px;
  15659. top:0px;
  15660. width:14px;
  15661. height:14px;
  15662. }
  15663. #u510 {
  15664. border-width:0px;
  15665. position:absolute;
  15666. left:3280px;
  15667. top:532px;
  15668. width:14px;
  15669. height:14px;
  15670. display:flex;
  15671. }
  15672. #u510 .text {
  15673. position:absolute;
  15674. align-self:center;
  15675. padding:2px 2px 2px 2px;
  15676. box-sizing:border-box;
  15677. width:100%;
  15678. }
  15679. #u510_text {
  15680. border-width:0px;
  15681. word-wrap:break-word;
  15682. text-transform:none;
  15683. visibility:hidden;
  15684. }
  15685. #u511 {
  15686. border-width:0px;
  15687. position:absolute;
  15688. left:0px;
  15689. top:0px;
  15690. width:0px;
  15691. height:0px;
  15692. }
  15693. #u512_div {
  15694. border-width:0px;
  15695. position:absolute;
  15696. left:0px;
  15697. top:0px;
  15698. width:33px;
  15699. height:22px;
  15700. background:inherit;
  15701. background-color:rgba(255, 255, 255, 0);
  15702. border:none;
  15703. border-radius:0px;
  15704. -moz-box-shadow:none;
  15705. -webkit-box-shadow:none;
  15706. box-shadow:none;
  15707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15708. font-weight:400;
  15709. font-style:normal;
  15710. font-size:16px;
  15711. color:#FFFFFF;
  15712. }
  15713. #u512 {
  15714. border-width:0px;
  15715. position:absolute;
  15716. left:3299px;
  15717. top:696px;
  15718. width:33px;
  15719. height:22px;
  15720. display:flex;
  15721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15722. font-weight:400;
  15723. font-style:normal;
  15724. font-size:16px;
  15725. color:#FFFFFF;
  15726. }
  15727. #u512 .text {
  15728. position:absolute;
  15729. align-self:flex-start;
  15730. padding:0px 0px 0px 0px;
  15731. box-sizing:border-box;
  15732. width:100%;
  15733. }
  15734. #u512_text {
  15735. border-width:0px;
  15736. white-space:nowrap;
  15737. text-transform:none;
  15738. }
  15739. #u513_img {
  15740. border-width:0px;
  15741. position:absolute;
  15742. left:0px;
  15743. top:0px;
  15744. width:14px;
  15745. height:14px;
  15746. }
  15747. #u513 {
  15748. border-width:0px;
  15749. position:absolute;
  15750. left:3280px;
  15751. top:700px;
  15752. width:14px;
  15753. height:14px;
  15754. display:flex;
  15755. }
  15756. #u513 .text {
  15757. position:absolute;
  15758. align-self:center;
  15759. padding:2px 2px 2px 2px;
  15760. box-sizing:border-box;
  15761. width:100%;
  15762. }
  15763. #u513_text {
  15764. border-width:0px;
  15765. word-wrap:break-word;
  15766. text-transform:none;
  15767. visibility:hidden;
  15768. }
  15769. #u514 {
  15770. border-width:0px;
  15771. position:absolute;
  15772. left:0px;
  15773. top:0px;
  15774. width:0px;
  15775. height:0px;
  15776. }
  15777. #u515_div {
  15778. border-width:0px;
  15779. position:absolute;
  15780. left:0px;
  15781. top:0px;
  15782. width:33px;
  15783. height:22px;
  15784. background:inherit;
  15785. background-color:rgba(255, 255, 255, 0);
  15786. border:none;
  15787. border-radius:0px;
  15788. -moz-box-shadow:none;
  15789. -webkit-box-shadow:none;
  15790. box-shadow:none;
  15791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15792. font-weight:400;
  15793. font-style:normal;
  15794. font-size:16px;
  15795. color:#FFFFFF;
  15796. }
  15797. #u515 {
  15798. border-width:0px;
  15799. position:absolute;
  15800. left:3299px;
  15801. top:738px;
  15802. width:33px;
  15803. height:22px;
  15804. display:flex;
  15805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15806. font-weight:400;
  15807. font-style:normal;
  15808. font-size:16px;
  15809. color:#FFFFFF;
  15810. }
  15811. #u515 .text {
  15812. position:absolute;
  15813. align-self:flex-start;
  15814. padding:0px 0px 0px 0px;
  15815. box-sizing:border-box;
  15816. width:100%;
  15817. }
  15818. #u515_text {
  15819. border-width:0px;
  15820. white-space:nowrap;
  15821. text-transform:none;
  15822. }
  15823. #u516_img {
  15824. border-width:0px;
  15825. position:absolute;
  15826. left:0px;
  15827. top:0px;
  15828. width:14px;
  15829. height:14px;
  15830. }
  15831. #u516 {
  15832. border-width:0px;
  15833. position:absolute;
  15834. left:3280px;
  15835. top:742px;
  15836. width:14px;
  15837. height:14px;
  15838. display:flex;
  15839. }
  15840. #u516 .text {
  15841. position:absolute;
  15842. align-self:center;
  15843. padding:2px 2px 2px 2px;
  15844. box-sizing:border-box;
  15845. width:100%;
  15846. }
  15847. #u516_text {
  15848. border-width:0px;
  15849. word-wrap:break-word;
  15850. text-transform:none;
  15851. visibility:hidden;
  15852. }
  15853. #u517_div {
  15854. border-width:0px;
  15855. position:absolute;
  15856. left:0px;
  15857. top:0px;
  15858. width:1460px;
  15859. height:1180px;
  15860. background:inherit;
  15861. background-color:rgba(255, 255, 255, 1);
  15862. border:none;
  15863. border-radius:0px;
  15864. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  15865. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  15866. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  15867. }
  15868. #u517 {
  15869. border-width:0px;
  15870. position:absolute;
  15871. left:3392px;
  15872. top:58px;
  15873. width:1460px;
  15874. height:1180px;
  15875. display:flex;
  15876. }
  15877. #u517 .text {
  15878. position:absolute;
  15879. align-self:center;
  15880. padding:2px 2px 2px 2px;
  15881. box-sizing:border-box;
  15882. width:100%;
  15883. }
  15884. #u517_text {
  15885. border-width:0px;
  15886. word-wrap:break-word;
  15887. text-transform:none;
  15888. visibility:hidden;
  15889. }
  15890. #u518_div {
  15891. border-width:0px;
  15892. position:absolute;
  15893. left:0px;
  15894. top:0px;
  15895. width:774px;
  15896. height:80px;
  15897. background:inherit;
  15898. background-color:rgba(255, 255, 255, 0);
  15899. border:none;
  15900. border-radius:0px;
  15901. -moz-box-shadow:none;
  15902. -webkit-box-shadow:none;
  15903. box-shadow:none;
  15904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15905. font-weight:400;
  15906. font-style:normal;
  15907. font-size:28px;
  15908. color:#D9001B;
  15909. }
  15910. #u518 {
  15911. border-width:0px;
  15912. position:absolute;
  15913. left:3673px;
  15914. top:303px;
  15915. width:774px;
  15916. height:80px;
  15917. display:flex;
  15918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15919. font-weight:400;
  15920. font-style:normal;
  15921. font-size:28px;
  15922. color:#D9001B;
  15923. }
  15924. #u518 .text {
  15925. position:absolute;
  15926. align-self:flex-start;
  15927. padding:0px 0px 0px 0px;
  15928. box-sizing:border-box;
  15929. width:100%;
  15930. }
  15931. #u518_text {
  15932. border-width:0px;
  15933. white-space:nowrap;
  15934. text-transform:none;
  15935. }
  15936. #u519 {
  15937. border-width:0px;
  15938. position:absolute;
  15939. left:0px;
  15940. top:0px;
  15941. width:0px;
  15942. height:0px;
  15943. }
  15944. #u520_div {
  15945. border-width:0px;
  15946. position:absolute;
  15947. left:0px;
  15948. top:0px;
  15949. width:200px;
  15950. height:200px;
  15951. background:inherit;
  15952. background-color:rgba(255, 255, 255, 1);
  15953. border:none;
  15954. border-radius:0px;
  15955. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  15956. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  15957. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  15958. }
  15959. #u520 {
  15960. border-width:0px;
  15961. position:absolute;
  15962. left:3340px;
  15963. top:939px;
  15964. width:200px;
  15965. height:200px;
  15966. display:flex;
  15967. }
  15968. #u520 .text {
  15969. position:absolute;
  15970. align-self:center;
  15971. padding:2px 2px 2px 2px;
  15972. box-sizing:border-box;
  15973. width:100%;
  15974. }
  15975. #u520_text {
  15976. border-width:0px;
  15977. word-wrap:break-word;
  15978. text-transform:none;
  15979. visibility:hidden;
  15980. }
  15981. #u521_div {
  15982. border-width:0px;
  15983. position:absolute;
  15984. left:0px;
  15985. top:0px;
  15986. width:160px;
  15987. height:40px;
  15988. background:inherit;
  15989. background-color:rgba(255, 255, 255, 1);
  15990. border:none;
  15991. border-left:0px;
  15992. border-top:0px;
  15993. border-right:0px;
  15994. border-radius:0px;
  15995. border-bottom-right-radius:0px;
  15996. border-bottom-left-radius:0px;
  15997. -moz-box-shadow:none;
  15998. -webkit-box-shadow:none;
  15999. box-shadow:none;
  16000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16001. font-weight:400;
  16002. font-style:normal;
  16003. font-size:14px;
  16004. text-align:left;
  16005. }
  16006. #u521 {
  16007. border-width:0px;
  16008. position:absolute;
  16009. left:3360px;
  16010. top:959px;
  16011. width:160px;
  16012. height:40px;
  16013. display:flex;
  16014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16015. font-weight:400;
  16016. font-style:normal;
  16017. font-size:14px;
  16018. text-align:left;
  16019. }
  16020. #u521 .text {
  16021. position:absolute;
  16022. align-self:center;
  16023. padding:2px 2px 2px 2px;
  16024. box-sizing:border-box;
  16025. width:100%;
  16026. }
  16027. #u521_text {
  16028. border-width:0px;
  16029. word-wrap:break-word;
  16030. text-transform:none;
  16031. }
  16032. #u522_div {
  16033. border-width:0px;
  16034. position:absolute;
  16035. left:0px;
  16036. top:0px;
  16037. width:160px;
  16038. height:40px;
  16039. background:inherit;
  16040. background-color:rgba(255, 255, 255, 1);
  16041. border:none;
  16042. border-left:0px;
  16043. border-top:0px;
  16044. border-right:0px;
  16045. border-radius:0px;
  16046. border-bottom-right-radius:0px;
  16047. border-bottom-left-radius:0px;
  16048. -moz-box-shadow:none;
  16049. -webkit-box-shadow:none;
  16050. box-shadow:none;
  16051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16052. font-weight:400;
  16053. font-style:normal;
  16054. font-size:14px;
  16055. text-align:left;
  16056. }
  16057. #u522 {
  16058. border-width:0px;
  16059. position:absolute;
  16060. left:3360px;
  16061. top:999px;
  16062. width:160px;
  16063. height:40px;
  16064. display:flex;
  16065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16066. font-weight:400;
  16067. font-style:normal;
  16068. font-size:14px;
  16069. text-align:left;
  16070. }
  16071. #u522 .text {
  16072. position:absolute;
  16073. align-self:center;
  16074. padding:2px 2px 2px 2px;
  16075. box-sizing:border-box;
  16076. width:100%;
  16077. }
  16078. #u522_text {
  16079. border-width:0px;
  16080. word-wrap:break-word;
  16081. text-transform:none;
  16082. }
  16083. #u523_div {
  16084. border-width:0px;
  16085. position:absolute;
  16086. left:0px;
  16087. top:0px;
  16088. width:160px;
  16089. height:40px;
  16090. background:inherit;
  16091. background-color:rgba(255, 255, 255, 1);
  16092. box-sizing:border-box;
  16093. border-width:1px;
  16094. border-style:solid;
  16095. border-color:rgba(242, 242, 242, 1);
  16096. border-left:0px;
  16097. border-top:0px;
  16098. border-right:0px;
  16099. border-radius:0px;
  16100. border-bottom-right-radius:0px;
  16101. border-bottom-left-radius:0px;
  16102. -moz-box-shadow:none;
  16103. -webkit-box-shadow:none;
  16104. box-shadow:none;
  16105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16106. font-weight:400;
  16107. font-style:normal;
  16108. font-size:14px;
  16109. text-align:left;
  16110. }
  16111. #u523 {
  16112. border-width:0px;
  16113. position:absolute;
  16114. left:3360px;
  16115. top:1039px;
  16116. width:160px;
  16117. height:40px;
  16118. display:flex;
  16119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16120. font-weight:400;
  16121. font-style:normal;
  16122. font-size:14px;
  16123. text-align:left;
  16124. }
  16125. #u523 .text {
  16126. position:absolute;
  16127. align-self:center;
  16128. padding:2px 2px 2px 2px;
  16129. box-sizing:border-box;
  16130. width:100%;
  16131. }
  16132. #u523_text {
  16133. border-width:0px;
  16134. word-wrap:break-word;
  16135. text-transform:none;
  16136. }
  16137. #u524_div {
  16138. border-width:0px;
  16139. position:absolute;
  16140. left:0px;
  16141. top:0px;
  16142. width:160px;
  16143. height:40px;
  16144. background:inherit;
  16145. background-color:rgba(255, 255, 255, 1);
  16146. border:none;
  16147. border-left:0px;
  16148. border-top:0px;
  16149. border-right:0px;
  16150. border-radius:0px;
  16151. border-bottom-right-radius:0px;
  16152. border-bottom-left-radius:0px;
  16153. -moz-box-shadow:none;
  16154. -webkit-box-shadow:none;
  16155. box-shadow:none;
  16156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16157. font-weight:400;
  16158. font-style:normal;
  16159. font-size:14px;
  16160. text-align:left;
  16161. }
  16162. #u524 {
  16163. border-width:0px;
  16164. position:absolute;
  16165. left:3360px;
  16166. top:1089px;
  16167. width:160px;
  16168. height:40px;
  16169. display:flex;
  16170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16171. font-weight:400;
  16172. font-style:normal;
  16173. font-size:14px;
  16174. text-align:left;
  16175. }
  16176. #u524 .text {
  16177. position:absolute;
  16178. align-self:center;
  16179. padding:2px 2px 2px 2px;
  16180. box-sizing:border-box;
  16181. width:100%;
  16182. }
  16183. #u524_text {
  16184. border-width:0px;
  16185. word-wrap:break-word;
  16186. text-transform:none;
  16187. }
  16188. #u525_img {
  16189. border-width:0px;
  16190. position:absolute;
  16191. left:0px;
  16192. top:0px;
  16193. width:6px;
  16194. height:11px;
  16195. }
  16196. #u525 {
  16197. border-width:0px;
  16198. position:absolute;
  16199. left:3514px;
  16200. top:974px;
  16201. width:6px;
  16202. height:11px;
  16203. display:flex;
  16204. }
  16205. #u525 .text {
  16206. position:absolute;
  16207. align-self:center;
  16208. padding:2px 2px 2px 2px;
  16209. box-sizing:border-box;
  16210. width:100%;
  16211. }
  16212. #u525_text {
  16213. border-width:0px;
  16214. word-wrap:break-word;
  16215. text-transform:none;
  16216. visibility:hidden;
  16217. }
  16218. #u526_img {
  16219. border-width:0px;
  16220. position:absolute;
  16221. left:0px;
  16222. top:0px;
  16223. width:6px;
  16224. height:11px;
  16225. }
  16226. #u526 {
  16227. border-width:0px;
  16228. position:absolute;
  16229. left:3514px;
  16230. top:1014px;
  16231. width:6px;
  16232. height:11px;
  16233. display:flex;
  16234. }
  16235. #u526 .text {
  16236. position:absolute;
  16237. align-self:center;
  16238. padding:2px 2px 2px 2px;
  16239. box-sizing:border-box;
  16240. width:100%;
  16241. }
  16242. #u526_text {
  16243. border-width:0px;
  16244. word-wrap:break-word;
  16245. text-transform:none;
  16246. visibility:hidden;
  16247. }
  16248. #u527_img {
  16249. border-width:0px;
  16250. position:absolute;
  16251. left:0px;
  16252. top:0px;
  16253. width:6px;
  16254. height:11px;
  16255. }
  16256. #u527 {
  16257. border-width:0px;
  16258. position:absolute;
  16259. left:3514px;
  16260. top:1054px;
  16261. width:6px;
  16262. height:11px;
  16263. display:flex;
  16264. }
  16265. #u527 .text {
  16266. position:absolute;
  16267. align-self:center;
  16268. padding:2px 2px 2px 2px;
  16269. box-sizing:border-box;
  16270. width:100%;
  16271. }
  16272. #u527_text {
  16273. border-width:0px;
  16274. word-wrap:break-word;
  16275. text-transform:none;
  16276. visibility:hidden;
  16277. }
  16278. #u528_div {
  16279. border-width:0px;
  16280. position:absolute;
  16281. left:0px;
  16282. top:0px;
  16283. width:694px;
  16284. height:180px;
  16285. background:inherit;
  16286. background-color:rgba(255, 255, 255, 1);
  16287. border:none;
  16288. border-radius:0px;
  16289. -moz-box-shadow:none;
  16290. -webkit-box-shadow:none;
  16291. box-shadow:none;
  16292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16293. font-weight:400;
  16294. font-style:normal;
  16295. font-size:18px;
  16296. color:#D9001B;
  16297. line-height:40px;
  16298. }
  16299. #u528 {
  16300. border-width:0px;
  16301. position:absolute;
  16302. left:153px;
  16303. top:1278px;
  16304. width:694px;
  16305. height:180px;
  16306. display:flex;
  16307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16308. font-weight:400;
  16309. font-style:normal;
  16310. font-size:18px;
  16311. color:#D9001B;
  16312. line-height:40px;
  16313. }
  16314. #u528 .text {
  16315. position:absolute;
  16316. align-self:flex-start;
  16317. padding:10px 10px 10px 10px;
  16318. box-sizing:border-box;
  16319. width:100%;
  16320. }
  16321. #u528_text {
  16322. border-width:0px;
  16323. white-space:nowrap;
  16324. text-transform:none;
  16325. }
  16326. #u529_div {
  16327. border-width:0px;
  16328. position:absolute;
  16329. left:0px;
  16330. top:0px;
  16331. width:408px;
  16332. height:25px;
  16333. background:inherit;
  16334. background-color:rgba(255, 255, 255, 0);
  16335. border:none;
  16336. border-radius:0px;
  16337. -moz-box-shadow:none;
  16338. -webkit-box-shadow:none;
  16339. box-shadow:none;
  16340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16341. font-weight:400;
  16342. font-style:normal;
  16343. font-size:18px;
  16344. color:#D9001B;
  16345. }
  16346. #u529 {
  16347. border-width:0px;
  16348. position:absolute;
  16349. left:289px;
  16350. top:264px;
  16351. width:408px;
  16352. height:25px;
  16353. display:flex;
  16354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16355. font-weight:400;
  16356. font-style:normal;
  16357. font-size:18px;
  16358. color:#D9001B;
  16359. }
  16360. #u529 .text {
  16361. position:absolute;
  16362. align-self:flex-start;
  16363. padding:0px 0px 0px 0px;
  16364. box-sizing:border-box;
  16365. width:100%;
  16366. }
  16367. #u529_text {
  16368. border-width:0px;
  16369. white-space:nowrap;
  16370. text-transform:none;
  16371. }
  16372. #u530_div {
  16373. border-width:0px;
  16374. position:absolute;
  16375. left:0px;
  16376. top:0px;
  16377. width:618px;
  16378. height:210px;
  16379. background:inherit;
  16380. background-color:rgba(255, 255, 255, 0);
  16381. border:none;
  16382. border-radius:0px;
  16383. -moz-box-shadow:none;
  16384. -webkit-box-shadow:none;
  16385. box-shadow:none;
  16386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16387. font-weight:400;
  16388. font-style:normal;
  16389. color:#D9001B;
  16390. line-height:30px;
  16391. }
  16392. #u530 {
  16393. border-width:0px;
  16394. position:absolute;
  16395. left:954px;
  16396. top:91px;
  16397. width:618px;
  16398. height:210px;
  16399. display:flex;
  16400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16401. font-weight:400;
  16402. font-style:normal;
  16403. color:#D9001B;
  16404. line-height:30px;
  16405. }
  16406. #u530 .text {
  16407. position:absolute;
  16408. align-self:flex-start;
  16409. padding:0px 0px 0px 0px;
  16410. box-sizing:border-box;
  16411. width:100%;
  16412. }
  16413. #u530_text {
  16414. border-width:0px;
  16415. word-wrap:break-word;
  16416. text-transform:none;
  16417. }
  16418. #u531_div {
  16419. border-width:0px;
  16420. position:absolute;
  16421. left:0px;
  16422. top:0px;
  16423. width:368px;
  16424. height:25px;
  16425. background:inherit;
  16426. background-color:rgba(255, 255, 255, 0);
  16427. border:none;
  16428. border-radius:0px;
  16429. -moz-box-shadow:none;
  16430. -webkit-box-shadow:none;
  16431. box-shadow:none;
  16432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16433. font-weight:400;
  16434. font-style:normal;
  16435. font-size:18px;
  16436. color:#D9001B;
  16437. }
  16438. #u531 {
  16439. border-width:0px;
  16440. position:absolute;
  16441. left:309px;
  16442. top:72px;
  16443. width:368px;
  16444. height:25px;
  16445. display:flex;
  16446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16447. font-weight:400;
  16448. font-style:normal;
  16449. font-size:18px;
  16450. color:#D9001B;
  16451. }
  16452. #u531 .text {
  16453. position:absolute;
  16454. align-self:flex-start;
  16455. padding:0px 0px 0px 0px;
  16456. box-sizing:border-box;
  16457. width:100%;
  16458. }
  16459. #u531_text {
  16460. border-width:0px;
  16461. white-space:nowrap;
  16462. text-transform:none;
  16463. }
  16464. #u532 {
  16465. border-width:0px;
  16466. position:absolute;
  16467. left:0px;
  16468. top:0px;
  16469. width:0px;
  16470. height:0px;
  16471. }
  16472. #u533_div {
  16473. border-width:0px;
  16474. position:absolute;
  16475. left:0px;
  16476. top:0px;
  16477. width:240px;
  16478. height:80px;
  16479. background:inherit;
  16480. background-color:rgba(242, 242, 242, 1);
  16481. border:none;
  16482. border-radius:0px;
  16483. -moz-box-shadow:none;
  16484. -webkit-box-shadow:none;
  16485. box-shadow:none;
  16486. }
  16487. #u533 {
  16488. border-width:0px;
  16489. position:absolute;
  16490. left:964px;
  16491. top:1132px;
  16492. width:240px;
  16493. height:80px;
  16494. display:flex;
  16495. }
  16496. #u533 .text {
  16497. position:absolute;
  16498. align-self:center;
  16499. padding:2px 2px 2px 2px;
  16500. box-sizing:border-box;
  16501. width:100%;
  16502. }
  16503. #u533_text {
  16504. border-width:0px;
  16505. word-wrap:break-word;
  16506. text-transform:none;
  16507. visibility:hidden;
  16508. }
  16509. #u534_img {
  16510. border-width:0px;
  16511. position:absolute;
  16512. left:0px;
  16513. top:0px;
  16514. width:50px;
  16515. height:53px;
  16516. }
  16517. #u534 {
  16518. border-width:0px;
  16519. position:absolute;
  16520. left:980px;
  16521. top:1145px;
  16522. width:50px;
  16523. height:53px;
  16524. display:flex;
  16525. }
  16526. #u534 .text {
  16527. position:absolute;
  16528. align-self:center;
  16529. padding:2px 2px 2px 2px;
  16530. box-sizing:border-box;
  16531. width:100%;
  16532. }
  16533. #u534_text {
  16534. border-width:0px;
  16535. word-wrap:break-word;
  16536. text-transform:none;
  16537. visibility:hidden;
  16538. }
  16539. #u535 {
  16540. border-width:0px;
  16541. position:absolute;
  16542. left:0px;
  16543. top:0px;
  16544. width:0px;
  16545. height:0px;
  16546. }
  16547. #u536_div {
  16548. border-width:0px;
  16549. position:absolute;
  16550. left:0px;
  16551. top:0px;
  16552. width:73px;
  16553. height:25px;
  16554. background:inherit;
  16555. background-color:rgba(255, 255, 255, 0);
  16556. border:none;
  16557. border-left:0px;
  16558. border-top:0px;
  16559. border-right:0px;
  16560. border-radius:0px;
  16561. border-bottom-right-radius:0px;
  16562. border-bottom-left-radius:0px;
  16563. -moz-box-shadow:none;
  16564. -webkit-box-shadow:none;
  16565. box-shadow:none;
  16566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16567. font-weight:400;
  16568. font-style:normal;
  16569. font-size:18px;
  16570. }
  16571. #u536 {
  16572. border-width:0px;
  16573. position:absolute;
  16574. left:1045px;
  16575. top:1148px;
  16576. width:73px;
  16577. height:25px;
  16578. display:flex;
  16579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16580. font-weight:400;
  16581. font-style:normal;
  16582. font-size:18px;
  16583. }
  16584. #u536 .text {
  16585. position:absolute;
  16586. align-self:center;
  16587. padding:0px 0px 0px 0px;
  16588. box-sizing:border-box;
  16589. width:100%;
  16590. }
  16591. #u536_text {
  16592. border-width:0px;
  16593. white-space:nowrap;
  16594. text-transform:none;
  16595. }
  16596. #u537_div {
  16597. border-width:0px;
  16598. position:absolute;
  16599. left:0px;
  16600. top:0px;
  16601. width:181px;
  16602. height:17px;
  16603. background:inherit;
  16604. background-color:rgba(255, 255, 255, 0);
  16605. border:none;
  16606. border-left:0px;
  16607. border-top:0px;
  16608. border-right:0px;
  16609. border-radius:0px;
  16610. border-bottom-right-radius:0px;
  16611. border-bottom-left-radius:0px;
  16612. -moz-box-shadow:none;
  16613. -webkit-box-shadow:none;
  16614. box-shadow:none;
  16615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16616. font-weight:400;
  16617. font-style:normal;
  16618. font-size:12px;
  16619. color:#7F7F7F;
  16620. }
  16621. #u537 {
  16622. border-width:0px;
  16623. position:absolute;
  16624. left:1045px;
  16625. top:1178px;
  16626. width:181px;
  16627. height:17px;
  16628. display:flex;
  16629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  16630. font-weight:400;
  16631. font-style:normal;
  16632. font-size:12px;
  16633. color:#7F7F7F;
  16634. }
  16635. #u537 .text {
  16636. position:absolute;
  16637. align-self:center;
  16638. padding:0px 0px 0px 0px;
  16639. box-sizing:border-box;
  16640. width:100%;
  16641. }
  16642. #u537_text {
  16643. border-width:0px;
  16644. white-space:nowrap;
  16645. text-transform:none;
  16646. }