styles.css 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954
  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. #u3447_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u3447 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u3447 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u3447_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u3448_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u3448 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u3448 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u3448_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u3449 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u3450_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u3450 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u3450 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u3450_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u3451_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u3451 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u3451 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u3451_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u3452_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u3452 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u3452 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u3452_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u3453_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u3453 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u3453 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u3453_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u3454 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u3455_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. #u3455 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  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. #u3455 .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. #u3455_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u3456_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u3456 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u3456 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u3456_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u3457 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u3458_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. #u3458 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  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. #u3458 .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. #u3458_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u3459_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u3459 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u3459 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u3459_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u3460 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u3461_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  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. color:#FFFFFF;
  451. }
  452. #u3461 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u3461 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u3461_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u3462_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u3462 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u3462 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u3462_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u3463 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u3464_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u3464 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u3464 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u3464_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u3465_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u3465 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u3465 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u3465_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u3466 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u3467_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u3467 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u3467 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u3467_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u3468_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u3468 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u3468 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u3468_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u3469 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u3470_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u3470 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u3470 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u3470_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u3471_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u3471 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u3471 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u3471_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u3472 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u3473_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u3473 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u3473 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u3473_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u3474_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u3474 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u3474 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u3474_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u3475 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u3476_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u3476 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u3476 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u3476_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u3477_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u3477 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u3477 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u3477_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u3478 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u3479_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u3479 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u3479 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u3479_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u3480_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u3480 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u3480 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u3480_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u3481_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u3481_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u3481_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u3481 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u3481 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u3481_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u3481.disabled {
  1100. }
  1101. .u3481_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u3482_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u3482 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u3482 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u3482_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u3483_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u3483 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u3483 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u3483_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u3484_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u3484 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u3484 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u3484_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u3485 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u3486_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u3486 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u3486 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u3486_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u3487_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u3487 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u3487 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u3487_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u3488 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u3489_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u3489 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u3489 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u3489_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u3490_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u3490 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u3490 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u3490_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u3491 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u3492_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u3492 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u3492 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u3492_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u3493_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u3493 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u3493 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u3493_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u3494 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u3495_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u3495 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u3495 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u3495_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u3496_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u3496 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u3496 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u3496_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u3497 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u3498_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u3498 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u3498 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u3498_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u3499_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u3499 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u3499 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u3499_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u3500_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:1460px;
  1636. height:1180px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 1);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:none;
  1642. -webkit-box-shadow:none;
  1643. box-shadow:none;
  1644. }
  1645. #u3500 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:130px;
  1649. top:60px;
  1650. width:1460px;
  1651. height:1180px;
  1652. display:flex;
  1653. }
  1654. #u3500 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u3500_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u3501_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:73px;
  1673. height:25px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 0);
  1676. border:none;
  1677. border-radius:0px;
  1678. -moz-box-shadow:none;
  1679. -webkit-box-shadow:none;
  1680. box-shadow:none;
  1681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1682. font-weight:500;
  1683. font-style:normal;
  1684. font-size:18px;
  1685. }
  1686. #u3501 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:165px;
  1690. top:85px;
  1691. width:73px;
  1692. height:25px;
  1693. display:flex;
  1694. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1695. font-weight:500;
  1696. font-style:normal;
  1697. font-size:18px;
  1698. }
  1699. #u3501 .text {
  1700. position:absolute;
  1701. align-self:flex-start;
  1702. padding:0px 0px 0px 0px;
  1703. box-sizing:border-box;
  1704. width:100%;
  1705. }
  1706. #u3501_text {
  1707. border-width:0px;
  1708. white-space:nowrap;
  1709. text-transform:none;
  1710. }
  1711. #u3502 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:0px;
  1717. height:0px;
  1718. }
  1719. #u3503_div {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:240px;
  1725. height:80px;
  1726. background:inherit;
  1727. background-color:rgba(242, 242, 242, 1);
  1728. border:none;
  1729. border-radius:0px;
  1730. -moz-box-shadow:none;
  1731. -webkit-box-shadow:none;
  1732. box-shadow:none;
  1733. }
  1734. #u3503 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:170px;
  1738. top:135px;
  1739. width:240px;
  1740. height:80px;
  1741. display:flex;
  1742. }
  1743. #u3503 .text {
  1744. position:absolute;
  1745. align-self:center;
  1746. padding:2px 2px 2px 2px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u3503_text {
  1751. border-width:0px;
  1752. word-wrap:break-word;
  1753. text-transform:none;
  1754. visibility:hidden;
  1755. }
  1756. #u3504_img {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:50px;
  1762. height:53px;
  1763. }
  1764. #u3504 {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:186px;
  1768. top:148px;
  1769. width:50px;
  1770. height:53px;
  1771. display:flex;
  1772. }
  1773. #u3504 .text {
  1774. position:absolute;
  1775. align-self:center;
  1776. padding:2px 2px 2px 2px;
  1777. box-sizing:border-box;
  1778. width:100%;
  1779. }
  1780. #u3504_text {
  1781. border-width:0px;
  1782. word-wrap:break-word;
  1783. text-transform:none;
  1784. visibility:hidden;
  1785. }
  1786. #u3505 {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:0px;
  1792. height:0px;
  1793. }
  1794. #u3506_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:37px;
  1800. height:25px;
  1801. background:inherit;
  1802. background-color:rgba(255, 255, 255, 0);
  1803. border:none;
  1804. border-left:0px;
  1805. border-top:0px;
  1806. border-right:0px;
  1807. border-radius:0px;
  1808. border-bottom-right-radius:0px;
  1809. border-bottom-left-radius:0px;
  1810. -moz-box-shadow:none;
  1811. -webkit-box-shadow:none;
  1812. box-shadow:none;
  1813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1814. font-weight:400;
  1815. font-style:normal;
  1816. font-size:18px;
  1817. }
  1818. #u3506 {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:251px;
  1822. top:151px;
  1823. width:37px;
  1824. height:25px;
  1825. display:flex;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:18px;
  1830. }
  1831. #u3506 .text {
  1832. position:absolute;
  1833. align-self:center;
  1834. padding:0px 0px 0px 0px;
  1835. box-sizing:border-box;
  1836. width:100%;
  1837. }
  1838. #u3506_text {
  1839. border-width:0px;
  1840. white-space:nowrap;
  1841. text-transform:none;
  1842. }
  1843. #u3507_div {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:145px;
  1849. height:17px;
  1850. background:inherit;
  1851. background-color:rgba(255, 255, 255, 0);
  1852. border:none;
  1853. border-left:0px;
  1854. border-top:0px;
  1855. border-right:0px;
  1856. border-radius:0px;
  1857. border-bottom-right-radius:0px;
  1858. border-bottom-left-radius:0px;
  1859. -moz-box-shadow:none;
  1860. -webkit-box-shadow:none;
  1861. box-shadow:none;
  1862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1863. font-weight:400;
  1864. font-style:normal;
  1865. font-size:12px;
  1866. color:#7F7F7F;
  1867. }
  1868. #u3507 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:251px;
  1872. top:181px;
  1873. width:145px;
  1874. height:17px;
  1875. display:flex;
  1876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1877. font-weight:400;
  1878. font-style:normal;
  1879. font-size:12px;
  1880. color:#7F7F7F;
  1881. }
  1882. #u3507 .text {
  1883. position:absolute;
  1884. align-self:center;
  1885. padding:0px 0px 0px 0px;
  1886. box-sizing:border-box;
  1887. width:100%;
  1888. }
  1889. #u3507_text {
  1890. border-width:0px;
  1891. white-space:nowrap;
  1892. text-transform:none;
  1893. }
  1894. #u3508 {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:0px;
  1900. height:0px;
  1901. }
  1902. #u3509_div {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:0px;
  1906. top:0px;
  1907. width:240px;
  1908. height:80px;
  1909. background:inherit;
  1910. background-color:rgba(242, 242, 242, 1);
  1911. border:none;
  1912. border-radius:0px;
  1913. -moz-box-shadow:none;
  1914. -webkit-box-shadow:none;
  1915. box-shadow:none;
  1916. }
  1917. #u3509 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:453px;
  1921. top:135px;
  1922. width:240px;
  1923. height:80px;
  1924. display:flex;
  1925. }
  1926. #u3509 .text {
  1927. position:absolute;
  1928. align-self:center;
  1929. padding:2px 2px 2px 2px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u3509_text {
  1934. border-width:0px;
  1935. word-wrap:break-word;
  1936. text-transform:none;
  1937. visibility:hidden;
  1938. }
  1939. #u3510_img {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:50px;
  1945. height:53px;
  1946. }
  1947. #u3510 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:469px;
  1951. top:148px;
  1952. width:50px;
  1953. height:53px;
  1954. display:flex;
  1955. }
  1956. #u3510 .text {
  1957. position:absolute;
  1958. align-self:center;
  1959. padding:2px 2px 2px 2px;
  1960. box-sizing:border-box;
  1961. width:100%;
  1962. }
  1963. #u3510_text {
  1964. border-width:0px;
  1965. word-wrap:break-word;
  1966. text-transform:none;
  1967. visibility:hidden;
  1968. }
  1969. #u3511 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:0px;
  1975. height:0px;
  1976. }
  1977. #u3512_div {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:37px;
  1983. height:25px;
  1984. background:inherit;
  1985. background-color:rgba(255, 255, 255, 0);
  1986. border:none;
  1987. border-left:0px;
  1988. border-top:0px;
  1989. border-right:0px;
  1990. border-radius:0px;
  1991. border-bottom-right-radius:0px;
  1992. border-bottom-left-radius:0px;
  1993. -moz-box-shadow:none;
  1994. -webkit-box-shadow:none;
  1995. box-shadow:none;
  1996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. font-size:18px;
  2000. }
  2001. #u3512 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:534px;
  2005. top:151px;
  2006. width:37px;
  2007. height:25px;
  2008. display:flex;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:18px;
  2013. }
  2014. #u3512 .text {
  2015. position:absolute;
  2016. align-self:center;
  2017. padding:0px 0px 0px 0px;
  2018. box-sizing:border-box;
  2019. width:100%;
  2020. }
  2021. #u3512_text {
  2022. border-width:0px;
  2023. white-space:nowrap;
  2024. text-transform:none;
  2025. }
  2026. #u3513_div {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:121px;
  2032. height:17px;
  2033. background:inherit;
  2034. background-color:rgba(255, 255, 255, 0);
  2035. border:none;
  2036. border-left:0px;
  2037. border-top:0px;
  2038. border-right:0px;
  2039. border-radius:0px;
  2040. border-bottom-right-radius:0px;
  2041. border-bottom-left-radius:0px;
  2042. -moz-box-shadow:none;
  2043. -webkit-box-shadow:none;
  2044. box-shadow:none;
  2045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2046. font-weight:400;
  2047. font-style:normal;
  2048. font-size:12px;
  2049. color:#7F7F7F;
  2050. }
  2051. #u3513 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:534px;
  2055. top:181px;
  2056. width:121px;
  2057. height:17px;
  2058. display:flex;
  2059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2060. font-weight:400;
  2061. font-style:normal;
  2062. font-size:12px;
  2063. color:#7F7F7F;
  2064. }
  2065. #u3513 .text {
  2066. position:absolute;
  2067. align-self:center;
  2068. padding:0px 0px 0px 0px;
  2069. box-sizing:border-box;
  2070. width:100%;
  2071. }
  2072. #u3513_text {
  2073. border-width:0px;
  2074. white-space:nowrap;
  2075. text-transform:none;
  2076. }
  2077. #u3514 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:0px;
  2083. height:0px;
  2084. }
  2085. #u3515_div {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:240px;
  2091. height:80px;
  2092. background:inherit;
  2093. background-color:rgba(242, 242, 242, 1);
  2094. border:none;
  2095. border-radius:0px;
  2096. -moz-box-shadow:none;
  2097. -webkit-box-shadow:none;
  2098. box-shadow:none;
  2099. }
  2100. #u3515 {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:170px;
  2104. top:235px;
  2105. width:240px;
  2106. height:80px;
  2107. display:flex;
  2108. }
  2109. #u3515 .text {
  2110. position:absolute;
  2111. align-self:center;
  2112. padding:2px 2px 2px 2px;
  2113. box-sizing:border-box;
  2114. width:100%;
  2115. }
  2116. #u3515_text {
  2117. border-width:0px;
  2118. word-wrap:break-word;
  2119. text-transform:none;
  2120. visibility:hidden;
  2121. }
  2122. #u3516_img {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:0px;
  2127. width:50px;
  2128. height:53px;
  2129. }
  2130. #u3516 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:186px;
  2134. top:248px;
  2135. width:50px;
  2136. height:53px;
  2137. display:flex;
  2138. }
  2139. #u3516 .text {
  2140. position:absolute;
  2141. align-self:center;
  2142. padding:2px 2px 2px 2px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u3516_text {
  2147. border-width:0px;
  2148. word-wrap:break-word;
  2149. text-transform:none;
  2150. visibility:hidden;
  2151. }
  2152. #u3517 {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:0px;
  2156. top:0px;
  2157. width:0px;
  2158. height:0px;
  2159. }
  2160. #u3518_div {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:37px;
  2166. height:25px;
  2167. background:inherit;
  2168. background-color:rgba(255, 255, 255, 0);
  2169. border:none;
  2170. border-left:0px;
  2171. border-top:0px;
  2172. border-right:0px;
  2173. border-radius:0px;
  2174. border-bottom-right-radius:0px;
  2175. border-bottom-left-radius:0px;
  2176. -moz-box-shadow:none;
  2177. -webkit-box-shadow:none;
  2178. box-shadow:none;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:18px;
  2183. }
  2184. #u3518 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:251px;
  2188. top:251px;
  2189. width:37px;
  2190. height:25px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:18px;
  2196. }
  2197. #u3518 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:0px 0px 0px 0px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u3518_text {
  2205. border-width:0px;
  2206. white-space:nowrap;
  2207. text-transform:none;
  2208. }
  2209. #u3519_div {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:145px;
  2215. height:17px;
  2216. background:inherit;
  2217. background-color:rgba(255, 255, 255, 0);
  2218. border:none;
  2219. border-left:0px;
  2220. border-top:0px;
  2221. border-right:0px;
  2222. border-radius:0px;
  2223. border-bottom-right-radius:0px;
  2224. border-bottom-left-radius:0px;
  2225. -moz-box-shadow:none;
  2226. -webkit-box-shadow:none;
  2227. box-shadow:none;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:12px;
  2232. color:#7F7F7F;
  2233. }
  2234. #u3519 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:251px;
  2238. top:281px;
  2239. width:145px;
  2240. height:17px;
  2241. display:flex;
  2242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2243. font-weight:400;
  2244. font-style:normal;
  2245. font-size:12px;
  2246. color:#7F7F7F;
  2247. }
  2248. #u3519 .text {
  2249. position:absolute;
  2250. align-self:center;
  2251. padding:0px 0px 0px 0px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u3519_text {
  2256. border-width:0px;
  2257. white-space:nowrap;
  2258. text-transform:none;
  2259. }
  2260. #u3520 {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:0px;
  2266. height:0px;
  2267. }
  2268. #u3521_div {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:240px;
  2274. height:80px;
  2275. background:inherit;
  2276. background-color:rgba(242, 242, 242, 1);
  2277. border:none;
  2278. border-radius:0px;
  2279. -moz-box-shadow:none;
  2280. -webkit-box-shadow:none;
  2281. box-shadow:none;
  2282. }
  2283. #u3521 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:1300px;
  2287. top:135px;
  2288. width:240px;
  2289. height:80px;
  2290. display:flex;
  2291. }
  2292. #u3521 .text {
  2293. position:absolute;
  2294. align-self:center;
  2295. padding:2px 2px 2px 2px;
  2296. box-sizing:border-box;
  2297. width:100%;
  2298. }
  2299. #u3521_text {
  2300. border-width:0px;
  2301. word-wrap:break-word;
  2302. text-transform:none;
  2303. visibility:hidden;
  2304. }
  2305. #u3522_img {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:50px;
  2311. height:53px;
  2312. }
  2313. #u3522 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:1316px;
  2317. top:148px;
  2318. width:50px;
  2319. height:53px;
  2320. display:flex;
  2321. }
  2322. #u3522 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 2px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u3522_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. visibility:hidden;
  2334. }
  2335. #u3523 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:0px;
  2341. height:0px;
  2342. }
  2343. #u3524_div {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:37px;
  2349. height:25px;
  2350. background:inherit;
  2351. background-color:rgba(255, 255, 255, 0);
  2352. border:none;
  2353. border-left:0px;
  2354. border-top:0px;
  2355. border-right:0px;
  2356. border-radius:0px;
  2357. border-bottom-right-radius:0px;
  2358. border-bottom-left-radius:0px;
  2359. -moz-box-shadow:none;
  2360. -webkit-box-shadow:none;
  2361. box-shadow:none;
  2362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2363. font-weight:400;
  2364. font-style:normal;
  2365. font-size:18px;
  2366. }
  2367. #u3524 {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:1381px;
  2371. top:151px;
  2372. width:37px;
  2373. height:25px;
  2374. display:flex;
  2375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2376. font-weight:400;
  2377. font-style:normal;
  2378. font-size:18px;
  2379. }
  2380. #u3524 .text {
  2381. position:absolute;
  2382. align-self:center;
  2383. padding:0px 0px 0px 0px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u3524_text {
  2388. border-width:0px;
  2389. white-space:nowrap;
  2390. text-transform:none;
  2391. }
  2392. #u3525_div {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:85px;
  2398. height:17px;
  2399. background:inherit;
  2400. background-color:rgba(255, 255, 255, 0);
  2401. border:none;
  2402. border-left:0px;
  2403. border-top:0px;
  2404. border-right:0px;
  2405. border-radius:0px;
  2406. border-bottom-right-radius:0px;
  2407. border-bottom-left-radius:0px;
  2408. -moz-box-shadow:none;
  2409. -webkit-box-shadow:none;
  2410. box-shadow:none;
  2411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2412. font-weight:400;
  2413. font-style:normal;
  2414. font-size:12px;
  2415. color:#7F7F7F;
  2416. }
  2417. #u3525 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:1381px;
  2421. top:181px;
  2422. width:85px;
  2423. height:17px;
  2424. display:flex;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:12px;
  2429. color:#7F7F7F;
  2430. }
  2431. #u3525 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:0px 0px 0px 0px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u3525_text {
  2439. border-width:0px;
  2440. white-space:nowrap;
  2441. text-transform:none;
  2442. }
  2443. #u3526 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:0px;
  2449. height:0px;
  2450. }
  2451. #u3527_div {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:240px;
  2457. height:80px;
  2458. background:inherit;
  2459. background-color:rgba(242, 242, 242, 1);
  2460. border:none;
  2461. border-radius:0px;
  2462. -moz-box-shadow:none;
  2463. -webkit-box-shadow:none;
  2464. box-shadow:none;
  2465. }
  2466. #u3527 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:453px;
  2470. top:235px;
  2471. width:240px;
  2472. height:80px;
  2473. display:flex;
  2474. }
  2475. #u3527 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 2px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u3527_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. visibility:hidden;
  2487. }
  2488. #u3528_img {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:50px;
  2494. height:53px;
  2495. }
  2496. #u3528 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:469px;
  2500. top:248px;
  2501. width:50px;
  2502. height:53px;
  2503. display:flex;
  2504. }
  2505. #u3528 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 2px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u3528_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. visibility:hidden;
  2517. }
  2518. #u3529 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:0px;
  2522. top:0px;
  2523. width:0px;
  2524. height:0px;
  2525. }
  2526. #u3530_div {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:37px;
  2532. height:25px;
  2533. background:inherit;
  2534. background-color:rgba(255, 255, 255, 0);
  2535. border:none;
  2536. border-left:0px;
  2537. border-top:0px;
  2538. border-right:0px;
  2539. border-radius:0px;
  2540. border-bottom-right-radius:0px;
  2541. border-bottom-left-radius:0px;
  2542. -moz-box-shadow:none;
  2543. -webkit-box-shadow:none;
  2544. box-shadow:none;
  2545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2546. font-weight:400;
  2547. font-style:normal;
  2548. font-size:18px;
  2549. }
  2550. #u3530 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:534px;
  2554. top:251px;
  2555. width:37px;
  2556. height:25px;
  2557. display:flex;
  2558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2559. font-weight:400;
  2560. font-style:normal;
  2561. font-size:18px;
  2562. }
  2563. #u3530 .text {
  2564. position:absolute;
  2565. align-self:center;
  2566. padding:0px 0px 0px 0px;
  2567. box-sizing:border-box;
  2568. width:100%;
  2569. }
  2570. #u3530_text {
  2571. border-width:0px;
  2572. white-space:nowrap;
  2573. text-transform:none;
  2574. }
  2575. #u3531_div {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:133px;
  2581. height:17px;
  2582. background:inherit;
  2583. background-color:rgba(255, 255, 255, 0);
  2584. border:none;
  2585. border-left:0px;
  2586. border-top:0px;
  2587. border-right:0px;
  2588. border-radius:0px;
  2589. border-bottom-right-radius:0px;
  2590. border-bottom-left-radius:0px;
  2591. -moz-box-shadow:none;
  2592. -webkit-box-shadow:none;
  2593. box-shadow:none;
  2594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2595. font-weight:400;
  2596. font-style:normal;
  2597. font-size:12px;
  2598. color:#7F7F7F;
  2599. }
  2600. #u3531 {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:534px;
  2604. top:281px;
  2605. width:133px;
  2606. height:17px;
  2607. display:flex;
  2608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2609. font-weight:400;
  2610. font-style:normal;
  2611. font-size:12px;
  2612. color:#7F7F7F;
  2613. }
  2614. #u3531 .text {
  2615. position:absolute;
  2616. align-self:center;
  2617. padding:0px 0px 0px 0px;
  2618. box-sizing:border-box;
  2619. width:100%;
  2620. }
  2621. #u3531_text {
  2622. border-width:0px;
  2623. white-space:nowrap;
  2624. text-transform:none;
  2625. }
  2626. #u3532 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:0px;
  2632. height:0px;
  2633. }
  2634. #u3533_div {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:240px;
  2640. height:80px;
  2641. background:inherit;
  2642. background-color:rgba(242, 242, 242, 1);
  2643. border:none;
  2644. border-radius:0px;
  2645. -moz-box-shadow:none;
  2646. -webkit-box-shadow:none;
  2647. box-shadow:none;
  2648. }
  2649. #u3533 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:170px;
  2653. top:375px;
  2654. width:240px;
  2655. height:80px;
  2656. display:flex;
  2657. }
  2658. #u3533 .text {
  2659. position:absolute;
  2660. align-self:center;
  2661. padding:2px 2px 2px 2px;
  2662. box-sizing:border-box;
  2663. width:100%;
  2664. }
  2665. #u3533_text {
  2666. border-width:0px;
  2667. word-wrap:break-word;
  2668. text-transform:none;
  2669. visibility:hidden;
  2670. }
  2671. #u3534_img {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:50px;
  2677. height:53px;
  2678. }
  2679. #u3534 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:186px;
  2683. top:388px;
  2684. width:50px;
  2685. height:53px;
  2686. display:flex;
  2687. }
  2688. #u3534 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 2px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u3534_text {
  2696. border-width:0px;
  2697. word-wrap:break-word;
  2698. text-transform:none;
  2699. visibility:hidden;
  2700. }
  2701. #u3535 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:0px;
  2707. height:0px;
  2708. }
  2709. #u3536_div {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:37px;
  2715. height:25px;
  2716. background:inherit;
  2717. background-color:rgba(255, 255, 255, 0);
  2718. border:none;
  2719. border-left:0px;
  2720. border-top:0px;
  2721. border-right:0px;
  2722. border-radius:0px;
  2723. border-bottom-right-radius:0px;
  2724. border-bottom-left-radius:0px;
  2725. -moz-box-shadow:none;
  2726. -webkit-box-shadow:none;
  2727. box-shadow:none;
  2728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2729. font-weight:400;
  2730. font-style:normal;
  2731. font-size:18px;
  2732. }
  2733. #u3536 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:251px;
  2737. top:391px;
  2738. width:37px;
  2739. height:25px;
  2740. display:flex;
  2741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:18px;
  2745. }
  2746. #u3536 .text {
  2747. position:absolute;
  2748. align-self:center;
  2749. padding:0px 0px 0px 0px;
  2750. box-sizing:border-box;
  2751. width:100%;
  2752. }
  2753. #u3536_text {
  2754. border-width:0px;
  2755. white-space:nowrap;
  2756. text-transform:none;
  2757. }
  2758. #u3537_div {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:121px;
  2764. height:17px;
  2765. background:inherit;
  2766. background-color:rgba(255, 255, 255, 0);
  2767. border:none;
  2768. border-left:0px;
  2769. border-top:0px;
  2770. border-right:0px;
  2771. border-radius:0px;
  2772. border-bottom-right-radius:0px;
  2773. border-bottom-left-radius:0px;
  2774. -moz-box-shadow:none;
  2775. -webkit-box-shadow:none;
  2776. box-shadow:none;
  2777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2778. font-weight:400;
  2779. font-style:normal;
  2780. font-size:12px;
  2781. color:#7F7F7F;
  2782. }
  2783. #u3537 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:251px;
  2787. top:421px;
  2788. width:121px;
  2789. height:17px;
  2790. display:flex;
  2791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2792. font-weight:400;
  2793. font-style:normal;
  2794. font-size:12px;
  2795. color:#7F7F7F;
  2796. }
  2797. #u3537 .text {
  2798. position:absolute;
  2799. align-self:center;
  2800. padding:0px 0px 0px 0px;
  2801. box-sizing:border-box;
  2802. width:100%;
  2803. }
  2804. #u3537_text {
  2805. border-width:0px;
  2806. white-space:nowrap;
  2807. text-transform:none;
  2808. }
  2809. #u3538 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:0px;
  2815. height:0px;
  2816. }
  2817. #u3539_div {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:240px;
  2823. height:80px;
  2824. background:inherit;
  2825. background-color:rgba(242, 242, 242, 1);
  2826. border:none;
  2827. border-radius:0px;
  2828. -moz-box-shadow:none;
  2829. -webkit-box-shadow:none;
  2830. box-shadow:none;
  2831. }
  2832. #u3539 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:452px;
  2836. top:375px;
  2837. width:240px;
  2838. height:80px;
  2839. display:flex;
  2840. }
  2841. #u3539 .text {
  2842. position:absolute;
  2843. align-self:center;
  2844. padding:2px 2px 2px 2px;
  2845. box-sizing:border-box;
  2846. width:100%;
  2847. }
  2848. #u3539_text {
  2849. border-width:0px;
  2850. word-wrap:break-word;
  2851. text-transform:none;
  2852. visibility:hidden;
  2853. }
  2854. #u3540_img {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:50px;
  2860. height:53px;
  2861. }
  2862. #u3540 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:468px;
  2866. top:388px;
  2867. width:50px;
  2868. height:53px;
  2869. display:flex;
  2870. }
  2871. #u3540 .text {
  2872. position:absolute;
  2873. align-self:center;
  2874. padding:2px 2px 2px 2px;
  2875. box-sizing:border-box;
  2876. width:100%;
  2877. }
  2878. #u3540_text {
  2879. border-width:0px;
  2880. word-wrap:break-word;
  2881. text-transform:none;
  2882. visibility:hidden;
  2883. }
  2884. #u3541 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:0px;
  2890. height:0px;
  2891. }
  2892. #u3542_div {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:37px;
  2898. height:25px;
  2899. background:inherit;
  2900. background-color:rgba(255, 255, 255, 0);
  2901. border:none;
  2902. border-left:0px;
  2903. border-top:0px;
  2904. border-right:0px;
  2905. border-radius:0px;
  2906. border-bottom-right-radius:0px;
  2907. border-bottom-left-radius:0px;
  2908. -moz-box-shadow:none;
  2909. -webkit-box-shadow:none;
  2910. box-shadow:none;
  2911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2912. font-weight:400;
  2913. font-style:normal;
  2914. font-size:18px;
  2915. }
  2916. #u3542 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:533px;
  2920. top:391px;
  2921. width:37px;
  2922. height:25px;
  2923. display:flex;
  2924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2925. font-weight:400;
  2926. font-style:normal;
  2927. font-size:18px;
  2928. }
  2929. #u3542 .text {
  2930. position:absolute;
  2931. align-self:center;
  2932. padding:0px 0px 0px 0px;
  2933. box-sizing:border-box;
  2934. width:100%;
  2935. }
  2936. #u3542_text {
  2937. border-width:0px;
  2938. white-space:nowrap;
  2939. text-transform:none;
  2940. }
  2941. #u3543_div {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:157px;
  2947. height:17px;
  2948. background:inherit;
  2949. background-color:rgba(255, 255, 255, 0);
  2950. border:none;
  2951. border-left:0px;
  2952. border-top:0px;
  2953. border-right:0px;
  2954. border-radius:0px;
  2955. border-bottom-right-radius:0px;
  2956. border-bottom-left-radius:0px;
  2957. -moz-box-shadow:none;
  2958. -webkit-box-shadow:none;
  2959. box-shadow:none;
  2960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2961. font-weight:400;
  2962. font-style:normal;
  2963. font-size:12px;
  2964. color:#7F7F7F;
  2965. }
  2966. #u3543 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:533px;
  2970. top:421px;
  2971. width:157px;
  2972. height:17px;
  2973. display:flex;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:12px;
  2978. color:#7F7F7F;
  2979. }
  2980. #u3543 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:0px 0px 0px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u3543_text {
  2988. border-width:0px;
  2989. white-space:nowrap;
  2990. text-transform:none;
  2991. }
  2992. #u3544 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:0px;
  2998. height:0px;
  2999. }
  3000. #u3545_div {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:240px;
  3006. height:80px;
  3007. background:inherit;
  3008. background-color:rgba(242, 242, 242, 1);
  3009. border:none;
  3010. border-radius:0px;
  3011. -moz-box-shadow:none;
  3012. -webkit-box-shadow:none;
  3013. box-shadow:none;
  3014. }
  3015. #u3545 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:735px;
  3019. top:375px;
  3020. width:240px;
  3021. height:80px;
  3022. display:flex;
  3023. }
  3024. #u3545 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 2px 2px 2px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u3545_text {
  3032. border-width:0px;
  3033. word-wrap:break-word;
  3034. text-transform:none;
  3035. visibility:hidden;
  3036. }
  3037. #u3546_img {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:50px;
  3043. height:53px;
  3044. }
  3045. #u3546 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:751px;
  3049. top:388px;
  3050. width:50px;
  3051. height:53px;
  3052. display:flex;
  3053. }
  3054. #u3546 .text {
  3055. position:absolute;
  3056. align-self:center;
  3057. padding:2px 2px 2px 2px;
  3058. box-sizing:border-box;
  3059. width:100%;
  3060. }
  3061. #u3546_text {
  3062. border-width:0px;
  3063. word-wrap:break-word;
  3064. text-transform:none;
  3065. visibility:hidden;
  3066. }
  3067. #u3547 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:0px;
  3073. height:0px;
  3074. }
  3075. #u3548_div {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:0px;
  3080. width:37px;
  3081. height:25px;
  3082. background:inherit;
  3083. background-color:rgba(255, 255, 255, 0);
  3084. border:none;
  3085. border-left:0px;
  3086. border-top:0px;
  3087. border-right:0px;
  3088. border-radius:0px;
  3089. border-bottom-right-radius:0px;
  3090. border-bottom-left-radius:0px;
  3091. -moz-box-shadow:none;
  3092. -webkit-box-shadow:none;
  3093. box-shadow:none;
  3094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3095. font-weight:400;
  3096. font-style:normal;
  3097. font-size:18px;
  3098. }
  3099. #u3548 {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:816px;
  3103. top:391px;
  3104. width:37px;
  3105. height:25px;
  3106. display:flex;
  3107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3108. font-weight:400;
  3109. font-style:normal;
  3110. font-size:18px;
  3111. }
  3112. #u3548 .text {
  3113. position:absolute;
  3114. align-self:center;
  3115. padding:0px 0px 0px 0px;
  3116. box-sizing:border-box;
  3117. width:100%;
  3118. }
  3119. #u3548_text {
  3120. border-width:0px;
  3121. white-space:nowrap;
  3122. text-transform:none;
  3123. }
  3124. #u3549_div {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:109px;
  3130. height:17px;
  3131. background:inherit;
  3132. background-color:rgba(255, 255, 255, 0);
  3133. border:none;
  3134. border-left:0px;
  3135. border-top:0px;
  3136. border-right:0px;
  3137. border-radius:0px;
  3138. border-bottom-right-radius:0px;
  3139. border-bottom-left-radius:0px;
  3140. -moz-box-shadow:none;
  3141. -webkit-box-shadow:none;
  3142. box-shadow:none;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. color:#7F7F7F;
  3148. }
  3149. #u3549 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:816px;
  3153. top:421px;
  3154. width:109px;
  3155. height:17px;
  3156. display:flex;
  3157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3158. font-weight:400;
  3159. font-style:normal;
  3160. font-size:12px;
  3161. color:#7F7F7F;
  3162. }
  3163. #u3549 .text {
  3164. position:absolute;
  3165. align-self:center;
  3166. padding:0px 0px 0px 0px;
  3167. box-sizing:border-box;
  3168. width:100%;
  3169. }
  3170. #u3549_text {
  3171. border-width:0px;
  3172. white-space:nowrap;
  3173. text-transform:none;
  3174. }
  3175. #u3550 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:0px;
  3181. height:0px;
  3182. }
  3183. #u3551_div {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:0px;
  3187. top:0px;
  3188. width:240px;
  3189. height:80px;
  3190. background:inherit;
  3191. background-color:rgba(242, 242, 242, 1);
  3192. border:none;
  3193. border-radius:0px;
  3194. -moz-box-shadow:none;
  3195. -webkit-box-shadow:none;
  3196. box-shadow:none;
  3197. }
  3198. #u3551 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:1017px;
  3202. top:375px;
  3203. width:240px;
  3204. height:80px;
  3205. display:flex;
  3206. }
  3207. #u3551 .text {
  3208. position:absolute;
  3209. align-self:center;
  3210. padding:2px 2px 2px 2px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u3551_text {
  3215. border-width:0px;
  3216. word-wrap:break-word;
  3217. text-transform:none;
  3218. visibility:hidden;
  3219. }
  3220. #u3552_img {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:50px;
  3226. height:53px;
  3227. }
  3228. #u3552 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:1033px;
  3232. top:388px;
  3233. width:50px;
  3234. height:53px;
  3235. display:flex;
  3236. }
  3237. #u3552 .text {
  3238. position:absolute;
  3239. align-self:center;
  3240. padding:2px 2px 2px 2px;
  3241. box-sizing:border-box;
  3242. width:100%;
  3243. }
  3244. #u3552_text {
  3245. border-width:0px;
  3246. word-wrap:break-word;
  3247. text-transform:none;
  3248. visibility:hidden;
  3249. }
  3250. #u3553 {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:0px;
  3256. height:0px;
  3257. }
  3258. #u3554_div {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:37px;
  3264. height:25px;
  3265. background:inherit;
  3266. background-color:rgba(255, 255, 255, 0);
  3267. border:none;
  3268. border-left:0px;
  3269. border-top:0px;
  3270. border-right:0px;
  3271. border-radius:0px;
  3272. border-bottom-right-radius:0px;
  3273. border-bottom-left-radius:0px;
  3274. -moz-box-shadow:none;
  3275. -webkit-box-shadow:none;
  3276. box-shadow:none;
  3277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3278. font-weight:400;
  3279. font-style:normal;
  3280. font-size:18px;
  3281. }
  3282. #u3554 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:1098px;
  3286. top:391px;
  3287. width:37px;
  3288. height:25px;
  3289. display:flex;
  3290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. font-size:18px;
  3294. }
  3295. #u3554 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:0px 0px 0px 0px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u3554_text {
  3303. border-width:0px;
  3304. white-space:nowrap;
  3305. text-transform:none;
  3306. }
  3307. #u3555_div {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:169px;
  3313. height:17px;
  3314. background:inherit;
  3315. background-color:rgba(255, 255, 255, 0);
  3316. border:none;
  3317. border-left:0px;
  3318. border-top:0px;
  3319. border-right:0px;
  3320. border-radius:0px;
  3321. border-bottom-right-radius:0px;
  3322. border-bottom-left-radius:0px;
  3323. -moz-box-shadow:none;
  3324. -webkit-box-shadow:none;
  3325. box-shadow:none;
  3326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. font-size:12px;
  3330. color:#7F7F7F;
  3331. }
  3332. #u3555 {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:1098px;
  3336. top:421px;
  3337. width:169px;
  3338. height:17px;
  3339. display:flex;
  3340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3341. font-weight:400;
  3342. font-style:normal;
  3343. font-size:12px;
  3344. color:#7F7F7F;
  3345. }
  3346. #u3555 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:0px 0px 0px 0px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u3555_text {
  3354. border-width:0px;
  3355. white-space:nowrap;
  3356. text-transform:none;
  3357. }
  3358. #u3556 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:0px;
  3362. top:0px;
  3363. width:0px;
  3364. height:0px;
  3365. }
  3366. #u3557_div {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:240px;
  3372. height:80px;
  3373. background:inherit;
  3374. background-color:rgba(242, 242, 242, 1);
  3375. border:none;
  3376. border-radius:0px;
  3377. -moz-box-shadow:none;
  3378. -webkit-box-shadow:none;
  3379. box-shadow:none;
  3380. }
  3381. #u3557 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:170px;
  3385. top:515px;
  3386. width:240px;
  3387. height:80px;
  3388. display:flex;
  3389. }
  3390. #u3557 .text {
  3391. position:absolute;
  3392. align-self:center;
  3393. padding:2px 2px 2px 2px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u3557_text {
  3398. border-width:0px;
  3399. word-wrap:break-word;
  3400. text-transform:none;
  3401. visibility:hidden;
  3402. }
  3403. #u3558_img {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:50px;
  3409. height:53px;
  3410. }
  3411. #u3558 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:186px;
  3415. top:528px;
  3416. width:50px;
  3417. height:53px;
  3418. display:flex;
  3419. }
  3420. #u3558 .text {
  3421. position:absolute;
  3422. align-self:center;
  3423. padding:2px 2px 2px 2px;
  3424. box-sizing:border-box;
  3425. width:100%;
  3426. }
  3427. #u3558_text {
  3428. border-width:0px;
  3429. word-wrap:break-word;
  3430. text-transform:none;
  3431. visibility:hidden;
  3432. }
  3433. #u3559 {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:0px;
  3439. height:0px;
  3440. }
  3441. #u3560_div {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:37px;
  3447. height:25px;
  3448. background:inherit;
  3449. background-color:rgba(255, 255, 255, 0);
  3450. border:none;
  3451. border-left:0px;
  3452. border-top:0px;
  3453. border-right:0px;
  3454. border-radius:0px;
  3455. border-bottom-right-radius:0px;
  3456. border-bottom-left-radius:0px;
  3457. -moz-box-shadow:none;
  3458. -webkit-box-shadow:none;
  3459. box-shadow:none;
  3460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:18px;
  3464. }
  3465. #u3560 {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:251px;
  3469. top:531px;
  3470. width:37px;
  3471. height:25px;
  3472. display:flex;
  3473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3474. font-weight:400;
  3475. font-style:normal;
  3476. font-size:18px;
  3477. }
  3478. #u3560 .text {
  3479. position:absolute;
  3480. align-self:center;
  3481. padding:0px 0px 0px 0px;
  3482. box-sizing:border-box;
  3483. width:100%;
  3484. }
  3485. #u3560_text {
  3486. border-width:0px;
  3487. white-space:nowrap;
  3488. text-transform:none;
  3489. }
  3490. #u3561_div {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:169px;
  3496. height:17px;
  3497. background:inherit;
  3498. background-color:rgba(255, 255, 255, 0);
  3499. border:none;
  3500. border-left:0px;
  3501. border-top:0px;
  3502. border-right:0px;
  3503. border-radius:0px;
  3504. border-bottom-right-radius:0px;
  3505. border-bottom-left-radius:0px;
  3506. -moz-box-shadow:none;
  3507. -webkit-box-shadow:none;
  3508. box-shadow:none;
  3509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3510. font-weight:400;
  3511. font-style:normal;
  3512. font-size:12px;
  3513. color:#7F7F7F;
  3514. }
  3515. #u3561 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:251px;
  3519. top:561px;
  3520. width:169px;
  3521. height:17px;
  3522. display:flex;
  3523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3524. font-weight:400;
  3525. font-style:normal;
  3526. font-size:12px;
  3527. color:#7F7F7F;
  3528. }
  3529. #u3561 .text {
  3530. position:absolute;
  3531. align-self:center;
  3532. padding:0px 0px 0px 0px;
  3533. box-sizing:border-box;
  3534. width:100%;
  3535. }
  3536. #u3561_text {
  3537. border-width:0px;
  3538. white-space:nowrap;
  3539. text-transform:none;
  3540. }
  3541. #u3562 {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:0px;
  3547. height:0px;
  3548. }
  3549. #u3563_div {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:240px;
  3555. height:80px;
  3556. background:inherit;
  3557. background-color:rgba(242, 242, 242, 1);
  3558. border:none;
  3559. border-radius:0px;
  3560. -moz-box-shadow:none;
  3561. -webkit-box-shadow:none;
  3562. box-shadow:none;
  3563. }
  3564. #u3563 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:453px;
  3568. top:515px;
  3569. width:240px;
  3570. height:80px;
  3571. display:flex;
  3572. }
  3573. #u3563 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:2px 2px 2px 2px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u3563_text {
  3581. border-width:0px;
  3582. word-wrap:break-word;
  3583. text-transform:none;
  3584. visibility:hidden;
  3585. }
  3586. #u3564_img {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:0px;
  3591. width:50px;
  3592. height:53px;
  3593. }
  3594. #u3564 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:469px;
  3598. top:528px;
  3599. width:50px;
  3600. height:53px;
  3601. display:flex;
  3602. }
  3603. #u3564 .text {
  3604. position:absolute;
  3605. align-self:center;
  3606. padding:2px 2px 2px 2px;
  3607. box-sizing:border-box;
  3608. width:100%;
  3609. }
  3610. #u3564_text {
  3611. border-width:0px;
  3612. word-wrap:break-word;
  3613. text-transform:none;
  3614. visibility:hidden;
  3615. }
  3616. #u3565 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:0px;
  3622. height:0px;
  3623. }
  3624. #u3566_div {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:37px;
  3630. height:25px;
  3631. background:inherit;
  3632. background-color:rgba(255, 255, 255, 0);
  3633. border:none;
  3634. border-left:0px;
  3635. border-top:0px;
  3636. border-right:0px;
  3637. border-radius:0px;
  3638. border-bottom-right-radius:0px;
  3639. border-bottom-left-radius:0px;
  3640. -moz-box-shadow:none;
  3641. -webkit-box-shadow:none;
  3642. box-shadow:none;
  3643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3644. font-weight:400;
  3645. font-style:normal;
  3646. font-size:18px;
  3647. }
  3648. #u3566 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:534px;
  3652. top:531px;
  3653. width:37px;
  3654. height:25px;
  3655. display:flex;
  3656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3657. font-weight:400;
  3658. font-style:normal;
  3659. font-size:18px;
  3660. }
  3661. #u3566 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:0px 0px 0px 0px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u3566_text {
  3669. border-width:0px;
  3670. white-space:nowrap;
  3671. text-transform:none;
  3672. }
  3673. #u3567_div {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:0px;
  3677. top:0px;
  3678. width:157px;
  3679. height:17px;
  3680. background:inherit;
  3681. background-color:rgba(255, 255, 255, 0);
  3682. border:none;
  3683. border-left:0px;
  3684. border-top:0px;
  3685. border-right:0px;
  3686. border-radius:0px;
  3687. border-bottom-right-radius:0px;
  3688. border-bottom-left-radius:0px;
  3689. -moz-box-shadow:none;
  3690. -webkit-box-shadow:none;
  3691. box-shadow:none;
  3692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3693. font-weight:400;
  3694. font-style:normal;
  3695. font-size:12px;
  3696. color:#7F7F7F;
  3697. }
  3698. #u3567 {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:534px;
  3702. top:561px;
  3703. width:157px;
  3704. height:17px;
  3705. display:flex;
  3706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3707. font-weight:400;
  3708. font-style:normal;
  3709. font-size:12px;
  3710. color:#7F7F7F;
  3711. }
  3712. #u3567 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:0px 0px 0px 0px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u3567_text {
  3720. border-width:0px;
  3721. white-space:nowrap;
  3722. text-transform:none;
  3723. }
  3724. #u3568 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:0px;
  3730. height:0px;
  3731. }
  3732. #u3569_div {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:240px;
  3738. height:80px;
  3739. background:inherit;
  3740. background-color:rgba(242, 242, 242, 1);
  3741. border:none;
  3742. border-radius:0px;
  3743. -moz-box-shadow:none;
  3744. -webkit-box-shadow:none;
  3745. box-shadow:none;
  3746. }
  3747. #u3569 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:735px;
  3751. top:515px;
  3752. width:240px;
  3753. height:80px;
  3754. display:flex;
  3755. }
  3756. #u3569 .text {
  3757. position:absolute;
  3758. align-self:center;
  3759. padding:2px 2px 2px 2px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u3569_text {
  3764. border-width:0px;
  3765. word-wrap:break-word;
  3766. text-transform:none;
  3767. visibility:hidden;
  3768. }
  3769. #u3570_img {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:50px;
  3775. height:53px;
  3776. }
  3777. #u3570 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:751px;
  3781. top:528px;
  3782. width:50px;
  3783. height:53px;
  3784. display:flex;
  3785. }
  3786. #u3570 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 2px 2px 2px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u3570_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u3571 {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:0px;
  3805. height:0px;
  3806. }
  3807. #u3572_div {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:0px;
  3811. top:0px;
  3812. width:37px;
  3813. height:25px;
  3814. background:inherit;
  3815. background-color:rgba(255, 255, 255, 0);
  3816. border:none;
  3817. border-left:0px;
  3818. border-top:0px;
  3819. border-right:0px;
  3820. border-radius:0px;
  3821. border-bottom-right-radius:0px;
  3822. border-bottom-left-radius:0px;
  3823. -moz-box-shadow:none;
  3824. -webkit-box-shadow:none;
  3825. box-shadow:none;
  3826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3827. font-weight:400;
  3828. font-style:normal;
  3829. font-size:18px;
  3830. }
  3831. #u3572 {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:816px;
  3835. top:531px;
  3836. width:37px;
  3837. height:25px;
  3838. display:flex;
  3839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3840. font-weight:400;
  3841. font-style:normal;
  3842. font-size:18px;
  3843. }
  3844. #u3572 .text {
  3845. position:absolute;
  3846. align-self:center;
  3847. padding:0px 0px 0px 0px;
  3848. box-sizing:border-box;
  3849. width:100%;
  3850. }
  3851. #u3572_text {
  3852. border-width:0px;
  3853. white-space:nowrap;
  3854. text-transform:none;
  3855. }
  3856. #u3573_div {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:193px;
  3862. height:17px;
  3863. background:inherit;
  3864. background-color:rgba(255, 255, 255, 0);
  3865. border:none;
  3866. border-left:0px;
  3867. border-top:0px;
  3868. border-right:0px;
  3869. border-radius:0px;
  3870. border-bottom-right-radius:0px;
  3871. border-bottom-left-radius:0px;
  3872. -moz-box-shadow:none;
  3873. -webkit-box-shadow:none;
  3874. box-shadow:none;
  3875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3876. font-weight:400;
  3877. font-style:normal;
  3878. font-size:12px;
  3879. color:#7F7F7F;
  3880. }
  3881. #u3573 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:816px;
  3885. top:561px;
  3886. width:193px;
  3887. height:17px;
  3888. display:flex;
  3889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:12px;
  3893. color:#7F7F7F;
  3894. }
  3895. #u3573 .text {
  3896. position:absolute;
  3897. align-self:center;
  3898. padding:0px 0px 0px 0px;
  3899. box-sizing:border-box;
  3900. width:100%;
  3901. }
  3902. #u3573_text {
  3903. border-width:0px;
  3904. white-space:nowrap;
  3905. text-transform:none;
  3906. }
  3907. #u3574 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:0px;
  3913. height:0px;
  3914. }
  3915. #u3575_div {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:0px;
  3919. top:0px;
  3920. width:240px;
  3921. height:80px;
  3922. background:inherit;
  3923. background-color:rgba(242, 242, 242, 1);
  3924. border:none;
  3925. border-radius:0px;
  3926. -moz-box-shadow:none;
  3927. -webkit-box-shadow:none;
  3928. box-shadow:none;
  3929. }
  3930. #u3575 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:1018px;
  3934. top:515px;
  3935. width:240px;
  3936. height:80px;
  3937. display:flex;
  3938. }
  3939. #u3575 .text {
  3940. position:absolute;
  3941. align-self:center;
  3942. padding:2px 2px 2px 2px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u3575_text {
  3947. border-width:0px;
  3948. word-wrap:break-word;
  3949. text-transform:none;
  3950. visibility:hidden;
  3951. }
  3952. #u3576_img {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:50px;
  3958. height:53px;
  3959. }
  3960. #u3576 {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:1034px;
  3964. top:528px;
  3965. width:50px;
  3966. height:53px;
  3967. display:flex;
  3968. }
  3969. #u3576 .text {
  3970. position:absolute;
  3971. align-self:center;
  3972. padding:2px 2px 2px 2px;
  3973. box-sizing:border-box;
  3974. width:100%;
  3975. }
  3976. #u3576_text {
  3977. border-width:0px;
  3978. word-wrap:break-word;
  3979. text-transform:none;
  3980. visibility:hidden;
  3981. }
  3982. #u3577 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:0px;
  3988. height:0px;
  3989. }
  3990. #u3578_div {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:0px;
  3994. top:0px;
  3995. width:37px;
  3996. height:25px;
  3997. background:inherit;
  3998. background-color:rgba(255, 255, 255, 0);
  3999. border:none;
  4000. border-left:0px;
  4001. border-top:0px;
  4002. border-right:0px;
  4003. border-radius:0px;
  4004. border-bottom-right-radius:0px;
  4005. border-bottom-left-radius:0px;
  4006. -moz-box-shadow:none;
  4007. -webkit-box-shadow:none;
  4008. box-shadow:none;
  4009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:18px;
  4013. }
  4014. #u3578 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:1099px;
  4018. top:531px;
  4019. width:37px;
  4020. height:25px;
  4021. display:flex;
  4022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:18px;
  4026. }
  4027. #u3578 .text {
  4028. position:absolute;
  4029. align-self:center;
  4030. padding:0px 0px 0px 0px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u3578_text {
  4035. border-width:0px;
  4036. white-space:nowrap;
  4037. text-transform:none;
  4038. }
  4039. #u3579_div {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:193px;
  4045. height:17px;
  4046. background:inherit;
  4047. background-color:rgba(255, 255, 255, 0);
  4048. border:none;
  4049. border-left:0px;
  4050. border-top:0px;
  4051. border-right:0px;
  4052. border-radius:0px;
  4053. border-bottom-right-radius:0px;
  4054. border-bottom-left-radius:0px;
  4055. -moz-box-shadow:none;
  4056. -webkit-box-shadow:none;
  4057. box-shadow:none;
  4058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4059. font-weight:400;
  4060. font-style:normal;
  4061. font-size:12px;
  4062. color:#7F7F7F;
  4063. }
  4064. #u3579 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:1099px;
  4068. top:561px;
  4069. width:193px;
  4070. height:17px;
  4071. display:flex;
  4072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:12px;
  4076. color:#7F7F7F;
  4077. }
  4078. #u3579 .text {
  4079. position:absolute;
  4080. align-self:center;
  4081. padding:0px 0px 0px 0px;
  4082. box-sizing:border-box;
  4083. width:100%;
  4084. }
  4085. #u3579_text {
  4086. border-width:0px;
  4087. white-space:nowrap;
  4088. text-transform:none;
  4089. }
  4090. #u3580 {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:0px;
  4096. height:0px;
  4097. }
  4098. #u3581_div {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:240px;
  4104. height:80px;
  4105. background:inherit;
  4106. background-color:rgba(242, 242, 242, 1);
  4107. border:none;
  4108. border-radius:0px;
  4109. -moz-box-shadow:none;
  4110. -webkit-box-shadow:none;
  4111. box-shadow:none;
  4112. }
  4113. #u3581 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:1300px;
  4117. top:515px;
  4118. width:240px;
  4119. height:80px;
  4120. display:flex;
  4121. }
  4122. #u3581 .text {
  4123. position:absolute;
  4124. align-self:center;
  4125. padding:2px 2px 2px 2px;
  4126. box-sizing:border-box;
  4127. width:100%;
  4128. }
  4129. #u3581_text {
  4130. border-width:0px;
  4131. word-wrap:break-word;
  4132. text-transform:none;
  4133. visibility:hidden;
  4134. }
  4135. #u3582_img {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:0px;
  4139. top:0px;
  4140. width:50px;
  4141. height:53px;
  4142. }
  4143. #u3582 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:1316px;
  4147. top:528px;
  4148. width:50px;
  4149. height:53px;
  4150. display:flex;
  4151. }
  4152. #u3582 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:2px 2px 2px 2px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u3582_text {
  4160. border-width:0px;
  4161. word-wrap:break-word;
  4162. text-transform:none;
  4163. visibility:hidden;
  4164. }
  4165. #u3583 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:0px;
  4171. height:0px;
  4172. }
  4173. #u3584_div {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:0px;
  4177. top:0px;
  4178. width:37px;
  4179. height:25px;
  4180. background:inherit;
  4181. background-color:rgba(255, 255, 255, 0);
  4182. border:none;
  4183. border-left:0px;
  4184. border-top:0px;
  4185. border-right:0px;
  4186. border-radius:0px;
  4187. border-bottom-right-radius:0px;
  4188. border-bottom-left-radius:0px;
  4189. -moz-box-shadow:none;
  4190. -webkit-box-shadow:none;
  4191. box-shadow:none;
  4192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4193. font-weight:400;
  4194. font-style:normal;
  4195. font-size:18px;
  4196. }
  4197. #u3584 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:1381px;
  4201. top:531px;
  4202. width:37px;
  4203. height:25px;
  4204. display:flex;
  4205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. font-size:18px;
  4209. }
  4210. #u3584 .text {
  4211. position:absolute;
  4212. align-self:center;
  4213. padding:0px 0px 0px 0px;
  4214. box-sizing:border-box;
  4215. width:100%;
  4216. }
  4217. #u3584_text {
  4218. border-width:0px;
  4219. white-space:nowrap;
  4220. text-transform:none;
  4221. }
  4222. #u3585_div {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:0px;
  4226. top:0px;
  4227. width:175px;
  4228. height:17px;
  4229. background:inherit;
  4230. background-color:rgba(255, 255, 255, 0);
  4231. border:none;
  4232. border-left:0px;
  4233. border-top:0px;
  4234. border-right:0px;
  4235. border-radius:0px;
  4236. border-bottom-right-radius:0px;
  4237. border-bottom-left-radius:0px;
  4238. -moz-box-shadow:none;
  4239. -webkit-box-shadow:none;
  4240. box-shadow:none;
  4241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4242. font-weight:400;
  4243. font-style:normal;
  4244. font-size:12px;
  4245. color:#7F7F7F;
  4246. }
  4247. #u3585 {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:1381px;
  4251. top:561px;
  4252. width:175px;
  4253. height:17px;
  4254. display:flex;
  4255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4256. font-weight:400;
  4257. font-style:normal;
  4258. font-size:12px;
  4259. color:#7F7F7F;
  4260. }
  4261. #u3585 .text {
  4262. position:absolute;
  4263. align-self:center;
  4264. padding:0px 0px 0px 0px;
  4265. box-sizing:border-box;
  4266. width:100%;
  4267. }
  4268. #u3585_text {
  4269. border-width:0px;
  4270. white-space:nowrap;
  4271. text-transform:none;
  4272. }
  4273. #u3586 {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:0px;
  4279. height:0px;
  4280. }
  4281. #u3587_div {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:240px;
  4287. height:80px;
  4288. background:inherit;
  4289. background-color:rgba(242, 242, 242, 1);
  4290. border:none;
  4291. border-radius:0px;
  4292. -moz-box-shadow:none;
  4293. -webkit-box-shadow:none;
  4294. box-shadow:none;
  4295. }
  4296. #u3587 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:735px;
  4300. top:615px;
  4301. width:240px;
  4302. height:80px;
  4303. display:flex;
  4304. }
  4305. #u3587 .text {
  4306. position:absolute;
  4307. align-self:center;
  4308. padding:2px 2px 2px 2px;
  4309. box-sizing:border-box;
  4310. width:100%;
  4311. }
  4312. #u3587_text {
  4313. border-width:0px;
  4314. word-wrap:break-word;
  4315. text-transform:none;
  4316. visibility:hidden;
  4317. }
  4318. #u3588_img {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:50px;
  4324. height:53px;
  4325. }
  4326. #u3588 {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:751px;
  4330. top:628px;
  4331. width:50px;
  4332. height:53px;
  4333. display:flex;
  4334. }
  4335. #u3588 .text {
  4336. position:absolute;
  4337. align-self:center;
  4338. padding:2px 2px 2px 2px;
  4339. box-sizing:border-box;
  4340. width:100%;
  4341. }
  4342. #u3588_text {
  4343. border-width:0px;
  4344. word-wrap:break-word;
  4345. text-transform:none;
  4346. visibility:hidden;
  4347. }
  4348. #u3589 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:0px;
  4354. height:0px;
  4355. }
  4356. #u3590_div {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:37px;
  4362. height:25px;
  4363. background:inherit;
  4364. background-color:rgba(255, 255, 255, 0);
  4365. border:none;
  4366. border-left:0px;
  4367. border-top:0px;
  4368. border-right:0px;
  4369. border-radius:0px;
  4370. border-bottom-right-radius:0px;
  4371. border-bottom-left-radius:0px;
  4372. -moz-box-shadow:none;
  4373. -webkit-box-shadow:none;
  4374. box-shadow:none;
  4375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. font-size:18px;
  4379. }
  4380. #u3590 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:816px;
  4384. top:631px;
  4385. width:37px;
  4386. height:25px;
  4387. display:flex;
  4388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:18px;
  4392. }
  4393. #u3590 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:0px 0px 0px 0px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u3590_text {
  4401. border-width:0px;
  4402. white-space:nowrap;
  4403. text-transform:none;
  4404. }
  4405. #u3591_div {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:133px;
  4411. height:17px;
  4412. background:inherit;
  4413. background-color:rgba(255, 255, 255, 0);
  4414. border:none;
  4415. border-left:0px;
  4416. border-top:0px;
  4417. border-right:0px;
  4418. border-radius:0px;
  4419. border-bottom-right-radius:0px;
  4420. border-bottom-left-radius:0px;
  4421. -moz-box-shadow:none;
  4422. -webkit-box-shadow:none;
  4423. box-shadow:none;
  4424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4425. font-weight:400;
  4426. font-style:normal;
  4427. font-size:12px;
  4428. color:#7F7F7F;
  4429. }
  4430. #u3591 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:816px;
  4434. top:661px;
  4435. width:133px;
  4436. height:17px;
  4437. display:flex;
  4438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:12px;
  4442. color:#7F7F7F;
  4443. }
  4444. #u3591 .text {
  4445. position:absolute;
  4446. align-self:center;
  4447. padding:0px 0px 0px 0px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u3591_text {
  4452. border-width:0px;
  4453. white-space:nowrap;
  4454. text-transform:none;
  4455. }
  4456. #u3592 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:0px;
  4462. height:0px;
  4463. }
  4464. #u3593_div {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:240px;
  4470. height:80px;
  4471. background:inherit;
  4472. background-color:rgba(242, 242, 242, 1);
  4473. border:none;
  4474. border-radius:0px;
  4475. -moz-box-shadow:none;
  4476. -webkit-box-shadow:none;
  4477. box-shadow:none;
  4478. }
  4479. #u3593 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:1018px;
  4483. top:615px;
  4484. width:240px;
  4485. height:80px;
  4486. display:flex;
  4487. }
  4488. #u3593 .text {
  4489. position:absolute;
  4490. align-self:center;
  4491. padding:2px 2px 2px 2px;
  4492. box-sizing:border-box;
  4493. width:100%;
  4494. }
  4495. #u3593_text {
  4496. border-width:0px;
  4497. word-wrap:break-word;
  4498. text-transform:none;
  4499. visibility:hidden;
  4500. }
  4501. #u3594_img {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:50px;
  4507. height:53px;
  4508. }
  4509. #u3594 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:1034px;
  4513. top:628px;
  4514. width:50px;
  4515. height:53px;
  4516. display:flex;
  4517. }
  4518. #u3594 .text {
  4519. position:absolute;
  4520. align-self:center;
  4521. padding:2px 2px 2px 2px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u3594_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. visibility:hidden;
  4530. }
  4531. #u3595 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:0px;
  4537. height:0px;
  4538. }
  4539. #u3596_div {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:0px;
  4543. top:0px;
  4544. width:37px;
  4545. height:25px;
  4546. background:inherit;
  4547. background-color:rgba(255, 255, 255, 0);
  4548. border:none;
  4549. border-left:0px;
  4550. border-top:0px;
  4551. border-right:0px;
  4552. border-radius:0px;
  4553. border-bottom-right-radius:0px;
  4554. border-bottom-left-radius:0px;
  4555. -moz-box-shadow:none;
  4556. -webkit-box-shadow:none;
  4557. box-shadow:none;
  4558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:18px;
  4562. }
  4563. #u3596 {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:1099px;
  4567. top:631px;
  4568. width:37px;
  4569. height:25px;
  4570. display:flex;
  4571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:18px;
  4575. }
  4576. #u3596 .text {
  4577. position:absolute;
  4578. align-self:center;
  4579. padding:0px 0px 0px 0px;
  4580. box-sizing:border-box;
  4581. width:100%;
  4582. }
  4583. #u3596_text {
  4584. border-width:0px;
  4585. white-space:nowrap;
  4586. text-transform:none;
  4587. }
  4588. #u3597_div {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:133px;
  4594. height:17px;
  4595. background:inherit;
  4596. background-color:rgba(255, 255, 255, 0);
  4597. border:none;
  4598. border-left:0px;
  4599. border-top:0px;
  4600. border-right:0px;
  4601. border-radius:0px;
  4602. border-bottom-right-radius:0px;
  4603. border-bottom-left-radius:0px;
  4604. -moz-box-shadow:none;
  4605. -webkit-box-shadow:none;
  4606. box-shadow:none;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:12px;
  4611. color:#7F7F7F;
  4612. }
  4613. #u3597 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:1099px;
  4617. top:661px;
  4618. width:133px;
  4619. height:17px;
  4620. display:flex;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:12px;
  4625. color:#7F7F7F;
  4626. }
  4627. #u3597 .text {
  4628. position:absolute;
  4629. align-self:center;
  4630. padding:0px 0px 0px 0px;
  4631. box-sizing:border-box;
  4632. width:100%;
  4633. }
  4634. #u3597_text {
  4635. border-width:0px;
  4636. white-space:nowrap;
  4637. text-transform:none;
  4638. }
  4639. #u3598 {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:0px;
  4643. top:0px;
  4644. width:0px;
  4645. height:0px;
  4646. }
  4647. #u3599_div {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:0px;
  4652. width:240px;
  4653. height:80px;
  4654. background:inherit;
  4655. background-color:rgba(242, 242, 242, 1);
  4656. border:none;
  4657. border-radius:0px;
  4658. -moz-box-shadow:none;
  4659. -webkit-box-shadow:none;
  4660. box-shadow:none;
  4661. }
  4662. #u3599 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:170px;
  4666. top:755px;
  4667. width:240px;
  4668. height:80px;
  4669. display:flex;
  4670. }
  4671. #u3599 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:2px 2px 2px 2px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u3599_text {
  4679. border-width:0px;
  4680. word-wrap:break-word;
  4681. text-transform:none;
  4682. visibility:hidden;
  4683. }
  4684. #u3600_img {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:0px;
  4688. top:0px;
  4689. width:50px;
  4690. height:53px;
  4691. }
  4692. #u3600 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:186px;
  4696. top:768px;
  4697. width:50px;
  4698. height:53px;
  4699. display:flex;
  4700. }
  4701. #u3600 .text {
  4702. position:absolute;
  4703. align-self:center;
  4704. padding:2px 2px 2px 2px;
  4705. box-sizing:border-box;
  4706. width:100%;
  4707. }
  4708. #u3600_text {
  4709. border-width:0px;
  4710. word-wrap:break-word;
  4711. text-transform:none;
  4712. visibility:hidden;
  4713. }
  4714. #u3601 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:0px;
  4720. height:0px;
  4721. }
  4722. #u3602_div {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:37px;
  4728. height:25px;
  4729. background:inherit;
  4730. background-color:rgba(255, 255, 255, 0);
  4731. border:none;
  4732. border-left:0px;
  4733. border-top:0px;
  4734. border-right:0px;
  4735. border-radius:0px;
  4736. border-bottom-right-radius:0px;
  4737. border-bottom-left-radius:0px;
  4738. -moz-box-shadow:none;
  4739. -webkit-box-shadow:none;
  4740. box-shadow:none;
  4741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:18px;
  4745. }
  4746. #u3602 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:251px;
  4750. top:771px;
  4751. width:37px;
  4752. height:25px;
  4753. display:flex;
  4754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4755. font-weight:400;
  4756. font-style:normal;
  4757. font-size:18px;
  4758. }
  4759. #u3602 .text {
  4760. position:absolute;
  4761. align-self:center;
  4762. padding:0px 0px 0px 0px;
  4763. box-sizing:border-box;
  4764. width:100%;
  4765. }
  4766. #u3602_text {
  4767. border-width:0px;
  4768. white-space:nowrap;
  4769. text-transform:none;
  4770. }
  4771. #u3603_div {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:133px;
  4777. height:17px;
  4778. background:inherit;
  4779. background-color:rgba(255, 255, 255, 0);
  4780. border:none;
  4781. border-left:0px;
  4782. border-top:0px;
  4783. border-right:0px;
  4784. border-radius:0px;
  4785. border-bottom-right-radius:0px;
  4786. border-bottom-left-radius:0px;
  4787. -moz-box-shadow:none;
  4788. -webkit-box-shadow:none;
  4789. box-shadow:none;
  4790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4791. font-weight:400;
  4792. font-style:normal;
  4793. font-size:12px;
  4794. color:#7F7F7F;
  4795. }
  4796. #u3603 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:251px;
  4800. top:801px;
  4801. width:133px;
  4802. height:17px;
  4803. display:flex;
  4804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4805. font-weight:400;
  4806. font-style:normal;
  4807. font-size:12px;
  4808. color:#7F7F7F;
  4809. }
  4810. #u3603 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:0px 0px 0px 0px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u3603_text {
  4818. border-width:0px;
  4819. white-space:nowrap;
  4820. text-transform:none;
  4821. }
  4822. #u3604 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:0px;
  4828. height:0px;
  4829. }
  4830. #u3605_div {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:0px;
  4834. top:0px;
  4835. width:240px;
  4836. height:80px;
  4837. background:inherit;
  4838. background-color:rgba(242, 242, 242, 1);
  4839. border:none;
  4840. border-radius:0px;
  4841. -moz-box-shadow:none;
  4842. -webkit-box-shadow:none;
  4843. box-shadow:none;
  4844. }
  4845. #u3605 {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:453px;
  4849. top:755px;
  4850. width:240px;
  4851. height:80px;
  4852. display:flex;
  4853. }
  4854. #u3605 .text {
  4855. position:absolute;
  4856. align-self:center;
  4857. padding:2px 2px 2px 2px;
  4858. box-sizing:border-box;
  4859. width:100%;
  4860. }
  4861. #u3605_text {
  4862. border-width:0px;
  4863. word-wrap:break-word;
  4864. text-transform:none;
  4865. visibility:hidden;
  4866. }
  4867. #u3606_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:50px;
  4873. height:53px;
  4874. }
  4875. #u3606 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:469px;
  4879. top:768px;
  4880. width:50px;
  4881. height:53px;
  4882. display:flex;
  4883. }
  4884. #u3606 .text {
  4885. position:absolute;
  4886. align-self:center;
  4887. padding:2px 2px 2px 2px;
  4888. box-sizing:border-box;
  4889. width:100%;
  4890. }
  4891. #u3606_text {
  4892. border-width:0px;
  4893. word-wrap:break-word;
  4894. text-transform:none;
  4895. visibility:hidden;
  4896. }
  4897. #u3607 {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:0px;
  4903. height:0px;
  4904. }
  4905. #u3608_div {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:37px;
  4911. height:25px;
  4912. background:inherit;
  4913. background-color:rgba(255, 255, 255, 0);
  4914. border:none;
  4915. border-left:0px;
  4916. border-top:0px;
  4917. border-right:0px;
  4918. border-radius:0px;
  4919. border-bottom-right-radius:0px;
  4920. border-bottom-left-radius:0px;
  4921. -moz-box-shadow:none;
  4922. -webkit-box-shadow:none;
  4923. box-shadow:none;
  4924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4925. font-weight:400;
  4926. font-style:normal;
  4927. font-size:18px;
  4928. }
  4929. #u3608 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:534px;
  4933. top:771px;
  4934. width:37px;
  4935. height:25px;
  4936. display:flex;
  4937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4938. font-weight:400;
  4939. font-style:normal;
  4940. font-size:18px;
  4941. }
  4942. #u3608 .text {
  4943. position:absolute;
  4944. align-self:center;
  4945. padding:0px 0px 0px 0px;
  4946. box-sizing:border-box;
  4947. width:100%;
  4948. }
  4949. #u3608_text {
  4950. border-width:0px;
  4951. white-space:nowrap;
  4952. text-transform:none;
  4953. }
  4954. #u3609_div {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:133px;
  4960. height:17px;
  4961. background:inherit;
  4962. background-color:rgba(255, 255, 255, 0);
  4963. border:none;
  4964. border-left:0px;
  4965. border-top:0px;
  4966. border-right:0px;
  4967. border-radius:0px;
  4968. border-bottom-right-radius:0px;
  4969. border-bottom-left-radius:0px;
  4970. -moz-box-shadow:none;
  4971. -webkit-box-shadow:none;
  4972. box-shadow:none;
  4973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4974. font-weight:400;
  4975. font-style:normal;
  4976. font-size:12px;
  4977. color:#7F7F7F;
  4978. }
  4979. #u3609 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:534px;
  4983. top:801px;
  4984. width:133px;
  4985. height:17px;
  4986. display:flex;
  4987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4988. font-weight:400;
  4989. font-style:normal;
  4990. font-size:12px;
  4991. color:#7F7F7F;
  4992. }
  4993. #u3609 .text {
  4994. position:absolute;
  4995. align-self:center;
  4996. padding:0px 0px 0px 0px;
  4997. box-sizing:border-box;
  4998. width:100%;
  4999. }
  5000. #u3609_text {
  5001. border-width:0px;
  5002. white-space:nowrap;
  5003. text-transform:none;
  5004. }
  5005. #u3610 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:0px;
  5011. height:0px;
  5012. }
  5013. #u3611_div {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:240px;
  5019. height:80px;
  5020. background:inherit;
  5021. background-color:rgba(242, 242, 242, 1);
  5022. border:none;
  5023. border-radius:0px;
  5024. -moz-box-shadow:none;
  5025. -webkit-box-shadow:none;
  5026. box-shadow:none;
  5027. }
  5028. #u3611 {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:453px;
  5032. top:894px;
  5033. width:240px;
  5034. height:80px;
  5035. display:flex;
  5036. }
  5037. #u3611 .text {
  5038. position:absolute;
  5039. align-self:center;
  5040. padding:2px 2px 2px 2px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u3611_text {
  5045. border-width:0px;
  5046. word-wrap:break-word;
  5047. text-transform:none;
  5048. visibility:hidden;
  5049. }
  5050. #u3612_img {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:50px;
  5056. height:53px;
  5057. }
  5058. #u3612 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:469px;
  5062. top:907px;
  5063. width:50px;
  5064. height:53px;
  5065. display:flex;
  5066. }
  5067. #u3612 .text {
  5068. position:absolute;
  5069. align-self:center;
  5070. padding:2px 2px 2px 2px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u3612_text {
  5075. border-width:0px;
  5076. word-wrap:break-word;
  5077. text-transform:none;
  5078. visibility:hidden;
  5079. }
  5080. #u3613 {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:0px;
  5086. height:0px;
  5087. }
  5088. #u3614_div {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:0px;
  5092. top:0px;
  5093. width:37px;
  5094. height:25px;
  5095. background:inherit;
  5096. background-color:rgba(255, 255, 255, 0);
  5097. border:none;
  5098. border-left:0px;
  5099. border-top:0px;
  5100. border-right:0px;
  5101. border-radius:0px;
  5102. border-bottom-right-radius:0px;
  5103. border-bottom-left-radius:0px;
  5104. -moz-box-shadow:none;
  5105. -webkit-box-shadow:none;
  5106. box-shadow:none;
  5107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5108. font-weight:400;
  5109. font-style:normal;
  5110. font-size:18px;
  5111. }
  5112. #u3614 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:534px;
  5116. top:910px;
  5117. width:37px;
  5118. height:25px;
  5119. display:flex;
  5120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:18px;
  5124. }
  5125. #u3614 .text {
  5126. position:absolute;
  5127. align-self:center;
  5128. padding:0px 0px 0px 0px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u3614_text {
  5133. border-width:0px;
  5134. white-space:nowrap;
  5135. text-transform:none;
  5136. }
  5137. #u3615_div {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:133px;
  5143. height:17px;
  5144. background:inherit;
  5145. background-color:rgba(255, 255, 255, 0);
  5146. border:none;
  5147. border-left:0px;
  5148. border-top:0px;
  5149. border-right:0px;
  5150. border-radius:0px;
  5151. border-bottom-right-radius:0px;
  5152. border-bottom-left-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:12px;
  5160. color:#7F7F7F;
  5161. }
  5162. #u3615 {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:534px;
  5166. top:940px;
  5167. width:133px;
  5168. height:17px;
  5169. display:flex;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:12px;
  5174. color:#7F7F7F;
  5175. }
  5176. #u3615 .text {
  5177. position:absolute;
  5178. align-self:center;
  5179. padding:0px 0px 0px 0px;
  5180. box-sizing:border-box;
  5181. width:100%;
  5182. }
  5183. #u3615_text {
  5184. border-width:0px;
  5185. white-space:nowrap;
  5186. text-transform:none;
  5187. }
  5188. #u3616 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:0px;
  5194. height:0px;
  5195. }
  5196. #u3617_div {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:240px;
  5202. height:80px;
  5203. background:inherit;
  5204. background-color:rgba(242, 242, 242, 1);
  5205. border:none;
  5206. border-radius:0px;
  5207. -moz-box-shadow:none;
  5208. -webkit-box-shadow:none;
  5209. box-shadow:none;
  5210. }
  5211. #u3617 {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:170px;
  5215. top:894px;
  5216. width:240px;
  5217. height:80px;
  5218. display:flex;
  5219. }
  5220. #u3617 .text {
  5221. position:absolute;
  5222. align-self:center;
  5223. padding:2px 2px 2px 2px;
  5224. box-sizing:border-box;
  5225. width:100%;
  5226. }
  5227. #u3617_text {
  5228. border-width:0px;
  5229. word-wrap:break-word;
  5230. text-transform:none;
  5231. visibility:hidden;
  5232. }
  5233. #u3618_img {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:50px;
  5239. height:53px;
  5240. }
  5241. #u3618 {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:186px;
  5245. top:907px;
  5246. width:50px;
  5247. height:53px;
  5248. display:flex;
  5249. }
  5250. #u3618 .text {
  5251. position:absolute;
  5252. align-self:center;
  5253. padding:2px 2px 2px 2px;
  5254. box-sizing:border-box;
  5255. width:100%;
  5256. }
  5257. #u3618_text {
  5258. border-width:0px;
  5259. word-wrap:break-word;
  5260. text-transform:none;
  5261. visibility:hidden;
  5262. }
  5263. #u3619 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:0px;
  5267. top:0px;
  5268. width:0px;
  5269. height:0px;
  5270. }
  5271. #u3620_div {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:0px;
  5275. top:0px;
  5276. width:37px;
  5277. height:25px;
  5278. background:inherit;
  5279. background-color:rgba(255, 255, 255, 0);
  5280. border:none;
  5281. border-left:0px;
  5282. border-top:0px;
  5283. border-right:0px;
  5284. border-radius:0px;
  5285. border-bottom-right-radius:0px;
  5286. border-bottom-left-radius:0px;
  5287. -moz-box-shadow:none;
  5288. -webkit-box-shadow:none;
  5289. box-shadow:none;
  5290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5291. font-weight:400;
  5292. font-style:normal;
  5293. font-size:18px;
  5294. }
  5295. #u3620 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:251px;
  5299. top:910px;
  5300. width:37px;
  5301. height:25px;
  5302. display:flex;
  5303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:18px;
  5307. }
  5308. #u3620 .text {
  5309. position:absolute;
  5310. align-self:center;
  5311. padding:0px 0px 0px 0px;
  5312. box-sizing:border-box;
  5313. width:100%;
  5314. }
  5315. #u3620_text {
  5316. border-width:0px;
  5317. white-space:nowrap;
  5318. text-transform:none;
  5319. }
  5320. #u3621_div {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:133px;
  5326. height:17px;
  5327. background:inherit;
  5328. background-color:rgba(255, 255, 255, 0);
  5329. border:none;
  5330. border-left:0px;
  5331. border-top:0px;
  5332. border-right:0px;
  5333. border-radius:0px;
  5334. border-bottom-right-radius:0px;
  5335. border-bottom-left-radius:0px;
  5336. -moz-box-shadow:none;
  5337. -webkit-box-shadow:none;
  5338. box-shadow:none;
  5339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. font-size:12px;
  5343. color:#7F7F7F;
  5344. }
  5345. #u3621 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:251px;
  5349. top:940px;
  5350. width:133px;
  5351. height:17px;
  5352. display:flex;
  5353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5354. font-weight:400;
  5355. font-style:normal;
  5356. font-size:12px;
  5357. color:#7F7F7F;
  5358. }
  5359. #u3621 .text {
  5360. position:absolute;
  5361. align-self:center;
  5362. padding:0px 0px 0px 0px;
  5363. box-sizing:border-box;
  5364. width:100%;
  5365. }
  5366. #u3621_text {
  5367. border-width:0px;
  5368. white-space:nowrap;
  5369. text-transform:none;
  5370. }
  5371. #u3622 {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:0px;
  5377. height:0px;
  5378. }
  5379. #u3623_div {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:240px;
  5385. height:80px;
  5386. background:inherit;
  5387. background-color:rgba(242, 242, 242, 1);
  5388. border:none;
  5389. border-radius:0px;
  5390. -moz-box-shadow:none;
  5391. -webkit-box-shadow:none;
  5392. box-shadow:none;
  5393. }
  5394. #u3623 {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:735px;
  5398. top:894px;
  5399. width:240px;
  5400. height:80px;
  5401. display:flex;
  5402. }
  5403. #u3623 .text {
  5404. position:absolute;
  5405. align-self:center;
  5406. padding:2px 2px 2px 2px;
  5407. box-sizing:border-box;
  5408. width:100%;
  5409. }
  5410. #u3623_text {
  5411. border-width:0px;
  5412. word-wrap:break-word;
  5413. text-transform:none;
  5414. visibility:hidden;
  5415. }
  5416. #u3624_img {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:50px;
  5422. height:53px;
  5423. }
  5424. #u3624 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:751px;
  5428. top:907px;
  5429. width:50px;
  5430. height:53px;
  5431. display:flex;
  5432. }
  5433. #u3624 .text {
  5434. position:absolute;
  5435. align-self:center;
  5436. padding:2px 2px 2px 2px;
  5437. box-sizing:border-box;
  5438. width:100%;
  5439. }
  5440. #u3624_text {
  5441. border-width:0px;
  5442. word-wrap:break-word;
  5443. text-transform:none;
  5444. visibility:hidden;
  5445. }
  5446. #u3625 {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:0px;
  5450. top:0px;
  5451. width:0px;
  5452. height:0px;
  5453. }
  5454. #u3626_div {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:37px;
  5460. height:25px;
  5461. background:inherit;
  5462. background-color:rgba(255, 255, 255, 0);
  5463. border:none;
  5464. border-left:0px;
  5465. border-top:0px;
  5466. border-right:0px;
  5467. border-radius:0px;
  5468. border-bottom-right-radius:0px;
  5469. border-bottom-left-radius:0px;
  5470. -moz-box-shadow:none;
  5471. -webkit-box-shadow:none;
  5472. box-shadow:none;
  5473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5474. font-weight:400;
  5475. font-style:normal;
  5476. font-size:18px;
  5477. }
  5478. #u3626 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:816px;
  5482. top:910px;
  5483. width:37px;
  5484. height:25px;
  5485. display:flex;
  5486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. font-size:18px;
  5490. }
  5491. #u3626 .text {
  5492. position:absolute;
  5493. align-self:center;
  5494. padding:0px 0px 0px 0px;
  5495. box-sizing:border-box;
  5496. width:100%;
  5497. }
  5498. #u3626_text {
  5499. border-width:0px;
  5500. white-space:nowrap;
  5501. text-transform:none;
  5502. }
  5503. #u3627_div {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:181px;
  5509. height:17px;
  5510. background:inherit;
  5511. background-color:rgba(255, 255, 255, 0);
  5512. border:none;
  5513. border-left:0px;
  5514. border-top:0px;
  5515. border-right:0px;
  5516. border-radius:0px;
  5517. border-bottom-right-radius:0px;
  5518. border-bottom-left-radius:0px;
  5519. -moz-box-shadow:none;
  5520. -webkit-box-shadow:none;
  5521. box-shadow:none;
  5522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5523. font-weight:400;
  5524. font-style:normal;
  5525. font-size:12px;
  5526. color:#7F7F7F;
  5527. }
  5528. #u3627 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:816px;
  5532. top:940px;
  5533. width:181px;
  5534. height:17px;
  5535. display:flex;
  5536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5537. font-weight:400;
  5538. font-style:normal;
  5539. font-size:12px;
  5540. color:#7F7F7F;
  5541. }
  5542. #u3627 .text {
  5543. position:absolute;
  5544. align-self:center;
  5545. padding:0px 0px 0px 0px;
  5546. box-sizing:border-box;
  5547. width:100%;
  5548. }
  5549. #u3627_text {
  5550. border-width:0px;
  5551. white-space:nowrap;
  5552. text-transform:none;
  5553. }
  5554. #u3628 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:0px;
  5560. height:0px;
  5561. }
  5562. #u3629_div {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:240px;
  5568. height:80px;
  5569. background:inherit;
  5570. background-color:rgba(242, 242, 242, 1);
  5571. border:none;
  5572. border-radius:0px;
  5573. -moz-box-shadow:none;
  5574. -webkit-box-shadow:none;
  5575. box-shadow:none;
  5576. }
  5577. #u3629 {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:170px;
  5581. top:615px;
  5582. width:240px;
  5583. height:80px;
  5584. display:flex;
  5585. }
  5586. #u3629 .text {
  5587. position:absolute;
  5588. align-self:center;
  5589. padding:2px 2px 2px 2px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u3629_text {
  5594. border-width:0px;
  5595. word-wrap:break-word;
  5596. text-transform:none;
  5597. visibility:hidden;
  5598. }
  5599. #u3630_img {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:50px;
  5605. height:53px;
  5606. }
  5607. #u3630 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:186px;
  5611. top:628px;
  5612. width:50px;
  5613. height:53px;
  5614. display:flex;
  5615. }
  5616. #u3630 .text {
  5617. position:absolute;
  5618. align-self:center;
  5619. padding:2px 2px 2px 2px;
  5620. box-sizing:border-box;
  5621. width:100%;
  5622. }
  5623. #u3630_text {
  5624. border-width:0px;
  5625. word-wrap:break-word;
  5626. text-transform:none;
  5627. visibility:hidden;
  5628. }
  5629. #u3631 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:0px;
  5633. top:0px;
  5634. width:0px;
  5635. height:0px;
  5636. }
  5637. #u3632_div {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:37px;
  5643. height:25px;
  5644. background:inherit;
  5645. background-color:rgba(255, 255, 255, 0);
  5646. border:none;
  5647. border-left:0px;
  5648. border-top:0px;
  5649. border-right:0px;
  5650. border-radius:0px;
  5651. border-bottom-right-radius:0px;
  5652. border-bottom-left-radius:0px;
  5653. -moz-box-shadow:none;
  5654. -webkit-box-shadow:none;
  5655. box-shadow:none;
  5656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5657. font-weight:400;
  5658. font-style:normal;
  5659. font-size:18px;
  5660. }
  5661. #u3632 {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:251px;
  5665. top:631px;
  5666. width:37px;
  5667. height:25px;
  5668. display:flex;
  5669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5670. font-weight:400;
  5671. font-style:normal;
  5672. font-size:18px;
  5673. }
  5674. #u3632 .text {
  5675. position:absolute;
  5676. align-self:center;
  5677. padding:0px 0px 0px 0px;
  5678. box-sizing:border-box;
  5679. width:100%;
  5680. }
  5681. #u3632_text {
  5682. border-width:0px;
  5683. white-space:nowrap;
  5684. text-transform:none;
  5685. }
  5686. #u3633_div {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:0px;
  5690. top:0px;
  5691. width:169px;
  5692. height:17px;
  5693. background:inherit;
  5694. background-color:rgba(255, 255, 255, 0);
  5695. border:none;
  5696. border-left:0px;
  5697. border-top:0px;
  5698. border-right:0px;
  5699. border-radius:0px;
  5700. border-bottom-right-radius:0px;
  5701. border-bottom-left-radius:0px;
  5702. -moz-box-shadow:none;
  5703. -webkit-box-shadow:none;
  5704. box-shadow:none;
  5705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5706. font-weight:400;
  5707. font-style:normal;
  5708. font-size:12px;
  5709. color:#7F7F7F;
  5710. }
  5711. #u3633 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:251px;
  5715. top:661px;
  5716. width:169px;
  5717. height:17px;
  5718. display:flex;
  5719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:12px;
  5723. color:#7F7F7F;
  5724. }
  5725. #u3633 .text {
  5726. position:absolute;
  5727. align-self:center;
  5728. padding:0px 0px 0px 0px;
  5729. box-sizing:border-box;
  5730. width:100%;
  5731. }
  5732. #u3633_text {
  5733. border-width:0px;
  5734. white-space:nowrap;
  5735. text-transform:none;
  5736. }
  5737. #u3634 {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:0px;
  5743. height:0px;
  5744. }
  5745. #u3635_div {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:240px;
  5751. height:80px;
  5752. background:inherit;
  5753. background-color:rgba(242, 242, 242, 1);
  5754. border:none;
  5755. border-radius:0px;
  5756. -moz-box-shadow:none;
  5757. -webkit-box-shadow:none;
  5758. box-shadow:none;
  5759. }
  5760. #u3635 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:453px;
  5764. top:615px;
  5765. width:240px;
  5766. height:80px;
  5767. display:flex;
  5768. }
  5769. #u3635 .text {
  5770. position:absolute;
  5771. align-self:center;
  5772. padding:2px 2px 2px 2px;
  5773. box-sizing:border-box;
  5774. width:100%;
  5775. }
  5776. #u3635_text {
  5777. border-width:0px;
  5778. word-wrap:break-word;
  5779. text-transform:none;
  5780. visibility:hidden;
  5781. }
  5782. #u3636_img {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:50px;
  5788. height:53px;
  5789. }
  5790. #u3636 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:469px;
  5794. top:628px;
  5795. width:50px;
  5796. height:53px;
  5797. display:flex;
  5798. }
  5799. #u3636 .text {
  5800. position:absolute;
  5801. align-self:center;
  5802. padding:2px 2px 2px 2px;
  5803. box-sizing:border-box;
  5804. width:100%;
  5805. }
  5806. #u3636_text {
  5807. border-width:0px;
  5808. word-wrap:break-word;
  5809. text-transform:none;
  5810. visibility:hidden;
  5811. }
  5812. #u3637 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:0px;
  5818. height:0px;
  5819. }
  5820. #u3638_div {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:37px;
  5826. height:25px;
  5827. background:inherit;
  5828. background-color:rgba(255, 255, 255, 0);
  5829. border:none;
  5830. border-left:0px;
  5831. border-top:0px;
  5832. border-right:0px;
  5833. border-radius:0px;
  5834. border-bottom-right-radius:0px;
  5835. border-bottom-left-radius:0px;
  5836. -moz-box-shadow:none;
  5837. -webkit-box-shadow:none;
  5838. box-shadow:none;
  5839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5840. font-weight:400;
  5841. font-style:normal;
  5842. font-size:18px;
  5843. }
  5844. #u3638 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:534px;
  5848. top:631px;
  5849. width:37px;
  5850. height:25px;
  5851. display:flex;
  5852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:18px;
  5856. }
  5857. #u3638 .text {
  5858. position:absolute;
  5859. align-self:center;
  5860. padding:0px 0px 0px 0px;
  5861. box-sizing:border-box;
  5862. width:100%;
  5863. }
  5864. #u3638_text {
  5865. border-width:0px;
  5866. white-space:nowrap;
  5867. text-transform:none;
  5868. }
  5869. #u3639_div {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:0px;
  5873. top:0px;
  5874. width:157px;
  5875. height:17px;
  5876. background:inherit;
  5877. background-color:rgba(255, 255, 255, 0);
  5878. border:none;
  5879. border-left:0px;
  5880. border-top:0px;
  5881. border-right:0px;
  5882. border-radius:0px;
  5883. border-bottom-right-radius:0px;
  5884. border-bottom-left-radius:0px;
  5885. -moz-box-shadow:none;
  5886. -webkit-box-shadow:none;
  5887. box-shadow:none;
  5888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5889. font-weight:400;
  5890. font-style:normal;
  5891. font-size:12px;
  5892. color:#7F7F7F;
  5893. }
  5894. #u3639 {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:534px;
  5898. top:661px;
  5899. width:157px;
  5900. height:17px;
  5901. display:flex;
  5902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:12px;
  5906. color:#7F7F7F;
  5907. }
  5908. #u3639 .text {
  5909. position:absolute;
  5910. align-self:center;
  5911. padding:0px 0px 0px 0px;
  5912. box-sizing:border-box;
  5913. width:100%;
  5914. }
  5915. #u3639_text {
  5916. border-width:0px;
  5917. white-space:nowrap;
  5918. text-transform:none;
  5919. }
  5920. #u3640 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:0px;
  5926. height:0px;
  5927. }
  5928. #u3641_div {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:240px;
  5934. height:80px;
  5935. background:inherit;
  5936. background-color:rgba(242, 242, 242, 1);
  5937. border:none;
  5938. border-radius:0px;
  5939. -moz-box-shadow:none;
  5940. -webkit-box-shadow:none;
  5941. box-shadow:none;
  5942. }
  5943. #u3641 {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:735px;
  5947. top:135px;
  5948. width:240px;
  5949. height:80px;
  5950. display:flex;
  5951. }
  5952. #u3641 .text {
  5953. position:absolute;
  5954. align-self:center;
  5955. padding:2px 2px 2px 2px;
  5956. box-sizing:border-box;
  5957. width:100%;
  5958. }
  5959. #u3641_text {
  5960. border-width:0px;
  5961. word-wrap:break-word;
  5962. text-transform:none;
  5963. visibility:hidden;
  5964. }
  5965. #u3642_img {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:0px;
  5969. top:0px;
  5970. width:50px;
  5971. height:53px;
  5972. }
  5973. #u3642 {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:751px;
  5977. top:148px;
  5978. width:50px;
  5979. height:53px;
  5980. display:flex;
  5981. }
  5982. #u3642 .text {
  5983. position:absolute;
  5984. align-self:center;
  5985. padding:2px 2px 2px 2px;
  5986. box-sizing:border-box;
  5987. width:100%;
  5988. }
  5989. #u3642_text {
  5990. border-width:0px;
  5991. word-wrap:break-word;
  5992. text-transform:none;
  5993. visibility:hidden;
  5994. }
  5995. #u3643 {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:0px;
  5999. top:0px;
  6000. width:0px;
  6001. height:0px;
  6002. }
  6003. #u3644_div {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:37px;
  6009. height:25px;
  6010. background:inherit;
  6011. background-color:rgba(255, 255, 255, 0);
  6012. border:none;
  6013. border-left:0px;
  6014. border-top:0px;
  6015. border-right:0px;
  6016. border-radius:0px;
  6017. border-bottom-right-radius:0px;
  6018. border-bottom-left-radius:0px;
  6019. -moz-box-shadow:none;
  6020. -webkit-box-shadow:none;
  6021. box-shadow:none;
  6022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6023. font-weight:400;
  6024. font-style:normal;
  6025. font-size:18px;
  6026. }
  6027. #u3644 {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:816px;
  6031. top:151px;
  6032. width:37px;
  6033. height:25px;
  6034. display:flex;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:18px;
  6039. }
  6040. #u3644 .text {
  6041. position:absolute;
  6042. align-self:center;
  6043. padding:0px 0px 0px 0px;
  6044. box-sizing:border-box;
  6045. width:100%;
  6046. }
  6047. #u3644_text {
  6048. border-width:0px;
  6049. white-space:nowrap;
  6050. text-transform:none;
  6051. }
  6052. #u3645_div {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:109px;
  6058. height:17px;
  6059. background:inherit;
  6060. background-color:rgba(255, 255, 255, 0);
  6061. border:none;
  6062. border-left:0px;
  6063. border-top:0px;
  6064. border-right:0px;
  6065. border-radius:0px;
  6066. border-bottom-right-radius:0px;
  6067. border-bottom-left-radius:0px;
  6068. -moz-box-shadow:none;
  6069. -webkit-box-shadow:none;
  6070. box-shadow:none;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:12px;
  6075. color:#7F7F7F;
  6076. }
  6077. #u3645 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:816px;
  6081. top:181px;
  6082. width:109px;
  6083. height:17px;
  6084. display:flex;
  6085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6086. font-weight:400;
  6087. font-style:normal;
  6088. font-size:12px;
  6089. color:#7F7F7F;
  6090. }
  6091. #u3645 .text {
  6092. position:absolute;
  6093. align-self:center;
  6094. padding:0px 0px 0px 0px;
  6095. box-sizing:border-box;
  6096. width:100%;
  6097. }
  6098. #u3645_text {
  6099. border-width:0px;
  6100. white-space:nowrap;
  6101. text-transform:none;
  6102. }
  6103. #u3646_img {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:1371px;
  6109. height:2px;
  6110. }
  6111. #u3646 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:170px;
  6115. top:485px;
  6116. width:1370px;
  6117. height:1px;
  6118. display:flex;
  6119. }
  6120. #u3646 .text {
  6121. position:absolute;
  6122. align-self:center;
  6123. padding:2px 2px 2px 2px;
  6124. box-sizing:border-box;
  6125. width:100%;
  6126. }
  6127. #u3646_text {
  6128. border-width:0px;
  6129. word-wrap:break-word;
  6130. text-transform:none;
  6131. visibility:hidden;
  6132. }
  6133. #u3647_img {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:1371px;
  6139. height:2px;
  6140. }
  6141. #u3647 {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:170px;
  6145. top:724px;
  6146. width:1370px;
  6147. height:1px;
  6148. display:flex;
  6149. }
  6150. #u3647 .text {
  6151. position:absolute;
  6152. align-self:center;
  6153. padding:2px 2px 2px 2px;
  6154. box-sizing:border-box;
  6155. width:100%;
  6156. }
  6157. #u3647_text {
  6158. border-width:0px;
  6159. word-wrap:break-word;
  6160. text-transform:none;
  6161. visibility:hidden;
  6162. }
  6163. #u3648 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:0px;
  6169. height:0px;
  6170. }
  6171. #u3649_div {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:240px;
  6177. height:80px;
  6178. background:inherit;
  6179. background-color:rgba(242, 242, 242, 1);
  6180. border:none;
  6181. border-radius:0px;
  6182. -moz-box-shadow:none;
  6183. -webkit-box-shadow:none;
  6184. box-shadow:none;
  6185. }
  6186. #u3649 {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:736px;
  6190. top:235px;
  6191. width:240px;
  6192. height:80px;
  6193. display:flex;
  6194. }
  6195. #u3649 .text {
  6196. position:absolute;
  6197. align-self:center;
  6198. padding:2px 2px 2px 2px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u3649_text {
  6203. border-width:0px;
  6204. word-wrap:break-word;
  6205. text-transform:none;
  6206. visibility:hidden;
  6207. }
  6208. #u3650_img {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:50px;
  6214. height:53px;
  6215. }
  6216. #u3650 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:752px;
  6220. top:248px;
  6221. width:50px;
  6222. height:53px;
  6223. display:flex;
  6224. }
  6225. #u3650 .text {
  6226. position:absolute;
  6227. align-self:center;
  6228. padding:2px 2px 2px 2px;
  6229. box-sizing:border-box;
  6230. width:100%;
  6231. }
  6232. #u3650_text {
  6233. border-width:0px;
  6234. word-wrap:break-word;
  6235. text-transform:none;
  6236. visibility:hidden;
  6237. }
  6238. #u3651 {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:0px;
  6244. height:0px;
  6245. }
  6246. #u3652_div {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:37px;
  6252. height:25px;
  6253. background:inherit;
  6254. background-color:rgba(255, 255, 255, 0);
  6255. border:none;
  6256. border-left:0px;
  6257. border-top:0px;
  6258. border-right:0px;
  6259. border-radius:0px;
  6260. border-bottom-right-radius:0px;
  6261. border-bottom-left-radius:0px;
  6262. -moz-box-shadow:none;
  6263. -webkit-box-shadow:none;
  6264. box-shadow:none;
  6265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6266. font-weight:400;
  6267. font-style:normal;
  6268. font-size:18px;
  6269. }
  6270. #u3652 {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:817px;
  6274. top:251px;
  6275. width:37px;
  6276. height:25px;
  6277. display:flex;
  6278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6279. font-weight:400;
  6280. font-style:normal;
  6281. font-size:18px;
  6282. }
  6283. #u3652 .text {
  6284. position:absolute;
  6285. align-self:center;
  6286. padding:0px 0px 0px 0px;
  6287. box-sizing:border-box;
  6288. width:100%;
  6289. }
  6290. #u3652_text {
  6291. border-width:0px;
  6292. white-space:nowrap;
  6293. text-transform:none;
  6294. }
  6295. #u3653_div {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:133px;
  6301. height:17px;
  6302. background:inherit;
  6303. background-color:rgba(255, 255, 255, 0);
  6304. border:none;
  6305. border-left:0px;
  6306. border-top:0px;
  6307. border-right:0px;
  6308. border-radius:0px;
  6309. border-bottom-right-radius:0px;
  6310. border-bottom-left-radius:0px;
  6311. -moz-box-shadow:none;
  6312. -webkit-box-shadow:none;
  6313. box-shadow:none;
  6314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:12px;
  6318. color:#7F7F7F;
  6319. }
  6320. #u3653 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:817px;
  6324. top:281px;
  6325. width:133px;
  6326. height:17px;
  6327. display:flex;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:12px;
  6332. color:#7F7F7F;
  6333. }
  6334. #u3653 .text {
  6335. position:absolute;
  6336. align-self:center;
  6337. padding:0px 0px 0px 0px;
  6338. box-sizing:border-box;
  6339. width:100%;
  6340. }
  6341. #u3653_text {
  6342. border-width:0px;
  6343. white-space:nowrap;
  6344. text-transform:none;
  6345. }
  6346. #u3654_img {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:1371px;
  6352. height:2px;
  6353. }
  6354. #u3654 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:170px;
  6358. top:344px;
  6359. width:1370px;
  6360. height:1px;
  6361. display:flex;
  6362. }
  6363. #u3654 .text {
  6364. position:absolute;
  6365. align-self:center;
  6366. padding:2px 2px 2px 2px;
  6367. box-sizing:border-box;
  6368. width:100%;
  6369. }
  6370. #u3654_text {
  6371. border-width:0px;
  6372. word-wrap:break-word;
  6373. text-transform:none;
  6374. visibility:hidden;
  6375. }
  6376. #u3655_img {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:1371px;
  6382. height:2px;
  6383. }
  6384. #u3655 {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:170px;
  6388. top:864px;
  6389. width:1370px;
  6390. height:1px;
  6391. display:flex;
  6392. }
  6393. #u3655 .text {
  6394. position:absolute;
  6395. align-self:center;
  6396. padding:2px 2px 2px 2px;
  6397. box-sizing:border-box;
  6398. width:100%;
  6399. }
  6400. #u3655_text {
  6401. border-width:0px;
  6402. word-wrap:break-word;
  6403. text-transform:none;
  6404. visibility:hidden;
  6405. }
  6406. #u3656 {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:0px;
  6410. top:0px;
  6411. width:0px;
  6412. height:0px;
  6413. }
  6414. #u3657_div {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:240px;
  6420. height:80px;
  6421. background:inherit;
  6422. background-color:rgba(242, 242, 242, 1);
  6423. border:none;
  6424. border-radius:0px;
  6425. -moz-box-shadow:none;
  6426. -webkit-box-shadow:none;
  6427. box-shadow:none;
  6428. }
  6429. #u3657 {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:1018px;
  6433. top:235px;
  6434. width:240px;
  6435. height:80px;
  6436. display:flex;
  6437. }
  6438. #u3657 .text {
  6439. position:absolute;
  6440. align-self:center;
  6441. padding:2px 2px 2px 2px;
  6442. box-sizing:border-box;
  6443. width:100%;
  6444. }
  6445. #u3657_text {
  6446. border-width:0px;
  6447. word-wrap:break-word;
  6448. text-transform:none;
  6449. visibility:hidden;
  6450. }
  6451. #u3658_img {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:50px;
  6457. height:53px;
  6458. }
  6459. #u3658 {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:1034px;
  6463. top:248px;
  6464. width:50px;
  6465. height:53px;
  6466. display:flex;
  6467. }
  6468. #u3658 .text {
  6469. position:absolute;
  6470. align-self:center;
  6471. padding:2px 2px 2px 2px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u3658_text {
  6476. border-width:0px;
  6477. word-wrap:break-word;
  6478. text-transform:none;
  6479. visibility:hidden;
  6480. }
  6481. #u3659 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:0px;
  6487. height:0px;
  6488. }
  6489. #u3660_div {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:0px;
  6493. top:0px;
  6494. width:37px;
  6495. height:25px;
  6496. background:inherit;
  6497. background-color:rgba(255, 255, 255, 0);
  6498. border:none;
  6499. border-left:0px;
  6500. border-top:0px;
  6501. border-right:0px;
  6502. border-radius:0px;
  6503. border-bottom-right-radius:0px;
  6504. border-bottom-left-radius:0px;
  6505. -moz-box-shadow:none;
  6506. -webkit-box-shadow:none;
  6507. box-shadow:none;
  6508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. font-size:18px;
  6512. }
  6513. #u3660 {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:1099px;
  6517. top:251px;
  6518. width:37px;
  6519. height:25px;
  6520. display:flex;
  6521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:18px;
  6525. }
  6526. #u3660 .text {
  6527. position:absolute;
  6528. align-self:center;
  6529. padding:0px 0px 0px 0px;
  6530. box-sizing:border-box;
  6531. width:100%;
  6532. }
  6533. #u3660_text {
  6534. border-width:0px;
  6535. white-space:nowrap;
  6536. text-transform:none;
  6537. }
  6538. #u3661_div {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:0px;
  6542. top:0px;
  6543. width:121px;
  6544. height:17px;
  6545. background:inherit;
  6546. background-color:rgba(255, 255, 255, 0);
  6547. border:none;
  6548. border-left:0px;
  6549. border-top:0px;
  6550. border-right:0px;
  6551. border-radius:0px;
  6552. border-bottom-right-radius:0px;
  6553. border-bottom-left-radius:0px;
  6554. -moz-box-shadow:none;
  6555. -webkit-box-shadow:none;
  6556. box-shadow:none;
  6557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6558. font-weight:400;
  6559. font-style:normal;
  6560. font-size:12px;
  6561. color:#7F7F7F;
  6562. }
  6563. #u3661 {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:1099px;
  6567. top:281px;
  6568. width:121px;
  6569. height:17px;
  6570. display:flex;
  6571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6572. font-weight:400;
  6573. font-style:normal;
  6574. font-size:12px;
  6575. color:#7F7F7F;
  6576. }
  6577. #u3661 .text {
  6578. position:absolute;
  6579. align-self:center;
  6580. padding:0px 0px 0px 0px;
  6581. box-sizing:border-box;
  6582. width:100%;
  6583. }
  6584. #u3661_text {
  6585. border-width:0px;
  6586. white-space:nowrap;
  6587. text-transform:none;
  6588. }
  6589. #u3662 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:0px;
  6595. height:0px;
  6596. }
  6597. #u3663_div {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:0px;
  6601. top:0px;
  6602. width:240px;
  6603. height:80px;
  6604. background:inherit;
  6605. background-color:rgba(242, 242, 242, 1);
  6606. border:none;
  6607. border-radius:0px;
  6608. -moz-box-shadow:none;
  6609. -webkit-box-shadow:none;
  6610. box-shadow:none;
  6611. }
  6612. #u3663 {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:1018px;
  6616. top:135px;
  6617. width:240px;
  6618. height:80px;
  6619. display:flex;
  6620. }
  6621. #u3663 .text {
  6622. position:absolute;
  6623. align-self:center;
  6624. padding:2px 2px 2px 2px;
  6625. box-sizing:border-box;
  6626. width:100%;
  6627. }
  6628. #u3663_text {
  6629. border-width:0px;
  6630. word-wrap:break-word;
  6631. text-transform:none;
  6632. visibility:hidden;
  6633. }
  6634. #u3664_img {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:0px;
  6638. top:0px;
  6639. width:50px;
  6640. height:53px;
  6641. }
  6642. #u3664 {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:1034px;
  6646. top:148px;
  6647. width:50px;
  6648. height:53px;
  6649. display:flex;
  6650. }
  6651. #u3664 .text {
  6652. position:absolute;
  6653. align-self:center;
  6654. padding:2px 2px 2px 2px;
  6655. box-sizing:border-box;
  6656. width:100%;
  6657. }
  6658. #u3664_text {
  6659. border-width:0px;
  6660. word-wrap:break-word;
  6661. text-transform:none;
  6662. visibility:hidden;
  6663. }
  6664. #u3665 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:0px;
  6670. height:0px;
  6671. }
  6672. #u3666_div {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:37px;
  6678. height:25px;
  6679. background:inherit;
  6680. background-color:rgba(255, 255, 255, 0);
  6681. border:none;
  6682. border-left:0px;
  6683. border-top:0px;
  6684. border-right:0px;
  6685. border-radius:0px;
  6686. border-bottom-right-radius:0px;
  6687. border-bottom-left-radius:0px;
  6688. -moz-box-shadow:none;
  6689. -webkit-box-shadow:none;
  6690. box-shadow:none;
  6691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6692. font-weight:400;
  6693. font-style:normal;
  6694. font-size:18px;
  6695. }
  6696. #u3666 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:1099px;
  6700. top:151px;
  6701. width:37px;
  6702. height:25px;
  6703. display:flex;
  6704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:18px;
  6708. }
  6709. #u3666 .text {
  6710. position:absolute;
  6711. align-self:center;
  6712. padding:0px 0px 0px 0px;
  6713. box-sizing:border-box;
  6714. width:100%;
  6715. }
  6716. #u3666_text {
  6717. border-width:0px;
  6718. white-space:nowrap;
  6719. text-transform:none;
  6720. }
  6721. #u3667_div {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:157px;
  6727. height:17px;
  6728. background:inherit;
  6729. background-color:rgba(255, 255, 255, 0);
  6730. border:none;
  6731. border-left:0px;
  6732. border-top:0px;
  6733. border-right:0px;
  6734. border-radius:0px;
  6735. border-bottom-right-radius:0px;
  6736. border-bottom-left-radius:0px;
  6737. -moz-box-shadow:none;
  6738. -webkit-box-shadow:none;
  6739. box-shadow:none;
  6740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6741. font-weight:400;
  6742. font-style:normal;
  6743. font-size:12px;
  6744. color:#7F7F7F;
  6745. }
  6746. #u3667 {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:1099px;
  6750. top:181px;
  6751. width:157px;
  6752. height:17px;
  6753. display:flex;
  6754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6755. font-weight:400;
  6756. font-style:normal;
  6757. font-size:12px;
  6758. color:#7F7F7F;
  6759. }
  6760. #u3667 .text {
  6761. position:absolute;
  6762. align-self:center;
  6763. padding:0px 0px 0px 0px;
  6764. box-sizing:border-box;
  6765. width:100%;
  6766. }
  6767. #u3667_text {
  6768. border-width:0px;
  6769. white-space:nowrap;
  6770. text-transform:none;
  6771. }
  6772. #u3668 {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:0px;
  6778. height:0px;
  6779. }
  6780. #u3669_div {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:0px;
  6784. top:0px;
  6785. width:240px;
  6786. height:80px;
  6787. background:inherit;
  6788. background-color:rgba(242, 242, 242, 1);
  6789. border:none;
  6790. border-radius:0px;
  6791. -moz-box-shadow:none;
  6792. -webkit-box-shadow:none;
  6793. box-shadow:none;
  6794. }
  6795. #u3669 {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:735px;
  6799. top:755px;
  6800. width:240px;
  6801. height:80px;
  6802. display:flex;
  6803. }
  6804. #u3669 .text {
  6805. position:absolute;
  6806. align-self:center;
  6807. padding:2px 2px 2px 2px;
  6808. box-sizing:border-box;
  6809. width:100%;
  6810. }
  6811. #u3669_text {
  6812. border-width:0px;
  6813. word-wrap:break-word;
  6814. text-transform:none;
  6815. visibility:hidden;
  6816. }
  6817. #u3670_img {
  6818. border-width:0px;
  6819. position:absolute;
  6820. left:0px;
  6821. top:0px;
  6822. width:50px;
  6823. height:53px;
  6824. }
  6825. #u3670 {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:751px;
  6829. top:768px;
  6830. width:50px;
  6831. height:53px;
  6832. display:flex;
  6833. }
  6834. #u3670 .text {
  6835. position:absolute;
  6836. align-self:center;
  6837. padding:2px 2px 2px 2px;
  6838. box-sizing:border-box;
  6839. width:100%;
  6840. }
  6841. #u3670_text {
  6842. border-width:0px;
  6843. word-wrap:break-word;
  6844. text-transform:none;
  6845. visibility:hidden;
  6846. }
  6847. #u3671 {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:0px;
  6853. height:0px;
  6854. }
  6855. #u3672_div {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:0px;
  6859. top:0px;
  6860. width:73px;
  6861. height:25px;
  6862. background:inherit;
  6863. background-color:rgba(255, 255, 255, 0);
  6864. border:none;
  6865. border-left:0px;
  6866. border-top:0px;
  6867. border-right:0px;
  6868. border-radius:0px;
  6869. border-bottom-right-radius:0px;
  6870. border-bottom-left-radius:0px;
  6871. -moz-box-shadow:none;
  6872. -webkit-box-shadow:none;
  6873. box-shadow:none;
  6874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6875. font-weight:400;
  6876. font-style:normal;
  6877. font-size:18px;
  6878. }
  6879. #u3672 {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:816px;
  6883. top:771px;
  6884. width:73px;
  6885. height:25px;
  6886. display:flex;
  6887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6888. font-weight:400;
  6889. font-style:normal;
  6890. font-size:18px;
  6891. }
  6892. #u3672 .text {
  6893. position:absolute;
  6894. align-self:center;
  6895. padding:0px 0px 0px 0px;
  6896. box-sizing:border-box;
  6897. width:100%;
  6898. }
  6899. #u3672_text {
  6900. border-width:0px;
  6901. white-space:nowrap;
  6902. text-transform:none;
  6903. }
  6904. #u3673_div {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:0px;
  6908. top:0px;
  6909. width:169px;
  6910. height:17px;
  6911. background:inherit;
  6912. background-color:rgba(255, 255, 255, 0);
  6913. border:none;
  6914. border-left:0px;
  6915. border-top:0px;
  6916. border-right:0px;
  6917. border-radius:0px;
  6918. border-bottom-right-radius:0px;
  6919. border-bottom-left-radius:0px;
  6920. -moz-box-shadow:none;
  6921. -webkit-box-shadow:none;
  6922. box-shadow:none;
  6923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6924. font-weight:400;
  6925. font-style:normal;
  6926. font-size:12px;
  6927. color:#7F7F7F;
  6928. }
  6929. #u3673 {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:816px;
  6933. top:801px;
  6934. width:169px;
  6935. height:17px;
  6936. display:flex;
  6937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6938. font-weight:400;
  6939. font-style:normal;
  6940. font-size:12px;
  6941. color:#7F7F7F;
  6942. }
  6943. #u3673 .text {
  6944. position:absolute;
  6945. align-self:center;
  6946. padding:0px 0px 0px 0px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u3673_text {
  6951. border-width:0px;
  6952. white-space:nowrap;
  6953. text-transform:none;
  6954. }