styles.css 173 KB

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