styles.css 239 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1637px;
  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. #u31098_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u31098 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u31098 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u31098_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u31099_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u31099 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u31099 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u31099_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u31100_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u31100 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u31100 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u31100_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u31101 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u31102_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u31102 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u31102 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u31102_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u31103_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u31103 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u31103 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u31103_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u31104_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u31104 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u31104 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u31104_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u31105 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u31106_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. #u31106 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  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. #u31106 .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. #u31106_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u31107_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u31107 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u31107 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u31107_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u31108 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u31109_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. #u31109 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  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. #u31109 .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. #u31109_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u31110_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u31110 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u31110 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u31110_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u31111 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u31112_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u31112 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u31112 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u31112_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u31113_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u31113 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u31113 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u31113_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u31114 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u31115_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u31115 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u31115 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u31115_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u31116_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u31116 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u31116 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u31116_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u31117 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u31118_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u31118 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u31118 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u31118_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u31119_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u31119 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u31119 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u31119_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u31120 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u31121_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u31121 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u31121 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u31121_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u31122_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u31122 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u31122 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u31122_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u31123 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u31124_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u31124 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u31124 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u31124_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u31125_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u31125 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u31125 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u31125_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u31126 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u31127_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u31127 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u31127 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u31127_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u31128_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u31128 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u31128 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u31128_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u31129 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u31130_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u31130 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u31130 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u31130_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u31131_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u31131 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u31131 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u31131_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u31132_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u31132 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u31132 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u31132_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u31133_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u31133 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u31133 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u31133_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u31134_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u31134 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u31134 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u31134_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u31135_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u31135 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u31135 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u31135_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u31136 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u31137_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u31137 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u31137 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u31137_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u31138_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u31138 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u31138 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u31138_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u31139 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u31140_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u31140 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u31140 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u31140_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u31141_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u31141 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u31141 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u31141_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u31142 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u31143_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u31143_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u31143_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u31143 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u31143 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u31143_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u31143.disabled {
  1428. }
  1429. .u31143_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u31144_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u31144 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u31144 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u31144_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u31145_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u31145 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u31145 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u31145_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u31146_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u31146 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u31146 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u31146_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u31147_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1449px;
  1544. height:1179px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1552. }
  1553. #u31147 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:131px;
  1557. top:61px;
  1558. width:1449px;
  1559. height:1179px;
  1560. display:flex;
  1561. }
  1562. #u31147 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u31147_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u31148_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:73px;
  1581. height:25px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1590. font-weight:500;
  1591. font-style:normal;
  1592. font-size:18px;
  1593. }
  1594. #u31148 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:163px;
  1598. top:81px;
  1599. width:73px;
  1600. height:25px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1603. font-weight:500;
  1604. font-style:normal;
  1605. font-size:18px;
  1606. }
  1607. #u31148 .text {
  1608. position:absolute;
  1609. align-self:flex-start;
  1610. padding:0px 0px 0px 0px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u31148_text {
  1615. border-width:0px;
  1616. white-space:nowrap;
  1617. text-transform:none;
  1618. }
  1619. #u31149 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:0px;
  1623. top:0px;
  1624. width:0px;
  1625. height:0px;
  1626. }
  1627. #u31150_div {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:353px;
  1633. height:120px;
  1634. background:inherit;
  1635. background-color:rgba(255, 255, 255, 1);
  1636. border:none;
  1637. border-radius:4px;
  1638. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1639. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1640. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1641. }
  1642. #u31150 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:163px;
  1646. top:116px;
  1647. width:353px;
  1648. height:120px;
  1649. display:flex;
  1650. }
  1651. #u31150 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:2px 2px 2px 2px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u31150_text {
  1659. border-width:0px;
  1660. word-wrap:break-word;
  1661. text-transform:none;
  1662. visibility:hidden;
  1663. }
  1664. #u31151_div {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:0px;
  1668. top:0px;
  1669. width:109px;
  1670. height:25px;
  1671. background:inherit;
  1672. background-color:rgba(255, 255, 255, 0);
  1673. border:none;
  1674. border-radius:0px;
  1675. -moz-box-shadow:none;
  1676. -webkit-box-shadow:none;
  1677. box-shadow:none;
  1678. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1679. font-weight:500;
  1680. font-style:normal;
  1681. font-size:18px;
  1682. }
  1683. #u31151 {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:187px;
  1687. top:127px;
  1688. width:109px;
  1689. height:25px;
  1690. display:flex;
  1691. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1692. font-weight:500;
  1693. font-style:normal;
  1694. font-size:18px;
  1695. }
  1696. #u31151 .text {
  1697. position:absolute;
  1698. align-self:flex-start;
  1699. padding:0px 0px 0px 0px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u31151_text {
  1704. border-width:0px;
  1705. white-space:nowrap;
  1706. text-transform:none;
  1707. }
  1708. #u31152_div {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:37px;
  1714. height:40px;
  1715. background:inherit;
  1716. background-color:rgba(255, 255, 255, 0);
  1717. border:none;
  1718. border-radius:0px;
  1719. -moz-box-shadow:none;
  1720. -webkit-box-shadow:none;
  1721. box-shadow:none;
  1722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1723. font-weight:400;
  1724. font-style:normal;
  1725. font-size:12px;
  1726. line-height:20px;
  1727. }
  1728. #u31152 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:187px;
  1732. top:172px;
  1733. width:37px;
  1734. height:40px;
  1735. display:flex;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. line-height:20px;
  1741. }
  1742. #u31152 .text {
  1743. position:absolute;
  1744. align-self:flex-start;
  1745. padding:0px 0px 0px 0px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u31152_text {
  1750. border-width:0px;
  1751. white-space:nowrap;
  1752. text-transform:none;
  1753. }
  1754. #u31153_div {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:73px;
  1760. height:25px;
  1761. background:inherit;
  1762. background-color:rgba(255, 255, 255, 0);
  1763. border:none;
  1764. border-radius:0px;
  1765. -moz-box-shadow:none;
  1766. -webkit-box-shadow:none;
  1767. box-shadow:none;
  1768. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1769. font-weight:500;
  1770. font-style:normal;
  1771. font-size:18px;
  1772. }
  1773. #u31153 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:163px;
  1777. top:270px;
  1778. width:73px;
  1779. height:25px;
  1780. display:flex;
  1781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1782. font-weight:500;
  1783. font-style:normal;
  1784. font-size:18px;
  1785. }
  1786. #u31153 .text {
  1787. position:absolute;
  1788. align-self:flex-start;
  1789. padding:0px 0px 0px 0px;
  1790. box-sizing:border-box;
  1791. width:100%;
  1792. }
  1793. #u31153_text {
  1794. border-width:0px;
  1795. white-space:nowrap;
  1796. text-transform:none;
  1797. }
  1798. #u31154 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:0px;
  1804. height:0px;
  1805. }
  1806. #u31155_div {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:353px;
  1812. height:120px;
  1813. background:inherit;
  1814. background-color:rgba(255, 255, 255, 1);
  1815. border:none;
  1816. border-radius:4px;
  1817. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1818. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1819. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1820. }
  1821. #u31155 {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:536px;
  1825. top:116px;
  1826. width:353px;
  1827. height:120px;
  1828. display:flex;
  1829. }
  1830. #u31155 .text {
  1831. position:absolute;
  1832. align-self:center;
  1833. padding:2px 2px 2px 2px;
  1834. box-sizing:border-box;
  1835. width:100%;
  1836. }
  1837. #u31155_text {
  1838. border-width:0px;
  1839. word-wrap:break-word;
  1840. text-transform:none;
  1841. visibility:hidden;
  1842. }
  1843. #u31156_div {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:109px;
  1849. height:25px;
  1850. background:inherit;
  1851. background-color:rgba(255, 255, 255, 0);
  1852. border:none;
  1853. border-radius:0px;
  1854. -moz-box-shadow:none;
  1855. -webkit-box-shadow:none;
  1856. box-shadow:none;
  1857. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1858. font-weight:500;
  1859. font-style:normal;
  1860. font-size:18px;
  1861. }
  1862. #u31156 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:560px;
  1866. top:127px;
  1867. width:109px;
  1868. height:25px;
  1869. display:flex;
  1870. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1871. font-weight:500;
  1872. font-style:normal;
  1873. font-size:18px;
  1874. }
  1875. #u31156 .text {
  1876. position:absolute;
  1877. align-self:flex-start;
  1878. padding:0px 0px 0px 0px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u31156_text {
  1883. border-width:0px;
  1884. white-space:nowrap;
  1885. text-transform:none;
  1886. }
  1887. #u31157_div {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:37px;
  1893. height:40px;
  1894. background:inherit;
  1895. background-color:rgba(255, 255, 255, 0);
  1896. border:none;
  1897. border-radius:0px;
  1898. -moz-box-shadow:none;
  1899. -webkit-box-shadow:none;
  1900. box-shadow:none;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:12px;
  1905. line-height:20px;
  1906. }
  1907. #u31157 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:560px;
  1911. top:172px;
  1912. width:37px;
  1913. height:40px;
  1914. display:flex;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:12px;
  1919. line-height:20px;
  1920. }
  1921. #u31157 .text {
  1922. position:absolute;
  1923. align-self:flex-start;
  1924. padding:0px 0px 0px 0px;
  1925. box-sizing:border-box;
  1926. width:100%;
  1927. }
  1928. #u31157_text {
  1929. border-width:0px;
  1930. white-space:nowrap;
  1931. text-transform:none;
  1932. }
  1933. #u31158 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:0px;
  1939. height:0px;
  1940. }
  1941. #u31159 {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:0px;
  1947. height:0px;
  1948. }
  1949. #u31160_div {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:240px;
  1955. height:100px;
  1956. background:inherit;
  1957. background-color:rgba(255, 255, 255, 1);
  1958. border:none;
  1959. border-radius:0px;
  1960. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1961. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1962. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1963. }
  1964. #u31160 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:56px;
  1968. top:-1015px;
  1969. width:240px;
  1970. height:100px;
  1971. display:flex;
  1972. }
  1973. #u31160 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u31160_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. visibility:hidden;
  1985. }
  1986. #u31161_div {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:97px;
  1992. height:33px;
  1993. background:inherit;
  1994. background-color:rgba(255, 255, 255, 0);
  1995. border:none;
  1996. border-radius:0px;
  1997. -moz-box-shadow:none;
  1998. -webkit-box-shadow:none;
  1999. box-shadow:none;
  2000. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2001. font-weight:500;
  2002. font-style:normal;
  2003. font-size:24px;
  2004. }
  2005. #u31161 {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:155px;
  2009. top:-982px;
  2010. width:97px;
  2011. height:33px;
  2012. display:flex;
  2013. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2014. font-weight:500;
  2015. font-style:normal;
  2016. font-size:24px;
  2017. }
  2018. #u31161 .text {
  2019. position:absolute;
  2020. align-self:flex-start;
  2021. padding:0px 0px 0px 0px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u31161_text {
  2026. border-width:0px;
  2027. white-space:nowrap;
  2028. text-transform:none;
  2029. }
  2030. #u31162_img {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:61px;
  2036. height:63px;
  2037. }
  2038. #u31162 {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:74px;
  2042. top:-997px;
  2043. width:61px;
  2044. height:63px;
  2045. display:flex;
  2046. }
  2047. #u31162 .text {
  2048. position:absolute;
  2049. align-self:center;
  2050. padding:2px 2px 2px 2px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u31162_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. visibility:hidden;
  2059. }
  2060. #u31163_img {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:15px;
  2066. height:4px;
  2067. }
  2068. #u31163 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:274px;
  2072. top:-1006px;
  2073. width:15px;
  2074. height:4px;
  2075. display:flex;
  2076. }
  2077. #u31163 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:2px 2px 2px 2px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u31163_text {
  2085. border-width:0px;
  2086. word-wrap:break-word;
  2087. text-transform:none;
  2088. visibility:hidden;
  2089. }
  2090. #u31164 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:0px;
  2096. height:0px;
  2097. }
  2098. #u31165_div {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:0px;
  2102. top:0px;
  2103. width:240px;
  2104. height:100px;
  2105. background:inherit;
  2106. background-color:rgba(255, 255, 255, 1);
  2107. border:none;
  2108. border-radius:0px;
  2109. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2110. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2111. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2112. }
  2113. #u31165 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:56px;
  2117. top:-655px;
  2118. width:240px;
  2119. height:100px;
  2120. display:flex;
  2121. }
  2122. #u31165 .text {
  2123. position:absolute;
  2124. align-self:center;
  2125. padding:2px 2px 2px 2px;
  2126. box-sizing:border-box;
  2127. width:100%;
  2128. }
  2129. #u31165_text {
  2130. border-width:0px;
  2131. word-wrap:break-word;
  2132. text-transform:none;
  2133. visibility:hidden;
  2134. }
  2135. #u31166_div {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:97px;
  2141. height:33px;
  2142. background:inherit;
  2143. background-color:rgba(255, 255, 255, 0);
  2144. border:none;
  2145. border-radius:0px;
  2146. -moz-box-shadow:none;
  2147. -webkit-box-shadow:none;
  2148. box-shadow:none;
  2149. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2150. font-weight:500;
  2151. font-style:normal;
  2152. font-size:24px;
  2153. }
  2154. #u31166 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:155px;
  2158. top:-622px;
  2159. width:97px;
  2160. height:33px;
  2161. display:flex;
  2162. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2163. font-weight:500;
  2164. font-style:normal;
  2165. font-size:24px;
  2166. }
  2167. #u31166 .text {
  2168. position:absolute;
  2169. align-self:flex-start;
  2170. padding:0px 0px 0px 0px;
  2171. box-sizing:border-box;
  2172. width:100%;
  2173. }
  2174. #u31166_text {
  2175. border-width:0px;
  2176. white-space:nowrap;
  2177. text-transform:none;
  2178. }
  2179. #u31167_img {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:0px;
  2183. top:0px;
  2184. width:61px;
  2185. height:63px;
  2186. }
  2187. #u31167 {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:74px;
  2191. top:-637px;
  2192. width:61px;
  2193. height:63px;
  2194. display:flex;
  2195. }
  2196. #u31167 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:2px 2px 2px 2px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u31167_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. visibility:hidden;
  2208. }
  2209. #u31168_img {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:15px;
  2215. height:4px;
  2216. }
  2217. #u31168 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:271px;
  2221. top:-646px;
  2222. width:15px;
  2223. height:4px;
  2224. display:flex;
  2225. }
  2226. #u31168 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:2px 2px 2px 2px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u31168_text {
  2234. border-width:0px;
  2235. word-wrap:break-word;
  2236. text-transform:none;
  2237. visibility:hidden;
  2238. }
  2239. #u31169 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:0px;
  2245. height:0px;
  2246. }
  2247. #u31170_div {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:240px;
  2253. height:100px;
  2254. background:inherit;
  2255. background-color:rgba(255, 255, 255, 1);
  2256. border:none;
  2257. border-radius:0px;
  2258. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2259. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2260. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2261. }
  2262. #u31170 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:836px;
  2266. top:-775px;
  2267. width:240px;
  2268. height:100px;
  2269. display:flex;
  2270. }
  2271. #u31170 .text {
  2272. position:absolute;
  2273. align-self:center;
  2274. padding:2px 2px 2px 2px;
  2275. box-sizing:border-box;
  2276. width:100%;
  2277. }
  2278. #u31170_text {
  2279. border-width:0px;
  2280. word-wrap:break-word;
  2281. text-transform:none;
  2282. visibility:hidden;
  2283. }
  2284. #u31171_div {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:97px;
  2290. height:33px;
  2291. background:inherit;
  2292. background-color:rgba(255, 255, 255, 0);
  2293. border:none;
  2294. border-radius:0px;
  2295. -moz-box-shadow:none;
  2296. -webkit-box-shadow:none;
  2297. box-shadow:none;
  2298. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2299. font-weight:500;
  2300. font-style:normal;
  2301. font-size:24px;
  2302. }
  2303. #u31171 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:935px;
  2307. top:-742px;
  2308. width:97px;
  2309. height:33px;
  2310. display:flex;
  2311. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2312. font-weight:500;
  2313. font-style:normal;
  2314. font-size:24px;
  2315. }
  2316. #u31171 .text {
  2317. position:absolute;
  2318. align-self:flex-start;
  2319. padding:0px 0px 0px 0px;
  2320. box-sizing:border-box;
  2321. width:100%;
  2322. }
  2323. #u31171_text {
  2324. border-width:0px;
  2325. white-space:nowrap;
  2326. text-transform:none;
  2327. }
  2328. #u31172_img {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:61px;
  2334. height:63px;
  2335. }
  2336. #u31172 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:854px;
  2340. top:-757px;
  2341. width:61px;
  2342. height:63px;
  2343. display:flex;
  2344. }
  2345. #u31172 .text {
  2346. position:absolute;
  2347. align-self:center;
  2348. padding:2px 2px 2px 2px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u31172_text {
  2353. border-width:0px;
  2354. word-wrap:break-word;
  2355. text-transform:none;
  2356. visibility:hidden;
  2357. }
  2358. #u31173_img {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:15px;
  2364. height:4px;
  2365. }
  2366. #u31173 {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:1051px;
  2370. top:-768px;
  2371. width:15px;
  2372. height:4px;
  2373. display:flex;
  2374. }
  2375. #u31173 .text {
  2376. position:absolute;
  2377. align-self:center;
  2378. padding:2px 2px 2px 2px;
  2379. box-sizing:border-box;
  2380. width:100%;
  2381. }
  2382. #u31173_text {
  2383. border-width:0px;
  2384. word-wrap:break-word;
  2385. text-transform:none;
  2386. visibility:hidden;
  2387. }
  2388. #u31174 {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:0px;
  2394. height:0px;
  2395. }
  2396. #u31175_div {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:240px;
  2402. height:100px;
  2403. background:inherit;
  2404. background-color:rgba(255, 255, 255, 1);
  2405. border:none;
  2406. border-radius:0px;
  2407. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2408. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2409. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2410. }
  2411. #u31175 {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:316px;
  2415. top:-1015px;
  2416. width:240px;
  2417. height:100px;
  2418. display:flex;
  2419. }
  2420. #u31175 .text {
  2421. position:absolute;
  2422. align-self:center;
  2423. padding:2px 2px 2px 2px;
  2424. box-sizing:border-box;
  2425. width:100%;
  2426. }
  2427. #u31175_text {
  2428. border-width:0px;
  2429. word-wrap:break-word;
  2430. text-transform:none;
  2431. visibility:hidden;
  2432. }
  2433. #u31176_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:97px;
  2439. height:33px;
  2440. background:inherit;
  2441. background-color:rgba(255, 255, 255, 0);
  2442. border:none;
  2443. border-radius:0px;
  2444. -moz-box-shadow:none;
  2445. -webkit-box-shadow:none;
  2446. box-shadow:none;
  2447. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2448. font-weight:500;
  2449. font-style:normal;
  2450. font-size:24px;
  2451. }
  2452. #u31176 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:415px;
  2456. top:-982px;
  2457. width:97px;
  2458. height:33px;
  2459. display:flex;
  2460. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2461. font-weight:500;
  2462. font-style:normal;
  2463. font-size:24px;
  2464. }
  2465. #u31176 .text {
  2466. position:absolute;
  2467. align-self:flex-start;
  2468. padding:0px 0px 0px 0px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u31176_text {
  2473. border-width:0px;
  2474. white-space:nowrap;
  2475. text-transform:none;
  2476. }
  2477. #u31177_img {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:61px;
  2483. height:63px;
  2484. }
  2485. #u31177 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:334px;
  2489. top:-997px;
  2490. width:61px;
  2491. height:63px;
  2492. display:flex;
  2493. }
  2494. #u31177 .text {
  2495. position:absolute;
  2496. align-self:center;
  2497. padding:2px 2px 2px 2px;
  2498. box-sizing:border-box;
  2499. width:100%;
  2500. }
  2501. #u31177_text {
  2502. border-width:0px;
  2503. word-wrap:break-word;
  2504. text-transform:none;
  2505. visibility:hidden;
  2506. }
  2507. #u31178_img {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:15px;
  2513. height:4px;
  2514. }
  2515. #u31178 {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:531px;
  2519. top:-1008px;
  2520. width:15px;
  2521. height:4px;
  2522. display:flex;
  2523. }
  2524. #u31178 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:2px 2px 2px 2px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u31178_text {
  2532. border-width:0px;
  2533. word-wrap:break-word;
  2534. text-transform:none;
  2535. visibility:hidden;
  2536. }
  2537. #u31179 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:0px;
  2543. height:0px;
  2544. }
  2545. #u31180_div {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:240px;
  2551. height:100px;
  2552. background:inherit;
  2553. background-color:rgba(255, 255, 255, 1);
  2554. border:none;
  2555. border-radius:0px;
  2556. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2557. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2558. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2559. }
  2560. #u31180 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:576px;
  2564. top:-1015px;
  2565. width:240px;
  2566. height:100px;
  2567. display:flex;
  2568. }
  2569. #u31180 .text {
  2570. position:absolute;
  2571. align-self:center;
  2572. padding:2px 2px 2px 2px;
  2573. box-sizing:border-box;
  2574. width:100%;
  2575. }
  2576. #u31180_text {
  2577. border-width:0px;
  2578. word-wrap:break-word;
  2579. text-transform:none;
  2580. visibility:hidden;
  2581. }
  2582. #u31181_div {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:97px;
  2588. height:33px;
  2589. background:inherit;
  2590. background-color:rgba(255, 255, 255, 0);
  2591. border:none;
  2592. border-radius:0px;
  2593. -moz-box-shadow:none;
  2594. -webkit-box-shadow:none;
  2595. box-shadow:none;
  2596. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2597. font-weight:500;
  2598. font-style:normal;
  2599. font-size:24px;
  2600. }
  2601. #u31181 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:675px;
  2605. top:-982px;
  2606. width:97px;
  2607. height:33px;
  2608. display:flex;
  2609. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2610. font-weight:500;
  2611. font-style:normal;
  2612. font-size:24px;
  2613. }
  2614. #u31181 .text {
  2615. position:absolute;
  2616. align-self:flex-start;
  2617. padding:0px 0px 0px 0px;
  2618. box-sizing:border-box;
  2619. width:100%;
  2620. }
  2621. #u31181_text {
  2622. border-width:0px;
  2623. white-space:nowrap;
  2624. text-transform:none;
  2625. }
  2626. #u31182_img {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:61px;
  2632. height:63px;
  2633. }
  2634. #u31182 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:594px;
  2638. top:-997px;
  2639. width:61px;
  2640. height:63px;
  2641. display:flex;
  2642. }
  2643. #u31182 .text {
  2644. position:absolute;
  2645. align-self:center;
  2646. padding:2px 2px 2px 2px;
  2647. box-sizing:border-box;
  2648. width:100%;
  2649. }
  2650. #u31182_text {
  2651. border-width:0px;
  2652. word-wrap:break-word;
  2653. text-transform:none;
  2654. visibility:hidden;
  2655. }
  2656. #u31183_img {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:15px;
  2662. height:4px;
  2663. }
  2664. #u31183 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:791px;
  2668. top:-1008px;
  2669. width:15px;
  2670. height:4px;
  2671. display:flex;
  2672. }
  2673. #u31183 .text {
  2674. position:absolute;
  2675. align-self:center;
  2676. padding:2px 2px 2px 2px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u31183_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. visibility:hidden;
  2685. }
  2686. #u31184 {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:0px;
  2692. height:0px;
  2693. }
  2694. #u31185_div {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:240px;
  2700. height:100px;
  2701. background:inherit;
  2702. background-color:rgba(255, 255, 255, 1);
  2703. border:none;
  2704. border-radius:0px;
  2705. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2706. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2707. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2708. }
  2709. #u31185 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:576px;
  2713. top:-775px;
  2714. width:240px;
  2715. height:100px;
  2716. display:flex;
  2717. }
  2718. #u31185 .text {
  2719. position:absolute;
  2720. align-self:center;
  2721. padding:2px 2px 2px 2px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u31185_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. visibility:hidden;
  2730. }
  2731. #u31186_div {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:97px;
  2737. height:33px;
  2738. background:inherit;
  2739. background-color:rgba(255, 255, 255, 0);
  2740. border:none;
  2741. border-radius:0px;
  2742. -moz-box-shadow:none;
  2743. -webkit-box-shadow:none;
  2744. box-shadow:none;
  2745. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2746. font-weight:500;
  2747. font-style:normal;
  2748. font-size:24px;
  2749. }
  2750. #u31186 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:675px;
  2754. top:-742px;
  2755. width:97px;
  2756. height:33px;
  2757. display:flex;
  2758. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2759. font-weight:500;
  2760. font-style:normal;
  2761. font-size:24px;
  2762. }
  2763. #u31186 .text {
  2764. position:absolute;
  2765. align-self:flex-start;
  2766. padding:0px 0px 0px 0px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u31186_text {
  2771. border-width:0px;
  2772. white-space:nowrap;
  2773. text-transform:none;
  2774. }
  2775. #u31187_img {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:61px;
  2781. height:63px;
  2782. }
  2783. #u31187 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:594px;
  2787. top:-757px;
  2788. width:61px;
  2789. height:63px;
  2790. display:flex;
  2791. }
  2792. #u31187 .text {
  2793. position:absolute;
  2794. align-self:center;
  2795. padding:2px 2px 2px 2px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u31187_text {
  2800. border-width:0px;
  2801. word-wrap:break-word;
  2802. text-transform:none;
  2803. visibility:hidden;
  2804. }
  2805. #u31188_img {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:15px;
  2811. height:4px;
  2812. }
  2813. #u31188 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:794px;
  2817. top:-766px;
  2818. width:15px;
  2819. height:4px;
  2820. display:flex;
  2821. }
  2822. #u31188 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 2px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u31188_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. visibility:hidden;
  2834. }
  2835. #u31189 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:0px;
  2841. height:0px;
  2842. }
  2843. #u31190_div {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:240px;
  2849. height:100px;
  2850. background:inherit;
  2851. background-color:rgba(255, 255, 255, 1);
  2852. border:none;
  2853. border-radius:0px;
  2854. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2855. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2856. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2857. }
  2858. #u31190 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:836px;
  2862. top:-895px;
  2863. width:240px;
  2864. height:100px;
  2865. display:flex;
  2866. }
  2867. #u31190 .text {
  2868. position:absolute;
  2869. align-self:center;
  2870. padding:2px 2px 2px 2px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u31190_text {
  2875. border-width:0px;
  2876. word-wrap:break-word;
  2877. text-transform:none;
  2878. visibility:hidden;
  2879. }
  2880. #u31191_div {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:97px;
  2886. height:33px;
  2887. background:inherit;
  2888. background-color:rgba(255, 255, 255, 0);
  2889. border:none;
  2890. border-radius:0px;
  2891. -moz-box-shadow:none;
  2892. -webkit-box-shadow:none;
  2893. box-shadow:none;
  2894. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2895. font-weight:500;
  2896. font-style:normal;
  2897. font-size:24px;
  2898. }
  2899. #u31191 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:935px;
  2903. top:-862px;
  2904. width:97px;
  2905. height:33px;
  2906. display:flex;
  2907. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2908. font-weight:500;
  2909. font-style:normal;
  2910. font-size:24px;
  2911. }
  2912. #u31191 .text {
  2913. position:absolute;
  2914. align-self:flex-start;
  2915. padding:0px 0px 0px 0px;
  2916. box-sizing:border-box;
  2917. width:100%;
  2918. }
  2919. #u31191_text {
  2920. border-width:0px;
  2921. white-space:nowrap;
  2922. text-transform:none;
  2923. }
  2924. #u31192_img {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:61px;
  2930. height:63px;
  2931. }
  2932. #u31192 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:854px;
  2936. top:-877px;
  2937. width:61px;
  2938. height:63px;
  2939. display:flex;
  2940. }
  2941. #u31192 .text {
  2942. position:absolute;
  2943. align-self:center;
  2944. padding:2px 2px 2px 2px;
  2945. box-sizing:border-box;
  2946. width:100%;
  2947. }
  2948. #u31192_text {
  2949. border-width:0px;
  2950. word-wrap:break-word;
  2951. text-transform:none;
  2952. visibility:hidden;
  2953. }
  2954. #u31193_img {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:15px;
  2960. height:4px;
  2961. }
  2962. #u31193 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:1051px;
  2966. top:-886px;
  2967. width:15px;
  2968. height:4px;
  2969. display:flex;
  2970. }
  2971. #u31193 .text {
  2972. position:absolute;
  2973. align-self:center;
  2974. padding:2px 2px 2px 2px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u31193_text {
  2979. border-width:0px;
  2980. word-wrap:break-word;
  2981. text-transform:none;
  2982. visibility:hidden;
  2983. }
  2984. #u31194 {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:0px;
  2990. height:0px;
  2991. }
  2992. #u31195_div {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:240px;
  2998. height:100px;
  2999. background:inherit;
  3000. background-color:rgba(255, 255, 255, 1);
  3001. border:none;
  3002. border-radius:0px;
  3003. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3004. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3005. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3006. }
  3007. #u31195 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:1096px;
  3011. top:-895px;
  3012. width:240px;
  3013. height:100px;
  3014. display:flex;
  3015. }
  3016. #u31195 .text {
  3017. position:absolute;
  3018. align-self:center;
  3019. padding:2px 2px 2px 2px;
  3020. box-sizing:border-box;
  3021. width:100%;
  3022. }
  3023. #u31195_text {
  3024. border-width:0px;
  3025. word-wrap:break-word;
  3026. text-transform:none;
  3027. visibility:hidden;
  3028. }
  3029. #u31196_div {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:97px;
  3035. height:33px;
  3036. background:inherit;
  3037. background-color:rgba(255, 255, 255, 0);
  3038. border:none;
  3039. border-radius:0px;
  3040. -moz-box-shadow:none;
  3041. -webkit-box-shadow:none;
  3042. box-shadow:none;
  3043. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3044. font-weight:500;
  3045. font-style:normal;
  3046. font-size:24px;
  3047. }
  3048. #u31196 {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:1195px;
  3052. top:-862px;
  3053. width:97px;
  3054. height:33px;
  3055. display:flex;
  3056. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3057. font-weight:500;
  3058. font-style:normal;
  3059. font-size:24px;
  3060. }
  3061. #u31196 .text {
  3062. position:absolute;
  3063. align-self:flex-start;
  3064. padding:0px 0px 0px 0px;
  3065. box-sizing:border-box;
  3066. width:100%;
  3067. }
  3068. #u31196_text {
  3069. border-width:0px;
  3070. white-space:nowrap;
  3071. text-transform:none;
  3072. }
  3073. #u31197_img {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:61px;
  3079. height:63px;
  3080. }
  3081. #u31197 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:1114px;
  3085. top:-877px;
  3086. width:61px;
  3087. height:63px;
  3088. display:flex;
  3089. }
  3090. #u31197 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 2px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u31197_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u31198_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:15px;
  3109. height:4px;
  3110. }
  3111. #u31198 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:1311px;
  3115. top:-888px;
  3116. width:15px;
  3117. height:4px;
  3118. display:flex;
  3119. }
  3120. #u31198 .text {
  3121. position:absolute;
  3122. align-self:center;
  3123. padding:2px 2px 2px 2px;
  3124. box-sizing:border-box;
  3125. width:100%;
  3126. }
  3127. #u31198_text {
  3128. border-width:0px;
  3129. word-wrap:break-word;
  3130. text-transform:none;
  3131. visibility:hidden;
  3132. }
  3133. #u31199 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:0px;
  3138. width:0px;
  3139. height:0px;
  3140. }
  3141. #u31200_div {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:240px;
  3147. height:100px;
  3148. background:inherit;
  3149. background-color:rgba(255, 255, 255, 1);
  3150. border:none;
  3151. border-radius:0px;
  3152. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3153. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3154. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3155. }
  3156. #u31200 {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:56px;
  3160. top:-775px;
  3161. width:240px;
  3162. height:100px;
  3163. display:flex;
  3164. }
  3165. #u31200 .text {
  3166. position:absolute;
  3167. align-self:center;
  3168. padding:2px 2px 2px 2px;
  3169. box-sizing:border-box;
  3170. width:100%;
  3171. }
  3172. #u31200_text {
  3173. border-width:0px;
  3174. word-wrap:break-word;
  3175. text-transform:none;
  3176. visibility:hidden;
  3177. }
  3178. #u31201_div {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:97px;
  3184. height:33px;
  3185. background:inherit;
  3186. background-color:rgba(255, 255, 255, 0);
  3187. border:none;
  3188. border-radius:0px;
  3189. -moz-box-shadow:none;
  3190. -webkit-box-shadow:none;
  3191. box-shadow:none;
  3192. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3193. font-weight:500;
  3194. font-style:normal;
  3195. font-size:24px;
  3196. }
  3197. #u31201 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:155px;
  3201. top:-742px;
  3202. width:97px;
  3203. height:33px;
  3204. display:flex;
  3205. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3206. font-weight:500;
  3207. font-style:normal;
  3208. font-size:24px;
  3209. }
  3210. #u31201 .text {
  3211. position:absolute;
  3212. align-self:flex-start;
  3213. padding:0px 0px 0px 0px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u31201_text {
  3218. border-width:0px;
  3219. white-space:nowrap;
  3220. text-transform:none;
  3221. }
  3222. #u31202_img {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:61px;
  3228. height:63px;
  3229. }
  3230. #u31202 {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:74px;
  3234. top:-757px;
  3235. width:61px;
  3236. height:63px;
  3237. display:flex;
  3238. }
  3239. #u31202 .text {
  3240. position:absolute;
  3241. align-self:center;
  3242. padding:2px 2px 2px 2px;
  3243. box-sizing:border-box;
  3244. width:100%;
  3245. }
  3246. #u31202_text {
  3247. border-width:0px;
  3248. word-wrap:break-word;
  3249. text-transform:none;
  3250. visibility:hidden;
  3251. }
  3252. #u31203_img {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:15px;
  3258. height:4px;
  3259. }
  3260. #u31203 {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:271px;
  3264. top:-768px;
  3265. width:15px;
  3266. height:4px;
  3267. display:flex;
  3268. }
  3269. #u31203 .text {
  3270. position:absolute;
  3271. align-self:center;
  3272. padding:2px 2px 2px 2px;
  3273. box-sizing:border-box;
  3274. width:100%;
  3275. }
  3276. #u31203_text {
  3277. border-width:0px;
  3278. word-wrap:break-word;
  3279. text-transform:none;
  3280. visibility:hidden;
  3281. }
  3282. #u31204 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:0px;
  3286. top:0px;
  3287. width:0px;
  3288. height:0px;
  3289. }
  3290. #u31205_div {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:240px;
  3296. height:100px;
  3297. background:inherit;
  3298. background-color:rgba(255, 255, 255, 1);
  3299. border:none;
  3300. border-radius:0px;
  3301. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3302. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3303. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3304. }
  3305. #u31205 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:576px;
  3309. top:-895px;
  3310. width:240px;
  3311. height:100px;
  3312. display:flex;
  3313. }
  3314. #u31205 .text {
  3315. position:absolute;
  3316. align-self:center;
  3317. padding:2px 2px 2px 2px;
  3318. box-sizing:border-box;
  3319. width:100%;
  3320. }
  3321. #u31205_text {
  3322. border-width:0px;
  3323. word-wrap:break-word;
  3324. text-transform:none;
  3325. visibility:hidden;
  3326. }
  3327. #u31206_div {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:0px;
  3331. top:0px;
  3332. width:97px;
  3333. height:33px;
  3334. background:inherit;
  3335. background-color:rgba(255, 255, 255, 0);
  3336. border:none;
  3337. border-radius:0px;
  3338. -moz-box-shadow:none;
  3339. -webkit-box-shadow:none;
  3340. box-shadow:none;
  3341. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3342. font-weight:500;
  3343. font-style:normal;
  3344. font-size:24px;
  3345. }
  3346. #u31206 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:675px;
  3350. top:-862px;
  3351. width:97px;
  3352. height:33px;
  3353. display:flex;
  3354. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3355. font-weight:500;
  3356. font-style:normal;
  3357. font-size:24px;
  3358. }
  3359. #u31206 .text {
  3360. position:absolute;
  3361. align-self:flex-start;
  3362. padding:0px 0px 0px 0px;
  3363. box-sizing:border-box;
  3364. width:100%;
  3365. }
  3366. #u31206_text {
  3367. border-width:0px;
  3368. white-space:nowrap;
  3369. text-transform:none;
  3370. }
  3371. #u31207_img {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:61px;
  3377. height:63px;
  3378. }
  3379. #u31207 {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:594px;
  3383. top:-877px;
  3384. width:61px;
  3385. height:63px;
  3386. display:flex;
  3387. }
  3388. #u31207 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:2px 2px 2px 2px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u31207_text {
  3396. border-width:0px;
  3397. word-wrap:break-word;
  3398. text-transform:none;
  3399. visibility:hidden;
  3400. }
  3401. #u31208_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:15px;
  3407. height:4px;
  3408. }
  3409. #u31208 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:791px;
  3413. top:-888px;
  3414. width:15px;
  3415. height:4px;
  3416. display:flex;
  3417. }
  3418. #u31208 .text {
  3419. position:absolute;
  3420. align-self:center;
  3421. padding:2px 2px 2px 2px;
  3422. box-sizing:border-box;
  3423. width:100%;
  3424. }
  3425. #u31208_text {
  3426. border-width:0px;
  3427. word-wrap:break-word;
  3428. text-transform:none;
  3429. visibility:hidden;
  3430. }
  3431. #u31209 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:0px;
  3437. height:0px;
  3438. }
  3439. #u31210_div {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:240px;
  3445. height:100px;
  3446. background:inherit;
  3447. background-color:rgba(255, 255, 255, 1);
  3448. border:none;
  3449. border-radius:0px;
  3450. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3451. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3452. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3453. }
  3454. #u31210 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:576px;
  3458. top:-535px;
  3459. width:240px;
  3460. height:100px;
  3461. display:flex;
  3462. }
  3463. #u31210 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 2px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u31210_text {
  3471. border-width:0px;
  3472. word-wrap:break-word;
  3473. text-transform:none;
  3474. visibility:hidden;
  3475. }
  3476. #u31211_div {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:97px;
  3482. height:33px;
  3483. background:inherit;
  3484. background-color:rgba(255, 255, 255, 0);
  3485. border:none;
  3486. border-radius:0px;
  3487. -moz-box-shadow:none;
  3488. -webkit-box-shadow:none;
  3489. box-shadow:none;
  3490. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3491. font-weight:500;
  3492. font-style:normal;
  3493. font-size:24px;
  3494. }
  3495. #u31211 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:675px;
  3499. top:-502px;
  3500. width:97px;
  3501. height:33px;
  3502. display:flex;
  3503. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3504. font-weight:500;
  3505. font-style:normal;
  3506. font-size:24px;
  3507. }
  3508. #u31211 .text {
  3509. position:absolute;
  3510. align-self:flex-start;
  3511. padding:0px 0px 0px 0px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u31211_text {
  3516. border-width:0px;
  3517. white-space:nowrap;
  3518. text-transform:none;
  3519. }
  3520. #u31212_img {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:61px;
  3526. height:63px;
  3527. }
  3528. #u31212 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:594px;
  3532. top:-517px;
  3533. width:61px;
  3534. height:63px;
  3535. display:flex;
  3536. }
  3537. #u31212 .text {
  3538. position:absolute;
  3539. align-self:center;
  3540. padding:2px 2px 2px 2px;
  3541. box-sizing:border-box;
  3542. width:100%;
  3543. }
  3544. #u31212_text {
  3545. border-width:0px;
  3546. word-wrap:break-word;
  3547. text-transform:none;
  3548. visibility:hidden;
  3549. }
  3550. #u31213_img {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:0px;
  3554. top:0px;
  3555. width:15px;
  3556. height:4px;
  3557. }
  3558. #u31213 {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:791px;
  3562. top:-526px;
  3563. width:15px;
  3564. height:4px;
  3565. display:flex;
  3566. }
  3567. #u31213 .text {
  3568. position:absolute;
  3569. align-self:center;
  3570. padding:2px 2px 2px 2px;
  3571. box-sizing:border-box;
  3572. width:100%;
  3573. }
  3574. #u31213_text {
  3575. border-width:0px;
  3576. word-wrap:break-word;
  3577. text-transform:none;
  3578. visibility:hidden;
  3579. }
  3580. #u31214 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:0px;
  3584. top:0px;
  3585. width:0px;
  3586. height:0px;
  3587. }
  3588. #u31215_div {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:240px;
  3594. height:100px;
  3595. background:inherit;
  3596. background-color:rgba(255, 255, 255, 1);
  3597. border:none;
  3598. border-radius:0px;
  3599. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3600. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3601. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3602. }
  3603. #u31215 {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:56px;
  3607. top:-895px;
  3608. width:240px;
  3609. height:100px;
  3610. display:flex;
  3611. }
  3612. #u31215 .text {
  3613. position:absolute;
  3614. align-self:center;
  3615. padding:2px 2px 2px 2px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u31215_text {
  3620. border-width:0px;
  3621. word-wrap:break-word;
  3622. text-transform:none;
  3623. visibility:hidden;
  3624. }
  3625. #u31216_div {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:97px;
  3631. height:33px;
  3632. background:inherit;
  3633. background-color:rgba(255, 255, 255, 0);
  3634. border:none;
  3635. border-radius:0px;
  3636. -moz-box-shadow:none;
  3637. -webkit-box-shadow:none;
  3638. box-shadow:none;
  3639. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3640. font-weight:500;
  3641. font-style:normal;
  3642. font-size:24px;
  3643. }
  3644. #u31216 {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:155px;
  3648. top:-862px;
  3649. width:97px;
  3650. height:33px;
  3651. display:flex;
  3652. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3653. font-weight:500;
  3654. font-style:normal;
  3655. font-size:24px;
  3656. }
  3657. #u31216 .text {
  3658. position:absolute;
  3659. align-self:flex-start;
  3660. padding:0px 0px 0px 0px;
  3661. box-sizing:border-box;
  3662. width:100%;
  3663. }
  3664. #u31216_text {
  3665. border-width:0px;
  3666. white-space:nowrap;
  3667. text-transform:none;
  3668. }
  3669. #u31217_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:61px;
  3675. height:63px;
  3676. }
  3677. #u31217 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:74px;
  3681. top:-877px;
  3682. width:61px;
  3683. height:63px;
  3684. display:flex;
  3685. }
  3686. #u31217 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 2px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u31217_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u31218_img {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:15px;
  3705. height:4px;
  3706. }
  3707. #u31218 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:271px;
  3711. top:-888px;
  3712. width:15px;
  3713. height:4px;
  3714. display:flex;
  3715. }
  3716. #u31218 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 2px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u31218_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u31219 {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:0px;
  3735. height:0px;
  3736. }
  3737. #u31220_div {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:240px;
  3743. height:100px;
  3744. background:inherit;
  3745. background-color:rgba(255, 255, 255, 1);
  3746. border:none;
  3747. border-radius:0px;
  3748. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3749. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3750. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3751. }
  3752. #u31220 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:836px;
  3756. top:-1015px;
  3757. width:240px;
  3758. height:100px;
  3759. display:flex;
  3760. }
  3761. #u31220 .text {
  3762. position:absolute;
  3763. align-self:center;
  3764. padding:2px 2px 2px 2px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u31220_text {
  3769. border-width:0px;
  3770. word-wrap:break-word;
  3771. text-transform:none;
  3772. visibility:hidden;
  3773. }
  3774. #u31221_div {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:97px;
  3780. height:33px;
  3781. background:inherit;
  3782. background-color:rgba(255, 255, 255, 0);
  3783. border:none;
  3784. border-radius:0px;
  3785. -moz-box-shadow:none;
  3786. -webkit-box-shadow:none;
  3787. box-shadow:none;
  3788. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3789. font-weight:500;
  3790. font-style:normal;
  3791. font-size:24px;
  3792. }
  3793. #u31221 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:935px;
  3797. top:-982px;
  3798. width:97px;
  3799. height:33px;
  3800. display:flex;
  3801. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3802. font-weight:500;
  3803. font-style:normal;
  3804. font-size:24px;
  3805. }
  3806. #u31221 .text {
  3807. position:absolute;
  3808. align-self:flex-start;
  3809. padding:0px 0px 0px 0px;
  3810. box-sizing:border-box;
  3811. width:100%;
  3812. }
  3813. #u31221_text {
  3814. border-width:0px;
  3815. white-space:nowrap;
  3816. text-transform:none;
  3817. }
  3818. #u31222_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:61px;
  3824. height:63px;
  3825. }
  3826. #u31222 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:854px;
  3830. top:-997px;
  3831. width:61px;
  3832. height:63px;
  3833. display:flex;
  3834. }
  3835. #u31222 .text {
  3836. position:absolute;
  3837. align-self:center;
  3838. padding:2px 2px 2px 2px;
  3839. box-sizing:border-box;
  3840. width:100%;
  3841. }
  3842. #u31222_text {
  3843. border-width:0px;
  3844. word-wrap:break-word;
  3845. text-transform:none;
  3846. visibility:hidden;
  3847. }
  3848. #u31223_img {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:15px;
  3854. height:4px;
  3855. }
  3856. #u31223 {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:1051px;
  3860. top:-1008px;
  3861. width:15px;
  3862. height:4px;
  3863. display:flex;
  3864. }
  3865. #u31223 .text {
  3866. position:absolute;
  3867. align-self:center;
  3868. padding:2px 2px 2px 2px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u31223_text {
  3873. border-width:0px;
  3874. word-wrap:break-word;
  3875. text-transform:none;
  3876. visibility:hidden;
  3877. }
  3878. #u31224 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:0px;
  3884. height:0px;
  3885. }
  3886. #u31225_div {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:240px;
  3892. height:100px;
  3893. background:inherit;
  3894. background-color:rgba(255, 255, 255, 1);
  3895. border:none;
  3896. border-radius:0px;
  3897. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3898. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3899. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  3900. }
  3901. #u31225 {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:1096px;
  3905. top:-1015px;
  3906. width:240px;
  3907. height:100px;
  3908. display:flex;
  3909. }
  3910. #u31225 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 2px 2px 2px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u31225_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u31226_div {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:97px;
  3929. height:33px;
  3930. background:inherit;
  3931. background-color:rgba(255, 255, 255, 0);
  3932. border:none;
  3933. border-radius:0px;
  3934. -moz-box-shadow:none;
  3935. -webkit-box-shadow:none;
  3936. box-shadow:none;
  3937. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3938. font-weight:500;
  3939. font-style:normal;
  3940. font-size:24px;
  3941. }
  3942. #u31226 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:1195px;
  3946. top:-982px;
  3947. width:97px;
  3948. height:33px;
  3949. display:flex;
  3950. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3951. font-weight:500;
  3952. font-style:normal;
  3953. font-size:24px;
  3954. }
  3955. #u31226 .text {
  3956. position:absolute;
  3957. align-self:flex-start;
  3958. padding:0px 0px 0px 0px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u31226_text {
  3963. border-width:0px;
  3964. white-space:nowrap;
  3965. text-transform:none;
  3966. }
  3967. #u31227_img {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:0px;
  3971. top:0px;
  3972. width:61px;
  3973. height:63px;
  3974. }
  3975. #u31227 {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:1114px;
  3979. top:-997px;
  3980. width:61px;
  3981. height:63px;
  3982. display:flex;
  3983. }
  3984. #u31227 .text {
  3985. position:absolute;
  3986. align-self:center;
  3987. padding:2px 2px 2px 2px;
  3988. box-sizing:border-box;
  3989. width:100%;
  3990. }
  3991. #u31227_text {
  3992. border-width:0px;
  3993. word-wrap:break-word;
  3994. text-transform:none;
  3995. visibility:hidden;
  3996. }
  3997. #u31228_img {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:15px;
  4003. height:4px;
  4004. }
  4005. #u31228 {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:1311px;
  4009. top:-1008px;
  4010. width:15px;
  4011. height:4px;
  4012. display:flex;
  4013. }
  4014. #u31228 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:2px 2px 2px 2px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u31228_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. visibility:hidden;
  4026. }
  4027. #u31229 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:0px;
  4033. height:0px;
  4034. }
  4035. #u31230_div {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:240px;
  4041. height:100px;
  4042. background:inherit;
  4043. background-color:rgba(255, 255, 255, 1);
  4044. border:none;
  4045. border-radius:0px;
  4046. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4047. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4048. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4049. }
  4050. #u31230 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:316px;
  4054. top:-895px;
  4055. width:240px;
  4056. height:100px;
  4057. display:flex;
  4058. }
  4059. #u31230 .text {
  4060. position:absolute;
  4061. align-self:center;
  4062. padding:2px 2px 2px 2px;
  4063. box-sizing:border-box;
  4064. width:100%;
  4065. }
  4066. #u31230_text {
  4067. border-width:0px;
  4068. word-wrap:break-word;
  4069. text-transform:none;
  4070. visibility:hidden;
  4071. }
  4072. #u31231_div {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:0px;
  4076. top:0px;
  4077. width:97px;
  4078. height:33px;
  4079. background:inherit;
  4080. background-color:rgba(255, 255, 255, 0);
  4081. border:none;
  4082. border-radius:0px;
  4083. -moz-box-shadow:none;
  4084. -webkit-box-shadow:none;
  4085. box-shadow:none;
  4086. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4087. font-weight:500;
  4088. font-style:normal;
  4089. font-size:24px;
  4090. }
  4091. #u31231 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:415px;
  4095. top:-862px;
  4096. width:97px;
  4097. height:33px;
  4098. display:flex;
  4099. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4100. font-weight:500;
  4101. font-style:normal;
  4102. font-size:24px;
  4103. }
  4104. #u31231 .text {
  4105. position:absolute;
  4106. align-self:flex-start;
  4107. padding:0px 0px 0px 0px;
  4108. box-sizing:border-box;
  4109. width:100%;
  4110. }
  4111. #u31231_text {
  4112. border-width:0px;
  4113. white-space:nowrap;
  4114. text-transform:none;
  4115. }
  4116. #u31232_img {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:0px;
  4120. top:0px;
  4121. width:61px;
  4122. height:63px;
  4123. }
  4124. #u31232 {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:334px;
  4128. top:-877px;
  4129. width:61px;
  4130. height:63px;
  4131. display:flex;
  4132. }
  4133. #u31232 .text {
  4134. position:absolute;
  4135. align-self:center;
  4136. padding:2px 2px 2px 2px;
  4137. box-sizing:border-box;
  4138. width:100%;
  4139. }
  4140. #u31232_text {
  4141. border-width:0px;
  4142. word-wrap:break-word;
  4143. text-transform:none;
  4144. visibility:hidden;
  4145. }
  4146. #u31233_img {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:15px;
  4152. height:4px;
  4153. }
  4154. #u31233 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:534px;
  4158. top:-886px;
  4159. width:15px;
  4160. height:4px;
  4161. display:flex;
  4162. }
  4163. #u31233 .text {
  4164. position:absolute;
  4165. align-self:center;
  4166. padding:2px 2px 2px 2px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u31233_text {
  4171. border-width:0px;
  4172. word-wrap:break-word;
  4173. text-transform:none;
  4174. visibility:hidden;
  4175. }
  4176. #u31234 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:0px;
  4182. height:0px;
  4183. }
  4184. #u31235_div {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:240px;
  4190. height:100px;
  4191. background:inherit;
  4192. background-color:rgba(255, 255, 255, 1);
  4193. border:none;
  4194. border-radius:0px;
  4195. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4196. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4197. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4198. }
  4199. #u31235 {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:316px;
  4203. top:-655px;
  4204. width:240px;
  4205. height:100px;
  4206. display:flex;
  4207. }
  4208. #u31235 .text {
  4209. position:absolute;
  4210. align-self:center;
  4211. padding:2px 2px 2px 2px;
  4212. box-sizing:border-box;
  4213. width:100%;
  4214. }
  4215. #u31235_text {
  4216. border-width:0px;
  4217. word-wrap:break-word;
  4218. text-transform:none;
  4219. visibility:hidden;
  4220. }
  4221. #u31236_div {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:97px;
  4227. height:33px;
  4228. background:inherit;
  4229. background-color:rgba(255, 255, 255, 0);
  4230. border:none;
  4231. border-radius:0px;
  4232. -moz-box-shadow:none;
  4233. -webkit-box-shadow:none;
  4234. box-shadow:none;
  4235. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4236. font-weight:500;
  4237. font-style:normal;
  4238. font-size:24px;
  4239. }
  4240. #u31236 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:415px;
  4244. top:-622px;
  4245. width:97px;
  4246. height:33px;
  4247. display:flex;
  4248. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4249. font-weight:500;
  4250. font-style:normal;
  4251. font-size:24px;
  4252. }
  4253. #u31236 .text {
  4254. position:absolute;
  4255. align-self:flex-start;
  4256. padding:0px 0px 0px 0px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u31236_text {
  4261. border-width:0px;
  4262. white-space:nowrap;
  4263. text-transform:none;
  4264. }
  4265. #u31237_img {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:61px;
  4271. height:63px;
  4272. }
  4273. #u31237 {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:334px;
  4277. top:-637px;
  4278. width:61px;
  4279. height:63px;
  4280. display:flex;
  4281. }
  4282. #u31237 .text {
  4283. position:absolute;
  4284. align-self:center;
  4285. padding:2px 2px 2px 2px;
  4286. box-sizing:border-box;
  4287. width:100%;
  4288. }
  4289. #u31237_text {
  4290. border-width:0px;
  4291. word-wrap:break-word;
  4292. text-transform:none;
  4293. visibility:hidden;
  4294. }
  4295. #u31238_img {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:0px;
  4299. top:0px;
  4300. width:15px;
  4301. height:4px;
  4302. }
  4303. #u31238 {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:531px;
  4307. top:-646px;
  4308. width:15px;
  4309. height:4px;
  4310. display:flex;
  4311. }
  4312. #u31238 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 2px 2px 2px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u31238_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. visibility:hidden;
  4324. }
  4325. #u31239 {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:0px;
  4331. height:0px;
  4332. }
  4333. #u31240_div {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:240px;
  4339. height:100px;
  4340. background:inherit;
  4341. background-color:rgba(255, 255, 255, 1);
  4342. border:none;
  4343. border-radius:0px;
  4344. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4345. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4346. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4347. }
  4348. #u31240 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:836px;
  4352. top:-535px;
  4353. width:240px;
  4354. height:100px;
  4355. display:flex;
  4356. }
  4357. #u31240 .text {
  4358. position:absolute;
  4359. align-self:center;
  4360. padding:2px 2px 2px 2px;
  4361. box-sizing:border-box;
  4362. width:100%;
  4363. }
  4364. #u31240_text {
  4365. border-width:0px;
  4366. word-wrap:break-word;
  4367. text-transform:none;
  4368. visibility:hidden;
  4369. }
  4370. #u31241_div {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:97px;
  4376. height:33px;
  4377. background:inherit;
  4378. background-color:rgba(255, 255, 255, 0);
  4379. border:none;
  4380. border-radius:0px;
  4381. -moz-box-shadow:none;
  4382. -webkit-box-shadow:none;
  4383. box-shadow:none;
  4384. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4385. font-weight:500;
  4386. font-style:normal;
  4387. font-size:24px;
  4388. }
  4389. #u31241 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:935px;
  4393. top:-502px;
  4394. width:97px;
  4395. height:33px;
  4396. display:flex;
  4397. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4398. font-weight:500;
  4399. font-style:normal;
  4400. font-size:24px;
  4401. }
  4402. #u31241 .text {
  4403. position:absolute;
  4404. align-self:flex-start;
  4405. padding:0px 0px 0px 0px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u31241_text {
  4410. border-width:0px;
  4411. white-space:nowrap;
  4412. text-transform:none;
  4413. }
  4414. #u31242_img {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:61px;
  4420. height:63px;
  4421. }
  4422. #u31242 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:854px;
  4426. top:-517px;
  4427. width:61px;
  4428. height:63px;
  4429. display:flex;
  4430. }
  4431. #u31242 .text {
  4432. position:absolute;
  4433. align-self:center;
  4434. padding:2px 2px 2px 2px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u31242_text {
  4439. border-width:0px;
  4440. word-wrap:break-word;
  4441. text-transform:none;
  4442. visibility:hidden;
  4443. }
  4444. #u31243_img {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:15px;
  4450. height:4px;
  4451. }
  4452. #u31243 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:1051px;
  4456. top:-528px;
  4457. width:15px;
  4458. height:4px;
  4459. display:flex;
  4460. }
  4461. #u31243 .text {
  4462. position:absolute;
  4463. align-self:center;
  4464. padding:2px 2px 2px 2px;
  4465. box-sizing:border-box;
  4466. width:100%;
  4467. }
  4468. #u31243_text {
  4469. border-width:0px;
  4470. word-wrap:break-word;
  4471. text-transform:none;
  4472. visibility:hidden;
  4473. }
  4474. #u31244 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:0px;
  4480. height:0px;
  4481. }
  4482. #u31245_div {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:240px;
  4488. height:100px;
  4489. background:inherit;
  4490. background-color:rgba(255, 255, 255, 1);
  4491. border:none;
  4492. border-radius:0px;
  4493. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4494. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4495. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4496. }
  4497. #u31245 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:1096px;
  4501. top:-535px;
  4502. width:240px;
  4503. height:100px;
  4504. display:flex;
  4505. }
  4506. #u31245 .text {
  4507. position:absolute;
  4508. align-self:center;
  4509. padding:2px 2px 2px 2px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u31245_text {
  4514. border-width:0px;
  4515. word-wrap:break-word;
  4516. text-transform:none;
  4517. visibility:hidden;
  4518. }
  4519. #u31246_div {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:97px;
  4525. height:33px;
  4526. background:inherit;
  4527. background-color:rgba(255, 255, 255, 0);
  4528. border:none;
  4529. border-radius:0px;
  4530. -moz-box-shadow:none;
  4531. -webkit-box-shadow:none;
  4532. box-shadow:none;
  4533. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4534. font-weight:500;
  4535. font-style:normal;
  4536. font-size:24px;
  4537. }
  4538. #u31246 {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:1195px;
  4542. top:-502px;
  4543. width:97px;
  4544. height:33px;
  4545. display:flex;
  4546. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4547. font-weight:500;
  4548. font-style:normal;
  4549. font-size:24px;
  4550. }
  4551. #u31246 .text {
  4552. position:absolute;
  4553. align-self:flex-start;
  4554. padding:0px 0px 0px 0px;
  4555. box-sizing:border-box;
  4556. width:100%;
  4557. }
  4558. #u31246_text {
  4559. border-width:0px;
  4560. white-space:nowrap;
  4561. text-transform:none;
  4562. }
  4563. #u31247_img {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:61px;
  4569. height:63px;
  4570. }
  4571. #u31247 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:1114px;
  4575. top:-517px;
  4576. width:61px;
  4577. height:63px;
  4578. display:flex;
  4579. }
  4580. #u31247 .text {
  4581. position:absolute;
  4582. align-self:center;
  4583. padding:2px 2px 2px 2px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u31247_text {
  4588. border-width:0px;
  4589. word-wrap:break-word;
  4590. text-transform:none;
  4591. visibility:hidden;
  4592. }
  4593. #u31248_img {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:15px;
  4599. height:4px;
  4600. }
  4601. #u31248 {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:1311px;
  4605. top:-528px;
  4606. width:15px;
  4607. height:4px;
  4608. display:flex;
  4609. }
  4610. #u31248 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:2px 2px 2px 2px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u31248_text {
  4618. border-width:0px;
  4619. word-wrap:break-word;
  4620. text-transform:none;
  4621. visibility:hidden;
  4622. }
  4623. #u31249 {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:0px;
  4629. height:0px;
  4630. }
  4631. #u31250_div {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:0px;
  4636. width:240px;
  4637. height:100px;
  4638. background:inherit;
  4639. background-color:rgba(255, 255, 255, 1);
  4640. border:none;
  4641. border-radius:0px;
  4642. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4643. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4644. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4645. }
  4646. #u31250 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:836px;
  4650. top:-655px;
  4651. width:240px;
  4652. height:100px;
  4653. display:flex;
  4654. }
  4655. #u31250 .text {
  4656. position:absolute;
  4657. align-self:center;
  4658. padding:2px 2px 2px 2px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u31250_text {
  4663. border-width:0px;
  4664. word-wrap:break-word;
  4665. text-transform:none;
  4666. visibility:hidden;
  4667. }
  4668. #u31251_div {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:97px;
  4674. height:33px;
  4675. background:inherit;
  4676. background-color:rgba(255, 255, 255, 0);
  4677. border:none;
  4678. border-radius:0px;
  4679. -moz-box-shadow:none;
  4680. -webkit-box-shadow:none;
  4681. box-shadow:none;
  4682. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4683. font-weight:500;
  4684. font-style:normal;
  4685. font-size:24px;
  4686. }
  4687. #u31251 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:935px;
  4691. top:-622px;
  4692. width:97px;
  4693. height:33px;
  4694. display:flex;
  4695. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4696. font-weight:500;
  4697. font-style:normal;
  4698. font-size:24px;
  4699. }
  4700. #u31251 .text {
  4701. position:absolute;
  4702. align-self:flex-start;
  4703. padding:0px 0px 0px 0px;
  4704. box-sizing:border-box;
  4705. width:100%;
  4706. }
  4707. #u31251_text {
  4708. border-width:0px;
  4709. white-space:nowrap;
  4710. text-transform:none;
  4711. }
  4712. #u31252_img {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:0px;
  4716. top:0px;
  4717. width:61px;
  4718. height:63px;
  4719. }
  4720. #u31252 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:854px;
  4724. top:-637px;
  4725. width:61px;
  4726. height:63px;
  4727. display:flex;
  4728. }
  4729. #u31252 .text {
  4730. position:absolute;
  4731. align-self:center;
  4732. padding:2px 2px 2px 2px;
  4733. box-sizing:border-box;
  4734. width:100%;
  4735. }
  4736. #u31252_text {
  4737. border-width:0px;
  4738. word-wrap:break-word;
  4739. text-transform:none;
  4740. visibility:hidden;
  4741. }
  4742. #u31253_img {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:15px;
  4748. height:4px;
  4749. }
  4750. #u31253 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:1051px;
  4754. top:-648px;
  4755. width:15px;
  4756. height:4px;
  4757. display:flex;
  4758. }
  4759. #u31253 .text {
  4760. position:absolute;
  4761. align-self:center;
  4762. padding:2px 2px 2px 2px;
  4763. box-sizing:border-box;
  4764. width:100%;
  4765. }
  4766. #u31253_text {
  4767. border-width:0px;
  4768. word-wrap:break-word;
  4769. text-transform:none;
  4770. visibility:hidden;
  4771. }
  4772. #u31254 {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:0px;
  4778. height:0px;
  4779. }
  4780. #u31255_div {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:240px;
  4786. height:100px;
  4787. background:inherit;
  4788. background-color:rgba(255, 255, 255, 1);
  4789. border:none;
  4790. border-radius:0px;
  4791. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4792. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4793. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4794. }
  4795. #u31255 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:1096px;
  4799. top:-655px;
  4800. width:240px;
  4801. height:100px;
  4802. display:flex;
  4803. }
  4804. #u31255 .text {
  4805. position:absolute;
  4806. align-self:center;
  4807. padding:2px 2px 2px 2px;
  4808. box-sizing:border-box;
  4809. width:100%;
  4810. }
  4811. #u31255_text {
  4812. border-width:0px;
  4813. word-wrap:break-word;
  4814. text-transform:none;
  4815. visibility:hidden;
  4816. }
  4817. #u31256_div {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:97px;
  4823. height:33px;
  4824. background:inherit;
  4825. background-color:rgba(255, 255, 255, 0);
  4826. border:none;
  4827. border-radius:0px;
  4828. -moz-box-shadow:none;
  4829. -webkit-box-shadow:none;
  4830. box-shadow:none;
  4831. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4832. font-weight:500;
  4833. font-style:normal;
  4834. font-size:24px;
  4835. }
  4836. #u31256 {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:1195px;
  4840. top:-622px;
  4841. width:97px;
  4842. height:33px;
  4843. display:flex;
  4844. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4845. font-weight:500;
  4846. font-style:normal;
  4847. font-size:24px;
  4848. }
  4849. #u31256 .text {
  4850. position:absolute;
  4851. align-self:flex-start;
  4852. padding:0px 0px 0px 0px;
  4853. box-sizing:border-box;
  4854. width:100%;
  4855. }
  4856. #u31256_text {
  4857. border-width:0px;
  4858. white-space:nowrap;
  4859. text-transform:none;
  4860. }
  4861. #u31257_img {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:61px;
  4867. height:63px;
  4868. }
  4869. #u31257 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:1114px;
  4873. top:-637px;
  4874. width:61px;
  4875. height:63px;
  4876. display:flex;
  4877. }
  4878. #u31257 .text {
  4879. position:absolute;
  4880. align-self:center;
  4881. padding:2px 2px 2px 2px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u31257_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. visibility:hidden;
  4890. }
  4891. #u31258_img {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:0px;
  4895. top:0px;
  4896. width:15px;
  4897. height:4px;
  4898. }
  4899. #u31258 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:1314px;
  4903. top:-646px;
  4904. width:15px;
  4905. height:4px;
  4906. display:flex;
  4907. }
  4908. #u31258 .text {
  4909. position:absolute;
  4910. align-self:center;
  4911. padding:2px 2px 2px 2px;
  4912. box-sizing:border-box;
  4913. width:100%;
  4914. }
  4915. #u31258_text {
  4916. border-width:0px;
  4917. word-wrap:break-word;
  4918. text-transform:none;
  4919. visibility:hidden;
  4920. }
  4921. #u31259 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:0px;
  4927. height:0px;
  4928. }
  4929. #u31260_div {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:240px;
  4935. height:100px;
  4936. background:inherit;
  4937. background-color:rgba(255, 255, 255, 1);
  4938. border:none;
  4939. border-radius:0px;
  4940. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4941. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4942. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  4943. }
  4944. #u31260 {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:316px;
  4948. top:-535px;
  4949. width:240px;
  4950. height:100px;
  4951. display:flex;
  4952. }
  4953. #u31260 .text {
  4954. position:absolute;
  4955. align-self:center;
  4956. padding:2px 2px 2px 2px;
  4957. box-sizing:border-box;
  4958. width:100%;
  4959. }
  4960. #u31260_text {
  4961. border-width:0px;
  4962. word-wrap:break-word;
  4963. text-transform:none;
  4964. visibility:hidden;
  4965. }
  4966. #u31261_div {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:0px;
  4970. top:0px;
  4971. width:97px;
  4972. height:33px;
  4973. background:inherit;
  4974. background-color:rgba(255, 255, 255, 0);
  4975. border:none;
  4976. border-radius:0px;
  4977. -moz-box-shadow:none;
  4978. -webkit-box-shadow:none;
  4979. box-shadow:none;
  4980. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4981. font-weight:500;
  4982. font-style:normal;
  4983. font-size:24px;
  4984. }
  4985. #u31261 {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:415px;
  4989. top:-502px;
  4990. width:97px;
  4991. height:33px;
  4992. display:flex;
  4993. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4994. font-weight:500;
  4995. font-style:normal;
  4996. font-size:24px;
  4997. }
  4998. #u31261 .text {
  4999. position:absolute;
  5000. align-self:flex-start;
  5001. padding:0px 0px 0px 0px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u31261_text {
  5006. border-width:0px;
  5007. white-space:nowrap;
  5008. text-transform:none;
  5009. }
  5010. #u31262_img {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:0px;
  5014. top:0px;
  5015. width:61px;
  5016. height:63px;
  5017. }
  5018. #u31262 {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:334px;
  5022. top:-517px;
  5023. width:61px;
  5024. height:63px;
  5025. display:flex;
  5026. }
  5027. #u31262 .text {
  5028. position:absolute;
  5029. align-self:center;
  5030. padding:2px 2px 2px 2px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u31262_text {
  5035. border-width:0px;
  5036. word-wrap:break-word;
  5037. text-transform:none;
  5038. visibility:hidden;
  5039. }
  5040. #u31263_img {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:0px;
  5044. top:0px;
  5045. width:15px;
  5046. height:4px;
  5047. }
  5048. #u31263 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:531px;
  5052. top:-528px;
  5053. width:15px;
  5054. height:4px;
  5055. display:flex;
  5056. }
  5057. #u31263 .text {
  5058. position:absolute;
  5059. align-self:center;
  5060. padding:2px 2px 2px 2px;
  5061. box-sizing:border-box;
  5062. width:100%;
  5063. }
  5064. #u31263_text {
  5065. border-width:0px;
  5066. word-wrap:break-word;
  5067. text-transform:none;
  5068. visibility:hidden;
  5069. }
  5070. #u31264 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:0px;
  5074. top:0px;
  5075. width:0px;
  5076. height:0px;
  5077. }
  5078. #u31265_div {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:240px;
  5084. height:100px;
  5085. background:inherit;
  5086. background-color:rgba(255, 255, 255, 1);
  5087. border:none;
  5088. border-radius:0px;
  5089. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5090. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5091. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5092. }
  5093. #u31265 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:56px;
  5097. top:-535px;
  5098. width:240px;
  5099. height:100px;
  5100. display:flex;
  5101. }
  5102. #u31265 .text {
  5103. position:absolute;
  5104. align-self:center;
  5105. padding:2px 2px 2px 2px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u31265_text {
  5110. border-width:0px;
  5111. word-wrap:break-word;
  5112. text-transform:none;
  5113. visibility:hidden;
  5114. }
  5115. #u31266_div {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:97px;
  5121. height:33px;
  5122. background:inherit;
  5123. background-color:rgba(255, 255, 255, 0);
  5124. border:none;
  5125. border-radius:0px;
  5126. -moz-box-shadow:none;
  5127. -webkit-box-shadow:none;
  5128. box-shadow:none;
  5129. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5130. font-weight:500;
  5131. font-style:normal;
  5132. font-size:24px;
  5133. }
  5134. #u31266 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:155px;
  5138. top:-502px;
  5139. width:97px;
  5140. height:33px;
  5141. display:flex;
  5142. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5143. font-weight:500;
  5144. font-style:normal;
  5145. font-size:24px;
  5146. }
  5147. #u31266 .text {
  5148. position:absolute;
  5149. align-self:flex-start;
  5150. padding:0px 0px 0px 0px;
  5151. box-sizing:border-box;
  5152. width:100%;
  5153. }
  5154. #u31266_text {
  5155. border-width:0px;
  5156. white-space:nowrap;
  5157. text-transform:none;
  5158. }
  5159. #u31267_img {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:0px;
  5163. top:0px;
  5164. width:61px;
  5165. height:63px;
  5166. }
  5167. #u31267 {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:74px;
  5171. top:-517px;
  5172. width:61px;
  5173. height:63px;
  5174. display:flex;
  5175. }
  5176. #u31267 .text {
  5177. position:absolute;
  5178. align-self:center;
  5179. padding:2px 2px 2px 2px;
  5180. box-sizing:border-box;
  5181. width:100%;
  5182. }
  5183. #u31267_text {
  5184. border-width:0px;
  5185. word-wrap:break-word;
  5186. text-transform:none;
  5187. visibility:hidden;
  5188. }
  5189. #u31268_img {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:15px;
  5195. height:4px;
  5196. }
  5197. #u31268 {
  5198. border-width:0px;
  5199. position:absolute;
  5200. left:274px;
  5201. top:-526px;
  5202. width:15px;
  5203. height:4px;
  5204. display:flex;
  5205. }
  5206. #u31268 .text {
  5207. position:absolute;
  5208. align-self:center;
  5209. padding:2px 2px 2px 2px;
  5210. box-sizing:border-box;
  5211. width:100%;
  5212. }
  5213. #u31268_text {
  5214. border-width:0px;
  5215. word-wrap:break-word;
  5216. text-transform:none;
  5217. visibility:hidden;
  5218. }
  5219. #u31269 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:0px;
  5225. height:0px;
  5226. }
  5227. #u31270_div {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:0px;
  5231. top:0px;
  5232. width:240px;
  5233. height:100px;
  5234. background:inherit;
  5235. background-color:rgba(255, 255, 255, 1);
  5236. border:none;
  5237. border-radius:0px;
  5238. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5239. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5240. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5241. }
  5242. #u31270 {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:56px;
  5246. top:-414px;
  5247. width:240px;
  5248. height:100px;
  5249. display:flex;
  5250. }
  5251. #u31270 .text {
  5252. position:absolute;
  5253. align-self:center;
  5254. padding:2px 2px 2px 2px;
  5255. box-sizing:border-box;
  5256. width:100%;
  5257. }
  5258. #u31270_text {
  5259. border-width:0px;
  5260. word-wrap:break-word;
  5261. text-transform:none;
  5262. visibility:hidden;
  5263. }
  5264. #u31271_div {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:0px;
  5268. top:0px;
  5269. width:97px;
  5270. height:33px;
  5271. background:inherit;
  5272. background-color:rgba(255, 255, 255, 0);
  5273. border:none;
  5274. border-radius:0px;
  5275. -moz-box-shadow:none;
  5276. -webkit-box-shadow:none;
  5277. box-shadow:none;
  5278. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5279. font-weight:500;
  5280. font-style:normal;
  5281. font-size:24px;
  5282. }
  5283. #u31271 {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:155px;
  5287. top:-381px;
  5288. width:97px;
  5289. height:33px;
  5290. display:flex;
  5291. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5292. font-weight:500;
  5293. font-style:normal;
  5294. font-size:24px;
  5295. }
  5296. #u31271 .text {
  5297. position:absolute;
  5298. align-self:flex-start;
  5299. padding:0px 0px 0px 0px;
  5300. box-sizing:border-box;
  5301. width:100%;
  5302. }
  5303. #u31271_text {
  5304. border-width:0px;
  5305. white-space:nowrap;
  5306. text-transform:none;
  5307. }
  5308. #u31272_img {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:61px;
  5314. height:63px;
  5315. }
  5316. #u31272 {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:74px;
  5320. top:-396px;
  5321. width:61px;
  5322. height:63px;
  5323. display:flex;
  5324. }
  5325. #u31272 .text {
  5326. position:absolute;
  5327. align-self:center;
  5328. padding:2px 2px 2px 2px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u31272_text {
  5333. border-width:0px;
  5334. word-wrap:break-word;
  5335. text-transform:none;
  5336. visibility:hidden;
  5337. }
  5338. #u31273_img {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:0px;
  5342. top:0px;
  5343. width:15px;
  5344. height:4px;
  5345. }
  5346. #u31273 {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:271px;
  5350. top:-405px;
  5351. width:15px;
  5352. height:4px;
  5353. display:flex;
  5354. }
  5355. #u31273 .text {
  5356. position:absolute;
  5357. align-self:center;
  5358. padding:2px 2px 2px 2px;
  5359. box-sizing:border-box;
  5360. width:100%;
  5361. }
  5362. #u31273_text {
  5363. border-width:0px;
  5364. word-wrap:break-word;
  5365. text-transform:none;
  5366. visibility:hidden;
  5367. }
  5368. #u31274 {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:0px;
  5374. height:0px;
  5375. }
  5376. #u31275_div {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:240px;
  5382. height:100px;
  5383. background:inherit;
  5384. background-color:rgba(255, 255, 255, 1);
  5385. border:none;
  5386. border-radius:0px;
  5387. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5388. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5389. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5390. }
  5391. #u31275 {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:316px;
  5395. top:-415px;
  5396. width:240px;
  5397. height:100px;
  5398. display:flex;
  5399. }
  5400. #u31275 .text {
  5401. position:absolute;
  5402. align-self:center;
  5403. padding:2px 2px 2px 2px;
  5404. box-sizing:border-box;
  5405. width:100%;
  5406. }
  5407. #u31275_text {
  5408. border-width:0px;
  5409. word-wrap:break-word;
  5410. text-transform:none;
  5411. visibility:hidden;
  5412. }
  5413. #u31276_div {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:0px;
  5417. top:0px;
  5418. width:97px;
  5419. height:33px;
  5420. background:inherit;
  5421. background-color:rgba(255, 255, 255, 0);
  5422. border:none;
  5423. border-radius:0px;
  5424. -moz-box-shadow:none;
  5425. -webkit-box-shadow:none;
  5426. box-shadow:none;
  5427. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5428. font-weight:500;
  5429. font-style:normal;
  5430. font-size:24px;
  5431. }
  5432. #u31276 {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:415px;
  5436. top:-382px;
  5437. width:97px;
  5438. height:33px;
  5439. display:flex;
  5440. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5441. font-weight:500;
  5442. font-style:normal;
  5443. font-size:24px;
  5444. }
  5445. #u31276 .text {
  5446. position:absolute;
  5447. align-self:flex-start;
  5448. padding:0px 0px 0px 0px;
  5449. box-sizing:border-box;
  5450. width:100%;
  5451. }
  5452. #u31276_text {
  5453. border-width:0px;
  5454. white-space:nowrap;
  5455. text-transform:none;
  5456. }
  5457. #u31277_img {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:61px;
  5463. height:63px;
  5464. }
  5465. #u31277 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:334px;
  5469. top:-397px;
  5470. width:61px;
  5471. height:63px;
  5472. display:flex;
  5473. }
  5474. #u31277 .text {
  5475. position:absolute;
  5476. align-self:center;
  5477. padding:2px 2px 2px 2px;
  5478. box-sizing:border-box;
  5479. width:100%;
  5480. }
  5481. #u31277_text {
  5482. border-width:0px;
  5483. word-wrap:break-word;
  5484. text-transform:none;
  5485. visibility:hidden;
  5486. }
  5487. #u31278_img {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:15px;
  5493. height:4px;
  5494. }
  5495. #u31278 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:531px;
  5499. top:-406px;
  5500. width:15px;
  5501. height:4px;
  5502. display:flex;
  5503. }
  5504. #u31278 .text {
  5505. position:absolute;
  5506. align-self:center;
  5507. padding:2px 2px 2px 2px;
  5508. box-sizing:border-box;
  5509. width:100%;
  5510. }
  5511. #u31278_text {
  5512. border-width:0px;
  5513. word-wrap:break-word;
  5514. text-transform:none;
  5515. visibility:hidden;
  5516. }
  5517. #u31279 {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:0px;
  5523. height:0px;
  5524. }
  5525. #u31280_div {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:0px;
  5529. top:0px;
  5530. width:240px;
  5531. height:100px;
  5532. background:inherit;
  5533. background-color:rgba(255, 255, 255, 1);
  5534. border:none;
  5535. border-radius:0px;
  5536. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5537. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5538. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5539. }
  5540. #u31280 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:576px;
  5544. top:-415px;
  5545. width:240px;
  5546. height:100px;
  5547. display:flex;
  5548. }
  5549. #u31280 .text {
  5550. position:absolute;
  5551. align-self:center;
  5552. padding:2px 2px 2px 2px;
  5553. box-sizing:border-box;
  5554. width:100%;
  5555. }
  5556. #u31280_text {
  5557. border-width:0px;
  5558. word-wrap:break-word;
  5559. text-transform:none;
  5560. visibility:hidden;
  5561. }
  5562. #u31281_div {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:97px;
  5568. height:33px;
  5569. background:inherit;
  5570. background-color:rgba(255, 255, 255, 0);
  5571. border:none;
  5572. border-radius:0px;
  5573. -moz-box-shadow:none;
  5574. -webkit-box-shadow:none;
  5575. box-shadow:none;
  5576. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5577. font-weight:500;
  5578. font-style:normal;
  5579. font-size:24px;
  5580. }
  5581. #u31281 {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:675px;
  5585. top:-382px;
  5586. width:97px;
  5587. height:33px;
  5588. display:flex;
  5589. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5590. font-weight:500;
  5591. font-style:normal;
  5592. font-size:24px;
  5593. }
  5594. #u31281 .text {
  5595. position:absolute;
  5596. align-self:flex-start;
  5597. padding:0px 0px 0px 0px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u31281_text {
  5602. border-width:0px;
  5603. white-space:nowrap;
  5604. text-transform:none;
  5605. }
  5606. #u31282_img {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:0px;
  5611. width:61px;
  5612. height:63px;
  5613. }
  5614. #u31282 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:594px;
  5618. top:-397px;
  5619. width:61px;
  5620. height:63px;
  5621. display:flex;
  5622. }
  5623. #u31282 .text {
  5624. position:absolute;
  5625. align-self:center;
  5626. padding:2px 2px 2px 2px;
  5627. box-sizing:border-box;
  5628. width:100%;
  5629. }
  5630. #u31282_text {
  5631. border-width:0px;
  5632. word-wrap:break-word;
  5633. text-transform:none;
  5634. visibility:hidden;
  5635. }
  5636. #u31283_img {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:0px;
  5640. top:0px;
  5641. width:15px;
  5642. height:4px;
  5643. }
  5644. #u31283 {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:791px;
  5648. top:-406px;
  5649. width:15px;
  5650. height:4px;
  5651. display:flex;
  5652. }
  5653. #u31283 .text {
  5654. position:absolute;
  5655. align-self:center;
  5656. padding:2px 2px 2px 2px;
  5657. box-sizing:border-box;
  5658. width:100%;
  5659. }
  5660. #u31283_text {
  5661. border-width:0px;
  5662. word-wrap:break-word;
  5663. text-transform:none;
  5664. visibility:hidden;
  5665. }
  5666. #u31284 {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:0px;
  5670. top:0px;
  5671. width:0px;
  5672. height:0px;
  5673. }
  5674. #u31285_div {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:0px;
  5678. top:0px;
  5679. width:240px;
  5680. height:100px;
  5681. background:inherit;
  5682. background-color:rgba(255, 255, 255, 1);
  5683. border:none;
  5684. border-radius:0px;
  5685. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5686. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5687. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5688. }
  5689. #u31285 {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:316px;
  5693. top:-775px;
  5694. width:240px;
  5695. height:100px;
  5696. display:flex;
  5697. }
  5698. #u31285 .text {
  5699. position:absolute;
  5700. align-self:center;
  5701. padding:2px 2px 2px 2px;
  5702. box-sizing:border-box;
  5703. width:100%;
  5704. }
  5705. #u31285_text {
  5706. border-width:0px;
  5707. word-wrap:break-word;
  5708. text-transform:none;
  5709. visibility:hidden;
  5710. }
  5711. #u31286_div {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:97px;
  5717. height:33px;
  5718. background:inherit;
  5719. background-color:rgba(255, 255, 255, 0);
  5720. border:none;
  5721. border-radius:0px;
  5722. -moz-box-shadow:none;
  5723. -webkit-box-shadow:none;
  5724. box-shadow:none;
  5725. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5726. font-weight:500;
  5727. font-style:normal;
  5728. font-size:24px;
  5729. }
  5730. #u31286 {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:415px;
  5734. top:-742px;
  5735. width:97px;
  5736. height:33px;
  5737. display:flex;
  5738. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5739. font-weight:500;
  5740. font-style:normal;
  5741. font-size:24px;
  5742. }
  5743. #u31286 .text {
  5744. position:absolute;
  5745. align-self:flex-start;
  5746. padding:0px 0px 0px 0px;
  5747. box-sizing:border-box;
  5748. width:100%;
  5749. }
  5750. #u31286_text {
  5751. border-width:0px;
  5752. white-space:nowrap;
  5753. text-transform:none;
  5754. }
  5755. #u31287_img {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:61px;
  5761. height:63px;
  5762. }
  5763. #u31287 {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:334px;
  5767. top:-757px;
  5768. width:61px;
  5769. height:63px;
  5770. display:flex;
  5771. }
  5772. #u31287 .text {
  5773. position:absolute;
  5774. align-self:center;
  5775. padding:2px 2px 2px 2px;
  5776. box-sizing:border-box;
  5777. width:100%;
  5778. }
  5779. #u31287_text {
  5780. border-width:0px;
  5781. word-wrap:break-word;
  5782. text-transform:none;
  5783. visibility:hidden;
  5784. }
  5785. #u31288_img {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:0px;
  5789. top:0px;
  5790. width:15px;
  5791. height:4px;
  5792. }
  5793. #u31288 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:531px;
  5797. top:-768px;
  5798. width:15px;
  5799. height:4px;
  5800. display:flex;
  5801. }
  5802. #u31288 .text {
  5803. position:absolute;
  5804. align-self:center;
  5805. padding:2px 2px 2px 2px;
  5806. box-sizing:border-box;
  5807. width:100%;
  5808. }
  5809. #u31288_text {
  5810. border-width:0px;
  5811. word-wrap:break-word;
  5812. text-transform:none;
  5813. visibility:hidden;
  5814. }
  5815. #u31289 {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:0px;
  5821. height:0px;
  5822. }
  5823. #u31290_div {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:240px;
  5829. height:100px;
  5830. background:inherit;
  5831. background-color:rgba(255, 255, 255, 1);
  5832. border:none;
  5833. border-radius:0px;
  5834. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5835. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5836. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5837. }
  5838. #u31290 {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:576px;
  5842. top:-655px;
  5843. width:240px;
  5844. height:100px;
  5845. display:flex;
  5846. }
  5847. #u31290 .text {
  5848. position:absolute;
  5849. align-self:center;
  5850. padding:2px 2px 2px 2px;
  5851. box-sizing:border-box;
  5852. width:100%;
  5853. }
  5854. #u31290_text {
  5855. border-width:0px;
  5856. word-wrap:break-word;
  5857. text-transform:none;
  5858. visibility:hidden;
  5859. }
  5860. #u31291_div {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:97px;
  5866. height:33px;
  5867. background:inherit;
  5868. background-color:rgba(255, 255, 255, 0);
  5869. border:none;
  5870. border-radius:0px;
  5871. -moz-box-shadow:none;
  5872. -webkit-box-shadow:none;
  5873. box-shadow:none;
  5874. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5875. font-weight:500;
  5876. font-style:normal;
  5877. font-size:24px;
  5878. }
  5879. #u31291 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:675px;
  5883. top:-622px;
  5884. width:97px;
  5885. height:33px;
  5886. display:flex;
  5887. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5888. font-weight:500;
  5889. font-style:normal;
  5890. font-size:24px;
  5891. }
  5892. #u31291 .text {
  5893. position:absolute;
  5894. align-self:flex-start;
  5895. padding:0px 0px 0px 0px;
  5896. box-sizing:border-box;
  5897. width:100%;
  5898. }
  5899. #u31291_text {
  5900. border-width:0px;
  5901. white-space:nowrap;
  5902. text-transform:none;
  5903. }
  5904. #u31292_img {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:0px;
  5908. top:0px;
  5909. width:61px;
  5910. height:63px;
  5911. }
  5912. #u31292 {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:594px;
  5916. top:-637px;
  5917. width:61px;
  5918. height:63px;
  5919. display:flex;
  5920. }
  5921. #u31292 .text {
  5922. position:absolute;
  5923. align-self:center;
  5924. padding:2px 2px 2px 2px;
  5925. box-sizing:border-box;
  5926. width:100%;
  5927. }
  5928. #u31292_text {
  5929. border-width:0px;
  5930. word-wrap:break-word;
  5931. text-transform:none;
  5932. visibility:hidden;
  5933. }
  5934. #u31293_img {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:15px;
  5940. height:4px;
  5941. }
  5942. #u31293 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:791px;
  5946. top:-648px;
  5947. width:15px;
  5948. height:4px;
  5949. display:flex;
  5950. }
  5951. #u31293 .text {
  5952. position:absolute;
  5953. align-self:center;
  5954. padding:2px 2px 2px 2px;
  5955. box-sizing:border-box;
  5956. width:100%;
  5957. }
  5958. #u31293_text {
  5959. border-width:0px;
  5960. word-wrap:break-word;
  5961. text-transform:none;
  5962. visibility:hidden;
  5963. }
  5964. #u31294 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:0px;
  5970. height:0px;
  5971. }
  5972. #u31295_div {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:120px;
  5978. height:60px;
  5979. background:inherit;
  5980. background-color:rgba(255, 255, 255, 1);
  5981. border:none;
  5982. border-radius:0px;
  5983. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5984. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5985. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5986. }
  5987. #u31295 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:84px;
  5991. top:-272px;
  5992. width:120px;
  5993. height:60px;
  5994. display:flex;
  5995. }
  5996. #u31295 .text {
  5997. position:absolute;
  5998. align-self:center;
  5999. padding:2px 2px 2px 2px;
  6000. box-sizing:border-box;
  6001. width:100%;
  6002. }
  6003. #u31295_text {
  6004. border-width:0px;
  6005. word-wrap:break-word;
  6006. text-transform:none;
  6007. visibility:hidden;
  6008. }
  6009. #u31296_div {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:0px;
  6013. top:0px;
  6014. width:75px;
  6015. height:40px;
  6016. background:inherit;
  6017. background-color:rgba(255, 255, 255, 1);
  6018. border:none;
  6019. border-left:0px;
  6020. border-top:0px;
  6021. border-right:0px;
  6022. border-radius:0px;
  6023. border-bottom-right-radius:0px;
  6024. border-bottom-left-radius:0px;
  6025. -moz-box-shadow:none;
  6026. -webkit-box-shadow:none;
  6027. box-shadow:none;
  6028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6029. font-weight:400;
  6030. font-style:normal;
  6031. font-size:14px;
  6032. text-align:left;
  6033. }
  6034. #u31296 {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:104px;
  6038. top:-262px;
  6039. width:75px;
  6040. height:40px;
  6041. display:flex;
  6042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6043. font-weight:400;
  6044. font-style:normal;
  6045. font-size:14px;
  6046. text-align:left;
  6047. }
  6048. #u31296 .text {
  6049. position:absolute;
  6050. align-self:center;
  6051. padding:2px 2px 2px 2px;
  6052. box-sizing:border-box;
  6053. width:100%;
  6054. }
  6055. #u31296_text {
  6056. border-width:0px;
  6057. white-space:nowrap;
  6058. text-transform:none;
  6059. }
  6060. #u31297_div {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:444px;
  6066. height:20px;
  6067. background:inherit;
  6068. background-color:rgba(255, 255, 255, 0);
  6069. border:none;
  6070. border-radius:0px;
  6071. -moz-box-shadow:none;
  6072. -webkit-box-shadow:none;
  6073. box-shadow:none;
  6074. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6075. font-weight:500;
  6076. font-style:normal;
  6077. }
  6078. #u31297 {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:163px;
  6082. top:316px;
  6083. width:444px;
  6084. height:20px;
  6085. display:flex;
  6086. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6087. font-weight:500;
  6088. font-style:normal;
  6089. }
  6090. #u31297 .text {
  6091. position:absolute;
  6092. align-self:flex-start;
  6093. padding:0px 0px 0px 0px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u31297_text {
  6098. border-width:0px;
  6099. white-space:nowrap;
  6100. text-transform:none;
  6101. }
  6102. #u31298_div {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:694px;
  6108. height:180px;
  6109. background:inherit;
  6110. background-color:rgba(255, 255, 255, 1);
  6111. box-sizing:border-box;
  6112. border-width:1px;
  6113. border-style:solid;
  6114. border-color:rgba(217, 0, 27, 1);
  6115. border-radius:0px;
  6116. -moz-box-shadow:none;
  6117. -webkit-box-shadow:none;
  6118. box-shadow:none;
  6119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:18px;
  6123. color:#D9001B;
  6124. line-height:40px;
  6125. }
  6126. #u31298 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:943px;
  6130. top:102px;
  6131. width:694px;
  6132. height:180px;
  6133. display:flex;
  6134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6135. font-weight:400;
  6136. font-style:normal;
  6137. font-size:18px;
  6138. color:#D9001B;
  6139. line-height:40px;
  6140. }
  6141. #u31298 .text {
  6142. position:absolute;
  6143. align-self:flex-start;
  6144. padding:10px 10px 10px 10px;
  6145. box-sizing:border-box;
  6146. width:100%;
  6147. }
  6148. #u31298_text {
  6149. border-width:0px;
  6150. white-space:nowrap;
  6151. text-transform:none;
  6152. }
  6153. #u31299 {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:0px;
  6159. height:0px;
  6160. }
  6161. #u31300_div {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:0px;
  6165. top:0px;
  6166. width:240px;
  6167. height:80px;
  6168. background:inherit;
  6169. background-color:rgba(242, 242, 242, 1);
  6170. border:none;
  6171. border-radius:0px;
  6172. -moz-box-shadow:none;
  6173. -webkit-box-shadow:none;
  6174. box-shadow:none;
  6175. }
  6176. #u31300 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:154px;
  6180. top:356px;
  6181. width:240px;
  6182. height:80px;
  6183. display:flex;
  6184. }
  6185. #u31300 .text {
  6186. position:absolute;
  6187. align-self:center;
  6188. padding:2px 2px 2px 2px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u31300_text {
  6193. border-width:0px;
  6194. word-wrap:break-word;
  6195. text-transform:none;
  6196. visibility:hidden;
  6197. }
  6198. #u31301_img {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:50px;
  6204. height:53px;
  6205. }
  6206. #u31301 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:170px;
  6210. top:369px;
  6211. width:50px;
  6212. height:53px;
  6213. display:flex;
  6214. }
  6215. #u31301 .text {
  6216. position:absolute;
  6217. align-self:center;
  6218. padding:2px 2px 2px 2px;
  6219. box-sizing:border-box;
  6220. width:100%;
  6221. }
  6222. #u31301_text {
  6223. border-width:0px;
  6224. word-wrap:break-word;
  6225. text-transform:none;
  6226. visibility:hidden;
  6227. }
  6228. #u31302 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:0px;
  6232. top:0px;
  6233. width:0px;
  6234. height:0px;
  6235. }
  6236. #u31303_div {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:109px;
  6242. height:25px;
  6243. background:inherit;
  6244. background-color:rgba(255, 255, 255, 0);
  6245. border:none;
  6246. border-left:0px;
  6247. border-top:0px;
  6248. border-right:0px;
  6249. border-radius:0px;
  6250. border-bottom-right-radius:0px;
  6251. border-bottom-left-radius:0px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:18px;
  6259. }
  6260. #u31303 {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:235px;
  6264. top:372px;
  6265. width:109px;
  6266. height:25px;
  6267. display:flex;
  6268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6269. font-weight:400;
  6270. font-style:normal;
  6271. font-size:18px;
  6272. }
  6273. #u31303 .text {
  6274. position:absolute;
  6275. align-self:center;
  6276. padding:0px 0px 0px 0px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u31303_text {
  6281. border-width:0px;
  6282. white-space:nowrap;
  6283. text-transform:none;
  6284. }
  6285. #u31304_div {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:0px;
  6289. top:0px;
  6290. width:181px;
  6291. height:17px;
  6292. background:inherit;
  6293. background-color:rgba(255, 255, 255, 0);
  6294. border:none;
  6295. border-left:0px;
  6296. border-top:0px;
  6297. border-right:0px;
  6298. border-radius:0px;
  6299. border-bottom-right-radius:0px;
  6300. border-bottom-left-radius:0px;
  6301. -moz-box-shadow:none;
  6302. -webkit-box-shadow:none;
  6303. box-shadow:none;
  6304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6305. font-weight:400;
  6306. font-style:normal;
  6307. font-size:12px;
  6308. color:#7F7F7F;
  6309. }
  6310. #u31304 {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:235px;
  6314. top:402px;
  6315. width:181px;
  6316. height:17px;
  6317. display:flex;
  6318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6319. font-weight:400;
  6320. font-style:normal;
  6321. font-size:12px;
  6322. color:#7F7F7F;
  6323. }
  6324. #u31304 .text {
  6325. position:absolute;
  6326. align-self:center;
  6327. padding:0px 0px 0px 0px;
  6328. box-sizing:border-box;
  6329. width:100%;
  6330. }
  6331. #u31304_text {
  6332. border-width:0px;
  6333. white-space:nowrap;
  6334. text-transform:none;
  6335. }
  6336. #u31305 {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:0px;
  6342. height:0px;
  6343. }
  6344. #u31306_div {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:240px;
  6350. height:80px;
  6351. background:inherit;
  6352. background-color:rgba(242, 242, 242, 1);
  6353. border:none;
  6354. border-radius:0px;
  6355. -moz-box-shadow:none;
  6356. -webkit-box-shadow:none;
  6357. box-shadow:none;
  6358. }
  6359. #u31306 {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:424px;
  6363. top:356px;
  6364. width:240px;
  6365. height:80px;
  6366. display:flex;
  6367. }
  6368. #u31306 .text {
  6369. position:absolute;
  6370. align-self:center;
  6371. padding:2px 2px 2px 2px;
  6372. box-sizing:border-box;
  6373. width:100%;
  6374. }
  6375. #u31306_text {
  6376. border-width:0px;
  6377. word-wrap:break-word;
  6378. text-transform:none;
  6379. visibility:hidden;
  6380. }
  6381. #u31307_img {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:50px;
  6387. height:53px;
  6388. }
  6389. #u31307 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:440px;
  6393. top:369px;
  6394. width:50px;
  6395. height:53px;
  6396. display:flex;
  6397. }
  6398. #u31307 .text {
  6399. position:absolute;
  6400. align-self:center;
  6401. padding:2px 2px 2px 2px;
  6402. box-sizing:border-box;
  6403. width:100%;
  6404. }
  6405. #u31307_text {
  6406. border-width:0px;
  6407. word-wrap:break-word;
  6408. text-transform:none;
  6409. visibility:hidden;
  6410. }
  6411. #u31308 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:0px;
  6415. top:0px;
  6416. width:0px;
  6417. height:0px;
  6418. }
  6419. #u31309_div {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:0px;
  6423. top:0px;
  6424. width:73px;
  6425. height:25px;
  6426. background:inherit;
  6427. background-color:rgba(255, 255, 255, 0);
  6428. border:none;
  6429. border-left:0px;
  6430. border-top:0px;
  6431. border-right:0px;
  6432. border-radius:0px;
  6433. border-bottom-right-radius:0px;
  6434. border-bottom-left-radius:0px;
  6435. -moz-box-shadow:none;
  6436. -webkit-box-shadow:none;
  6437. box-shadow:none;
  6438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6439. font-weight:400;
  6440. font-style:normal;
  6441. font-size:18px;
  6442. }
  6443. #u31309 {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:505px;
  6447. top:372px;
  6448. width:73px;
  6449. height:25px;
  6450. display:flex;
  6451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6452. font-weight:400;
  6453. font-style:normal;
  6454. font-size:18px;
  6455. }
  6456. #u31309 .text {
  6457. position:absolute;
  6458. align-self:center;
  6459. padding:0px 0px 0px 0px;
  6460. box-sizing:border-box;
  6461. width:100%;
  6462. }
  6463. #u31309_text {
  6464. border-width:0px;
  6465. white-space:nowrap;
  6466. text-transform:none;
  6467. }
  6468. #u31310_div {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:193px;
  6474. height:17px;
  6475. background:inherit;
  6476. background-color:rgba(255, 255, 255, 0);
  6477. border:none;
  6478. border-left:0px;
  6479. border-top:0px;
  6480. border-right:0px;
  6481. border-radius:0px;
  6482. border-bottom-right-radius:0px;
  6483. border-bottom-left-radius:0px;
  6484. -moz-box-shadow:none;
  6485. -webkit-box-shadow:none;
  6486. box-shadow:none;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:12px;
  6491. color:#7F7F7F;
  6492. }
  6493. #u31310 {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:505px;
  6497. top:402px;
  6498. width:193px;
  6499. height:17px;
  6500. display:flex;
  6501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6502. font-weight:400;
  6503. font-style:normal;
  6504. font-size:12px;
  6505. color:#7F7F7F;
  6506. }
  6507. #u31310 .text {
  6508. position:absolute;
  6509. align-self:center;
  6510. padding:0px 0px 0px 0px;
  6511. box-sizing:border-box;
  6512. width:100%;
  6513. }
  6514. #u31310_text {
  6515. border-width:0px;
  6516. white-space:nowrap;
  6517. text-transform:none;
  6518. }
  6519. #u31311 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:0px;
  6523. top:0px;
  6524. width:0px;
  6525. height:0px;
  6526. }
  6527. #u31312_div {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:240px;
  6533. height:80px;
  6534. background:inherit;
  6535. background-color:rgba(242, 242, 242, 1);
  6536. border:none;
  6537. border-radius:0px;
  6538. -moz-box-shadow:none;
  6539. -webkit-box-shadow:none;
  6540. box-shadow:none;
  6541. }
  6542. #u31312 {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:695px;
  6546. top:356px;
  6547. width:240px;
  6548. height:80px;
  6549. display:flex;
  6550. }
  6551. #u31312 .text {
  6552. position:absolute;
  6553. align-self:center;
  6554. padding:2px 2px 2px 2px;
  6555. box-sizing:border-box;
  6556. width:100%;
  6557. }
  6558. #u31312_text {
  6559. border-width:0px;
  6560. word-wrap:break-word;
  6561. text-transform:none;
  6562. visibility:hidden;
  6563. }
  6564. #u31313_img {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:50px;
  6570. height:53px;
  6571. }
  6572. #u31313 {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:711px;
  6576. top:369px;
  6577. width:50px;
  6578. height:53px;
  6579. display:flex;
  6580. }
  6581. #u31313 .text {
  6582. position:absolute;
  6583. align-self:center;
  6584. padding:2px 2px 2px 2px;
  6585. box-sizing:border-box;
  6586. width:100%;
  6587. }
  6588. #u31313_text {
  6589. border-width:0px;
  6590. word-wrap:break-word;
  6591. text-transform:none;
  6592. visibility:hidden;
  6593. }
  6594. #u31314 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:0px;
  6598. top:0px;
  6599. width:0px;
  6600. height:0px;
  6601. }
  6602. #u31315_div {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:0px;
  6606. top:0px;
  6607. width:73px;
  6608. height:25px;
  6609. background:inherit;
  6610. background-color:rgba(255, 255, 255, 0);
  6611. border:none;
  6612. border-left:0px;
  6613. border-top:0px;
  6614. border-right:0px;
  6615. border-radius:0px;
  6616. border-bottom-right-radius:0px;
  6617. border-bottom-left-radius:0px;
  6618. -moz-box-shadow:none;
  6619. -webkit-box-shadow:none;
  6620. box-shadow:none;
  6621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6622. font-weight:400;
  6623. font-style:normal;
  6624. font-size:18px;
  6625. }
  6626. #u31315 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:776px;
  6630. top:372px;
  6631. width:73px;
  6632. height:25px;
  6633. display:flex;
  6634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:18px;
  6638. }
  6639. #u31315 .text {
  6640. position:absolute;
  6641. align-self:center;
  6642. padding:0px 0px 0px 0px;
  6643. box-sizing:border-box;
  6644. width:100%;
  6645. }
  6646. #u31315_text {
  6647. border-width:0px;
  6648. white-space:nowrap;
  6649. text-transform:none;
  6650. }
  6651. #u31316_div {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:121px;
  6657. height:17px;
  6658. background:inherit;
  6659. background-color:rgba(255, 255, 255, 0);
  6660. border:none;
  6661. border-left:0px;
  6662. border-top:0px;
  6663. border-right:0px;
  6664. border-radius:0px;
  6665. border-bottom-right-radius:0px;
  6666. border-bottom-left-radius:0px;
  6667. -moz-box-shadow:none;
  6668. -webkit-box-shadow:none;
  6669. box-shadow:none;
  6670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6671. font-weight:400;
  6672. font-style:normal;
  6673. font-size:12px;
  6674. color:#7F7F7F;
  6675. }
  6676. #u31316 {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:776px;
  6680. top:402px;
  6681. width:121px;
  6682. height:17px;
  6683. display:flex;
  6684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6685. font-weight:400;
  6686. font-style:normal;
  6687. font-size:12px;
  6688. color:#7F7F7F;
  6689. }
  6690. #u31316 .text {
  6691. position:absolute;
  6692. align-self:center;
  6693. padding:0px 0px 0px 0px;
  6694. box-sizing:border-box;
  6695. width:100%;
  6696. }
  6697. #u31316_text {
  6698. border-width:0px;
  6699. white-space:nowrap;
  6700. text-transform:none;
  6701. }
  6702. #u31317 {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:0px;
  6706. top:0px;
  6707. width:0px;
  6708. height:0px;
  6709. }
  6710. #u31318_div {
  6711. border-width:0px;
  6712. position:absolute;
  6713. left:0px;
  6714. top:0px;
  6715. width:240px;
  6716. height:80px;
  6717. background:inherit;
  6718. background-color:rgba(242, 242, 242, 1);
  6719. border:none;
  6720. border-radius:0px;
  6721. -moz-box-shadow:none;
  6722. -webkit-box-shadow:none;
  6723. box-shadow:none;
  6724. }
  6725. #u31318 {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:965px;
  6729. top:356px;
  6730. width:240px;
  6731. height:80px;
  6732. display:flex;
  6733. }
  6734. #u31318 .text {
  6735. position:absolute;
  6736. align-self:center;
  6737. padding:2px 2px 2px 2px;
  6738. box-sizing:border-box;
  6739. width:100%;
  6740. }
  6741. #u31318_text {
  6742. border-width:0px;
  6743. word-wrap:break-word;
  6744. text-transform:none;
  6745. visibility:hidden;
  6746. }
  6747. #u31319_img {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:0px;
  6751. top:0px;
  6752. width:50px;
  6753. height:53px;
  6754. }
  6755. #u31319 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:981px;
  6759. top:369px;
  6760. width:50px;
  6761. height:53px;
  6762. display:flex;
  6763. }
  6764. #u31319 .text {
  6765. position:absolute;
  6766. align-self:center;
  6767. padding:2px 2px 2px 2px;
  6768. box-sizing:border-box;
  6769. width:100%;
  6770. }
  6771. #u31319_text {
  6772. border-width:0px;
  6773. word-wrap:break-word;
  6774. text-transform:none;
  6775. visibility:hidden;
  6776. }
  6777. #u31320 {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:0px;
  6781. top:0px;
  6782. width:0px;
  6783. height:0px;
  6784. }
  6785. #u31321_div {
  6786. border-width:0px;
  6787. position:absolute;
  6788. left:0px;
  6789. top:0px;
  6790. width:73px;
  6791. height:25px;
  6792. background:inherit;
  6793. background-color:rgba(255, 255, 255, 0);
  6794. border:none;
  6795. border-left:0px;
  6796. border-top:0px;
  6797. border-right:0px;
  6798. border-radius:0px;
  6799. border-bottom-right-radius:0px;
  6800. border-bottom-left-radius:0px;
  6801. -moz-box-shadow:none;
  6802. -webkit-box-shadow:none;
  6803. box-shadow:none;
  6804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:18px;
  6808. }
  6809. #u31321 {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:1046px;
  6813. top:372px;
  6814. width:73px;
  6815. height:25px;
  6816. display:flex;
  6817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6818. font-weight:400;
  6819. font-style:normal;
  6820. font-size:18px;
  6821. }
  6822. #u31321 .text {
  6823. position:absolute;
  6824. align-self:center;
  6825. padding:0px 0px 0px 0px;
  6826. box-sizing:border-box;
  6827. width:100%;
  6828. }
  6829. #u31321_text {
  6830. border-width:0px;
  6831. white-space:nowrap;
  6832. text-transform:none;
  6833. }
  6834. #u31322_div {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:181px;
  6840. height:17px;
  6841. background:inherit;
  6842. background-color:rgba(255, 255, 255, 0);
  6843. border:none;
  6844. border-left:0px;
  6845. border-top:0px;
  6846. border-right:0px;
  6847. border-radius:0px;
  6848. border-bottom-right-radius:0px;
  6849. border-bottom-left-radius:0px;
  6850. -moz-box-shadow:none;
  6851. -webkit-box-shadow:none;
  6852. box-shadow:none;
  6853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6854. font-weight:400;
  6855. font-style:normal;
  6856. font-size:12px;
  6857. color:#7F7F7F;
  6858. }
  6859. #u31322 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:1046px;
  6863. top:402px;
  6864. width:181px;
  6865. height:17px;
  6866. display:flex;
  6867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6868. font-weight:400;
  6869. font-style:normal;
  6870. font-size:12px;
  6871. color:#7F7F7F;
  6872. }
  6873. #u31322 .text {
  6874. position:absolute;
  6875. align-self:center;
  6876. padding:0px 0px 0px 0px;
  6877. box-sizing:border-box;
  6878. width:100%;
  6879. }
  6880. #u31322_text {
  6881. border-width:0px;
  6882. white-space:nowrap;
  6883. text-transform:none;
  6884. }
  6885. #u31323 {
  6886. border-width:0px;
  6887. position:absolute;
  6888. left:0px;
  6889. top:0px;
  6890. width:0px;
  6891. height:0px;
  6892. }
  6893. #u31324_div {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:240px;
  6899. height:80px;
  6900. background:inherit;
  6901. background-color:rgba(242, 242, 242, 1);
  6902. border:none;
  6903. border-radius:0px;
  6904. -moz-box-shadow:none;
  6905. -webkit-box-shadow:none;
  6906. box-shadow:none;
  6907. }
  6908. #u31324 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:1235px;
  6912. top:356px;
  6913. width:240px;
  6914. height:80px;
  6915. display:flex;
  6916. }
  6917. #u31324 .text {
  6918. position:absolute;
  6919. align-self:center;
  6920. padding:2px 2px 2px 2px;
  6921. box-sizing:border-box;
  6922. width:100%;
  6923. }
  6924. #u31324_text {
  6925. border-width:0px;
  6926. word-wrap:break-word;
  6927. text-transform:none;
  6928. visibility:hidden;
  6929. }
  6930. #u31325_img {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:0px;
  6934. top:0px;
  6935. width:50px;
  6936. height:53px;
  6937. }
  6938. #u31325 {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:1251px;
  6942. top:369px;
  6943. width:50px;
  6944. height:53px;
  6945. display:flex;
  6946. }
  6947. #u31325 .text {
  6948. position:absolute;
  6949. align-self:center;
  6950. padding:2px 2px 2px 2px;
  6951. box-sizing:border-box;
  6952. width:100%;
  6953. }
  6954. #u31325_text {
  6955. border-width:0px;
  6956. word-wrap:break-word;
  6957. text-transform:none;
  6958. visibility:hidden;
  6959. }
  6960. #u31326 {
  6961. border-width:0px;
  6962. position:absolute;
  6963. left:0px;
  6964. top:0px;
  6965. width:0px;
  6966. height:0px;
  6967. }
  6968. #u31327_div {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:0px;
  6972. top:0px;
  6973. width:73px;
  6974. height:25px;
  6975. background:inherit;
  6976. background-color:rgba(255, 255, 255, 0);
  6977. border:none;
  6978. border-left:0px;
  6979. border-top:0px;
  6980. border-right:0px;
  6981. border-radius:0px;
  6982. border-bottom-right-radius:0px;
  6983. border-bottom-left-radius:0px;
  6984. -moz-box-shadow:none;
  6985. -webkit-box-shadow:none;
  6986. box-shadow:none;
  6987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6988. font-weight:400;
  6989. font-style:normal;
  6990. font-size:18px;
  6991. }
  6992. #u31327 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:1316px;
  6996. top:372px;
  6997. width:73px;
  6998. height:25px;
  6999. display:flex;
  7000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. font-size:18px;
  7004. }
  7005. #u31327 .text {
  7006. position:absolute;
  7007. align-self:center;
  7008. padding:0px 0px 0px 0px;
  7009. box-sizing:border-box;
  7010. width:100%;
  7011. }
  7012. #u31327_text {
  7013. border-width:0px;
  7014. white-space:nowrap;
  7015. text-transform:none;
  7016. }
  7017. #u31328_div {
  7018. border-width:0px;
  7019. position:absolute;
  7020. left:0px;
  7021. top:0px;
  7022. width:205px;
  7023. height:17px;
  7024. background:inherit;
  7025. background-color:rgba(255, 255, 255, 0);
  7026. border:none;
  7027. border-left:0px;
  7028. border-top:0px;
  7029. border-right:0px;
  7030. border-radius:0px;
  7031. border-bottom-right-radius:0px;
  7032. border-bottom-left-radius:0px;
  7033. -moz-box-shadow:none;
  7034. -webkit-box-shadow:none;
  7035. box-shadow:none;
  7036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7037. font-weight:400;
  7038. font-style:normal;
  7039. font-size:12px;
  7040. color:#7F7F7F;
  7041. }
  7042. #u31328 {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:1316px;
  7046. top:402px;
  7047. width:205px;
  7048. height:17px;
  7049. display:flex;
  7050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7051. font-weight:400;
  7052. font-style:normal;
  7053. font-size:12px;
  7054. color:#7F7F7F;
  7055. }
  7056. #u31328 .text {
  7057. position:absolute;
  7058. align-self:center;
  7059. padding:0px 0px 0px 0px;
  7060. box-sizing:border-box;
  7061. width:100%;
  7062. }
  7063. #u31328_text {
  7064. border-width:0px;
  7065. white-space:nowrap;
  7066. text-transform:none;
  7067. }
  7068. #u31329 {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:0px;
  7072. top:0px;
  7073. width:0px;
  7074. height:0px;
  7075. }
  7076. #u31330_div {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:0px;
  7080. top:0px;
  7081. width:240px;
  7082. height:80px;
  7083. background:inherit;
  7084. background-color:rgba(242, 242, 242, 1);
  7085. border:none;
  7086. border-radius:0px;
  7087. -moz-box-shadow:none;
  7088. -webkit-box-shadow:none;
  7089. box-shadow:none;
  7090. }
  7091. #u31330 {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:965px;
  7095. top:456px;
  7096. width:240px;
  7097. height:80px;
  7098. display:flex;
  7099. }
  7100. #u31330 .text {
  7101. position:absolute;
  7102. align-self:center;
  7103. padding:2px 2px 2px 2px;
  7104. box-sizing:border-box;
  7105. width:100%;
  7106. }
  7107. #u31330_text {
  7108. border-width:0px;
  7109. word-wrap:break-word;
  7110. text-transform:none;
  7111. visibility:hidden;
  7112. }
  7113. #u31331_img {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:0px;
  7117. top:0px;
  7118. width:50px;
  7119. height:53px;
  7120. }
  7121. #u31331 {
  7122. border-width:0px;
  7123. position:absolute;
  7124. left:981px;
  7125. top:469px;
  7126. width:50px;
  7127. height:53px;
  7128. display:flex;
  7129. }
  7130. #u31331 .text {
  7131. position:absolute;
  7132. align-self:center;
  7133. padding:2px 2px 2px 2px;
  7134. box-sizing:border-box;
  7135. width:100%;
  7136. }
  7137. #u31331_text {
  7138. border-width:0px;
  7139. word-wrap:break-word;
  7140. text-transform:none;
  7141. visibility:hidden;
  7142. }
  7143. #u31332 {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:0px;
  7149. height:0px;
  7150. }
  7151. #u31333_div {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:0px;
  7155. top:0px;
  7156. width:73px;
  7157. height:25px;
  7158. background:inherit;
  7159. background-color:rgba(255, 255, 255, 0);
  7160. border:none;
  7161. border-left:0px;
  7162. border-top:0px;
  7163. border-right:0px;
  7164. border-radius:0px;
  7165. border-bottom-right-radius:0px;
  7166. border-bottom-left-radius:0px;
  7167. -moz-box-shadow:none;
  7168. -webkit-box-shadow:none;
  7169. box-shadow:none;
  7170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7171. font-weight:400;
  7172. font-style:normal;
  7173. font-size:18px;
  7174. }
  7175. #u31333 {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:1046px;
  7179. top:472px;
  7180. width:73px;
  7181. height:25px;
  7182. display:flex;
  7183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7184. font-weight:400;
  7185. font-style:normal;
  7186. font-size:18px;
  7187. }
  7188. #u31333 .text {
  7189. position:absolute;
  7190. align-self:center;
  7191. padding:0px 0px 0px 0px;
  7192. box-sizing:border-box;
  7193. width:100%;
  7194. }
  7195. #u31333_text {
  7196. border-width:0px;
  7197. white-space:nowrap;
  7198. text-transform:none;
  7199. }
  7200. #u31334_div {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:169px;
  7206. height:17px;
  7207. background:inherit;
  7208. background-color:rgba(255, 255, 255, 0);
  7209. border:none;
  7210. border-left:0px;
  7211. border-top:0px;
  7212. border-right:0px;
  7213. border-radius:0px;
  7214. border-bottom-right-radius:0px;
  7215. border-bottom-left-radius:0px;
  7216. -moz-box-shadow:none;
  7217. -webkit-box-shadow:none;
  7218. box-shadow:none;
  7219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7220. font-weight:400;
  7221. font-style:normal;
  7222. font-size:12px;
  7223. color:#7F7F7F;
  7224. }
  7225. #u31334 {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:1046px;
  7229. top:502px;
  7230. width:169px;
  7231. height:17px;
  7232. display:flex;
  7233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7234. font-weight:400;
  7235. font-style:normal;
  7236. font-size:12px;
  7237. color:#7F7F7F;
  7238. }
  7239. #u31334 .text {
  7240. position:absolute;
  7241. align-self:center;
  7242. padding:0px 0px 0px 0px;
  7243. box-sizing:border-box;
  7244. width:100%;
  7245. }
  7246. #u31334_text {
  7247. border-width:0px;
  7248. white-space:nowrap;
  7249. text-transform:none;
  7250. }
  7251. #u31335 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:0px;
  7255. top:0px;
  7256. width:0px;
  7257. height:0px;
  7258. }
  7259. #u31336_div {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:0px;
  7263. top:0px;
  7264. width:240px;
  7265. height:80px;
  7266. background:inherit;
  7267. background-color:rgba(242, 242, 242, 1);
  7268. border:none;
  7269. border-radius:0px;
  7270. -moz-box-shadow:none;
  7271. -webkit-box-shadow:none;
  7272. box-shadow:none;
  7273. }
  7274. #u31336 {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:424px;
  7278. top:456px;
  7279. width:240px;
  7280. height:80px;
  7281. display:flex;
  7282. }
  7283. #u31336 .text {
  7284. position:absolute;
  7285. align-self:center;
  7286. padding:2px 2px 2px 2px;
  7287. box-sizing:border-box;
  7288. width:100%;
  7289. }
  7290. #u31336_text {
  7291. border-width:0px;
  7292. word-wrap:break-word;
  7293. text-transform:none;
  7294. visibility:hidden;
  7295. }
  7296. #u31337_img {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:0px;
  7300. top:0px;
  7301. width:50px;
  7302. height:53px;
  7303. }
  7304. #u31337 {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:440px;
  7308. top:469px;
  7309. width:50px;
  7310. height:53px;
  7311. display:flex;
  7312. }
  7313. #u31337 .text {
  7314. position:absolute;
  7315. align-self:center;
  7316. padding:2px 2px 2px 2px;
  7317. box-sizing:border-box;
  7318. width:100%;
  7319. }
  7320. #u31337_text {
  7321. border-width:0px;
  7322. word-wrap:break-word;
  7323. text-transform:none;
  7324. visibility:hidden;
  7325. }
  7326. #u31338 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:0px;
  7332. height:0px;
  7333. }
  7334. #u31339_div {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:73px;
  7340. height:25px;
  7341. background:inherit;
  7342. background-color:rgba(255, 255, 255, 0);
  7343. border:none;
  7344. border-left:0px;
  7345. border-top:0px;
  7346. border-right:0px;
  7347. border-radius:0px;
  7348. border-bottom-right-radius:0px;
  7349. border-bottom-left-radius:0px;
  7350. -moz-box-shadow:none;
  7351. -webkit-box-shadow:none;
  7352. box-shadow:none;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:18px;
  7357. }
  7358. #u31339 {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:505px;
  7362. top:472px;
  7363. width:73px;
  7364. height:25px;
  7365. display:flex;
  7366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7367. font-weight:400;
  7368. font-style:normal;
  7369. font-size:18px;
  7370. }
  7371. #u31339 .text {
  7372. position:absolute;
  7373. align-self:center;
  7374. padding:0px 0px 0px 0px;
  7375. box-sizing:border-box;
  7376. width:100%;
  7377. }
  7378. #u31339_text {
  7379. border-width:0px;
  7380. white-space:nowrap;
  7381. text-transform:none;
  7382. }
  7383. #u31340_div {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:0px;
  7387. top:0px;
  7388. width:181px;
  7389. height:17px;
  7390. background:inherit;
  7391. background-color:rgba(255, 255, 255, 0);
  7392. border:none;
  7393. border-left:0px;
  7394. border-top:0px;
  7395. border-right:0px;
  7396. border-radius:0px;
  7397. border-bottom-right-radius:0px;
  7398. border-bottom-left-radius:0px;
  7399. -moz-box-shadow:none;
  7400. -webkit-box-shadow:none;
  7401. box-shadow:none;
  7402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7403. font-weight:400;
  7404. font-style:normal;
  7405. font-size:12px;
  7406. color:#7F7F7F;
  7407. }
  7408. #u31340 {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:505px;
  7412. top:502px;
  7413. width:181px;
  7414. height:17px;
  7415. display:flex;
  7416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7417. font-weight:400;
  7418. font-style:normal;
  7419. font-size:12px;
  7420. color:#7F7F7F;
  7421. }
  7422. #u31340 .text {
  7423. position:absolute;
  7424. align-self:center;
  7425. padding:0px 0px 0px 0px;
  7426. box-sizing:border-box;
  7427. width:100%;
  7428. }
  7429. #u31340_text {
  7430. border-width:0px;
  7431. white-space:nowrap;
  7432. text-transform:none;
  7433. }
  7434. #u31341 {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:0px;
  7438. top:0px;
  7439. width:0px;
  7440. height:0px;
  7441. }
  7442. #u31342_div {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:0px;
  7446. top:0px;
  7447. width:240px;
  7448. height:80px;
  7449. background:inherit;
  7450. background-color:rgba(242, 242, 242, 1);
  7451. border:none;
  7452. border-radius:0px;
  7453. -moz-box-shadow:none;
  7454. -webkit-box-shadow:none;
  7455. box-shadow:none;
  7456. }
  7457. #u31342 {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:695px;
  7461. top:456px;
  7462. width:240px;
  7463. height:80px;
  7464. display:flex;
  7465. }
  7466. #u31342 .text {
  7467. position:absolute;
  7468. align-self:center;
  7469. padding:2px 2px 2px 2px;
  7470. box-sizing:border-box;
  7471. width:100%;
  7472. }
  7473. #u31342_text {
  7474. border-width:0px;
  7475. word-wrap:break-word;
  7476. text-transform:none;
  7477. visibility:hidden;
  7478. }
  7479. #u31343_img {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:0px;
  7483. top:0px;
  7484. width:50px;
  7485. height:53px;
  7486. }
  7487. #u31343 {
  7488. border-width:0px;
  7489. position:absolute;
  7490. left:711px;
  7491. top:469px;
  7492. width:50px;
  7493. height:53px;
  7494. display:flex;
  7495. }
  7496. #u31343 .text {
  7497. position:absolute;
  7498. align-self:center;
  7499. padding:2px 2px 2px 2px;
  7500. box-sizing:border-box;
  7501. width:100%;
  7502. }
  7503. #u31343_text {
  7504. border-width:0px;
  7505. word-wrap:break-word;
  7506. text-transform:none;
  7507. visibility:hidden;
  7508. }
  7509. #u31344 {
  7510. border-width:0px;
  7511. position:absolute;
  7512. left:0px;
  7513. top:0px;
  7514. width:0px;
  7515. height:0px;
  7516. }
  7517. #u31345_div {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:0px;
  7521. top:0px;
  7522. width:73px;
  7523. height:25px;
  7524. background:inherit;
  7525. background-color:rgba(255, 255, 255, 0);
  7526. border:none;
  7527. border-left:0px;
  7528. border-top:0px;
  7529. border-right:0px;
  7530. border-radius:0px;
  7531. border-bottom-right-radius:0px;
  7532. border-bottom-left-radius:0px;
  7533. -moz-box-shadow:none;
  7534. -webkit-box-shadow:none;
  7535. box-shadow:none;
  7536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7537. font-weight:400;
  7538. font-style:normal;
  7539. font-size:18px;
  7540. }
  7541. #u31345 {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:776px;
  7545. top:472px;
  7546. width:73px;
  7547. height:25px;
  7548. display:flex;
  7549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7550. font-weight:400;
  7551. font-style:normal;
  7552. font-size:18px;
  7553. }
  7554. #u31345 .text {
  7555. position:absolute;
  7556. align-self:center;
  7557. padding:0px 0px 0px 0px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u31345_text {
  7562. border-width:0px;
  7563. white-space:nowrap;
  7564. text-transform:none;
  7565. }
  7566. #u31346_div {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:145px;
  7572. height:17px;
  7573. background:inherit;
  7574. background-color:rgba(255, 255, 255, 0);
  7575. border:none;
  7576. border-left:0px;
  7577. border-top:0px;
  7578. border-right:0px;
  7579. border-radius:0px;
  7580. border-bottom-right-radius:0px;
  7581. border-bottom-left-radius:0px;
  7582. -moz-box-shadow:none;
  7583. -webkit-box-shadow:none;
  7584. box-shadow:none;
  7585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7586. font-weight:400;
  7587. font-style:normal;
  7588. font-size:12px;
  7589. color:#7F7F7F;
  7590. }
  7591. #u31346 {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:776px;
  7595. top:502px;
  7596. width:145px;
  7597. height:17px;
  7598. display:flex;
  7599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7600. font-weight:400;
  7601. font-style:normal;
  7602. font-size:12px;
  7603. color:#7F7F7F;
  7604. }
  7605. #u31346 .text {
  7606. position:absolute;
  7607. align-self:center;
  7608. padding:0px 0px 0px 0px;
  7609. box-sizing:border-box;
  7610. width:100%;
  7611. }
  7612. #u31346_text {
  7613. border-width:0px;
  7614. white-space:nowrap;
  7615. text-transform:none;
  7616. }
  7617. #u31347 {
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:0px;
  7621. top:0px;
  7622. width:0px;
  7623. height:0px;
  7624. }
  7625. #u31348_div {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:0px;
  7629. top:0px;
  7630. width:240px;
  7631. height:80px;
  7632. background:inherit;
  7633. background-color:rgba(242, 242, 242, 1);
  7634. border:none;
  7635. border-radius:0px;
  7636. -moz-box-shadow:none;
  7637. -webkit-box-shadow:none;
  7638. box-shadow:none;
  7639. }
  7640. #u31348 {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:154px;
  7644. top:756px;
  7645. width:240px;
  7646. height:80px;
  7647. display:flex;
  7648. }
  7649. #u31348 .text {
  7650. position:absolute;
  7651. align-self:center;
  7652. padding:2px 2px 2px 2px;
  7653. box-sizing:border-box;
  7654. width:100%;
  7655. }
  7656. #u31348_text {
  7657. border-width:0px;
  7658. word-wrap:break-word;
  7659. text-transform:none;
  7660. visibility:hidden;
  7661. }
  7662. #u31349_img {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:0px;
  7666. top:0px;
  7667. width:50px;
  7668. height:53px;
  7669. }
  7670. #u31349 {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:170px;
  7674. top:769px;
  7675. width:50px;
  7676. height:53px;
  7677. display:flex;
  7678. }
  7679. #u31349 .text {
  7680. position:absolute;
  7681. align-self:center;
  7682. padding:2px 2px 2px 2px;
  7683. box-sizing:border-box;
  7684. width:100%;
  7685. }
  7686. #u31349_text {
  7687. border-width:0px;
  7688. word-wrap:break-word;
  7689. text-transform:none;
  7690. visibility:hidden;
  7691. }
  7692. #u31350 {
  7693. border-width:0px;
  7694. position:absolute;
  7695. left:0px;
  7696. top:0px;
  7697. width:0px;
  7698. height:0px;
  7699. }
  7700. #u31351_div {
  7701. border-width:0px;
  7702. position:absolute;
  7703. left:0px;
  7704. top:0px;
  7705. width:73px;
  7706. height:25px;
  7707. background:inherit;
  7708. background-color:rgba(255, 255, 255, 0);
  7709. border:none;
  7710. border-left:0px;
  7711. border-top:0px;
  7712. border-right:0px;
  7713. border-radius:0px;
  7714. border-bottom-right-radius:0px;
  7715. border-bottom-left-radius:0px;
  7716. -moz-box-shadow:none;
  7717. -webkit-box-shadow:none;
  7718. box-shadow:none;
  7719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7720. font-weight:400;
  7721. font-style:normal;
  7722. font-size:18px;
  7723. }
  7724. #u31351 {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:235px;
  7728. top:772px;
  7729. width:73px;
  7730. height:25px;
  7731. display:flex;
  7732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7733. font-weight:400;
  7734. font-style:normal;
  7735. font-size:18px;
  7736. }
  7737. #u31351 .text {
  7738. position:absolute;
  7739. align-self:center;
  7740. padding:0px 0px 0px 0px;
  7741. box-sizing:border-box;
  7742. width:100%;
  7743. }
  7744. #u31351_text {
  7745. border-width:0px;
  7746. white-space:nowrap;
  7747. text-transform:none;
  7748. }
  7749. #u31352_div {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:0px;
  7753. top:0px;
  7754. width:97px;
  7755. height:17px;
  7756. background:inherit;
  7757. background-color:rgba(255, 255, 255, 0);
  7758. border:none;
  7759. border-left:0px;
  7760. border-top:0px;
  7761. border-right:0px;
  7762. border-radius:0px;
  7763. border-bottom-right-radius:0px;
  7764. border-bottom-left-radius:0px;
  7765. -moz-box-shadow:none;
  7766. -webkit-box-shadow:none;
  7767. box-shadow:none;
  7768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7769. font-weight:400;
  7770. font-style:normal;
  7771. font-size:12px;
  7772. color:#7F7F7F;
  7773. }
  7774. #u31352 {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:235px;
  7778. top:802px;
  7779. width:97px;
  7780. height:17px;
  7781. display:flex;
  7782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7783. font-weight:400;
  7784. font-style:normal;
  7785. font-size:12px;
  7786. color:#7F7F7F;
  7787. }
  7788. #u31352 .text {
  7789. position:absolute;
  7790. align-self:center;
  7791. padding:0px 0px 0px 0px;
  7792. box-sizing:border-box;
  7793. width:100%;
  7794. }
  7795. #u31352_text {
  7796. border-width:0px;
  7797. white-space:nowrap;
  7798. text-transform:none;
  7799. }
  7800. #u31353 {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:0px;
  7806. height:0px;
  7807. }
  7808. #u31354_div {
  7809. border-width:0px;
  7810. position:absolute;
  7811. left:0px;
  7812. top:0px;
  7813. width:240px;
  7814. height:80px;
  7815. background:inherit;
  7816. background-color:rgba(242, 242, 242, 1);
  7817. border:none;
  7818. border-radius:0px;
  7819. -moz-box-shadow:none;
  7820. -webkit-box-shadow:none;
  7821. box-shadow:none;
  7822. }
  7823. #u31354 {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:425px;
  7827. top:756px;
  7828. width:240px;
  7829. height:80px;
  7830. display:flex;
  7831. }
  7832. #u31354 .text {
  7833. position:absolute;
  7834. align-self:center;
  7835. padding:2px 2px 2px 2px;
  7836. box-sizing:border-box;
  7837. width:100%;
  7838. }
  7839. #u31354_text {
  7840. border-width:0px;
  7841. word-wrap:break-word;
  7842. text-transform:none;
  7843. visibility:hidden;
  7844. }
  7845. #u31355_img {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:50px;
  7851. height:53px;
  7852. }
  7853. #u31355 {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:441px;
  7857. top:769px;
  7858. width:50px;
  7859. height:53px;
  7860. display:flex;
  7861. }
  7862. #u31355 .text {
  7863. position:absolute;
  7864. align-self:center;
  7865. padding:2px 2px 2px 2px;
  7866. box-sizing:border-box;
  7867. width:100%;
  7868. }
  7869. #u31355_text {
  7870. border-width:0px;
  7871. word-wrap:break-word;
  7872. text-transform:none;
  7873. visibility:hidden;
  7874. }
  7875. #u31356 {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:0px;
  7879. top:0px;
  7880. width:0px;
  7881. height:0px;
  7882. }
  7883. #u31357_div {
  7884. border-width:0px;
  7885. position:absolute;
  7886. left:0px;
  7887. top:0px;
  7888. width:73px;
  7889. height:25px;
  7890. background:inherit;
  7891. background-color:rgba(255, 255, 255, 0);
  7892. border:none;
  7893. border-left:0px;
  7894. border-top:0px;
  7895. border-right:0px;
  7896. border-radius:0px;
  7897. border-bottom-right-radius:0px;
  7898. border-bottom-left-radius:0px;
  7899. -moz-box-shadow:none;
  7900. -webkit-box-shadow:none;
  7901. box-shadow:none;
  7902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7903. font-weight:400;
  7904. font-style:normal;
  7905. font-size:18px;
  7906. }
  7907. #u31357 {
  7908. border-width:0px;
  7909. position:absolute;
  7910. left:506px;
  7911. top:772px;
  7912. width:73px;
  7913. height:25px;
  7914. display:flex;
  7915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7916. font-weight:400;
  7917. font-style:normal;
  7918. font-size:18px;
  7919. }
  7920. #u31357 .text {
  7921. position:absolute;
  7922. align-self:center;
  7923. padding:0px 0px 0px 0px;
  7924. box-sizing:border-box;
  7925. width:100%;
  7926. }
  7927. #u31357_text {
  7928. border-width:0px;
  7929. white-space:nowrap;
  7930. text-transform:none;
  7931. }
  7932. #u31358_div {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:0px;
  7936. top:0px;
  7937. width:97px;
  7938. height:17px;
  7939. background:inherit;
  7940. background-color:rgba(255, 255, 255, 0);
  7941. border:none;
  7942. border-left:0px;
  7943. border-top:0px;
  7944. border-right:0px;
  7945. border-radius:0px;
  7946. border-bottom-right-radius:0px;
  7947. border-bottom-left-radius:0px;
  7948. -moz-box-shadow:none;
  7949. -webkit-box-shadow:none;
  7950. box-shadow:none;
  7951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7952. font-weight:400;
  7953. font-style:normal;
  7954. font-size:12px;
  7955. color:#7F7F7F;
  7956. }
  7957. #u31358 {
  7958. border-width:0px;
  7959. position:absolute;
  7960. left:506px;
  7961. top:802px;
  7962. width:97px;
  7963. height:17px;
  7964. display:flex;
  7965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7966. font-weight:400;
  7967. font-style:normal;
  7968. font-size:12px;
  7969. color:#7F7F7F;
  7970. }
  7971. #u31358 .text {
  7972. position:absolute;
  7973. align-self:center;
  7974. padding:0px 0px 0px 0px;
  7975. box-sizing:border-box;
  7976. width:100%;
  7977. }
  7978. #u31358_text {
  7979. border-width:0px;
  7980. white-space:nowrap;
  7981. text-transform:none;
  7982. }
  7983. #u31359 {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:0px;
  7987. top:0px;
  7988. width:0px;
  7989. height:0px;
  7990. }
  7991. #u31360_div {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:0px;
  7995. top:0px;
  7996. width:240px;
  7997. height:80px;
  7998. background:inherit;
  7999. background-color:rgba(242, 242, 242, 1);
  8000. border:none;
  8001. border-radius:0px;
  8002. -moz-box-shadow:none;
  8003. -webkit-box-shadow:none;
  8004. box-shadow:none;
  8005. }
  8006. #u31360 {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:695px;
  8010. top:756px;
  8011. width:240px;
  8012. height:80px;
  8013. display:flex;
  8014. }
  8015. #u31360 .text {
  8016. position:absolute;
  8017. align-self:center;
  8018. padding:2px 2px 2px 2px;
  8019. box-sizing:border-box;
  8020. width:100%;
  8021. }
  8022. #u31360_text {
  8023. border-width:0px;
  8024. word-wrap:break-word;
  8025. text-transform:none;
  8026. visibility:hidden;
  8027. }
  8028. #u31361_img {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:0px;
  8032. top:0px;
  8033. width:50px;
  8034. height:53px;
  8035. }
  8036. #u31361 {
  8037. border-width:0px;
  8038. position:absolute;
  8039. left:711px;
  8040. top:769px;
  8041. width:50px;
  8042. height:53px;
  8043. display:flex;
  8044. }
  8045. #u31361 .text {
  8046. position:absolute;
  8047. align-self:center;
  8048. padding:2px 2px 2px 2px;
  8049. box-sizing:border-box;
  8050. width:100%;
  8051. }
  8052. #u31361_text {
  8053. border-width:0px;
  8054. word-wrap:break-word;
  8055. text-transform:none;
  8056. visibility:hidden;
  8057. }
  8058. #u31362 {
  8059. border-width:0px;
  8060. position:absolute;
  8061. left:0px;
  8062. top:0px;
  8063. width:0px;
  8064. height:0px;
  8065. }
  8066. #u31363_div {
  8067. border-width:0px;
  8068. position:absolute;
  8069. left:0px;
  8070. top:0px;
  8071. width:73px;
  8072. height:25px;
  8073. background:inherit;
  8074. background-color:rgba(255, 255, 255, 0);
  8075. border:none;
  8076. border-left:0px;
  8077. border-top:0px;
  8078. border-right:0px;
  8079. border-radius:0px;
  8080. border-bottom-right-radius:0px;
  8081. border-bottom-left-radius:0px;
  8082. -moz-box-shadow:none;
  8083. -webkit-box-shadow:none;
  8084. box-shadow:none;
  8085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8086. font-weight:400;
  8087. font-style:normal;
  8088. font-size:18px;
  8089. }
  8090. #u31363 {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:776px;
  8094. top:772px;
  8095. width:73px;
  8096. height:25px;
  8097. display:flex;
  8098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8099. font-weight:400;
  8100. font-style:normal;
  8101. font-size:18px;
  8102. }
  8103. #u31363 .text {
  8104. position:absolute;
  8105. align-self:center;
  8106. padding:0px 0px 0px 0px;
  8107. box-sizing:border-box;
  8108. width:100%;
  8109. }
  8110. #u31363_text {
  8111. border-width:0px;
  8112. white-space:nowrap;
  8113. text-transform:none;
  8114. }
  8115. #u31364_div {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:0px;
  8119. top:0px;
  8120. width:133px;
  8121. height:17px;
  8122. background:inherit;
  8123. background-color:rgba(255, 255, 255, 0);
  8124. border:none;
  8125. border-left:0px;
  8126. border-top:0px;
  8127. border-right:0px;
  8128. border-radius:0px;
  8129. border-bottom-right-radius:0px;
  8130. border-bottom-left-radius:0px;
  8131. -moz-box-shadow:none;
  8132. -webkit-box-shadow:none;
  8133. box-shadow:none;
  8134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8135. font-weight:400;
  8136. font-style:normal;
  8137. font-size:12px;
  8138. color:#7F7F7F;
  8139. }
  8140. #u31364 {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:776px;
  8144. top:802px;
  8145. width:133px;
  8146. height:17px;
  8147. display:flex;
  8148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8149. font-weight:400;
  8150. font-style:normal;
  8151. font-size:12px;
  8152. color:#7F7F7F;
  8153. }
  8154. #u31364 .text {
  8155. position:absolute;
  8156. align-self:center;
  8157. padding:0px 0px 0px 0px;
  8158. box-sizing:border-box;
  8159. width:100%;
  8160. }
  8161. #u31364_text {
  8162. border-width:0px;
  8163. white-space:nowrap;
  8164. text-transform:none;
  8165. }
  8166. #u31365 {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:0px;
  8172. height:0px;
  8173. }
  8174. #u31366_div {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:0px;
  8178. top:0px;
  8179. width:240px;
  8180. height:80px;
  8181. background:inherit;
  8182. background-color:rgba(242, 242, 242, 1);
  8183. border:none;
  8184. border-radius:0px;
  8185. -moz-box-shadow:none;
  8186. -webkit-box-shadow:none;
  8187. box-shadow:none;
  8188. }
  8189. #u31366 {
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:695px;
  8193. top:856px;
  8194. width:240px;
  8195. height:80px;
  8196. display:flex;
  8197. }
  8198. #u31366 .text {
  8199. position:absolute;
  8200. align-self:center;
  8201. padding:2px 2px 2px 2px;
  8202. box-sizing:border-box;
  8203. width:100%;
  8204. }
  8205. #u31366_text {
  8206. border-width:0px;
  8207. word-wrap:break-word;
  8208. text-transform:none;
  8209. visibility:hidden;
  8210. }
  8211. #u31367_img {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:50px;
  8217. height:53px;
  8218. }
  8219. #u31367 {
  8220. border-width:0px;
  8221. position:absolute;
  8222. left:711px;
  8223. top:869px;
  8224. width:50px;
  8225. height:53px;
  8226. display:flex;
  8227. }
  8228. #u31367 .text {
  8229. position:absolute;
  8230. align-self:center;
  8231. padding:2px 2px 2px 2px;
  8232. box-sizing:border-box;
  8233. width:100%;
  8234. }
  8235. #u31367_text {
  8236. border-width:0px;
  8237. word-wrap:break-word;
  8238. text-transform:none;
  8239. visibility:hidden;
  8240. }
  8241. #u31368 {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:0px;
  8245. top:0px;
  8246. width:0px;
  8247. height:0px;
  8248. }
  8249. #u31369_div {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:0px;
  8253. top:0px;
  8254. width:73px;
  8255. height:25px;
  8256. background:inherit;
  8257. background-color:rgba(255, 255, 255, 0);
  8258. border:none;
  8259. border-left:0px;
  8260. border-top:0px;
  8261. border-right:0px;
  8262. border-radius:0px;
  8263. border-bottom-right-radius:0px;
  8264. border-bottom-left-radius:0px;
  8265. -moz-box-shadow:none;
  8266. -webkit-box-shadow:none;
  8267. box-shadow:none;
  8268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8269. font-weight:400;
  8270. font-style:normal;
  8271. font-size:18px;
  8272. }
  8273. #u31369 {
  8274. border-width:0px;
  8275. position:absolute;
  8276. left:776px;
  8277. top:872px;
  8278. width:73px;
  8279. height:25px;
  8280. display:flex;
  8281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8282. font-weight:400;
  8283. font-style:normal;
  8284. font-size:18px;
  8285. }
  8286. #u31369 .text {
  8287. position:absolute;
  8288. align-self:center;
  8289. padding:0px 0px 0px 0px;
  8290. box-sizing:border-box;
  8291. width:100%;
  8292. }
  8293. #u31369_text {
  8294. border-width:0px;
  8295. white-space:nowrap;
  8296. text-transform:none;
  8297. }
  8298. #u31370_div {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:0px;
  8302. top:0px;
  8303. width:133px;
  8304. height:17px;
  8305. background:inherit;
  8306. background-color:rgba(255, 255, 255, 0);
  8307. border:none;
  8308. border-left:0px;
  8309. border-top:0px;
  8310. border-right:0px;
  8311. border-radius:0px;
  8312. border-bottom-right-radius:0px;
  8313. border-bottom-left-radius:0px;
  8314. -moz-box-shadow:none;
  8315. -webkit-box-shadow:none;
  8316. box-shadow:none;
  8317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8318. font-weight:400;
  8319. font-style:normal;
  8320. font-size:12px;
  8321. color:#7F7F7F;
  8322. }
  8323. #u31370 {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:776px;
  8327. top:902px;
  8328. width:133px;
  8329. height:17px;
  8330. display:flex;
  8331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8332. font-weight:400;
  8333. font-style:normal;
  8334. font-size:12px;
  8335. color:#7F7F7F;
  8336. }
  8337. #u31370 .text {
  8338. position:absolute;
  8339. align-self:center;
  8340. padding:0px 0px 0px 0px;
  8341. box-sizing:border-box;
  8342. width:100%;
  8343. }
  8344. #u31370_text {
  8345. border-width:0px;
  8346. white-space:nowrap;
  8347. text-transform:none;
  8348. }
  8349. #u31371 {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:0px;
  8353. top:0px;
  8354. width:0px;
  8355. height:0px;
  8356. }
  8357. #u31372_div {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:0px;
  8361. top:0px;
  8362. width:240px;
  8363. height:80px;
  8364. background:inherit;
  8365. background-color:rgba(242, 242, 242, 1);
  8366. border:none;
  8367. border-radius:0px;
  8368. -moz-box-shadow:none;
  8369. -webkit-box-shadow:none;
  8370. box-shadow:none;
  8371. }
  8372. #u31372 {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:965px;
  8376. top:856px;
  8377. width:240px;
  8378. height:80px;
  8379. display:flex;
  8380. }
  8381. #u31372 .text {
  8382. position:absolute;
  8383. align-self:center;
  8384. padding:2px 2px 2px 2px;
  8385. box-sizing:border-box;
  8386. width:100%;
  8387. }
  8388. #u31372_text {
  8389. border-width:0px;
  8390. word-wrap:break-word;
  8391. text-transform:none;
  8392. visibility:hidden;
  8393. }
  8394. #u31373_img {
  8395. border-width:0px;
  8396. position:absolute;
  8397. left:0px;
  8398. top:0px;
  8399. width:50px;
  8400. height:53px;
  8401. }
  8402. #u31373 {
  8403. border-width:0px;
  8404. position:absolute;
  8405. left:981px;
  8406. top:869px;
  8407. width:50px;
  8408. height:53px;
  8409. display:flex;
  8410. }
  8411. #u31373 .text {
  8412. position:absolute;
  8413. align-self:center;
  8414. padding:2px 2px 2px 2px;
  8415. box-sizing:border-box;
  8416. width:100%;
  8417. }
  8418. #u31373_text {
  8419. border-width:0px;
  8420. word-wrap:break-word;
  8421. text-transform:none;
  8422. visibility:hidden;
  8423. }
  8424. #u31374 {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:0px;
  8430. height:0px;
  8431. }
  8432. #u31375_div {
  8433. border-width:0px;
  8434. position:absolute;
  8435. left:0px;
  8436. top:0px;
  8437. width:73px;
  8438. height:25px;
  8439. background:inherit;
  8440. background-color:rgba(255, 255, 255, 0);
  8441. border:none;
  8442. border-left:0px;
  8443. border-top:0px;
  8444. border-right:0px;
  8445. border-radius:0px;
  8446. border-bottom-right-radius:0px;
  8447. border-bottom-left-radius:0px;
  8448. -moz-box-shadow:none;
  8449. -webkit-box-shadow:none;
  8450. box-shadow:none;
  8451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8452. font-weight:400;
  8453. font-style:normal;
  8454. font-size:18px;
  8455. }
  8456. #u31375 {
  8457. border-width:0px;
  8458. position:absolute;
  8459. left:1046px;
  8460. top:872px;
  8461. width:73px;
  8462. height:25px;
  8463. display:flex;
  8464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8465. font-weight:400;
  8466. font-style:normal;
  8467. font-size:18px;
  8468. }
  8469. #u31375 .text {
  8470. position:absolute;
  8471. align-self:center;
  8472. padding:0px 0px 0px 0px;
  8473. box-sizing:border-box;
  8474. width:100%;
  8475. }
  8476. #u31375_text {
  8477. border-width:0px;
  8478. white-space:nowrap;
  8479. text-transform:none;
  8480. }
  8481. #u31376_div {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:0px;
  8485. top:0px;
  8486. width:133px;
  8487. height:17px;
  8488. background:inherit;
  8489. background-color:rgba(255, 255, 255, 0);
  8490. border:none;
  8491. border-left:0px;
  8492. border-top:0px;
  8493. border-right:0px;
  8494. border-radius:0px;
  8495. border-bottom-right-radius:0px;
  8496. border-bottom-left-radius:0px;
  8497. -moz-box-shadow:none;
  8498. -webkit-box-shadow:none;
  8499. box-shadow:none;
  8500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8501. font-weight:400;
  8502. font-style:normal;
  8503. font-size:12px;
  8504. color:#7F7F7F;
  8505. }
  8506. #u31376 {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:1046px;
  8510. top:902px;
  8511. width:133px;
  8512. height:17px;
  8513. display:flex;
  8514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. font-size:12px;
  8518. color:#7F7F7F;
  8519. }
  8520. #u31376 .text {
  8521. position:absolute;
  8522. align-self:center;
  8523. padding:0px 0px 0px 0px;
  8524. box-sizing:border-box;
  8525. width:100%;
  8526. }
  8527. #u31376_text {
  8528. border-width:0px;
  8529. white-space:nowrap;
  8530. text-transform:none;
  8531. }
  8532. #u31377 {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:0px;
  8536. top:0px;
  8537. width:0px;
  8538. height:0px;
  8539. }
  8540. #u31378_div {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:0px;
  8544. top:0px;
  8545. width:240px;
  8546. height:80px;
  8547. background:inherit;
  8548. background-color:rgba(242, 242, 242, 1);
  8549. border:none;
  8550. border-radius:0px;
  8551. -moz-box-shadow:none;
  8552. -webkit-box-shadow:none;
  8553. box-shadow:none;
  8554. }
  8555. #u31378 {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:1236px;
  8559. top:656px;
  8560. width:240px;
  8561. height:80px;
  8562. display:flex;
  8563. }
  8564. #u31378 .text {
  8565. position:absolute;
  8566. align-self:center;
  8567. padding:2px 2px 2px 2px;
  8568. box-sizing:border-box;
  8569. width:100%;
  8570. }
  8571. #u31378_text {
  8572. border-width:0px;
  8573. word-wrap:break-word;
  8574. text-transform:none;
  8575. visibility:hidden;
  8576. }
  8577. #u31379_img {
  8578. border-width:0px;
  8579. position:absolute;
  8580. left:0px;
  8581. top:0px;
  8582. width:50px;
  8583. height:53px;
  8584. }
  8585. #u31379 {
  8586. border-width:0px;
  8587. position:absolute;
  8588. left:1252px;
  8589. top:669px;
  8590. width:50px;
  8591. height:53px;
  8592. display:flex;
  8593. }
  8594. #u31379 .text {
  8595. position:absolute;
  8596. align-self:center;
  8597. padding:2px 2px 2px 2px;
  8598. box-sizing:border-box;
  8599. width:100%;
  8600. }
  8601. #u31379_text {
  8602. border-width:0px;
  8603. word-wrap:break-word;
  8604. text-transform:none;
  8605. visibility:hidden;
  8606. }
  8607. #u31380 {
  8608. border-width:0px;
  8609. position:absolute;
  8610. left:0px;
  8611. top:0px;
  8612. width:0px;
  8613. height:0px;
  8614. }
  8615. #u31381_div {
  8616. border-width:0px;
  8617. position:absolute;
  8618. left:0px;
  8619. top:0px;
  8620. width:73px;
  8621. height:25px;
  8622. background:inherit;
  8623. background-color:rgba(255, 255, 255, 0);
  8624. border:none;
  8625. border-left:0px;
  8626. border-top:0px;
  8627. border-right:0px;
  8628. border-radius:0px;
  8629. border-bottom-right-radius:0px;
  8630. border-bottom-left-radius:0px;
  8631. -moz-box-shadow:none;
  8632. -webkit-box-shadow:none;
  8633. box-shadow:none;
  8634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8635. font-weight:400;
  8636. font-style:normal;
  8637. font-size:18px;
  8638. }
  8639. #u31381 {
  8640. border-width:0px;
  8641. position:absolute;
  8642. left:1317px;
  8643. top:672px;
  8644. width:73px;
  8645. height:25px;
  8646. display:flex;
  8647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8648. font-weight:400;
  8649. font-style:normal;
  8650. font-size:18px;
  8651. }
  8652. #u31381 .text {
  8653. position:absolute;
  8654. align-self:center;
  8655. padding:0px 0px 0px 0px;
  8656. box-sizing:border-box;
  8657. width:100%;
  8658. }
  8659. #u31381_text {
  8660. border-width:0px;
  8661. white-space:nowrap;
  8662. text-transform:none;
  8663. }
  8664. #u31382_div {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:0px;
  8668. top:0px;
  8669. width:97px;
  8670. height:17px;
  8671. background:inherit;
  8672. background-color:rgba(255, 255, 255, 0);
  8673. border:none;
  8674. border-left:0px;
  8675. border-top:0px;
  8676. border-right:0px;
  8677. border-radius:0px;
  8678. border-bottom-right-radius:0px;
  8679. border-bottom-left-radius:0px;
  8680. -moz-box-shadow:none;
  8681. -webkit-box-shadow:none;
  8682. box-shadow:none;
  8683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8684. font-weight:400;
  8685. font-style:normal;
  8686. font-size:12px;
  8687. color:#7F7F7F;
  8688. }
  8689. #u31382 {
  8690. border-width:0px;
  8691. position:absolute;
  8692. left:1317px;
  8693. top:702px;
  8694. width:97px;
  8695. height:17px;
  8696. display:flex;
  8697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8698. font-weight:400;
  8699. font-style:normal;
  8700. font-size:12px;
  8701. color:#7F7F7F;
  8702. }
  8703. #u31382 .text {
  8704. position:absolute;
  8705. align-self:center;
  8706. padding:0px 0px 0px 0px;
  8707. box-sizing:border-box;
  8708. width:100%;
  8709. }
  8710. #u31382_text {
  8711. border-width:0px;
  8712. white-space:nowrap;
  8713. text-transform:none;
  8714. }
  8715. #u31383 {
  8716. border-width:0px;
  8717. position:absolute;
  8718. left:0px;
  8719. top:0px;
  8720. width:0px;
  8721. height:0px;
  8722. }
  8723. #u31384_div {
  8724. border-width:0px;
  8725. position:absolute;
  8726. left:0px;
  8727. top:0px;
  8728. width:240px;
  8729. height:80px;
  8730. background:inherit;
  8731. background-color:rgba(242, 242, 242, 1);
  8732. border:none;
  8733. border-radius:0px;
  8734. -moz-box-shadow:none;
  8735. -webkit-box-shadow:none;
  8736. box-shadow:none;
  8737. }
  8738. #u31384 {
  8739. border-width:0px;
  8740. position:absolute;
  8741. left:1236px;
  8742. top:756px;
  8743. width:240px;
  8744. height:80px;
  8745. display:flex;
  8746. }
  8747. #u31384 .text {
  8748. position:absolute;
  8749. align-self:center;
  8750. padding:2px 2px 2px 2px;
  8751. box-sizing:border-box;
  8752. width:100%;
  8753. }
  8754. #u31384_text {
  8755. border-width:0px;
  8756. word-wrap:break-word;
  8757. text-transform:none;
  8758. visibility:hidden;
  8759. }
  8760. #u31385_img {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:0px;
  8764. top:0px;
  8765. width:50px;
  8766. height:53px;
  8767. }
  8768. #u31385 {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:1252px;
  8772. top:769px;
  8773. width:50px;
  8774. height:53px;
  8775. display:flex;
  8776. }
  8777. #u31385 .text {
  8778. position:absolute;
  8779. align-self:center;
  8780. padding:2px 2px 2px 2px;
  8781. box-sizing:border-box;
  8782. width:100%;
  8783. }
  8784. #u31385_text {
  8785. border-width:0px;
  8786. word-wrap:break-word;
  8787. text-transform:none;
  8788. visibility:hidden;
  8789. }
  8790. #u31386 {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:0px;
  8794. top:0px;
  8795. width:0px;
  8796. height:0px;
  8797. }
  8798. #u31387_div {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:0px;
  8802. top:0px;
  8803. width:73px;
  8804. height:25px;
  8805. background:inherit;
  8806. background-color:rgba(255, 255, 255, 0);
  8807. border:none;
  8808. border-left:0px;
  8809. border-top:0px;
  8810. border-right:0px;
  8811. border-radius:0px;
  8812. border-bottom-right-radius:0px;
  8813. border-bottom-left-radius:0px;
  8814. -moz-box-shadow:none;
  8815. -webkit-box-shadow:none;
  8816. box-shadow:none;
  8817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8818. font-weight:400;
  8819. font-style:normal;
  8820. font-size:18px;
  8821. }
  8822. #u31387 {
  8823. border-width:0px;
  8824. position:absolute;
  8825. left:1317px;
  8826. top:772px;
  8827. width:73px;
  8828. height:25px;
  8829. display:flex;
  8830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8831. font-weight:400;
  8832. font-style:normal;
  8833. font-size:18px;
  8834. }
  8835. #u31387 .text {
  8836. position:absolute;
  8837. align-self:center;
  8838. padding:0px 0px 0px 0px;
  8839. box-sizing:border-box;
  8840. width:100%;
  8841. }
  8842. #u31387_text {
  8843. border-width:0px;
  8844. white-space:nowrap;
  8845. text-transform:none;
  8846. }
  8847. #u31388_div {
  8848. border-width:0px;
  8849. position:absolute;
  8850. left:0px;
  8851. top:0px;
  8852. width:109px;
  8853. height:17px;
  8854. background:inherit;
  8855. background-color:rgba(255, 255, 255, 0);
  8856. border:none;
  8857. border-left:0px;
  8858. border-top:0px;
  8859. border-right:0px;
  8860. border-radius:0px;
  8861. border-bottom-right-radius:0px;
  8862. border-bottom-left-radius:0px;
  8863. -moz-box-shadow:none;
  8864. -webkit-box-shadow:none;
  8865. box-shadow:none;
  8866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8867. font-weight:400;
  8868. font-style:normal;
  8869. font-size:12px;
  8870. color:#7F7F7F;
  8871. }
  8872. #u31388 {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:1317px;
  8876. top:802px;
  8877. width:109px;
  8878. height:17px;
  8879. display:flex;
  8880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8881. font-weight:400;
  8882. font-style:normal;
  8883. font-size:12px;
  8884. color:#7F7F7F;
  8885. }
  8886. #u31388 .text {
  8887. position:absolute;
  8888. align-self:center;
  8889. padding:0px 0px 0px 0px;
  8890. box-sizing:border-box;
  8891. width:100%;
  8892. }
  8893. #u31388_text {
  8894. border-width:0px;
  8895. white-space:nowrap;
  8896. text-transform:none;
  8897. }
  8898. #u31389 {
  8899. border-width:0px;
  8900. position:absolute;
  8901. left:0px;
  8902. top:0px;
  8903. width:0px;
  8904. height:0px;
  8905. }
  8906. #u31390_div {
  8907. border-width:0px;
  8908. position:absolute;
  8909. left:0px;
  8910. top:0px;
  8911. width:240px;
  8912. height:80px;
  8913. background:inherit;
  8914. background-color:rgba(242, 242, 242, 1);
  8915. border:none;
  8916. border-radius:0px;
  8917. -moz-box-shadow:none;
  8918. -webkit-box-shadow:none;
  8919. box-shadow:none;
  8920. }
  8921. #u31390 {
  8922. border-width:0px;
  8923. position:absolute;
  8924. left:695px;
  8925. top:656px;
  8926. width:240px;
  8927. height:80px;
  8928. display:flex;
  8929. }
  8930. #u31390 .text {
  8931. position:absolute;
  8932. align-self:center;
  8933. padding:2px 2px 2px 2px;
  8934. box-sizing:border-box;
  8935. width:100%;
  8936. }
  8937. #u31390_text {
  8938. border-width:0px;
  8939. word-wrap:break-word;
  8940. text-transform:none;
  8941. visibility:hidden;
  8942. }
  8943. #u31391_img {
  8944. border-width:0px;
  8945. position:absolute;
  8946. left:0px;
  8947. top:0px;
  8948. width:50px;
  8949. height:53px;
  8950. }
  8951. #u31391 {
  8952. border-width:0px;
  8953. position:absolute;
  8954. left:711px;
  8955. top:669px;
  8956. width:50px;
  8957. height:53px;
  8958. display:flex;
  8959. }
  8960. #u31391 .text {
  8961. position:absolute;
  8962. align-self:center;
  8963. padding:2px 2px 2px 2px;
  8964. box-sizing:border-box;
  8965. width:100%;
  8966. }
  8967. #u31391_text {
  8968. border-width:0px;
  8969. word-wrap:break-word;
  8970. text-transform:none;
  8971. visibility:hidden;
  8972. }
  8973. #u31392 {
  8974. border-width:0px;
  8975. position:absolute;
  8976. left:0px;
  8977. top:0px;
  8978. width:0px;
  8979. height:0px;
  8980. }
  8981. #u31393_div {
  8982. border-width:0px;
  8983. position:absolute;
  8984. left:0px;
  8985. top:0px;
  8986. width:73px;
  8987. height:25px;
  8988. background:inherit;
  8989. background-color:rgba(255, 255, 255, 0);
  8990. border:none;
  8991. border-left:0px;
  8992. border-top:0px;
  8993. border-right:0px;
  8994. border-radius:0px;
  8995. border-bottom-right-radius:0px;
  8996. border-bottom-left-radius:0px;
  8997. -moz-box-shadow:none;
  8998. -webkit-box-shadow:none;
  8999. box-shadow:none;
  9000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9001. font-weight:400;
  9002. font-style:normal;
  9003. font-size:18px;
  9004. }
  9005. #u31393 {
  9006. border-width:0px;
  9007. position:absolute;
  9008. left:776px;
  9009. top:672px;
  9010. width:73px;
  9011. height:25px;
  9012. display:flex;
  9013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9014. font-weight:400;
  9015. font-style:normal;
  9016. font-size:18px;
  9017. }
  9018. #u31393 .text {
  9019. position:absolute;
  9020. align-self:center;
  9021. padding:0px 0px 0px 0px;
  9022. box-sizing:border-box;
  9023. width:100%;
  9024. }
  9025. #u31393_text {
  9026. border-width:0px;
  9027. white-space:nowrap;
  9028. text-transform:none;
  9029. }
  9030. #u31394_div {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:0px;
  9034. top:0px;
  9035. width:169px;
  9036. height:17px;
  9037. background:inherit;
  9038. background-color:rgba(255, 255, 255, 0);
  9039. border:none;
  9040. border-left:0px;
  9041. border-top:0px;
  9042. border-right:0px;
  9043. border-radius:0px;
  9044. border-bottom-right-radius:0px;
  9045. border-bottom-left-radius:0px;
  9046. -moz-box-shadow:none;
  9047. -webkit-box-shadow:none;
  9048. box-shadow:none;
  9049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9050. font-weight:400;
  9051. font-style:normal;
  9052. font-size:12px;
  9053. color:#7F7F7F;
  9054. }
  9055. #u31394 {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:776px;
  9059. top:702px;
  9060. width:169px;
  9061. height:17px;
  9062. display:flex;
  9063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9064. font-weight:400;
  9065. font-style:normal;
  9066. font-size:12px;
  9067. color:#7F7F7F;
  9068. }
  9069. #u31394 .text {
  9070. position:absolute;
  9071. align-self:center;
  9072. padding:0px 0px 0px 0px;
  9073. box-sizing:border-box;
  9074. width:100%;
  9075. }
  9076. #u31394_text {
  9077. border-width:0px;
  9078. white-space:nowrap;
  9079. text-transform:none;
  9080. }
  9081. #u31395 {
  9082. border-width:0px;
  9083. position:absolute;
  9084. left:0px;
  9085. top:0px;
  9086. width:0px;
  9087. height:0px;
  9088. }
  9089. #u31396_div {
  9090. border-width:0px;
  9091. position:absolute;
  9092. left:0px;
  9093. top:0px;
  9094. width:240px;
  9095. height:80px;
  9096. background:inherit;
  9097. background-color:rgba(242, 242, 242, 1);
  9098. border:none;
  9099. border-radius:0px;
  9100. -moz-box-shadow:none;
  9101. -webkit-box-shadow:none;
  9102. box-shadow:none;
  9103. }
  9104. #u31396 {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:965px;
  9108. top:756px;
  9109. width:240px;
  9110. height:80px;
  9111. display:flex;
  9112. }
  9113. #u31396 .text {
  9114. position:absolute;
  9115. align-self:center;
  9116. padding:2px 2px 2px 2px;
  9117. box-sizing:border-box;
  9118. width:100%;
  9119. }
  9120. #u31396_text {
  9121. border-width:0px;
  9122. word-wrap:break-word;
  9123. text-transform:none;
  9124. visibility:hidden;
  9125. }
  9126. #u31397_img {
  9127. border-width:0px;
  9128. position:absolute;
  9129. left:0px;
  9130. top:0px;
  9131. width:50px;
  9132. height:53px;
  9133. }
  9134. #u31397 {
  9135. border-width:0px;
  9136. position:absolute;
  9137. left:981px;
  9138. top:769px;
  9139. width:50px;
  9140. height:53px;
  9141. display:flex;
  9142. }
  9143. #u31397 .text {
  9144. position:absolute;
  9145. align-self:center;
  9146. padding:2px 2px 2px 2px;
  9147. box-sizing:border-box;
  9148. width:100%;
  9149. }
  9150. #u31397_text {
  9151. border-width:0px;
  9152. word-wrap:break-word;
  9153. text-transform:none;
  9154. visibility:hidden;
  9155. }
  9156. #u31398 {
  9157. border-width:0px;
  9158. position:absolute;
  9159. left:0px;
  9160. top:0px;
  9161. width:0px;
  9162. height:0px;
  9163. }
  9164. #u31399_div {
  9165. border-width:0px;
  9166. position:absolute;
  9167. left:0px;
  9168. top:0px;
  9169. width:73px;
  9170. height:25px;
  9171. background:inherit;
  9172. background-color:rgba(255, 255, 255, 0);
  9173. border:none;
  9174. border-left:0px;
  9175. border-top:0px;
  9176. border-right:0px;
  9177. border-radius:0px;
  9178. border-bottom-right-radius:0px;
  9179. border-bottom-left-radius:0px;
  9180. -moz-box-shadow:none;
  9181. -webkit-box-shadow:none;
  9182. box-shadow:none;
  9183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9184. font-weight:400;
  9185. font-style:normal;
  9186. font-size:18px;
  9187. }
  9188. #u31399 {
  9189. border-width:0px;
  9190. position:absolute;
  9191. left:1046px;
  9192. top:772px;
  9193. width:73px;
  9194. height:25px;
  9195. display:flex;
  9196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9197. font-weight:400;
  9198. font-style:normal;
  9199. font-size:18px;
  9200. }
  9201. #u31399 .text {
  9202. position:absolute;
  9203. align-self:center;
  9204. padding:0px 0px 0px 0px;
  9205. box-sizing:border-box;
  9206. width:100%;
  9207. }
  9208. #u31399_text {
  9209. border-width:0px;
  9210. white-space:nowrap;
  9211. text-transform:none;
  9212. }
  9213. #u31400_div {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:0px;
  9217. top:0px;
  9218. width:157px;
  9219. height:17px;
  9220. background:inherit;
  9221. background-color:rgba(255, 255, 255, 0);
  9222. border:none;
  9223. border-left:0px;
  9224. border-top:0px;
  9225. border-right:0px;
  9226. border-radius:0px;
  9227. border-bottom-right-radius:0px;
  9228. border-bottom-left-radius:0px;
  9229. -moz-box-shadow:none;
  9230. -webkit-box-shadow:none;
  9231. box-shadow:none;
  9232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9233. font-weight:400;
  9234. font-style:normal;
  9235. font-size:12px;
  9236. color:#7F7F7F;
  9237. }
  9238. #u31400 {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:1046px;
  9242. top:802px;
  9243. width:157px;
  9244. height:17px;
  9245. display:flex;
  9246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9247. font-weight:400;
  9248. font-style:normal;
  9249. font-size:12px;
  9250. color:#7F7F7F;
  9251. }
  9252. #u31400 .text {
  9253. position:absolute;
  9254. align-self:center;
  9255. padding:0px 0px 0px 0px;
  9256. box-sizing:border-box;
  9257. width:100%;
  9258. }
  9259. #u31400_text {
  9260. border-width:0px;
  9261. white-space:nowrap;
  9262. text-transform:none;
  9263. }
  9264. #u31401 {
  9265. border-width:0px;
  9266. position:absolute;
  9267. left:0px;
  9268. top:0px;
  9269. width:0px;
  9270. height:0px;
  9271. }
  9272. #u31402_div {
  9273. border-width:0px;
  9274. position:absolute;
  9275. left:0px;
  9276. top:0px;
  9277. width:240px;
  9278. height:80px;
  9279. background:inherit;
  9280. background-color:rgba(242, 242, 242, 1);
  9281. border:none;
  9282. border-radius:0px;
  9283. -moz-box-shadow:none;
  9284. -webkit-box-shadow:none;
  9285. box-shadow:none;
  9286. }
  9287. #u31402 {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:965px;
  9291. top:656px;
  9292. width:240px;
  9293. height:80px;
  9294. display:flex;
  9295. }
  9296. #u31402 .text {
  9297. position:absolute;
  9298. align-self:center;
  9299. padding:2px 2px 2px 2px;
  9300. box-sizing:border-box;
  9301. width:100%;
  9302. }
  9303. #u31402_text {
  9304. border-width:0px;
  9305. word-wrap:break-word;
  9306. text-transform:none;
  9307. visibility:hidden;
  9308. }
  9309. #u31403_img {
  9310. border-width:0px;
  9311. position:absolute;
  9312. left:0px;
  9313. top:0px;
  9314. width:50px;
  9315. height:53px;
  9316. }
  9317. #u31403 {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:981px;
  9321. top:669px;
  9322. width:50px;
  9323. height:53px;
  9324. display:flex;
  9325. }
  9326. #u31403 .text {
  9327. position:absolute;
  9328. align-self:center;
  9329. padding:2px 2px 2px 2px;
  9330. box-sizing:border-box;
  9331. width:100%;
  9332. }
  9333. #u31403_text {
  9334. border-width:0px;
  9335. word-wrap:break-word;
  9336. text-transform:none;
  9337. visibility:hidden;
  9338. }
  9339. #u31404 {
  9340. border-width:0px;
  9341. position:absolute;
  9342. left:0px;
  9343. top:0px;
  9344. width:0px;
  9345. height:0px;
  9346. }
  9347. #u31405_div {
  9348. border-width:0px;
  9349. position:absolute;
  9350. left:0px;
  9351. top:0px;
  9352. width:73px;
  9353. height:25px;
  9354. background:inherit;
  9355. background-color:rgba(255, 255, 255, 0);
  9356. border:none;
  9357. border-left:0px;
  9358. border-top:0px;
  9359. border-right:0px;
  9360. border-radius:0px;
  9361. border-bottom-right-radius:0px;
  9362. border-bottom-left-radius:0px;
  9363. -moz-box-shadow:none;
  9364. -webkit-box-shadow:none;
  9365. box-shadow:none;
  9366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9367. font-weight:400;
  9368. font-style:normal;
  9369. font-size:18px;
  9370. }
  9371. #u31405 {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:1046px;
  9375. top:672px;
  9376. width:73px;
  9377. height:25px;
  9378. display:flex;
  9379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9380. font-weight:400;
  9381. font-style:normal;
  9382. font-size:18px;
  9383. }
  9384. #u31405 .text {
  9385. position:absolute;
  9386. align-self:center;
  9387. padding:0px 0px 0px 0px;
  9388. box-sizing:border-box;
  9389. width:100%;
  9390. }
  9391. #u31405_text {
  9392. border-width:0px;
  9393. white-space:nowrap;
  9394. text-transform:none;
  9395. }
  9396. #u31406_div {
  9397. border-width:0px;
  9398. position:absolute;
  9399. left:0px;
  9400. top:0px;
  9401. width:85px;
  9402. height:17px;
  9403. background:inherit;
  9404. background-color:rgba(255, 255, 255, 0);
  9405. border:none;
  9406. border-left:0px;
  9407. border-top:0px;
  9408. border-right:0px;
  9409. border-radius:0px;
  9410. border-bottom-right-radius:0px;
  9411. border-bottom-left-radius:0px;
  9412. -moz-box-shadow:none;
  9413. -webkit-box-shadow:none;
  9414. box-shadow:none;
  9415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9416. font-weight:400;
  9417. font-style:normal;
  9418. font-size:12px;
  9419. color:#7F7F7F;
  9420. }
  9421. #u31406 {
  9422. border-width:0px;
  9423. position:absolute;
  9424. left:1046px;
  9425. top:702px;
  9426. width:85px;
  9427. height:17px;
  9428. display:flex;
  9429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9430. font-weight:400;
  9431. font-style:normal;
  9432. font-size:12px;
  9433. color:#7F7F7F;
  9434. }
  9435. #u31406 .text {
  9436. position:absolute;
  9437. align-self:center;
  9438. padding:0px 0px 0px 0px;
  9439. box-sizing:border-box;
  9440. width:100%;
  9441. }
  9442. #u31406_text {
  9443. border-width:0px;
  9444. white-space:nowrap;
  9445. text-transform:none;
  9446. }
  9447. #u31407 {
  9448. border-width:0px;
  9449. position:absolute;
  9450. left:0px;
  9451. top:0px;
  9452. width:0px;
  9453. height:0px;
  9454. }
  9455. #u31408_div {
  9456. border-width:0px;
  9457. position:absolute;
  9458. left:0px;
  9459. top:0px;
  9460. width:240px;
  9461. height:80px;
  9462. background:inherit;
  9463. background-color:rgba(242, 242, 242, 1);
  9464. border:none;
  9465. border-radius:0px;
  9466. -moz-box-shadow:none;
  9467. -webkit-box-shadow:none;
  9468. box-shadow:none;
  9469. }
  9470. #u31408 {
  9471. border-width:0px;
  9472. position:absolute;
  9473. left:154px;
  9474. top:656px;
  9475. width:240px;
  9476. height:80px;
  9477. display:flex;
  9478. }
  9479. #u31408 .text {
  9480. position:absolute;
  9481. align-self:center;
  9482. padding:2px 2px 2px 2px;
  9483. box-sizing:border-box;
  9484. width:100%;
  9485. }
  9486. #u31408_text {
  9487. border-width:0px;
  9488. word-wrap:break-word;
  9489. text-transform:none;
  9490. visibility:hidden;
  9491. }
  9492. #u31409_img {
  9493. border-width:0px;
  9494. position:absolute;
  9495. left:0px;
  9496. top:0px;
  9497. width:50px;
  9498. height:53px;
  9499. }
  9500. #u31409 {
  9501. border-width:0px;
  9502. position:absolute;
  9503. left:170px;
  9504. top:669px;
  9505. width:50px;
  9506. height:53px;
  9507. display:flex;
  9508. }
  9509. #u31409 .text {
  9510. position:absolute;
  9511. align-self:center;
  9512. padding:2px 2px 2px 2px;
  9513. box-sizing:border-box;
  9514. width:100%;
  9515. }
  9516. #u31409_text {
  9517. border-width:0px;
  9518. word-wrap:break-word;
  9519. text-transform:none;
  9520. visibility:hidden;
  9521. }
  9522. #u31410 {
  9523. border-width:0px;
  9524. position:absolute;
  9525. left:0px;
  9526. top:0px;
  9527. width:0px;
  9528. height:0px;
  9529. }
  9530. #u31411_div {
  9531. border-width:0px;
  9532. position:absolute;
  9533. left:0px;
  9534. top:0px;
  9535. width:73px;
  9536. height:25px;
  9537. background:inherit;
  9538. background-color:rgba(255, 255, 255, 0);
  9539. border:none;
  9540. border-left:0px;
  9541. border-top:0px;
  9542. border-right:0px;
  9543. border-radius:0px;
  9544. border-bottom-right-radius:0px;
  9545. border-bottom-left-radius:0px;
  9546. -moz-box-shadow:none;
  9547. -webkit-box-shadow:none;
  9548. box-shadow:none;
  9549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9550. font-weight:400;
  9551. font-style:normal;
  9552. font-size:18px;
  9553. }
  9554. #u31411 {
  9555. border-width:0px;
  9556. position:absolute;
  9557. left:235px;
  9558. top:672px;
  9559. width:73px;
  9560. height:25px;
  9561. display:flex;
  9562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9563. font-weight:400;
  9564. font-style:normal;
  9565. font-size:18px;
  9566. }
  9567. #u31411 .text {
  9568. position:absolute;
  9569. align-self:center;
  9570. padding:0px 0px 0px 0px;
  9571. box-sizing:border-box;
  9572. width:100%;
  9573. }
  9574. #u31411_text {
  9575. border-width:0px;
  9576. white-space:nowrap;
  9577. text-transform:none;
  9578. }
  9579. #u31412_div {
  9580. border-width:0px;
  9581. position:absolute;
  9582. left:0px;
  9583. top:0px;
  9584. width:157px;
  9585. height:17px;
  9586. background:inherit;
  9587. background-color:rgba(255, 255, 255, 0);
  9588. border:none;
  9589. border-left:0px;
  9590. border-top:0px;
  9591. border-right:0px;
  9592. border-radius:0px;
  9593. border-bottom-right-radius:0px;
  9594. border-bottom-left-radius:0px;
  9595. -moz-box-shadow:none;
  9596. -webkit-box-shadow:none;
  9597. box-shadow:none;
  9598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9599. font-weight:400;
  9600. font-style:normal;
  9601. font-size:12px;
  9602. color:#7F7F7F;
  9603. }
  9604. #u31412 {
  9605. border-width:0px;
  9606. position:absolute;
  9607. left:235px;
  9608. top:702px;
  9609. width:157px;
  9610. height:17px;
  9611. display:flex;
  9612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9613. font-weight:400;
  9614. font-style:normal;
  9615. font-size:12px;
  9616. color:#7F7F7F;
  9617. }
  9618. #u31412 .text {
  9619. position:absolute;
  9620. align-self:center;
  9621. padding:0px 0px 0px 0px;
  9622. box-sizing:border-box;
  9623. width:100%;
  9624. }
  9625. #u31412_text {
  9626. border-width:0px;
  9627. white-space:nowrap;
  9628. text-transform:none;
  9629. }
  9630. #u31413 {
  9631. border-width:0px;
  9632. position:absolute;
  9633. left:0px;
  9634. top:0px;
  9635. width:0px;
  9636. height:0px;
  9637. }
  9638. #u31414_div {
  9639. border-width:0px;
  9640. position:absolute;
  9641. left:0px;
  9642. top:0px;
  9643. width:240px;
  9644. height:80px;
  9645. background:inherit;
  9646. background-color:rgba(242, 242, 242, 1);
  9647. border:none;
  9648. border-radius:0px;
  9649. -moz-box-shadow:none;
  9650. -webkit-box-shadow:none;
  9651. box-shadow:none;
  9652. }
  9653. #u31414 {
  9654. border-width:0px;
  9655. position:absolute;
  9656. left:424px;
  9657. top:1046px;
  9658. width:240px;
  9659. height:80px;
  9660. display:flex;
  9661. }
  9662. #u31414 .text {
  9663. position:absolute;
  9664. align-self:center;
  9665. padding:2px 2px 2px 2px;
  9666. box-sizing:border-box;
  9667. width:100%;
  9668. }
  9669. #u31414_text {
  9670. border-width:0px;
  9671. word-wrap:break-word;
  9672. text-transform:none;
  9673. visibility:hidden;
  9674. }
  9675. #u31415_img {
  9676. border-width:0px;
  9677. position:absolute;
  9678. left:0px;
  9679. top:0px;
  9680. width:50px;
  9681. height:53px;
  9682. }
  9683. #u31415 {
  9684. border-width:0px;
  9685. position:absolute;
  9686. left:440px;
  9687. top:1059px;
  9688. width:50px;
  9689. height:53px;
  9690. display:flex;
  9691. }
  9692. #u31415 .text {
  9693. position:absolute;
  9694. align-self:center;
  9695. padding:2px 2px 2px 2px;
  9696. box-sizing:border-box;
  9697. width:100%;
  9698. }
  9699. #u31415_text {
  9700. border-width:0px;
  9701. word-wrap:break-word;
  9702. text-transform:none;
  9703. visibility:hidden;
  9704. }
  9705. #u31416 {
  9706. border-width:0px;
  9707. position:absolute;
  9708. left:0px;
  9709. top:0px;
  9710. width:0px;
  9711. height:0px;
  9712. }
  9713. #u31417_div {
  9714. border-width:0px;
  9715. position:absolute;
  9716. left:0px;
  9717. top:0px;
  9718. width:73px;
  9719. height:25px;
  9720. background:inherit;
  9721. background-color:rgba(255, 255, 255, 0);
  9722. border:none;
  9723. border-left:0px;
  9724. border-top:0px;
  9725. border-right:0px;
  9726. border-radius:0px;
  9727. border-bottom-right-radius:0px;
  9728. border-bottom-left-radius:0px;
  9729. -moz-box-shadow:none;
  9730. -webkit-box-shadow:none;
  9731. box-shadow:none;
  9732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9733. font-weight:400;
  9734. font-style:normal;
  9735. font-size:18px;
  9736. }
  9737. #u31417 {
  9738. border-width:0px;
  9739. position:absolute;
  9740. left:505px;
  9741. top:1062px;
  9742. width:73px;
  9743. height:25px;
  9744. display:flex;
  9745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9746. font-weight:400;
  9747. font-style:normal;
  9748. font-size:18px;
  9749. }
  9750. #u31417 .text {
  9751. position:absolute;
  9752. align-self:center;
  9753. padding:0px 0px 0px 0px;
  9754. box-sizing:border-box;
  9755. width:100%;
  9756. }
  9757. #u31417_text {
  9758. border-width:0px;
  9759. white-space:nowrap;
  9760. text-transform:none;
  9761. }
  9762. #u31418_div {
  9763. border-width:0px;
  9764. position:absolute;
  9765. left:0px;
  9766. top:0px;
  9767. width:121px;
  9768. height:17px;
  9769. background:inherit;
  9770. background-color:rgba(255, 255, 255, 0);
  9771. border:none;
  9772. border-left:0px;
  9773. border-top:0px;
  9774. border-right:0px;
  9775. border-radius:0px;
  9776. border-bottom-right-radius:0px;
  9777. border-bottom-left-radius:0px;
  9778. -moz-box-shadow:none;
  9779. -webkit-box-shadow:none;
  9780. box-shadow:none;
  9781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9782. font-weight:400;
  9783. font-style:normal;
  9784. font-size:12px;
  9785. color:#7F7F7F;
  9786. }
  9787. #u31418 {
  9788. border-width:0px;
  9789. position:absolute;
  9790. left:505px;
  9791. top:1092px;
  9792. width:121px;
  9793. height:17px;
  9794. display:flex;
  9795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9796. font-weight:400;
  9797. font-style:normal;
  9798. font-size:12px;
  9799. color:#7F7F7F;
  9800. }
  9801. #u31418 .text {
  9802. position:absolute;
  9803. align-self:center;
  9804. padding:0px 0px 0px 0px;
  9805. box-sizing:border-box;
  9806. width:100%;
  9807. }
  9808. #u31418_text {
  9809. border-width:0px;
  9810. white-space:nowrap;
  9811. text-transform:none;
  9812. }
  9813. #u31419 {
  9814. border-width:0px;
  9815. position:absolute;
  9816. left:0px;
  9817. top:0px;
  9818. width:0px;
  9819. height:0px;
  9820. }
  9821. #u31420_div {
  9822. border-width:0px;
  9823. position:absolute;
  9824. left:0px;
  9825. top:0px;
  9826. width:240px;
  9827. height:80px;
  9828. background:inherit;
  9829. background-color:rgba(242, 242, 242, 1);
  9830. border:none;
  9831. border-radius:0px;
  9832. -moz-box-shadow:none;
  9833. -webkit-box-shadow:none;
  9834. box-shadow:none;
  9835. }
  9836. #u31420 {
  9837. border-width:0px;
  9838. position:absolute;
  9839. left:694px;
  9840. top:1046px;
  9841. width:240px;
  9842. height:80px;
  9843. display:flex;
  9844. }
  9845. #u31420 .text {
  9846. position:absolute;
  9847. align-self:center;
  9848. padding:2px 2px 2px 2px;
  9849. box-sizing:border-box;
  9850. width:100%;
  9851. }
  9852. #u31420_text {
  9853. border-width:0px;
  9854. word-wrap:break-word;
  9855. text-transform:none;
  9856. visibility:hidden;
  9857. }
  9858. #u31421_img {
  9859. border-width:0px;
  9860. position:absolute;
  9861. left:0px;
  9862. top:0px;
  9863. width:50px;
  9864. height:53px;
  9865. }
  9866. #u31421 {
  9867. border-width:0px;
  9868. position:absolute;
  9869. left:710px;
  9870. top:1059px;
  9871. width:50px;
  9872. height:53px;
  9873. display:flex;
  9874. }
  9875. #u31421 .text {
  9876. position:absolute;
  9877. align-self:center;
  9878. padding:2px 2px 2px 2px;
  9879. box-sizing:border-box;
  9880. width:100%;
  9881. }
  9882. #u31421_text {
  9883. border-width:0px;
  9884. word-wrap:break-word;
  9885. text-transform:none;
  9886. visibility:hidden;
  9887. }
  9888. #u31422 {
  9889. border-width:0px;
  9890. position:absolute;
  9891. left:0px;
  9892. top:0px;
  9893. width:0px;
  9894. height:0px;
  9895. }
  9896. #u31423_div {
  9897. border-width:0px;
  9898. position:absolute;
  9899. left:0px;
  9900. top:0px;
  9901. width:73px;
  9902. height:25px;
  9903. background:inherit;
  9904. background-color:rgba(255, 255, 255, 0);
  9905. border:none;
  9906. border-left:0px;
  9907. border-top:0px;
  9908. border-right:0px;
  9909. border-radius:0px;
  9910. border-bottom-right-radius:0px;
  9911. border-bottom-left-radius:0px;
  9912. -moz-box-shadow:none;
  9913. -webkit-box-shadow:none;
  9914. box-shadow:none;
  9915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9916. font-weight:400;
  9917. font-style:normal;
  9918. font-size:18px;
  9919. }
  9920. #u31423 {
  9921. border-width:0px;
  9922. position:absolute;
  9923. left:775px;
  9924. top:1062px;
  9925. width:73px;
  9926. height:25px;
  9927. display:flex;
  9928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9929. font-weight:400;
  9930. font-style:normal;
  9931. font-size:18px;
  9932. }
  9933. #u31423 .text {
  9934. position:absolute;
  9935. align-self:center;
  9936. padding:0px 0px 0px 0px;
  9937. box-sizing:border-box;
  9938. width:100%;
  9939. }
  9940. #u31423_text {
  9941. border-width:0px;
  9942. white-space:nowrap;
  9943. text-transform:none;
  9944. }
  9945. #u31424_div {
  9946. border-width:0px;
  9947. position:absolute;
  9948. left:0px;
  9949. top:0px;
  9950. width:109px;
  9951. height:17px;
  9952. background:inherit;
  9953. background-color:rgba(255, 255, 255, 0);
  9954. border:none;
  9955. border-left:0px;
  9956. border-top:0px;
  9957. border-right:0px;
  9958. border-radius:0px;
  9959. border-bottom-right-radius:0px;
  9960. border-bottom-left-radius:0px;
  9961. -moz-box-shadow:none;
  9962. -webkit-box-shadow:none;
  9963. box-shadow:none;
  9964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9965. font-weight:400;
  9966. font-style:normal;
  9967. font-size:12px;
  9968. color:#7F7F7F;
  9969. }
  9970. #u31424 {
  9971. border-width:0px;
  9972. position:absolute;
  9973. left:775px;
  9974. top:1092px;
  9975. width:109px;
  9976. height:17px;
  9977. display:flex;
  9978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9979. font-weight:400;
  9980. font-style:normal;
  9981. font-size:12px;
  9982. color:#7F7F7F;
  9983. }
  9984. #u31424 .text {
  9985. position:absolute;
  9986. align-self:center;
  9987. padding:0px 0px 0px 0px;
  9988. box-sizing:border-box;
  9989. width:100%;
  9990. }
  9991. #u31424_text {
  9992. border-width:0px;
  9993. white-space:nowrap;
  9994. text-transform:none;
  9995. }
  9996. #u31425_div {
  9997. border-width:0px;
  9998. position:absolute;
  9999. left:0px;
  10000. top:0px;
  10001. width:253px;
  10002. height:25px;
  10003. background:inherit;
  10004. background-color:rgba(255, 255, 255, 0);
  10005. border:none;
  10006. border-radius:0px;
  10007. -moz-box-shadow:none;
  10008. -webkit-box-shadow:none;
  10009. box-shadow:none;
  10010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10011. font-weight:400;
  10012. font-style:normal;
  10013. font-size:18px;
  10014. color:#D9001B;
  10015. }
  10016. #u31425 {
  10017. border-width:0px;
  10018. position:absolute;
  10019. left:317px;
  10020. top:270px;
  10021. width:253px;
  10022. height:25px;
  10023. display:flex;
  10024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10025. font-weight:400;
  10026. font-style:normal;
  10027. font-size:18px;
  10028. color:#D9001B;
  10029. }
  10030. #u31425 .text {
  10031. position:absolute;
  10032. align-self:flex-start;
  10033. padding:0px 0px 0px 0px;
  10034. box-sizing:border-box;
  10035. width:100%;
  10036. }
  10037. #u31425_text {
  10038. border-width:0px;
  10039. white-space:nowrap;
  10040. text-transform:none;
  10041. }
  10042. #u31426 {
  10043. border-width:0px;
  10044. position:absolute;
  10045. left:0px;
  10046. top:0px;
  10047. width:0px;
  10048. height:0px;
  10049. }
  10050. #u31427_div {
  10051. border-width:0px;
  10052. position:absolute;
  10053. left:0px;
  10054. top:0px;
  10055. width:240px;
  10056. height:80px;
  10057. background:inherit;
  10058. background-color:rgba(242, 242, 242, 1);
  10059. border:none;
  10060. border-radius:0px;
  10061. -moz-box-shadow:none;
  10062. -webkit-box-shadow:none;
  10063. box-shadow:none;
  10064. }
  10065. #u31427 {
  10066. border-width:0px;
  10067. position:absolute;
  10068. left:154px;
  10069. top:456px;
  10070. width:240px;
  10071. height:80px;
  10072. display:flex;
  10073. }
  10074. #u31427 .text {
  10075. position:absolute;
  10076. align-self:center;
  10077. padding:2px 2px 2px 2px;
  10078. box-sizing:border-box;
  10079. width:100%;
  10080. }
  10081. #u31427_text {
  10082. border-width:0px;
  10083. word-wrap:break-word;
  10084. text-transform:none;
  10085. visibility:hidden;
  10086. }
  10087. #u31428_img {
  10088. border-width:0px;
  10089. position:absolute;
  10090. left:0px;
  10091. top:0px;
  10092. width:50px;
  10093. height:53px;
  10094. }
  10095. #u31428 {
  10096. border-width:0px;
  10097. position:absolute;
  10098. left:170px;
  10099. top:469px;
  10100. width:50px;
  10101. height:53px;
  10102. display:flex;
  10103. }
  10104. #u31428 .text {
  10105. position:absolute;
  10106. align-self:center;
  10107. padding:2px 2px 2px 2px;
  10108. box-sizing:border-box;
  10109. width:100%;
  10110. }
  10111. #u31428_text {
  10112. border-width:0px;
  10113. word-wrap:break-word;
  10114. text-transform:none;
  10115. visibility:hidden;
  10116. }
  10117. #u31429 {
  10118. border-width:0px;
  10119. position:absolute;
  10120. left:0px;
  10121. top:0px;
  10122. width:0px;
  10123. height:0px;
  10124. }
  10125. #u31430_div {
  10126. border-width:0px;
  10127. position:absolute;
  10128. left:0px;
  10129. top:0px;
  10130. width:73px;
  10131. height:25px;
  10132. background:inherit;
  10133. background-color:rgba(255, 255, 255, 0);
  10134. border:none;
  10135. border-left:0px;
  10136. border-top:0px;
  10137. border-right:0px;
  10138. border-radius:0px;
  10139. border-bottom-right-radius:0px;
  10140. border-bottom-left-radius:0px;
  10141. -moz-box-shadow:none;
  10142. -webkit-box-shadow:none;
  10143. box-shadow:none;
  10144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10145. font-weight:400;
  10146. font-style:normal;
  10147. font-size:18px;
  10148. }
  10149. #u31430 {
  10150. border-width:0px;
  10151. position:absolute;
  10152. left:235px;
  10153. top:472px;
  10154. width:73px;
  10155. height:25px;
  10156. display:flex;
  10157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10158. font-weight:400;
  10159. font-style:normal;
  10160. font-size:18px;
  10161. }
  10162. #u31430 .text {
  10163. position:absolute;
  10164. align-self:center;
  10165. padding:0px 0px 0px 0px;
  10166. box-sizing:border-box;
  10167. width:100%;
  10168. }
  10169. #u31430_text {
  10170. border-width:0px;
  10171. white-space:nowrap;
  10172. text-transform:none;
  10173. }
  10174. #u31431_div {
  10175. border-width:0px;
  10176. position:absolute;
  10177. left:0px;
  10178. top:0px;
  10179. width:193px;
  10180. height:17px;
  10181. background:inherit;
  10182. background-color:rgba(255, 255, 255, 0);
  10183. border:none;
  10184. border-left:0px;
  10185. border-top:0px;
  10186. border-right:0px;
  10187. border-radius:0px;
  10188. border-bottom-right-radius:0px;
  10189. border-bottom-left-radius:0px;
  10190. -moz-box-shadow:none;
  10191. -webkit-box-shadow:none;
  10192. box-shadow:none;
  10193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10194. font-weight:400;
  10195. font-style:normal;
  10196. font-size:12px;
  10197. color:#7F7F7F;
  10198. }
  10199. #u31431 {
  10200. border-width:0px;
  10201. position:absolute;
  10202. left:235px;
  10203. top:502px;
  10204. width:193px;
  10205. height:17px;
  10206. display:flex;
  10207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10208. font-weight:400;
  10209. font-style:normal;
  10210. font-size:12px;
  10211. color:#7F7F7F;
  10212. }
  10213. #u31431 .text {
  10214. position:absolute;
  10215. align-self:center;
  10216. padding:0px 0px 0px 0px;
  10217. box-sizing:border-box;
  10218. width:100%;
  10219. }
  10220. #u31431_text {
  10221. border-width:0px;
  10222. white-space:nowrap;
  10223. text-transform:none;
  10224. }
  10225. #u31432 {
  10226. border-width:0px;
  10227. position:absolute;
  10228. left:0px;
  10229. top:0px;
  10230. width:0px;
  10231. height:0px;
  10232. }
  10233. #u31433_div {
  10234. border-width:0px;
  10235. position:absolute;
  10236. left:0px;
  10237. top:0px;
  10238. width:240px;
  10239. height:80px;
  10240. background:inherit;
  10241. background-color:rgba(242, 242, 242, 1);
  10242. border:none;
  10243. border-radius:0px;
  10244. -moz-box-shadow:none;
  10245. -webkit-box-shadow:none;
  10246. box-shadow:none;
  10247. }
  10248. #u31433 {
  10249. border-width:0px;
  10250. position:absolute;
  10251. left:424px;
  10252. top:656px;
  10253. width:240px;
  10254. height:80px;
  10255. display:flex;
  10256. }
  10257. #u31433 .text {
  10258. position:absolute;
  10259. align-self:center;
  10260. padding:2px 2px 2px 2px;
  10261. box-sizing:border-box;
  10262. width:100%;
  10263. }
  10264. #u31433_text {
  10265. border-width:0px;
  10266. word-wrap:break-word;
  10267. text-transform:none;
  10268. visibility:hidden;
  10269. }
  10270. #u31434_img {
  10271. border-width:0px;
  10272. position:absolute;
  10273. left:0px;
  10274. top:0px;
  10275. width:50px;
  10276. height:53px;
  10277. }
  10278. #u31434 {
  10279. border-width:0px;
  10280. position:absolute;
  10281. left:440px;
  10282. top:669px;
  10283. width:50px;
  10284. height:53px;
  10285. display:flex;
  10286. }
  10287. #u31434 .text {
  10288. position:absolute;
  10289. align-self:center;
  10290. padding:2px 2px 2px 2px;
  10291. box-sizing:border-box;
  10292. width:100%;
  10293. }
  10294. #u31434_text {
  10295. border-width:0px;
  10296. word-wrap:break-word;
  10297. text-transform:none;
  10298. visibility:hidden;
  10299. }
  10300. #u31435 {
  10301. border-width:0px;
  10302. position:absolute;
  10303. left:0px;
  10304. top:0px;
  10305. width:0px;
  10306. height:0px;
  10307. }
  10308. #u31436_div {
  10309. border-width:0px;
  10310. position:absolute;
  10311. left:0px;
  10312. top:0px;
  10313. width:109px;
  10314. height:25px;
  10315. background:inherit;
  10316. background-color:rgba(255, 255, 255, 0);
  10317. border:none;
  10318. border-left:0px;
  10319. border-top:0px;
  10320. border-right:0px;
  10321. border-radius:0px;
  10322. border-bottom-right-radius:0px;
  10323. border-bottom-left-radius:0px;
  10324. -moz-box-shadow:none;
  10325. -webkit-box-shadow:none;
  10326. box-shadow:none;
  10327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10328. font-weight:400;
  10329. font-style:normal;
  10330. font-size:18px;
  10331. }
  10332. #u31436 {
  10333. border-width:0px;
  10334. position:absolute;
  10335. left:505px;
  10336. top:672px;
  10337. width:109px;
  10338. height:25px;
  10339. display:flex;
  10340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10341. font-weight:400;
  10342. font-style:normal;
  10343. font-size:18px;
  10344. }
  10345. #u31436 .text {
  10346. position:absolute;
  10347. align-self:center;
  10348. padding:0px 0px 0px 0px;
  10349. box-sizing:border-box;
  10350. width:100%;
  10351. }
  10352. #u31436_text {
  10353. border-width:0px;
  10354. white-space:nowrap;
  10355. text-transform:none;
  10356. }
  10357. #u31437_div {
  10358. border-width:0px;
  10359. position:absolute;
  10360. left:0px;
  10361. top:0px;
  10362. width:145px;
  10363. height:17px;
  10364. background:inherit;
  10365. background-color:rgba(255, 255, 255, 0);
  10366. border:none;
  10367. border-left:0px;
  10368. border-top:0px;
  10369. border-right:0px;
  10370. border-radius:0px;
  10371. border-bottom-right-radius:0px;
  10372. border-bottom-left-radius:0px;
  10373. -moz-box-shadow:none;
  10374. -webkit-box-shadow:none;
  10375. box-shadow:none;
  10376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10377. font-weight:400;
  10378. font-style:normal;
  10379. font-size:12px;
  10380. color:#7F7F7F;
  10381. }
  10382. #u31437 {
  10383. border-width:0px;
  10384. position:absolute;
  10385. left:505px;
  10386. top:702px;
  10387. width:145px;
  10388. height:17px;
  10389. display:flex;
  10390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10391. font-weight:400;
  10392. font-style:normal;
  10393. font-size:12px;
  10394. color:#7F7F7F;
  10395. }
  10396. #u31437 .text {
  10397. position:absolute;
  10398. align-self:center;
  10399. padding:0px 0px 0px 0px;
  10400. box-sizing:border-box;
  10401. width:100%;
  10402. }
  10403. #u31437_text {
  10404. border-width:0px;
  10405. white-space:nowrap;
  10406. text-transform:none;
  10407. }
  10408. #u31438 {
  10409. border-width:0px;
  10410. position:absolute;
  10411. left:0px;
  10412. top:0px;
  10413. width:0px;
  10414. height:0px;
  10415. }
  10416. #u31439_div {
  10417. border-width:0px;
  10418. position:absolute;
  10419. left:0px;
  10420. top:0px;
  10421. width:240px;
  10422. height:80px;
  10423. background:inherit;
  10424. background-color:rgba(242, 242, 242, 1);
  10425. border:none;
  10426. border-radius:0px;
  10427. -moz-box-shadow:none;
  10428. -webkit-box-shadow:none;
  10429. box-shadow:none;
  10430. }
  10431. #u31439 {
  10432. border-width:0px;
  10433. position:absolute;
  10434. left:425px;
  10435. top:856px;
  10436. width:240px;
  10437. height:80px;
  10438. display:flex;
  10439. }
  10440. #u31439 .text {
  10441. position:absolute;
  10442. align-self:center;
  10443. padding:2px 2px 2px 2px;
  10444. box-sizing:border-box;
  10445. width:100%;
  10446. }
  10447. #u31439_text {
  10448. border-width:0px;
  10449. word-wrap:break-word;
  10450. text-transform:none;
  10451. visibility:hidden;
  10452. }
  10453. #u31440_img {
  10454. border-width:0px;
  10455. position:absolute;
  10456. left:0px;
  10457. top:0px;
  10458. width:50px;
  10459. height:53px;
  10460. }
  10461. #u31440 {
  10462. border-width:0px;
  10463. position:absolute;
  10464. left:441px;
  10465. top:869px;
  10466. width:50px;
  10467. height:53px;
  10468. display:flex;
  10469. }
  10470. #u31440 .text {
  10471. position:absolute;
  10472. align-self:center;
  10473. padding:2px 2px 2px 2px;
  10474. box-sizing:border-box;
  10475. width:100%;
  10476. }
  10477. #u31440_text {
  10478. border-width:0px;
  10479. word-wrap:break-word;
  10480. text-transform:none;
  10481. visibility:hidden;
  10482. }
  10483. #u31441 {
  10484. border-width:0px;
  10485. position:absolute;
  10486. left:0px;
  10487. top:0px;
  10488. width:0px;
  10489. height:0px;
  10490. }
  10491. #u31442_div {
  10492. border-width:0px;
  10493. position:absolute;
  10494. left:0px;
  10495. top:0px;
  10496. width:73px;
  10497. height:25px;
  10498. background:inherit;
  10499. background-color:rgba(255, 255, 255, 0);
  10500. border:none;
  10501. border-left:0px;
  10502. border-top:0px;
  10503. border-right:0px;
  10504. border-radius:0px;
  10505. border-bottom-right-radius:0px;
  10506. border-bottom-left-radius:0px;
  10507. -moz-box-shadow:none;
  10508. -webkit-box-shadow:none;
  10509. box-shadow:none;
  10510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10511. font-weight:400;
  10512. font-style:normal;
  10513. font-size:18px;
  10514. }
  10515. #u31442 {
  10516. border-width:0px;
  10517. position:absolute;
  10518. left:506px;
  10519. top:872px;
  10520. width:73px;
  10521. height:25px;
  10522. display:flex;
  10523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10524. font-weight:400;
  10525. font-style:normal;
  10526. font-size:18px;
  10527. }
  10528. #u31442 .text {
  10529. position:absolute;
  10530. align-self:center;
  10531. padding:0px 0px 0px 0px;
  10532. box-sizing:border-box;
  10533. width:100%;
  10534. }
  10535. #u31442_text {
  10536. border-width:0px;
  10537. white-space:nowrap;
  10538. text-transform:none;
  10539. }
  10540. #u31443_div {
  10541. border-width:0px;
  10542. position:absolute;
  10543. left:0px;
  10544. top:0px;
  10545. width:169px;
  10546. height:17px;
  10547. background:inherit;
  10548. background-color:rgba(255, 255, 255, 0);
  10549. border:none;
  10550. border-left:0px;
  10551. border-top:0px;
  10552. border-right:0px;
  10553. border-radius:0px;
  10554. border-bottom-right-radius:0px;
  10555. border-bottom-left-radius:0px;
  10556. -moz-box-shadow:none;
  10557. -webkit-box-shadow:none;
  10558. box-shadow:none;
  10559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10560. font-weight:400;
  10561. font-style:normal;
  10562. font-size:12px;
  10563. color:#7F7F7F;
  10564. }
  10565. #u31443 {
  10566. border-width:0px;
  10567. position:absolute;
  10568. left:506px;
  10569. top:902px;
  10570. width:169px;
  10571. height:17px;
  10572. display:flex;
  10573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10574. font-weight:400;
  10575. font-style:normal;
  10576. font-size:12px;
  10577. color:#7F7F7F;
  10578. }
  10579. #u31443 .text {
  10580. position:absolute;
  10581. align-self:center;
  10582. padding:0px 0px 0px 0px;
  10583. box-sizing:border-box;
  10584. width:100%;
  10585. }
  10586. #u31443_text {
  10587. border-width:0px;
  10588. white-space:nowrap;
  10589. text-transform:none;
  10590. }
  10591. #u31444 {
  10592. border-width:0px;
  10593. position:absolute;
  10594. left:0px;
  10595. top:0px;
  10596. width:0px;
  10597. height:0px;
  10598. }
  10599. #u31445_div {
  10600. border-width:0px;
  10601. position:absolute;
  10602. left:0px;
  10603. top:0px;
  10604. width:240px;
  10605. height:80px;
  10606. background:inherit;
  10607. background-color:rgba(242, 242, 242, 1);
  10608. border:none;
  10609. border-radius:0px;
  10610. -moz-box-shadow:none;
  10611. -webkit-box-shadow:none;
  10612. box-shadow:none;
  10613. }
  10614. #u31445 {
  10615. border-width:0px;
  10616. position:absolute;
  10617. left:154px;
  10618. top:856px;
  10619. width:240px;
  10620. height:80px;
  10621. display:flex;
  10622. }
  10623. #u31445 .text {
  10624. position:absolute;
  10625. align-self:center;
  10626. padding:2px 2px 2px 2px;
  10627. box-sizing:border-box;
  10628. width:100%;
  10629. }
  10630. #u31445_text {
  10631. border-width:0px;
  10632. word-wrap:break-word;
  10633. text-transform:none;
  10634. visibility:hidden;
  10635. }
  10636. #u31446_img {
  10637. border-width:0px;
  10638. position:absolute;
  10639. left:0px;
  10640. top:0px;
  10641. width:50px;
  10642. height:53px;
  10643. }
  10644. #u31446 {
  10645. border-width:0px;
  10646. position:absolute;
  10647. left:170px;
  10648. top:869px;
  10649. width:50px;
  10650. height:53px;
  10651. display:flex;
  10652. }
  10653. #u31446 .text {
  10654. position:absolute;
  10655. align-self:center;
  10656. padding:2px 2px 2px 2px;
  10657. box-sizing:border-box;
  10658. width:100%;
  10659. }
  10660. #u31446_text {
  10661. border-width:0px;
  10662. word-wrap:break-word;
  10663. text-transform:none;
  10664. visibility:hidden;
  10665. }
  10666. #u31447 {
  10667. border-width:0px;
  10668. position:absolute;
  10669. left:0px;
  10670. top:0px;
  10671. width:0px;
  10672. height:0px;
  10673. }
  10674. #u31448_div {
  10675. border-width:0px;
  10676. position:absolute;
  10677. left:0px;
  10678. top:0px;
  10679. width:73px;
  10680. height:25px;
  10681. background:inherit;
  10682. background-color:rgba(255, 255, 255, 0);
  10683. border:none;
  10684. border-left:0px;
  10685. border-top:0px;
  10686. border-right:0px;
  10687. border-radius:0px;
  10688. border-bottom-right-radius:0px;
  10689. border-bottom-left-radius:0px;
  10690. -moz-box-shadow:none;
  10691. -webkit-box-shadow:none;
  10692. box-shadow:none;
  10693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10694. font-weight:400;
  10695. font-style:normal;
  10696. font-size:18px;
  10697. }
  10698. #u31448 {
  10699. border-width:0px;
  10700. position:absolute;
  10701. left:235px;
  10702. top:872px;
  10703. width:73px;
  10704. height:25px;
  10705. display:flex;
  10706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10707. font-weight:400;
  10708. font-style:normal;
  10709. font-size:18px;
  10710. }
  10711. #u31448 .text {
  10712. position:absolute;
  10713. align-self:center;
  10714. padding:0px 0px 0px 0px;
  10715. box-sizing:border-box;
  10716. width:100%;
  10717. }
  10718. #u31448_text {
  10719. border-width:0px;
  10720. white-space:nowrap;
  10721. text-transform:none;
  10722. }
  10723. #u31449_div {
  10724. border-width:0px;
  10725. position:absolute;
  10726. left:0px;
  10727. top:0px;
  10728. width:169px;
  10729. height:17px;
  10730. background:inherit;
  10731. background-color:rgba(255, 255, 255, 0);
  10732. border:none;
  10733. border-left:0px;
  10734. border-top:0px;
  10735. border-right:0px;
  10736. border-radius:0px;
  10737. border-bottom-right-radius:0px;
  10738. border-bottom-left-radius:0px;
  10739. -moz-box-shadow:none;
  10740. -webkit-box-shadow:none;
  10741. box-shadow:none;
  10742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10743. font-weight:400;
  10744. font-style:normal;
  10745. font-size:12px;
  10746. color:#7F7F7F;
  10747. }
  10748. #u31449 {
  10749. border-width:0px;
  10750. position:absolute;
  10751. left:235px;
  10752. top:902px;
  10753. width:169px;
  10754. height:17px;
  10755. display:flex;
  10756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10757. font-weight:400;
  10758. font-style:normal;
  10759. font-size:12px;
  10760. color:#7F7F7F;
  10761. }
  10762. #u31449 .text {
  10763. position:absolute;
  10764. align-self:center;
  10765. padding:0px 0px 0px 0px;
  10766. box-sizing:border-box;
  10767. width:100%;
  10768. }
  10769. #u31449_text {
  10770. border-width:0px;
  10771. white-space:nowrap;
  10772. text-transform:none;
  10773. }
  10774. #u31450 {
  10775. border-width:0px;
  10776. position:absolute;
  10777. left:0px;
  10778. top:0px;
  10779. width:0px;
  10780. height:0px;
  10781. }
  10782. #u31451_div {
  10783. border-width:0px;
  10784. position:absolute;
  10785. left:0px;
  10786. top:0px;
  10787. width:240px;
  10788. height:80px;
  10789. background:inherit;
  10790. background-color:rgba(242, 242, 242, 1);
  10791. border:none;
  10792. border-radius:0px;
  10793. -moz-box-shadow:none;
  10794. -webkit-box-shadow:none;
  10795. box-shadow:none;
  10796. }
  10797. #u31451 {
  10798. border-width:0px;
  10799. position:absolute;
  10800. left:1236px;
  10801. top:856px;
  10802. width:240px;
  10803. height:80px;
  10804. display:flex;
  10805. }
  10806. #u31451 .text {
  10807. position:absolute;
  10808. align-self:center;
  10809. padding:2px 2px 2px 2px;
  10810. box-sizing:border-box;
  10811. width:100%;
  10812. }
  10813. #u31451_text {
  10814. border-width:0px;
  10815. word-wrap:break-word;
  10816. text-transform:none;
  10817. visibility:hidden;
  10818. }
  10819. #u31452_img {
  10820. border-width:0px;
  10821. position:absolute;
  10822. left:0px;
  10823. top:0px;
  10824. width:50px;
  10825. height:53px;
  10826. }
  10827. #u31452 {
  10828. border-width:0px;
  10829. position:absolute;
  10830. left:1252px;
  10831. top:869px;
  10832. width:50px;
  10833. height:53px;
  10834. display:flex;
  10835. }
  10836. #u31452 .text {
  10837. position:absolute;
  10838. align-self:center;
  10839. padding:2px 2px 2px 2px;
  10840. box-sizing:border-box;
  10841. width:100%;
  10842. }
  10843. #u31452_text {
  10844. border-width:0px;
  10845. word-wrap:break-word;
  10846. text-transform:none;
  10847. visibility:hidden;
  10848. }
  10849. #u31453 {
  10850. border-width:0px;
  10851. position:absolute;
  10852. left:0px;
  10853. top:0px;
  10854. width:0px;
  10855. height:0px;
  10856. }
  10857. #u31454_div {
  10858. border-width:0px;
  10859. position:absolute;
  10860. left:0px;
  10861. top:0px;
  10862. width:73px;
  10863. height:25px;
  10864. background:inherit;
  10865. background-color:rgba(255, 255, 255, 0);
  10866. border:none;
  10867. border-left:0px;
  10868. border-top:0px;
  10869. border-right:0px;
  10870. border-radius:0px;
  10871. border-bottom-right-radius:0px;
  10872. border-bottom-left-radius:0px;
  10873. -moz-box-shadow:none;
  10874. -webkit-box-shadow:none;
  10875. box-shadow:none;
  10876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10877. font-weight:400;
  10878. font-style:normal;
  10879. font-size:18px;
  10880. }
  10881. #u31454 {
  10882. border-width:0px;
  10883. position:absolute;
  10884. left:1317px;
  10885. top:872px;
  10886. width:73px;
  10887. height:25px;
  10888. display:flex;
  10889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10890. font-weight:400;
  10891. font-style:normal;
  10892. font-size:18px;
  10893. }
  10894. #u31454 .text {
  10895. position:absolute;
  10896. align-self:center;
  10897. padding:0px 0px 0px 0px;
  10898. box-sizing:border-box;
  10899. width:100%;
  10900. }
  10901. #u31454_text {
  10902. border-width:0px;
  10903. white-space:nowrap;
  10904. text-transform:none;
  10905. }
  10906. #u31455_div {
  10907. border-width:0px;
  10908. position:absolute;
  10909. left:0px;
  10910. top:0px;
  10911. width:193px;
  10912. height:17px;
  10913. background:inherit;
  10914. background-color:rgba(255, 255, 255, 0);
  10915. border:none;
  10916. border-left:0px;
  10917. border-top:0px;
  10918. border-right:0px;
  10919. border-radius:0px;
  10920. border-bottom-right-radius:0px;
  10921. border-bottom-left-radius:0px;
  10922. -moz-box-shadow:none;
  10923. -webkit-box-shadow:none;
  10924. box-shadow:none;
  10925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10926. font-weight:400;
  10927. font-style:normal;
  10928. font-size:12px;
  10929. color:#7F7F7F;
  10930. }
  10931. #u31455 {
  10932. border-width:0px;
  10933. position:absolute;
  10934. left:1317px;
  10935. top:902px;
  10936. width:193px;
  10937. height:17px;
  10938. display:flex;
  10939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10940. font-weight:400;
  10941. font-style:normal;
  10942. font-size:12px;
  10943. color:#7F7F7F;
  10944. }
  10945. #u31455 .text {
  10946. position:absolute;
  10947. align-self:center;
  10948. padding:0px 0px 0px 0px;
  10949. box-sizing:border-box;
  10950. width:100%;
  10951. }
  10952. #u31455_text {
  10953. border-width:0px;
  10954. white-space:nowrap;
  10955. text-transform:none;
  10956. }
  10957. #u31456 {
  10958. border-width:0px;
  10959. position:absolute;
  10960. left:0px;
  10961. top:0px;
  10962. width:0px;
  10963. height:0px;
  10964. }
  10965. #u31457_div {
  10966. border-width:0px;
  10967. position:absolute;
  10968. left:0px;
  10969. top:0px;
  10970. width:240px;
  10971. height:80px;
  10972. background:inherit;
  10973. background-color:rgba(242, 242, 242, 1);
  10974. border:none;
  10975. border-radius:0px;
  10976. -moz-box-shadow:none;
  10977. -webkit-box-shadow:none;
  10978. box-shadow:none;
  10979. }
  10980. #u31457 {
  10981. border-width:0px;
  10982. position:absolute;
  10983. left:154px;
  10984. top:956px;
  10985. width:240px;
  10986. height:80px;
  10987. display:flex;
  10988. }
  10989. #u31457 .text {
  10990. position:absolute;
  10991. align-self:center;
  10992. padding:2px 2px 2px 2px;
  10993. box-sizing:border-box;
  10994. width:100%;
  10995. }
  10996. #u31457_text {
  10997. border-width:0px;
  10998. word-wrap:break-word;
  10999. text-transform:none;
  11000. visibility:hidden;
  11001. }
  11002. #u31458_img {
  11003. border-width:0px;
  11004. position:absolute;
  11005. left:0px;
  11006. top:0px;
  11007. width:50px;
  11008. height:53px;
  11009. }
  11010. #u31458 {
  11011. border-width:0px;
  11012. position:absolute;
  11013. left:170px;
  11014. top:969px;
  11015. width:50px;
  11016. height:53px;
  11017. display:flex;
  11018. }
  11019. #u31458 .text {
  11020. position:absolute;
  11021. align-self:center;
  11022. padding:2px 2px 2px 2px;
  11023. box-sizing:border-box;
  11024. width:100%;
  11025. }
  11026. #u31458_text {
  11027. border-width:0px;
  11028. word-wrap:break-word;
  11029. text-transform:none;
  11030. visibility:hidden;
  11031. }
  11032. #u31459 {
  11033. border-width:0px;
  11034. position:absolute;
  11035. left:0px;
  11036. top:0px;
  11037. width:0px;
  11038. height:0px;
  11039. }
  11040. #u31460_div {
  11041. border-width:0px;
  11042. position:absolute;
  11043. left:0px;
  11044. top:0px;
  11045. width:73px;
  11046. height:25px;
  11047. background:inherit;
  11048. background-color:rgba(255, 255, 255, 0);
  11049. border:none;
  11050. border-left:0px;
  11051. border-top:0px;
  11052. border-right:0px;
  11053. border-radius:0px;
  11054. border-bottom-right-radius:0px;
  11055. border-bottom-left-radius:0px;
  11056. -moz-box-shadow:none;
  11057. -webkit-box-shadow:none;
  11058. box-shadow:none;
  11059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11060. font-weight:400;
  11061. font-style:normal;
  11062. font-size:18px;
  11063. }
  11064. #u31460 {
  11065. border-width:0px;
  11066. position:absolute;
  11067. left:235px;
  11068. top:972px;
  11069. width:73px;
  11070. height:25px;
  11071. display:flex;
  11072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11073. font-weight:400;
  11074. font-style:normal;
  11075. font-size:18px;
  11076. }
  11077. #u31460 .text {
  11078. position:absolute;
  11079. align-self:center;
  11080. padding:0px 0px 0px 0px;
  11081. box-sizing:border-box;
  11082. width:100%;
  11083. }
  11084. #u31460_text {
  11085. border-width:0px;
  11086. white-space:nowrap;
  11087. text-transform:none;
  11088. }
  11089. #u31461_div {
  11090. border-width:0px;
  11091. position:absolute;
  11092. left:0px;
  11093. top:0px;
  11094. width:193px;
  11095. height:17px;
  11096. background:inherit;
  11097. background-color:rgba(255, 255, 255, 0);
  11098. border:none;
  11099. border-left:0px;
  11100. border-top:0px;
  11101. border-right:0px;
  11102. border-radius:0px;
  11103. border-bottom-right-radius:0px;
  11104. border-bottom-left-radius:0px;
  11105. -moz-box-shadow:none;
  11106. -webkit-box-shadow:none;
  11107. box-shadow:none;
  11108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11109. font-weight:400;
  11110. font-style:normal;
  11111. font-size:12px;
  11112. color:#7F7F7F;
  11113. }
  11114. #u31461 {
  11115. border-width:0px;
  11116. position:absolute;
  11117. left:235px;
  11118. top:1002px;
  11119. width:193px;
  11120. height:17px;
  11121. display:flex;
  11122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11123. font-weight:400;
  11124. font-style:normal;
  11125. font-size:12px;
  11126. color:#7F7F7F;
  11127. }
  11128. #u31461 .text {
  11129. position:absolute;
  11130. align-self:center;
  11131. padding:0px 0px 0px 0px;
  11132. box-sizing:border-box;
  11133. width:100%;
  11134. }
  11135. #u31461_text {
  11136. border-width:0px;
  11137. white-space:nowrap;
  11138. text-transform:none;
  11139. }
  11140. #u31462 {
  11141. border-width:0px;
  11142. position:absolute;
  11143. left:0px;
  11144. top:0px;
  11145. width:0px;
  11146. height:0px;
  11147. }
  11148. #u31463_div {
  11149. border-width:0px;
  11150. position:absolute;
  11151. left:0px;
  11152. top:0px;
  11153. width:240px;
  11154. height:80px;
  11155. background:inherit;
  11156. background-color:rgba(242, 242, 242, 1);
  11157. border:none;
  11158. border-radius:0px;
  11159. -moz-box-shadow:none;
  11160. -webkit-box-shadow:none;
  11161. box-shadow:none;
  11162. }
  11163. #u31463 {
  11164. border-width:0px;
  11165. position:absolute;
  11166. left:425px;
  11167. top:956px;
  11168. width:240px;
  11169. height:80px;
  11170. display:flex;
  11171. }
  11172. #u31463 .text {
  11173. position:absolute;
  11174. align-self:center;
  11175. padding:2px 2px 2px 2px;
  11176. box-sizing:border-box;
  11177. width:100%;
  11178. }
  11179. #u31463_text {
  11180. border-width:0px;
  11181. word-wrap:break-word;
  11182. text-transform:none;
  11183. visibility:hidden;
  11184. }
  11185. #u31464_img {
  11186. border-width:0px;
  11187. position:absolute;
  11188. left:0px;
  11189. top:0px;
  11190. width:50px;
  11191. height:53px;
  11192. }
  11193. #u31464 {
  11194. border-width:0px;
  11195. position:absolute;
  11196. left:441px;
  11197. top:969px;
  11198. width:50px;
  11199. height:53px;
  11200. display:flex;
  11201. }
  11202. #u31464 .text {
  11203. position:absolute;
  11204. align-self:center;
  11205. padding:2px 2px 2px 2px;
  11206. box-sizing:border-box;
  11207. width:100%;
  11208. }
  11209. #u31464_text {
  11210. border-width:0px;
  11211. word-wrap:break-word;
  11212. text-transform:none;
  11213. visibility:hidden;
  11214. }
  11215. #u31465 {
  11216. border-width:0px;
  11217. position:absolute;
  11218. left:0px;
  11219. top:0px;
  11220. width:0px;
  11221. height:0px;
  11222. }
  11223. #u31466_div {
  11224. border-width:0px;
  11225. position:absolute;
  11226. left:0px;
  11227. top:0px;
  11228. width:73px;
  11229. height:25px;
  11230. background:inherit;
  11231. background-color:rgba(255, 255, 255, 0);
  11232. border:none;
  11233. border-left:0px;
  11234. border-top:0px;
  11235. border-right:0px;
  11236. border-radius:0px;
  11237. border-bottom-right-radius:0px;
  11238. border-bottom-left-radius:0px;
  11239. -moz-box-shadow:none;
  11240. -webkit-box-shadow:none;
  11241. box-shadow:none;
  11242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11243. font-weight:400;
  11244. font-style:normal;
  11245. font-size:18px;
  11246. }
  11247. #u31466 {
  11248. border-width:0px;
  11249. position:absolute;
  11250. left:506px;
  11251. top:972px;
  11252. width:73px;
  11253. height:25px;
  11254. display:flex;
  11255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11256. font-weight:400;
  11257. font-style:normal;
  11258. font-size:18px;
  11259. }
  11260. #u31466 .text {
  11261. position:absolute;
  11262. align-self:center;
  11263. padding:0px 0px 0px 0px;
  11264. box-sizing:border-box;
  11265. width:100%;
  11266. }
  11267. #u31466_text {
  11268. border-width:0px;
  11269. white-space:nowrap;
  11270. text-transform:none;
  11271. }
  11272. #u31467_div {
  11273. border-width:0px;
  11274. position:absolute;
  11275. left:0px;
  11276. top:0px;
  11277. width:193px;
  11278. height:17px;
  11279. background:inherit;
  11280. background-color:rgba(255, 255, 255, 0);
  11281. border:none;
  11282. border-left:0px;
  11283. border-top:0px;
  11284. border-right:0px;
  11285. border-radius:0px;
  11286. border-bottom-right-radius:0px;
  11287. border-bottom-left-radius:0px;
  11288. -moz-box-shadow:none;
  11289. -webkit-box-shadow:none;
  11290. box-shadow:none;
  11291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11292. font-weight:400;
  11293. font-style:normal;
  11294. font-size:12px;
  11295. color:#7F7F7F;
  11296. }
  11297. #u31467 {
  11298. border-width:0px;
  11299. position:absolute;
  11300. left:506px;
  11301. top:1002px;
  11302. width:193px;
  11303. height:17px;
  11304. display:flex;
  11305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11306. font-weight:400;
  11307. font-style:normal;
  11308. font-size:12px;
  11309. color:#7F7F7F;
  11310. }
  11311. #u31467 .text {
  11312. position:absolute;
  11313. align-self:center;
  11314. padding:0px 0px 0px 0px;
  11315. box-sizing:border-box;
  11316. width:100%;
  11317. }
  11318. #u31467_text {
  11319. border-width:0px;
  11320. white-space:nowrap;
  11321. text-transform:none;
  11322. }
  11323. #u31468 {
  11324. border-width:0px;
  11325. position:absolute;
  11326. left:0px;
  11327. top:0px;
  11328. width:0px;
  11329. height:0px;
  11330. }
  11331. #u31469_div {
  11332. border-width:0px;
  11333. position:absolute;
  11334. left:0px;
  11335. top:0px;
  11336. width:240px;
  11337. height:80px;
  11338. background:inherit;
  11339. background-color:rgba(242, 242, 242, 1);
  11340. border:none;
  11341. border-radius:0px;
  11342. -moz-box-shadow:none;
  11343. -webkit-box-shadow:none;
  11344. box-shadow:none;
  11345. }
  11346. #u31469 {
  11347. border-width:0px;
  11348. position:absolute;
  11349. left:699px;
  11350. top:956px;
  11351. width:240px;
  11352. height:80px;
  11353. display:flex;
  11354. }
  11355. #u31469 .text {
  11356. position:absolute;
  11357. align-self:center;
  11358. padding:2px 2px 2px 2px;
  11359. box-sizing:border-box;
  11360. width:100%;
  11361. }
  11362. #u31469_text {
  11363. border-width:0px;
  11364. word-wrap:break-word;
  11365. text-transform:none;
  11366. visibility:hidden;
  11367. }
  11368. #u31470_img {
  11369. border-width:0px;
  11370. position:absolute;
  11371. left:0px;
  11372. top:0px;
  11373. width:50px;
  11374. height:53px;
  11375. }
  11376. #u31470 {
  11377. border-width:0px;
  11378. position:absolute;
  11379. left:715px;
  11380. top:969px;
  11381. width:50px;
  11382. height:53px;
  11383. display:flex;
  11384. }
  11385. #u31470 .text {
  11386. position:absolute;
  11387. align-self:center;
  11388. padding:2px 2px 2px 2px;
  11389. box-sizing:border-box;
  11390. width:100%;
  11391. }
  11392. #u31470_text {
  11393. border-width:0px;
  11394. word-wrap:break-word;
  11395. text-transform:none;
  11396. visibility:hidden;
  11397. }
  11398. #u31471 {
  11399. border-width:0px;
  11400. position:absolute;
  11401. left:0px;
  11402. top:0px;
  11403. width:0px;
  11404. height:0px;
  11405. }
  11406. #u31472_div {
  11407. border-width:0px;
  11408. position:absolute;
  11409. left:0px;
  11410. top:0px;
  11411. width:109px;
  11412. height:25px;
  11413. background:inherit;
  11414. background-color:rgba(255, 255, 255, 0);
  11415. border:none;
  11416. border-left:0px;
  11417. border-top:0px;
  11418. border-right:0px;
  11419. border-radius:0px;
  11420. border-bottom-right-radius:0px;
  11421. border-bottom-left-radius:0px;
  11422. -moz-box-shadow:none;
  11423. -webkit-box-shadow:none;
  11424. box-shadow:none;
  11425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11426. font-weight:400;
  11427. font-style:normal;
  11428. font-size:18px;
  11429. }
  11430. #u31472 {
  11431. border-width:0px;
  11432. position:absolute;
  11433. left:780px;
  11434. top:972px;
  11435. width:109px;
  11436. height:25px;
  11437. display:flex;
  11438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11439. font-weight:400;
  11440. font-style:normal;
  11441. font-size:18px;
  11442. }
  11443. #u31472 .text {
  11444. position:absolute;
  11445. align-self:center;
  11446. padding:0px 0px 0px 0px;
  11447. box-sizing:border-box;
  11448. width:100%;
  11449. }
  11450. #u31472_text {
  11451. border-width:0px;
  11452. white-space:nowrap;
  11453. text-transform:none;
  11454. }
  11455. #u31473_div {
  11456. border-width:0px;
  11457. position:absolute;
  11458. left:0px;
  11459. top:0px;
  11460. width:193px;
  11461. height:17px;
  11462. background:inherit;
  11463. background-color:rgba(255, 255, 255, 0);
  11464. border:none;
  11465. border-left:0px;
  11466. border-top:0px;
  11467. border-right:0px;
  11468. border-radius:0px;
  11469. border-bottom-right-radius:0px;
  11470. border-bottom-left-radius:0px;
  11471. -moz-box-shadow:none;
  11472. -webkit-box-shadow:none;
  11473. box-shadow:none;
  11474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11475. font-weight:400;
  11476. font-style:normal;
  11477. font-size:12px;
  11478. color:#7F7F7F;
  11479. }
  11480. #u31473 {
  11481. border-width:0px;
  11482. position:absolute;
  11483. left:780px;
  11484. top:1002px;
  11485. width:193px;
  11486. height:17px;
  11487. display:flex;
  11488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11489. font-weight:400;
  11490. font-style:normal;
  11491. font-size:12px;
  11492. color:#7F7F7F;
  11493. }
  11494. #u31473 .text {
  11495. position:absolute;
  11496. align-self:center;
  11497. padding:0px 0px 0px 0px;
  11498. box-sizing:border-box;
  11499. width:100%;
  11500. }
  11501. #u31473_text {
  11502. border-width:0px;
  11503. white-space:nowrap;
  11504. text-transform:none;
  11505. }
  11506. #u31474 {
  11507. border-width:0px;
  11508. position:absolute;
  11509. left:0px;
  11510. top:0px;
  11511. width:0px;
  11512. height:0px;
  11513. }
  11514. #u31475_div {
  11515. border-width:0px;
  11516. position:absolute;
  11517. left:0px;
  11518. top:0px;
  11519. width:240px;
  11520. height:80px;
  11521. background:inherit;
  11522. background-color:rgba(242, 242, 242, 1);
  11523. border:none;
  11524. border-radius:0px;
  11525. -moz-box-shadow:none;
  11526. -webkit-box-shadow:none;
  11527. box-shadow:none;
  11528. }
  11529. #u31475 {
  11530. border-width:0px;
  11531. position:absolute;
  11532. left:966px;
  11533. top:956px;
  11534. width:240px;
  11535. height:80px;
  11536. display:flex;
  11537. }
  11538. #u31475 .text {
  11539. position:absolute;
  11540. align-self:center;
  11541. padding:2px 2px 2px 2px;
  11542. box-sizing:border-box;
  11543. width:100%;
  11544. }
  11545. #u31475_text {
  11546. border-width:0px;
  11547. word-wrap:break-word;
  11548. text-transform:none;
  11549. visibility:hidden;
  11550. }
  11551. #u31476_img {
  11552. border-width:0px;
  11553. position:absolute;
  11554. left:0px;
  11555. top:0px;
  11556. width:50px;
  11557. height:53px;
  11558. }
  11559. #u31476 {
  11560. border-width:0px;
  11561. position:absolute;
  11562. left:982px;
  11563. top:969px;
  11564. width:50px;
  11565. height:53px;
  11566. display:flex;
  11567. }
  11568. #u31476 .text {
  11569. position:absolute;
  11570. align-self:center;
  11571. padding:2px 2px 2px 2px;
  11572. box-sizing:border-box;
  11573. width:100%;
  11574. }
  11575. #u31476_text {
  11576. border-width:0px;
  11577. word-wrap:break-word;
  11578. text-transform:none;
  11579. visibility:hidden;
  11580. }
  11581. #u31477 {
  11582. border-width:0px;
  11583. position:absolute;
  11584. left:0px;
  11585. top:0px;
  11586. width:0px;
  11587. height:0px;
  11588. }
  11589. #u31478_div {
  11590. border-width:0px;
  11591. position:absolute;
  11592. left:0px;
  11593. top:0px;
  11594. width:109px;
  11595. height:25px;
  11596. background:inherit;
  11597. background-color:rgba(255, 255, 255, 0);
  11598. border:none;
  11599. border-left:0px;
  11600. border-top:0px;
  11601. border-right:0px;
  11602. border-radius:0px;
  11603. border-bottom-right-radius:0px;
  11604. border-bottom-left-radius:0px;
  11605. -moz-box-shadow:none;
  11606. -webkit-box-shadow:none;
  11607. box-shadow:none;
  11608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11609. font-weight:400;
  11610. font-style:normal;
  11611. font-size:18px;
  11612. }
  11613. #u31478 {
  11614. border-width:0px;
  11615. position:absolute;
  11616. left:1047px;
  11617. top:972px;
  11618. width:109px;
  11619. height:25px;
  11620. display:flex;
  11621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11622. font-weight:400;
  11623. font-style:normal;
  11624. font-size:18px;
  11625. }
  11626. #u31478 .text {
  11627. position:absolute;
  11628. align-self:center;
  11629. padding:0px 0px 0px 0px;
  11630. box-sizing:border-box;
  11631. width:100%;
  11632. }
  11633. #u31478_text {
  11634. border-width:0px;
  11635. white-space:nowrap;
  11636. text-transform:none;
  11637. }
  11638. #u31479_div {
  11639. border-width:0px;
  11640. position:absolute;
  11641. left:0px;
  11642. top:0px;
  11643. width:193px;
  11644. height:17px;
  11645. background:inherit;
  11646. background-color:rgba(255, 255, 255, 0);
  11647. border:none;
  11648. border-left:0px;
  11649. border-top:0px;
  11650. border-right:0px;
  11651. border-radius:0px;
  11652. border-bottom-right-radius:0px;
  11653. border-bottom-left-radius:0px;
  11654. -moz-box-shadow:none;
  11655. -webkit-box-shadow:none;
  11656. box-shadow:none;
  11657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11658. font-weight:400;
  11659. font-style:normal;
  11660. font-size:12px;
  11661. color:#7F7F7F;
  11662. }
  11663. #u31479 {
  11664. border-width:0px;
  11665. position:absolute;
  11666. left:1047px;
  11667. top:1002px;
  11668. width:193px;
  11669. height:17px;
  11670. display:flex;
  11671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11672. font-weight:400;
  11673. font-style:normal;
  11674. font-size:12px;
  11675. color:#7F7F7F;
  11676. }
  11677. #u31479 .text {
  11678. position:absolute;
  11679. align-self:center;
  11680. padding:0px 0px 0px 0px;
  11681. box-sizing:border-box;
  11682. width:100%;
  11683. }
  11684. #u31479_text {
  11685. border-width:0px;
  11686. white-space:nowrap;
  11687. text-transform:none;
  11688. }
  11689. #u31480 {
  11690. border-width:0px;
  11691. position:absolute;
  11692. left:0px;
  11693. top:0px;
  11694. width:0px;
  11695. height:0px;
  11696. }
  11697. #u31481_div {
  11698. border-width:0px;
  11699. position:absolute;
  11700. left:0px;
  11701. top:0px;
  11702. width:240px;
  11703. height:80px;
  11704. background:inherit;
  11705. background-color:rgba(242, 242, 242, 1);
  11706. border:none;
  11707. border-radius:0px;
  11708. -moz-box-shadow:none;
  11709. -webkit-box-shadow:none;
  11710. box-shadow:none;
  11711. }
  11712. #u31481 {
  11713. border-width:0px;
  11714. position:absolute;
  11715. left:1236px;
  11716. top:956px;
  11717. width:240px;
  11718. height:80px;
  11719. display:flex;
  11720. }
  11721. #u31481 .text {
  11722. position:absolute;
  11723. align-self:center;
  11724. padding:2px 2px 2px 2px;
  11725. box-sizing:border-box;
  11726. width:100%;
  11727. }
  11728. #u31481_text {
  11729. border-width:0px;
  11730. word-wrap:break-word;
  11731. text-transform:none;
  11732. visibility:hidden;
  11733. }
  11734. #u31482_img {
  11735. border-width:0px;
  11736. position:absolute;
  11737. left:0px;
  11738. top:0px;
  11739. width:50px;
  11740. height:53px;
  11741. }
  11742. #u31482 {
  11743. border-width:0px;
  11744. position:absolute;
  11745. left:1252px;
  11746. top:969px;
  11747. width:50px;
  11748. height:53px;
  11749. display:flex;
  11750. }
  11751. #u31482 .text {
  11752. position:absolute;
  11753. align-self:center;
  11754. padding:2px 2px 2px 2px;
  11755. box-sizing:border-box;
  11756. width:100%;
  11757. }
  11758. #u31482_text {
  11759. border-width:0px;
  11760. word-wrap:break-word;
  11761. text-transform:none;
  11762. visibility:hidden;
  11763. }
  11764. #u31483 {
  11765. border-width:0px;
  11766. position:absolute;
  11767. left:0px;
  11768. top:0px;
  11769. width:0px;
  11770. height:0px;
  11771. }
  11772. #u31484_div {
  11773. border-width:0px;
  11774. position:absolute;
  11775. left:0px;
  11776. top:0px;
  11777. width:109px;
  11778. height:25px;
  11779. background:inherit;
  11780. background-color:rgba(255, 255, 255, 0);
  11781. border:none;
  11782. border-left:0px;
  11783. border-top:0px;
  11784. border-right:0px;
  11785. border-radius:0px;
  11786. border-bottom-right-radius:0px;
  11787. border-bottom-left-radius:0px;
  11788. -moz-box-shadow:none;
  11789. -webkit-box-shadow:none;
  11790. box-shadow:none;
  11791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11792. font-weight:400;
  11793. font-style:normal;
  11794. font-size:18px;
  11795. }
  11796. #u31484 {
  11797. border-width:0px;
  11798. position:absolute;
  11799. left:1317px;
  11800. top:972px;
  11801. width:109px;
  11802. height:25px;
  11803. display:flex;
  11804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11805. font-weight:400;
  11806. font-style:normal;
  11807. font-size:18px;
  11808. }
  11809. #u31484 .text {
  11810. position:absolute;
  11811. align-self:center;
  11812. padding:0px 0px 0px 0px;
  11813. box-sizing:border-box;
  11814. width:100%;
  11815. }
  11816. #u31484_text {
  11817. border-width:0px;
  11818. white-space:nowrap;
  11819. text-transform:none;
  11820. }
  11821. #u31485_div {
  11822. border-width:0px;
  11823. position:absolute;
  11824. left:0px;
  11825. top:0px;
  11826. width:169px;
  11827. height:17px;
  11828. background:inherit;
  11829. background-color:rgba(255, 255, 255, 0);
  11830. border:none;
  11831. border-left:0px;
  11832. border-top:0px;
  11833. border-right:0px;
  11834. border-radius:0px;
  11835. border-bottom-right-radius:0px;
  11836. border-bottom-left-radius:0px;
  11837. -moz-box-shadow:none;
  11838. -webkit-box-shadow:none;
  11839. box-shadow:none;
  11840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11841. font-weight:400;
  11842. font-style:normal;
  11843. font-size:12px;
  11844. color:#7F7F7F;
  11845. }
  11846. #u31485 {
  11847. border-width:0px;
  11848. position:absolute;
  11849. left:1317px;
  11850. top:1002px;
  11851. width:169px;
  11852. height:17px;
  11853. display:flex;
  11854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11855. font-weight:400;
  11856. font-style:normal;
  11857. font-size:12px;
  11858. color:#7F7F7F;
  11859. }
  11860. #u31485 .text {
  11861. position:absolute;
  11862. align-self:center;
  11863. padding:0px 0px 0px 0px;
  11864. box-sizing:border-box;
  11865. width:100%;
  11866. }
  11867. #u31485_text {
  11868. border-width:0px;
  11869. white-space:nowrap;
  11870. text-transform:none;
  11871. }
  11872. #u31486 {
  11873. border-width:0px;
  11874. position:absolute;
  11875. left:0px;
  11876. top:0px;
  11877. width:0px;
  11878. height:0px;
  11879. }
  11880. #u31487_div {
  11881. border-width:0px;
  11882. position:absolute;
  11883. left:0px;
  11884. top:0px;
  11885. width:240px;
  11886. height:80px;
  11887. background:inherit;
  11888. background-color:rgba(242, 242, 242, 1);
  11889. border:none;
  11890. border-radius:0px;
  11891. -moz-box-shadow:none;
  11892. -webkit-box-shadow:none;
  11893. box-shadow:none;
  11894. }
  11895. #u31487 {
  11896. border-width:0px;
  11897. position:absolute;
  11898. left:154px;
  11899. top:556px;
  11900. width:240px;
  11901. height:80px;
  11902. display:flex;
  11903. }
  11904. #u31487 .text {
  11905. position:absolute;
  11906. align-self:center;
  11907. padding:2px 2px 2px 2px;
  11908. box-sizing:border-box;
  11909. width:100%;
  11910. }
  11911. #u31487_text {
  11912. border-width:0px;
  11913. word-wrap:break-word;
  11914. text-transform:none;
  11915. visibility:hidden;
  11916. }
  11917. #u31488_img {
  11918. border-width:0px;
  11919. position:absolute;
  11920. left:0px;
  11921. top:0px;
  11922. width:50px;
  11923. height:53px;
  11924. }
  11925. #u31488 {
  11926. border-width:0px;
  11927. position:absolute;
  11928. left:170px;
  11929. top:569px;
  11930. width:50px;
  11931. height:53px;
  11932. display:flex;
  11933. }
  11934. #u31488 .text {
  11935. position:absolute;
  11936. align-self:center;
  11937. padding:2px 2px 2px 2px;
  11938. box-sizing:border-box;
  11939. width:100%;
  11940. }
  11941. #u31488_text {
  11942. border-width:0px;
  11943. word-wrap:break-word;
  11944. text-transform:none;
  11945. visibility:hidden;
  11946. }
  11947. #u31489 {
  11948. border-width:0px;
  11949. position:absolute;
  11950. left:0px;
  11951. top:0px;
  11952. width:0px;
  11953. height:0px;
  11954. }
  11955. #u31490_div {
  11956. border-width:0px;
  11957. position:absolute;
  11958. left:0px;
  11959. top:0px;
  11960. width:73px;
  11961. height:25px;
  11962. background:inherit;
  11963. background-color:rgba(255, 255, 255, 0);
  11964. border:none;
  11965. border-left:0px;
  11966. border-top:0px;
  11967. border-right:0px;
  11968. border-radius:0px;
  11969. border-bottom-right-radius:0px;
  11970. border-bottom-left-radius:0px;
  11971. -moz-box-shadow:none;
  11972. -webkit-box-shadow:none;
  11973. box-shadow:none;
  11974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11975. font-weight:400;
  11976. font-style:normal;
  11977. font-size:18px;
  11978. }
  11979. #u31490 {
  11980. border-width:0px;
  11981. position:absolute;
  11982. left:235px;
  11983. top:572px;
  11984. width:73px;
  11985. height:25px;
  11986. display:flex;
  11987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11988. font-weight:400;
  11989. font-style:normal;
  11990. font-size:18px;
  11991. }
  11992. #u31490 .text {
  11993. position:absolute;
  11994. align-self:center;
  11995. padding:0px 0px 0px 0px;
  11996. box-sizing:border-box;
  11997. width:100%;
  11998. }
  11999. #u31490_text {
  12000. border-width:0px;
  12001. white-space:nowrap;
  12002. text-transform:none;
  12003. }
  12004. #u31491_div {
  12005. border-width:0px;
  12006. position:absolute;
  12007. left:0px;
  12008. top:0px;
  12009. width:205px;
  12010. height:17px;
  12011. background:inherit;
  12012. background-color:rgba(255, 255, 255, 0);
  12013. border:none;
  12014. border-left:0px;
  12015. border-top:0px;
  12016. border-right:0px;
  12017. border-radius:0px;
  12018. border-bottom-right-radius:0px;
  12019. border-bottom-left-radius:0px;
  12020. -moz-box-shadow:none;
  12021. -webkit-box-shadow:none;
  12022. box-shadow:none;
  12023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12024. font-weight:400;
  12025. font-style:normal;
  12026. font-size:12px;
  12027. color:#7F7F7F;
  12028. }
  12029. #u31491 {
  12030. border-width:0px;
  12031. position:absolute;
  12032. left:235px;
  12033. top:602px;
  12034. width:205px;
  12035. height:17px;
  12036. display:flex;
  12037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12038. font-weight:400;
  12039. font-style:normal;
  12040. font-size:12px;
  12041. color:#7F7F7F;
  12042. }
  12043. #u31491 .text {
  12044. position:absolute;
  12045. align-self:center;
  12046. padding:0px 0px 0px 0px;
  12047. box-sizing:border-box;
  12048. width:100%;
  12049. }
  12050. #u31491_text {
  12051. border-width:0px;
  12052. white-space:nowrap;
  12053. text-transform:none;
  12054. }
  12055. #u31492 {
  12056. border-width:0px;
  12057. position:absolute;
  12058. left:0px;
  12059. top:0px;
  12060. width:0px;
  12061. height:0px;
  12062. }
  12063. #u31493_div {
  12064. border-width:0px;
  12065. position:absolute;
  12066. left:0px;
  12067. top:0px;
  12068. width:240px;
  12069. height:80px;
  12070. background:inherit;
  12071. background-color:rgba(242, 242, 242, 1);
  12072. border:none;
  12073. border-radius:0px;
  12074. -moz-box-shadow:none;
  12075. -webkit-box-shadow:none;
  12076. box-shadow:none;
  12077. }
  12078. #u31493 {
  12079. border-width:0px;
  12080. position:absolute;
  12081. left:1236px;
  12082. top:456px;
  12083. width:240px;
  12084. height:80px;
  12085. display:flex;
  12086. }
  12087. #u31493 .text {
  12088. position:absolute;
  12089. align-self:center;
  12090. padding:2px 2px 2px 2px;
  12091. box-sizing:border-box;
  12092. width:100%;
  12093. }
  12094. #u31493_text {
  12095. border-width:0px;
  12096. word-wrap:break-word;
  12097. text-transform:none;
  12098. visibility:hidden;
  12099. }
  12100. #u31494_img {
  12101. border-width:0px;
  12102. position:absolute;
  12103. left:0px;
  12104. top:0px;
  12105. width:50px;
  12106. height:53px;
  12107. }
  12108. #u31494 {
  12109. border-width:0px;
  12110. position:absolute;
  12111. left:1252px;
  12112. top:469px;
  12113. width:50px;
  12114. height:53px;
  12115. display:flex;
  12116. }
  12117. #u31494 .text {
  12118. position:absolute;
  12119. align-self:center;
  12120. padding:2px 2px 2px 2px;
  12121. box-sizing:border-box;
  12122. width:100%;
  12123. }
  12124. #u31494_text {
  12125. border-width:0px;
  12126. word-wrap:break-word;
  12127. text-transform:none;
  12128. visibility:hidden;
  12129. }
  12130. #u31495 {
  12131. border-width:0px;
  12132. position:absolute;
  12133. left:0px;
  12134. top:0px;
  12135. width:0px;
  12136. height:0px;
  12137. }
  12138. #u31496_div {
  12139. border-width:0px;
  12140. position:absolute;
  12141. left:0px;
  12142. top:0px;
  12143. width:73px;
  12144. height:25px;
  12145. background:inherit;
  12146. background-color:rgba(255, 255, 255, 0);
  12147. border:none;
  12148. border-left:0px;
  12149. border-top:0px;
  12150. border-right:0px;
  12151. border-radius:0px;
  12152. border-bottom-right-radius:0px;
  12153. border-bottom-left-radius:0px;
  12154. -moz-box-shadow:none;
  12155. -webkit-box-shadow:none;
  12156. box-shadow:none;
  12157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12158. font-weight:400;
  12159. font-style:normal;
  12160. font-size:18px;
  12161. }
  12162. #u31496 {
  12163. border-width:0px;
  12164. position:absolute;
  12165. left:1317px;
  12166. top:472px;
  12167. width:73px;
  12168. height:25px;
  12169. display:flex;
  12170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12171. font-weight:400;
  12172. font-style:normal;
  12173. font-size:18px;
  12174. }
  12175. #u31496 .text {
  12176. position:absolute;
  12177. align-self:center;
  12178. padding:0px 0px 0px 0px;
  12179. box-sizing:border-box;
  12180. width:100%;
  12181. }
  12182. #u31496_text {
  12183. border-width:0px;
  12184. white-space:nowrap;
  12185. text-transform:none;
  12186. }
  12187. #u31497_div {
  12188. border-width:0px;
  12189. position:absolute;
  12190. left:0px;
  12191. top:0px;
  12192. width:121px;
  12193. height:17px;
  12194. background:inherit;
  12195. background-color:rgba(255, 255, 255, 0);
  12196. border:none;
  12197. border-left:0px;
  12198. border-top:0px;
  12199. border-right:0px;
  12200. border-radius:0px;
  12201. border-bottom-right-radius:0px;
  12202. border-bottom-left-radius:0px;
  12203. -moz-box-shadow:none;
  12204. -webkit-box-shadow:none;
  12205. box-shadow:none;
  12206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12207. font-weight:400;
  12208. font-style:normal;
  12209. font-size:12px;
  12210. color:#7F7F7F;
  12211. }
  12212. #u31497 {
  12213. border-width:0px;
  12214. position:absolute;
  12215. left:1317px;
  12216. top:502px;
  12217. width:121px;
  12218. height:17px;
  12219. display:flex;
  12220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12221. font-weight:400;
  12222. font-style:normal;
  12223. font-size:12px;
  12224. color:#7F7F7F;
  12225. }
  12226. #u31497 .text {
  12227. position:absolute;
  12228. align-self:center;
  12229. padding:0px 0px 0px 0px;
  12230. box-sizing:border-box;
  12231. width:100%;
  12232. }
  12233. #u31497_text {
  12234. border-width:0px;
  12235. white-space:nowrap;
  12236. text-transform:none;
  12237. }
  12238. #u31498 {
  12239. border-width:0px;
  12240. position:absolute;
  12241. left:0px;
  12242. top:0px;
  12243. width:0px;
  12244. height:0px;
  12245. }
  12246. #u31499_div {
  12247. border-width:0px;
  12248. position:absolute;
  12249. left:0px;
  12250. top:0px;
  12251. width:240px;
  12252. height:80px;
  12253. background:inherit;
  12254. background-color:rgba(242, 242, 242, 1);
  12255. border:none;
  12256. border-radius:0px;
  12257. -moz-box-shadow:none;
  12258. -webkit-box-shadow:none;
  12259. box-shadow:none;
  12260. }
  12261. #u31499 {
  12262. border-width:0px;
  12263. position:absolute;
  12264. left:424px;
  12265. top:556px;
  12266. width:240px;
  12267. height:80px;
  12268. display:flex;
  12269. }
  12270. #u31499 .text {
  12271. position:absolute;
  12272. align-self:center;
  12273. padding:2px 2px 2px 2px;
  12274. box-sizing:border-box;
  12275. width:100%;
  12276. }
  12277. #u31499_text {
  12278. border-width:0px;
  12279. word-wrap:break-word;
  12280. text-transform:none;
  12281. visibility:hidden;
  12282. }
  12283. #u31500_img {
  12284. border-width:0px;
  12285. position:absolute;
  12286. left:0px;
  12287. top:0px;
  12288. width:50px;
  12289. height:53px;
  12290. }
  12291. #u31500 {
  12292. border-width:0px;
  12293. position:absolute;
  12294. left:440px;
  12295. top:569px;
  12296. width:50px;
  12297. height:53px;
  12298. display:flex;
  12299. }
  12300. #u31500 .text {
  12301. position:absolute;
  12302. align-self:center;
  12303. padding:2px 2px 2px 2px;
  12304. box-sizing:border-box;
  12305. width:100%;
  12306. }
  12307. #u31500_text {
  12308. border-width:0px;
  12309. word-wrap:break-word;
  12310. text-transform:none;
  12311. visibility:hidden;
  12312. }
  12313. #u31501 {
  12314. border-width:0px;
  12315. position:absolute;
  12316. left:0px;
  12317. top:0px;
  12318. width:0px;
  12319. height:0px;
  12320. }
  12321. #u31502_div {
  12322. border-width:0px;
  12323. position:absolute;
  12324. left:0px;
  12325. top:0px;
  12326. width:73px;
  12327. height:25px;
  12328. background:inherit;
  12329. background-color:rgba(255, 255, 255, 0);
  12330. border:none;
  12331. border-left:0px;
  12332. border-top:0px;
  12333. border-right:0px;
  12334. border-radius:0px;
  12335. border-bottom-right-radius:0px;
  12336. border-bottom-left-radius:0px;
  12337. -moz-box-shadow:none;
  12338. -webkit-box-shadow:none;
  12339. box-shadow:none;
  12340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12341. font-weight:400;
  12342. font-style:normal;
  12343. font-size:18px;
  12344. }
  12345. #u31502 {
  12346. border-width:0px;
  12347. position:absolute;
  12348. left:505px;
  12349. top:572px;
  12350. width:73px;
  12351. height:25px;
  12352. display:flex;
  12353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12354. font-weight:400;
  12355. font-style:normal;
  12356. font-size:18px;
  12357. }
  12358. #u31502 .text {
  12359. position:absolute;
  12360. align-self:center;
  12361. padding:0px 0px 0px 0px;
  12362. box-sizing:border-box;
  12363. width:100%;
  12364. }
  12365. #u31502_text {
  12366. border-width:0px;
  12367. white-space:nowrap;
  12368. text-transform:none;
  12369. }
  12370. #u31503_div {
  12371. border-width:0px;
  12372. position:absolute;
  12373. left:0px;
  12374. top:0px;
  12375. width:73px;
  12376. height:17px;
  12377. background:inherit;
  12378. background-color:rgba(255, 255, 255, 0);
  12379. border:none;
  12380. border-left:0px;
  12381. border-top:0px;
  12382. border-right:0px;
  12383. border-radius:0px;
  12384. border-bottom-right-radius:0px;
  12385. border-bottom-left-radius:0px;
  12386. -moz-box-shadow:none;
  12387. -webkit-box-shadow:none;
  12388. box-shadow:none;
  12389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12390. font-weight:400;
  12391. font-style:normal;
  12392. font-size:12px;
  12393. color:#7F7F7F;
  12394. }
  12395. #u31503 {
  12396. border-width:0px;
  12397. position:absolute;
  12398. left:505px;
  12399. top:602px;
  12400. width:73px;
  12401. height:17px;
  12402. display:flex;
  12403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12404. font-weight:400;
  12405. font-style:normal;
  12406. font-size:12px;
  12407. color:#7F7F7F;
  12408. }
  12409. #u31503 .text {
  12410. position:absolute;
  12411. align-self:center;
  12412. padding:0px 0px 0px 0px;
  12413. box-sizing:border-box;
  12414. width:100%;
  12415. }
  12416. #u31503_text {
  12417. border-width:0px;
  12418. white-space:nowrap;
  12419. text-transform:none;
  12420. }
  12421. #u31504 {
  12422. border-width:0px;
  12423. position:absolute;
  12424. left:0px;
  12425. top:0px;
  12426. width:0px;
  12427. height:0px;
  12428. }
  12429. #u31505_div {
  12430. border-width:0px;
  12431. position:absolute;
  12432. left:0px;
  12433. top:0px;
  12434. width:240px;
  12435. height:80px;
  12436. background:inherit;
  12437. background-color:rgba(242, 242, 242, 1);
  12438. border:none;
  12439. border-radius:0px;
  12440. -moz-box-shadow:none;
  12441. -webkit-box-shadow:none;
  12442. box-shadow:none;
  12443. }
  12444. #u31505 {
  12445. border-width:0px;
  12446. position:absolute;
  12447. left:695px;
  12448. top:556px;
  12449. width:240px;
  12450. height:80px;
  12451. display:flex;
  12452. }
  12453. #u31505 .text {
  12454. position:absolute;
  12455. align-self:center;
  12456. padding:2px 2px 2px 2px;
  12457. box-sizing:border-box;
  12458. width:100%;
  12459. }
  12460. #u31505_text {
  12461. border-width:0px;
  12462. word-wrap:break-word;
  12463. text-transform:none;
  12464. visibility:hidden;
  12465. }
  12466. #u31506_img {
  12467. border-width:0px;
  12468. position:absolute;
  12469. left:0px;
  12470. top:0px;
  12471. width:50px;
  12472. height:53px;
  12473. }
  12474. #u31506 {
  12475. border-width:0px;
  12476. position:absolute;
  12477. left:711px;
  12478. top:569px;
  12479. width:50px;
  12480. height:53px;
  12481. display:flex;
  12482. }
  12483. #u31506 .text {
  12484. position:absolute;
  12485. align-self:center;
  12486. padding:2px 2px 2px 2px;
  12487. box-sizing:border-box;
  12488. width:100%;
  12489. }
  12490. #u31506_text {
  12491. border-width:0px;
  12492. word-wrap:break-word;
  12493. text-transform:none;
  12494. visibility:hidden;
  12495. }
  12496. #u31507 {
  12497. border-width:0px;
  12498. position:absolute;
  12499. left:0px;
  12500. top:0px;
  12501. width:0px;
  12502. height:0px;
  12503. }
  12504. #u31508_div {
  12505. border-width:0px;
  12506. position:absolute;
  12507. left:0px;
  12508. top:0px;
  12509. width:73px;
  12510. height:25px;
  12511. background:inherit;
  12512. background-color:rgba(255, 255, 255, 0);
  12513. border:none;
  12514. border-left:0px;
  12515. border-top:0px;
  12516. border-right:0px;
  12517. border-radius:0px;
  12518. border-bottom-right-radius:0px;
  12519. border-bottom-left-radius:0px;
  12520. -moz-box-shadow:none;
  12521. -webkit-box-shadow:none;
  12522. box-shadow:none;
  12523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12524. font-weight:400;
  12525. font-style:normal;
  12526. font-size:18px;
  12527. }
  12528. #u31508 {
  12529. border-width:0px;
  12530. position:absolute;
  12531. left:776px;
  12532. top:572px;
  12533. width:73px;
  12534. height:25px;
  12535. display:flex;
  12536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12537. font-weight:400;
  12538. font-style:normal;
  12539. font-size:18px;
  12540. }
  12541. #u31508 .text {
  12542. position:absolute;
  12543. align-self:center;
  12544. padding:0px 0px 0px 0px;
  12545. box-sizing:border-box;
  12546. width:100%;
  12547. }
  12548. #u31508_text {
  12549. border-width:0px;
  12550. white-space:nowrap;
  12551. text-transform:none;
  12552. }
  12553. #u31509_div {
  12554. border-width:0px;
  12555. position:absolute;
  12556. left:0px;
  12557. top:0px;
  12558. width:193px;
  12559. height:17px;
  12560. background:inherit;
  12561. background-color:rgba(255, 255, 255, 0);
  12562. border:none;
  12563. border-left:0px;
  12564. border-top:0px;
  12565. border-right:0px;
  12566. border-radius:0px;
  12567. border-bottom-right-radius:0px;
  12568. border-bottom-left-radius:0px;
  12569. -moz-box-shadow:none;
  12570. -webkit-box-shadow:none;
  12571. box-shadow:none;
  12572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12573. font-weight:400;
  12574. font-style:normal;
  12575. font-size:12px;
  12576. color:#7F7F7F;
  12577. }
  12578. #u31509 {
  12579. border-width:0px;
  12580. position:absolute;
  12581. left:776px;
  12582. top:602px;
  12583. width:193px;
  12584. height:17px;
  12585. display:flex;
  12586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12587. font-weight:400;
  12588. font-style:normal;
  12589. font-size:12px;
  12590. color:#7F7F7F;
  12591. }
  12592. #u31509 .text {
  12593. position:absolute;
  12594. align-self:center;
  12595. padding:0px 0px 0px 0px;
  12596. box-sizing:border-box;
  12597. width:100%;
  12598. }
  12599. #u31509_text {
  12600. border-width:0px;
  12601. white-space:nowrap;
  12602. text-transform:none;
  12603. }
  12604. #u31510 {
  12605. border-width:0px;
  12606. position:absolute;
  12607. left:0px;
  12608. top:0px;
  12609. width:0px;
  12610. height:0px;
  12611. }
  12612. #u31511_div {
  12613. border-width:0px;
  12614. position:absolute;
  12615. left:0px;
  12616. top:0px;
  12617. width:240px;
  12618. height:80px;
  12619. background:inherit;
  12620. background-color:rgba(242, 242, 242, 1);
  12621. border:none;
  12622. border-radius:0px;
  12623. -moz-box-shadow:none;
  12624. -webkit-box-shadow:none;
  12625. box-shadow:none;
  12626. }
  12627. #u31511 {
  12628. border-width:0px;
  12629. position:absolute;
  12630. left:965px;
  12631. top:556px;
  12632. width:240px;
  12633. height:80px;
  12634. display:flex;
  12635. }
  12636. #u31511 .text {
  12637. position:absolute;
  12638. align-self:center;
  12639. padding:2px 2px 2px 2px;
  12640. box-sizing:border-box;
  12641. width:100%;
  12642. }
  12643. #u31511_text {
  12644. border-width:0px;
  12645. word-wrap:break-word;
  12646. text-transform:none;
  12647. visibility:hidden;
  12648. }
  12649. #u31512_img {
  12650. border-width:0px;
  12651. position:absolute;
  12652. left:0px;
  12653. top:0px;
  12654. width:50px;
  12655. height:53px;
  12656. }
  12657. #u31512 {
  12658. border-width:0px;
  12659. position:absolute;
  12660. left:981px;
  12661. top:569px;
  12662. width:50px;
  12663. height:53px;
  12664. display:flex;
  12665. }
  12666. #u31512 .text {
  12667. position:absolute;
  12668. align-self:center;
  12669. padding:2px 2px 2px 2px;
  12670. box-sizing:border-box;
  12671. width:100%;
  12672. }
  12673. #u31512_text {
  12674. border-width:0px;
  12675. word-wrap:break-word;
  12676. text-transform:none;
  12677. visibility:hidden;
  12678. }
  12679. #u31513 {
  12680. border-width:0px;
  12681. position:absolute;
  12682. left:0px;
  12683. top:0px;
  12684. width:0px;
  12685. height:0px;
  12686. }
  12687. #u31514_div {
  12688. border-width:0px;
  12689. position:absolute;
  12690. left:0px;
  12691. top:0px;
  12692. width:73px;
  12693. height:25px;
  12694. background:inherit;
  12695. background-color:rgba(255, 255, 255, 0);
  12696. border:none;
  12697. border-left:0px;
  12698. border-top:0px;
  12699. border-right:0px;
  12700. border-radius:0px;
  12701. border-bottom-right-radius:0px;
  12702. border-bottom-left-radius:0px;
  12703. -moz-box-shadow:none;
  12704. -webkit-box-shadow:none;
  12705. box-shadow:none;
  12706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12707. font-weight:400;
  12708. font-style:normal;
  12709. font-size:18px;
  12710. }
  12711. #u31514 {
  12712. border-width:0px;
  12713. position:absolute;
  12714. left:1046px;
  12715. top:572px;
  12716. width:73px;
  12717. height:25px;
  12718. display:flex;
  12719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12720. font-weight:400;
  12721. font-style:normal;
  12722. font-size:18px;
  12723. }
  12724. #u31514 .text {
  12725. position:absolute;
  12726. align-self:center;
  12727. padding:0px 0px 0px 0px;
  12728. box-sizing:border-box;
  12729. width:100%;
  12730. }
  12731. #u31514_text {
  12732. border-width:0px;
  12733. white-space:nowrap;
  12734. text-transform:none;
  12735. }
  12736. #u31515_div {
  12737. border-width:0px;
  12738. position:absolute;
  12739. left:0px;
  12740. top:0px;
  12741. width:181px;
  12742. height:17px;
  12743. background:inherit;
  12744. background-color:rgba(255, 255, 255, 0);
  12745. border:none;
  12746. border-left:0px;
  12747. border-top:0px;
  12748. border-right:0px;
  12749. border-radius:0px;
  12750. border-bottom-right-radius:0px;
  12751. border-bottom-left-radius:0px;
  12752. -moz-box-shadow:none;
  12753. -webkit-box-shadow:none;
  12754. box-shadow:none;
  12755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12756. font-weight:400;
  12757. font-style:normal;
  12758. font-size:12px;
  12759. color:#7F7F7F;
  12760. }
  12761. #u31515 {
  12762. border-width:0px;
  12763. position:absolute;
  12764. left:1046px;
  12765. top:602px;
  12766. width:181px;
  12767. height:17px;
  12768. display:flex;
  12769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12770. font-weight:400;
  12771. font-style:normal;
  12772. font-size:12px;
  12773. color:#7F7F7F;
  12774. }
  12775. #u31515 .text {
  12776. position:absolute;
  12777. align-self:center;
  12778. padding:0px 0px 0px 0px;
  12779. box-sizing:border-box;
  12780. width:100%;
  12781. }
  12782. #u31515_text {
  12783. border-width:0px;
  12784. white-space:nowrap;
  12785. text-transform:none;
  12786. }
  12787. #u31516 {
  12788. border-width:0px;
  12789. position:absolute;
  12790. left:0px;
  12791. top:0px;
  12792. width:0px;
  12793. height:0px;
  12794. }
  12795. #u31517_div {
  12796. border-width:0px;
  12797. position:absolute;
  12798. left:0px;
  12799. top:0px;
  12800. width:240px;
  12801. height:80px;
  12802. background:inherit;
  12803. background-color:rgba(242, 242, 242, 1);
  12804. border:none;
  12805. border-radius:0px;
  12806. -moz-box-shadow:none;
  12807. -webkit-box-shadow:none;
  12808. box-shadow:none;
  12809. }
  12810. #u31517 {
  12811. border-width:0px;
  12812. position:absolute;
  12813. left:1236px;
  12814. top:556px;
  12815. width:240px;
  12816. height:80px;
  12817. display:flex;
  12818. }
  12819. #u31517 .text {
  12820. position:absolute;
  12821. align-self:center;
  12822. padding:2px 2px 2px 2px;
  12823. box-sizing:border-box;
  12824. width:100%;
  12825. }
  12826. #u31517_text {
  12827. border-width:0px;
  12828. word-wrap:break-word;
  12829. text-transform:none;
  12830. visibility:hidden;
  12831. }
  12832. #u31518_img {
  12833. border-width:0px;
  12834. position:absolute;
  12835. left:0px;
  12836. top:0px;
  12837. width:50px;
  12838. height:53px;
  12839. }
  12840. #u31518 {
  12841. border-width:0px;
  12842. position:absolute;
  12843. left:1252px;
  12844. top:569px;
  12845. width:50px;
  12846. height:53px;
  12847. display:flex;
  12848. }
  12849. #u31518 .text {
  12850. position:absolute;
  12851. align-self:center;
  12852. padding:2px 2px 2px 2px;
  12853. box-sizing:border-box;
  12854. width:100%;
  12855. }
  12856. #u31518_text {
  12857. border-width:0px;
  12858. word-wrap:break-word;
  12859. text-transform:none;
  12860. visibility:hidden;
  12861. }
  12862. #u31519 {
  12863. border-width:0px;
  12864. position:absolute;
  12865. left:0px;
  12866. top:0px;
  12867. width:0px;
  12868. height:0px;
  12869. }
  12870. #u31520_div {
  12871. border-width:0px;
  12872. position:absolute;
  12873. left:0px;
  12874. top:0px;
  12875. width:73px;
  12876. height:25px;
  12877. background:inherit;
  12878. background-color:rgba(255, 255, 255, 0);
  12879. border:none;
  12880. border-left:0px;
  12881. border-top:0px;
  12882. border-right:0px;
  12883. border-radius:0px;
  12884. border-bottom-right-radius:0px;
  12885. border-bottom-left-radius:0px;
  12886. -moz-box-shadow:none;
  12887. -webkit-box-shadow:none;
  12888. box-shadow:none;
  12889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12890. font-weight:400;
  12891. font-style:normal;
  12892. font-size:18px;
  12893. }
  12894. #u31520 {
  12895. border-width:0px;
  12896. position:absolute;
  12897. left:1317px;
  12898. top:572px;
  12899. width:73px;
  12900. height:25px;
  12901. display:flex;
  12902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12903. font-weight:400;
  12904. font-style:normal;
  12905. font-size:18px;
  12906. }
  12907. #u31520 .text {
  12908. position:absolute;
  12909. align-self:center;
  12910. padding:0px 0px 0px 0px;
  12911. box-sizing:border-box;
  12912. width:100%;
  12913. }
  12914. #u31520_text {
  12915. border-width:0px;
  12916. white-space:nowrap;
  12917. text-transform:none;
  12918. }
  12919. #u31521_div {
  12920. border-width:0px;
  12921. position:absolute;
  12922. left:0px;
  12923. top:0px;
  12924. width:181px;
  12925. height:17px;
  12926. background:inherit;
  12927. background-color:rgba(255, 255, 255, 0);
  12928. border:none;
  12929. border-left:0px;
  12930. border-top:0px;
  12931. border-right:0px;
  12932. border-radius:0px;
  12933. border-bottom-right-radius:0px;
  12934. border-bottom-left-radius:0px;
  12935. -moz-box-shadow:none;
  12936. -webkit-box-shadow:none;
  12937. box-shadow:none;
  12938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12939. font-weight:400;
  12940. font-style:normal;
  12941. font-size:12px;
  12942. color:#7F7F7F;
  12943. }
  12944. #u31521 {
  12945. border-width:0px;
  12946. position:absolute;
  12947. left:1317px;
  12948. top:602px;
  12949. width:181px;
  12950. height:17px;
  12951. display:flex;
  12952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12953. font-weight:400;
  12954. font-style:normal;
  12955. font-size:12px;
  12956. color:#7F7F7F;
  12957. }
  12958. #u31521 .text {
  12959. position:absolute;
  12960. align-self:center;
  12961. padding:0px 0px 0px 0px;
  12962. box-sizing:border-box;
  12963. width:100%;
  12964. }
  12965. #u31521_text {
  12966. border-width:0px;
  12967. white-space:nowrap;
  12968. text-transform:none;
  12969. }
  12970. #u31522 {
  12971. border-width:0px;
  12972. position:absolute;
  12973. left:0px;
  12974. top:0px;
  12975. width:0px;
  12976. height:0px;
  12977. }
  12978. #u31523_div {
  12979. border-width:0px;
  12980. position:absolute;
  12981. left:0px;
  12982. top:0px;
  12983. width:240px;
  12984. height:80px;
  12985. background:inherit;
  12986. background-color:rgba(242, 242, 242, 1);
  12987. border:none;
  12988. border-radius:0px;
  12989. -moz-box-shadow:none;
  12990. -webkit-box-shadow:none;
  12991. box-shadow:none;
  12992. }
  12993. #u31523 {
  12994. border-width:0px;
  12995. position:absolute;
  12996. left:969px;
  12997. top:1046px;
  12998. width:240px;
  12999. height:80px;
  13000. display:flex;
  13001. }
  13002. #u31523 .text {
  13003. position:absolute;
  13004. align-self:center;
  13005. padding:2px 2px 2px 2px;
  13006. box-sizing:border-box;
  13007. width:100%;
  13008. }
  13009. #u31523_text {
  13010. border-width:0px;
  13011. word-wrap:break-word;
  13012. text-transform:none;
  13013. visibility:hidden;
  13014. }
  13015. #u31524_img {
  13016. border-width:0px;
  13017. position:absolute;
  13018. left:0px;
  13019. top:0px;
  13020. width:50px;
  13021. height:53px;
  13022. }
  13023. #u31524 {
  13024. border-width:0px;
  13025. position:absolute;
  13026. left:985px;
  13027. top:1059px;
  13028. width:50px;
  13029. height:53px;
  13030. display:flex;
  13031. }
  13032. #u31524 .text {
  13033. position:absolute;
  13034. align-self:center;
  13035. padding:2px 2px 2px 2px;
  13036. box-sizing:border-box;
  13037. width:100%;
  13038. }
  13039. #u31524_text {
  13040. border-width:0px;
  13041. word-wrap:break-word;
  13042. text-transform:none;
  13043. visibility:hidden;
  13044. }
  13045. #u31525 {
  13046. border-width:0px;
  13047. position:absolute;
  13048. left:0px;
  13049. top:0px;
  13050. width:0px;
  13051. height:0px;
  13052. }
  13053. #u31526_div {
  13054. border-width:0px;
  13055. position:absolute;
  13056. left:0px;
  13057. top:0px;
  13058. width:73px;
  13059. height:25px;
  13060. background:inherit;
  13061. background-color:rgba(255, 255, 255, 0);
  13062. border:none;
  13063. border-left:0px;
  13064. border-top:0px;
  13065. border-right:0px;
  13066. border-radius:0px;
  13067. border-bottom-right-radius:0px;
  13068. border-bottom-left-radius:0px;
  13069. -moz-box-shadow:none;
  13070. -webkit-box-shadow:none;
  13071. box-shadow:none;
  13072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13073. font-weight:400;
  13074. font-style:normal;
  13075. font-size:18px;
  13076. }
  13077. #u31526 {
  13078. border-width:0px;
  13079. position:absolute;
  13080. left:1050px;
  13081. top:1062px;
  13082. width:73px;
  13083. height:25px;
  13084. display:flex;
  13085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13086. font-weight:400;
  13087. font-style:normal;
  13088. font-size:18px;
  13089. }
  13090. #u31526 .text {
  13091. position:absolute;
  13092. align-self:center;
  13093. padding:0px 0px 0px 0px;
  13094. box-sizing:border-box;
  13095. width:100%;
  13096. }
  13097. #u31526_text {
  13098. border-width:0px;
  13099. white-space:nowrap;
  13100. text-transform:none;
  13101. }
  13102. #u31527_div {
  13103. border-width:0px;
  13104. position:absolute;
  13105. left:0px;
  13106. top:0px;
  13107. width:109px;
  13108. height:17px;
  13109. background:inherit;
  13110. background-color:rgba(255, 255, 255, 0);
  13111. border:none;
  13112. border-left:0px;
  13113. border-top:0px;
  13114. border-right:0px;
  13115. border-radius:0px;
  13116. border-bottom-right-radius:0px;
  13117. border-bottom-left-radius:0px;
  13118. -moz-box-shadow:none;
  13119. -webkit-box-shadow:none;
  13120. box-shadow:none;
  13121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13122. font-weight:400;
  13123. font-style:normal;
  13124. font-size:12px;
  13125. color:#7F7F7F;
  13126. }
  13127. #u31527 {
  13128. border-width:0px;
  13129. position:absolute;
  13130. left:1050px;
  13131. top:1092px;
  13132. width:109px;
  13133. height:17px;
  13134. display:flex;
  13135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13136. font-weight:400;
  13137. font-style:normal;
  13138. font-size:12px;
  13139. color:#7F7F7F;
  13140. }
  13141. #u31527 .text {
  13142. position:absolute;
  13143. align-self:center;
  13144. padding:0px 0px 0px 0px;
  13145. box-sizing:border-box;
  13146. width:100%;
  13147. }
  13148. #u31527_text {
  13149. border-width:0px;
  13150. white-space:nowrap;
  13151. text-transform:none;
  13152. }
  13153. #u31528 {
  13154. border-width:0px;
  13155. position:absolute;
  13156. left:0px;
  13157. top:0px;
  13158. width:0px;
  13159. height:0px;
  13160. }
  13161. #u31529_div {
  13162. border-width:0px;
  13163. position:absolute;
  13164. left:0px;
  13165. top:0px;
  13166. width:240px;
  13167. height:80px;
  13168. background:inherit;
  13169. background-color:rgba(242, 242, 242, 1);
  13170. border:none;
  13171. border-radius:0px;
  13172. -moz-box-shadow:none;
  13173. -webkit-box-shadow:none;
  13174. box-shadow:none;
  13175. }
  13176. #u31529 {
  13177. border-width:0px;
  13178. position:absolute;
  13179. left:1236px;
  13180. top:1046px;
  13181. width:240px;
  13182. height:80px;
  13183. display:flex;
  13184. }
  13185. #u31529 .text {
  13186. position:absolute;
  13187. align-self:center;
  13188. padding:2px 2px 2px 2px;
  13189. box-sizing:border-box;
  13190. width:100%;
  13191. }
  13192. #u31529_text {
  13193. border-width:0px;
  13194. word-wrap:break-word;
  13195. text-transform:none;
  13196. visibility:hidden;
  13197. }
  13198. #u31530_img {
  13199. border-width:0px;
  13200. position:absolute;
  13201. left:0px;
  13202. top:0px;
  13203. width:50px;
  13204. height:53px;
  13205. }
  13206. #u31530 {
  13207. border-width:0px;
  13208. position:absolute;
  13209. left:1252px;
  13210. top:1059px;
  13211. width:50px;
  13212. height:53px;
  13213. display:flex;
  13214. }
  13215. #u31530 .text {
  13216. position:absolute;
  13217. align-self:center;
  13218. padding:2px 2px 2px 2px;
  13219. box-sizing:border-box;
  13220. width:100%;
  13221. }
  13222. #u31530_text {
  13223. border-width:0px;
  13224. word-wrap:break-word;
  13225. text-transform:none;
  13226. visibility:hidden;
  13227. }
  13228. #u31531 {
  13229. border-width:0px;
  13230. position:absolute;
  13231. left:0px;
  13232. top:0px;
  13233. width:0px;
  13234. height:0px;
  13235. }
  13236. #u31532_div {
  13237. border-width:0px;
  13238. position:absolute;
  13239. left:0px;
  13240. top:0px;
  13241. width:73px;
  13242. height:25px;
  13243. background:inherit;
  13244. background-color:rgba(255, 255, 255, 0);
  13245. border:none;
  13246. border-left:0px;
  13247. border-top:0px;
  13248. border-right:0px;
  13249. border-radius:0px;
  13250. border-bottom-right-radius:0px;
  13251. border-bottom-left-radius:0px;
  13252. -moz-box-shadow:none;
  13253. -webkit-box-shadow:none;
  13254. box-shadow:none;
  13255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13256. font-weight:400;
  13257. font-style:normal;
  13258. font-size:18px;
  13259. }
  13260. #u31532 {
  13261. border-width:0px;
  13262. position:absolute;
  13263. left:1317px;
  13264. top:1062px;
  13265. width:73px;
  13266. height:25px;
  13267. display:flex;
  13268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13269. font-weight:400;
  13270. font-style:normal;
  13271. font-size:18px;
  13272. }
  13273. #u31532 .text {
  13274. position:absolute;
  13275. align-self:center;
  13276. padding:0px 0px 0px 0px;
  13277. box-sizing:border-box;
  13278. width:100%;
  13279. }
  13280. #u31532_text {
  13281. border-width:0px;
  13282. white-space:nowrap;
  13283. text-transform:none;
  13284. }
  13285. #u31533_div {
  13286. border-width:0px;
  13287. position:absolute;
  13288. left:0px;
  13289. top:0px;
  13290. width:145px;
  13291. height:17px;
  13292. background:inherit;
  13293. background-color:rgba(255, 255, 255, 0);
  13294. border:none;
  13295. border-left:0px;
  13296. border-top:0px;
  13297. border-right:0px;
  13298. border-radius:0px;
  13299. border-bottom-right-radius:0px;
  13300. border-bottom-left-radius:0px;
  13301. -moz-box-shadow:none;
  13302. -webkit-box-shadow:none;
  13303. box-shadow:none;
  13304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13305. font-weight:400;
  13306. font-style:normal;
  13307. font-size:12px;
  13308. color:#7F7F7F;
  13309. }
  13310. #u31533 {
  13311. border-width:0px;
  13312. position:absolute;
  13313. left:1317px;
  13314. top:1092px;
  13315. width:145px;
  13316. height:17px;
  13317. display:flex;
  13318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13319. font-weight:400;
  13320. font-style:normal;
  13321. font-size:12px;
  13322. color:#7F7F7F;
  13323. }
  13324. #u31533 .text {
  13325. position:absolute;
  13326. align-self:center;
  13327. padding:0px 0px 0px 0px;
  13328. box-sizing:border-box;
  13329. width:100%;
  13330. }
  13331. #u31533_text {
  13332. border-width:0px;
  13333. white-space:nowrap;
  13334. text-transform:none;
  13335. }
  13336. #u31534 {
  13337. border-width:0px;
  13338. position:absolute;
  13339. left:0px;
  13340. top:0px;
  13341. width:0px;
  13342. height:0px;
  13343. }
  13344. #u31535_div {
  13345. border-width:0px;
  13346. position:absolute;
  13347. left:0px;
  13348. top:0px;
  13349. width:240px;
  13350. height:80px;
  13351. background:inherit;
  13352. background-color:rgba(242, 242, 242, 1);
  13353. border:none;
  13354. border-radius:0px;
  13355. -moz-box-shadow:none;
  13356. -webkit-box-shadow:none;
  13357. box-shadow:none;
  13358. }
  13359. #u31535 {
  13360. border-width:0px;
  13361. position:absolute;
  13362. left:154px;
  13363. top:1046px;
  13364. width:240px;
  13365. height:80px;
  13366. display:flex;
  13367. }
  13368. #u31535 .text {
  13369. position:absolute;
  13370. align-self:center;
  13371. padding:2px 2px 2px 2px;
  13372. box-sizing:border-box;
  13373. width:100%;
  13374. }
  13375. #u31535_text {
  13376. border-width:0px;
  13377. word-wrap:break-word;
  13378. text-transform:none;
  13379. visibility:hidden;
  13380. }
  13381. #u31536_img {
  13382. border-width:0px;
  13383. position:absolute;
  13384. left:0px;
  13385. top:0px;
  13386. width:50px;
  13387. height:53px;
  13388. }
  13389. #u31536 {
  13390. border-width:0px;
  13391. position:absolute;
  13392. left:170px;
  13393. top:1059px;
  13394. width:50px;
  13395. height:53px;
  13396. display:flex;
  13397. }
  13398. #u31536 .text {
  13399. position:absolute;
  13400. align-self:center;
  13401. padding:2px 2px 2px 2px;
  13402. box-sizing:border-box;
  13403. width:100%;
  13404. }
  13405. #u31536_text {
  13406. border-width:0px;
  13407. word-wrap:break-word;
  13408. text-transform:none;
  13409. visibility:hidden;
  13410. }
  13411. #u31537 {
  13412. border-width:0px;
  13413. position:absolute;
  13414. left:0px;
  13415. top:0px;
  13416. width:0px;
  13417. height:0px;
  13418. }
  13419. #u31538_div {
  13420. border-width:0px;
  13421. position:absolute;
  13422. left:0px;
  13423. top:0px;
  13424. width:73px;
  13425. height:25px;
  13426. background:inherit;
  13427. background-color:rgba(255, 255, 255, 0);
  13428. border:none;
  13429. border-left:0px;
  13430. border-top:0px;
  13431. border-right:0px;
  13432. border-radius:0px;
  13433. border-bottom-right-radius:0px;
  13434. border-bottom-left-radius:0px;
  13435. -moz-box-shadow:none;
  13436. -webkit-box-shadow:none;
  13437. box-shadow:none;
  13438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13439. font-weight:400;
  13440. font-style:normal;
  13441. font-size:18px;
  13442. }
  13443. #u31538 {
  13444. border-width:0px;
  13445. position:absolute;
  13446. left:235px;
  13447. top:1062px;
  13448. width:73px;
  13449. height:25px;
  13450. display:flex;
  13451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13452. font-weight:400;
  13453. font-style:normal;
  13454. font-size:18px;
  13455. }
  13456. #u31538 .text {
  13457. position:absolute;
  13458. align-self:center;
  13459. padding:0px 0px 0px 0px;
  13460. box-sizing:border-box;
  13461. width:100%;
  13462. }
  13463. #u31538_text {
  13464. border-width:0px;
  13465. white-space:nowrap;
  13466. text-transform:none;
  13467. }
  13468. #u31539_div {
  13469. border-width:0px;
  13470. position:absolute;
  13471. left:0px;
  13472. top:0px;
  13473. width:145px;
  13474. height:17px;
  13475. background:inherit;
  13476. background-color:rgba(255, 255, 255, 0);
  13477. border:none;
  13478. border-left:0px;
  13479. border-top:0px;
  13480. border-right:0px;
  13481. border-radius:0px;
  13482. border-bottom-right-radius:0px;
  13483. border-bottom-left-radius:0px;
  13484. -moz-box-shadow:none;
  13485. -webkit-box-shadow:none;
  13486. box-shadow:none;
  13487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13488. font-weight:400;
  13489. font-style:normal;
  13490. font-size:12px;
  13491. color:#7F7F7F;
  13492. }
  13493. #u31539 {
  13494. border-width:0px;
  13495. position:absolute;
  13496. left:235px;
  13497. top:1092px;
  13498. width:145px;
  13499. height:17px;
  13500. display:flex;
  13501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13502. font-weight:400;
  13503. font-style:normal;
  13504. font-size:12px;
  13505. color:#7F7F7F;
  13506. }
  13507. #u31539 .text {
  13508. position:absolute;
  13509. align-self:center;
  13510. padding:0px 0px 0px 0px;
  13511. box-sizing:border-box;
  13512. width:100%;
  13513. }
  13514. #u31539_text {
  13515. border-width:0px;
  13516. white-space:nowrap;
  13517. text-transform:none;
  13518. }