styles.css 180 KB

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