styles.css 182 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1600px;
  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. #u1282 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u1283_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border-radius:0px;
  37. filter:drop-shadow(none);
  38. transition:none;
  39. }
  40. #u1283 {
  41. border-width:0px;
  42. position:absolute;
  43. left:120px;
  44. top:50px;
  45. width:1480px;
  46. height:1200px;
  47. display:flex;
  48. transition:none;
  49. transform-origin:50% 50%;
  50. }
  51. #u1283 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u1283_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u1284_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-size:16px;
  77. color:#FFFFFF;
  78. }
  79. #u1284 {
  80. border-width:0px;
  81. position:absolute;
  82. left:49px;
  83. top:14px;
  84. width:129px;
  85. height:22px;
  86. display:flex;
  87. transition:none;
  88. transform-origin:50% 50%;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u1284 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u1284_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u1285_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border-radius:0px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. color:#AFB3B6;
  117. }
  118. #u1285 {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:50px;
  125. display:flex;
  126. transition:none;
  127. transform-origin:50% 50%;
  128. color:#AFB3B6;
  129. }
  130. #u1285 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u1285_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u1286 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u1287 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. transition:none;
  160. }
  161. #u1287 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u1287_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u1287_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u1288_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:161px;
  187. height:22px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border-radius:0px;
  191. filter:drop-shadow(none);
  192. transition:none;
  193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:16px;
  197. color:#FFFFFF;
  198. }
  199. #u1288 {
  200. border-width:0px;
  201. position:absolute;
  202. left:62px;
  203. top:14px;
  204. width:161px;
  205. height:22px;
  206. display:flex;
  207. transition:none;
  208. transform-origin:50% 50%;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:16px;
  213. color:#FFFFFF;
  214. }
  215. #u1288 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u1288_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u1289_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:120px;
  233. height:1200px;
  234. background:inherit;
  235. background-color:rgba(30, 42, 68, 1);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. color:#AFB3B6;
  240. }
  241. #u1289 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:47px;
  246. width:120px;
  247. height:1200px;
  248. display:flex;
  249. transition:none;
  250. transform-origin:50% 50%;
  251. color:#AFB3B6;
  252. }
  253. #u1289 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u1289_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u1290 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u1291_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:33px;
  280. height:22px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  287. font-weight:400;
  288. font-style:normal;
  289. font-size:16px;
  290. color:#FFFFFF;
  291. }
  292. #u1291 {
  293. border-width:0px;
  294. position:absolute;
  295. left:39px;
  296. top:171px;
  297. width:33px;
  298. height:22px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:16px;
  306. color:#FFFFFF;
  307. }
  308. #u1291 .text {
  309. position:absolute;
  310. align-self:flex-start;
  311. padding:0px 0px 0px 0px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u1291_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u1292 {
  321. border-width:0px;
  322. position:absolute;
  323. left:20px;
  324. top:175px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. transition:none;
  329. }
  330. #u1292 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u1292_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u1292_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u1293 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u1294_div {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:33px;
  365. height:22px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border-radius:0px;
  369. filter:drop-shadow(none);
  370. transition:none;
  371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u1294 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:381px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. transition:none;
  386. transform-origin:50% 50%;
  387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:16px;
  391. color:#FFFFFF;
  392. }
  393. #u1294 .text {
  394. position:absolute;
  395. align-self:flex-start;
  396. padding:0px 0px 0px 0px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u1294_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u1295 {
  406. border-width:0px;
  407. position:absolute;
  408. left:20px;
  409. top:385px;
  410. width:14px;
  411. height:14px;
  412. display:flex;
  413. transition:none;
  414. }
  415. #u1295 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u1295_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u1295_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u1296 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u1297_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:49px;
  450. height:22px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:16px;
  460. color:#FFFFFF;
  461. }
  462. #u1297 {
  463. border-width:0px;
  464. position:absolute;
  465. left:39px;
  466. top:133px;
  467. width:49px;
  468. height:22px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:16px;
  476. color:#FFFFFF;
  477. }
  478. #u1297 .text {
  479. position:absolute;
  480. align-self:flex-start;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u1297_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u1298 {
  491. border-width:0px;
  492. position:absolute;
  493. left:20px;
  494. top:137px;
  495. width:14px;
  496. height:14px;
  497. display:flex;
  498. transition:none;
  499. }
  500. #u1298 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u1298_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u1298_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u1299 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u1300_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:33px;
  535. height:22px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:16px;
  545. color:#FFFFFF;
  546. }
  547. #u1300 {
  548. border-width:0px;
  549. position:absolute;
  550. left:39px;
  551. top:423px;
  552. width:33px;
  553. height:22px;
  554. display:flex;
  555. transition:none;
  556. transform-origin:50% 50%;
  557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:16px;
  561. color:#FFFFFF;
  562. }
  563. #u1300 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u1300_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u1301 {
  576. border-width:0px;
  577. position:absolute;
  578. left:20px;
  579. top:427px;
  580. width:14px;
  581. height:14px;
  582. display:flex;
  583. transition:none;
  584. }
  585. #u1301 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u1301_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u1301_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u1302 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u1303_div {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:33px;
  620. height:22px;
  621. background:inherit;
  622. background-color:rgba(255, 255, 255, 0);
  623. border-radius:0px;
  624. filter:drop-shadow(none);
  625. transition:none;
  626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FFFFFF;
  631. }
  632. #u1303 {
  633. border-width:0px;
  634. position:absolute;
  635. left:39px;
  636. top:297px;
  637. width:33px;
  638. height:22px;
  639. display:flex;
  640. transition:none;
  641. transform-origin:50% 50%;
  642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:16px;
  646. color:#FFFFFF;
  647. }
  648. #u1303 .text {
  649. position:absolute;
  650. align-self:flex-start;
  651. padding:0px 0px 0px 0px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u1303_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u1304 {
  661. border-width:0px;
  662. position:absolute;
  663. left:20px;
  664. top:301px;
  665. width:14px;
  666. height:14px;
  667. display:flex;
  668. transition:none;
  669. }
  670. #u1304 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u1304_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u1304_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u1305 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u1306_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:33px;
  705. height:22px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:16px;
  715. color:#FFFFFF;
  716. }
  717. #u1306 {
  718. border-width:0px;
  719. position:absolute;
  720. left:39px;
  721. top:213px;
  722. width:33px;
  723. height:22px;
  724. display:flex;
  725. transition:none;
  726. transform-origin:50% 50%;
  727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:16px;
  731. color:#FFFFFF;
  732. }
  733. #u1306 .text {
  734. position:absolute;
  735. align-self:flex-start;
  736. padding:0px 0px 0px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u1306_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u1307 {
  746. border-width:0px;
  747. position:absolute;
  748. left:20px;
  749. top:217px;
  750. width:14px;
  751. height:14px;
  752. display:flex;
  753. transition:none;
  754. }
  755. #u1307 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u1307_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u1307_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u1308 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u1309_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:33px;
  790. height:22px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 0);
  793. border-radius:0px;
  794. filter:drop-shadow(none);
  795. transition:none;
  796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:16px;
  800. color:#FFFFFF;
  801. }
  802. #u1309 {
  803. border-width:0px;
  804. position:absolute;
  805. left:39px;
  806. top:339px;
  807. width:33px;
  808. height:22px;
  809. display:flex;
  810. transition:none;
  811. transform-origin:50% 50%;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:16px;
  816. color:#FFFFFF;
  817. }
  818. #u1309 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u1309_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u1310 {
  831. border-width:0px;
  832. position:absolute;
  833. left:20px;
  834. top:343px;
  835. width:14px;
  836. height:14px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u1310 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u1310_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u1310_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u1311 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u1312_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:33px;
  875. height:22px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border-radius:0px;
  879. filter:drop-shadow(none);
  880. transition:none;
  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. #u1312 {
  888. border-width:0px;
  889. position:absolute;
  890. left:39px;
  891. top:465px;
  892. width:33px;
  893. height:22px;
  894. display:flex;
  895. transition:none;
  896. transform-origin:50% 50%;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:16px;
  901. color:#FFFFFF;
  902. }
  903. #u1312 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u1312_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u1313 {
  916. border-width:0px;
  917. position:absolute;
  918. left:20px;
  919. top:469px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. transition:none;
  924. }
  925. #u1313 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u1313_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u1313_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u1314 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u1315_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:29px;
  960. height:20px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border-radius:25px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. color:#FFFFFF;
  970. }
  971. #u1315 {
  972. border-width:0px;
  973. position:absolute;
  974. left:52px;
  975. top:1145px;
  976. width:29px;
  977. height:20px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. color:#FFFFFF;
  985. }
  986. #u1315 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u1315_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u1316 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:20px;
  1002. top:1144px;
  1003. width:22px;
  1004. height:22px;
  1005. display:flex;
  1006. transition:none;
  1007. }
  1008. #u1316 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u1316_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u1316_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u1317 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u1318_div {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:29px;
  1043. height:20px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 0);
  1046. border-radius:25px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. }
  1054. #u1318 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:52px;
  1058. top:1187px;
  1059. width:29px;
  1060. height:20px;
  1061. display:flex;
  1062. transition:none;
  1063. transform-origin:50% 50%;
  1064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. color:#FFFFFF;
  1068. }
  1069. #u1318 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u1318_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u1319 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:20px;
  1085. top:1186px;
  1086. width:22px;
  1087. height:22px;
  1088. display:flex;
  1089. transition:none;
  1090. }
  1091. #u1319 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u1319_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u1319_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u1320 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u1321_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:33px;
  1126. height:22px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border-radius:0px;
  1130. filter:drop-shadow(none);
  1131. transition:none;
  1132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u1321 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:39px;
  1142. top:255px;
  1143. width:33px;
  1144. height:22px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:16px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u1321 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u1321_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u1322 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:20px;
  1170. top:259px;
  1171. width:14px;
  1172. height:14px;
  1173. display:flex;
  1174. transition:none;
  1175. }
  1176. #u1322 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u1322_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u1322_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u1323 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u1324_input {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:214px;
  1210. height:27px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:'ArialMT', 'Arial', sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#FFFFFF;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u1324_input.disabled {
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. padding:2px 2px 2px 2px;
  1231. font-family:'ArialMT', 'Arial', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. letter-spacing:normal;
  1236. color:#FFFFFF;
  1237. vertical-align:none;
  1238. text-align:left;
  1239. text-transform:none;
  1240. background-color:transparent;
  1241. border-color:transparent;
  1242. }
  1243. #u1324_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:214px;
  1249. height:27px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u1324 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1221px;
  1262. top:11px;
  1263. width:214px;
  1264. height:27px;
  1265. display:flex;
  1266. transition:none;
  1267. transform-origin:50% 50%;
  1268. font-size:14px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u1324 .text {
  1272. position:absolute;
  1273. align-self:flex-start;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u1324_div.disabled {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:214px;
  1284. height:27px;
  1285. background:inherit;
  1286. background-color:rgba(240, 240, 240, 1);
  1287. border-radius:0px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-size:14px;
  1291. color:#FFFFFF;
  1292. }
  1293. #u1324.disabled {
  1294. }
  1295. .u1324_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u1325 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1194px;
  1302. top:14px;
  1303. width:22px;
  1304. height:22px;
  1305. display:flex;
  1306. transition:none;
  1307. }
  1308. #u1325 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u1325_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u1325_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u1326_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:100px;
  1335. height:24px;
  1336. background:inherit;
  1337. background-color:rgba(242, 242, 242, 0.2);
  1338. border-radius:25px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. color:#FFFFFF;
  1345. text-align:center;
  1346. }
  1347. #u1326 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1480px;
  1351. top:13px;
  1352. width:100px;
  1353. height:24px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. text-align:center;
  1362. }
  1363. #u1326 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u1326_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u1327 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1452px;
  1379. top:19px;
  1380. width:1px;
  1381. height:11px;
  1382. display:flex;
  1383. transition:none;
  1384. }
  1385. #u1327 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u1327_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u1327_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u1328 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u1329_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:29px;
  1420. height:20px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 0);
  1423. border-radius:25px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#FFFFFF;
  1430. }
  1431. #u1329 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:52px;
  1435. top:1082px;
  1436. width:29px;
  1437. height:20px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. color:#FFFFFF;
  1445. }
  1446. #u1329 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u1329_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u1330 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:20px;
  1462. top:1081px;
  1463. width:22px;
  1464. height:22px;
  1465. display:flex;
  1466. transition:none;
  1467. }
  1468. #u1330 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u1330_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u1330_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u1331 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:1123px;
  1494. width:68px;
  1495. height:1px;
  1496. display:flex;
  1497. transition:none;
  1498. }
  1499. #u1331 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u1331_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u1331_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u1332 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:20px;
  1524. top:1061px;
  1525. width:68px;
  1526. height:1px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u1332 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u1332_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u1332_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u1333 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:20px;
  1555. top:112px;
  1556. width:56px;
  1557. height:1px;
  1558. display:flex;
  1559. transition:none;
  1560. }
  1561. #u1333 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u1333_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u1333_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u1334 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u1335_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:33px;
  1596. height:22px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:16px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u1335 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:43px;
  1612. top:71px;
  1613. width:33px;
  1614. height:22px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:16px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u1335 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u1335_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u1336 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:20px;
  1640. top:75px;
  1641. width:18px;
  1642. height:14px;
  1643. display:flex;
  1644. transition:none;
  1645. }
  1646. #u1336 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u1336_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u1336_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u1337_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1479px;
  1673. height:1189px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border-radius:0px;
  1677. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  1678. transition:none;
  1679. }
  1680. #u1337 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:121px;
  1684. top:51px;
  1685. width:1479px;
  1686. height:1189px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. }
  1691. #u1337 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u1337_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u1338_div {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:73px;
  1710. height:25px;
  1711. background:inherit;
  1712. background-color:rgba(255, 255, 255, 0);
  1713. border-radius:0px;
  1714. filter:drop-shadow(none);
  1715. transition:none;
  1716. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1717. font-weight:500;
  1718. font-style:normal;
  1719. font-size:18px;
  1720. }
  1721. #u1338 {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:153px;
  1725. top:71px;
  1726. width:73px;
  1727. height:25px;
  1728. display:flex;
  1729. transition:none;
  1730. transform-origin:50% 50%;
  1731. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1732. font-weight:500;
  1733. font-style:normal;
  1734. font-size:18px;
  1735. }
  1736. #u1338 .text {
  1737. position:absolute;
  1738. align-self:flex-start;
  1739. padding:0px 0px 0px 0px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u1338_text {
  1744. border-width:0px;
  1745. white-space:nowrap;
  1746. text-transform:none;
  1747. }
  1748. #u1339 {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:0px;
  1754. height:0px;
  1755. }
  1756. #u1340_div {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:353px;
  1762. height:120px;
  1763. background:inherit;
  1764. background-color:rgba(255, 255, 255, 1);
  1765. border-radius:4px;
  1766. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  1767. transition:none;
  1768. }
  1769. #u1340 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:153px;
  1773. top:106px;
  1774. width:353px;
  1775. height:120px;
  1776. display:flex;
  1777. transition:none;
  1778. transform-origin:50% 50%;
  1779. }
  1780. #u1340 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:2px 2px 2px 2px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u1340_text {
  1788. border-width:0px;
  1789. word-wrap:break-word;
  1790. text-transform:none;
  1791. visibility:hidden;
  1792. }
  1793. #u1341_div {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:109px;
  1799. height:25px;
  1800. background:inherit;
  1801. background-color:rgba(255, 255, 255, 0);
  1802. border-radius:0px;
  1803. filter:drop-shadow(none);
  1804. transition:none;
  1805. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1806. font-weight:500;
  1807. font-style:normal;
  1808. font-size:18px;
  1809. }
  1810. #u1341 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:177px;
  1814. top:117px;
  1815. width:109px;
  1816. height:25px;
  1817. display:flex;
  1818. transition:none;
  1819. transform-origin:50% 50%;
  1820. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1821. font-weight:500;
  1822. font-style:normal;
  1823. font-size:18px;
  1824. }
  1825. #u1341 .text {
  1826. position:absolute;
  1827. align-self:flex-start;
  1828. padding:0px 0px 0px 0px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u1341_text {
  1833. border-width:0px;
  1834. white-space:nowrap;
  1835. text-transform:none;
  1836. }
  1837. #u1342_div {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:43px;
  1843. height:40px;
  1844. background:inherit;
  1845. background-color:rgba(255, 255, 255, 0);
  1846. border-radius:0px;
  1847. filter:drop-shadow(none);
  1848. transition:none;
  1849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1850. font-weight:400;
  1851. font-style:normal;
  1852. line-height:20px;
  1853. }
  1854. #u1342 {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:177px;
  1858. top:162px;
  1859. width:43px;
  1860. height:40px;
  1861. display:flex;
  1862. transition:none;
  1863. transform-origin:50% 50%;
  1864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. line-height:20px;
  1868. }
  1869. #u1342 .text {
  1870. position:absolute;
  1871. align-self:flex-start;
  1872. padding:0px 0px 0px 0px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u1342_text {
  1877. border-width:0px;
  1878. white-space:nowrap;
  1879. text-transform:none;
  1880. }
  1881. #u1343_div {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:0px;
  1885. top:0px;
  1886. width:73px;
  1887. height:25px;
  1888. background:inherit;
  1889. background-color:rgba(255, 255, 255, 0);
  1890. border-radius:0px;
  1891. filter:drop-shadow(none);
  1892. transition:none;
  1893. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1894. font-weight:500;
  1895. font-style:normal;
  1896. font-size:18px;
  1897. }
  1898. #u1343 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:153px;
  1902. top:260px;
  1903. width:73px;
  1904. height:25px;
  1905. display:flex;
  1906. transition:none;
  1907. transform-origin:50% 50%;
  1908. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1909. font-weight:500;
  1910. font-style:normal;
  1911. font-size:18px;
  1912. }
  1913. #u1343 .text {
  1914. position:absolute;
  1915. align-self:flex-start;
  1916. padding:0px 0px 0px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u1343_text {
  1921. border-width:0px;
  1922. white-space:nowrap;
  1923. text-transform:none;
  1924. }
  1925. #u1344 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:0px;
  1931. height:0px;
  1932. }
  1933. #u1345_div {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:353px;
  1939. height:120px;
  1940. background:inherit;
  1941. background-color:rgba(255, 255, 255, 1);
  1942. border-radius:4px;
  1943. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  1944. transition:none;
  1945. }
  1946. #u1345 {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:526px;
  1950. top:106px;
  1951. width:353px;
  1952. height:120px;
  1953. display:flex;
  1954. transition:none;
  1955. transform-origin:50% 50%;
  1956. }
  1957. #u1345 .text {
  1958. position:absolute;
  1959. align-self:center;
  1960. padding:2px 2px 2px 2px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u1345_text {
  1965. border-width:0px;
  1966. word-wrap:break-word;
  1967. text-transform:none;
  1968. visibility:hidden;
  1969. }
  1970. #u1346_div {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:109px;
  1976. height:25px;
  1977. background:inherit;
  1978. background-color:rgba(255, 255, 255, 0);
  1979. border-radius:0px;
  1980. filter:drop-shadow(none);
  1981. transition:none;
  1982. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1983. font-weight:500;
  1984. font-style:normal;
  1985. font-size:18px;
  1986. }
  1987. #u1346 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:550px;
  1991. top:117px;
  1992. width:109px;
  1993. height:25px;
  1994. display:flex;
  1995. transition:none;
  1996. transform-origin:50% 50%;
  1997. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1998. font-weight:500;
  1999. font-style:normal;
  2000. font-size:18px;
  2001. }
  2002. #u1346 .text {
  2003. position:absolute;
  2004. align-self:flex-start;
  2005. padding:0px 0px 0px 0px;
  2006. box-sizing:border-box;
  2007. width:100%;
  2008. }
  2009. #u1346_text {
  2010. border-width:0px;
  2011. white-space:nowrap;
  2012. text-transform:none;
  2013. }
  2014. #u1347_div {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:43px;
  2020. height:40px;
  2021. background:inherit;
  2022. background-color:rgba(255, 255, 255, 0);
  2023. border-radius:0px;
  2024. filter:drop-shadow(none);
  2025. transition:none;
  2026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. line-height:20px;
  2030. }
  2031. #u1347 {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:550px;
  2035. top:162px;
  2036. width:43px;
  2037. height:40px;
  2038. display:flex;
  2039. transition:none;
  2040. transform-origin:50% 50%;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. line-height:20px;
  2045. }
  2046. #u1347 .text {
  2047. position:absolute;
  2048. align-self:flex-start;
  2049. padding:0px 0px 0px 0px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u1347_text {
  2054. border-width:0px;
  2055. white-space:nowrap;
  2056. text-transform:none;
  2057. }
  2058. #u1348_div {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:519px;
  2064. height:20px;
  2065. background:inherit;
  2066. background-color:rgba(255, 255, 255, 0);
  2067. border-radius:0px;
  2068. filter:drop-shadow(none);
  2069. transition:none;
  2070. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2071. font-weight:500;
  2072. font-style:normal;
  2073. }
  2074. #u1348 {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:153px;
  2078. top:306px;
  2079. width:519px;
  2080. height:20px;
  2081. display:flex;
  2082. transition:none;
  2083. transform-origin:50% 50%;
  2084. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2085. font-weight:500;
  2086. font-style:normal;
  2087. }
  2088. #u1348 .text {
  2089. position:absolute;
  2090. align-self:flex-start;
  2091. padding:0px 0px 0px 0px;
  2092. box-sizing:border-box;
  2093. width:100%;
  2094. }
  2095. #u1348_text {
  2096. border-width:0px;
  2097. white-space:nowrap;
  2098. text-transform:none;
  2099. }
  2100. #u1349_div {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:775px;
  2106. height:160px;
  2107. background:inherit;
  2108. background-color:rgba(255, 255, 255, 0);
  2109. border-left:0px;
  2110. border-top:0px;
  2111. border-right:0px;
  2112. border-radius:0px;
  2113. border-bottom-right-radius:0px;
  2114. border-bottom-left-radius:0px;
  2115. filter:drop-shadow(none);
  2116. transition:none;
  2117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2118. font-weight:400;
  2119. font-style:normal;
  2120. font-size:18px;
  2121. color:#D9001B;
  2122. line-height:40px;
  2123. }
  2124. #u1349 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:735px;
  2128. top:106px;
  2129. width:775px;
  2130. height:160px;
  2131. display:flex;
  2132. transition:none;
  2133. transform-origin:50% 50%;
  2134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2135. font-weight:400;
  2136. font-style:normal;
  2137. font-size:18px;
  2138. color:#D9001B;
  2139. line-height:40px;
  2140. }
  2141. #u1349 .text {
  2142. position:absolute;
  2143. align-self:center;
  2144. padding:0px 0px 0px 0px;
  2145. box-sizing:border-box;
  2146. width:100%;
  2147. }
  2148. #u1349_text {
  2149. border-width:0px;
  2150. word-wrap:break-word;
  2151. text-transform:none;
  2152. }
  2153. #u1350_div {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:694px;
  2159. height:180px;
  2160. background:inherit;
  2161. background-color:rgba(255, 255, 255, 1);
  2162. border-radius:0px;
  2163. filter:drop-shadow(none);
  2164. transition:none;
  2165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2166. font-weight:400;
  2167. font-style:normal;
  2168. font-size:18px;
  2169. color:#D9001B;
  2170. line-height:40px;
  2171. }
  2172. #u1350 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:895px;
  2176. top:1275px;
  2177. width:694px;
  2178. height:180px;
  2179. display:flex;
  2180. transition:none;
  2181. transform-origin:50% 50%;
  2182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:18px;
  2186. color:#D9001B;
  2187. line-height:40px;
  2188. }
  2189. #u1350 .text {
  2190. position:absolute;
  2191. align-self:flex-start;
  2192. padding:10px 10px 10px 10px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u1350_text {
  2197. border-width:0px;
  2198. white-space:nowrap;
  2199. text-transform:none;
  2200. }
  2201. #u1351 {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:0px;
  2207. height:0px;
  2208. }
  2209. #u1352_div {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:240px;
  2215. height:80px;
  2216. background:inherit;
  2217. background-color:rgba(242, 242, 242, 1);
  2218. border-radius:0px;
  2219. filter:drop-shadow(none);
  2220. transition:none;
  2221. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2222. font-weight:700;
  2223. font-style:normal;
  2224. }
  2225. #u1352 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:153px;
  2229. top:336px;
  2230. width:240px;
  2231. height:80px;
  2232. display:flex;
  2233. transition:none;
  2234. transform-origin:50% 50%;
  2235. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2236. font-weight:700;
  2237. font-style:normal;
  2238. }
  2239. #u1352 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:2px 2px 2px 2px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u1352_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. visibility:hidden;
  2251. }
  2252. #u1353 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:169px;
  2256. top:349px;
  2257. width:50px;
  2258. height:53px;
  2259. display:flex;
  2260. transition:none;
  2261. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2262. font-weight:700;
  2263. font-style:normal;
  2264. }
  2265. #u1353 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 2px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u1353_img {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:50px;
  2278. height:53px;
  2279. }
  2280. #u1353_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. visibility:hidden;
  2285. }
  2286. #u1354 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:0px;
  2292. height:0px;
  2293. }
  2294. #u1355_div {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:73px;
  2300. height:25px;
  2301. background:inherit;
  2302. background-color:rgba(255, 255, 255, 0);
  2303. border-left:0px;
  2304. border-top:0px;
  2305. border-right:0px;
  2306. border-radius:0px;
  2307. border-bottom-right-radius:0px;
  2308. border-bottom-left-radius:0px;
  2309. filter:drop-shadow(none);
  2310. transition:none;
  2311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2312. font-weight:400;
  2313. font-style:normal;
  2314. font-size:18px;
  2315. }
  2316. #u1355 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:234px;
  2320. top:352px;
  2321. width:73px;
  2322. height:25px;
  2323. display:flex;
  2324. transition:none;
  2325. transform-origin:50% 50%;
  2326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2327. font-weight:400;
  2328. font-style:normal;
  2329. font-size:18px;
  2330. }
  2331. #u1355 .text {
  2332. position:absolute;
  2333. align-self:center;
  2334. padding:0px 0px 0px 0px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u1355_text {
  2339. border-width:0px;
  2340. white-space:nowrap;
  2341. text-transform:none;
  2342. }
  2343. #u1356_div {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:181px;
  2349. height:17px;
  2350. background:inherit;
  2351. background-color:rgba(255, 255, 255, 0);
  2352. border-left:0px;
  2353. border-top:0px;
  2354. border-right:0px;
  2355. border-radius:0px;
  2356. border-bottom-right-radius:0px;
  2357. border-bottom-left-radius:0px;
  2358. filter:drop-shadow(none);
  2359. transition:none;
  2360. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2361. font-weight:650;
  2362. font-style:normal;
  2363. font-size:12px;
  2364. color:#7F7F7F;
  2365. }
  2366. #u1356 {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:234px;
  2370. top:382px;
  2371. width:181px;
  2372. height:17px;
  2373. display:flex;
  2374. transition:none;
  2375. transform-origin:50% 50%;
  2376. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2377. font-weight:650;
  2378. font-style:normal;
  2379. font-size:12px;
  2380. color:#7F7F7F;
  2381. }
  2382. #u1356 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:0px 0px 0px 0px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u1356_text {
  2390. border-width:0px;
  2391. white-space:nowrap;
  2392. text-transform:none;
  2393. }
  2394. #u1357 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:0px;
  2400. height:0px;
  2401. }
  2402. #u1358_div {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:240px;
  2408. height:80px;
  2409. background:inherit;
  2410. background-color:rgba(242, 242, 242, 1);
  2411. border-radius:0px;
  2412. filter:drop-shadow(none);
  2413. transition:none;
  2414. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2415. font-weight:700;
  2416. font-style:normal;
  2417. }
  2418. #u1358 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:423px;
  2422. top:336px;
  2423. width:240px;
  2424. height:80px;
  2425. display:flex;
  2426. transition:none;
  2427. transform-origin:50% 50%;
  2428. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2429. font-weight:700;
  2430. font-style:normal;
  2431. }
  2432. #u1358 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:2px 2px 2px 2px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u1358_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. visibility:hidden;
  2444. }
  2445. #u1359 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:439px;
  2449. top:349px;
  2450. width:50px;
  2451. height:53px;
  2452. display:flex;
  2453. transition:none;
  2454. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  2455. font-weight:700;
  2456. font-style:normal;
  2457. }
  2458. #u1359 .text {
  2459. position:absolute;
  2460. align-self:center;
  2461. padding:2px 2px 2px 2px;
  2462. box-sizing:border-box;
  2463. width:100%;
  2464. }
  2465. #u1359_img {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:50px;
  2471. height:53px;
  2472. }
  2473. #u1359_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. visibility:hidden;
  2478. }
  2479. #u1360 {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:0px;
  2485. height:0px;
  2486. }
  2487. #u1361_div {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:73px;
  2493. height:25px;
  2494. background:inherit;
  2495. background-color:rgba(255, 255, 255, 0);
  2496. border-left:0px;
  2497. border-top:0px;
  2498. border-right:0px;
  2499. border-radius:0px;
  2500. border-bottom-right-radius:0px;
  2501. border-bottom-left-radius:0px;
  2502. filter:drop-shadow(none);
  2503. transition:none;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:18px;
  2508. }
  2509. #u1361 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:504px;
  2513. top:352px;
  2514. width:73px;
  2515. height:25px;
  2516. display:flex;
  2517. transition:none;
  2518. transform-origin:50% 50%;
  2519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:18px;
  2523. }
  2524. #u1361 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:0px 0px 0px 0px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u1361_text {
  2532. border-width:0px;
  2533. white-space:nowrap;
  2534. text-transform:none;
  2535. }
  2536. #u1362_div {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:193px;
  2542. height:17px;
  2543. background:inherit;
  2544. background-color:rgba(255, 255, 255, 0);
  2545. border-left:0px;
  2546. border-top:0px;
  2547. border-right:0px;
  2548. border-radius:0px;
  2549. border-bottom-right-radius:0px;
  2550. border-bottom-left-radius:0px;
  2551. filter:drop-shadow(none);
  2552. transition:none;
  2553. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2554. font-weight:650;
  2555. font-style:normal;
  2556. font-size:12px;
  2557. color:#7F7F7F;
  2558. }
  2559. #u1362 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:504px;
  2563. top:382px;
  2564. width:193px;
  2565. height:17px;
  2566. display:flex;
  2567. transition:none;
  2568. transform-origin:50% 50%;
  2569. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2570. font-weight:650;
  2571. font-style:normal;
  2572. font-size:12px;
  2573. color:#7F7F7F;
  2574. }
  2575. #u1362 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:0px 0px 0px 0px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u1362_text {
  2583. border-width:0px;
  2584. white-space:nowrap;
  2585. text-transform:none;
  2586. }
  2587. #u1363 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:0px;
  2593. height:0px;
  2594. }
  2595. #u1364_div {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:240px;
  2601. height:80px;
  2602. background:inherit;
  2603. background-color:rgba(242, 242, 242, 1);
  2604. border-radius:0px;
  2605. filter:drop-shadow(none);
  2606. transition:none;
  2607. }
  2608. #u1364 {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:157px;
  2612. top:1132px;
  2613. width:240px;
  2614. height:80px;
  2615. display:flex;
  2616. transition:none;
  2617. transform-origin:50% 50%;
  2618. }
  2619. #u1364 .text {
  2620. position:absolute;
  2621. align-self:center;
  2622. padding:2px 2px 2px 2px;
  2623. box-sizing:border-box;
  2624. width:100%;
  2625. }
  2626. #u1364_text {
  2627. border-width:0px;
  2628. word-wrap:break-word;
  2629. text-transform:none;
  2630. visibility:hidden;
  2631. }
  2632. #u1365 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:173px;
  2636. top:1145px;
  2637. width:50px;
  2638. height:53px;
  2639. display:flex;
  2640. transition:none;
  2641. }
  2642. #u1365 .text {
  2643. position:absolute;
  2644. align-self:center;
  2645. padding:2px 2px 2px 2px;
  2646. box-sizing:border-box;
  2647. width:100%;
  2648. }
  2649. #u1365_img {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:0px;
  2653. top:0px;
  2654. width:50px;
  2655. height:53px;
  2656. }
  2657. #u1365_text {
  2658. border-width:0px;
  2659. word-wrap:break-word;
  2660. text-transform:none;
  2661. visibility:hidden;
  2662. }
  2663. #u1366 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:0px;
  2669. height:0px;
  2670. }
  2671. #u1367_div {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:73px;
  2677. height:25px;
  2678. background:inherit;
  2679. background-color:rgba(255, 255, 255, 0);
  2680. border-left:0px;
  2681. border-top:0px;
  2682. border-right:0px;
  2683. border-radius:0px;
  2684. border-bottom-right-radius:0px;
  2685. border-bottom-left-radius:0px;
  2686. filter:drop-shadow(none);
  2687. transition:none;
  2688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2689. font-weight:400;
  2690. font-style:normal;
  2691. font-size:18px;
  2692. }
  2693. #u1367 {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:238px;
  2697. top:1148px;
  2698. width:73px;
  2699. height:25px;
  2700. display:flex;
  2701. transition:none;
  2702. transform-origin:50% 50%;
  2703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2704. font-weight:400;
  2705. font-style:normal;
  2706. font-size:18px;
  2707. }
  2708. #u1367 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:0px 0px 0px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u1367_text {
  2716. border-width:0px;
  2717. white-space:nowrap;
  2718. text-transform:none;
  2719. }
  2720. #u1368_div {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:169px;
  2726. height:17px;
  2727. background:inherit;
  2728. background-color:rgba(255, 255, 255, 0);
  2729. border-left:0px;
  2730. border-top:0px;
  2731. border-right:0px;
  2732. border-radius:0px;
  2733. border-bottom-right-radius:0px;
  2734. border-bottom-left-radius:0px;
  2735. filter:drop-shadow(none);
  2736. transition:none;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:12px;
  2741. color:#7F7F7F;
  2742. }
  2743. #u1368 {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:238px;
  2747. top:1178px;
  2748. width:169px;
  2749. height:17px;
  2750. display:flex;
  2751. transition:none;
  2752. transform-origin:50% 50%;
  2753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2754. font-weight:400;
  2755. font-style:normal;
  2756. font-size:12px;
  2757. color:#7F7F7F;
  2758. }
  2759. #u1368 .text {
  2760. position:absolute;
  2761. align-self:center;
  2762. padding:0px 0px 0px 0px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u1368_text {
  2767. border-width:0px;
  2768. white-space:nowrap;
  2769. text-transform:none;
  2770. }
  2771. #u1369 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:0px;
  2777. height:0px;
  2778. }
  2779. #u1370_div {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:240px;
  2785. height:80px;
  2786. background:inherit;
  2787. background-color:rgba(242, 242, 242, 1);
  2788. border-radius:0px;
  2789. filter:drop-shadow(none);
  2790. transition:none;
  2791. }
  2792. #u1370 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:694px;
  2796. top:336px;
  2797. width:240px;
  2798. height:80px;
  2799. display:flex;
  2800. transition:none;
  2801. transform-origin:50% 50%;
  2802. }
  2803. #u1370 .text {
  2804. position:absolute;
  2805. align-self:center;
  2806. padding:2px 2px 2px 2px;
  2807. box-sizing:border-box;
  2808. width:100%;
  2809. }
  2810. #u1370_text {
  2811. border-width:0px;
  2812. word-wrap:break-word;
  2813. text-transform:none;
  2814. visibility:hidden;
  2815. }
  2816. #u1371 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:710px;
  2820. top:349px;
  2821. width:50px;
  2822. height:53px;
  2823. display:flex;
  2824. transition:none;
  2825. }
  2826. #u1371 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 2px 2px 2px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u1371_img {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:50px;
  2839. height:53px;
  2840. }
  2841. #u1371_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. visibility:hidden;
  2846. }
  2847. #u1372 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:0px;
  2853. height:0px;
  2854. }
  2855. #u1373_div {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:0px;
  2860. width:73px;
  2861. height:25px;
  2862. background:inherit;
  2863. background-color:rgba(255, 255, 255, 0);
  2864. border-left:0px;
  2865. border-top:0px;
  2866. border-right:0px;
  2867. border-radius:0px;
  2868. border-bottom-right-radius:0px;
  2869. border-bottom-left-radius:0px;
  2870. filter:drop-shadow(none);
  2871. transition:none;
  2872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:18px;
  2876. }
  2877. #u1373 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:775px;
  2881. top:352px;
  2882. width:73px;
  2883. height:25px;
  2884. display:flex;
  2885. transition:none;
  2886. transform-origin:50% 50%;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:18px;
  2891. }
  2892. #u1373 .text {
  2893. position:absolute;
  2894. align-self:center;
  2895. padding:0px 0px 0px 0px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u1373_text {
  2900. border-width:0px;
  2901. white-space:nowrap;
  2902. text-transform:none;
  2903. }
  2904. #u1374_div {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:121px;
  2910. height:17px;
  2911. background:inherit;
  2912. background-color:rgba(255, 255, 255, 0);
  2913. border-left:0px;
  2914. border-top:0px;
  2915. border-right:0px;
  2916. border-radius:0px;
  2917. border-bottom-right-radius:0px;
  2918. border-bottom-left-radius:0px;
  2919. filter:drop-shadow(none);
  2920. transition:none;
  2921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2922. font-weight:400;
  2923. font-style:normal;
  2924. font-size:12px;
  2925. color:#7F7F7F;
  2926. }
  2927. #u1374 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:775px;
  2931. top:382px;
  2932. width:121px;
  2933. height:17px;
  2934. display:flex;
  2935. transition:none;
  2936. transform-origin:50% 50%;
  2937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2938. font-weight:400;
  2939. font-style:normal;
  2940. font-size:12px;
  2941. color:#7F7F7F;
  2942. }
  2943. #u1374 .text {
  2944. position:absolute;
  2945. align-self:center;
  2946. padding:0px 0px 0px 0px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u1374_text {
  2951. border-width:0px;
  2952. white-space:nowrap;
  2953. text-transform:none;
  2954. }
  2955. #u1375 {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:0px;
  2961. height:0px;
  2962. }
  2963. #u1376_div {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:240px;
  2969. height:80px;
  2970. background:inherit;
  2971. background-color:rgba(242, 242, 242, 1);
  2972. border-radius:0px;
  2973. filter:drop-shadow(none);
  2974. transition:none;
  2975. }
  2976. #u1376 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:964px;
  2980. top:336px;
  2981. width:240px;
  2982. height:80px;
  2983. display:flex;
  2984. transition:none;
  2985. transform-origin:50% 50%;
  2986. }
  2987. #u1376 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 2px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u1376_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u1377 {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:980px;
  3004. top:349px;
  3005. width:50px;
  3006. height:53px;
  3007. display:flex;
  3008. transition:none;
  3009. }
  3010. #u1377 .text {
  3011. position:absolute;
  3012. align-self:center;
  3013. padding:2px 2px 2px 2px;
  3014. box-sizing:border-box;
  3015. width:100%;
  3016. }
  3017. #u1377_img {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:0px;
  3021. top:0px;
  3022. width:50px;
  3023. height:53px;
  3024. }
  3025. #u1377_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u1378 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:0px;
  3037. height:0px;
  3038. }
  3039. #u1379_div {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:73px;
  3045. height:25px;
  3046. background:inherit;
  3047. background-color:rgba(255, 255, 255, 0);
  3048. border-left:0px;
  3049. border-top:0px;
  3050. border-right:0px;
  3051. border-radius:0px;
  3052. border-bottom-right-radius:0px;
  3053. border-bottom-left-radius:0px;
  3054. filter:drop-shadow(none);
  3055. transition:none;
  3056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3057. font-weight:400;
  3058. font-style:normal;
  3059. font-size:18px;
  3060. }
  3061. #u1379 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:1045px;
  3065. top:352px;
  3066. width:73px;
  3067. height:25px;
  3068. display:flex;
  3069. transition:none;
  3070. transform-origin:50% 50%;
  3071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3072. font-weight:400;
  3073. font-style:normal;
  3074. font-size:18px;
  3075. }
  3076. #u1379 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:0px 0px 0px 0px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u1379_text {
  3084. border-width:0px;
  3085. white-space:nowrap;
  3086. text-transform:none;
  3087. }
  3088. #u1380_div {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:181px;
  3094. height:17px;
  3095. background:inherit;
  3096. background-color:rgba(255, 255, 255, 0);
  3097. border-left:0px;
  3098. border-top:0px;
  3099. border-right:0px;
  3100. border-radius:0px;
  3101. border-bottom-right-radius:0px;
  3102. border-bottom-left-radius:0px;
  3103. filter:drop-shadow(none);
  3104. transition:none;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:12px;
  3109. color:#7F7F7F;
  3110. }
  3111. #u1380 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:1045px;
  3115. top:382px;
  3116. width:181px;
  3117. height:17px;
  3118. display:flex;
  3119. transition:none;
  3120. transform-origin:50% 50%;
  3121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3122. font-weight:400;
  3123. font-style:normal;
  3124. font-size:12px;
  3125. color:#7F7F7F;
  3126. }
  3127. #u1380 .text {
  3128. position:absolute;
  3129. align-self:center;
  3130. padding:0px 0px 0px 0px;
  3131. box-sizing:border-box;
  3132. width:100%;
  3133. }
  3134. #u1380_text {
  3135. border-width:0px;
  3136. white-space:nowrap;
  3137. text-transform:none;
  3138. }
  3139. #u1381 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:0px;
  3145. height:0px;
  3146. }
  3147. #u1382_div {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:0px;
  3151. top:0px;
  3152. width:240px;
  3153. height:80px;
  3154. background:inherit;
  3155. background-color:rgba(242, 242, 242, 1);
  3156. border-radius:0px;
  3157. filter:drop-shadow(none);
  3158. transition:none;
  3159. }
  3160. #u1382 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:1234px;
  3164. top:336px;
  3165. width:240px;
  3166. height:80px;
  3167. display:flex;
  3168. transition:none;
  3169. transform-origin:50% 50%;
  3170. }
  3171. #u1382 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:2px 2px 2px 2px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u1382_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. visibility:hidden;
  3183. }
  3184. #u1383 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:1250px;
  3188. top:349px;
  3189. width:50px;
  3190. height:53px;
  3191. display:flex;
  3192. transition:none;
  3193. }
  3194. #u1383 .text {
  3195. position:absolute;
  3196. align-self:center;
  3197. padding:2px 2px 2px 2px;
  3198. box-sizing:border-box;
  3199. width:100%;
  3200. }
  3201. #u1383_img {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:0px;
  3206. width:50px;
  3207. height:53px;
  3208. }
  3209. #u1383_text {
  3210. border-width:0px;
  3211. word-wrap:break-word;
  3212. text-transform:none;
  3213. visibility:hidden;
  3214. }
  3215. #u1384 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:0px;
  3219. top:0px;
  3220. width:0px;
  3221. height:0px;
  3222. }
  3223. #u1385_div {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:73px;
  3229. height:25px;
  3230. background:inherit;
  3231. background-color:rgba(255, 255, 255, 0);
  3232. border-left:0px;
  3233. border-top:0px;
  3234. border-right:0px;
  3235. border-radius:0px;
  3236. border-bottom-right-radius:0px;
  3237. border-bottom-left-radius:0px;
  3238. filter:drop-shadow(none);
  3239. transition:none;
  3240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3241. font-weight:400;
  3242. font-style:normal;
  3243. font-size:18px;
  3244. }
  3245. #u1385 {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:1315px;
  3249. top:352px;
  3250. width:73px;
  3251. height:25px;
  3252. display:flex;
  3253. transition:none;
  3254. transform-origin:50% 50%;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:18px;
  3259. }
  3260. #u1385 .text {
  3261. position:absolute;
  3262. align-self:center;
  3263. padding:0px 0px 0px 0px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u1385_text {
  3268. border-width:0px;
  3269. white-space:nowrap;
  3270. text-transform:none;
  3271. }
  3272. #u1386_div {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:205px;
  3278. height:17px;
  3279. background:inherit;
  3280. background-color:rgba(255, 255, 255, 0);
  3281. border-left:0px;
  3282. border-top:0px;
  3283. border-right:0px;
  3284. border-radius:0px;
  3285. border-bottom-right-radius:0px;
  3286. border-bottom-left-radius:0px;
  3287. filter:drop-shadow(none);
  3288. transition:none;
  3289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3290. font-weight:400;
  3291. font-style:normal;
  3292. font-size:12px;
  3293. color:#7F7F7F;
  3294. }
  3295. #u1386 {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:1315px;
  3299. top:382px;
  3300. width:205px;
  3301. height:17px;
  3302. display:flex;
  3303. transition:none;
  3304. transform-origin:50% 50%;
  3305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3306. font-weight:400;
  3307. font-style:normal;
  3308. font-size:12px;
  3309. color:#7F7F7F;
  3310. }
  3311. #u1386 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:0px 0px 0px 0px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u1386_text {
  3319. border-width:0px;
  3320. white-space:nowrap;
  3321. text-transform:none;
  3322. }
  3323. #u1387 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:0px;
  3329. height:0px;
  3330. }
  3331. #u1388_div {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:240px;
  3337. height:80px;
  3338. background:inherit;
  3339. background-color:rgba(242, 242, 242, 1);
  3340. border-radius:0px;
  3341. filter:drop-shadow(none);
  3342. transition:none;
  3343. }
  3344. #u1388 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:964px;
  3348. top:436px;
  3349. width:240px;
  3350. height:80px;
  3351. display:flex;
  3352. transition:none;
  3353. transform-origin:50% 50%;
  3354. }
  3355. #u1388 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 2px 2px 2px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u1388_text {
  3363. border-width:0px;
  3364. word-wrap:break-word;
  3365. text-transform:none;
  3366. visibility:hidden;
  3367. }
  3368. #u1389 {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:980px;
  3372. top:449px;
  3373. width:50px;
  3374. height:53px;
  3375. display:flex;
  3376. transition:none;
  3377. }
  3378. #u1389 .text {
  3379. position:absolute;
  3380. align-self:center;
  3381. padding:2px 2px 2px 2px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u1389_img {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:50px;
  3391. height:53px;
  3392. }
  3393. #u1389_text {
  3394. border-width:0px;
  3395. word-wrap:break-word;
  3396. text-transform:none;
  3397. visibility:hidden;
  3398. }
  3399. #u1390 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:0px;
  3405. height:0px;
  3406. }
  3407. #u1391_div {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:73px;
  3413. height:25px;
  3414. background:inherit;
  3415. background-color:rgba(255, 255, 255, 0);
  3416. border-left:0px;
  3417. border-top:0px;
  3418. border-right:0px;
  3419. border-radius:0px;
  3420. border-bottom-right-radius:0px;
  3421. border-bottom-left-radius:0px;
  3422. filter:drop-shadow(none);
  3423. transition:none;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:18px;
  3428. }
  3429. #u1391 {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:1045px;
  3433. top:452px;
  3434. width:73px;
  3435. height:25px;
  3436. display:flex;
  3437. transition:none;
  3438. transform-origin:50% 50%;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:18px;
  3443. }
  3444. #u1391 .text {
  3445. position:absolute;
  3446. align-self:center;
  3447. padding:0px 0px 0px 0px;
  3448. box-sizing:border-box;
  3449. width:100%;
  3450. }
  3451. #u1391_text {
  3452. border-width:0px;
  3453. white-space:nowrap;
  3454. text-transform:none;
  3455. }
  3456. #u1392_div {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:0px;
  3460. top:0px;
  3461. width:169px;
  3462. height:17px;
  3463. background:inherit;
  3464. background-color:rgba(255, 255, 255, 0);
  3465. border-left:0px;
  3466. border-top:0px;
  3467. border-right:0px;
  3468. border-radius:0px;
  3469. border-bottom-right-radius:0px;
  3470. border-bottom-left-radius:0px;
  3471. filter:drop-shadow(none);
  3472. transition:none;
  3473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3474. font-weight:400;
  3475. font-style:normal;
  3476. font-size:12px;
  3477. color:#7F7F7F;
  3478. }
  3479. #u1392 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:1045px;
  3483. top:482px;
  3484. width:169px;
  3485. height:17px;
  3486. display:flex;
  3487. transition:none;
  3488. transform-origin:50% 50%;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:12px;
  3493. color:#7F7F7F;
  3494. }
  3495. #u1392 .text {
  3496. position:absolute;
  3497. align-self:center;
  3498. padding:0px 0px 0px 0px;
  3499. box-sizing:border-box;
  3500. width:100%;
  3501. }
  3502. #u1392_text {
  3503. border-width:0px;
  3504. white-space:nowrap;
  3505. text-transform:none;
  3506. }
  3507. #u1393 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:0px;
  3511. top:0px;
  3512. width:0px;
  3513. height:0px;
  3514. }
  3515. #u1394_div {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:240px;
  3521. height:80px;
  3522. background:inherit;
  3523. background-color:rgba(242, 242, 242, 1);
  3524. border-radius:0px;
  3525. filter:drop-shadow(none);
  3526. transition:none;
  3527. }
  3528. #u1394 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:423px;
  3532. top:436px;
  3533. width:240px;
  3534. height:80px;
  3535. display:flex;
  3536. transition:none;
  3537. transform-origin:50% 50%;
  3538. }
  3539. #u1394 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 2px 2px 2px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u1394_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. visibility:hidden;
  3551. }
  3552. #u1395 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:439px;
  3556. top:449px;
  3557. width:50px;
  3558. height:53px;
  3559. display:flex;
  3560. transition:none;
  3561. }
  3562. #u1395 .text {
  3563. position:absolute;
  3564. align-self:center;
  3565. padding:2px 2px 2px 2px;
  3566. box-sizing:border-box;
  3567. width:100%;
  3568. }
  3569. #u1395_img {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:50px;
  3575. height:53px;
  3576. }
  3577. #u1395_text {
  3578. border-width:0px;
  3579. word-wrap:break-word;
  3580. text-transform:none;
  3581. visibility:hidden;
  3582. }
  3583. #u1396 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:0px;
  3589. height:0px;
  3590. }
  3591. #u1397_div {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:73px;
  3597. height:25px;
  3598. background:inherit;
  3599. background-color:rgba(255, 255, 255, 0);
  3600. border-left:0px;
  3601. border-top:0px;
  3602. border-right:0px;
  3603. border-radius:0px;
  3604. border-bottom-right-radius:0px;
  3605. border-bottom-left-radius:0px;
  3606. filter:drop-shadow(none);
  3607. transition:none;
  3608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. font-size:18px;
  3612. }
  3613. #u1397 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:504px;
  3617. top:452px;
  3618. width:73px;
  3619. height:25px;
  3620. display:flex;
  3621. transition:none;
  3622. transform-origin:50% 50%;
  3623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3624. font-weight:400;
  3625. font-style:normal;
  3626. font-size:18px;
  3627. }
  3628. #u1397 .text {
  3629. position:absolute;
  3630. align-self:center;
  3631. padding:0px 0px 0px 0px;
  3632. box-sizing:border-box;
  3633. width:100%;
  3634. }
  3635. #u1397_text {
  3636. border-width:0px;
  3637. white-space:nowrap;
  3638. text-transform:none;
  3639. }
  3640. #u1398_div {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:181px;
  3646. height:17px;
  3647. background:inherit;
  3648. background-color:rgba(255, 255, 255, 0);
  3649. border-left:0px;
  3650. border-top:0px;
  3651. border-right:0px;
  3652. border-radius:0px;
  3653. border-bottom-right-radius:0px;
  3654. border-bottom-left-radius:0px;
  3655. filter:drop-shadow(none);
  3656. transition:none;
  3657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. font-size:12px;
  3661. color:#7F7F7F;
  3662. }
  3663. #u1398 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:504px;
  3667. top:482px;
  3668. width:181px;
  3669. height:17px;
  3670. display:flex;
  3671. transition:none;
  3672. transform-origin:50% 50%;
  3673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3674. font-weight:400;
  3675. font-style:normal;
  3676. font-size:12px;
  3677. color:#7F7F7F;
  3678. }
  3679. #u1398 .text {
  3680. position:absolute;
  3681. align-self:center;
  3682. padding:0px 0px 0px 0px;
  3683. box-sizing:border-box;
  3684. width:100%;
  3685. }
  3686. #u1398_text {
  3687. border-width:0px;
  3688. white-space:nowrap;
  3689. text-transform:none;
  3690. }
  3691. #u1399 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:0px;
  3697. height:0px;
  3698. }
  3699. #u1400_div {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:240px;
  3705. height:80px;
  3706. background:inherit;
  3707. background-color:rgba(242, 242, 242, 1);
  3708. border-radius:0px;
  3709. filter:drop-shadow(none);
  3710. transition:none;
  3711. }
  3712. #u1400 {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:694px;
  3716. top:436px;
  3717. width:240px;
  3718. height:80px;
  3719. display:flex;
  3720. transition:none;
  3721. transform-origin:50% 50%;
  3722. }
  3723. #u1400 .text {
  3724. position:absolute;
  3725. align-self:center;
  3726. padding:2px 2px 2px 2px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u1400_text {
  3731. border-width:0px;
  3732. word-wrap:break-word;
  3733. text-transform:none;
  3734. visibility:hidden;
  3735. }
  3736. #u1401 {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:710px;
  3740. top:449px;
  3741. width:50px;
  3742. height:53px;
  3743. display:flex;
  3744. transition:none;
  3745. }
  3746. #u1401 .text {
  3747. position:absolute;
  3748. align-self:center;
  3749. padding:2px 2px 2px 2px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u1401_img {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:50px;
  3759. height:53px;
  3760. }
  3761. #u1401_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. visibility:hidden;
  3766. }
  3767. #u1402 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:0px;
  3773. height:0px;
  3774. }
  3775. #u1403_div {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:0px;
  3779. top:0px;
  3780. width:73px;
  3781. height:25px;
  3782. background:inherit;
  3783. background-color:rgba(255, 255, 255, 0);
  3784. border-left:0px;
  3785. border-top:0px;
  3786. border-right:0px;
  3787. border-radius:0px;
  3788. border-bottom-right-radius:0px;
  3789. border-bottom-left-radius:0px;
  3790. filter:drop-shadow(none);
  3791. transition:none;
  3792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3793. font-weight:400;
  3794. font-style:normal;
  3795. font-size:18px;
  3796. }
  3797. #u1403 {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:775px;
  3801. top:452px;
  3802. width:73px;
  3803. height:25px;
  3804. display:flex;
  3805. transition:none;
  3806. transform-origin:50% 50%;
  3807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. font-size:18px;
  3811. }
  3812. #u1403 .text {
  3813. position:absolute;
  3814. align-self:center;
  3815. padding:0px 0px 0px 0px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u1403_text {
  3820. border-width:0px;
  3821. white-space:nowrap;
  3822. text-transform:none;
  3823. }
  3824. #u1404_div {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:145px;
  3830. height:17px;
  3831. background:inherit;
  3832. background-color:rgba(255, 255, 255, 0);
  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. filter:drop-shadow(none);
  3840. transition:none;
  3841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:12px;
  3845. color:#7F7F7F;
  3846. }
  3847. #u1404 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:775px;
  3851. top:482px;
  3852. width:145px;
  3853. height:17px;
  3854. display:flex;
  3855. transition:none;
  3856. transform-origin:50% 50%;
  3857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3858. font-weight:400;
  3859. font-style:normal;
  3860. font-size:12px;
  3861. color:#7F7F7F;
  3862. }
  3863. #u1404 .text {
  3864. position:absolute;
  3865. align-self:center;
  3866. padding:0px 0px 0px 0px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u1404_text {
  3871. border-width:0px;
  3872. white-space:nowrap;
  3873. text-transform:none;
  3874. }
  3875. #u1405 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:0px;
  3881. height:0px;
  3882. }
  3883. #u1406_div {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:0px;
  3888. width:240px;
  3889. height:80px;
  3890. background:inherit;
  3891. background-color:rgba(242, 242, 242, 1);
  3892. border-radius:0px;
  3893. filter:drop-shadow(none);
  3894. transition:none;
  3895. }
  3896. #u1406 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:694px;
  3900. top:636px;
  3901. width:240px;
  3902. height:80px;
  3903. display:flex;
  3904. transition:none;
  3905. transform-origin:50% 50%;
  3906. }
  3907. #u1406 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 2px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u1406_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u1407 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:710px;
  3924. top:649px;
  3925. width:50px;
  3926. height:53px;
  3927. display:flex;
  3928. transition:none;
  3929. }
  3930. #u1407 .text {
  3931. position:absolute;
  3932. align-self:center;
  3933. padding:2px 2px 2px 2px;
  3934. box-sizing:border-box;
  3935. width:100%;
  3936. }
  3937. #u1407_img {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:0px;
  3941. top:0px;
  3942. width:50px;
  3943. height:53px;
  3944. }
  3945. #u1407_text {
  3946. border-width:0px;
  3947. word-wrap:break-word;
  3948. text-transform:none;
  3949. visibility:hidden;
  3950. }
  3951. #u1408 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:0px;
  3957. height:0px;
  3958. }
  3959. #u1409_div {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:0px;
  3963. top:0px;
  3964. width:73px;
  3965. height:25px;
  3966. background:inherit;
  3967. background-color:rgba(255, 255, 255, 0);
  3968. border-left:0px;
  3969. border-top:0px;
  3970. border-right:0px;
  3971. border-radius:0px;
  3972. border-bottom-right-radius:0px;
  3973. border-bottom-left-radius:0px;
  3974. filter:drop-shadow(none);
  3975. transition:none;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:18px;
  3980. }
  3981. #u1409 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:775px;
  3985. top:652px;
  3986. width:73px;
  3987. height:25px;
  3988. display:flex;
  3989. transition:none;
  3990. transform-origin:50% 50%;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:18px;
  3995. }
  3996. #u1409 .text {
  3997. position:absolute;
  3998. align-self:center;
  3999. padding:0px 0px 0px 0px;
  4000. box-sizing:border-box;
  4001. width:100%;
  4002. }
  4003. #u1409_text {
  4004. border-width:0px;
  4005. white-space:nowrap;
  4006. text-transform:none;
  4007. }
  4008. #u1410_div {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:0px;
  4012. top:0px;
  4013. width:169px;
  4014. height:17px;
  4015. background:inherit;
  4016. background-color:rgba(255, 255, 255, 0);
  4017. border-left:0px;
  4018. border-top:0px;
  4019. border-right:0px;
  4020. border-radius:0px;
  4021. border-bottom-right-radius:0px;
  4022. border-bottom-left-radius:0px;
  4023. filter:drop-shadow(none);
  4024. transition:none;
  4025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. font-size:12px;
  4029. color:#7F7F7F;
  4030. }
  4031. #u1410 {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:775px;
  4035. top:682px;
  4036. width:169px;
  4037. height:17px;
  4038. display:flex;
  4039. transition:none;
  4040. transform-origin:50% 50%;
  4041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. font-size:12px;
  4045. color:#7F7F7F;
  4046. }
  4047. #u1410 .text {
  4048. position:absolute;
  4049. align-self:center;
  4050. padding:0px 0px 0px 0px;
  4051. box-sizing:border-box;
  4052. width:100%;
  4053. }
  4054. #u1410_text {
  4055. border-width:0px;
  4056. white-space:nowrap;
  4057. text-transform:none;
  4058. }
  4059. #u1411 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:0px;
  4065. height:0px;
  4066. }
  4067. #u1412_div {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:0px;
  4072. width:240px;
  4073. height:80px;
  4074. background:inherit;
  4075. background-color:rgba(242, 242, 242, 1);
  4076. border-radius:0px;
  4077. filter:drop-shadow(none);
  4078. transition:none;
  4079. }
  4080. #u1412 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:1235px;
  4084. top:636px;
  4085. width:240px;
  4086. height:80px;
  4087. display:flex;
  4088. transition:none;
  4089. transform-origin:50% 50%;
  4090. }
  4091. #u1412 .text {
  4092. position:absolute;
  4093. align-self:center;
  4094. padding:2px 2px 2px 2px;
  4095. box-sizing:border-box;
  4096. width:100%;
  4097. }
  4098. #u1412_text {
  4099. border-width:0px;
  4100. word-wrap:break-word;
  4101. text-transform:none;
  4102. visibility:hidden;
  4103. }
  4104. #u1413 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:1251px;
  4108. top:649px;
  4109. width:50px;
  4110. height:53px;
  4111. display:flex;
  4112. transition:none;
  4113. }
  4114. #u1413 .text {
  4115. position:absolute;
  4116. align-self:center;
  4117. padding:2px 2px 2px 2px;
  4118. box-sizing:border-box;
  4119. width:100%;
  4120. }
  4121. #u1413_img {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:50px;
  4127. height:53px;
  4128. }
  4129. #u1413_text {
  4130. border-width:0px;
  4131. word-wrap:break-word;
  4132. text-transform:none;
  4133. visibility:hidden;
  4134. }
  4135. #u1414 {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:0px;
  4139. top:0px;
  4140. width:0px;
  4141. height:0px;
  4142. }
  4143. #u1415_div {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:73px;
  4149. height:25px;
  4150. background:inherit;
  4151. background-color:rgba(255, 255, 255, 0);
  4152. border-left:0px;
  4153. border-top:0px;
  4154. border-right:0px;
  4155. border-radius:0px;
  4156. border-bottom-right-radius:0px;
  4157. border-bottom-left-radius:0px;
  4158. filter:drop-shadow(none);
  4159. transition:none;
  4160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4161. font-weight:400;
  4162. font-style:normal;
  4163. font-size:18px;
  4164. }
  4165. #u1415 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:1316px;
  4169. top:652px;
  4170. width:73px;
  4171. height:25px;
  4172. display:flex;
  4173. transition:none;
  4174. transform-origin:50% 50%;
  4175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4176. font-weight:400;
  4177. font-style:normal;
  4178. font-size:18px;
  4179. }
  4180. #u1415 .text {
  4181. position:absolute;
  4182. align-self:center;
  4183. padding:0px 0px 0px 0px;
  4184. box-sizing:border-box;
  4185. width:100%;
  4186. }
  4187. #u1415_text {
  4188. border-width:0px;
  4189. white-space:nowrap;
  4190. text-transform:none;
  4191. }
  4192. #u1416_div {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:157px;
  4198. height:17px;
  4199. background:inherit;
  4200. background-color:rgba(255, 255, 255, 0);
  4201. border-left:0px;
  4202. border-top:0px;
  4203. border-right:0px;
  4204. border-radius:0px;
  4205. border-bottom-right-radius:0px;
  4206. border-bottom-left-radius:0px;
  4207. filter:drop-shadow(none);
  4208. transition:none;
  4209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4210. font-weight:400;
  4211. font-style:normal;
  4212. font-size:12px;
  4213. color:#7F7F7F;
  4214. }
  4215. #u1416 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:1316px;
  4219. top:682px;
  4220. width:157px;
  4221. height:17px;
  4222. display:flex;
  4223. transition:none;
  4224. transform-origin:50% 50%;
  4225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4226. font-weight:400;
  4227. font-style:normal;
  4228. font-size:12px;
  4229. color:#7F7F7F;
  4230. }
  4231. #u1416 .text {
  4232. position:absolute;
  4233. align-self:center;
  4234. padding:0px 0px 0px 0px;
  4235. box-sizing:border-box;
  4236. width:100%;
  4237. }
  4238. #u1416_text {
  4239. border-width:0px;
  4240. white-space:nowrap;
  4241. text-transform:none;
  4242. }
  4243. #u1417 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:0px;
  4247. top:0px;
  4248. width:0px;
  4249. height:0px;
  4250. }
  4251. #u1418_div {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:240px;
  4257. height:80px;
  4258. background:inherit;
  4259. background-color:rgba(242, 242, 242, 1);
  4260. border-radius:0px;
  4261. filter:drop-shadow(none);
  4262. transition:none;
  4263. }
  4264. #u1418 {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:964px;
  4268. top:636px;
  4269. width:240px;
  4270. height:80px;
  4271. display:flex;
  4272. transition:none;
  4273. transform-origin:50% 50%;
  4274. }
  4275. #u1418 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 2px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u1418_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. visibility:hidden;
  4287. }
  4288. #u1419 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:980px;
  4292. top:649px;
  4293. width:50px;
  4294. height:53px;
  4295. display:flex;
  4296. transition:none;
  4297. }
  4298. #u1419 .text {
  4299. position:absolute;
  4300. align-self:center;
  4301. padding:2px 2px 2px 2px;
  4302. box-sizing:border-box;
  4303. width:100%;
  4304. }
  4305. #u1419_img {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:50px;
  4311. height:53px;
  4312. }
  4313. #u1419_text {
  4314. border-width:0px;
  4315. word-wrap:break-word;
  4316. text-transform:none;
  4317. visibility:hidden;
  4318. }
  4319. #u1420 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:0px;
  4325. height:0px;
  4326. }
  4327. #u1421_div {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:0px;
  4332. width:73px;
  4333. height:25px;
  4334. background:inherit;
  4335. background-color:rgba(255, 255, 255, 0);
  4336. border-left:0px;
  4337. border-top:0px;
  4338. border-right:0px;
  4339. border-radius:0px;
  4340. border-bottom-right-radius:0px;
  4341. border-bottom-left-radius:0px;
  4342. filter:drop-shadow(none);
  4343. transition:none;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:18px;
  4348. }
  4349. #u1421 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:1045px;
  4353. top:652px;
  4354. width:73px;
  4355. height:25px;
  4356. display:flex;
  4357. transition:none;
  4358. transform-origin:50% 50%;
  4359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:18px;
  4363. }
  4364. #u1421 .text {
  4365. position:absolute;
  4366. align-self:center;
  4367. padding:0px 0px 0px 0px;
  4368. box-sizing:border-box;
  4369. width:100%;
  4370. }
  4371. #u1421_text {
  4372. border-width:0px;
  4373. white-space:nowrap;
  4374. text-transform:none;
  4375. }
  4376. #u1422_div {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:85px;
  4382. height:17px;
  4383. background:inherit;
  4384. background-color:rgba(255, 255, 255, 0);
  4385. border-left:0px;
  4386. border-top:0px;
  4387. border-right:0px;
  4388. border-radius:0px;
  4389. border-bottom-right-radius:0px;
  4390. border-bottom-left-radius:0px;
  4391. filter:drop-shadow(none);
  4392. transition:none;
  4393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4394. font-weight:400;
  4395. font-style:normal;
  4396. font-size:12px;
  4397. color:#7F7F7F;
  4398. }
  4399. #u1422 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:1045px;
  4403. top:682px;
  4404. width:85px;
  4405. height:17px;
  4406. display:flex;
  4407. transition:none;
  4408. transform-origin:50% 50%;
  4409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4410. font-weight:400;
  4411. font-style:normal;
  4412. font-size:12px;
  4413. color:#7F7F7F;
  4414. }
  4415. #u1422 .text {
  4416. position:absolute;
  4417. align-self:center;
  4418. padding:0px 0px 0px 0px;
  4419. box-sizing:border-box;
  4420. width:100%;
  4421. }
  4422. #u1422_text {
  4423. border-width:0px;
  4424. white-space:nowrap;
  4425. text-transform:none;
  4426. }
  4427. #u1423 {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:0px;
  4431. top:0px;
  4432. width:0px;
  4433. height:0px;
  4434. }
  4435. #u1424_div {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:0px;
  4439. top:0px;
  4440. width:240px;
  4441. height:80px;
  4442. background:inherit;
  4443. background-color:rgba(242, 242, 242, 1);
  4444. border-radius:0px;
  4445. filter:drop-shadow(none);
  4446. transition:none;
  4447. }
  4448. #u1424 {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:153px;
  4452. top:436px;
  4453. width:240px;
  4454. height:80px;
  4455. display:flex;
  4456. transition:none;
  4457. transform-origin:50% 50%;
  4458. }
  4459. #u1424 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:2px 2px 2px 2px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u1424_text {
  4467. border-width:0px;
  4468. word-wrap:break-word;
  4469. text-transform:none;
  4470. visibility:hidden;
  4471. }
  4472. #u1425 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:169px;
  4476. top:449px;
  4477. width:50px;
  4478. height:53px;
  4479. display:flex;
  4480. transition:none;
  4481. }
  4482. #u1425 .text {
  4483. position:absolute;
  4484. align-self:center;
  4485. padding:2px 2px 2px 2px;
  4486. box-sizing:border-box;
  4487. width:100%;
  4488. }
  4489. #u1425_img {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:50px;
  4495. height:53px;
  4496. }
  4497. #u1425_text {
  4498. border-width:0px;
  4499. word-wrap:break-word;
  4500. text-transform:none;
  4501. visibility:hidden;
  4502. }
  4503. #u1426 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:0px;
  4507. top:0px;
  4508. width:0px;
  4509. height:0px;
  4510. }
  4511. #u1427_div {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:73px;
  4517. height:25px;
  4518. background:inherit;
  4519. background-color:rgba(255, 255, 255, 0);
  4520. border-left:0px;
  4521. border-top:0px;
  4522. border-right:0px;
  4523. border-radius:0px;
  4524. border-bottom-right-radius:0px;
  4525. border-bottom-left-radius:0px;
  4526. filter:drop-shadow(none);
  4527. transition:none;
  4528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4529. font-weight:400;
  4530. font-style:normal;
  4531. font-size:18px;
  4532. }
  4533. #u1427 {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:234px;
  4537. top:452px;
  4538. width:73px;
  4539. height:25px;
  4540. display:flex;
  4541. transition:none;
  4542. transform-origin:50% 50%;
  4543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. font-size:18px;
  4547. }
  4548. #u1427 .text {
  4549. position:absolute;
  4550. align-self:center;
  4551. padding:0px 0px 0px 0px;
  4552. box-sizing:border-box;
  4553. width:100%;
  4554. }
  4555. #u1427_text {
  4556. border-width:0px;
  4557. white-space:nowrap;
  4558. text-transform:none;
  4559. }
  4560. #u1428_div {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:0px;
  4564. top:0px;
  4565. width:193px;
  4566. height:17px;
  4567. background:inherit;
  4568. background-color:rgba(255, 255, 255, 0);
  4569. border-left:0px;
  4570. border-top:0px;
  4571. border-right:0px;
  4572. border-radius:0px;
  4573. border-bottom-right-radius:0px;
  4574. border-bottom-left-radius:0px;
  4575. filter:drop-shadow(none);
  4576. transition:none;
  4577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4578. font-weight:400;
  4579. font-style:normal;
  4580. font-size:12px;
  4581. color:#7F7F7F;
  4582. }
  4583. #u1428 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:234px;
  4587. top:482px;
  4588. width:193px;
  4589. height:17px;
  4590. display:flex;
  4591. transition:none;
  4592. transform-origin:50% 50%;
  4593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4594. font-weight:400;
  4595. font-style:normal;
  4596. font-size:12px;
  4597. color:#7F7F7F;
  4598. }
  4599. #u1428 .text {
  4600. position:absolute;
  4601. align-self:center;
  4602. padding:0px 0px 0px 0px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u1428_text {
  4607. border-width:0px;
  4608. white-space:nowrap;
  4609. text-transform:none;
  4610. }
  4611. #u1429 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:0px;
  4617. height:0px;
  4618. }
  4619. #u1430_div {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:240px;
  4625. height:80px;
  4626. background:inherit;
  4627. background-color:rgba(242, 242, 242, 1);
  4628. border-radius:0px;
  4629. filter:drop-shadow(none);
  4630. transition:none;
  4631. }
  4632. #u1430 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:423px;
  4636. top:636px;
  4637. width:240px;
  4638. height:80px;
  4639. display:flex;
  4640. transition:none;
  4641. transform-origin:50% 50%;
  4642. }
  4643. #u1430 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:2px 2px 2px 2px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u1430_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. visibility:hidden;
  4655. }
  4656. #u1431 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:439px;
  4660. top:649px;
  4661. width:50px;
  4662. height:53px;
  4663. display:flex;
  4664. transition:none;
  4665. }
  4666. #u1431 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:2px 2px 2px 2px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u1431_img {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:50px;
  4679. height:53px;
  4680. }
  4681. #u1431_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. visibility:hidden;
  4686. }
  4687. #u1432 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:0px;
  4693. height:0px;
  4694. }
  4695. #u1433_div {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:109px;
  4701. height:25px;
  4702. background:inherit;
  4703. background-color:rgba(255, 255, 255, 0);
  4704. border-left:0px;
  4705. border-top:0px;
  4706. border-right:0px;
  4707. border-radius:0px;
  4708. border-bottom-right-radius:0px;
  4709. border-bottom-left-radius:0px;
  4710. filter:drop-shadow(none);
  4711. transition:none;
  4712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:18px;
  4716. }
  4717. #u1433 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:504px;
  4721. top:652px;
  4722. width:109px;
  4723. height:25px;
  4724. display:flex;
  4725. transition:none;
  4726. transform-origin:50% 50%;
  4727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:18px;
  4731. }
  4732. #u1433 .text {
  4733. position:absolute;
  4734. align-self:center;
  4735. padding:0px 0px 0px 0px;
  4736. box-sizing:border-box;
  4737. width:100%;
  4738. }
  4739. #u1433_text {
  4740. border-width:0px;
  4741. white-space:nowrap;
  4742. text-transform:none;
  4743. }
  4744. #u1434_div {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:0px;
  4748. top:0px;
  4749. width:145px;
  4750. height:17px;
  4751. background:inherit;
  4752. background-color:rgba(255, 255, 255, 0);
  4753. border-left:0px;
  4754. border-top:0px;
  4755. border-right:0px;
  4756. border-radius:0px;
  4757. border-bottom-right-radius:0px;
  4758. border-bottom-left-radius:0px;
  4759. filter:drop-shadow(none);
  4760. transition:none;
  4761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4762. font-weight:400;
  4763. font-style:normal;
  4764. font-size:12px;
  4765. color:#7F7F7F;
  4766. }
  4767. #u1434 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:504px;
  4771. top:682px;
  4772. width:145px;
  4773. height:17px;
  4774. display:flex;
  4775. transition:none;
  4776. transform-origin:50% 50%;
  4777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:12px;
  4781. color:#7F7F7F;
  4782. }
  4783. #u1434 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:0px 0px 0px 0px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u1434_text {
  4791. border-width:0px;
  4792. white-space:nowrap;
  4793. text-transform:none;
  4794. }
  4795. #u1435 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:0px;
  4801. height:0px;
  4802. }
  4803. #u1436_div {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:240px;
  4809. height:80px;
  4810. background:inherit;
  4811. background-color:rgba(242, 242, 242, 1);
  4812. border-radius:0px;
  4813. filter:drop-shadow(none);
  4814. transition:none;
  4815. }
  4816. #u1436 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:1235px;
  4820. top:436px;
  4821. width:240px;
  4822. height:80px;
  4823. display:flex;
  4824. transition:none;
  4825. transform-origin:50% 50%;
  4826. }
  4827. #u1436 .text {
  4828. position:absolute;
  4829. align-self:center;
  4830. padding:2px 2px 2px 2px;
  4831. box-sizing:border-box;
  4832. width:100%;
  4833. }
  4834. #u1436_text {
  4835. border-width:0px;
  4836. word-wrap:break-word;
  4837. text-transform:none;
  4838. visibility:hidden;
  4839. }
  4840. #u1437 {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:1251px;
  4844. top:449px;
  4845. width:50px;
  4846. height:53px;
  4847. display:flex;
  4848. transition:none;
  4849. }
  4850. #u1437 .text {
  4851. position:absolute;
  4852. align-self:center;
  4853. padding:2px 2px 2px 2px;
  4854. box-sizing:border-box;
  4855. width:100%;
  4856. }
  4857. #u1437_img {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:50px;
  4863. height:53px;
  4864. }
  4865. #u1437_text {
  4866. border-width:0px;
  4867. word-wrap:break-word;
  4868. text-transform:none;
  4869. visibility:hidden;
  4870. }
  4871. #u1438 {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:0px;
  4877. height:0px;
  4878. }
  4879. #u1439_div {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:0px;
  4884. width:73px;
  4885. height:25px;
  4886. background:inherit;
  4887. background-color:rgba(255, 255, 255, 0);
  4888. border-left:0px;
  4889. border-top:0px;
  4890. border-right:0px;
  4891. border-radius:0px;
  4892. border-bottom-right-radius:0px;
  4893. border-bottom-left-radius:0px;
  4894. filter:drop-shadow(none);
  4895. transition:none;
  4896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4897. font-weight:400;
  4898. font-style:normal;
  4899. font-size:18px;
  4900. }
  4901. #u1439 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:1316px;
  4905. top:452px;
  4906. width:73px;
  4907. height:25px;
  4908. display:flex;
  4909. transition:none;
  4910. transform-origin:50% 50%;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:18px;
  4915. }
  4916. #u1439 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:0px 0px 0px 0px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u1439_text {
  4924. border-width:0px;
  4925. white-space:nowrap;
  4926. text-transform:none;
  4927. }
  4928. #u1440_div {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:121px;
  4934. height:17px;
  4935. background:inherit;
  4936. background-color:rgba(255, 255, 255, 0);
  4937. border-left:0px;
  4938. border-top:0px;
  4939. border-right:0px;
  4940. border-radius:0px;
  4941. border-bottom-right-radius:0px;
  4942. border-bottom-left-radius:0px;
  4943. filter:drop-shadow(none);
  4944. transition:none;
  4945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:12px;
  4949. color:#7F7F7F;
  4950. }
  4951. #u1440 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:1316px;
  4955. top:482px;
  4956. width:121px;
  4957. height:17px;
  4958. display:flex;
  4959. transition:none;
  4960. transform-origin:50% 50%;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:12px;
  4965. color:#7F7F7F;
  4966. }
  4967. #u1440 .text {
  4968. position:absolute;
  4969. align-self:center;
  4970. padding:0px 0px 0px 0px;
  4971. box-sizing:border-box;
  4972. width:100%;
  4973. }
  4974. #u1440_text {
  4975. border-width:0px;
  4976. white-space:nowrap;
  4977. text-transform:none;
  4978. }
  4979. #u1441 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:0px;
  4985. height:0px;
  4986. }
  4987. #u1442_div {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:0px;
  4991. top:0px;
  4992. width:240px;
  4993. height:80px;
  4994. background:inherit;
  4995. background-color:rgba(242, 242, 242, 1);
  4996. border-radius:0px;
  4997. filter:drop-shadow(none);
  4998. transition:none;
  4999. }
  5000. #u1442 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:1236px;
  5004. top:536px;
  5005. width:240px;
  5006. height:80px;
  5007. display:flex;
  5008. transition:none;
  5009. transform-origin:50% 50%;
  5010. }
  5011. #u1442 .text {
  5012. position:absolute;
  5013. align-self:center;
  5014. padding:2px 2px 2px 2px;
  5015. box-sizing:border-box;
  5016. width:100%;
  5017. }
  5018. #u1442_text {
  5019. border-width:0px;
  5020. word-wrap:break-word;
  5021. text-transform:none;
  5022. visibility:hidden;
  5023. }
  5024. #u1443 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:1252px;
  5028. top:549px;
  5029. width:50px;
  5030. height:53px;
  5031. display:flex;
  5032. transition:none;
  5033. }
  5034. #u1443 .text {
  5035. position:absolute;
  5036. align-self:center;
  5037. padding:2px 2px 2px 2px;
  5038. box-sizing:border-box;
  5039. width:100%;
  5040. }
  5041. #u1443_img {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:0px;
  5045. top:0px;
  5046. width:50px;
  5047. height:53px;
  5048. }
  5049. #u1443_text {
  5050. border-width:0px;
  5051. word-wrap:break-word;
  5052. text-transform:none;
  5053. visibility:hidden;
  5054. }
  5055. #u1444 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:0px;
  5059. top:0px;
  5060. width:0px;
  5061. height:0px;
  5062. }
  5063. #u1445_div {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:0px;
  5067. top:0px;
  5068. width:73px;
  5069. height:25px;
  5070. background:inherit;
  5071. background-color:rgba(255, 255, 255, 0);
  5072. border-left:0px;
  5073. border-top:0px;
  5074. border-right:0px;
  5075. border-radius:0px;
  5076. border-bottom-right-radius:0px;
  5077. border-bottom-left-radius:0px;
  5078. filter:drop-shadow(none);
  5079. transition:none;
  5080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5081. font-weight:400;
  5082. font-style:normal;
  5083. font-size:18px;
  5084. }
  5085. #u1445 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:1317px;
  5089. top:552px;
  5090. width:73px;
  5091. height:25px;
  5092. display:flex;
  5093. transition:none;
  5094. transform-origin:50% 50%;
  5095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5096. font-weight:400;
  5097. font-style:normal;
  5098. font-size:18px;
  5099. }
  5100. #u1445 .text {
  5101. position:absolute;
  5102. align-self:center;
  5103. padding:0px 0px 0px 0px;
  5104. box-sizing:border-box;
  5105. width:100%;
  5106. }
  5107. #u1445_text {
  5108. border-width:0px;
  5109. white-space:nowrap;
  5110. text-transform:none;
  5111. }
  5112. #u1446_div {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:0px;
  5116. top:0px;
  5117. width:193px;
  5118. height:17px;
  5119. background:inherit;
  5120. background-color:rgba(255, 255, 255, 0);
  5121. border-left:0px;
  5122. border-top:0px;
  5123. border-right:0px;
  5124. border-radius:0px;
  5125. border-bottom-right-radius:0px;
  5126. border-bottom-left-radius:0px;
  5127. filter:drop-shadow(none);
  5128. transition:none;
  5129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:12px;
  5133. color:#7F7F7F;
  5134. }
  5135. #u1446 {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:1317px;
  5139. top:582px;
  5140. width:193px;
  5141. height:17px;
  5142. display:flex;
  5143. transition:none;
  5144. transform-origin:50% 50%;
  5145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5146. font-weight:400;
  5147. font-style:normal;
  5148. font-size:12px;
  5149. color:#7F7F7F;
  5150. }
  5151. #u1446 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:0px 0px 0px 0px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u1446_text {
  5159. border-width:0px;
  5160. white-space:nowrap;
  5161. text-transform:none;
  5162. }
  5163. #u1447 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:0px;
  5169. height:0px;
  5170. }
  5171. #u1448_div {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:240px;
  5177. height:80px;
  5178. background:inherit;
  5179. background-color:rgba(242, 242, 242, 1);
  5180. border-radius:0px;
  5181. filter:drop-shadow(none);
  5182. transition:none;
  5183. }
  5184. #u1448 {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:965px;
  5188. top:536px;
  5189. width:240px;
  5190. height:80px;
  5191. display:flex;
  5192. transition:none;
  5193. transform-origin:50% 50%;
  5194. }
  5195. #u1448 .text {
  5196. position:absolute;
  5197. align-self:center;
  5198. padding:2px 2px 2px 2px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u1448_text {
  5203. border-width:0px;
  5204. word-wrap:break-word;
  5205. text-transform:none;
  5206. visibility:hidden;
  5207. }
  5208. #u1449 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:981px;
  5212. top:549px;
  5213. width:50px;
  5214. height:53px;
  5215. display:flex;
  5216. transition:none;
  5217. }
  5218. #u1449 .text {
  5219. position:absolute;
  5220. align-self:center;
  5221. padding:2px 2px 2px 2px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u1449_img {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:50px;
  5231. height:53px;
  5232. }
  5233. #u1449_text {
  5234. border-width:0px;
  5235. word-wrap:break-word;
  5236. text-transform:none;
  5237. visibility:hidden;
  5238. }
  5239. #u1450 {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:0px;
  5245. height:0px;
  5246. }
  5247. #u1451_div {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:0px;
  5251. top:0px;
  5252. width:73px;
  5253. height:25px;
  5254. background:inherit;
  5255. background-color:rgba(255, 255, 255, 0);
  5256. border-left:0px;
  5257. border-top:0px;
  5258. border-right:0px;
  5259. border-radius:0px;
  5260. border-bottom-right-radius:0px;
  5261. border-bottom-left-radius:0px;
  5262. filter:drop-shadow(none);
  5263. transition:none;
  5264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5265. font-weight:400;
  5266. font-style:normal;
  5267. font-size:18px;
  5268. }
  5269. #u1451 {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:1046px;
  5273. top:552px;
  5274. width:73px;
  5275. height:25px;
  5276. display:flex;
  5277. transition:none;
  5278. transform-origin:50% 50%;
  5279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. font-size:18px;
  5283. }
  5284. #u1451 .text {
  5285. position:absolute;
  5286. align-self:center;
  5287. padding:0px 0px 0px 0px;
  5288. box-sizing:border-box;
  5289. width:100%;
  5290. }
  5291. #u1451_text {
  5292. border-width:0px;
  5293. white-space:nowrap;
  5294. text-transform:none;
  5295. }
  5296. #u1452_div {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:73px;
  5302. height:17px;
  5303. background:inherit;
  5304. background-color:rgba(255, 255, 255, 0);
  5305. border-left:0px;
  5306. border-top:0px;
  5307. border-right:0px;
  5308. border-radius:0px;
  5309. border-bottom-right-radius:0px;
  5310. border-bottom-left-radius:0px;
  5311. filter:drop-shadow(none);
  5312. transition:none;
  5313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:12px;
  5317. color:#7F7F7F;
  5318. }
  5319. #u1452 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:1046px;
  5323. top:582px;
  5324. width:73px;
  5325. height:17px;
  5326. display:flex;
  5327. transition:none;
  5328. transform-origin:50% 50%;
  5329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:12px;
  5333. color:#7F7F7F;
  5334. }
  5335. #u1452 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:0px 0px 0px 0px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u1452_text {
  5343. border-width:0px;
  5344. white-space:nowrap;
  5345. text-transform:none;
  5346. }
  5347. #u1453 {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:0px;
  5353. height:0px;
  5354. }
  5355. #u1454_div {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:240px;
  5361. height:80px;
  5362. background:inherit;
  5363. background-color:rgba(242, 242, 242, 1);
  5364. border-radius:0px;
  5365. filter:drop-shadow(none);
  5366. transition:none;
  5367. }
  5368. #u1454 {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:153px;
  5372. top:636px;
  5373. width:240px;
  5374. height:80px;
  5375. display:flex;
  5376. transition:none;
  5377. transform-origin:50% 50%;
  5378. }
  5379. #u1454 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:2px 2px 2px 2px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u1454_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. visibility:hidden;
  5391. }
  5392. #u1455 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:169px;
  5396. top:649px;
  5397. width:50px;
  5398. height:53px;
  5399. display:flex;
  5400. transition:none;
  5401. }
  5402. #u1455 .text {
  5403. position:absolute;
  5404. align-self:center;
  5405. padding:2px 2px 2px 2px;
  5406. box-sizing:border-box;
  5407. width:100%;
  5408. }
  5409. #u1455_img {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:50px;
  5415. height:53px;
  5416. }
  5417. #u1455_text {
  5418. border-width:0px;
  5419. word-wrap:break-word;
  5420. text-transform:none;
  5421. visibility:hidden;
  5422. }
  5423. #u1456 {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:0px;
  5429. height:0px;
  5430. }
  5431. #u1457_div {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:91px;
  5437. height:25px;
  5438. background:inherit;
  5439. background-color:rgba(255, 255, 255, 0);
  5440. border-left:0px;
  5441. border-top:0px;
  5442. border-right:0px;
  5443. border-radius:0px;
  5444. border-bottom-right-radius:0px;
  5445. border-bottom-left-radius:0px;
  5446. filter:drop-shadow(none);
  5447. transition:none;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:18px;
  5452. }
  5453. #u1457 {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:234px;
  5457. top:652px;
  5458. width:91px;
  5459. height:25px;
  5460. display:flex;
  5461. transition:none;
  5462. transform-origin:50% 50%;
  5463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:18px;
  5467. }
  5468. #u1457 .text {
  5469. position:absolute;
  5470. align-self:center;
  5471. padding:0px 0px 0px 0px;
  5472. box-sizing:border-box;
  5473. width:100%;
  5474. }
  5475. #u1457_text {
  5476. border-width:0px;
  5477. white-space:nowrap;
  5478. text-transform:none;
  5479. }
  5480. #u1458_div {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:121px;
  5486. height:17px;
  5487. background:inherit;
  5488. background-color:rgba(255, 255, 255, 0);
  5489. border-left:0px;
  5490. border-top:0px;
  5491. border-right:0px;
  5492. border-radius:0px;
  5493. border-bottom-right-radius:0px;
  5494. border-bottom-left-radius:0px;
  5495. filter:drop-shadow(none);
  5496. transition:none;
  5497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5498. font-weight:400;
  5499. font-style:normal;
  5500. font-size:12px;
  5501. color:#7F7F7F;
  5502. }
  5503. #u1458 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:234px;
  5507. top:682px;
  5508. width:121px;
  5509. height:17px;
  5510. display:flex;
  5511. transition:none;
  5512. transform-origin:50% 50%;
  5513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5514. font-weight:400;
  5515. font-style:normal;
  5516. font-size:12px;
  5517. color:#7F7F7F;
  5518. }
  5519. #u1458 .text {
  5520. position:absolute;
  5521. align-self:center;
  5522. padding:0px 0px 0px 0px;
  5523. box-sizing:border-box;
  5524. width:100%;
  5525. }
  5526. #u1458_text {
  5527. border-width:0px;
  5528. white-space:nowrap;
  5529. text-transform:none;
  5530. }
  5531. #u1459 {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:0px;
  5537. height:0px;
  5538. }
  5539. #u1460_div {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:240px;
  5545. height:80px;
  5546. background:inherit;
  5547. background-color:rgba(242, 242, 242, 1);
  5548. border-radius:0px;
  5549. filter:drop-shadow(none);
  5550. transition:none;
  5551. }
  5552. #u1460 {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:694px;
  5556. top:536px;
  5557. width:240px;
  5558. height:80px;
  5559. display:flex;
  5560. transition:none;
  5561. transform-origin:50% 50%;
  5562. }
  5563. #u1460 .text {
  5564. position:absolute;
  5565. align-self:center;
  5566. padding:2px 2px 2px 2px;
  5567. box-sizing:border-box;
  5568. width:100%;
  5569. }
  5570. #u1460_text {
  5571. border-width:0px;
  5572. word-wrap:break-word;
  5573. text-transform:none;
  5574. visibility:hidden;
  5575. }
  5576. #u1461 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:710px;
  5580. top:549px;
  5581. width:50px;
  5582. height:53px;
  5583. display:flex;
  5584. transition:none;
  5585. }
  5586. #u1461 .text {
  5587. position:absolute;
  5588. align-self:center;
  5589. padding:2px 2px 2px 2px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u1461_img {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:0px;
  5597. top:0px;
  5598. width:50px;
  5599. height:53px;
  5600. }
  5601. #u1461_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. visibility:hidden;
  5606. }
  5607. #u1462 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:0px;
  5613. height:0px;
  5614. }
  5615. #u1463_div {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:73px;
  5621. height:25px;
  5622. background:inherit;
  5623. background-color:rgba(255, 255, 255, 0);
  5624. border-left:0px;
  5625. border-top:0px;
  5626. border-right:0px;
  5627. border-radius:0px;
  5628. border-bottom-right-radius:0px;
  5629. border-bottom-left-radius:0px;
  5630. filter:drop-shadow(none);
  5631. transition:none;
  5632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5633. font-weight:400;
  5634. font-style:normal;
  5635. font-size:18px;
  5636. }
  5637. #u1463 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:775px;
  5641. top:552px;
  5642. width:73px;
  5643. height:25px;
  5644. display:flex;
  5645. transition:none;
  5646. transform-origin:50% 50%;
  5647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5648. font-weight:400;
  5649. font-style:normal;
  5650. font-size:18px;
  5651. }
  5652. #u1463 .text {
  5653. position:absolute;
  5654. align-self:center;
  5655. padding:0px 0px 0px 0px;
  5656. box-sizing:border-box;
  5657. width:100%;
  5658. }
  5659. #u1463_text {
  5660. border-width:0px;
  5661. white-space:nowrap;
  5662. text-transform:none;
  5663. }
  5664. #u1464_div {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:157px;
  5670. height:17px;
  5671. background:inherit;
  5672. background-color:rgba(255, 255, 255, 0);
  5673. border-left:0px;
  5674. border-top:0px;
  5675. border-right:0px;
  5676. border-radius:0px;
  5677. border-bottom-right-radius:0px;
  5678. border-bottom-left-radius:0px;
  5679. filter:drop-shadow(none);
  5680. transition:none;
  5681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5682. font-weight:400;
  5683. font-style:normal;
  5684. font-size:12px;
  5685. color:#7F7F7F;
  5686. }
  5687. #u1464 {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:775px;
  5691. top:582px;
  5692. width:157px;
  5693. height:17px;
  5694. display:flex;
  5695. transition:none;
  5696. transform-origin:50% 50%;
  5697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5698. font-weight:400;
  5699. font-style:normal;
  5700. font-size:12px;
  5701. color:#7F7F7F;
  5702. }
  5703. #u1464 .text {
  5704. position:absolute;
  5705. align-self:center;
  5706. padding:0px 0px 0px 0px;
  5707. box-sizing:border-box;
  5708. width:100%;
  5709. }
  5710. #u1464_text {
  5711. border-width:0px;
  5712. white-space:nowrap;
  5713. text-transform:none;
  5714. }
  5715. #u1465 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:0px;
  5720. width:0px;
  5721. height:0px;
  5722. }
  5723. #u1466_div {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:240px;
  5729. height:80px;
  5730. background:inherit;
  5731. background-color:rgba(242, 242, 242, 1);
  5732. border-radius:0px;
  5733. filter:drop-shadow(none);
  5734. transition:none;
  5735. }
  5736. #u1466 {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:423px;
  5740. top:536px;
  5741. width:240px;
  5742. height:80px;
  5743. display:flex;
  5744. transition:none;
  5745. transform-origin:50% 50%;
  5746. }
  5747. #u1466 .text {
  5748. position:absolute;
  5749. align-self:center;
  5750. padding:2px 2px 2px 2px;
  5751. box-sizing:border-box;
  5752. width:100%;
  5753. }
  5754. #u1466_text {
  5755. border-width:0px;
  5756. word-wrap:break-word;
  5757. text-transform:none;
  5758. visibility:hidden;
  5759. }
  5760. #u1467 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:439px;
  5764. top:549px;
  5765. width:50px;
  5766. height:53px;
  5767. display:flex;
  5768. transition:none;
  5769. }
  5770. #u1467 .text {
  5771. position:absolute;
  5772. align-self:center;
  5773. padding:2px 2px 2px 2px;
  5774. box-sizing:border-box;
  5775. width:100%;
  5776. }
  5777. #u1467_img {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:50px;
  5783. height:53px;
  5784. }
  5785. #u1467_text {
  5786. border-width:0px;
  5787. word-wrap:break-word;
  5788. text-transform:none;
  5789. visibility:hidden;
  5790. }
  5791. #u1468 {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:0px;
  5797. height:0px;
  5798. }
  5799. #u1469_div {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:0px;
  5803. top:0px;
  5804. width:73px;
  5805. height:25px;
  5806. background:inherit;
  5807. background-color:rgba(255, 255, 255, 0);
  5808. border-left:0px;
  5809. border-top:0px;
  5810. border-right:0px;
  5811. border-radius:0px;
  5812. border-bottom-right-radius:0px;
  5813. border-bottom-left-radius:0px;
  5814. filter:drop-shadow(none);
  5815. transition:none;
  5816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5817. font-weight:400;
  5818. font-style:normal;
  5819. font-size:18px;
  5820. }
  5821. #u1469 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:504px;
  5825. top:552px;
  5826. width:73px;
  5827. height:25px;
  5828. display:flex;
  5829. transition:none;
  5830. transform-origin:50% 50%;
  5831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5832. font-weight:400;
  5833. font-style:normal;
  5834. font-size:18px;
  5835. }
  5836. #u1469 .text {
  5837. position:absolute;
  5838. align-self:center;
  5839. padding:0px 0px 0px 0px;
  5840. box-sizing:border-box;
  5841. width:100%;
  5842. }
  5843. #u1469_text {
  5844. border-width:0px;
  5845. white-space:nowrap;
  5846. text-transform:none;
  5847. }
  5848. #u1470_div {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:229px;
  5854. height:17px;
  5855. background:inherit;
  5856. background-color:rgba(255, 255, 255, 0);
  5857. border-left:0px;
  5858. border-top:0px;
  5859. border-right:0px;
  5860. border-radius:0px;
  5861. border-bottom-right-radius:0px;
  5862. border-bottom-left-radius:0px;
  5863. filter:drop-shadow(none);
  5864. transition:none;
  5865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5866. font-weight:400;
  5867. font-style:normal;
  5868. font-size:12px;
  5869. color:#7F7F7F;
  5870. }
  5871. #u1470 {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:504px;
  5875. top:582px;
  5876. width:229px;
  5877. height:17px;
  5878. display:flex;
  5879. transition:none;
  5880. transform-origin:50% 50%;
  5881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5882. font-weight:400;
  5883. font-style:normal;
  5884. font-size:12px;
  5885. color:#7F7F7F;
  5886. }
  5887. #u1470 .text {
  5888. position:absolute;
  5889. align-self:center;
  5890. padding:0px 0px 0px 0px;
  5891. box-sizing:border-box;
  5892. width:100%;
  5893. }
  5894. #u1470_text {
  5895. border-width:0px;
  5896. white-space:nowrap;
  5897. text-transform:none;
  5898. }
  5899. #u1471 {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:0px;
  5903. top:0px;
  5904. width:0px;
  5905. height:0px;
  5906. }
  5907. #u1472_div {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:240px;
  5913. height:80px;
  5914. background:inherit;
  5915. background-color:rgba(242, 242, 242, 1);
  5916. border-radius:0px;
  5917. filter:drop-shadow(none);
  5918. transition:none;
  5919. }
  5920. #u1472 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:153px;
  5924. top:536px;
  5925. width:240px;
  5926. height:80px;
  5927. display:flex;
  5928. transition:none;
  5929. transform-origin:50% 50%;
  5930. }
  5931. #u1472 .text {
  5932. position:absolute;
  5933. align-self:center;
  5934. padding:2px 2px 2px 2px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u1472_text {
  5939. border-width:0px;
  5940. word-wrap:break-word;
  5941. text-transform:none;
  5942. visibility:hidden;
  5943. }
  5944. #u1473 {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:169px;
  5948. top:549px;
  5949. width:50px;
  5950. height:53px;
  5951. display:flex;
  5952. transition:none;
  5953. }
  5954. #u1473 .text {
  5955. position:absolute;
  5956. align-self:center;
  5957. padding:2px 2px 2px 2px;
  5958. box-sizing:border-box;
  5959. width:100%;
  5960. }
  5961. #u1473_img {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:50px;
  5967. height:53px;
  5968. }
  5969. #u1473_text {
  5970. border-width:0px;
  5971. word-wrap:break-word;
  5972. text-transform:none;
  5973. visibility:hidden;
  5974. }
  5975. #u1474 {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:0px;
  5979. top:0px;
  5980. width:0px;
  5981. height:0px;
  5982. }
  5983. #u1475_div {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:0px;
  5987. top:0px;
  5988. width:73px;
  5989. height:25px;
  5990. background:inherit;
  5991. background-color:rgba(255, 255, 255, 0);
  5992. border-left:0px;
  5993. border-top:0px;
  5994. border-right:0px;
  5995. border-radius:0px;
  5996. border-bottom-right-radius:0px;
  5997. border-bottom-left-radius:0px;
  5998. filter:drop-shadow(none);
  5999. transition:none;
  6000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6001. font-weight:400;
  6002. font-style:normal;
  6003. font-size:18px;
  6004. }
  6005. #u1475 {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:234px;
  6009. top:552px;
  6010. width:73px;
  6011. height:25px;
  6012. display:flex;
  6013. transition:none;
  6014. transform-origin:50% 50%;
  6015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6016. font-weight:400;
  6017. font-style:normal;
  6018. font-size:18px;
  6019. }
  6020. #u1475 .text {
  6021. position:absolute;
  6022. align-self:center;
  6023. padding:0px 0px 0px 0px;
  6024. box-sizing:border-box;
  6025. width:100%;
  6026. }
  6027. #u1475_text {
  6028. border-width:0px;
  6029. white-space:nowrap;
  6030. text-transform:none;
  6031. }
  6032. #u1476_div {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:205px;
  6038. height:17px;
  6039. background:inherit;
  6040. background-color:rgba(255, 255, 255, 0);
  6041. border-left:0px;
  6042. border-top:0px;
  6043. border-right:0px;
  6044. border-radius:0px;
  6045. border-bottom-right-radius:0px;
  6046. border-bottom-left-radius:0px;
  6047. filter:drop-shadow(none);
  6048. transition:none;
  6049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:12px;
  6053. color:#7F7F7F;
  6054. }
  6055. #u1476 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:234px;
  6059. top:582px;
  6060. width:205px;
  6061. height:17px;
  6062. display:flex;
  6063. transition:none;
  6064. transform-origin:50% 50%;
  6065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:12px;
  6069. color:#7F7F7F;
  6070. }
  6071. #u1476 .text {
  6072. position:absolute;
  6073. align-self:center;
  6074. padding:0px 0px 0px 0px;
  6075. box-sizing:border-box;
  6076. width:100%;
  6077. }
  6078. #u1476_text {
  6079. border-width:0px;
  6080. white-space:nowrap;
  6081. text-transform:none;
  6082. }
  6083. #u1477 {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:0px;
  6087. top:0px;
  6088. width:0px;
  6089. height:0px;
  6090. }
  6091. #u1478_div {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:240px;
  6097. height:80px;
  6098. background:inherit;
  6099. background-color:rgba(242, 242, 242, 1);
  6100. border-radius:0px;
  6101. filter:drop-shadow(none);
  6102. transition:none;
  6103. }
  6104. #u1478 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:153px;
  6108. top:836px;
  6109. width:240px;
  6110. height:80px;
  6111. display:flex;
  6112. transition:none;
  6113. transform-origin:50% 50%;
  6114. }
  6115. #u1478 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:2px 2px 2px 2px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u1478_text {
  6123. border-width:0px;
  6124. word-wrap:break-word;
  6125. text-transform:none;
  6126. visibility:hidden;
  6127. }
  6128. #u1479 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:169px;
  6132. top:849px;
  6133. width:50px;
  6134. height:53px;
  6135. display:flex;
  6136. transition:none;
  6137. }
  6138. #u1479 .text {
  6139. position:absolute;
  6140. align-self:center;
  6141. padding:2px 2px 2px 2px;
  6142. box-sizing:border-box;
  6143. width:100%;
  6144. }
  6145. #u1479_img {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:50px;
  6151. height:53px;
  6152. }
  6153. #u1479_text {
  6154. border-width:0px;
  6155. word-wrap:break-word;
  6156. text-transform:none;
  6157. visibility:hidden;
  6158. }
  6159. #u1480 {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:0px;
  6163. top:0px;
  6164. width:0px;
  6165. height:0px;
  6166. }
  6167. #u1481_div {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:0px;
  6171. top:0px;
  6172. width:73px;
  6173. height:25px;
  6174. background:inherit;
  6175. background-color:rgba(255, 255, 255, 0);
  6176. border-left:0px;
  6177. border-top:0px;
  6178. border-right:0px;
  6179. border-radius:0px;
  6180. border-bottom-right-radius:0px;
  6181. border-bottom-left-radius:0px;
  6182. filter:drop-shadow(none);
  6183. transition:none;
  6184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6185. font-weight:400;
  6186. font-style:normal;
  6187. font-size:18px;
  6188. }
  6189. #u1481 {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:234px;
  6193. top:852px;
  6194. width:73px;
  6195. height:25px;
  6196. display:flex;
  6197. transition:none;
  6198. transform-origin:50% 50%;
  6199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6200. font-weight:400;
  6201. font-style:normal;
  6202. font-size:18px;
  6203. }
  6204. #u1481 .text {
  6205. position:absolute;
  6206. align-self:center;
  6207. padding:0px 0px 0px 0px;
  6208. box-sizing:border-box;
  6209. width:100%;
  6210. }
  6211. #u1481_text {
  6212. border-width:0px;
  6213. white-space:nowrap;
  6214. text-transform:none;
  6215. }
  6216. #u1482_div {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:0px;
  6220. top:0px;
  6221. width:97px;
  6222. height:17px;
  6223. background:inherit;
  6224. background-color:rgba(255, 255, 255, 0);
  6225. border-left:0px;
  6226. border-top:0px;
  6227. border-right:0px;
  6228. border-radius:0px;
  6229. border-bottom-right-radius:0px;
  6230. border-bottom-left-radius:0px;
  6231. filter:drop-shadow(none);
  6232. transition:none;
  6233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6234. font-weight:400;
  6235. font-style:normal;
  6236. font-size:12px;
  6237. color:#7F7F7F;
  6238. }
  6239. #u1482 {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:234px;
  6243. top:882px;
  6244. width:97px;
  6245. height:17px;
  6246. display:flex;
  6247. transition:none;
  6248. transform-origin:50% 50%;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:12px;
  6253. color:#7F7F7F;
  6254. }
  6255. #u1482 .text {
  6256. position:absolute;
  6257. align-self:center;
  6258. padding:0px 0px 0px 0px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u1482_text {
  6263. border-width:0px;
  6264. white-space:nowrap;
  6265. text-transform:none;
  6266. }
  6267. #u1483 {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:0px;
  6271. top:0px;
  6272. width:0px;
  6273. height:0px;
  6274. }
  6275. #u1484_div {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:0px;
  6280. width:240px;
  6281. height:80px;
  6282. background:inherit;
  6283. background-color:rgba(242, 242, 242, 1);
  6284. border-radius:0px;
  6285. filter:drop-shadow(none);
  6286. transition:none;
  6287. }
  6288. #u1484 {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:424px;
  6292. top:836px;
  6293. width:240px;
  6294. height:80px;
  6295. display:flex;
  6296. transition:none;
  6297. transform-origin:50% 50%;
  6298. }
  6299. #u1484 .text {
  6300. position:absolute;
  6301. align-self:center;
  6302. padding:2px 2px 2px 2px;
  6303. box-sizing:border-box;
  6304. width:100%;
  6305. }
  6306. #u1484_text {
  6307. border-width:0px;
  6308. word-wrap:break-word;
  6309. text-transform:none;
  6310. visibility:hidden;
  6311. }
  6312. #u1485 {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:440px;
  6316. top:849px;
  6317. width:50px;
  6318. height:53px;
  6319. display:flex;
  6320. transition:none;
  6321. }
  6322. #u1485 .text {
  6323. position:absolute;
  6324. align-self:center;
  6325. padding:2px 2px 2px 2px;
  6326. box-sizing:border-box;
  6327. width:100%;
  6328. }
  6329. #u1485_img {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:50px;
  6335. height:53px;
  6336. }
  6337. #u1485_text {
  6338. border-width:0px;
  6339. word-wrap:break-word;
  6340. text-transform:none;
  6341. visibility:hidden;
  6342. }
  6343. #u1486 {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:0px;
  6347. top:0px;
  6348. width:0px;
  6349. height:0px;
  6350. }
  6351. #u1487_div {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:0px;
  6355. top:0px;
  6356. width:73px;
  6357. height:25px;
  6358. background:inherit;
  6359. background-color:rgba(255, 255, 255, 0);
  6360. border-left:0px;
  6361. border-top:0px;
  6362. border-right:0px;
  6363. border-radius:0px;
  6364. border-bottom-right-radius:0px;
  6365. border-bottom-left-radius:0px;
  6366. filter:drop-shadow(none);
  6367. transition:none;
  6368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6369. font-weight:400;
  6370. font-style:normal;
  6371. font-size:18px;
  6372. }
  6373. #u1487 {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:505px;
  6377. top:852px;
  6378. width:73px;
  6379. height:25px;
  6380. display:flex;
  6381. transition:none;
  6382. transform-origin:50% 50%;
  6383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6384. font-weight:400;
  6385. font-style:normal;
  6386. font-size:18px;
  6387. }
  6388. #u1487 .text {
  6389. position:absolute;
  6390. align-self:center;
  6391. padding:0px 0px 0px 0px;
  6392. box-sizing:border-box;
  6393. width:100%;
  6394. }
  6395. #u1487_text {
  6396. border-width:0px;
  6397. white-space:nowrap;
  6398. text-transform:none;
  6399. }
  6400. #u1488_div {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:97px;
  6406. height:17px;
  6407. background:inherit;
  6408. background-color:rgba(255, 255, 255, 0);
  6409. border-left:0px;
  6410. border-top:0px;
  6411. border-right:0px;
  6412. border-radius:0px;
  6413. border-bottom-right-radius:0px;
  6414. border-bottom-left-radius:0px;
  6415. filter:drop-shadow(none);
  6416. transition:none;
  6417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6418. font-weight:400;
  6419. font-style:normal;
  6420. font-size:12px;
  6421. color:#7F7F7F;
  6422. }
  6423. #u1488 {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:505px;
  6427. top:882px;
  6428. width:97px;
  6429. height:17px;
  6430. display:flex;
  6431. transition:none;
  6432. transform-origin:50% 50%;
  6433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:12px;
  6437. color:#7F7F7F;
  6438. }
  6439. #u1488 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:0px 0px 0px 0px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u1488_text {
  6447. border-width:0px;
  6448. white-space:nowrap;
  6449. text-transform:none;
  6450. }
  6451. #u1489 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:0px;
  6457. height:0px;
  6458. }
  6459. #u1490_div {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:0px;
  6463. top:0px;
  6464. width:240px;
  6465. height:80px;
  6466. background:inherit;
  6467. background-color:rgba(242, 242, 242, 1);
  6468. border-radius:0px;
  6469. filter:drop-shadow(none);
  6470. transition:none;
  6471. }
  6472. #u1490 {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:964px;
  6476. top:736px;
  6477. width:240px;
  6478. height:80px;
  6479. display:flex;
  6480. transition:none;
  6481. transform-origin:50% 50%;
  6482. }
  6483. #u1490 .text {
  6484. position:absolute;
  6485. align-self:center;
  6486. padding:2px 2px 2px 2px;
  6487. box-sizing:border-box;
  6488. width:100%;
  6489. }
  6490. #u1490_text {
  6491. border-width:0px;
  6492. word-wrap:break-word;
  6493. text-transform:none;
  6494. visibility:hidden;
  6495. }
  6496. #u1491 {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:980px;
  6500. top:749px;
  6501. width:50px;
  6502. height:53px;
  6503. display:flex;
  6504. transition:none;
  6505. }
  6506. #u1491 .text {
  6507. position:absolute;
  6508. align-self:center;
  6509. padding:2px 2px 2px 2px;
  6510. box-sizing:border-box;
  6511. width:100%;
  6512. }
  6513. #u1491_img {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:50px;
  6519. height:53px;
  6520. }
  6521. #u1491_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. visibility:hidden;
  6526. }
  6527. #u1492 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:0px;
  6533. height:0px;
  6534. }
  6535. #u1493_div {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:0px;
  6540. width:73px;
  6541. height:25px;
  6542. background:inherit;
  6543. background-color:rgba(255, 255, 255, 0);
  6544. border-left:0px;
  6545. border-top:0px;
  6546. border-right:0px;
  6547. border-radius:0px;
  6548. border-bottom-right-radius:0px;
  6549. border-bottom-left-radius:0px;
  6550. filter:drop-shadow(none);
  6551. transition:none;
  6552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6553. font-weight:400;
  6554. font-style:normal;
  6555. font-size:18px;
  6556. }
  6557. #u1493 {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:1045px;
  6561. top:752px;
  6562. width:73px;
  6563. height:25px;
  6564. display:flex;
  6565. transition:none;
  6566. transform-origin:50% 50%;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:18px;
  6571. }
  6572. #u1493 .text {
  6573. position:absolute;
  6574. align-self:center;
  6575. padding:0px 0px 0px 0px;
  6576. box-sizing:border-box;
  6577. width:100%;
  6578. }
  6579. #u1493_text {
  6580. border-width:0px;
  6581. white-space:nowrap;
  6582. text-transform:none;
  6583. }
  6584. #u1494_div {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:0px;
  6588. top:0px;
  6589. width:133px;
  6590. height:17px;
  6591. background:inherit;
  6592. background-color:rgba(255, 255, 255, 0);
  6593. border-left:0px;
  6594. border-top:0px;
  6595. border-right:0px;
  6596. border-radius:0px;
  6597. border-bottom-right-radius:0px;
  6598. border-bottom-left-radius:0px;
  6599. filter:drop-shadow(none);
  6600. transition:none;
  6601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6602. font-weight:400;
  6603. font-style:normal;
  6604. font-size:12px;
  6605. color:#7F7F7F;
  6606. }
  6607. #u1494 {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:1045px;
  6611. top:782px;
  6612. width:133px;
  6613. height:17px;
  6614. display:flex;
  6615. transition:none;
  6616. transform-origin:50% 50%;
  6617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6618. font-weight:400;
  6619. font-style:normal;
  6620. font-size:12px;
  6621. color:#7F7F7F;
  6622. }
  6623. #u1494 .text {
  6624. position:absolute;
  6625. align-self:center;
  6626. padding:0px 0px 0px 0px;
  6627. box-sizing:border-box;
  6628. width:100%;
  6629. }
  6630. #u1494_text {
  6631. border-width:0px;
  6632. white-space:nowrap;
  6633. text-transform:none;
  6634. }
  6635. #u1495 {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:0px;
  6639. top:0px;
  6640. width:0px;
  6641. height:0px;
  6642. }
  6643. #u1496_div {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:240px;
  6649. height:80px;
  6650. background:inherit;
  6651. background-color:rgba(242, 242, 242, 1);
  6652. border-radius:0px;
  6653. filter:drop-shadow(none);
  6654. transition:none;
  6655. }
  6656. #u1496 {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:694px;
  6660. top:839px;
  6661. width:240px;
  6662. height:80px;
  6663. display:flex;
  6664. transition:none;
  6665. transform-origin:50% 50%;
  6666. }
  6667. #u1496 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:2px 2px 2px 2px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u1496_text {
  6675. border-width:0px;
  6676. word-wrap:break-word;
  6677. text-transform:none;
  6678. visibility:hidden;
  6679. }
  6680. #u1497 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:710px;
  6684. top:852px;
  6685. width:50px;
  6686. height:53px;
  6687. display:flex;
  6688. transition:none;
  6689. }
  6690. #u1497 .text {
  6691. position:absolute;
  6692. align-self:center;
  6693. padding:2px 2px 2px 2px;
  6694. box-sizing:border-box;
  6695. width:100%;
  6696. }
  6697. #u1497_img {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:50px;
  6703. height:53px;
  6704. }
  6705. #u1497_text {
  6706. border-width:0px;
  6707. word-wrap:break-word;
  6708. text-transform:none;
  6709. visibility:hidden;
  6710. }
  6711. #u1498 {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:0px;
  6715. top:0px;
  6716. width:0px;
  6717. height:0px;
  6718. }
  6719. #u1499_div {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:73px;
  6725. height:25px;
  6726. background:inherit;
  6727. background-color:rgba(255, 255, 255, 0);
  6728. border-left:0px;
  6729. border-top:0px;
  6730. border-right:0px;
  6731. border-radius:0px;
  6732. border-bottom-right-radius:0px;
  6733. border-bottom-left-radius:0px;
  6734. filter:drop-shadow(none);
  6735. transition:none;
  6736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6737. font-weight:400;
  6738. font-style:normal;
  6739. font-size:18px;
  6740. }
  6741. #u1499 {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:775px;
  6745. top:855px;
  6746. width:73px;
  6747. height:25px;
  6748. display:flex;
  6749. transition:none;
  6750. transform-origin:50% 50%;
  6751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6752. font-weight:400;
  6753. font-style:normal;
  6754. font-size:18px;
  6755. }
  6756. #u1499 .text {
  6757. position:absolute;
  6758. align-self:center;
  6759. padding:0px 0px 0px 0px;
  6760. box-sizing:border-box;
  6761. width:100%;
  6762. }
  6763. #u1499_text {
  6764. border-width:0px;
  6765. white-space:nowrap;
  6766. text-transform:none;
  6767. }
  6768. #u1500_div {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:0px;
  6772. top:0px;
  6773. width:133px;
  6774. height:17px;
  6775. background:inherit;
  6776. background-color:rgba(255, 255, 255, 0);
  6777. border-left:0px;
  6778. border-top:0px;
  6779. border-right:0px;
  6780. border-radius:0px;
  6781. border-bottom-right-radius:0px;
  6782. border-bottom-left-radius:0px;
  6783. filter:drop-shadow(none);
  6784. transition:none;
  6785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:12px;
  6789. color:#7F7F7F;
  6790. }
  6791. #u1500 {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:775px;
  6795. top:885px;
  6796. width:133px;
  6797. height:17px;
  6798. display:flex;
  6799. transition:none;
  6800. transform-origin:50% 50%;
  6801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6802. font-weight:400;
  6803. font-style:normal;
  6804. font-size:12px;
  6805. color:#7F7F7F;
  6806. }
  6807. #u1500 .text {
  6808. position:absolute;
  6809. align-self:center;
  6810. padding:0px 0px 0px 0px;
  6811. box-sizing:border-box;
  6812. width:100%;
  6813. }
  6814. #u1500_text {
  6815. border-width:0px;
  6816. white-space:nowrap;
  6817. text-transform:none;
  6818. }
  6819. #u1501 {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:0px;
  6823. top:0px;
  6824. width:0px;
  6825. height:0px;
  6826. }
  6827. #u1502_div {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:240px;
  6833. height:80px;
  6834. background:inherit;
  6835. background-color:rgba(242, 242, 242, 1);
  6836. border-radius:0px;
  6837. filter:drop-shadow(none);
  6838. transition:none;
  6839. }
  6840. #u1502 {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:965px;
  6844. top:828px;
  6845. width:240px;
  6846. height:80px;
  6847. display:flex;
  6848. transition:none;
  6849. transform-origin:50% 50%;
  6850. }
  6851. #u1502 .text {
  6852. position:absolute;
  6853. align-self:center;
  6854. padding:2px 2px 2px 2px;
  6855. box-sizing:border-box;
  6856. width:100%;
  6857. }
  6858. #u1502_text {
  6859. border-width:0px;
  6860. word-wrap:break-word;
  6861. text-transform:none;
  6862. visibility:hidden;
  6863. }
  6864. #u1503 {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:981px;
  6868. top:841px;
  6869. width:50px;
  6870. height:53px;
  6871. display:flex;
  6872. transition:none;
  6873. }
  6874. #u1503 .text {
  6875. position:absolute;
  6876. align-self:center;
  6877. padding:2px 2px 2px 2px;
  6878. box-sizing:border-box;
  6879. width:100%;
  6880. }
  6881. #u1503_img {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:0px;
  6885. top:0px;
  6886. width:50px;
  6887. height:53px;
  6888. }
  6889. #u1503_text {
  6890. border-width:0px;
  6891. word-wrap:break-word;
  6892. text-transform:none;
  6893. visibility:hidden;
  6894. }
  6895. #u1504 {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:0px;
  6899. top:0px;
  6900. width:0px;
  6901. height:0px;
  6902. }
  6903. #u1505_div {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:0px;
  6907. top:0px;
  6908. width:73px;
  6909. height:25px;
  6910. background:inherit;
  6911. background-color:rgba(255, 255, 255, 0);
  6912. border-left:0px;
  6913. border-top:0px;
  6914. border-right:0px;
  6915. border-radius:0px;
  6916. border-bottom-right-radius:0px;
  6917. border-bottom-left-radius:0px;
  6918. filter:drop-shadow(none);
  6919. transition:none;
  6920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6921. font-weight:400;
  6922. font-style:normal;
  6923. font-size:18px;
  6924. }
  6925. #u1505 {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:1046px;
  6929. top:844px;
  6930. width:73px;
  6931. height:25px;
  6932. display:flex;
  6933. transition:none;
  6934. transform-origin:50% 50%;
  6935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6936. font-weight:400;
  6937. font-style:normal;
  6938. font-size:18px;
  6939. }
  6940. #u1505 .text {
  6941. position:absolute;
  6942. align-self:center;
  6943. padding:0px 0px 0px 0px;
  6944. box-sizing:border-box;
  6945. width:100%;
  6946. }
  6947. #u1505_text {
  6948. border-width:0px;
  6949. white-space:nowrap;
  6950. text-transform:none;
  6951. }
  6952. #u1506_div {
  6953. border-width:0px;
  6954. position:absolute;
  6955. left:0px;
  6956. top:0px;
  6957. width:97px;
  6958. height:17px;
  6959. background:inherit;
  6960. background-color:rgba(255, 255, 255, 0);
  6961. border-left:0px;
  6962. border-top:0px;
  6963. border-right:0px;
  6964. border-radius:0px;
  6965. border-bottom-right-radius:0px;
  6966. border-bottom-left-radius:0px;
  6967. filter:drop-shadow(none);
  6968. transition:none;
  6969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6970. font-weight:400;
  6971. font-style:normal;
  6972. font-size:12px;
  6973. color:#7F7F7F;
  6974. }
  6975. #u1506 {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:1046px;
  6979. top:874px;
  6980. width:97px;
  6981. height:17px;
  6982. display:flex;
  6983. transition:none;
  6984. transform-origin:50% 50%;
  6985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:12px;
  6989. color:#7F7F7F;
  6990. }
  6991. #u1506 .text {
  6992. position:absolute;
  6993. align-self:center;
  6994. padding:0px 0px 0px 0px;
  6995. box-sizing:border-box;
  6996. width:100%;
  6997. }
  6998. #u1506_text {
  6999. border-width:0px;
  7000. white-space:nowrap;
  7001. text-transform:none;
  7002. }
  7003. #u1507 {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:0px;
  7009. height:0px;
  7010. }
  7011. #u1508_div {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:0px;
  7015. top:0px;
  7016. width:240px;
  7017. height:80px;
  7018. background:inherit;
  7019. background-color:rgba(242, 242, 242, 1);
  7020. border-radius:0px;
  7021. filter:drop-shadow(none);
  7022. transition:none;
  7023. }
  7024. #u1508 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:1236px;
  7028. top:736px;
  7029. width:240px;
  7030. height:80px;
  7031. display:flex;
  7032. transition:none;
  7033. transform-origin:50% 50%;
  7034. }
  7035. #u1508 .text {
  7036. position:absolute;
  7037. align-self:center;
  7038. padding:2px 2px 2px 2px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u1508_text {
  7043. border-width:0px;
  7044. word-wrap:break-word;
  7045. text-transform:none;
  7046. visibility:hidden;
  7047. }
  7048. #u1509 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:1252px;
  7052. top:749px;
  7053. width:50px;
  7054. height:53px;
  7055. display:flex;
  7056. transition:none;
  7057. }
  7058. #u1509 .text {
  7059. position:absolute;
  7060. align-self:center;
  7061. padding:2px 2px 2px 2px;
  7062. box-sizing:border-box;
  7063. width:100%;
  7064. }
  7065. #u1509_img {
  7066. border-width:0px;
  7067. position:absolute;
  7068. left:0px;
  7069. top:0px;
  7070. width:50px;
  7071. height:53px;
  7072. }
  7073. #u1509_text {
  7074. border-width:0px;
  7075. word-wrap:break-word;
  7076. text-transform:none;
  7077. visibility:hidden;
  7078. }
  7079. #u1510 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:0px;
  7083. top:0px;
  7084. width:0px;
  7085. height:0px;
  7086. }
  7087. #u1511_div {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:0px;
  7091. top:0px;
  7092. width:73px;
  7093. height:25px;
  7094. background:inherit;
  7095. background-color:rgba(255, 255, 255, 0);
  7096. border-left:0px;
  7097. border-top:0px;
  7098. border-right:0px;
  7099. border-radius:0px;
  7100. border-bottom-right-radius:0px;
  7101. border-bottom-left-radius:0px;
  7102. filter:drop-shadow(none);
  7103. transition:none;
  7104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:18px;
  7108. }
  7109. #u1511 {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:1317px;
  7113. top:752px;
  7114. width:73px;
  7115. height:25px;
  7116. display:flex;
  7117. transition:none;
  7118. transform-origin:50% 50%;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. font-size:18px;
  7123. }
  7124. #u1511 .text {
  7125. position:absolute;
  7126. align-self:center;
  7127. padding:0px 0px 0px 0px;
  7128. box-sizing:border-box;
  7129. width:100%;
  7130. }
  7131. #u1511_text {
  7132. border-width:0px;
  7133. white-space:nowrap;
  7134. text-transform:none;
  7135. }
  7136. #u1512_div {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:109px;
  7142. height:17px;
  7143. background:inherit;
  7144. background-color:rgba(255, 255, 255, 0);
  7145. border-left:0px;
  7146. border-top:0px;
  7147. border-right:0px;
  7148. border-radius:0px;
  7149. border-bottom-right-radius:0px;
  7150. border-bottom-left-radius:0px;
  7151. filter:drop-shadow(none);
  7152. transition:none;
  7153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7154. font-weight:400;
  7155. font-style:normal;
  7156. font-size:12px;
  7157. color:#7F7F7F;
  7158. }
  7159. #u1512 {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:1317px;
  7163. top:782px;
  7164. width:109px;
  7165. height:17px;
  7166. display:flex;
  7167. transition:none;
  7168. transform-origin:50% 50%;
  7169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7170. font-weight:400;
  7171. font-style:normal;
  7172. font-size:12px;
  7173. color:#7F7F7F;
  7174. }
  7175. #u1512 .text {
  7176. position:absolute;
  7177. align-self:center;
  7178. padding:0px 0px 0px 0px;
  7179. box-sizing:border-box;
  7180. width:100%;
  7181. }
  7182. #u1512_text {
  7183. border-width:0px;
  7184. white-space:nowrap;
  7185. text-transform:none;
  7186. }
  7187. #u1513 {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:0px;
  7193. height:0px;
  7194. }
  7195. #u1514_div {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:240px;
  7201. height:80px;
  7202. background:inherit;
  7203. background-color:rgba(242, 242, 242, 1);
  7204. border-radius:0px;
  7205. filter:drop-shadow(none);
  7206. transition:none;
  7207. }
  7208. #u1514 {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:1235px;
  7212. top:828px;
  7213. width:240px;
  7214. height:80px;
  7215. display:flex;
  7216. transition:none;
  7217. transform-origin:50% 50%;
  7218. }
  7219. #u1514 .text {
  7220. position:absolute;
  7221. align-self:center;
  7222. padding:2px 2px 2px 2px;
  7223. box-sizing:border-box;
  7224. width:100%;
  7225. }
  7226. #u1514_text {
  7227. border-width:0px;
  7228. word-wrap:break-word;
  7229. text-transform:none;
  7230. visibility:hidden;
  7231. }
  7232. #u1515 {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:1251px;
  7236. top:841px;
  7237. width:50px;
  7238. height:53px;
  7239. display:flex;
  7240. transition:none;
  7241. }
  7242. #u1515 .text {
  7243. position:absolute;
  7244. align-self:center;
  7245. padding:2px 2px 2px 2px;
  7246. box-sizing:border-box;
  7247. width:100%;
  7248. }
  7249. #u1515_img {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:0px;
  7253. top:0px;
  7254. width:50px;
  7255. height:53px;
  7256. }
  7257. #u1515_text {
  7258. border-width:0px;
  7259. word-wrap:break-word;
  7260. text-transform:none;
  7261. visibility:hidden;
  7262. }
  7263. #u1516 {
  7264. border-width:0px;
  7265. position:absolute;
  7266. left:0px;
  7267. top:0px;
  7268. width:0px;
  7269. height:0px;
  7270. }
  7271. #u1517_div {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:0px;
  7275. top:0px;
  7276. width:73px;
  7277. height:25px;
  7278. background:inherit;
  7279. background-color:rgba(255, 255, 255, 0);
  7280. border-left:0px;
  7281. border-top:0px;
  7282. border-right:0px;
  7283. border-radius:0px;
  7284. border-bottom-right-radius:0px;
  7285. border-bottom-left-radius:0px;
  7286. filter:drop-shadow(none);
  7287. transition:none;
  7288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7289. font-weight:400;
  7290. font-style:normal;
  7291. font-size:18px;
  7292. }
  7293. #u1517 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:1316px;
  7297. top:844px;
  7298. width:73px;
  7299. height:25px;
  7300. display:flex;
  7301. transition:none;
  7302. transform-origin:50% 50%;
  7303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7304. font-weight:400;
  7305. font-style:normal;
  7306. font-size:18px;
  7307. }
  7308. #u1517 .text {
  7309. position:absolute;
  7310. align-self:center;
  7311. padding:0px 0px 0px 0px;
  7312. box-sizing:border-box;
  7313. width:100%;
  7314. }
  7315. #u1517_text {
  7316. border-width:0px;
  7317. white-space:nowrap;
  7318. text-transform:none;
  7319. }
  7320. #u1518_div {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:217px;
  7326. height:17px;
  7327. background:inherit;
  7328. background-color:rgba(255, 255, 255, 0);
  7329. border-left:0px;
  7330. border-top:0px;
  7331. border-right:0px;
  7332. border-radius:0px;
  7333. border-bottom-right-radius:0px;
  7334. border-bottom-left-radius:0px;
  7335. filter:drop-shadow(none);
  7336. transition:none;
  7337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7338. font-weight:400;
  7339. font-style:normal;
  7340. font-size:12px;
  7341. color:#7F7F7F;
  7342. }
  7343. #u1518 {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:1316px;
  7347. top:874px;
  7348. width:217px;
  7349. height:17px;
  7350. display:flex;
  7351. transition:none;
  7352. transform-origin:50% 50%;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:12px;
  7357. color:#7F7F7F;
  7358. }
  7359. #u1518 .text {
  7360. position:absolute;
  7361. align-self:center;
  7362. padding:0px 0px 0px 0px;
  7363. box-sizing:border-box;
  7364. width:100%;
  7365. }
  7366. #u1518_text {
  7367. border-width:0px;
  7368. white-space:nowrap;
  7369. text-transform:none;
  7370. }
  7371. #u1519 {
  7372. border-width:0px;
  7373. position:absolute;
  7374. left:0px;
  7375. top:0px;
  7376. width:0px;
  7377. height:0px;
  7378. }
  7379. #u1520_div {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:0px;
  7383. top:0px;
  7384. width:240px;
  7385. height:80px;
  7386. background:inherit;
  7387. background-color:rgba(242, 242, 242, 1);
  7388. border-radius:0px;
  7389. filter:drop-shadow(none);
  7390. transition:none;
  7391. }
  7392. #u1520 {
  7393. border-width:0px;
  7394. position:absolute;
  7395. left:153px;
  7396. top:1036px;
  7397. width:240px;
  7398. height:80px;
  7399. display:flex;
  7400. transition:none;
  7401. transform-origin:50% 50%;
  7402. }
  7403. #u1520 .text {
  7404. position:absolute;
  7405. align-self:center;
  7406. padding:2px 2px 2px 2px;
  7407. box-sizing:border-box;
  7408. width:100%;
  7409. }
  7410. #u1520_text {
  7411. border-width:0px;
  7412. word-wrap:break-word;
  7413. text-transform:none;
  7414. visibility:hidden;
  7415. }
  7416. #u1521 {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:169px;
  7420. top:1049px;
  7421. width:50px;
  7422. height:53px;
  7423. display:flex;
  7424. transition:none;
  7425. }
  7426. #u1521 .text {
  7427. position:absolute;
  7428. align-self:center;
  7429. padding:2px 2px 2px 2px;
  7430. box-sizing:border-box;
  7431. width:100%;
  7432. }
  7433. #u1521_img {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:0px;
  7437. top:0px;
  7438. width:50px;
  7439. height:53px;
  7440. }
  7441. #u1521_text {
  7442. border-width:0px;
  7443. word-wrap:break-word;
  7444. text-transform:none;
  7445. visibility:hidden;
  7446. }
  7447. #u1522 {
  7448. border-width:0px;
  7449. position:absolute;
  7450. left:0px;
  7451. top:0px;
  7452. width:0px;
  7453. height:0px;
  7454. }
  7455. #u1523_div {
  7456. border-width:0px;
  7457. position:absolute;
  7458. left:0px;
  7459. top:0px;
  7460. width:73px;
  7461. height:25px;
  7462. background:inherit;
  7463. background-color:rgba(255, 255, 255, 0);
  7464. border-left:0px;
  7465. border-top:0px;
  7466. border-right:0px;
  7467. border-radius:0px;
  7468. border-bottom-right-radius:0px;
  7469. border-bottom-left-radius:0px;
  7470. filter:drop-shadow(none);
  7471. transition:none;
  7472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7473. font-weight:400;
  7474. font-style:normal;
  7475. font-size:18px;
  7476. }
  7477. #u1523 {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:234px;
  7481. top:1052px;
  7482. width:73px;
  7483. height:25px;
  7484. display:flex;
  7485. transition:none;
  7486. transform-origin:50% 50%;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:18px;
  7491. }
  7492. #u1523 .text {
  7493. position:absolute;
  7494. align-self:center;
  7495. padding:0px 0px 0px 0px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u1523_text {
  7500. border-width:0px;
  7501. white-space:nowrap;
  7502. text-transform:none;
  7503. }
  7504. #u1524_div {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:121px;
  7510. height:17px;
  7511. background:inherit;
  7512. background-color:rgba(255, 255, 255, 0);
  7513. border-left:0px;
  7514. border-top:0px;
  7515. border-right:0px;
  7516. border-radius:0px;
  7517. border-bottom-right-radius:0px;
  7518. border-bottom-left-radius:0px;
  7519. filter:drop-shadow(none);
  7520. transition:none;
  7521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7522. font-weight:400;
  7523. font-style:normal;
  7524. font-size:12px;
  7525. color:#7F7F7F;
  7526. }
  7527. #u1524 {
  7528. border-width:0px;
  7529. position:absolute;
  7530. left:234px;
  7531. top:1082px;
  7532. width:121px;
  7533. height:17px;
  7534. display:flex;
  7535. transition:none;
  7536. transform-origin:50% 50%;
  7537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7538. font-weight:400;
  7539. font-style:normal;
  7540. font-size:12px;
  7541. color:#7F7F7F;
  7542. }
  7543. #u1524 .text {
  7544. position:absolute;
  7545. align-self:center;
  7546. padding:0px 0px 0px 0px;
  7547. box-sizing:border-box;
  7548. width:100%;
  7549. }
  7550. #u1524_text {
  7551. border-width:0px;
  7552. white-space:nowrap;
  7553. text-transform:none;
  7554. }
  7555. #u1525 {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:0px;
  7559. top:0px;
  7560. width:0px;
  7561. height:0px;
  7562. }
  7563. #u1526_div {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:0px;
  7567. top:0px;
  7568. width:240px;
  7569. height:80px;
  7570. background:inherit;
  7571. background-color:rgba(242, 242, 242, 1);
  7572. border-radius:0px;
  7573. filter:drop-shadow(none);
  7574. transition:none;
  7575. }
  7576. #u1526 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:423px;
  7580. top:936px;
  7581. width:240px;
  7582. height:80px;
  7583. display:flex;
  7584. transition:none;
  7585. transform-origin:50% 50%;
  7586. }
  7587. #u1526 .text {
  7588. position:absolute;
  7589. align-self:center;
  7590. padding:2px 2px 2px 2px;
  7591. box-sizing:border-box;
  7592. width:100%;
  7593. }
  7594. #u1526_text {
  7595. border-width:0px;
  7596. word-wrap:break-word;
  7597. text-transform:none;
  7598. visibility:hidden;
  7599. }
  7600. #u1527 {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:439px;
  7604. top:949px;
  7605. width:50px;
  7606. height:53px;
  7607. display:flex;
  7608. transition:none;
  7609. }
  7610. #u1527 .text {
  7611. position:absolute;
  7612. align-self:center;
  7613. padding:2px 2px 2px 2px;
  7614. box-sizing:border-box;
  7615. width:100%;
  7616. }
  7617. #u1527_img {
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:0px;
  7621. top:0px;
  7622. width:50px;
  7623. height:53px;
  7624. }
  7625. #u1527_text {
  7626. border-width:0px;
  7627. word-wrap:break-word;
  7628. text-transform:none;
  7629. visibility:hidden;
  7630. }
  7631. #u1528 {
  7632. border-width:0px;
  7633. position:absolute;
  7634. left:0px;
  7635. top:0px;
  7636. width:0px;
  7637. height:0px;
  7638. }
  7639. #u1529_div {
  7640. border-width:0px;
  7641. position:absolute;
  7642. left:0px;
  7643. top:0px;
  7644. width:73px;
  7645. height:25px;
  7646. background:inherit;
  7647. background-color:rgba(255, 255, 255, 0);
  7648. border-left:0px;
  7649. border-top:0px;
  7650. border-right:0px;
  7651. border-radius:0px;
  7652. border-bottom-right-radius:0px;
  7653. border-bottom-left-radius:0px;
  7654. filter:drop-shadow(none);
  7655. transition:none;
  7656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7657. font-weight:400;
  7658. font-style:normal;
  7659. font-size:18px;
  7660. }
  7661. #u1529 {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:504px;
  7665. top:952px;
  7666. width:73px;
  7667. height:25px;
  7668. display:flex;
  7669. transition:none;
  7670. transform-origin:50% 50%;
  7671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7672. font-weight:400;
  7673. font-style:normal;
  7674. font-size:18px;
  7675. }
  7676. #u1529 .text {
  7677. position:absolute;
  7678. align-self:center;
  7679. padding:0px 0px 0px 0px;
  7680. box-sizing:border-box;
  7681. width:100%;
  7682. }
  7683. #u1529_text {
  7684. border-width:0px;
  7685. white-space:nowrap;
  7686. text-transform:none;
  7687. }
  7688. #u1530_div {
  7689. border-width:0px;
  7690. position:absolute;
  7691. left:0px;
  7692. top:0px;
  7693. width:109px;
  7694. height:17px;
  7695. background:inherit;
  7696. background-color:rgba(255, 255, 255, 0);
  7697. border-left:0px;
  7698. border-top:0px;
  7699. border-right:0px;
  7700. border-radius:0px;
  7701. border-bottom-right-radius:0px;
  7702. border-bottom-left-radius:0px;
  7703. filter:drop-shadow(none);
  7704. transition:none;
  7705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7706. font-weight:400;
  7707. font-style:normal;
  7708. font-size:12px;
  7709. color:#7F7F7F;
  7710. }
  7711. #u1530 {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:504px;
  7715. top:982px;
  7716. width:109px;
  7717. height:17px;
  7718. display:flex;
  7719. transition:none;
  7720. transform-origin:50% 50%;
  7721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7722. font-weight:400;
  7723. font-style:normal;
  7724. font-size:12px;
  7725. color:#7F7F7F;
  7726. }
  7727. #u1530 .text {
  7728. position:absolute;
  7729. align-self:center;
  7730. padding:0px 0px 0px 0px;
  7731. box-sizing:border-box;
  7732. width:100%;
  7733. }
  7734. #u1530_text {
  7735. border-width:0px;
  7736. white-space:nowrap;
  7737. text-transform:none;
  7738. }
  7739. #u1531 {
  7740. border-width:0px;
  7741. position:absolute;
  7742. left:0px;
  7743. top:0px;
  7744. width:0px;
  7745. height:0px;
  7746. }
  7747. #u1532_div {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:0px;
  7752. width:240px;
  7753. height:80px;
  7754. background:inherit;
  7755. background-color:rgba(242, 242, 242, 1);
  7756. border-radius:0px;
  7757. filter:drop-shadow(none);
  7758. transition:none;
  7759. }
  7760. #u1532 {
  7761. border-width:0px;
  7762. position:absolute;
  7763. left:423px;
  7764. top:1036px;
  7765. width:240px;
  7766. height:80px;
  7767. display:flex;
  7768. transition:none;
  7769. transform-origin:50% 50%;
  7770. }
  7771. #u1532 .text {
  7772. position:absolute;
  7773. align-self:center;
  7774. padding:2px 2px 2px 2px;
  7775. box-sizing:border-box;
  7776. width:100%;
  7777. }
  7778. #u1532_text {
  7779. border-width:0px;
  7780. word-wrap:break-word;
  7781. text-transform:none;
  7782. visibility:hidden;
  7783. }
  7784. #u1533 {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:439px;
  7788. top:1049px;
  7789. width:50px;
  7790. height:53px;
  7791. display:flex;
  7792. transition:none;
  7793. }
  7794. #u1533 .text {
  7795. position:absolute;
  7796. align-self:center;
  7797. padding:2px 2px 2px 2px;
  7798. box-sizing:border-box;
  7799. width:100%;
  7800. }
  7801. #u1533_img {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:0px;
  7805. top:0px;
  7806. width:50px;
  7807. height:53px;
  7808. }
  7809. #u1533_text {
  7810. border-width:0px;
  7811. word-wrap:break-word;
  7812. text-transform:none;
  7813. visibility:hidden;
  7814. }
  7815. #u1534 {
  7816. border-width:0px;
  7817. position:absolute;
  7818. left:0px;
  7819. top:0px;
  7820. width:0px;
  7821. height:0px;
  7822. }
  7823. #u1535_div {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:0px;
  7827. top:0px;
  7828. width:73px;
  7829. height:25px;
  7830. background:inherit;
  7831. background-color:rgba(255, 255, 255, 0);
  7832. border-left:0px;
  7833. border-top:0px;
  7834. border-right:0px;
  7835. border-radius:0px;
  7836. border-bottom-right-radius:0px;
  7837. border-bottom-left-radius:0px;
  7838. filter:drop-shadow(none);
  7839. transition:none;
  7840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7841. font-weight:400;
  7842. font-style:normal;
  7843. font-size:18px;
  7844. }
  7845. #u1535 {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:504px;
  7849. top:1052px;
  7850. width:73px;
  7851. height:25px;
  7852. display:flex;
  7853. transition:none;
  7854. transform-origin:50% 50%;
  7855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7856. font-weight:400;
  7857. font-style:normal;
  7858. font-size:18px;
  7859. }
  7860. #u1535 .text {
  7861. position:absolute;
  7862. align-self:center;
  7863. padding:0px 0px 0px 0px;
  7864. box-sizing:border-box;
  7865. width:100%;
  7866. }
  7867. #u1535_text {
  7868. border-width:0px;
  7869. white-space:nowrap;
  7870. text-transform:none;
  7871. }
  7872. #u1536_div {
  7873. border-width:0px;
  7874. position:absolute;
  7875. left:0px;
  7876. top:0px;
  7877. width:169px;
  7878. height:17px;
  7879. background:inherit;
  7880. background-color:rgba(255, 255, 255, 0);
  7881. border-left:0px;
  7882. border-top:0px;
  7883. border-right:0px;
  7884. border-radius:0px;
  7885. border-bottom-right-radius:0px;
  7886. border-bottom-left-radius:0px;
  7887. filter:drop-shadow(none);
  7888. transition:none;
  7889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7890. font-weight:400;
  7891. font-style:normal;
  7892. font-size:12px;
  7893. color:#7F7F7F;
  7894. }
  7895. #u1536 {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:504px;
  7899. top:1082px;
  7900. width:169px;
  7901. height:17px;
  7902. display:flex;
  7903. transition:none;
  7904. transform-origin:50% 50%;
  7905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7906. font-weight:400;
  7907. font-style:normal;
  7908. font-size:12px;
  7909. color:#7F7F7F;
  7910. }
  7911. #u1536 .text {
  7912. position:absolute;
  7913. align-self:center;
  7914. padding:0px 0px 0px 0px;
  7915. box-sizing:border-box;
  7916. width:100%;
  7917. }
  7918. #u1536_text {
  7919. border-width:0px;
  7920. white-space:nowrap;
  7921. text-transform:none;
  7922. }
  7923. #u1537 {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:0px;
  7927. top:0px;
  7928. width:0px;
  7929. height:0px;
  7930. }
  7931. #u1538_div {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:0px;
  7935. top:0px;
  7936. width:240px;
  7937. height:80px;
  7938. background:inherit;
  7939. background-color:rgba(242, 242, 242, 1);
  7940. border-radius:0px;
  7941. filter:drop-shadow(none);
  7942. transition:none;
  7943. }
  7944. #u1538 {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:694px;
  7948. top:1036px;
  7949. width:240px;
  7950. height:80px;
  7951. display:flex;
  7952. transition:none;
  7953. transform-origin:50% 50%;
  7954. }
  7955. #u1538 .text {
  7956. position:absolute;
  7957. align-self:center;
  7958. padding:2px 2px 2px 2px;
  7959. box-sizing:border-box;
  7960. width:100%;
  7961. }
  7962. #u1538_text {
  7963. border-width:0px;
  7964. word-wrap:break-word;
  7965. text-transform:none;
  7966. visibility:hidden;
  7967. }
  7968. #u1539 {
  7969. border-width:0px;
  7970. position:absolute;
  7971. left:710px;
  7972. top:1049px;
  7973. width:50px;
  7974. height:53px;
  7975. display:flex;
  7976. transition:none;
  7977. }
  7978. #u1539 .text {
  7979. position:absolute;
  7980. align-self:center;
  7981. padding:2px 2px 2px 2px;
  7982. box-sizing:border-box;
  7983. width:100%;
  7984. }
  7985. #u1539_img {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:0px;
  7989. top:0px;
  7990. width:50px;
  7991. height:53px;
  7992. }
  7993. #u1539_text {
  7994. border-width:0px;
  7995. word-wrap:break-word;
  7996. text-transform:none;
  7997. visibility:hidden;
  7998. }
  7999. #u1540 {
  8000. border-width:0px;
  8001. position:absolute;
  8002. left:0px;
  8003. top:0px;
  8004. width:0px;
  8005. height:0px;
  8006. }
  8007. #u1541_div {
  8008. border-width:0px;
  8009. position:absolute;
  8010. left:0px;
  8011. top:0px;
  8012. width:73px;
  8013. height:25px;
  8014. background:inherit;
  8015. background-color:rgba(255, 255, 255, 0);
  8016. border-left:0px;
  8017. border-top:0px;
  8018. border-right:0px;
  8019. border-radius:0px;
  8020. border-bottom-right-radius:0px;
  8021. border-bottom-left-radius:0px;
  8022. filter:drop-shadow(none);
  8023. transition:none;
  8024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8025. font-weight:400;
  8026. font-style:normal;
  8027. font-size:18px;
  8028. }
  8029. #u1541 {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:775px;
  8033. top:1052px;
  8034. width:73px;
  8035. height:25px;
  8036. display:flex;
  8037. transition:none;
  8038. transform-origin:50% 50%;
  8039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8040. font-weight:400;
  8041. font-style:normal;
  8042. font-size:18px;
  8043. }
  8044. #u1541 .text {
  8045. position:absolute;
  8046. align-self:center;
  8047. padding:0px 0px 0px 0px;
  8048. box-sizing:border-box;
  8049. width:100%;
  8050. }
  8051. #u1541_text {
  8052. border-width:0px;
  8053. white-space:nowrap;
  8054. text-transform:none;
  8055. }
  8056. #u1542_div {
  8057. border-width:0px;
  8058. position:absolute;
  8059. left:0px;
  8060. top:0px;
  8061. width:169px;
  8062. height:17px;
  8063. background:inherit;
  8064. background-color:rgba(255, 255, 255, 0);
  8065. border-left:0px;
  8066. border-top:0px;
  8067. border-right:0px;
  8068. border-radius:0px;
  8069. border-bottom-right-radius:0px;
  8070. border-bottom-left-radius:0px;
  8071. filter:drop-shadow(none);
  8072. transition:none;
  8073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8074. font-weight:400;
  8075. font-style:normal;
  8076. font-size:12px;
  8077. color:#7F7F7F;
  8078. }
  8079. #u1542 {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:775px;
  8083. top:1082px;
  8084. width:169px;
  8085. height:17px;
  8086. display:flex;
  8087. transition:none;
  8088. transform-origin:50% 50%;
  8089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8090. font-weight:400;
  8091. font-style:normal;
  8092. font-size:12px;
  8093. color:#7F7F7F;
  8094. }
  8095. #u1542 .text {
  8096. position:absolute;
  8097. align-self:center;
  8098. padding:0px 0px 0px 0px;
  8099. box-sizing:border-box;
  8100. width:100%;
  8101. }
  8102. #u1542_text {
  8103. border-width:0px;
  8104. white-space:nowrap;
  8105. text-transform:none;
  8106. }
  8107. #u1543 {
  8108. border-width:0px;
  8109. position:absolute;
  8110. left:0px;
  8111. top:0px;
  8112. width:0px;
  8113. height:0px;
  8114. }
  8115. #u1544_div {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:0px;
  8119. top:0px;
  8120. width:240px;
  8121. height:80px;
  8122. background:inherit;
  8123. background-color:rgba(242, 242, 242, 1);
  8124. border-radius:0px;
  8125. filter:drop-shadow(none);
  8126. transition:none;
  8127. }
  8128. #u1544 {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:964px;
  8132. top:936px;
  8133. width:240px;
  8134. height:80px;
  8135. display:flex;
  8136. transition:none;
  8137. transform-origin:50% 50%;
  8138. }
  8139. #u1544 .text {
  8140. position:absolute;
  8141. align-self:center;
  8142. padding:2px 2px 2px 2px;
  8143. box-sizing:border-box;
  8144. width:100%;
  8145. }
  8146. #u1544_text {
  8147. border-width:0px;
  8148. word-wrap:break-word;
  8149. text-transform:none;
  8150. visibility:hidden;
  8151. }
  8152. #u1545 {
  8153. border-width:0px;
  8154. position:absolute;
  8155. left:980px;
  8156. top:949px;
  8157. width:50px;
  8158. height:53px;
  8159. display:flex;
  8160. transition:none;
  8161. }
  8162. #u1545 .text {
  8163. position:absolute;
  8164. align-self:center;
  8165. padding:2px 2px 2px 2px;
  8166. box-sizing:border-box;
  8167. width:100%;
  8168. }
  8169. #u1545_img {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:0px;
  8173. top:0px;
  8174. width:50px;
  8175. height:53px;
  8176. }
  8177. #u1545_text {
  8178. border-width:0px;
  8179. word-wrap:break-word;
  8180. text-transform:none;
  8181. visibility:hidden;
  8182. }
  8183. #u1546 {
  8184. border-width:0px;
  8185. position:absolute;
  8186. left:0px;
  8187. top:0px;
  8188. width:0px;
  8189. height:0px;
  8190. }
  8191. #u1547_div {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:0px;
  8195. top:0px;
  8196. width:73px;
  8197. height:25px;
  8198. background:inherit;
  8199. background-color:rgba(255, 255, 255, 0);
  8200. border-left:0px;
  8201. border-top:0px;
  8202. border-right:0px;
  8203. border-radius:0px;
  8204. border-bottom-right-radius:0px;
  8205. border-bottom-left-radius:0px;
  8206. filter:drop-shadow(none);
  8207. transition:none;
  8208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:18px;
  8212. }
  8213. #u1547 {
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:1045px;
  8217. top:952px;
  8218. width:73px;
  8219. height:25px;
  8220. display:flex;
  8221. transition:none;
  8222. transform-origin:50% 50%;
  8223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8224. font-weight:400;
  8225. font-style:normal;
  8226. font-size:18px;
  8227. }
  8228. #u1547 .text {
  8229. position:absolute;
  8230. align-self:center;
  8231. padding:0px 0px 0px 0px;
  8232. box-sizing:border-box;
  8233. width:100%;
  8234. }
  8235. #u1547_text {
  8236. border-width:0px;
  8237. white-space:nowrap;
  8238. text-transform:none;
  8239. }
  8240. #u1548_div {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:0px;
  8244. top:0px;
  8245. width:205px;
  8246. height:17px;
  8247. background:inherit;
  8248. background-color:rgba(255, 255, 255, 0);
  8249. border-left:0px;
  8250. border-top:0px;
  8251. border-right:0px;
  8252. border-radius:0px;
  8253. border-bottom-right-radius:0px;
  8254. border-bottom-left-radius:0px;
  8255. filter:drop-shadow(none);
  8256. transition:none;
  8257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8258. font-weight:400;
  8259. font-style:normal;
  8260. font-size:12px;
  8261. color:#7F7F7F;
  8262. }
  8263. #u1548 {
  8264. border-width:0px;
  8265. position:absolute;
  8266. left:1045px;
  8267. top:982px;
  8268. width:205px;
  8269. height:17px;
  8270. display:flex;
  8271. transition:none;
  8272. transform-origin:50% 50%;
  8273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8274. font-weight:400;
  8275. font-style:normal;
  8276. font-size:12px;
  8277. color:#7F7F7F;
  8278. }
  8279. #u1548 .text {
  8280. position:absolute;
  8281. align-self:center;
  8282. padding:0px 0px 0px 0px;
  8283. box-sizing:border-box;
  8284. width:100%;
  8285. }
  8286. #u1548_text {
  8287. border-width:0px;
  8288. white-space:nowrap;
  8289. text-transform:none;
  8290. }
  8291. #u1549 {
  8292. border-width:0px;
  8293. position:absolute;
  8294. left:0px;
  8295. top:0px;
  8296. width:0px;
  8297. height:0px;
  8298. }
  8299. #u1550_div {
  8300. border-width:0px;
  8301. position:absolute;
  8302. left:0px;
  8303. top:0px;
  8304. width:240px;
  8305. height:80px;
  8306. background:inherit;
  8307. background-color:rgba(242, 242, 242, 1);
  8308. border-radius:0px;
  8309. filter:drop-shadow(none);
  8310. transition:none;
  8311. }
  8312. #u1550 {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:423px;
  8316. top:736px;
  8317. width:240px;
  8318. height:80px;
  8319. display:flex;
  8320. transition:none;
  8321. transform-origin:50% 50%;
  8322. }
  8323. #u1550 .text {
  8324. position:absolute;
  8325. align-self:center;
  8326. padding:2px 2px 2px 2px;
  8327. box-sizing:border-box;
  8328. width:100%;
  8329. }
  8330. #u1550_text {
  8331. border-width:0px;
  8332. word-wrap:break-word;
  8333. text-transform:none;
  8334. visibility:hidden;
  8335. }
  8336. #u1551 {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:439px;
  8340. top:749px;
  8341. width:50px;
  8342. height:53px;
  8343. display:flex;
  8344. transition:none;
  8345. }
  8346. #u1551 .text {
  8347. position:absolute;
  8348. align-self:center;
  8349. padding:2px 2px 2px 2px;
  8350. box-sizing:border-box;
  8351. width:100%;
  8352. }
  8353. #u1551_img {
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:0px;
  8357. top:0px;
  8358. width:50px;
  8359. height:53px;
  8360. }
  8361. #u1551_text {
  8362. border-width:0px;
  8363. word-wrap:break-word;
  8364. text-transform:none;
  8365. visibility:hidden;
  8366. }
  8367. #u1552 {
  8368. border-width:0px;
  8369. position:absolute;
  8370. left:0px;
  8371. top:0px;
  8372. width:0px;
  8373. height:0px;
  8374. }
  8375. #u1553_div {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:0px;
  8379. top:0px;
  8380. width:73px;
  8381. height:25px;
  8382. background:inherit;
  8383. background-color:rgba(255, 255, 255, 0);
  8384. border-left:0px;
  8385. border-top:0px;
  8386. border-right:0px;
  8387. border-radius:0px;
  8388. border-bottom-right-radius:0px;
  8389. border-bottom-left-radius:0px;
  8390. filter:drop-shadow(none);
  8391. transition:none;
  8392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8393. font-weight:400;
  8394. font-style:normal;
  8395. font-size:18px;
  8396. }
  8397. #u1553 {
  8398. border-width:0px;
  8399. position:absolute;
  8400. left:504px;
  8401. top:752px;
  8402. width:73px;
  8403. height:25px;
  8404. display:flex;
  8405. transition:none;
  8406. transform-origin:50% 50%;
  8407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8408. font-weight:400;
  8409. font-style:normal;
  8410. font-size:18px;
  8411. }
  8412. #u1553 .text {
  8413. position:absolute;
  8414. align-self:center;
  8415. padding:0px 0px 0px 0px;
  8416. box-sizing:border-box;
  8417. width:100%;
  8418. }
  8419. #u1553_text {
  8420. border-width:0px;
  8421. white-space:nowrap;
  8422. text-transform:none;
  8423. }
  8424. #u1554_div {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:145px;
  8430. height:17px;
  8431. background:inherit;
  8432. background-color:rgba(255, 255, 255, 0);
  8433. border-left:0px;
  8434. border-top:0px;
  8435. border-right:0px;
  8436. border-radius:0px;
  8437. border-bottom-right-radius:0px;
  8438. border-bottom-left-radius:0px;
  8439. filter:drop-shadow(none);
  8440. transition:none;
  8441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8442. font-weight:400;
  8443. font-style:normal;
  8444. font-size:12px;
  8445. color:#7F7F7F;
  8446. }
  8447. #u1554 {
  8448. border-width:0px;
  8449. position:absolute;
  8450. left:504px;
  8451. top:782px;
  8452. width:145px;
  8453. height:17px;
  8454. display:flex;
  8455. transition:none;
  8456. transform-origin:50% 50%;
  8457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8458. font-weight:400;
  8459. font-style:normal;
  8460. font-size:12px;
  8461. color:#7F7F7F;
  8462. }
  8463. #u1554 .text {
  8464. position:absolute;
  8465. align-self:center;
  8466. padding:0px 0px 0px 0px;
  8467. box-sizing:border-box;
  8468. width:100%;
  8469. }
  8470. #u1554_text {
  8471. border-width:0px;
  8472. white-space:nowrap;
  8473. text-transform:none;
  8474. }
  8475. #u1555 {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:0px;
  8479. top:0px;
  8480. width:0px;
  8481. height:0px;
  8482. }
  8483. #u1556_div {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:0px;
  8487. top:0px;
  8488. width:240px;
  8489. height:80px;
  8490. background:inherit;
  8491. background-color:rgba(242, 242, 242, 1);
  8492. border-radius:0px;
  8493. filter:drop-shadow(none);
  8494. transition:none;
  8495. }
  8496. #u1556 {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:693px;
  8500. top:736px;
  8501. width:240px;
  8502. height:80px;
  8503. display:flex;
  8504. transition:none;
  8505. transform-origin:50% 50%;
  8506. }
  8507. #u1556 .text {
  8508. position:absolute;
  8509. align-self:center;
  8510. padding:2px 2px 2px 2px;
  8511. box-sizing:border-box;
  8512. width:100%;
  8513. }
  8514. #u1556_text {
  8515. border-width:0px;
  8516. word-wrap:break-word;
  8517. text-transform:none;
  8518. visibility:hidden;
  8519. }
  8520. #u1557 {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:709px;
  8524. top:749px;
  8525. width:50px;
  8526. height:53px;
  8527. display:flex;
  8528. transition:none;
  8529. }
  8530. #u1557 .text {
  8531. position:absolute;
  8532. align-self:center;
  8533. padding:2px 2px 2px 2px;
  8534. box-sizing:border-box;
  8535. width:100%;
  8536. }
  8537. #u1557_img {
  8538. border-width:0px;
  8539. position:absolute;
  8540. left:0px;
  8541. top:0px;
  8542. width:50px;
  8543. height:53px;
  8544. }
  8545. #u1557_text {
  8546. border-width:0px;
  8547. word-wrap:break-word;
  8548. text-transform:none;
  8549. visibility:hidden;
  8550. }
  8551. #u1558 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:0px;
  8555. top:0px;
  8556. width:0px;
  8557. height:0px;
  8558. }
  8559. #u1559_div {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:0px;
  8563. top:0px;
  8564. width:73px;
  8565. height:25px;
  8566. background:inherit;
  8567. background-color:rgba(255, 255, 255, 0);
  8568. border-left:0px;
  8569. border-top:0px;
  8570. border-right:0px;
  8571. border-radius:0px;
  8572. border-bottom-right-radius:0px;
  8573. border-bottom-left-radius:0px;
  8574. filter:drop-shadow(none);
  8575. transition:none;
  8576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8577. font-weight:400;
  8578. font-style:normal;
  8579. font-size:18px;
  8580. }
  8581. #u1559 {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:774px;
  8585. top:752px;
  8586. width:73px;
  8587. height:25px;
  8588. display:flex;
  8589. transition:none;
  8590. transform-origin:50% 50%;
  8591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8592. font-weight:400;
  8593. font-style:normal;
  8594. font-size:18px;
  8595. }
  8596. #u1559 .text {
  8597. position:absolute;
  8598. align-self:center;
  8599. padding:0px 0px 0px 0px;
  8600. box-sizing:border-box;
  8601. width:100%;
  8602. }
  8603. #u1559_text {
  8604. border-width:0px;
  8605. white-space:nowrap;
  8606. text-transform:none;
  8607. }
  8608. #u1560_div {
  8609. border-width:0px;
  8610. position:absolute;
  8611. left:0px;
  8612. top:0px;
  8613. width:241px;
  8614. height:17px;
  8615. background:inherit;
  8616. background-color:rgba(255, 255, 255, 0);
  8617. border-left:0px;
  8618. border-top:0px;
  8619. border-right:0px;
  8620. border-radius:0px;
  8621. border-bottom-right-radius:0px;
  8622. border-bottom-left-radius:0px;
  8623. filter:drop-shadow(none);
  8624. transition:none;
  8625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8626. font-weight:400;
  8627. font-style:normal;
  8628. font-size:12px;
  8629. color:#7F7F7F;
  8630. }
  8631. #u1560 {
  8632. border-width:0px;
  8633. position:absolute;
  8634. left:774px;
  8635. top:782px;
  8636. width:241px;
  8637. height:17px;
  8638. display:flex;
  8639. transition:none;
  8640. transform-origin:50% 50%;
  8641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8642. font-weight:400;
  8643. font-style:normal;
  8644. font-size:12px;
  8645. color:#7F7F7F;
  8646. }
  8647. #u1560 .text {
  8648. position:absolute;
  8649. align-self:center;
  8650. padding:0px 0px 0px 0px;
  8651. box-sizing:border-box;
  8652. width:100%;
  8653. }
  8654. #u1560_text {
  8655. border-width:0px;
  8656. white-space:nowrap;
  8657. text-transform:none;
  8658. }
  8659. #u1561 {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:0px;
  8663. top:0px;
  8664. width:0px;
  8665. height:0px;
  8666. }
  8667. #u1562_div {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:0px;
  8671. top:0px;
  8672. width:240px;
  8673. height:80px;
  8674. background:inherit;
  8675. background-color:rgba(242, 242, 242, 1);
  8676. border-radius:0px;
  8677. filter:drop-shadow(none);
  8678. transition:none;
  8679. }
  8680. #u1562 {
  8681. border-width:0px;
  8682. position:absolute;
  8683. left:153px;
  8684. top:736px;
  8685. width:240px;
  8686. height:80px;
  8687. display:flex;
  8688. transition:none;
  8689. transform-origin:50% 50%;
  8690. }
  8691. #u1562 .text {
  8692. position:absolute;
  8693. align-self:center;
  8694. padding:2px 2px 2px 2px;
  8695. box-sizing:border-box;
  8696. width:100%;
  8697. }
  8698. #u1562_text {
  8699. border-width:0px;
  8700. word-wrap:break-word;
  8701. text-transform:none;
  8702. visibility:hidden;
  8703. }
  8704. #u1563 {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:169px;
  8708. top:749px;
  8709. width:50px;
  8710. height:53px;
  8711. display:flex;
  8712. transition:none;
  8713. }
  8714. #u1563 .text {
  8715. position:absolute;
  8716. align-self:center;
  8717. padding:2px 2px 2px 2px;
  8718. box-sizing:border-box;
  8719. width:100%;
  8720. }
  8721. #u1563_img {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:0px;
  8725. top:0px;
  8726. width:50px;
  8727. height:53px;
  8728. }
  8729. #u1563_text {
  8730. border-width:0px;
  8731. word-wrap:break-word;
  8732. text-transform:none;
  8733. visibility:hidden;
  8734. }
  8735. #u1564 {
  8736. border-width:0px;
  8737. position:absolute;
  8738. left:0px;
  8739. top:0px;
  8740. width:0px;
  8741. height:0px;
  8742. }
  8743. #u1565_div {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:0px;
  8747. top:0px;
  8748. width:91px;
  8749. height:25px;
  8750. background:inherit;
  8751. background-color:rgba(255, 255, 255, 0);
  8752. border-left:0px;
  8753. border-top:0px;
  8754. border-right:0px;
  8755. border-radius:0px;
  8756. border-bottom-right-radius:0px;
  8757. border-bottom-left-radius:0px;
  8758. filter:drop-shadow(none);
  8759. transition:none;
  8760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8761. font-weight:400;
  8762. font-style:normal;
  8763. font-size:18px;
  8764. }
  8765. #u1565 {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:234px;
  8769. top:752px;
  8770. width:91px;
  8771. height:25px;
  8772. display:flex;
  8773. transition:none;
  8774. transform-origin:50% 50%;
  8775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8776. font-weight:400;
  8777. font-style:normal;
  8778. font-size:18px;
  8779. }
  8780. #u1565 .text {
  8781. position:absolute;
  8782. align-self:center;
  8783. padding:0px 0px 0px 0px;
  8784. box-sizing:border-box;
  8785. width:100%;
  8786. }
  8787. #u1565_text {
  8788. border-width:0px;
  8789. white-space:nowrap;
  8790. text-transform:none;
  8791. }
  8792. #u1566_div {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:0px;
  8796. top:0px;
  8797. width:145px;
  8798. height:17px;
  8799. background:inherit;
  8800. background-color:rgba(255, 255, 255, 0);
  8801. border-left:0px;
  8802. border-top:0px;
  8803. border-right:0px;
  8804. border-radius:0px;
  8805. border-bottom-right-radius:0px;
  8806. border-bottom-left-radius:0px;
  8807. filter:drop-shadow(none);
  8808. transition:none;
  8809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8810. font-weight:400;
  8811. font-style:normal;
  8812. font-size:12px;
  8813. color:#7F7F7F;
  8814. }
  8815. #u1566 {
  8816. border-width:0px;
  8817. position:absolute;
  8818. left:234px;
  8819. top:782px;
  8820. width:145px;
  8821. height:17px;
  8822. display:flex;
  8823. transition:none;
  8824. transform-origin:50% 50%;
  8825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8826. font-weight:400;
  8827. font-style:normal;
  8828. font-size:12px;
  8829. color:#7F7F7F;
  8830. }
  8831. #u1566 .text {
  8832. position:absolute;
  8833. align-self:center;
  8834. padding:0px 0px 0px 0px;
  8835. box-sizing:border-box;
  8836. width:100%;
  8837. }
  8838. #u1566_text {
  8839. border-width:0px;
  8840. white-space:nowrap;
  8841. text-transform:none;
  8842. }
  8843. #u1567 {
  8844. border-width:0px;
  8845. position:absolute;
  8846. left:0px;
  8847. top:0px;
  8848. width:0px;
  8849. height:0px;
  8850. }
  8851. #u1568_div {
  8852. border-width:0px;
  8853. position:absolute;
  8854. left:0px;
  8855. top:0px;
  8856. width:240px;
  8857. height:80px;
  8858. background:inherit;
  8859. background-color:rgba(242, 242, 242, 1);
  8860. border-radius:0px;
  8861. filter:drop-shadow(none);
  8862. transition:none;
  8863. }
  8864. #u1568 {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:153px;
  8868. top:936px;
  8869. width:240px;
  8870. height:80px;
  8871. display:flex;
  8872. transition:none;
  8873. transform-origin:50% 50%;
  8874. }
  8875. #u1568 .text {
  8876. position:absolute;
  8877. align-self:center;
  8878. padding:2px 2px 2px 2px;
  8879. box-sizing:border-box;
  8880. width:100%;
  8881. }
  8882. #u1568_text {
  8883. border-width:0px;
  8884. word-wrap:break-word;
  8885. text-transform:none;
  8886. visibility:hidden;
  8887. }
  8888. #u1569 {
  8889. border-width:0px;
  8890. position:absolute;
  8891. left:169px;
  8892. top:949px;
  8893. width:50px;
  8894. height:53px;
  8895. display:flex;
  8896. transition:none;
  8897. }
  8898. #u1569 .text {
  8899. position:absolute;
  8900. align-self:center;
  8901. padding:2px 2px 2px 2px;
  8902. box-sizing:border-box;
  8903. width:100%;
  8904. }
  8905. #u1569_img {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:0px;
  8909. top:0px;
  8910. width:50px;
  8911. height:53px;
  8912. }
  8913. #u1569_text {
  8914. border-width:0px;
  8915. word-wrap:break-word;
  8916. text-transform:none;
  8917. visibility:hidden;
  8918. }
  8919. #u1570 {
  8920. border-width:0px;
  8921. position:absolute;
  8922. left:0px;
  8923. top:0px;
  8924. width:0px;
  8925. height:0px;
  8926. }
  8927. #u1571_div {
  8928. border-width:0px;
  8929. position:absolute;
  8930. left:0px;
  8931. top:0px;
  8932. width:73px;
  8933. height:25px;
  8934. background:inherit;
  8935. background-color:rgba(255, 255, 255, 0);
  8936. border-left:0px;
  8937. border-top:0px;
  8938. border-right:0px;
  8939. border-radius:0px;
  8940. border-bottom-right-radius:0px;
  8941. border-bottom-left-radius:0px;
  8942. filter:drop-shadow(none);
  8943. transition:none;
  8944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8945. font-weight:400;
  8946. font-style:normal;
  8947. font-size:18px;
  8948. }
  8949. #u1571 {
  8950. border-width:0px;
  8951. position:absolute;
  8952. left:234px;
  8953. top:952px;
  8954. width:73px;
  8955. height:25px;
  8956. display:flex;
  8957. transition:none;
  8958. transform-origin:50% 50%;
  8959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8960. font-weight:400;
  8961. font-style:normal;
  8962. font-size:18px;
  8963. }
  8964. #u1571 .text {
  8965. position:absolute;
  8966. align-self:center;
  8967. padding:0px 0px 0px 0px;
  8968. box-sizing:border-box;
  8969. width:100%;
  8970. }
  8971. #u1571_text {
  8972. border-width:0px;
  8973. white-space:nowrap;
  8974. text-transform:none;
  8975. }
  8976. #u1572_div {
  8977. border-width:0px;
  8978. position:absolute;
  8979. left:0px;
  8980. top:0px;
  8981. width:181px;
  8982. height:17px;
  8983. background:inherit;
  8984. background-color:rgba(255, 255, 255, 0);
  8985. border-left:0px;
  8986. border-top:0px;
  8987. border-right:0px;
  8988. border-radius:0px;
  8989. border-bottom-right-radius:0px;
  8990. border-bottom-left-radius:0px;
  8991. filter:drop-shadow(none);
  8992. transition:none;
  8993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8994. font-weight:400;
  8995. font-style:normal;
  8996. font-size:12px;
  8997. color:#7F7F7F;
  8998. }
  8999. #u1572 {
  9000. border-width:0px;
  9001. position:absolute;
  9002. left:234px;
  9003. top:982px;
  9004. width:181px;
  9005. height:17px;
  9006. display:flex;
  9007. transition:none;
  9008. transform-origin:50% 50%;
  9009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9010. font-weight:400;
  9011. font-style:normal;
  9012. font-size:12px;
  9013. color:#7F7F7F;
  9014. }
  9015. #u1572 .text {
  9016. position:absolute;
  9017. align-self:center;
  9018. padding:0px 0px 0px 0px;
  9019. box-sizing:border-box;
  9020. width:100%;
  9021. }
  9022. #u1572_text {
  9023. border-width:0px;
  9024. white-space:nowrap;
  9025. text-transform:none;
  9026. }
  9027. #u1573 {
  9028. border-width:0px;
  9029. position:absolute;
  9030. left:0px;
  9031. top:0px;
  9032. width:0px;
  9033. height:0px;
  9034. }
  9035. #u1574_div {
  9036. border-width:0px;
  9037. position:absolute;
  9038. left:0px;
  9039. top:0px;
  9040. width:240px;
  9041. height:80px;
  9042. background:inherit;
  9043. background-color:rgba(242, 242, 242, 1);
  9044. border-radius:0px;
  9045. filter:drop-shadow(none);
  9046. transition:none;
  9047. }
  9048. #u1574 {
  9049. border-width:0px;
  9050. position:absolute;
  9051. left:964px;
  9052. top:1036px;
  9053. width:240px;
  9054. height:80px;
  9055. display:flex;
  9056. transition:none;
  9057. transform-origin:50% 50%;
  9058. }
  9059. #u1574 .text {
  9060. position:absolute;
  9061. align-self:center;
  9062. padding:2px 2px 2px 2px;
  9063. box-sizing:border-box;
  9064. width:100%;
  9065. }
  9066. #u1574_text {
  9067. border-width:0px;
  9068. word-wrap:break-word;
  9069. text-transform:none;
  9070. visibility:hidden;
  9071. }
  9072. #u1575 {
  9073. border-width:0px;
  9074. position:absolute;
  9075. left:980px;
  9076. top:1049px;
  9077. width:50px;
  9078. height:53px;
  9079. display:flex;
  9080. transition:none;
  9081. }
  9082. #u1575 .text {
  9083. position:absolute;
  9084. align-self:center;
  9085. padding:2px 2px 2px 2px;
  9086. box-sizing:border-box;
  9087. width:100%;
  9088. }
  9089. #u1575_img {
  9090. border-width:0px;
  9091. position:absolute;
  9092. left:0px;
  9093. top:0px;
  9094. width:50px;
  9095. height:53px;
  9096. }
  9097. #u1575_text {
  9098. border-width:0px;
  9099. word-wrap:break-word;
  9100. text-transform:none;
  9101. visibility:hidden;
  9102. }
  9103. #u1576 {
  9104. border-width:0px;
  9105. position:absolute;
  9106. left:0px;
  9107. top:0px;
  9108. width:0px;
  9109. height:0px;
  9110. }
  9111. #u1577_div {
  9112. border-width:0px;
  9113. position:absolute;
  9114. left:0px;
  9115. top:0px;
  9116. width:109px;
  9117. height:25px;
  9118. background:inherit;
  9119. background-color:rgba(255, 255, 255, 0);
  9120. border-left:0px;
  9121. border-top:0px;
  9122. border-right:0px;
  9123. border-radius:0px;
  9124. border-bottom-right-radius:0px;
  9125. border-bottom-left-radius:0px;
  9126. filter:drop-shadow(none);
  9127. transition:none;
  9128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9129. font-weight:400;
  9130. font-style:normal;
  9131. font-size:18px;
  9132. }
  9133. #u1577 {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:1045px;
  9137. top:1052px;
  9138. width:109px;
  9139. height:25px;
  9140. display:flex;
  9141. transition:none;
  9142. transform-origin:50% 50%;
  9143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9144. font-weight:400;
  9145. font-style:normal;
  9146. font-size:18px;
  9147. }
  9148. #u1577 .text {
  9149. position:absolute;
  9150. align-self:center;
  9151. padding:0px 0px 0px 0px;
  9152. box-sizing:border-box;
  9153. width:100%;
  9154. }
  9155. #u1577_text {
  9156. border-width:0px;
  9157. white-space:nowrap;
  9158. text-transform:none;
  9159. }
  9160. #u1578_div {
  9161. border-width:0px;
  9162. position:absolute;
  9163. left:0px;
  9164. top:0px;
  9165. width:211px;
  9166. height:17px;
  9167. background:inherit;
  9168. background-color:rgba(255, 255, 255, 0);
  9169. border-left:0px;
  9170. border-top:0px;
  9171. border-right:0px;
  9172. border-radius:0px;
  9173. border-bottom-right-radius:0px;
  9174. border-bottom-left-radius:0px;
  9175. filter:drop-shadow(none);
  9176. transition:none;
  9177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9178. font-weight:400;
  9179. font-style:normal;
  9180. font-size:12px;
  9181. color:#7F7F7F;
  9182. }
  9183. #u1578 {
  9184. border-width:0px;
  9185. position:absolute;
  9186. left:1045px;
  9187. top:1082px;
  9188. width:211px;
  9189. height:17px;
  9190. display:flex;
  9191. transition:none;
  9192. transform-origin:50% 50%;
  9193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9194. font-weight:400;
  9195. font-style:normal;
  9196. font-size:12px;
  9197. color:#7F7F7F;
  9198. }
  9199. #u1578 .text {
  9200. position:absolute;
  9201. align-self:center;
  9202. padding:0px 0px 0px 0px;
  9203. box-sizing:border-box;
  9204. width:100%;
  9205. }
  9206. #u1578_text {
  9207. border-width:0px;
  9208. white-space:nowrap;
  9209. text-transform:none;
  9210. }
  9211. #u1579 {
  9212. border-width:0px;
  9213. position:absolute;
  9214. left:0px;
  9215. top:0px;
  9216. width:0px;
  9217. height:0px;
  9218. }
  9219. #u1580_div {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:0px;
  9223. top:0px;
  9224. width:240px;
  9225. height:80px;
  9226. background:inherit;
  9227. background-color:rgba(242, 242, 242, 1);
  9228. border-radius:0px;
  9229. filter:drop-shadow(none);
  9230. transition:none;
  9231. }
  9232. #u1580 {
  9233. border-width:0px;
  9234. position:absolute;
  9235. left:1235px;
  9236. top:1036px;
  9237. width:240px;
  9238. height:80px;
  9239. display:flex;
  9240. transition:none;
  9241. transform-origin:50% 50%;
  9242. }
  9243. #u1580 .text {
  9244. position:absolute;
  9245. align-self:center;
  9246. padding:2px 2px 2px 2px;
  9247. box-sizing:border-box;
  9248. width:100%;
  9249. }
  9250. #u1580_text {
  9251. border-width:0px;
  9252. word-wrap:break-word;
  9253. text-transform:none;
  9254. visibility:hidden;
  9255. }
  9256. #u1581 {
  9257. border-width:0px;
  9258. position:absolute;
  9259. left:1251px;
  9260. top:1049px;
  9261. width:50px;
  9262. height:53px;
  9263. display:flex;
  9264. transition:none;
  9265. }
  9266. #u1581 .text {
  9267. position:absolute;
  9268. align-self:center;
  9269. padding:2px 2px 2px 2px;
  9270. box-sizing:border-box;
  9271. width:100%;
  9272. }
  9273. #u1581_img {
  9274. border-width:0px;
  9275. position:absolute;
  9276. left:0px;
  9277. top:0px;
  9278. width:50px;
  9279. height:53px;
  9280. }
  9281. #u1581_text {
  9282. border-width:0px;
  9283. word-wrap:break-word;
  9284. text-transform:none;
  9285. visibility:hidden;
  9286. }
  9287. #u1582 {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:0px;
  9291. top:0px;
  9292. width:0px;
  9293. height:0px;
  9294. }
  9295. #u1583_div {
  9296. border-width:0px;
  9297. position:absolute;
  9298. left:0px;
  9299. top:0px;
  9300. width:145px;
  9301. height:25px;
  9302. background:inherit;
  9303. background-color:rgba(255, 255, 255, 0);
  9304. border-left:0px;
  9305. border-top:0px;
  9306. border-right:0px;
  9307. border-radius:0px;
  9308. border-bottom-right-radius:0px;
  9309. border-bottom-left-radius:0px;
  9310. filter:drop-shadow(none);
  9311. transition:none;
  9312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9313. font-weight:400;
  9314. font-style:normal;
  9315. font-size:18px;
  9316. }
  9317. #u1583 {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:1316px;
  9321. top:1052px;
  9322. width:145px;
  9323. height:25px;
  9324. display:flex;
  9325. transition:none;
  9326. transform-origin:50% 50%;
  9327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9328. font-weight:400;
  9329. font-style:normal;
  9330. font-size:18px;
  9331. }
  9332. #u1583 .text {
  9333. position:absolute;
  9334. align-self:center;
  9335. padding:0px 0px 0px 0px;
  9336. box-sizing:border-box;
  9337. width:100%;
  9338. }
  9339. #u1583_text {
  9340. border-width:0px;
  9341. white-space:nowrap;
  9342. text-transform:none;
  9343. }
  9344. #u1584_div {
  9345. border-width:0px;
  9346. position:absolute;
  9347. left:0px;
  9348. top:0px;
  9349. width:205px;
  9350. height:17px;
  9351. background:inherit;
  9352. background-color:rgba(255, 255, 255, 0);
  9353. border-left:0px;
  9354. border-top:0px;
  9355. border-right:0px;
  9356. border-radius:0px;
  9357. border-bottom-right-radius:0px;
  9358. border-bottom-left-radius:0px;
  9359. filter:drop-shadow(none);
  9360. transition:none;
  9361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9362. font-weight:400;
  9363. font-style:normal;
  9364. font-size:12px;
  9365. color:#7F7F7F;
  9366. }
  9367. #u1584 {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:1316px;
  9371. top:1082px;
  9372. width:205px;
  9373. height:17px;
  9374. display:flex;
  9375. transition:none;
  9376. transform-origin:50% 50%;
  9377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9378. font-weight:400;
  9379. font-style:normal;
  9380. font-size:12px;
  9381. color:#7F7F7F;
  9382. }
  9383. #u1584 .text {
  9384. position:absolute;
  9385. align-self:center;
  9386. padding:0px 0px 0px 0px;
  9387. box-sizing:border-box;
  9388. width:100%;
  9389. }
  9390. #u1584_text {
  9391. border-width:0px;
  9392. white-space:nowrap;
  9393. text-transform:none;
  9394. }
  9395. #u1585 {
  9396. border-width:0px;
  9397. position:absolute;
  9398. left:0px;
  9399. top:0px;
  9400. width:0px;
  9401. height:0px;
  9402. }
  9403. #u1586_div {
  9404. border-width:0px;
  9405. position:absolute;
  9406. left:0px;
  9407. top:0px;
  9408. width:240px;
  9409. height:80px;
  9410. background:inherit;
  9411. background-color:rgba(242, 242, 242, 1);
  9412. border-radius:0px;
  9413. filter:drop-shadow(none);
  9414. transition:none;
  9415. }
  9416. #u1586 {
  9417. border-width:0px;
  9418. position:absolute;
  9419. left:694px;
  9420. top:936px;
  9421. width:240px;
  9422. height:80px;
  9423. display:flex;
  9424. transition:none;
  9425. transform-origin:50% 50%;
  9426. }
  9427. #u1586 .text {
  9428. position:absolute;
  9429. align-self:center;
  9430. padding:2px 2px 2px 2px;
  9431. box-sizing:border-box;
  9432. width:100%;
  9433. }
  9434. #u1586_text {
  9435. border-width:0px;
  9436. word-wrap:break-word;
  9437. text-transform:none;
  9438. visibility:hidden;
  9439. }
  9440. #u1587 {
  9441. border-width:0px;
  9442. position:absolute;
  9443. left:710px;
  9444. top:949px;
  9445. width:50px;
  9446. height:53px;
  9447. display:flex;
  9448. transition:none;
  9449. }
  9450. #u1587 .text {
  9451. position:absolute;
  9452. align-self:center;
  9453. padding:2px 2px 2px 2px;
  9454. box-sizing:border-box;
  9455. width:100%;
  9456. }
  9457. #u1587_img {
  9458. border-width:0px;
  9459. position:absolute;
  9460. left:0px;
  9461. top:0px;
  9462. width:50px;
  9463. height:53px;
  9464. }
  9465. #u1587_text {
  9466. border-width:0px;
  9467. word-wrap:break-word;
  9468. text-transform:none;
  9469. visibility:hidden;
  9470. }
  9471. #u1588 {
  9472. border-width:0px;
  9473. position:absolute;
  9474. left:0px;
  9475. top:0px;
  9476. width:0px;
  9477. height:0px;
  9478. }
  9479. #u1589_div {
  9480. border-width:0px;
  9481. position:absolute;
  9482. left:0px;
  9483. top:0px;
  9484. width:73px;
  9485. height:25px;
  9486. background:inherit;
  9487. background-color:rgba(255, 255, 255, 0);
  9488. border-left:0px;
  9489. border-top:0px;
  9490. border-right:0px;
  9491. border-radius:0px;
  9492. border-bottom-right-radius:0px;
  9493. border-bottom-left-radius:0px;
  9494. filter:drop-shadow(none);
  9495. transition:none;
  9496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9497. font-weight:400;
  9498. font-style:normal;
  9499. font-size:18px;
  9500. }
  9501. #u1589 {
  9502. border-width:0px;
  9503. position:absolute;
  9504. left:775px;
  9505. top:952px;
  9506. width:73px;
  9507. height:25px;
  9508. display:flex;
  9509. transition:none;
  9510. transform-origin:50% 50%;
  9511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9512. font-weight:400;
  9513. font-style:normal;
  9514. font-size:18px;
  9515. }
  9516. #u1589 .text {
  9517. position:absolute;
  9518. align-self:center;
  9519. padding:0px 0px 0px 0px;
  9520. box-sizing:border-box;
  9521. width:100%;
  9522. }
  9523. #u1589_text {
  9524. border-width:0px;
  9525. white-space:nowrap;
  9526. text-transform:none;
  9527. }
  9528. #u1590_div {
  9529. border-width:0px;
  9530. position:absolute;
  9531. left:0px;
  9532. top:0px;
  9533. width:145px;
  9534. height:17px;
  9535. background:inherit;
  9536. background-color:rgba(255, 255, 255, 0);
  9537. border-left:0px;
  9538. border-top:0px;
  9539. border-right:0px;
  9540. border-radius:0px;
  9541. border-bottom-right-radius:0px;
  9542. border-bottom-left-radius:0px;
  9543. filter:drop-shadow(none);
  9544. transition:none;
  9545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9546. font-weight:400;
  9547. font-style:normal;
  9548. font-size:12px;
  9549. color:#7F7F7F;
  9550. }
  9551. #u1590 {
  9552. border-width:0px;
  9553. position:absolute;
  9554. left:775px;
  9555. top:982px;
  9556. width:145px;
  9557. height:17px;
  9558. display:flex;
  9559. transition:none;
  9560. transform-origin:50% 50%;
  9561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9562. font-weight:400;
  9563. font-style:normal;
  9564. font-size:12px;
  9565. color:#7F7F7F;
  9566. }
  9567. #u1590 .text {
  9568. position:absolute;
  9569. align-self:center;
  9570. padding:0px 0px 0px 0px;
  9571. box-sizing:border-box;
  9572. width:100%;
  9573. }
  9574. #u1590_text {
  9575. border-width:0px;
  9576. white-space:nowrap;
  9577. text-transform:none;
  9578. }
  9579. #u1591 {
  9580. border-width:0px;
  9581. position:absolute;
  9582. left:0px;
  9583. top:0px;
  9584. width:0px;
  9585. height:0px;
  9586. }
  9587. #u1592_div {
  9588. border-width:0px;
  9589. position:absolute;
  9590. left:0px;
  9591. top:0px;
  9592. width:240px;
  9593. height:80px;
  9594. background:inherit;
  9595. background-color:rgba(242, 242, 242, 1);
  9596. border-radius:0px;
  9597. filter:drop-shadow(none);
  9598. transition:none;
  9599. }
  9600. #u1592 {
  9601. border-width:0px;
  9602. position:absolute;
  9603. left:1234px;
  9604. top:936px;
  9605. width:240px;
  9606. height:80px;
  9607. display:flex;
  9608. transition:none;
  9609. transform-origin:50% 50%;
  9610. }
  9611. #u1592 .text {
  9612. position:absolute;
  9613. align-self:center;
  9614. padding:2px 2px 2px 2px;
  9615. box-sizing:border-box;
  9616. width:100%;
  9617. }
  9618. #u1592_text {
  9619. border-width:0px;
  9620. word-wrap:break-word;
  9621. text-transform:none;
  9622. visibility:hidden;
  9623. }
  9624. #u1593 {
  9625. border-width:0px;
  9626. position:absolute;
  9627. left:1250px;
  9628. top:949px;
  9629. width:50px;
  9630. height:53px;
  9631. display:flex;
  9632. transition:none;
  9633. }
  9634. #u1593 .text {
  9635. position:absolute;
  9636. align-self:center;
  9637. padding:2px 2px 2px 2px;
  9638. box-sizing:border-box;
  9639. width:100%;
  9640. }
  9641. #u1593_img {
  9642. border-width:0px;
  9643. position:absolute;
  9644. left:0px;
  9645. top:0px;
  9646. width:50px;
  9647. height:53px;
  9648. }
  9649. #u1593_text {
  9650. border-width:0px;
  9651. word-wrap:break-word;
  9652. text-transform:none;
  9653. visibility:hidden;
  9654. }
  9655. #u1594 {
  9656. border-width:0px;
  9657. position:absolute;
  9658. left:0px;
  9659. top:0px;
  9660. width:0px;
  9661. height:0px;
  9662. }
  9663. #u1595_div {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:0px;
  9667. top:0px;
  9668. width:73px;
  9669. height:25px;
  9670. background:inherit;
  9671. background-color:rgba(255, 255, 255, 0);
  9672. border-left:0px;
  9673. border-top:0px;
  9674. border-right:0px;
  9675. border-radius:0px;
  9676. border-bottom-right-radius:0px;
  9677. border-bottom-left-radius:0px;
  9678. filter:drop-shadow(none);
  9679. transition:none;
  9680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9681. font-weight:400;
  9682. font-style:normal;
  9683. font-size:18px;
  9684. }
  9685. #u1595 {
  9686. border-width:0px;
  9687. position:absolute;
  9688. left:1315px;
  9689. top:952px;
  9690. width:73px;
  9691. height:25px;
  9692. display:flex;
  9693. transition:none;
  9694. transform-origin:50% 50%;
  9695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9696. font-weight:400;
  9697. font-style:normal;
  9698. font-size:18px;
  9699. }
  9700. #u1595 .text {
  9701. position:absolute;
  9702. align-self:center;
  9703. padding:0px 0px 0px 0px;
  9704. box-sizing:border-box;
  9705. width:100%;
  9706. }
  9707. #u1595_text {
  9708. border-width:0px;
  9709. white-space:nowrap;
  9710. text-transform:none;
  9711. }
  9712. #u1596_div {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:0px;
  9716. top:0px;
  9717. width:193px;
  9718. height:17px;
  9719. background:inherit;
  9720. background-color:rgba(255, 255, 255, 0);
  9721. border-left:0px;
  9722. border-top:0px;
  9723. border-right:0px;
  9724. border-radius:0px;
  9725. border-bottom-right-radius:0px;
  9726. border-bottom-left-radius:0px;
  9727. filter:drop-shadow(none);
  9728. transition:none;
  9729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9730. font-weight:400;
  9731. font-style:normal;
  9732. font-size:12px;
  9733. color:#7F7F7F;
  9734. }
  9735. #u1596 {
  9736. border-width:0px;
  9737. position:absolute;
  9738. left:1315px;
  9739. top:982px;
  9740. width:193px;
  9741. height:17px;
  9742. display:flex;
  9743. transition:none;
  9744. transform-origin:50% 50%;
  9745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9746. font-weight:400;
  9747. font-style:normal;
  9748. font-size:12px;
  9749. color:#7F7F7F;
  9750. }
  9751. #u1596 .text {
  9752. position:absolute;
  9753. align-self:center;
  9754. padding:0px 0px 0px 0px;
  9755. box-sizing:border-box;
  9756. width:100%;
  9757. }
  9758. #u1596_text {
  9759. border-width:0px;
  9760. white-space:nowrap;
  9761. text-transform:none;
  9762. }
  9763. #u1597 {
  9764. border-width:0px;
  9765. position:absolute;
  9766. left:0px;
  9767. top:0px;
  9768. width:0px;
  9769. height:0px;
  9770. }
  9771. #u1598_div {
  9772. border-width:0px;
  9773. position:absolute;
  9774. left:0px;
  9775. top:0px;
  9776. width:240px;
  9777. height:80px;
  9778. background:inherit;
  9779. background-color:rgba(242, 242, 242, 1);
  9780. border-radius:0px;
  9781. filter:drop-shadow(none);
  9782. transition:none;
  9783. }
  9784. #u1598 {
  9785. border-width:0px;
  9786. position:absolute;
  9787. left:423px;
  9788. top:1132px;
  9789. width:240px;
  9790. height:80px;
  9791. display:flex;
  9792. transition:none;
  9793. transform-origin:50% 50%;
  9794. }
  9795. #u1598 .text {
  9796. position:absolute;
  9797. align-self:center;
  9798. padding:2px 2px 2px 2px;
  9799. box-sizing:border-box;
  9800. width:100%;
  9801. }
  9802. #u1598_text {
  9803. border-width:0px;
  9804. word-wrap:break-word;
  9805. text-transform:none;
  9806. visibility:hidden;
  9807. }
  9808. #u1599 {
  9809. border-width:0px;
  9810. position:absolute;
  9811. left:439px;
  9812. top:1145px;
  9813. width:50px;
  9814. height:53px;
  9815. display:flex;
  9816. transition:none;
  9817. }
  9818. #u1599 .text {
  9819. position:absolute;
  9820. align-self:center;
  9821. padding:2px 2px 2px 2px;
  9822. box-sizing:border-box;
  9823. width:100%;
  9824. }
  9825. #u1599_img {
  9826. border-width:0px;
  9827. position:absolute;
  9828. left:0px;
  9829. top:0px;
  9830. width:50px;
  9831. height:53px;
  9832. }
  9833. #u1599_text {
  9834. border-width:0px;
  9835. word-wrap:break-word;
  9836. text-transform:none;
  9837. visibility:hidden;
  9838. }
  9839. #u1600 {
  9840. border-width:0px;
  9841. position:absolute;
  9842. left:0px;
  9843. top:0px;
  9844. width:0px;
  9845. height:0px;
  9846. }
  9847. #u1601_div {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:0px;
  9851. top:0px;
  9852. width:91px;
  9853. height:25px;
  9854. background:inherit;
  9855. background-color:rgba(255, 255, 255, 0);
  9856. border-left:0px;
  9857. border-top:0px;
  9858. border-right:0px;
  9859. border-radius:0px;
  9860. border-bottom-right-radius:0px;
  9861. border-bottom-left-radius:0px;
  9862. filter:drop-shadow(none);
  9863. transition:none;
  9864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9865. font-weight:400;
  9866. font-style:normal;
  9867. font-size:18px;
  9868. }
  9869. #u1601 {
  9870. border-width:0px;
  9871. position:absolute;
  9872. left:504px;
  9873. top:1148px;
  9874. width:91px;
  9875. height:25px;
  9876. display:flex;
  9877. transition:none;
  9878. transform-origin:50% 50%;
  9879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9880. font-weight:400;
  9881. font-style:normal;
  9882. font-size:18px;
  9883. }
  9884. #u1601 .text {
  9885. position:absolute;
  9886. align-self:center;
  9887. padding:0px 0px 0px 0px;
  9888. box-sizing:border-box;
  9889. width:100%;
  9890. }
  9891. #u1601_text {
  9892. border-width:0px;
  9893. white-space:nowrap;
  9894. text-transform:none;
  9895. }
  9896. #u1602_div {
  9897. border-width:0px;
  9898. position:absolute;
  9899. left:0px;
  9900. top:0px;
  9901. width:109px;
  9902. height:17px;
  9903. background:inherit;
  9904. background-color:rgba(255, 255, 255, 0);
  9905. border-left:0px;
  9906. border-top:0px;
  9907. border-right:0px;
  9908. border-radius:0px;
  9909. border-bottom-right-radius:0px;
  9910. border-bottom-left-radius:0px;
  9911. filter:drop-shadow(none);
  9912. transition:none;
  9913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9914. font-weight:400;
  9915. font-style:normal;
  9916. font-size:12px;
  9917. color:#7F7F7F;
  9918. }
  9919. #u1602 {
  9920. border-width:0px;
  9921. position:absolute;
  9922. left:504px;
  9923. top:1178px;
  9924. width:109px;
  9925. height:17px;
  9926. display:flex;
  9927. transition:none;
  9928. transform-origin:50% 50%;
  9929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9930. font-weight:400;
  9931. font-style:normal;
  9932. font-size:12px;
  9933. color:#7F7F7F;
  9934. }
  9935. #u1602 .text {
  9936. position:absolute;
  9937. align-self:center;
  9938. padding:0px 0px 0px 0px;
  9939. box-sizing:border-box;
  9940. width:100%;
  9941. }
  9942. #u1602_text {
  9943. border-width:0px;
  9944. white-space:nowrap;
  9945. text-transform:none;
  9946. }
  9947. #u1603 {
  9948. border-width:0px;
  9949. position:absolute;
  9950. left:0px;
  9951. top:0px;
  9952. width:0px;
  9953. height:0px;
  9954. }
  9955. #u1604_div {
  9956. border-width:0px;
  9957. position:absolute;
  9958. left:0px;
  9959. top:0px;
  9960. width:240px;
  9961. height:80px;
  9962. background:inherit;
  9963. background-color:rgba(242, 242, 242, 1);
  9964. border-radius:0px;
  9965. filter:drop-shadow(none);
  9966. transition:none;
  9967. }
  9968. #u1604 {
  9969. border-width:0px;
  9970. position:absolute;
  9971. left:694px;
  9972. top:1132px;
  9973. width:240px;
  9974. height:80px;
  9975. display:flex;
  9976. transition:none;
  9977. transform-origin:50% 50%;
  9978. }
  9979. #u1604 .text {
  9980. position:absolute;
  9981. align-self:center;
  9982. padding:2px 2px 2px 2px;
  9983. box-sizing:border-box;
  9984. width:100%;
  9985. }
  9986. #u1604_text {
  9987. border-width:0px;
  9988. word-wrap:break-word;
  9989. text-transform:none;
  9990. visibility:hidden;
  9991. }
  9992. #u1605 {
  9993. border-width:0px;
  9994. position:absolute;
  9995. left:710px;
  9996. top:1145px;
  9997. width:50px;
  9998. height:53px;
  9999. display:flex;
  10000. transition:none;
  10001. }
  10002. #u1605 .text {
  10003. position:absolute;
  10004. align-self:center;
  10005. padding:2px 2px 2px 2px;
  10006. box-sizing:border-box;
  10007. width:100%;
  10008. }
  10009. #u1605_img {
  10010. border-width:0px;
  10011. position:absolute;
  10012. left:0px;
  10013. top:0px;
  10014. width:50px;
  10015. height:53px;
  10016. }
  10017. #u1605_text {
  10018. border-width:0px;
  10019. word-wrap:break-word;
  10020. text-transform:none;
  10021. visibility:hidden;
  10022. }
  10023. #u1606 {
  10024. border-width:0px;
  10025. position:absolute;
  10026. left:0px;
  10027. top:0px;
  10028. width:0px;
  10029. height:0px;
  10030. }
  10031. #u1607_div {
  10032. border-width:0px;
  10033. position:absolute;
  10034. left:0px;
  10035. top:0px;
  10036. width:73px;
  10037. height:25px;
  10038. background:inherit;
  10039. background-color:rgba(255, 255, 255, 0);
  10040. border-left:0px;
  10041. border-top:0px;
  10042. border-right:0px;
  10043. border-radius:0px;
  10044. border-bottom-right-radius:0px;
  10045. border-bottom-left-radius:0px;
  10046. filter:drop-shadow(none);
  10047. transition:none;
  10048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10049. font-weight:400;
  10050. font-style:normal;
  10051. font-size:18px;
  10052. }
  10053. #u1607 {
  10054. border-width:0px;
  10055. position:absolute;
  10056. left:775px;
  10057. top:1148px;
  10058. width:73px;
  10059. height:25px;
  10060. display:flex;
  10061. transition:none;
  10062. transform-origin:50% 50%;
  10063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10064. font-weight:400;
  10065. font-style:normal;
  10066. font-size:18px;
  10067. }
  10068. #u1607 .text {
  10069. position:absolute;
  10070. align-self:center;
  10071. padding:0px 0px 0px 0px;
  10072. box-sizing:border-box;
  10073. width:100%;
  10074. }
  10075. #u1607_text {
  10076. border-width:0px;
  10077. white-space:nowrap;
  10078. text-transform:none;
  10079. }
  10080. #u1608_div {
  10081. border-width:0px;
  10082. position:absolute;
  10083. left:0px;
  10084. top:0px;
  10085. width:97px;
  10086. height:17px;
  10087. background:inherit;
  10088. background-color:rgba(255, 255, 255, 0);
  10089. border-left:0px;
  10090. border-top:0px;
  10091. border-right:0px;
  10092. border-radius:0px;
  10093. border-bottom-right-radius:0px;
  10094. border-bottom-left-radius:0px;
  10095. filter:drop-shadow(none);
  10096. transition:none;
  10097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10098. font-weight:400;
  10099. font-style:normal;
  10100. font-size:12px;
  10101. color:#7F7F7F;
  10102. }
  10103. #u1608 {
  10104. border-width:0px;
  10105. position:absolute;
  10106. left:775px;
  10107. top:1178px;
  10108. width:97px;
  10109. height:17px;
  10110. display:flex;
  10111. transition:none;
  10112. transform-origin:50% 50%;
  10113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10114. font-weight:400;
  10115. font-style:normal;
  10116. font-size:12px;
  10117. color:#7F7F7F;
  10118. }
  10119. #u1608 .text {
  10120. position:absolute;
  10121. align-self:center;
  10122. padding:0px 0px 0px 0px;
  10123. box-sizing:border-box;
  10124. width:100%;
  10125. }
  10126. #u1608_text {
  10127. border-width:0px;
  10128. white-space:nowrap;
  10129. text-transform:none;
  10130. }
  10131. #u1609 {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:0px;
  10135. top:0px;
  10136. width:0px;
  10137. height:0px;
  10138. }
  10139. #u1610_div {
  10140. border-width:0px;
  10141. position:absolute;
  10142. left:0px;
  10143. top:0px;
  10144. width:240px;
  10145. height:80px;
  10146. background:inherit;
  10147. background-color:rgba(242, 242, 242, 1);
  10148. border-radius:0px;
  10149. filter:drop-shadow(none);
  10150. transition:none;
  10151. }
  10152. #u1610 {
  10153. border-width:0px;
  10154. position:absolute;
  10155. left:964px;
  10156. top:1132px;
  10157. width:240px;
  10158. height:80px;
  10159. display:flex;
  10160. transition:none;
  10161. transform-origin:50% 50%;
  10162. }
  10163. #u1610 .text {
  10164. position:absolute;
  10165. align-self:center;
  10166. padding:2px 2px 2px 2px;
  10167. box-sizing:border-box;
  10168. width:100%;
  10169. }
  10170. #u1610_text {
  10171. border-width:0px;
  10172. word-wrap:break-word;
  10173. text-transform:none;
  10174. visibility:hidden;
  10175. }
  10176. #u1611 {
  10177. border-width:0px;
  10178. position:absolute;
  10179. left:980px;
  10180. top:1145px;
  10181. width:50px;
  10182. height:53px;
  10183. display:flex;
  10184. transition:none;
  10185. }
  10186. #u1611 .text {
  10187. position:absolute;
  10188. align-self:center;
  10189. padding:2px 2px 2px 2px;
  10190. box-sizing:border-box;
  10191. width:100%;
  10192. }
  10193. #u1611_img {
  10194. border-width:0px;
  10195. position:absolute;
  10196. left:0px;
  10197. top:0px;
  10198. width:50px;
  10199. height:53px;
  10200. }
  10201. #u1611_text {
  10202. border-width:0px;
  10203. word-wrap:break-word;
  10204. text-transform:none;
  10205. visibility:hidden;
  10206. }
  10207. #u1612 {
  10208. border-width:0px;
  10209. position:absolute;
  10210. left:0px;
  10211. top:0px;
  10212. width:0px;
  10213. height:0px;
  10214. }
  10215. #u1613_div {
  10216. border-width:0px;
  10217. position:absolute;
  10218. left:0px;
  10219. top:0px;
  10220. width:73px;
  10221. height:25px;
  10222. background:inherit;
  10223. background-color:rgba(255, 255, 255, 0);
  10224. border-left:0px;
  10225. border-top:0px;
  10226. border-right:0px;
  10227. border-radius:0px;
  10228. border-bottom-right-radius:0px;
  10229. border-bottom-left-radius:0px;
  10230. filter:drop-shadow(none);
  10231. transition:none;
  10232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10233. font-weight:400;
  10234. font-style:normal;
  10235. font-size:18px;
  10236. }
  10237. #u1613 {
  10238. border-width:0px;
  10239. position:absolute;
  10240. left:1045px;
  10241. top:1148px;
  10242. width:73px;
  10243. height:25px;
  10244. display:flex;
  10245. transition:none;
  10246. transform-origin:50% 50%;
  10247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10248. font-weight:400;
  10249. font-style:normal;
  10250. font-size:18px;
  10251. }
  10252. #u1613 .text {
  10253. position:absolute;
  10254. align-self:center;
  10255. padding:0px 0px 0px 0px;
  10256. box-sizing:border-box;
  10257. width:100%;
  10258. }
  10259. #u1613_text {
  10260. border-width:0px;
  10261. white-space:nowrap;
  10262. text-transform:none;
  10263. }
  10264. #u1614_div {
  10265. border-width:0px;
  10266. position:absolute;
  10267. left:0px;
  10268. top:0px;
  10269. width:181px;
  10270. height:17px;
  10271. background:inherit;
  10272. background-color:rgba(255, 255, 255, 0);
  10273. border-left:0px;
  10274. border-top:0px;
  10275. border-right:0px;
  10276. border-radius:0px;
  10277. border-bottom-right-radius:0px;
  10278. border-bottom-left-radius:0px;
  10279. filter:drop-shadow(none);
  10280. transition:none;
  10281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10282. font-weight:400;
  10283. font-style:normal;
  10284. font-size:12px;
  10285. color:#7F7F7F;
  10286. }
  10287. #u1614 {
  10288. border-width:0px;
  10289. position:absolute;
  10290. left:1045px;
  10291. top:1178px;
  10292. width:181px;
  10293. height:17px;
  10294. display:flex;
  10295. transition:none;
  10296. transform-origin:50% 50%;
  10297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10298. font-weight:400;
  10299. font-style:normal;
  10300. font-size:12px;
  10301. color:#7F7F7F;
  10302. }
  10303. #u1614 .text {
  10304. position:absolute;
  10305. align-self:center;
  10306. padding:0px 0px 0px 0px;
  10307. box-sizing:border-box;
  10308. width:100%;
  10309. }
  10310. #u1614_text {
  10311. border-width:0px;
  10312. white-space:nowrap;
  10313. text-transform:none;
  10314. }