styles.css 254 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-100px;
  6. width:5085px;
  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. #u28023 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u28024_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1303px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(242, 242, 242, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u28024 {
  53. border-width:0px;
  54. position:absolute;
  55. left:100px;
  56. top:115px;
  57. width:1000px;
  58. height:1303px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u28024 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u28024_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u28025_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:1000px;
  87. height:580px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(242, 242, 242, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u28025 {
  107. border-width:0px;
  108. position:absolute;
  109. left:100px;
  110. top:266px;
  111. width:1000px;
  112. height:580px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u28025 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u28025_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u28026_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:73px;
  141. height:40px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-left:0px;
  146. border-top:0px;
  147. border-right:0px;
  148. border-radius:0px;
  149. border-bottom-right-radius:0px;
  150. border-bottom-left-radius:0px;
  151. -moz-box-shadow:none;
  152. -webkit-box-shadow:none;
  153. box-shadow:none;
  154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  155. font-weight:400;
  156. font-style:normal;
  157. font-size:18px;
  158. }
  159. #u28026 {
  160. border-width:0px;
  161. position:absolute;
  162. left:140px;
  163. top:282px;
  164. width:73px;
  165. height:40px;
  166. display:flex;
  167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  168. font-weight:400;
  169. font-style:normal;
  170. font-size:18px;
  171. }
  172. #u28026 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:0px 0px 0px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u28026_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u28027_div {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:81px;
  190. height:30px;
  191. background:inherit;
  192. background-color:rgba(255, 255, 255, 0);
  193. border:none;
  194. border-top:0px;
  195. border-right:0px;
  196. border-bottom:0px;
  197. border-radius:0px;
  198. border-top-left-radius:0px;
  199. border-bottom-left-radius:0px;
  200. -moz-box-shadow:none;
  201. -webkit-box-shadow:none;
  202. box-shadow:none;
  203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  204. font-weight:400;
  205. font-style:normal;
  206. font-size:14px;
  207. color:#7F7F7F;
  208. }
  209. #u28027 {
  210. border-width:0px;
  211. position:absolute;
  212. left:140px;
  213. top:332px;
  214. width:81px;
  215. height:30px;
  216. display:flex;
  217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  218. font-weight:400;
  219. font-style:normal;
  220. font-size:14px;
  221. color:#7F7F7F;
  222. }
  223. #u28027 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:5px 10px 5px 0px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u28027_text {
  231. border-width:0px;
  232. white-space:nowrap;
  233. text-transform:none;
  234. }
  235. #u28028_div {
  236. border-width:0px;
  237. position:absolute;
  238. left:0px;
  239. top:0px;
  240. width:142px;
  241. height:30px;
  242. background:inherit;
  243. background-color:rgba(255, 255, 255, 0);
  244. border:none;
  245. border-top:0px;
  246. border-right:0px;
  247. border-bottom:0px;
  248. border-radius:0px;
  249. border-top-left-radius:0px;
  250. border-bottom-left-radius:0px;
  251. -moz-box-shadow:none;
  252. -webkit-box-shadow:none;
  253. box-shadow:none;
  254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  255. font-weight:400;
  256. font-style:normal;
  257. font-size:14px;
  258. color:#1890FF;
  259. }
  260. #u28028 {
  261. border-width:0px;
  262. position:absolute;
  263. left:221px;
  264. top:332px;
  265. width:142px;
  266. height:30px;
  267. display:flex;
  268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  269. font-weight:400;
  270. font-style:normal;
  271. font-size:14px;
  272. color:#1890FF;
  273. }
  274. #u28028 .text {
  275. position:absolute;
  276. align-self:center;
  277. padding:5px 10px 5px 0px;
  278. box-sizing:border-box;
  279. width:100%;
  280. }
  281. #u28028_text {
  282. border-width:0px;
  283. white-space:nowrap;
  284. text-transform:none;
  285. }
  286. #u28029_div {
  287. border-width:0px;
  288. position:absolute;
  289. left:0px;
  290. top:0px;
  291. width:81px;
  292. height:30px;
  293. background:inherit;
  294. background-color:rgba(255, 255, 255, 0);
  295. border:none;
  296. border-top:0px;
  297. border-right:0px;
  298. border-bottom:0px;
  299. border-radius:0px;
  300. border-top-left-radius:0px;
  301. border-bottom-left-radius:0px;
  302. -moz-box-shadow:none;
  303. -webkit-box-shadow:none;
  304. box-shadow:none;
  305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  306. font-weight:400;
  307. font-style:normal;
  308. font-size:14px;
  309. color:#7F7F7F;
  310. }
  311. #u28029 {
  312. border-width:0px;
  313. position:absolute;
  314. left:460px;
  315. top:332px;
  316. width:81px;
  317. height:30px;
  318. display:flex;
  319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  320. font-weight:400;
  321. font-style:normal;
  322. font-size:14px;
  323. color:#7F7F7F;
  324. }
  325. #u28029 .text {
  326. position:absolute;
  327. align-self:center;
  328. padding:5px 10px 5px 0px;
  329. box-sizing:border-box;
  330. width:100%;
  331. }
  332. #u28029_text {
  333. border-width:0px;
  334. white-space:nowrap;
  335. text-transform:none;
  336. }
  337. #u28030_div {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:67px;
  343. height:30px;
  344. background:inherit;
  345. background-color:rgba(255, 255, 255, 0);
  346. border:none;
  347. border-top:0px;
  348. border-right:0px;
  349. border-bottom:0px;
  350. border-radius:0px;
  351. border-top-left-radius:0px;
  352. border-bottom-left-radius:0px;
  353. -moz-box-shadow:none;
  354. -webkit-box-shadow:none;
  355. box-shadow:none;
  356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  357. font-weight:400;
  358. font-style:normal;
  359. font-size:14px;
  360. }
  361. #u28030 {
  362. border-width:0px;
  363. position:absolute;
  364. left:541px;
  365. top:332px;
  366. width:67px;
  367. height:30px;
  368. display:flex;
  369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  370. font-weight:400;
  371. font-style:normal;
  372. font-size:14px;
  373. }
  374. #u28030 .text {
  375. position:absolute;
  376. align-self:center;
  377. padding:5px 10px 5px 0px;
  378. box-sizing:border-box;
  379. width:100%;
  380. }
  381. #u28030_text {
  382. border-width:0px;
  383. white-space:nowrap;
  384. text-transform:none;
  385. }
  386. #u28031_div {
  387. border-width:0px;
  388. position:absolute;
  389. left:0px;
  390. top:0px;
  391. width:81px;
  392. height:30px;
  393. background:inherit;
  394. background-color:rgba(255, 255, 255, 0);
  395. border:none;
  396. border-top:0px;
  397. border-right:0px;
  398. border-bottom:0px;
  399. border-radius:0px;
  400. border-top-left-radius:0px;
  401. border-bottom-left-radius:0px;
  402. -moz-box-shadow:none;
  403. -webkit-box-shadow:none;
  404. box-shadow:none;
  405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  406. font-weight:400;
  407. font-style:normal;
  408. font-size:14px;
  409. color:#7F7F7F;
  410. }
  411. #u28031 {
  412. border-width:0px;
  413. position:absolute;
  414. left:757px;
  415. top:332px;
  416. width:81px;
  417. height:30px;
  418. display:flex;
  419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  420. font-weight:400;
  421. font-style:normal;
  422. font-size:14px;
  423. color:#7F7F7F;
  424. }
  425. #u28031 .text {
  426. position:absolute;
  427. align-self:center;
  428. padding:5px 10px 5px 0px;
  429. box-sizing:border-box;
  430. width:100%;
  431. }
  432. #u28031_text {
  433. border-width:0px;
  434. white-space:nowrap;
  435. text-transform:none;
  436. }
  437. #u28032_div {
  438. border-width:0px;
  439. position:absolute;
  440. left:0px;
  441. top:0px;
  442. width:53px;
  443. height:30px;
  444. background:inherit;
  445. background-color:rgba(255, 255, 255, 0);
  446. border:none;
  447. border-top:0px;
  448. border-right:0px;
  449. border-bottom:0px;
  450. border-radius:0px;
  451. border-top-left-radius:0px;
  452. border-bottom-left-radius:0px;
  453. -moz-box-shadow:none;
  454. -webkit-box-shadow:none;
  455. box-shadow:none;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:14px;
  460. }
  461. #u28032 {
  462. border-width:0px;
  463. position:absolute;
  464. left:838px;
  465. top:332px;
  466. width:53px;
  467. height:30px;
  468. display:flex;
  469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  470. font-weight:400;
  471. font-style:normal;
  472. font-size:14px;
  473. }
  474. #u28032 .text {
  475. position:absolute;
  476. align-self:center;
  477. padding:5px 10px 5px 0px;
  478. box-sizing:border-box;
  479. width:100%;
  480. }
  481. #u28032_text {
  482. border-width:0px;
  483. white-space:nowrap;
  484. text-transform:none;
  485. }
  486. #u28033_div {
  487. border-width:0px;
  488. position:absolute;
  489. left:0px;
  490. top:0px;
  491. width:81px;
  492. height:30px;
  493. background:inherit;
  494. background-color:rgba(255, 255, 255, 0);
  495. border:none;
  496. border-top:0px;
  497. border-right:0px;
  498. border-bottom:0px;
  499. border-radius:0px;
  500. border-top-left-radius:0px;
  501. border-bottom-left-radius:0px;
  502. -moz-box-shadow:none;
  503. -webkit-box-shadow:none;
  504. box-shadow:none;
  505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  506. font-weight:400;
  507. font-style:normal;
  508. font-size:14px;
  509. color:#7F7F7F;
  510. }
  511. #u28033 {
  512. border-width:0px;
  513. position:absolute;
  514. left:140px;
  515. top:372px;
  516. width:81px;
  517. height:30px;
  518. display:flex;
  519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  520. font-weight:400;
  521. font-style:normal;
  522. font-size:14px;
  523. color:#7F7F7F;
  524. }
  525. #u28033 .text {
  526. position:absolute;
  527. align-self:center;
  528. padding:5px 10px 5px 0px;
  529. box-sizing:border-box;
  530. width:100%;
  531. }
  532. #u28033_text {
  533. border-width:0px;
  534. white-space:nowrap;
  535. text-transform:none;
  536. }
  537. #u28034_div {
  538. border-width:0px;
  539. position:absolute;
  540. left:0px;
  541. top:0px;
  542. width:81px;
  543. height:30px;
  544. background:inherit;
  545. background-color:rgba(255, 255, 255, 0);
  546. border:none;
  547. border-top:0px;
  548. border-right:0px;
  549. border-bottom:0px;
  550. border-radius:0px;
  551. border-top-left-radius:0px;
  552. border-bottom-left-radius:0px;
  553. -moz-box-shadow:none;
  554. -webkit-box-shadow:none;
  555. box-shadow:none;
  556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  557. font-weight:400;
  558. font-style:normal;
  559. font-size:14px;
  560. color:#7F7F7F;
  561. }
  562. #u28034 {
  563. border-width:0px;
  564. position:absolute;
  565. left:460px;
  566. top:372px;
  567. width:81px;
  568. height:30px;
  569. display:flex;
  570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  571. font-weight:400;
  572. font-style:normal;
  573. font-size:14px;
  574. color:#7F7F7F;
  575. }
  576. #u28034 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:5px 10px 5px 0px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u28034_text {
  584. border-width:0px;
  585. white-space:nowrap;
  586. text-transform:none;
  587. }
  588. #u28035_div {
  589. border-width:0px;
  590. position:absolute;
  591. left:0px;
  592. top:0px;
  593. width:67px;
  594. height:30px;
  595. background:inherit;
  596. background-color:rgba(255, 255, 255, 0);
  597. border:none;
  598. border-top:0px;
  599. border-right:0px;
  600. border-bottom:0px;
  601. border-radius:0px;
  602. border-top-left-radius:0px;
  603. border-bottom-left-radius:0px;
  604. -moz-box-shadow:none;
  605. -webkit-box-shadow:none;
  606. box-shadow:none;
  607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  608. font-weight:400;
  609. font-style:normal;
  610. font-size:14px;
  611. }
  612. #u28035 {
  613. border-width:0px;
  614. position:absolute;
  615. left:541px;
  616. top:372px;
  617. width:67px;
  618. height:30px;
  619. display:flex;
  620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  621. font-weight:400;
  622. font-style:normal;
  623. font-size:14px;
  624. }
  625. #u28035 .text {
  626. position:absolute;
  627. align-self:center;
  628. padding:5px 10px 5px 0px;
  629. box-sizing:border-box;
  630. width:100%;
  631. }
  632. #u28035_text {
  633. border-width:0px;
  634. white-space:nowrap;
  635. text-transform:none;
  636. }
  637. #u28036_div {
  638. border-width:0px;
  639. position:absolute;
  640. left:0px;
  641. top:0px;
  642. width:67px;
  643. height:30px;
  644. background:inherit;
  645. background-color:rgba(255, 255, 255, 0);
  646. border:none;
  647. border-top:0px;
  648. border-right:0px;
  649. border-bottom:0px;
  650. border-radius:0px;
  651. border-top-left-radius:0px;
  652. border-bottom-left-radius:0px;
  653. -moz-box-shadow:none;
  654. -webkit-box-shadow:none;
  655. box-shadow:none;
  656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  657. font-weight:400;
  658. font-style:normal;
  659. font-size:14px;
  660. color:#7F7F7F;
  661. }
  662. #u28036 {
  663. border-width:0px;
  664. position:absolute;
  665. left:757px;
  666. top:372px;
  667. width:67px;
  668. height:30px;
  669. display:flex;
  670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  671. font-weight:400;
  672. font-style:normal;
  673. font-size:14px;
  674. color:#7F7F7F;
  675. }
  676. #u28036 .text {
  677. position:absolute;
  678. align-self:center;
  679. padding:5px 10px 5px 0px;
  680. box-sizing:border-box;
  681. width:100%;
  682. }
  683. #u28036_text {
  684. border-width:0px;
  685. white-space:nowrap;
  686. text-transform:none;
  687. }
  688. #u28037_div {
  689. border-width:0px;
  690. position:absolute;
  691. left:0px;
  692. top:0px;
  693. width:85px;
  694. height:30px;
  695. background:inherit;
  696. background-color:rgba(255, 255, 255, 0);
  697. border:none;
  698. border-top:0px;
  699. border-right:0px;
  700. border-bottom:0px;
  701. border-radius:0px;
  702. border-top-left-radius:0px;
  703. border-bottom-left-radius:0px;
  704. -moz-box-shadow:none;
  705. -webkit-box-shadow:none;
  706. box-shadow:none;
  707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  708. font-weight:400;
  709. font-style:normal;
  710. font-size:14px;
  711. }
  712. #u28037 {
  713. border-width:0px;
  714. position:absolute;
  715. left:838px;
  716. top:372px;
  717. width:85px;
  718. height:30px;
  719. display:flex;
  720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  721. font-weight:400;
  722. font-style:normal;
  723. font-size:14px;
  724. }
  725. #u28037 .text {
  726. position:absolute;
  727. align-self:center;
  728. padding:5px 10px 5px 0px;
  729. box-sizing:border-box;
  730. width:100%;
  731. }
  732. #u28037_text {
  733. border-width:0px;
  734. white-space:nowrap;
  735. text-transform:none;
  736. }
  737. #u28038_div {
  738. border-width:0px;
  739. position:absolute;
  740. left:0px;
  741. top:0px;
  742. width:183px;
  743. height:30px;
  744. background:inherit;
  745. background-color:rgba(255, 255, 255, 0);
  746. border:none;
  747. border-top:0px;
  748. border-right:0px;
  749. border-bottom:0px;
  750. border-radius:0px;
  751. border-top-left-radius:0px;
  752. border-bottom-left-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:14px;
  760. }
  761. #u28038 {
  762. border-width:0px;
  763. position:absolute;
  764. left:221px;
  765. top:372px;
  766. width:183px;
  767. height:30px;
  768. display:flex;
  769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  770. font-weight:400;
  771. font-style:normal;
  772. font-size:14px;
  773. }
  774. #u28038 .text {
  775. position:absolute;
  776. align-self:center;
  777. padding:5px 10px 5px 0px;
  778. box-sizing:border-box;
  779. width:100%;
  780. }
  781. #u28038_text {
  782. border-width:0px;
  783. white-space:nowrap;
  784. text-transform:none;
  785. }
  786. #u28039_div {
  787. border-width:0px;
  788. position:absolute;
  789. left:0px;
  790. top:0px;
  791. width:81px;
  792. height:30px;
  793. background:inherit;
  794. background-color:rgba(255, 255, 255, 0);
  795. border:none;
  796. border-top:0px;
  797. border-right:0px;
  798. border-bottom:0px;
  799. border-radius:0px;
  800. border-top-left-radius:0px;
  801. border-bottom-left-radius:0px;
  802. -moz-box-shadow:none;
  803. -webkit-box-shadow:none;
  804. box-shadow:none;
  805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  806. font-weight:400;
  807. font-style:normal;
  808. font-size:14px;
  809. color:#7F7F7F;
  810. }
  811. #u28039 {
  812. border-width:0px;
  813. position:absolute;
  814. left:140px;
  815. top:412px;
  816. width:81px;
  817. height:30px;
  818. display:flex;
  819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  820. font-weight:400;
  821. font-style:normal;
  822. font-size:14px;
  823. color:#7F7F7F;
  824. }
  825. #u28039 .text {
  826. position:absolute;
  827. align-self:center;
  828. padding:5px 10px 5px 0px;
  829. box-sizing:border-box;
  830. width:100%;
  831. }
  832. #u28039_text {
  833. border-width:0px;
  834. white-space:nowrap;
  835. text-transform:none;
  836. }
  837. #u28040_div {
  838. border-width:0px;
  839. position:absolute;
  840. left:0px;
  841. top:0px;
  842. width:126px;
  843. height:30px;
  844. background:inherit;
  845. background-color:rgba(255, 255, 255, 0);
  846. border:none;
  847. border-top:0px;
  848. border-right:0px;
  849. border-bottom:0px;
  850. border-radius:0px;
  851. border-top-left-radius:0px;
  852. border-bottom-left-radius:0px;
  853. -moz-box-shadow:none;
  854. -webkit-box-shadow:none;
  855. box-shadow:none;
  856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  857. font-weight:400;
  858. font-style:normal;
  859. font-size:14px;
  860. }
  861. #u28040 {
  862. border-width:0px;
  863. position:absolute;
  864. left:221px;
  865. top:412px;
  866. width:126px;
  867. height:30px;
  868. display:flex;
  869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  870. font-weight:400;
  871. font-style:normal;
  872. font-size:14px;
  873. }
  874. #u28040 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:5px 10px 5px 0px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u28040_text {
  882. border-width:0px;
  883. white-space:nowrap;
  884. text-transform:none;
  885. }
  886. #u28041_div {
  887. border-width:0px;
  888. position:absolute;
  889. left:0px;
  890. top:0px;
  891. width:81px;
  892. height:30px;
  893. background:inherit;
  894. background-color:rgba(255, 255, 255, 0);
  895. border:none;
  896. border-top:0px;
  897. border-right:0px;
  898. border-bottom:0px;
  899. border-radius:0px;
  900. border-top-left-radius:0px;
  901. border-bottom-left-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  906. font-weight:400;
  907. font-style:normal;
  908. font-size:14px;
  909. color:#7F7F7F;
  910. }
  911. #u28041 {
  912. border-width:0px;
  913. position:absolute;
  914. left:140px;
  915. top:452px;
  916. width:81px;
  917. height:30px;
  918. display:flex;
  919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  920. font-weight:400;
  921. font-style:normal;
  922. font-size:14px;
  923. color:#7F7F7F;
  924. }
  925. #u28041 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:5px 10px 5px 0px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u28041_text {
  933. border-width:0px;
  934. white-space:nowrap;
  935. text-transform:none;
  936. }
  937. #u28042_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:263px;
  943. height:30px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-top:0px;
  948. border-right:0px;
  949. border-bottom:0px;
  950. border-radius:0px;
  951. border-top-left-radius:0px;
  952. border-bottom-left-radius:0px;
  953. -moz-box-shadow:none;
  954. -webkit-box-shadow:none;
  955. box-shadow:none;
  956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  957. font-weight:400;
  958. font-style:normal;
  959. font-size:14px;
  960. }
  961. #u28042 {
  962. border-width:0px;
  963. position:absolute;
  964. left:221px;
  965. top:452px;
  966. width:263px;
  967. height:30px;
  968. display:flex;
  969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  970. font-weight:400;
  971. font-style:normal;
  972. font-size:14px;
  973. }
  974. #u28042 .text {
  975. position:absolute;
  976. align-self:center;
  977. padding:5px 10px 5px 0px;
  978. box-sizing:border-box;
  979. width:100%;
  980. }
  981. #u28042_text {
  982. border-width:0px;
  983. white-space:nowrap;
  984. text-transform:none;
  985. }
  986. #u28043_img {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:942px;
  992. height:2px;
  993. }
  994. #u28043 {
  995. border-width:0px;
  996. position:absolute;
  997. left:140px;
  998. top:500px;
  999. width:941px;
  1000. height:1px;
  1001. display:flex;
  1002. }
  1003. #u28043 .text {
  1004. position:absolute;
  1005. align-self:center;
  1006. padding:2px 2px 2px 2px;
  1007. box-sizing:border-box;
  1008. width:100%;
  1009. }
  1010. #u28043_text {
  1011. border-width:0px;
  1012. word-wrap:break-word;
  1013. text-transform:none;
  1014. visibility:hidden;
  1015. }
  1016. #u28044_div {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:1000px;
  1022. height:200px;
  1023. background:inherit;
  1024. background-color:rgba(255, 255, 255, 1);
  1025. box-sizing:border-box;
  1026. border-width:1px;
  1027. border-style:solid;
  1028. border-color:rgba(215, 215, 215, 1);
  1029. border-radius:0px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. font-size:14px;
  1037. color:#AAAAAA;
  1038. text-align:center;
  1039. line-height:30px;
  1040. }
  1041. #u28044 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:101px;
  1045. top:55px;
  1046. width:1000px;
  1047. height:200px;
  1048. display:flex;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. font-size:14px;
  1053. color:#AAAAAA;
  1054. text-align:center;
  1055. line-height:30px;
  1056. }
  1057. #u28044 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:5px 10px 5px 10px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u28044_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u28045_div {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:83px;
  1076. height:35px;
  1077. background:inherit;
  1078. background-color:rgba(255, 255, 255, 0);
  1079. border:none;
  1080. border-top:0px;
  1081. border-right:0px;
  1082. border-bottom:0px;
  1083. border-radius:0px;
  1084. border-top-left-radius:0px;
  1085. border-bottom-left-radius:0px;
  1086. -moz-box-shadow:none;
  1087. -webkit-box-shadow:none;
  1088. box-shadow:none;
  1089. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1090. font-weight:500;
  1091. font-style:normal;
  1092. font-size:18px;
  1093. }
  1094. #u28045 {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:121px;
  1098. top:73px;
  1099. width:83px;
  1100. height:35px;
  1101. display:flex;
  1102. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1103. font-weight:500;
  1104. font-style:normal;
  1105. font-size:18px;
  1106. }
  1107. #u28045 .text {
  1108. position:absolute;
  1109. align-self:center;
  1110. padding:5px 10px 5px 0px;
  1111. box-sizing:border-box;
  1112. width:100%;
  1113. }
  1114. #u28045_text {
  1115. border-width:0px;
  1116. white-space:nowrap;
  1117. text-transform:none;
  1118. }
  1119. #u28046_div {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:0px;
  1123. top:0px;
  1124. width:107px;
  1125. height:43px;
  1126. background:inherit;
  1127. background-color:rgba(255, 255, 255, 0);
  1128. border:none;
  1129. border-top:0px;
  1130. border-right:0px;
  1131. border-bottom:0px;
  1132. border-radius:0px;
  1133. border-top-left-radius:0px;
  1134. border-bottom-left-radius:0px;
  1135. -moz-box-shadow:none;
  1136. -webkit-box-shadow:none;
  1137. box-shadow:none;
  1138. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1139. font-weight:500;
  1140. font-style:normal;
  1141. font-size:24px;
  1142. }
  1143. #u28046 {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:131px;
  1147. top:124px;
  1148. width:107px;
  1149. height:43px;
  1150. display:flex;
  1151. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1152. font-weight:500;
  1153. font-style:normal;
  1154. font-size:24px;
  1155. }
  1156. #u28046 .text {
  1157. position:absolute;
  1158. align-self:center;
  1159. padding:5px 10px 5px 0px;
  1160. box-sizing:border-box;
  1161. width:100%;
  1162. }
  1163. #u28046_text {
  1164. border-width:0px;
  1165. white-space:nowrap;
  1166. text-transform:none;
  1167. }
  1168. #u28047_img {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:0px;
  1172. top:0px;
  1173. width:108px;
  1174. height:108px;
  1175. }
  1176. #u28047 {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:951px;
  1180. top:125px;
  1181. width:108px;
  1182. height:108px;
  1183. display:flex;
  1184. -webkit-transform:rotate(315deg);
  1185. -moz-transform:rotate(315deg);
  1186. -ms-transform:rotate(315deg);
  1187. transform:rotate(315deg);
  1188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1189. font-weight:400;
  1190. font-style:normal;
  1191. font-size:28px;
  1192. color:#F59A23;
  1193. }
  1194. #u28047 .text {
  1195. position:absolute;
  1196. align-self:center;
  1197. padding:2px 2px 2px 2px;
  1198. box-sizing:border-box;
  1199. width:100%;
  1200. }
  1201. #u28047_text {
  1202. border-width:0px;
  1203. word-wrap:break-word;
  1204. text-transform:none;
  1205. }
  1206. #u28048_div {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:0px;
  1210. top:0px;
  1211. width:325px;
  1212. height:60px;
  1213. background:inherit;
  1214. background-color:rgba(255, 255, 255, 0);
  1215. border:none;
  1216. border-left:0px;
  1217. border-top:0px;
  1218. border-right:0px;
  1219. border-radius:0px;
  1220. border-bottom-right-radius:0px;
  1221. border-bottom-left-radius:0px;
  1222. -moz-box-shadow:none;
  1223. -webkit-box-shadow:none;
  1224. box-shadow:none;
  1225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1226. font-weight:400;
  1227. font-style:normal;
  1228. font-size:14px;
  1229. line-height:30px;
  1230. }
  1231. #u28048 {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:131px;
  1235. top:179px;
  1236. width:325px;
  1237. height:60px;
  1238. display:flex;
  1239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1240. font-weight:400;
  1241. font-style:normal;
  1242. font-size:14px;
  1243. line-height:30px;
  1244. }
  1245. #u28048 .text {
  1246. position:absolute;
  1247. align-self:flex-start;
  1248. padding:0px 0px 0px 0px;
  1249. box-sizing:border-box;
  1250. width:100%;
  1251. }
  1252. #u28048_text {
  1253. border-width:0px;
  1254. word-wrap:break-word;
  1255. text-transform:none;
  1256. }
  1257. #u28049_img {
  1258. border-width:0px;
  1259. position:absolute;
  1260. left:0px;
  1261. top:0px;
  1262. width:17px;
  1263. height:17px;
  1264. }
  1265. #u28049 {
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:1073px;
  1269. top:77px;
  1270. width:17px;
  1271. height:17px;
  1272. display:flex;
  1273. }
  1274. #u28049 .text {
  1275. position:absolute;
  1276. align-self:center;
  1277. padding:2px 2px 2px 2px;
  1278. box-sizing:border-box;
  1279. width:100%;
  1280. }
  1281. #u28049_text {
  1282. border-width:0px;
  1283. word-wrap:break-word;
  1284. text-transform:none;
  1285. visibility:hidden;
  1286. }
  1287. #u28050 {
  1288. border-width:0px;
  1289. position:absolute;
  1290. left:0px;
  1291. top:0px;
  1292. width:0px;
  1293. height:0px;
  1294. }
  1295. #u28051_div {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:0px;
  1299. top:0px;
  1300. width:1000px;
  1301. height:562px;
  1302. background:inherit;
  1303. background-color:rgba(255, 255, 255, 1);
  1304. box-sizing:border-box;
  1305. border-width:1px;
  1306. border-style:solid;
  1307. border-color:rgba(242, 242, 242, 1);
  1308. border-radius:0px;
  1309. -moz-box-shadow:none;
  1310. -webkit-box-shadow:none;
  1311. box-shadow:none;
  1312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1313. font-weight:400;
  1314. font-style:normal;
  1315. font-size:14px;
  1316. color:#AAAAAA;
  1317. text-align:center;
  1318. line-height:30px;
  1319. }
  1320. #u28051 {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:100px;
  1324. top:856px;
  1325. width:1000px;
  1326. height:562px;
  1327. display:flex;
  1328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1329. font-weight:400;
  1330. font-style:normal;
  1331. font-size:14px;
  1332. color:#AAAAAA;
  1333. text-align:center;
  1334. line-height:30px;
  1335. }
  1336. #u28051 .text {
  1337. position:absolute;
  1338. align-self:center;
  1339. padding:5px 10px 5px 10px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u28051_text {
  1344. border-width:0px;
  1345. word-wrap:break-word;
  1346. text-transform:none;
  1347. visibility:hidden;
  1348. }
  1349. #u28052_div {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:0px;
  1353. top:0px;
  1354. width:73px;
  1355. height:40px;
  1356. background:inherit;
  1357. background-color:rgba(255, 255, 255, 0);
  1358. border:none;
  1359. border-left:0px;
  1360. border-top:0px;
  1361. border-right:0px;
  1362. border-radius:0px;
  1363. border-bottom-right-radius:0px;
  1364. border-bottom-left-radius:0px;
  1365. -moz-box-shadow:none;
  1366. -webkit-box-shadow:none;
  1367. box-shadow:none;
  1368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1369. font-weight:400;
  1370. font-style:normal;
  1371. font-size:18px;
  1372. }
  1373. #u28052 {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:140px;
  1377. top:872px;
  1378. width:73px;
  1379. height:40px;
  1380. display:flex;
  1381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1382. font-weight:400;
  1383. font-style:normal;
  1384. font-size:18px;
  1385. }
  1386. #u28052 .text {
  1387. position:absolute;
  1388. align-self:center;
  1389. padding:0px 0px 0px 0px;
  1390. box-sizing:border-box;
  1391. width:100%;
  1392. }
  1393. #u28052_text {
  1394. border-width:0px;
  1395. white-space:nowrap;
  1396. text-transform:none;
  1397. }
  1398. #u28053 {
  1399. border-width:0px;
  1400. position:absolute;
  1401. left:0px;
  1402. top:0px;
  1403. width:0px;
  1404. height:0px;
  1405. }
  1406. #u28054_div {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:175px;
  1412. height:20px;
  1413. background:inherit;
  1414. background-color:rgba(255, 255, 255, 0);
  1415. border:none;
  1416. border-radius:0px;
  1417. -moz-box-shadow:none;
  1418. -webkit-box-shadow:none;
  1419. box-shadow:none;
  1420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1421. font-weight:400;
  1422. font-style:normal;
  1423. }
  1424. #u28054 {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:176px;
  1428. top:938px;
  1429. width:175px;
  1430. height:20px;
  1431. display:flex;
  1432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1433. font-weight:400;
  1434. font-style:normal;
  1435. }
  1436. #u28054 .text {
  1437. position:absolute;
  1438. align-self:center;
  1439. padding:0px 0px 0px 0px;
  1440. box-sizing:border-box;
  1441. width:100%;
  1442. }
  1443. #u28054_text {
  1444. border-width:0px;
  1445. white-space:nowrap;
  1446. text-transform:none;
  1447. }
  1448. #u28055 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:0px;
  1454. height:0px;
  1455. }
  1456. #u28056_div {
  1457. border-width:0px;
  1458. position:absolute;
  1459. left:0px;
  1460. top:0px;
  1461. width:878px;
  1462. height:44px;
  1463. background:inherit;
  1464. background-color:rgba(255, 255, 255, 0);
  1465. border:none;
  1466. border-top:0px;
  1467. border-right:0px;
  1468. border-bottom:0px;
  1469. border-radius:0px;
  1470. border-top-left-radius:0px;
  1471. border-bottom-left-radius:0px;
  1472. -moz-box-shadow:none;
  1473. -webkit-box-shadow:none;
  1474. box-shadow:none;
  1475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1476. font-weight:400;
  1477. font-style:normal;
  1478. font-size:12px;
  1479. }
  1480. #u28056 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:176px;
  1484. top:963px;
  1485. width:878px;
  1486. height:44px;
  1487. display:flex;
  1488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1489. font-weight:400;
  1490. font-style:normal;
  1491. font-size:12px;
  1492. }
  1493. #u28056 .text {
  1494. position:absolute;
  1495. align-self:center;
  1496. padding:5px 10px 5px 0px;
  1497. box-sizing:border-box;
  1498. width:100%;
  1499. }
  1500. #u28056_text {
  1501. border-width:0px;
  1502. word-wrap:break-word;
  1503. text-transform:none;
  1504. }
  1505. #u28057_img {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:0px;
  1509. top:0px;
  1510. width:22px;
  1511. height:22px;
  1512. }
  1513. #u28057 {
  1514. border-width:0px;
  1515. position:absolute;
  1516. left:149px;
  1517. top:938px;
  1518. width:22px;
  1519. height:22px;
  1520. display:flex;
  1521. font-family:'Microsoft YaHei', sans-serif;
  1522. font-weight:400;
  1523. font-style:normal;
  1524. font-size:12px;
  1525. color:#FFFFFF;
  1526. }
  1527. #u28057 .text {
  1528. position:absolute;
  1529. align-self:center;
  1530. padding:4px 4px 4px 4px;
  1531. box-sizing:border-box;
  1532. width:100%;
  1533. }
  1534. #u28057_text {
  1535. border-width:0px;
  1536. word-wrap:break-word;
  1537. text-transform:none;
  1538. visibility:hidden;
  1539. }
  1540. #u28058_img {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:0px;
  1544. top:0px;
  1545. width:65px;
  1546. height:2px;
  1547. }
  1548. #u28058 {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:128px;
  1552. top:992px;
  1553. width:64px;
  1554. height:1px;
  1555. display:flex;
  1556. -webkit-transform:rotate(90deg);
  1557. -moz-transform:rotate(90deg);
  1558. -ms-transform:rotate(90deg);
  1559. transform:rotate(90deg);
  1560. }
  1561. #u28058 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u28058_text {
  1569. border-width:0px;
  1570. word-wrap:break-word;
  1571. text-transform:none;
  1572. visibility:hidden;
  1573. }
  1574. #u28059_img {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:22px;
  1580. height:22px;
  1581. }
  1582. #u28059 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:149px;
  1586. top:1025px;
  1587. width:22px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'Microsoft YaHei', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:12px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u28059 .text {
  1597. position:absolute;
  1598. align-self:center;
  1599. padding:4px 4px 4px 4px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u28059_text {
  1604. border-width:0px;
  1605. word-wrap:break-word;
  1606. text-transform:none;
  1607. visibility:hidden;
  1608. }
  1609. #u28060_div {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:0px;
  1613. top:0px;
  1614. width:43px;
  1615. height:20px;
  1616. background:inherit;
  1617. background-color:rgba(255, 255, 255, 0);
  1618. border:none;
  1619. border-radius:0px;
  1620. -moz-box-shadow:none;
  1621. -webkit-box-shadow:none;
  1622. box-shadow:none;
  1623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1624. font-weight:400;
  1625. font-style:normal;
  1626. font-size:14px;
  1627. color:#AAAAAA;
  1628. }
  1629. #u28060 {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:176px;
  1633. top:1025px;
  1634. width:43px;
  1635. height:20px;
  1636. display:flex;
  1637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1638. font-weight:400;
  1639. font-style:normal;
  1640. font-size:14px;
  1641. color:#AAAAAA;
  1642. }
  1643. #u28060 .text {
  1644. position:absolute;
  1645. align-self:center;
  1646. padding:0px 0px 0px 0px;
  1647. box-sizing:border-box;
  1648. width:100%;
  1649. }
  1650. #u28060_text {
  1651. border-width:0px;
  1652. white-space:nowrap;
  1653. text-transform:none;
  1654. }
  1655. #u28061 {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:0px;
  1659. top:0px;
  1660. width:0px;
  1661. height:0px;
  1662. }
  1663. #u28062_div {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:1000px;
  1669. height:60px;
  1670. background:inherit;
  1671. background-color:rgba(255, 255, 255, 1);
  1672. box-sizing:border-box;
  1673. border-width:1px;
  1674. border-style:solid;
  1675. border-color:rgba(215, 215, 215, 1);
  1676. border-radius:0px;
  1677. -moz-box-shadow:none;
  1678. -webkit-box-shadow:none;
  1679. box-shadow:none;
  1680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1681. font-weight:400;
  1682. font-style:normal;
  1683. font-size:14px;
  1684. color:#AAAAAA;
  1685. text-align:center;
  1686. line-height:30px;
  1687. }
  1688. #u28062 {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:100px;
  1692. top:1418px;
  1693. width:1000px;
  1694. height:60px;
  1695. display:flex;
  1696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1697. font-weight:400;
  1698. font-style:normal;
  1699. font-size:14px;
  1700. color:#AAAAAA;
  1701. text-align:center;
  1702. line-height:30px;
  1703. }
  1704. #u28062 .text {
  1705. position:absolute;
  1706. align-self:center;
  1707. padding:5px 10px 5px 10px;
  1708. box-sizing:border-box;
  1709. width:100%;
  1710. }
  1711. #u28062_text {
  1712. border-width:0px;
  1713. word-wrap:break-word;
  1714. text-transform:none;
  1715. visibility:hidden;
  1716. }
  1717. #u28063_div {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:80px;
  1723. height:30px;
  1724. background:inherit;
  1725. background-color:rgba(255, 255, 255, 1);
  1726. box-sizing:border-box;
  1727. border-width:1px;
  1728. border-style:solid;
  1729. border-color:rgba(170, 170, 170, 1);
  1730. border-radius:4px;
  1731. -moz-box-shadow:none;
  1732. -webkit-box-shadow:none;
  1733. box-shadow:none;
  1734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1735. font-weight:400;
  1736. font-style:normal;
  1737. font-size:14px;
  1738. }
  1739. #u28063 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:990px;
  1743. top:1433px;
  1744. width:80px;
  1745. height:30px;
  1746. display:flex;
  1747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:14px;
  1751. }
  1752. #u28063 .text {
  1753. position:absolute;
  1754. align-self:center;
  1755. padding:2px 2px 2px 2px;
  1756. box-sizing:border-box;
  1757. width:100%;
  1758. }
  1759. #u28063_text {
  1760. border-width:0px;
  1761. word-wrap:break-word;
  1762. text-transform:none;
  1763. }
  1764. #u28064 {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:0px;
  1770. height:0px;
  1771. }
  1772. #u28065_img {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:120px;
  1778. height:80px;
  1779. }
  1780. #u28065 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:214px;
  1784. top:739px;
  1785. width:120px;
  1786. height:80px;
  1787. display:flex;
  1788. }
  1789. #u28065 .text {
  1790. position:absolute;
  1791. align-self:center;
  1792. padding:2px 2px 2px 2px;
  1793. box-sizing:border-box;
  1794. width:100%;
  1795. }
  1796. #u28065_text {
  1797. border-width:0px;
  1798. word-wrap:break-word;
  1799. text-transform:none;
  1800. }
  1801. #u28066_img {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:0px;
  1805. top:0px;
  1806. width:120px;
  1807. height:80px;
  1808. }
  1809. #u28066 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:356px;
  1813. top:739px;
  1814. width:120px;
  1815. height:80px;
  1816. display:flex;
  1817. }
  1818. #u28066 .text {
  1819. position:absolute;
  1820. align-self:center;
  1821. padding:2px 2px 2px 2px;
  1822. box-sizing:border-box;
  1823. width:100%;
  1824. }
  1825. #u28066_text {
  1826. border-width:0px;
  1827. word-wrap:break-word;
  1828. text-transform:none;
  1829. }
  1830. #u28067_div {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:320px;
  1836. height:90px;
  1837. background:inherit;
  1838. background-color:rgba(255, 255, 255, 0);
  1839. border:none;
  1840. border-left:0px;
  1841. border-top:0px;
  1842. border-right:0px;
  1843. border-radius:0px;
  1844. border-bottom-right-radius:0px;
  1845. border-bottom-left-radius:0px;
  1846. -moz-box-shadow:none;
  1847. -webkit-box-shadow:none;
  1848. box-shadow:none;
  1849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1850. font-weight:400;
  1851. font-style:normal;
  1852. font-size:14px;
  1853. line-height:30px;
  1854. }
  1855. #u28067 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:140px;
  1859. top:564px;
  1860. width:320px;
  1861. height:90px;
  1862. display:flex;
  1863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:14px;
  1867. line-height:30px;
  1868. }
  1869. #u28067 .text {
  1870. position:absolute;
  1871. align-self:flex-start;
  1872. padding:0px 0px 0px 0px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u28067_text {
  1877. border-width:0px;
  1878. word-wrap:break-word;
  1879. text-transform:none;
  1880. }
  1881. #u28068_div {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:0px;
  1885. top:0px;
  1886. width:320px;
  1887. height:60px;
  1888. background:inherit;
  1889. background-color:rgba(255, 255, 255, 0);
  1890. border:none;
  1891. border-left:0px;
  1892. border-top:0px;
  1893. border-right:0px;
  1894. border-radius:0px;
  1895. border-bottom-right-radius:0px;
  1896. border-bottom-left-radius:0px;
  1897. -moz-box-shadow:none;
  1898. -webkit-box-shadow:none;
  1899. box-shadow:none;
  1900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1901. font-weight:400;
  1902. font-style:normal;
  1903. font-size:14px;
  1904. line-height:30px;
  1905. }
  1906. #u28068 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:460px;
  1910. top:564px;
  1911. width:320px;
  1912. height:60px;
  1913. display:flex;
  1914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:14px;
  1918. line-height:30px;
  1919. }
  1920. #u28068 .text {
  1921. position:absolute;
  1922. align-self:flex-start;
  1923. padding:0px 0px 0px 0px;
  1924. box-sizing:border-box;
  1925. width:100%;
  1926. }
  1927. #u28068_text {
  1928. border-width:0px;
  1929. word-wrap:break-word;
  1930. text-transform:none;
  1931. }
  1932. #u28069_div {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:0px;
  1937. width:320px;
  1938. height:60px;
  1939. background:inherit;
  1940. background-color:rgba(255, 255, 255, 0);
  1941. border:none;
  1942. border-left:0px;
  1943. border-top:0px;
  1944. border-right:0px;
  1945. border-radius:0px;
  1946. border-bottom-right-radius:0px;
  1947. border-bottom-left-radius:0px;
  1948. -moz-box-shadow:none;
  1949. -webkit-box-shadow:none;
  1950. box-shadow:none;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:14px;
  1955. line-height:30px;
  1956. }
  1957. #u28069 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:780px;
  1961. top:564px;
  1962. width:320px;
  1963. height:60px;
  1964. display:flex;
  1965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1966. font-weight:400;
  1967. font-style:normal;
  1968. font-size:14px;
  1969. line-height:30px;
  1970. }
  1971. #u28069 .text {
  1972. position:absolute;
  1973. align-self:flex-start;
  1974. padding:0px 0px 0px 0px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u28069_text {
  1979. border-width:0px;
  1980. word-wrap:break-word;
  1981. text-transform:none;
  1982. }
  1983. #u28070_div {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:83px;
  1989. height:35px;
  1990. background:inherit;
  1991. background-color:rgba(255, 255, 255, 0);
  1992. border:none;
  1993. border-top:0px;
  1994. border-right:0px;
  1995. border-bottom:0px;
  1996. border-radius:0px;
  1997. border-top-left-radius:0px;
  1998. border-bottom-left-radius:0px;
  1999. -moz-box-shadow:none;
  2000. -webkit-box-shadow:none;
  2001. box-shadow:none;
  2002. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2003. font-weight:500;
  2004. font-style:normal;
  2005. font-size:18px;
  2006. }
  2007. #u28070 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:140px;
  2011. top:520px;
  2012. width:83px;
  2013. height:35px;
  2014. display:flex;
  2015. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2016. font-weight:500;
  2017. font-style:normal;
  2018. font-size:18px;
  2019. }
  2020. #u28070 .text {
  2021. position:absolute;
  2022. align-self:center;
  2023. padding:5px 10px 5px 0px;
  2024. box-sizing:border-box;
  2025. width:100%;
  2026. }
  2027. #u28070_text {
  2028. border-width:0px;
  2029. white-space:nowrap;
  2030. text-transform:none;
  2031. }
  2032. #u28071_div {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:323px;
  2038. height:90px;
  2039. background:inherit;
  2040. background-color:rgba(255, 255, 255, 0);
  2041. border:none;
  2042. border-left:0px;
  2043. border-top:0px;
  2044. border-right:0px;
  2045. border-radius:0px;
  2046. border-bottom-right-radius:0px;
  2047. border-bottom-left-radius:0px;
  2048. -moz-box-shadow:none;
  2049. -webkit-box-shadow:none;
  2050. box-shadow:none;
  2051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2052. font-weight:400;
  2053. font-style:normal;
  2054. font-size:14px;
  2055. line-height:30px;
  2056. }
  2057. #u28071 {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:140px;
  2061. top:674px;
  2062. width:323px;
  2063. height:90px;
  2064. display:flex;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:14px;
  2069. line-height:30px;
  2070. }
  2071. #u28071 .text {
  2072. position:absolute;
  2073. align-self:flex-start;
  2074. padding:0px 0px 0px 0px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u28071_text {
  2079. border-width:0px;
  2080. white-space:nowrap;
  2081. text-transform:none;
  2082. }
  2083. #u28072_div {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:320px;
  2089. height:30px;
  2090. background:inherit;
  2091. background-color:rgba(255, 255, 255, 0);
  2092. border:none;
  2093. border-left:0px;
  2094. border-top:0px;
  2095. border-right:0px;
  2096. border-radius:0px;
  2097. border-bottom-right-radius:0px;
  2098. border-bottom-left-radius:0px;
  2099. -moz-box-shadow:none;
  2100. -webkit-box-shadow:none;
  2101. box-shadow:none;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:14px;
  2106. line-height:30px;
  2107. }
  2108. #u28072 {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:460px;
  2112. top:674px;
  2113. width:320px;
  2114. height:30px;
  2115. display:flex;
  2116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2117. font-weight:400;
  2118. font-style:normal;
  2119. font-size:14px;
  2120. line-height:30px;
  2121. }
  2122. #u28072 .text {
  2123. position:absolute;
  2124. align-self:flex-start;
  2125. padding:0px 0px 0px 0px;
  2126. box-sizing:border-box;
  2127. width:100%;
  2128. }
  2129. #u28072_text {
  2130. border-width:0px;
  2131. word-wrap:break-word;
  2132. text-transform:none;
  2133. }
  2134. #u28073_div {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:0px;
  2139. width:320px;
  2140. height:30px;
  2141. background:inherit;
  2142. background-color:rgba(255, 255, 255, 0);
  2143. border:none;
  2144. border-left:0px;
  2145. border-top:0px;
  2146. border-right:0px;
  2147. border-radius:0px;
  2148. border-bottom-right-radius:0px;
  2149. border-bottom-left-radius:0px;
  2150. -moz-box-shadow:none;
  2151. -webkit-box-shadow:none;
  2152. box-shadow:none;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:14px;
  2157. line-height:30px;
  2158. }
  2159. #u28073 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:780px;
  2163. top:674px;
  2164. width:320px;
  2165. height:30px;
  2166. display:flex;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:14px;
  2171. line-height:30px;
  2172. }
  2173. #u28073 .text {
  2174. position:absolute;
  2175. align-self:flex-start;
  2176. padding:0px 0px 0px 0px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u28073_text {
  2181. border-width:0px;
  2182. word-wrap:break-word;
  2183. text-transform:none;
  2184. }
  2185. #u28074 {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:0px;
  2191. height:0px;
  2192. }
  2193. #u28075_div {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:1000px;
  2199. height:1296px;
  2200. background:inherit;
  2201. background-color:rgba(242, 242, 242, 1);
  2202. box-sizing:border-box;
  2203. border-width:1px;
  2204. border-style:solid;
  2205. border-color:rgba(242, 242, 242, 1);
  2206. border-radius:0px;
  2207. -moz-box-shadow:none;
  2208. -webkit-box-shadow:none;
  2209. box-shadow:none;
  2210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2211. font-weight:400;
  2212. font-style:normal;
  2213. font-size:14px;
  2214. color:#AAAAAA;
  2215. text-align:center;
  2216. line-height:30px;
  2217. }
  2218. #u28075 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:3163px;
  2222. top:115px;
  2223. width:1000px;
  2224. height:1296px;
  2225. display:flex;
  2226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2227. font-weight:400;
  2228. font-style:normal;
  2229. font-size:14px;
  2230. color:#AAAAAA;
  2231. text-align:center;
  2232. line-height:30px;
  2233. }
  2234. #u28075 .text {
  2235. position:absolute;
  2236. align-self:center;
  2237. padding:5px 10px 5px 10px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u28075_text {
  2242. border-width:0px;
  2243. word-wrap:break-word;
  2244. text-transform:none;
  2245. visibility:hidden;
  2246. }
  2247. #u28076_div {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:1000px;
  2253. height:580px;
  2254. background:inherit;
  2255. background-color:rgba(255, 255, 255, 1);
  2256. box-sizing:border-box;
  2257. border-width:1px;
  2258. border-style:solid;
  2259. border-color:rgba(242, 242, 242, 1);
  2260. border-radius:0px;
  2261. -moz-box-shadow:none;
  2262. -webkit-box-shadow:none;
  2263. box-shadow:none;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:14px;
  2268. color:#AAAAAA;
  2269. text-align:center;
  2270. line-height:30px;
  2271. }
  2272. #u28076 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:3163px;
  2276. top:266px;
  2277. width:1000px;
  2278. height:580px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:14px;
  2284. color:#AAAAAA;
  2285. text-align:center;
  2286. line-height:30px;
  2287. }
  2288. #u28076 .text {
  2289. position:absolute;
  2290. align-self:center;
  2291. padding:5px 10px 5px 10px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u28076_text {
  2296. border-width:0px;
  2297. word-wrap:break-word;
  2298. text-transform:none;
  2299. visibility:hidden;
  2300. }
  2301. #u28077_div {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:73px;
  2307. height:40px;
  2308. background:inherit;
  2309. background-color:rgba(255, 255, 255, 0);
  2310. border:none;
  2311. border-left:0px;
  2312. border-top:0px;
  2313. border-right:0px;
  2314. border-radius:0px;
  2315. border-bottom-right-radius:0px;
  2316. border-bottom-left-radius:0px;
  2317. -moz-box-shadow:none;
  2318. -webkit-box-shadow:none;
  2319. box-shadow:none;
  2320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2321. font-weight:400;
  2322. font-style:normal;
  2323. font-size:18px;
  2324. }
  2325. #u28077 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:3203px;
  2329. top:282px;
  2330. width:73px;
  2331. height:40px;
  2332. display:flex;
  2333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. font-size:18px;
  2337. }
  2338. #u28077 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:0px 0px 0px 0px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u28077_text {
  2346. border-width:0px;
  2347. white-space:nowrap;
  2348. text-transform:none;
  2349. }
  2350. #u28078_div {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:81px;
  2356. height:30px;
  2357. background:inherit;
  2358. background-color:rgba(255, 255, 255, 0);
  2359. border:none;
  2360. border-top:0px;
  2361. border-right:0px;
  2362. border-bottom:0px;
  2363. border-radius:0px;
  2364. border-top-left-radius:0px;
  2365. border-bottom-left-radius:0px;
  2366. -moz-box-shadow:none;
  2367. -webkit-box-shadow:none;
  2368. box-shadow:none;
  2369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2370. font-weight:400;
  2371. font-style:normal;
  2372. font-size:14px;
  2373. color:#7F7F7F;
  2374. }
  2375. #u28078 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:3203px;
  2379. top:332px;
  2380. width:81px;
  2381. height:30px;
  2382. display:flex;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:14px;
  2387. color:#7F7F7F;
  2388. }
  2389. #u28078 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:5px 10px 5px 0px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u28078_text {
  2397. border-width:0px;
  2398. white-space:nowrap;
  2399. text-transform:none;
  2400. }
  2401. #u28079_div {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:142px;
  2407. height:30px;
  2408. background:inherit;
  2409. background-color:rgba(255, 255, 255, 0);
  2410. border:none;
  2411. border-top:0px;
  2412. border-right:0px;
  2413. border-bottom:0px;
  2414. border-radius:0px;
  2415. border-top-left-radius:0px;
  2416. border-bottom-left-radius:0px;
  2417. -moz-box-shadow:none;
  2418. -webkit-box-shadow:none;
  2419. box-shadow:none;
  2420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:14px;
  2424. color:#1890FF;
  2425. }
  2426. #u28079 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:3284px;
  2430. top:332px;
  2431. width:142px;
  2432. height:30px;
  2433. display:flex;
  2434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2435. font-weight:400;
  2436. font-style:normal;
  2437. font-size:14px;
  2438. color:#1890FF;
  2439. }
  2440. #u28079 .text {
  2441. position:absolute;
  2442. align-self:center;
  2443. padding:5px 10px 5px 0px;
  2444. box-sizing:border-box;
  2445. width:100%;
  2446. }
  2447. #u28079_text {
  2448. border-width:0px;
  2449. white-space:nowrap;
  2450. text-transform:none;
  2451. }
  2452. #u28080_div {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:81px;
  2458. height:30px;
  2459. background:inherit;
  2460. background-color:rgba(255, 255, 255, 0);
  2461. border:none;
  2462. border-top:0px;
  2463. border-right:0px;
  2464. border-bottom:0px;
  2465. border-radius:0px;
  2466. border-top-left-radius:0px;
  2467. border-bottom-left-radius:0px;
  2468. -moz-box-shadow:none;
  2469. -webkit-box-shadow:none;
  2470. box-shadow:none;
  2471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2472. font-weight:400;
  2473. font-style:normal;
  2474. font-size:14px;
  2475. color:#7F7F7F;
  2476. }
  2477. #u28080 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:3523px;
  2481. top:332px;
  2482. width:81px;
  2483. height:30px;
  2484. display:flex;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:14px;
  2489. color:#7F7F7F;
  2490. }
  2491. #u28080 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:5px 10px 5px 0px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u28080_text {
  2499. border-width:0px;
  2500. white-space:nowrap;
  2501. text-transform:none;
  2502. }
  2503. #u28081_div {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:67px;
  2509. height:30px;
  2510. background:inherit;
  2511. background-color:rgba(255, 255, 255, 0);
  2512. border:none;
  2513. border-top:0px;
  2514. border-right:0px;
  2515. border-bottom:0px;
  2516. border-radius:0px;
  2517. border-top-left-radius:0px;
  2518. border-bottom-left-radius:0px;
  2519. -moz-box-shadow:none;
  2520. -webkit-box-shadow:none;
  2521. box-shadow:none;
  2522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2523. font-weight:400;
  2524. font-style:normal;
  2525. font-size:14px;
  2526. }
  2527. #u28081 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:3604px;
  2531. top:332px;
  2532. width:67px;
  2533. height:30px;
  2534. display:flex;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:14px;
  2539. }
  2540. #u28081 .text {
  2541. position:absolute;
  2542. align-self:center;
  2543. padding:5px 10px 5px 0px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u28081_text {
  2548. border-width:0px;
  2549. white-space:nowrap;
  2550. text-transform:none;
  2551. }
  2552. #u28082_div {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:81px;
  2558. height:30px;
  2559. background:inherit;
  2560. background-color:rgba(255, 255, 255, 0);
  2561. border:none;
  2562. border-top:0px;
  2563. border-right:0px;
  2564. border-bottom:0px;
  2565. border-radius:0px;
  2566. border-top-left-radius:0px;
  2567. border-bottom-left-radius:0px;
  2568. -moz-box-shadow:none;
  2569. -webkit-box-shadow:none;
  2570. box-shadow:none;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:14px;
  2575. color:#7F7F7F;
  2576. }
  2577. #u28082 {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:3820px;
  2581. top:332px;
  2582. width:81px;
  2583. height:30px;
  2584. display:flex;
  2585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2586. font-weight:400;
  2587. font-style:normal;
  2588. font-size:14px;
  2589. color:#7F7F7F;
  2590. }
  2591. #u28082 .text {
  2592. position:absolute;
  2593. align-self:center;
  2594. padding:5px 10px 5px 0px;
  2595. box-sizing:border-box;
  2596. width:100%;
  2597. }
  2598. #u28082_text {
  2599. border-width:0px;
  2600. white-space:nowrap;
  2601. text-transform:none;
  2602. }
  2603. #u28083_div {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:0px;
  2607. top:0px;
  2608. width:53px;
  2609. height:30px;
  2610. background:inherit;
  2611. background-color:rgba(255, 255, 255, 0);
  2612. border:none;
  2613. border-top:0px;
  2614. border-right:0px;
  2615. border-bottom:0px;
  2616. border-radius:0px;
  2617. border-top-left-radius:0px;
  2618. border-bottom-left-radius:0px;
  2619. -moz-box-shadow:none;
  2620. -webkit-box-shadow:none;
  2621. box-shadow:none;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:14px;
  2626. }
  2627. #u28083 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:3901px;
  2631. top:332px;
  2632. width:53px;
  2633. height:30px;
  2634. display:flex;
  2635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:14px;
  2639. }
  2640. #u28083 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:5px 10px 5px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u28083_text {
  2648. border-width:0px;
  2649. white-space:nowrap;
  2650. text-transform:none;
  2651. }
  2652. #u28084_div {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:81px;
  2658. height:30px;
  2659. background:inherit;
  2660. background-color:rgba(255, 255, 255, 0);
  2661. border:none;
  2662. border-top:0px;
  2663. border-right:0px;
  2664. border-bottom:0px;
  2665. border-radius:0px;
  2666. border-top-left-radius:0px;
  2667. border-bottom-left-radius:0px;
  2668. -moz-box-shadow:none;
  2669. -webkit-box-shadow:none;
  2670. box-shadow:none;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:14px;
  2675. color:#7F7F7F;
  2676. }
  2677. #u28084 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:3203px;
  2681. top:372px;
  2682. width:81px;
  2683. height:30px;
  2684. display:flex;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:14px;
  2689. color:#7F7F7F;
  2690. }
  2691. #u28084 .text {
  2692. position:absolute;
  2693. align-self:center;
  2694. padding:5px 10px 5px 0px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u28084_text {
  2699. border-width:0px;
  2700. white-space:nowrap;
  2701. text-transform:none;
  2702. }
  2703. #u28085_div {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:81px;
  2709. height:30px;
  2710. background:inherit;
  2711. background-color:rgba(255, 255, 255, 0);
  2712. border:none;
  2713. border-top:0px;
  2714. border-right:0px;
  2715. border-bottom:0px;
  2716. border-radius:0px;
  2717. border-top-left-radius:0px;
  2718. border-bottom-left-radius:0px;
  2719. -moz-box-shadow:none;
  2720. -webkit-box-shadow:none;
  2721. box-shadow:none;
  2722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:14px;
  2726. color:#7F7F7F;
  2727. }
  2728. #u28085 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:3523px;
  2732. top:372px;
  2733. width:81px;
  2734. height:30px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:14px;
  2740. color:#7F7F7F;
  2741. }
  2742. #u28085 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:5px 10px 5px 0px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u28085_text {
  2750. border-width:0px;
  2751. white-space:nowrap;
  2752. text-transform:none;
  2753. }
  2754. #u28086_div {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:67px;
  2760. height:30px;
  2761. background:inherit;
  2762. background-color:rgba(255, 255, 255, 0);
  2763. border:none;
  2764. border-top:0px;
  2765. border-right:0px;
  2766. border-bottom:0px;
  2767. border-radius:0px;
  2768. border-top-left-radius:0px;
  2769. border-bottom-left-radius:0px;
  2770. -moz-box-shadow:none;
  2771. -webkit-box-shadow:none;
  2772. box-shadow:none;
  2773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2774. font-weight:400;
  2775. font-style:normal;
  2776. font-size:14px;
  2777. }
  2778. #u28086 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:3604px;
  2782. top:372px;
  2783. width:67px;
  2784. height:30px;
  2785. display:flex;
  2786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:14px;
  2790. }
  2791. #u28086 .text {
  2792. position:absolute;
  2793. align-self:center;
  2794. padding:5px 10px 5px 0px;
  2795. box-sizing:border-box;
  2796. width:100%;
  2797. }
  2798. #u28086_text {
  2799. border-width:0px;
  2800. white-space:nowrap;
  2801. text-transform:none;
  2802. }
  2803. #u28087_div {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:67px;
  2809. height:30px;
  2810. background:inherit;
  2811. background-color:rgba(255, 255, 255, 0);
  2812. border:none;
  2813. border-top:0px;
  2814. border-right:0px;
  2815. border-bottom:0px;
  2816. border-radius:0px;
  2817. border-top-left-radius:0px;
  2818. border-bottom-left-radius:0px;
  2819. -moz-box-shadow:none;
  2820. -webkit-box-shadow:none;
  2821. box-shadow:none;
  2822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2823. font-weight:400;
  2824. font-style:normal;
  2825. font-size:14px;
  2826. color:#7F7F7F;
  2827. }
  2828. #u28087 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:3820px;
  2832. top:372px;
  2833. width:67px;
  2834. height:30px;
  2835. display:flex;
  2836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2837. font-weight:400;
  2838. font-style:normal;
  2839. font-size:14px;
  2840. color:#7F7F7F;
  2841. }
  2842. #u28087 .text {
  2843. position:absolute;
  2844. align-self:center;
  2845. padding:5px 10px 5px 0px;
  2846. box-sizing:border-box;
  2847. width:100%;
  2848. }
  2849. #u28087_text {
  2850. border-width:0px;
  2851. white-space:nowrap;
  2852. text-transform:none;
  2853. }
  2854. #u28088_div {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:85px;
  2860. height:30px;
  2861. background:inherit;
  2862. background-color:rgba(255, 255, 255, 0);
  2863. border:none;
  2864. border-top:0px;
  2865. border-right:0px;
  2866. border-bottom:0px;
  2867. border-radius:0px;
  2868. border-top-left-radius:0px;
  2869. border-bottom-left-radius:0px;
  2870. -moz-box-shadow:none;
  2871. -webkit-box-shadow:none;
  2872. box-shadow:none;
  2873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. font-size:14px;
  2877. }
  2878. #u28088 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:3901px;
  2882. top:372px;
  2883. width:85px;
  2884. height:30px;
  2885. display:flex;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:14px;
  2890. }
  2891. #u28088 .text {
  2892. position:absolute;
  2893. align-self:center;
  2894. padding:5px 10px 5px 0px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u28088_text {
  2899. border-width:0px;
  2900. white-space:nowrap;
  2901. text-transform:none;
  2902. }
  2903. #u28089_div {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:183px;
  2909. height:30px;
  2910. background:inherit;
  2911. background-color:rgba(255, 255, 255, 0);
  2912. border:none;
  2913. border-top:0px;
  2914. border-right:0px;
  2915. border-bottom:0px;
  2916. border-radius:0px;
  2917. border-top-left-radius:0px;
  2918. border-bottom-left-radius:0px;
  2919. -moz-box-shadow:none;
  2920. -webkit-box-shadow:none;
  2921. box-shadow:none;
  2922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:14px;
  2926. }
  2927. #u28089 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:3284px;
  2931. top:372px;
  2932. width:183px;
  2933. height:30px;
  2934. display:flex;
  2935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2936. font-weight:400;
  2937. font-style:normal;
  2938. font-size:14px;
  2939. }
  2940. #u28089 .text {
  2941. position:absolute;
  2942. align-self:center;
  2943. padding:5px 10px 5px 0px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u28089_text {
  2948. border-width:0px;
  2949. white-space:nowrap;
  2950. text-transform:none;
  2951. }
  2952. #u28090_div {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:81px;
  2958. height:30px;
  2959. background:inherit;
  2960. background-color:rgba(255, 255, 255, 0);
  2961. border:none;
  2962. border-top:0px;
  2963. border-right:0px;
  2964. border-bottom:0px;
  2965. border-radius:0px;
  2966. border-top-left-radius:0px;
  2967. border-bottom-left-radius:0px;
  2968. -moz-box-shadow:none;
  2969. -webkit-box-shadow:none;
  2970. box-shadow:none;
  2971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2972. font-weight:400;
  2973. font-style:normal;
  2974. font-size:14px;
  2975. color:#7F7F7F;
  2976. }
  2977. #u28090 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:3203px;
  2981. top:412px;
  2982. width:81px;
  2983. height:30px;
  2984. display:flex;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:14px;
  2989. color:#7F7F7F;
  2990. }
  2991. #u28090 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:5px 10px 5px 0px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u28090_text {
  2999. border-width:0px;
  3000. white-space:nowrap;
  3001. text-transform:none;
  3002. }
  3003. #u28091_div {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:126px;
  3009. height:30px;
  3010. background:inherit;
  3011. background-color:rgba(255, 255, 255, 0);
  3012. border:none;
  3013. border-top:0px;
  3014. border-right:0px;
  3015. border-bottom:0px;
  3016. border-radius:0px;
  3017. border-top-left-radius:0px;
  3018. border-bottom-left-radius:0px;
  3019. -moz-box-shadow:none;
  3020. -webkit-box-shadow:none;
  3021. box-shadow:none;
  3022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3023. font-weight:400;
  3024. font-style:normal;
  3025. font-size:14px;
  3026. }
  3027. #u28091 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:3284px;
  3031. top:412px;
  3032. width:126px;
  3033. height:30px;
  3034. display:flex;
  3035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:14px;
  3039. }
  3040. #u28091 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:5px 10px 5px 0px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u28091_text {
  3048. border-width:0px;
  3049. white-space:nowrap;
  3050. text-transform:none;
  3051. }
  3052. #u28092_div {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:0px;
  3056. top:0px;
  3057. width:81px;
  3058. height:30px;
  3059. background:inherit;
  3060. background-color:rgba(255, 255, 255, 0);
  3061. border:none;
  3062. border-top:0px;
  3063. border-right:0px;
  3064. border-bottom:0px;
  3065. border-radius:0px;
  3066. border-top-left-radius:0px;
  3067. border-bottom-left-radius:0px;
  3068. -moz-box-shadow:none;
  3069. -webkit-box-shadow:none;
  3070. box-shadow:none;
  3071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3072. font-weight:400;
  3073. font-style:normal;
  3074. font-size:14px;
  3075. color:#7F7F7F;
  3076. }
  3077. #u28092 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:3203px;
  3081. top:452px;
  3082. width:81px;
  3083. height:30px;
  3084. display:flex;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:14px;
  3089. color:#7F7F7F;
  3090. }
  3091. #u28092 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:5px 10px 5px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u28092_text {
  3099. border-width:0px;
  3100. white-space:nowrap;
  3101. text-transform:none;
  3102. }
  3103. #u28093_div {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:263px;
  3109. height:30px;
  3110. background:inherit;
  3111. background-color:rgba(255, 255, 255, 0);
  3112. border:none;
  3113. border-top:0px;
  3114. border-right:0px;
  3115. border-bottom:0px;
  3116. border-radius:0px;
  3117. border-top-left-radius:0px;
  3118. border-bottom-left-radius:0px;
  3119. -moz-box-shadow:none;
  3120. -webkit-box-shadow:none;
  3121. box-shadow:none;
  3122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3123. font-weight:400;
  3124. font-style:normal;
  3125. font-size:14px;
  3126. }
  3127. #u28093 {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:3284px;
  3131. top:452px;
  3132. width:263px;
  3133. height:30px;
  3134. display:flex;
  3135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3136. font-weight:400;
  3137. font-style:normal;
  3138. font-size:14px;
  3139. }
  3140. #u28093 .text {
  3141. position:absolute;
  3142. align-self:center;
  3143. padding:5px 10px 5px 0px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u28093_text {
  3148. border-width:0px;
  3149. white-space:nowrap;
  3150. text-transform:none;
  3151. }
  3152. #u28094_img {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:942px;
  3158. height:2px;
  3159. }
  3160. #u28094 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:3203px;
  3164. top:500px;
  3165. width:941px;
  3166. height:1px;
  3167. display:flex;
  3168. }
  3169. #u28094 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:2px 2px 2px 2px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u28094_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. visibility:hidden;
  3181. }
  3182. #u28095_div {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:0px;
  3187. width:1000px;
  3188. height:200px;
  3189. background:inherit;
  3190. background-color:rgba(255, 255, 255, 1);
  3191. box-sizing:border-box;
  3192. border-width:1px;
  3193. border-style:solid;
  3194. border-color:rgba(215, 215, 215, 1);
  3195. border-radius:0px;
  3196. -moz-box-shadow:none;
  3197. -webkit-box-shadow:none;
  3198. box-shadow:none;
  3199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3200. font-weight:400;
  3201. font-style:normal;
  3202. font-size:14px;
  3203. color:#AAAAAA;
  3204. text-align:center;
  3205. line-height:30px;
  3206. }
  3207. #u28095 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:3164px;
  3211. top:55px;
  3212. width:1000px;
  3213. height:200px;
  3214. display:flex;
  3215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3216. font-weight:400;
  3217. font-style:normal;
  3218. font-size:14px;
  3219. color:#AAAAAA;
  3220. text-align:center;
  3221. line-height:30px;
  3222. }
  3223. #u28095 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:5px 10px 5px 10px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u28095_text {
  3231. border-width:0px;
  3232. word-wrap:break-word;
  3233. text-transform:none;
  3234. visibility:hidden;
  3235. }
  3236. #u28096_div {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:83px;
  3242. height:35px;
  3243. background:inherit;
  3244. background-color:rgba(255, 255, 255, 0);
  3245. border:none;
  3246. border-top:0px;
  3247. border-right:0px;
  3248. border-bottom:0px;
  3249. border-radius:0px;
  3250. border-top-left-radius:0px;
  3251. border-bottom-left-radius:0px;
  3252. -moz-box-shadow:none;
  3253. -webkit-box-shadow:none;
  3254. box-shadow:none;
  3255. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3256. font-weight:500;
  3257. font-style:normal;
  3258. font-size:18px;
  3259. }
  3260. #u28096 {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:3184px;
  3264. top:73px;
  3265. width:83px;
  3266. height:35px;
  3267. display:flex;
  3268. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3269. font-weight:500;
  3270. font-style:normal;
  3271. font-size:18px;
  3272. }
  3273. #u28096 .text {
  3274. position:absolute;
  3275. align-self:center;
  3276. padding:5px 10px 5px 0px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u28096_text {
  3281. border-width:0px;
  3282. white-space:nowrap;
  3283. text-transform:none;
  3284. }
  3285. #u28097_div {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:107px;
  3291. height:43px;
  3292. background:inherit;
  3293. background-color:rgba(255, 255, 255, 0);
  3294. border:none;
  3295. border-top:0px;
  3296. border-right:0px;
  3297. border-bottom:0px;
  3298. border-radius:0px;
  3299. border-top-left-radius:0px;
  3300. border-bottom-left-radius:0px;
  3301. -moz-box-shadow:none;
  3302. -webkit-box-shadow:none;
  3303. box-shadow:none;
  3304. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3305. font-weight:500;
  3306. font-style:normal;
  3307. font-size:24px;
  3308. }
  3309. #u28097 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:3194px;
  3313. top:124px;
  3314. width:107px;
  3315. height:43px;
  3316. display:flex;
  3317. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3318. font-weight:500;
  3319. font-style:normal;
  3320. font-size:24px;
  3321. }
  3322. #u28097 .text {
  3323. position:absolute;
  3324. align-self:center;
  3325. padding:5px 10px 5px 0px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u28097_text {
  3330. border-width:0px;
  3331. white-space:nowrap;
  3332. text-transform:none;
  3333. }
  3334. #u28098_img {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:108px;
  3340. height:108px;
  3341. }
  3342. #u28098 {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:4014px;
  3346. top:125px;
  3347. width:108px;
  3348. height:108px;
  3349. display:flex;
  3350. -webkit-transform:rotate(315deg);
  3351. -moz-transform:rotate(315deg);
  3352. -ms-transform:rotate(315deg);
  3353. transform:rotate(315deg);
  3354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:28px;
  3358. color:#F59A23;
  3359. }
  3360. #u28098 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 2px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u28098_text {
  3368. border-width:0px;
  3369. word-wrap:break-word;
  3370. text-transform:none;
  3371. }
  3372. #u28099_div {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:325px;
  3378. height:60px;
  3379. background:inherit;
  3380. background-color:rgba(255, 255, 255, 0);
  3381. border:none;
  3382. border-left:0px;
  3383. border-top:0px;
  3384. border-right:0px;
  3385. border-radius:0px;
  3386. border-bottom-right-radius:0px;
  3387. border-bottom-left-radius:0px;
  3388. -moz-box-shadow:none;
  3389. -webkit-box-shadow:none;
  3390. box-shadow:none;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:14px;
  3395. line-height:30px;
  3396. }
  3397. #u28099 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:3194px;
  3401. top:179px;
  3402. width:325px;
  3403. height:60px;
  3404. display:flex;
  3405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. font-size:14px;
  3409. line-height:30px;
  3410. }
  3411. #u28099 .text {
  3412. position:absolute;
  3413. align-self:flex-start;
  3414. padding:0px 0px 0px 0px;
  3415. box-sizing:border-box;
  3416. width:100%;
  3417. }
  3418. #u28099_text {
  3419. border-width:0px;
  3420. word-wrap:break-word;
  3421. text-transform:none;
  3422. }
  3423. #u28100_img {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:17px;
  3429. height:17px;
  3430. }
  3431. #u28100 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:4136px;
  3435. top:77px;
  3436. width:17px;
  3437. height:17px;
  3438. display:flex;
  3439. }
  3440. #u28100 .text {
  3441. position:absolute;
  3442. align-self:center;
  3443. padding:2px 2px 2px 2px;
  3444. box-sizing:border-box;
  3445. width:100%;
  3446. }
  3447. #u28100_text {
  3448. border-width:0px;
  3449. word-wrap:break-word;
  3450. text-transform:none;
  3451. visibility:hidden;
  3452. }
  3453. #u28101 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:0px;
  3459. height:0px;
  3460. }
  3461. #u28102_div {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:1000px;
  3467. height:611px;
  3468. background:inherit;
  3469. background-color:rgba(255, 255, 255, 1);
  3470. box-sizing:border-box;
  3471. border-width:1px;
  3472. border-style:solid;
  3473. border-color:rgba(242, 242, 242, 1);
  3474. border-radius:0px;
  3475. -moz-box-shadow:none;
  3476. -webkit-box-shadow:none;
  3477. box-shadow:none;
  3478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3479. font-weight:400;
  3480. font-style:normal;
  3481. font-size:14px;
  3482. color:#AAAAAA;
  3483. text-align:center;
  3484. line-height:30px;
  3485. }
  3486. #u28102 {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:3163px;
  3490. top:850px;
  3491. width:1000px;
  3492. height:611px;
  3493. display:flex;
  3494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3495. font-weight:400;
  3496. font-style:normal;
  3497. font-size:14px;
  3498. color:#AAAAAA;
  3499. text-align:center;
  3500. line-height:30px;
  3501. }
  3502. #u28102 .text {
  3503. position:absolute;
  3504. align-self:center;
  3505. padding:5px 10px 5px 10px;
  3506. box-sizing:border-box;
  3507. width:100%;
  3508. }
  3509. #u28102_text {
  3510. border-width:0px;
  3511. word-wrap:break-word;
  3512. text-transform:none;
  3513. visibility:hidden;
  3514. }
  3515. #u28103_div {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:73px;
  3521. height:40px;
  3522. background:inherit;
  3523. background-color:rgba(255, 255, 255, 0);
  3524. border:none;
  3525. border-left:0px;
  3526. border-top:0px;
  3527. border-right:0px;
  3528. border-radius:0px;
  3529. border-bottom-right-radius:0px;
  3530. border-bottom-left-radius:0px;
  3531. -moz-box-shadow:none;
  3532. -webkit-box-shadow:none;
  3533. box-shadow:none;
  3534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:18px;
  3538. }
  3539. #u28103 {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:3203px;
  3543. top:866px;
  3544. width:73px;
  3545. height:40px;
  3546. display:flex;
  3547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3548. font-weight:400;
  3549. font-style:normal;
  3550. font-size:18px;
  3551. }
  3552. #u28103 .text {
  3553. position:absolute;
  3554. align-self:center;
  3555. padding:0px 0px 0px 0px;
  3556. box-sizing:border-box;
  3557. width:100%;
  3558. }
  3559. #u28103_text {
  3560. border-width:0px;
  3561. white-space:nowrap;
  3562. text-transform:none;
  3563. }
  3564. #u28104 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:0px;
  3570. height:0px;
  3571. }
  3572. #u28105_div {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:175px;
  3578. height:20px;
  3579. background:inherit;
  3580. background-color:rgba(255, 255, 255, 0);
  3581. border:none;
  3582. border-radius:0px;
  3583. -moz-box-shadow:none;
  3584. -webkit-box-shadow:none;
  3585. box-shadow:none;
  3586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. }
  3590. #u28105 {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:3242px;
  3594. top:1296px;
  3595. width:175px;
  3596. height:20px;
  3597. display:flex;
  3598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3599. font-weight:400;
  3600. font-style:normal;
  3601. }
  3602. #u28105 .text {
  3603. position:absolute;
  3604. align-self:flex-start;
  3605. padding:0px 0px 0px 0px;
  3606. box-sizing:border-box;
  3607. width:100%;
  3608. }
  3609. #u28105_text {
  3610. border-width:0px;
  3611. white-space:nowrap;
  3612. text-transform:none;
  3613. }
  3614. #u28106_img {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:22px;
  3620. height:22px;
  3621. }
  3622. #u28106 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:3212px;
  3626. top:1294px;
  3627. width:22px;
  3628. height:22px;
  3629. display:flex;
  3630. font-family:'Microsoft YaHei', sans-serif;
  3631. font-weight:400;
  3632. font-style:normal;
  3633. font-size:12px;
  3634. color:#FFFFFF;
  3635. }
  3636. #u28106 .text {
  3637. position:absolute;
  3638. align-self:center;
  3639. padding:4px 4px 4px 4px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u28106_text {
  3644. border-width:0px;
  3645. word-wrap:break-word;
  3646. text-transform:none;
  3647. visibility:hidden;
  3648. }
  3649. #u28107_div {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:878px;
  3655. height:27px;
  3656. background:inherit;
  3657. background-color:rgba(255, 255, 255, 0);
  3658. border:none;
  3659. border-top:0px;
  3660. border-right:0px;
  3661. border-bottom:0px;
  3662. border-radius:0px;
  3663. border-top-left-radius:0px;
  3664. border-bottom-left-radius:0px;
  3665. -moz-box-shadow:none;
  3666. -webkit-box-shadow:none;
  3667. box-shadow:none;
  3668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3669. font-weight:400;
  3670. font-style:normal;
  3671. font-size:12px;
  3672. }
  3673. #u28107 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:3239px;
  3677. top:1316px;
  3678. width:878px;
  3679. height:27px;
  3680. display:flex;
  3681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:12px;
  3685. }
  3686. #u28107 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:5px 10px 5px 0px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u28107_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. }
  3698. #u28108_img {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:55px;
  3704. height:2px;
  3705. }
  3706. #u28108 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:3196px;
  3710. top:1343px;
  3711. width:54px;
  3712. height:1px;
  3713. display:flex;
  3714. -webkit-transform:rotate(90deg);
  3715. -moz-transform:rotate(90deg);
  3716. -ms-transform:rotate(90deg);
  3717. transform:rotate(90deg);
  3718. }
  3719. #u28108 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 2px 2px 2px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u28108_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. visibility:hidden;
  3731. }
  3732. #u28109_img {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:22px;
  3738. height:22px;
  3739. }
  3740. #u28109 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:3212px;
  3744. top:1359px;
  3745. width:22px;
  3746. height:22px;
  3747. display:flex;
  3748. font-family:'Microsoft YaHei', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:12px;
  3752. color:#FFFFFF;
  3753. }
  3754. #u28109 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:4px 4px 4px 4px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u28109_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. visibility:hidden;
  3766. }
  3767. #u28110_div {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:189px;
  3773. height:20px;
  3774. background:inherit;
  3775. background-color:rgba(255, 255, 255, 0);
  3776. border:none;
  3777. border-radius:0px;
  3778. -moz-box-shadow:none;
  3779. -webkit-box-shadow:none;
  3780. box-shadow:none;
  3781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3782. font-weight:400;
  3783. font-style:normal;
  3784. }
  3785. #u28110 {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:3239px;
  3789. top:1359px;
  3790. width:189px;
  3791. height:20px;
  3792. display:flex;
  3793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. }
  3797. #u28110 .text {
  3798. position:absolute;
  3799. align-self:flex-start;
  3800. padding:0px 0px 0px 0px;
  3801. box-sizing:border-box;
  3802. width:100%;
  3803. }
  3804. #u28110_text {
  3805. border-width:0px;
  3806. white-space:nowrap;
  3807. text-transform:none;
  3808. }
  3809. #u28111 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:0px;
  3815. height:0px;
  3816. }
  3817. #u28112_div {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:175px;
  3823. height:20px;
  3824. background:inherit;
  3825. background-color:rgba(255, 255, 255, 0);
  3826. border:none;
  3827. border-radius:0px;
  3828. -moz-box-shadow:none;
  3829. -webkit-box-shadow:none;
  3830. box-shadow:none;
  3831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. }
  3835. #u28112 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:3239px;
  3839. top:1175px;
  3840. width:175px;
  3841. height:20px;
  3842. display:flex;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. }
  3847. #u28112 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:0px 0px 0px 0px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u28112_text {
  3855. border-width:0px;
  3856. white-space:nowrap;
  3857. text-transform:none;
  3858. }
  3859. #u28113 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:0px;
  3865. height:0px;
  3866. }
  3867. #u28114_div {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:878px;
  3873. height:61px;
  3874. background:inherit;
  3875. background-color:rgba(255, 255, 255, 0);
  3876. border:none;
  3877. border-top:0px;
  3878. border-right:0px;
  3879. border-bottom:0px;
  3880. border-radius:0px;
  3881. border-top-left-radius:0px;
  3882. border-bottom-left-radius:0px;
  3883. -moz-box-shadow:none;
  3884. -webkit-box-shadow:none;
  3885. box-shadow:none;
  3886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. font-size:12px;
  3890. }
  3891. #u28114 {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:3239px;
  3895. top:1195px;
  3896. width:878px;
  3897. height:61px;
  3898. display:flex;
  3899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3900. font-weight:400;
  3901. font-style:normal;
  3902. font-size:12px;
  3903. }
  3904. #u28114 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:5px 10px 5px 0px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u28114_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. }
  3916. #u28115_img {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:61px;
  3922. height:41px;
  3923. }
  3924. #u28115 {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:3301px;
  3928. top:1239px;
  3929. width:61px;
  3930. height:41px;
  3931. display:flex;
  3932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3933. font-weight:400;
  3934. font-style:normal;
  3935. }
  3936. #u28115 .text {
  3937. position:absolute;
  3938. align-self:center;
  3939. padding:0px 0px 0px 0px;
  3940. box-sizing:border-box;
  3941. width:100%;
  3942. }
  3943. #u28115_text {
  3944. border-width:0px;
  3945. word-wrap:break-word;
  3946. text-transform:none;
  3947. visibility:hidden;
  3948. }
  3949. #u28116_img {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:0px;
  3953. top:0px;
  3954. width:61px;
  3955. height:41px;
  3956. }
  3957. #u28116 {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:3372px;
  3961. top:1239px;
  3962. width:61px;
  3963. height:41px;
  3964. display:flex;
  3965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. }
  3969. #u28116 .text {
  3970. position:absolute;
  3971. align-self:center;
  3972. padding:0px 0px 0px 0px;
  3973. box-sizing:border-box;
  3974. width:100%;
  3975. }
  3976. #u28116_text {
  3977. border-width:0px;
  3978. word-wrap:break-word;
  3979. text-transform:none;
  3980. visibility:hidden;
  3981. }
  3982. #u28117_img {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:61px;
  3988. height:41px;
  3989. }
  3990. #u28117 {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:3443px;
  3994. top:1239px;
  3995. width:61px;
  3996. height:41px;
  3997. display:flex;
  3998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. }
  4002. #u28117 .text {
  4003. position:absolute;
  4004. align-self:center;
  4005. padding:0px 0px 0px 0px;
  4006. box-sizing:border-box;
  4007. width:100%;
  4008. }
  4009. #u28117_text {
  4010. border-width:0px;
  4011. word-wrap:break-word;
  4012. text-transform:none;
  4013. visibility:hidden;
  4014. }
  4015. #u28118_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:61px;
  4021. height:41px;
  4022. }
  4023. #u28118 {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:3514px;
  4027. top:1239px;
  4028. width:61px;
  4029. height:41px;
  4030. display:flex;
  4031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4032. font-weight:400;
  4033. font-style:normal;
  4034. }
  4035. #u28118 .text {
  4036. position:absolute;
  4037. align-self:center;
  4038. padding:0px 0px 0px 0px;
  4039. box-sizing:border-box;
  4040. width:100%;
  4041. }
  4042. #u28118_text {
  4043. border-width:0px;
  4044. word-wrap:break-word;
  4045. text-transform:none;
  4046. visibility:hidden;
  4047. }
  4048. #u28119_img {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:61px;
  4054. height:41px;
  4055. }
  4056. #u28119 {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:3585px;
  4060. top:1239px;
  4061. width:61px;
  4062. height:41px;
  4063. display:flex;
  4064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. }
  4068. #u28119 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:0px 0px 0px 0px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u28119_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u28120_img {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:61px;
  4087. height:41px;
  4088. }
  4089. #u28120 {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:3656px;
  4093. top:1239px;
  4094. width:61px;
  4095. height:41px;
  4096. display:flex;
  4097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. }
  4101. #u28120 .text {
  4102. position:absolute;
  4103. align-self:center;
  4104. padding:0px 0px 0px 0px;
  4105. box-sizing:border-box;
  4106. width:100%;
  4107. }
  4108. #u28120_text {
  4109. border-width:0px;
  4110. word-wrap:break-word;
  4111. text-transform:none;
  4112. visibility:hidden;
  4113. }
  4114. #u28121_img {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:22px;
  4120. height:22px;
  4121. }
  4122. #u28121 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:3212px;
  4126. top:1175px;
  4127. width:22px;
  4128. height:22px;
  4129. display:flex;
  4130. font-family:'Microsoft YaHei', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. font-size:12px;
  4134. color:#FFFFFF;
  4135. }
  4136. #u28121 .text {
  4137. position:absolute;
  4138. align-self:center;
  4139. padding:4px 4px 4px 4px;
  4140. box-sizing:border-box;
  4141. width:100%;
  4142. }
  4143. #u28121_text {
  4144. border-width:0px;
  4145. word-wrap:break-word;
  4146. text-transform:none;
  4147. visibility:hidden;
  4148. }
  4149. #u28122_img {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:87px;
  4155. height:2px;
  4156. }
  4157. #u28122 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:3181px;
  4161. top:1240px;
  4162. width:86px;
  4163. height:1px;
  4164. display:flex;
  4165. -webkit-transform:rotate(90deg);
  4166. -moz-transform:rotate(90deg);
  4167. -ms-transform:rotate(90deg);
  4168. transform:rotate(90deg);
  4169. }
  4170. #u28122 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 2px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u28122_text {
  4178. border-width:0px;
  4179. word-wrap:break-word;
  4180. text-transform:none;
  4181. visibility:hidden;
  4182. }
  4183. #u28123 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:0px;
  4189. height:0px;
  4190. }
  4191. #u28124_div {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:0px;
  4195. top:0px;
  4196. width:175px;
  4197. height:20px;
  4198. background:inherit;
  4199. background-color:rgba(255, 255, 255, 0);
  4200. border:none;
  4201. border-radius:0px;
  4202. -moz-box-shadow:none;
  4203. -webkit-box-shadow:none;
  4204. box-shadow:none;
  4205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. }
  4209. #u28124 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:3239px;
  4213. top:932px;
  4214. width:175px;
  4215. height:20px;
  4216. display:flex;
  4217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4218. font-weight:400;
  4219. font-style:normal;
  4220. }
  4221. #u28124 .text {
  4222. position:absolute;
  4223. align-self:center;
  4224. padding:0px 0px 0px 0px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u28124_text {
  4229. border-width:0px;
  4230. white-space:nowrap;
  4231. text-transform:none;
  4232. }
  4233. #u28125 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:0px;
  4239. height:0px;
  4240. }
  4241. #u28126_div {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:878px;
  4247. height:44px;
  4248. background:inherit;
  4249. background-color:rgba(255, 255, 255, 0);
  4250. border:none;
  4251. border-top:0px;
  4252. border-right:0px;
  4253. border-bottom:0px;
  4254. border-radius:0px;
  4255. border-top-left-radius:0px;
  4256. border-bottom-left-radius:0px;
  4257. -moz-box-shadow:none;
  4258. -webkit-box-shadow:none;
  4259. box-shadow:none;
  4260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4261. font-weight:400;
  4262. font-style:normal;
  4263. font-size:12px;
  4264. }
  4265. #u28126 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:3239px;
  4269. top:957px;
  4270. width:878px;
  4271. height:44px;
  4272. display:flex;
  4273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4274. font-weight:400;
  4275. font-style:normal;
  4276. font-size:12px;
  4277. }
  4278. #u28126 .text {
  4279. position:absolute;
  4280. align-self:center;
  4281. padding:5px 10px 5px 0px;
  4282. box-sizing:border-box;
  4283. width:100%;
  4284. }
  4285. #u28126_text {
  4286. border-width:0px;
  4287. word-wrap:break-word;
  4288. text-transform:none;
  4289. }
  4290. #u28127_img {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:0px;
  4294. top:0px;
  4295. width:22px;
  4296. height:22px;
  4297. }
  4298. #u28127 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:3212px;
  4302. top:932px;
  4303. width:22px;
  4304. height:22px;
  4305. display:flex;
  4306. font-family:'Microsoft YaHei', sans-serif;
  4307. font-weight:400;
  4308. font-style:normal;
  4309. font-size:12px;
  4310. color:#FFFFFF;
  4311. }
  4312. #u28127 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:4px 4px 4px 4px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u28127_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. visibility:hidden;
  4324. }
  4325. #u28128_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:61px;
  4331. height:2px;
  4332. }
  4333. #u28128 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:3194px;
  4337. top:982px;
  4338. width:60px;
  4339. height:1px;
  4340. display:flex;
  4341. -webkit-transform:rotate(90deg);
  4342. -moz-transform:rotate(90deg);
  4343. -ms-transform:rotate(90deg);
  4344. transform:rotate(90deg);
  4345. }
  4346. #u28128 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 2px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u28128_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. visibility:hidden;
  4358. }
  4359. #u28129 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:0px;
  4365. height:0px;
  4366. }
  4367. #u28130_div {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:175px;
  4373. height:20px;
  4374. background:inherit;
  4375. background-color:rgba(255, 255, 255, 0);
  4376. border:none;
  4377. border-radius:0px;
  4378. -moz-box-shadow:none;
  4379. -webkit-box-shadow:none;
  4380. box-shadow:none;
  4381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4382. font-weight:400;
  4383. font-style:normal;
  4384. }
  4385. #u28130 {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:3239px;
  4389. top:1019px;
  4390. width:175px;
  4391. height:20px;
  4392. display:flex;
  4393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4394. font-weight:400;
  4395. font-style:normal;
  4396. }
  4397. #u28130 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:0px 0px 0px 0px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u28130_text {
  4405. border-width:0px;
  4406. white-space:nowrap;
  4407. text-transform:none;
  4408. }
  4409. #u28131 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:0px;
  4415. height:0px;
  4416. }
  4417. #u28132_div {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:0px;
  4421. top:0px;
  4422. width:878px;
  4423. height:44px;
  4424. background:inherit;
  4425. background-color:rgba(255, 255, 255, 0);
  4426. border:none;
  4427. border-top:0px;
  4428. border-right:0px;
  4429. border-bottom:0px;
  4430. border-radius:0px;
  4431. border-top-left-radius:0px;
  4432. border-bottom-left-radius:0px;
  4433. -moz-box-shadow:none;
  4434. -webkit-box-shadow:none;
  4435. box-shadow:none;
  4436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:12px;
  4440. }
  4441. #u28132 {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:3239px;
  4445. top:1044px;
  4446. width:878px;
  4447. height:44px;
  4448. display:flex;
  4449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4450. font-weight:400;
  4451. font-style:normal;
  4452. font-size:12px;
  4453. }
  4454. #u28132 .text {
  4455. position:absolute;
  4456. align-self:center;
  4457. padding:5px 10px 5px 0px;
  4458. box-sizing:border-box;
  4459. width:100%;
  4460. }
  4461. #u28132_text {
  4462. border-width:0px;
  4463. word-wrap:break-word;
  4464. text-transform:none;
  4465. }
  4466. #u28133_img {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:22px;
  4472. height:22px;
  4473. }
  4474. #u28133 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:3212px;
  4478. top:1019px;
  4479. width:22px;
  4480. height:22px;
  4481. display:flex;
  4482. font-family:'Microsoft YaHei', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:12px;
  4486. color:#FFFFFF;
  4487. }
  4488. #u28133 .text {
  4489. position:absolute;
  4490. align-self:center;
  4491. padding:4px 4px 4px 4px;
  4492. box-sizing:border-box;
  4493. width:100%;
  4494. }
  4495. #u28133_text {
  4496. border-width:0px;
  4497. word-wrap:break-word;
  4498. text-transform:none;
  4499. visibility:hidden;
  4500. }
  4501. #u28134_img {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:57px;
  4507. height:2px;
  4508. }
  4509. #u28134 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:3196px;
  4513. top:1067px;
  4514. width:56px;
  4515. height:1px;
  4516. display:flex;
  4517. -webkit-transform:rotate(90deg);
  4518. -moz-transform:rotate(90deg);
  4519. -ms-transform:rotate(90deg);
  4520. transform:rotate(90deg);
  4521. }
  4522. #u28134 .text {
  4523. position:absolute;
  4524. align-self:center;
  4525. padding:2px 2px 2px 2px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u28134_text {
  4530. border-width:0px;
  4531. word-wrap:break-word;
  4532. text-transform:none;
  4533. visibility:hidden;
  4534. }
  4535. #u28135 {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:0px;
  4539. top:0px;
  4540. width:0px;
  4541. height:0px;
  4542. }
  4543. #u28136_div {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:175px;
  4549. height:20px;
  4550. background:inherit;
  4551. background-color:rgba(255, 255, 255, 0);
  4552. border:none;
  4553. border-radius:0px;
  4554. -moz-box-shadow:none;
  4555. -webkit-box-shadow:none;
  4556. box-shadow:none;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. }
  4561. #u28136 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:3239px;
  4565. top:1106px;
  4566. width:175px;
  4567. height:20px;
  4568. display:flex;
  4569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. }
  4573. #u28136 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:0px 0px 0px 0px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u28136_text {
  4581. border-width:0px;
  4582. white-space:nowrap;
  4583. text-transform:none;
  4584. }
  4585. #u28137 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:0px;
  4591. height:0px;
  4592. }
  4593. #u28138_div {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:878px;
  4599. height:27px;
  4600. background:inherit;
  4601. background-color:rgba(255, 255, 255, 0);
  4602. border:none;
  4603. border-top:0px;
  4604. border-right:0px;
  4605. border-bottom:0px;
  4606. border-radius:0px;
  4607. border-top-left-radius:0px;
  4608. border-bottom-left-radius:0px;
  4609. -moz-box-shadow:none;
  4610. -webkit-box-shadow:none;
  4611. box-shadow:none;
  4612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4613. font-weight:400;
  4614. font-style:normal;
  4615. font-size:12px;
  4616. }
  4617. #u28138 {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:3239px;
  4621. top:1131px;
  4622. width:878px;
  4623. height:27px;
  4624. display:flex;
  4625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4626. font-weight:400;
  4627. font-style:normal;
  4628. font-size:12px;
  4629. }
  4630. #u28138 .text {
  4631. position:absolute;
  4632. align-self:center;
  4633. padding:5px 10px 5px 0px;
  4634. box-sizing:border-box;
  4635. width:100%;
  4636. }
  4637. #u28138_text {
  4638. border-width:0px;
  4639. word-wrap:break-word;
  4640. text-transform:none;
  4641. }
  4642. #u28139_img {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:22px;
  4648. height:22px;
  4649. }
  4650. #u28139 {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:3212px;
  4654. top:1106px;
  4655. width:22px;
  4656. height:22px;
  4657. display:flex;
  4658. font-family:'Microsoft YaHei', sans-serif;
  4659. font-weight:400;
  4660. font-style:normal;
  4661. font-size:12px;
  4662. color:#FFFFFF;
  4663. }
  4664. #u28139 .text {
  4665. position:absolute;
  4666. align-self:center;
  4667. padding:4px 4px 4px 4px;
  4668. box-sizing:border-box;
  4669. width:100%;
  4670. }
  4671. #u28139_text {
  4672. border-width:0px;
  4673. word-wrap:break-word;
  4674. text-transform:none;
  4675. visibility:hidden;
  4676. }
  4677. #u28140_img {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:0px;
  4681. top:0px;
  4682. width:39px;
  4683. height:2px;
  4684. }
  4685. #u28140 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:3205px;
  4689. top:1145px;
  4690. width:38px;
  4691. height:1px;
  4692. display:flex;
  4693. -webkit-transform:rotate(90deg);
  4694. -moz-transform:rotate(90deg);
  4695. -ms-transform:rotate(90deg);
  4696. transform:rotate(90deg);
  4697. }
  4698. #u28140 .text {
  4699. position:absolute;
  4700. align-self:center;
  4701. padding:2px 2px 2px 2px;
  4702. box-sizing:border-box;
  4703. width:100%;
  4704. }
  4705. #u28140_text {
  4706. border-width:0px;
  4707. word-wrap:break-word;
  4708. text-transform:none;
  4709. visibility:hidden;
  4710. }
  4711. #u28141 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:0px;
  4715. top:0px;
  4716. width:0px;
  4717. height:0px;
  4718. }
  4719. #u28142_img {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:120px;
  4725. height:80px;
  4726. }
  4727. #u28142 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:3277px;
  4731. top:739px;
  4732. width:120px;
  4733. height:80px;
  4734. display:flex;
  4735. }
  4736. #u28142 .text {
  4737. position:absolute;
  4738. align-self:center;
  4739. padding:2px 2px 2px 2px;
  4740. box-sizing:border-box;
  4741. width:100%;
  4742. }
  4743. #u28142_text {
  4744. border-width:0px;
  4745. word-wrap:break-word;
  4746. text-transform:none;
  4747. }
  4748. #u28143_img {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:120px;
  4754. height:80px;
  4755. }
  4756. #u28143 {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:3419px;
  4760. top:739px;
  4761. width:120px;
  4762. height:80px;
  4763. display:flex;
  4764. }
  4765. #u28143 .text {
  4766. position:absolute;
  4767. align-self:center;
  4768. padding:2px 2px 2px 2px;
  4769. box-sizing:border-box;
  4770. width:100%;
  4771. }
  4772. #u28143_text {
  4773. border-width:0px;
  4774. word-wrap:break-word;
  4775. text-transform:none;
  4776. }
  4777. #u28144_div {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:320px;
  4783. height:90px;
  4784. background:inherit;
  4785. background-color:rgba(255, 255, 255, 0);
  4786. border:none;
  4787. border-left:0px;
  4788. border-top:0px;
  4789. border-right:0px;
  4790. border-radius:0px;
  4791. border-bottom-right-radius:0px;
  4792. border-bottom-left-radius:0px;
  4793. -moz-box-shadow:none;
  4794. -webkit-box-shadow:none;
  4795. box-shadow:none;
  4796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4797. font-weight:400;
  4798. font-style:normal;
  4799. font-size:14px;
  4800. line-height:30px;
  4801. }
  4802. #u28144 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:3203px;
  4806. top:564px;
  4807. width:320px;
  4808. height:90px;
  4809. display:flex;
  4810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. font-size:14px;
  4814. line-height:30px;
  4815. }
  4816. #u28144 .text {
  4817. position:absolute;
  4818. align-self:flex-start;
  4819. padding:0px 0px 0px 0px;
  4820. box-sizing:border-box;
  4821. width:100%;
  4822. }
  4823. #u28144_text {
  4824. border-width:0px;
  4825. word-wrap:break-word;
  4826. text-transform:none;
  4827. }
  4828. #u28145_div {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:0px;
  4832. top:0px;
  4833. width:320px;
  4834. height:60px;
  4835. background:inherit;
  4836. background-color:rgba(255, 255, 255, 0);
  4837. border:none;
  4838. border-left:0px;
  4839. border-top:0px;
  4840. border-right:0px;
  4841. border-radius:0px;
  4842. border-bottom-right-radius:0px;
  4843. border-bottom-left-radius:0px;
  4844. -moz-box-shadow:none;
  4845. -webkit-box-shadow:none;
  4846. box-shadow:none;
  4847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. font-size:14px;
  4851. line-height:30px;
  4852. }
  4853. #u28145 {
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:3523px;
  4857. top:564px;
  4858. width:320px;
  4859. height:60px;
  4860. display:flex;
  4861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4862. font-weight:400;
  4863. font-style:normal;
  4864. font-size:14px;
  4865. line-height:30px;
  4866. }
  4867. #u28145 .text {
  4868. position:absolute;
  4869. align-self:flex-start;
  4870. padding:0px 0px 0px 0px;
  4871. box-sizing:border-box;
  4872. width:100%;
  4873. }
  4874. #u28145_text {
  4875. border-width:0px;
  4876. word-wrap:break-word;
  4877. text-transform:none;
  4878. }
  4879. #u28146_div {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:0px;
  4884. width:320px;
  4885. height:60px;
  4886. background:inherit;
  4887. background-color:rgba(255, 255, 255, 0);
  4888. border:none;
  4889. border-left:0px;
  4890. border-top:0px;
  4891. border-right:0px;
  4892. border-radius:0px;
  4893. border-bottom-right-radius:0px;
  4894. border-bottom-left-radius:0px;
  4895. -moz-box-shadow:none;
  4896. -webkit-box-shadow:none;
  4897. box-shadow:none;
  4898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4899. font-weight:400;
  4900. font-style:normal;
  4901. font-size:14px;
  4902. line-height:30px;
  4903. }
  4904. #u28146 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:3843px;
  4908. top:564px;
  4909. width:320px;
  4910. height:60px;
  4911. display:flex;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:14px;
  4916. line-height:30px;
  4917. }
  4918. #u28146 .text {
  4919. position:absolute;
  4920. align-self:flex-start;
  4921. padding:0px 0px 0px 0px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u28146_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. }
  4930. #u28147_div {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:0px;
  4934. top:0px;
  4935. width:83px;
  4936. height:35px;
  4937. background:inherit;
  4938. background-color:rgba(255, 255, 255, 0);
  4939. border:none;
  4940. border-top:0px;
  4941. border-right:0px;
  4942. border-bottom:0px;
  4943. border-radius:0px;
  4944. border-top-left-radius:0px;
  4945. border-bottom-left-radius:0px;
  4946. -moz-box-shadow:none;
  4947. -webkit-box-shadow:none;
  4948. box-shadow:none;
  4949. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4950. font-weight:500;
  4951. font-style:normal;
  4952. font-size:18px;
  4953. }
  4954. #u28147 {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:3203px;
  4958. top:520px;
  4959. width:83px;
  4960. height:35px;
  4961. display:flex;
  4962. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4963. font-weight:500;
  4964. font-style:normal;
  4965. font-size:18px;
  4966. }
  4967. #u28147 .text {
  4968. position:absolute;
  4969. align-self:center;
  4970. padding:5px 10px 5px 0px;
  4971. box-sizing:border-box;
  4972. width:100%;
  4973. }
  4974. #u28147_text {
  4975. border-width:0px;
  4976. white-space:nowrap;
  4977. text-transform:none;
  4978. }
  4979. #u28148_div {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:323px;
  4985. height:90px;
  4986. background:inherit;
  4987. background-color:rgba(255, 255, 255, 0);
  4988. border:none;
  4989. border-left:0px;
  4990. border-top:0px;
  4991. border-right:0px;
  4992. border-radius:0px;
  4993. border-bottom-right-radius:0px;
  4994. border-bottom-left-radius:0px;
  4995. -moz-box-shadow:none;
  4996. -webkit-box-shadow:none;
  4997. box-shadow:none;
  4998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4999. font-weight:400;
  5000. font-style:normal;
  5001. font-size:14px;
  5002. line-height:30px;
  5003. }
  5004. #u28148 {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:3203px;
  5008. top:674px;
  5009. width:323px;
  5010. height:90px;
  5011. display:flex;
  5012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. font-size:14px;
  5016. line-height:30px;
  5017. }
  5018. #u28148 .text {
  5019. position:absolute;
  5020. align-self:flex-start;
  5021. padding:0px 0px 0px 0px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u28148_text {
  5026. border-width:0px;
  5027. white-space:nowrap;
  5028. text-transform:none;
  5029. }
  5030. #u28149_div {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:320px;
  5036. height:30px;
  5037. background:inherit;
  5038. background-color:rgba(255, 255, 255, 0);
  5039. border:none;
  5040. border-left:0px;
  5041. border-top:0px;
  5042. border-right:0px;
  5043. border-radius:0px;
  5044. border-bottom-right-radius:0px;
  5045. border-bottom-left-radius:0px;
  5046. -moz-box-shadow:none;
  5047. -webkit-box-shadow:none;
  5048. box-shadow:none;
  5049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:14px;
  5053. line-height:30px;
  5054. }
  5055. #u28149 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:3523px;
  5059. top:674px;
  5060. width:320px;
  5061. height:30px;
  5062. display:flex;
  5063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5064. font-weight:400;
  5065. font-style:normal;
  5066. font-size:14px;
  5067. line-height:30px;
  5068. }
  5069. #u28149 .text {
  5070. position:absolute;
  5071. align-self:flex-start;
  5072. padding:0px 0px 0px 0px;
  5073. box-sizing:border-box;
  5074. width:100%;
  5075. }
  5076. #u28149_text {
  5077. border-width:0px;
  5078. word-wrap:break-word;
  5079. text-transform:none;
  5080. }
  5081. #u28150_div {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:320px;
  5087. height:30px;
  5088. background:inherit;
  5089. background-color:rgba(255, 255, 255, 0);
  5090. border:none;
  5091. border-left:0px;
  5092. border-top:0px;
  5093. border-right:0px;
  5094. border-radius:0px;
  5095. border-bottom-right-radius:0px;
  5096. border-bottom-left-radius:0px;
  5097. -moz-box-shadow:none;
  5098. -webkit-box-shadow:none;
  5099. box-shadow:none;
  5100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5101. font-weight:400;
  5102. font-style:normal;
  5103. font-size:14px;
  5104. line-height:30px;
  5105. }
  5106. #u28150 {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:3843px;
  5110. top:674px;
  5111. width:320px;
  5112. height:30px;
  5113. display:flex;
  5114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. font-size:14px;
  5118. line-height:30px;
  5119. }
  5120. #u28150 .text {
  5121. position:absolute;
  5122. align-self:flex-start;
  5123. padding:0px 0px 0px 0px;
  5124. box-sizing:border-box;
  5125. width:100%;
  5126. }
  5127. #u28150_text {
  5128. border-width:0px;
  5129. word-wrap:break-word;
  5130. text-transform:none;
  5131. }
  5132. #u28151 {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:0px;
  5136. top:0px;
  5137. width:0px;
  5138. height:0px;
  5139. }
  5140. #u28152_div {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:0px;
  5144. top:0px;
  5145. width:1000px;
  5146. height:60px;
  5147. background:inherit;
  5148. background-color:rgba(255, 255, 255, 1);
  5149. box-sizing:border-box;
  5150. border-width:1px;
  5151. border-style:solid;
  5152. border-color:rgba(215, 215, 215, 1);
  5153. border-radius:0px;
  5154. -moz-box-shadow:none;
  5155. -webkit-box-shadow:none;
  5156. box-shadow:none;
  5157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5158. font-weight:400;
  5159. font-style:normal;
  5160. font-size:14px;
  5161. color:#AAAAAA;
  5162. text-align:center;
  5163. line-height:30px;
  5164. }
  5165. #u28152 {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:3163px;
  5169. top:1411px;
  5170. width:1000px;
  5171. height:60px;
  5172. display:flex;
  5173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5174. font-weight:400;
  5175. font-style:normal;
  5176. font-size:14px;
  5177. color:#AAAAAA;
  5178. text-align:center;
  5179. line-height:30px;
  5180. }
  5181. #u28152 .text {
  5182. position:absolute;
  5183. align-self:center;
  5184. padding:5px 10px 5px 10px;
  5185. box-sizing:border-box;
  5186. width:100%;
  5187. }
  5188. #u28152_text {
  5189. border-width:0px;
  5190. word-wrap:break-word;
  5191. text-transform:none;
  5192. visibility:hidden;
  5193. }
  5194. #u28153_div {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:0px;
  5198. top:0px;
  5199. width:80px;
  5200. height:30px;
  5201. background:inherit;
  5202. background-color:rgba(255, 255, 255, 1);
  5203. box-sizing:border-box;
  5204. border-width:1px;
  5205. border-style:solid;
  5206. border-color:rgba(170, 170, 170, 1);
  5207. border-radius:4px;
  5208. -moz-box-shadow:none;
  5209. -webkit-box-shadow:none;
  5210. box-shadow:none;
  5211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5212. font-weight:400;
  5213. font-style:normal;
  5214. font-size:14px;
  5215. }
  5216. #u28153 {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:4064px;
  5220. top:1426px;
  5221. width:80px;
  5222. height:30px;
  5223. display:flex;
  5224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:14px;
  5228. }
  5229. #u28153 .text {
  5230. position:absolute;
  5231. align-self:center;
  5232. padding:2px 2px 2px 2px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u28153_text {
  5237. border-width:0px;
  5238. word-wrap:break-word;
  5239. text-transform:none;
  5240. }
  5241. #u28154 {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:0px;
  5247. height:0px;
  5248. }
  5249. #u28155_div {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:1000px;
  5255. height:1139px;
  5256. background:inherit;
  5257. background-color:rgba(242, 242, 242, 1);
  5258. box-sizing:border-box;
  5259. border-width:1px;
  5260. border-style:solid;
  5261. border-color:rgba(242, 242, 242, 1);
  5262. border-radius:0px;
  5263. -moz-box-shadow:none;
  5264. -webkit-box-shadow:none;
  5265. box-shadow:none;
  5266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5267. font-weight:400;
  5268. font-style:normal;
  5269. font-size:14px;
  5270. color:#AAAAAA;
  5271. text-align:center;
  5272. line-height:30px;
  5273. }
  5274. #u28155 {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:4184px;
  5278. top:115px;
  5279. width:1000px;
  5280. height:1139px;
  5281. display:flex;
  5282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. font-size:14px;
  5286. color:#AAAAAA;
  5287. text-align:center;
  5288. line-height:30px;
  5289. }
  5290. #u28155 .text {
  5291. position:absolute;
  5292. align-self:center;
  5293. padding:5px 10px 5px 10px;
  5294. box-sizing:border-box;
  5295. width:100%;
  5296. }
  5297. #u28155_text {
  5298. border-width:0px;
  5299. word-wrap:break-word;
  5300. text-transform:none;
  5301. visibility:hidden;
  5302. }
  5303. #u28156_div {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:1000px;
  5309. height:580px;
  5310. background:inherit;
  5311. background-color:rgba(255, 255, 255, 1);
  5312. box-sizing:border-box;
  5313. border-width:1px;
  5314. border-style:solid;
  5315. border-color:rgba(242, 242, 242, 1);
  5316. border-radius:0px;
  5317. -moz-box-shadow:none;
  5318. -webkit-box-shadow:none;
  5319. box-shadow:none;
  5320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5321. font-weight:400;
  5322. font-style:normal;
  5323. font-size:14px;
  5324. color:#AAAAAA;
  5325. text-align:center;
  5326. line-height:30px;
  5327. }
  5328. #u28156 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:4184px;
  5332. top:266px;
  5333. width:1000px;
  5334. height:580px;
  5335. display:flex;
  5336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5337. font-weight:400;
  5338. font-style:normal;
  5339. font-size:14px;
  5340. color:#AAAAAA;
  5341. text-align:center;
  5342. line-height:30px;
  5343. }
  5344. #u28156 .text {
  5345. position:absolute;
  5346. align-self:center;
  5347. padding:5px 10px 5px 10px;
  5348. box-sizing:border-box;
  5349. width:100%;
  5350. }
  5351. #u28156_text {
  5352. border-width:0px;
  5353. word-wrap:break-word;
  5354. text-transform:none;
  5355. visibility:hidden;
  5356. }
  5357. #u28157_div {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:0px;
  5361. top:0px;
  5362. width:73px;
  5363. height:40px;
  5364. background:inherit;
  5365. background-color:rgba(255, 255, 255, 0);
  5366. border:none;
  5367. border-left:0px;
  5368. border-top:0px;
  5369. border-right:0px;
  5370. border-radius:0px;
  5371. border-bottom-right-radius:0px;
  5372. border-bottom-left-radius:0px;
  5373. -moz-box-shadow:none;
  5374. -webkit-box-shadow:none;
  5375. box-shadow:none;
  5376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5377. font-weight:400;
  5378. font-style:normal;
  5379. font-size:18px;
  5380. }
  5381. #u28157 {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:4224px;
  5385. top:282px;
  5386. width:73px;
  5387. height:40px;
  5388. display:flex;
  5389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5390. font-weight:400;
  5391. font-style:normal;
  5392. font-size:18px;
  5393. }
  5394. #u28157 .text {
  5395. position:absolute;
  5396. align-self:center;
  5397. padding:0px 0px 0px 0px;
  5398. box-sizing:border-box;
  5399. width:100%;
  5400. }
  5401. #u28157_text {
  5402. border-width:0px;
  5403. white-space:nowrap;
  5404. text-transform:none;
  5405. }
  5406. #u28158_div {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:81px;
  5412. height:30px;
  5413. background:inherit;
  5414. background-color:rgba(255, 255, 255, 0);
  5415. border:none;
  5416. border-top:0px;
  5417. border-right:0px;
  5418. border-bottom:0px;
  5419. border-radius:0px;
  5420. border-top-left-radius:0px;
  5421. border-bottom-left-radius:0px;
  5422. -moz-box-shadow:none;
  5423. -webkit-box-shadow:none;
  5424. box-shadow:none;
  5425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5426. font-weight:400;
  5427. font-style:normal;
  5428. font-size:14px;
  5429. color:#7F7F7F;
  5430. }
  5431. #u28158 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:4224px;
  5435. top:332px;
  5436. width:81px;
  5437. height:30px;
  5438. display:flex;
  5439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:14px;
  5443. color:#7F7F7F;
  5444. }
  5445. #u28158 .text {
  5446. position:absolute;
  5447. align-self:center;
  5448. padding:5px 10px 5px 0px;
  5449. box-sizing:border-box;
  5450. width:100%;
  5451. }
  5452. #u28158_text {
  5453. border-width:0px;
  5454. white-space:nowrap;
  5455. text-transform:none;
  5456. }
  5457. #u28159_div {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:142px;
  5463. height:30px;
  5464. background:inherit;
  5465. background-color:rgba(255, 255, 255, 0);
  5466. border:none;
  5467. border-top:0px;
  5468. border-right:0px;
  5469. border-bottom:0px;
  5470. border-radius:0px;
  5471. border-top-left-radius:0px;
  5472. border-bottom-left-radius:0px;
  5473. -moz-box-shadow:none;
  5474. -webkit-box-shadow:none;
  5475. box-shadow:none;
  5476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5477. font-weight:400;
  5478. font-style:normal;
  5479. font-size:14px;
  5480. color:#1890FF;
  5481. }
  5482. #u28159 {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:4305px;
  5486. top:332px;
  5487. width:142px;
  5488. height:30px;
  5489. display:flex;
  5490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:14px;
  5494. color:#1890FF;
  5495. }
  5496. #u28159 .text {
  5497. position:absolute;
  5498. align-self:center;
  5499. padding:5px 10px 5px 0px;
  5500. box-sizing:border-box;
  5501. width:100%;
  5502. }
  5503. #u28159_text {
  5504. border-width:0px;
  5505. white-space:nowrap;
  5506. text-transform:none;
  5507. }
  5508. #u28160_div {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:0px;
  5512. top:0px;
  5513. width:81px;
  5514. height:30px;
  5515. background:inherit;
  5516. background-color:rgba(255, 255, 255, 0);
  5517. border:none;
  5518. border-top:0px;
  5519. border-right:0px;
  5520. border-bottom:0px;
  5521. border-radius:0px;
  5522. border-top-left-radius:0px;
  5523. border-bottom-left-radius:0px;
  5524. -moz-box-shadow:none;
  5525. -webkit-box-shadow:none;
  5526. box-shadow:none;
  5527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5528. font-weight:400;
  5529. font-style:normal;
  5530. font-size:14px;
  5531. color:#7F7F7F;
  5532. }
  5533. #u28160 {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:4544px;
  5537. top:332px;
  5538. width:81px;
  5539. height:30px;
  5540. display:flex;
  5541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5542. font-weight:400;
  5543. font-style:normal;
  5544. font-size:14px;
  5545. color:#7F7F7F;
  5546. }
  5547. #u28160 .text {
  5548. position:absolute;
  5549. align-self:center;
  5550. padding:5px 10px 5px 0px;
  5551. box-sizing:border-box;
  5552. width:100%;
  5553. }
  5554. #u28160_text {
  5555. border-width:0px;
  5556. white-space:nowrap;
  5557. text-transform:none;
  5558. }
  5559. #u28161_div {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:67px;
  5565. height:30px;
  5566. background:inherit;
  5567. background-color:rgba(255, 255, 255, 0);
  5568. border:none;
  5569. border-top:0px;
  5570. border-right:0px;
  5571. border-bottom:0px;
  5572. border-radius:0px;
  5573. border-top-left-radius:0px;
  5574. border-bottom-left-radius:0px;
  5575. -moz-box-shadow:none;
  5576. -webkit-box-shadow:none;
  5577. box-shadow:none;
  5578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:14px;
  5582. }
  5583. #u28161 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:4625px;
  5587. top:332px;
  5588. width:67px;
  5589. height:30px;
  5590. display:flex;
  5591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:14px;
  5595. }
  5596. #u28161 .text {
  5597. position:absolute;
  5598. align-self:center;
  5599. padding:5px 10px 5px 0px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u28161_text {
  5604. border-width:0px;
  5605. white-space:nowrap;
  5606. text-transform:none;
  5607. }
  5608. #u28162_div {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:81px;
  5614. height:30px;
  5615. background:inherit;
  5616. background-color:rgba(255, 255, 255, 0);
  5617. border:none;
  5618. border-top:0px;
  5619. border-right:0px;
  5620. border-bottom:0px;
  5621. border-radius:0px;
  5622. border-top-left-radius:0px;
  5623. border-bottom-left-radius:0px;
  5624. -moz-box-shadow:none;
  5625. -webkit-box-shadow:none;
  5626. box-shadow:none;
  5627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5628. font-weight:400;
  5629. font-style:normal;
  5630. font-size:14px;
  5631. color:#7F7F7F;
  5632. }
  5633. #u28162 {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:4841px;
  5637. top:332px;
  5638. width:81px;
  5639. height:30px;
  5640. display:flex;
  5641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5642. font-weight:400;
  5643. font-style:normal;
  5644. font-size:14px;
  5645. color:#7F7F7F;
  5646. }
  5647. #u28162 .text {
  5648. position:absolute;
  5649. align-self:center;
  5650. padding:5px 10px 5px 0px;
  5651. box-sizing:border-box;
  5652. width:100%;
  5653. }
  5654. #u28162_text {
  5655. border-width:0px;
  5656. white-space:nowrap;
  5657. text-transform:none;
  5658. }
  5659. #u28163_div {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:53px;
  5665. height:30px;
  5666. background:inherit;
  5667. background-color:rgba(255, 255, 255, 0);
  5668. border:none;
  5669. border-top:0px;
  5670. border-right:0px;
  5671. border-bottom:0px;
  5672. border-radius:0px;
  5673. border-top-left-radius:0px;
  5674. border-bottom-left-radius:0px;
  5675. -moz-box-shadow:none;
  5676. -webkit-box-shadow:none;
  5677. box-shadow:none;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:14px;
  5682. }
  5683. #u28163 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:4922px;
  5687. top:332px;
  5688. width:53px;
  5689. height:30px;
  5690. display:flex;
  5691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5692. font-weight:400;
  5693. font-style:normal;
  5694. font-size:14px;
  5695. }
  5696. #u28163 .text {
  5697. position:absolute;
  5698. align-self:center;
  5699. padding:5px 10px 5px 0px;
  5700. box-sizing:border-box;
  5701. width:100%;
  5702. }
  5703. #u28163_text {
  5704. border-width:0px;
  5705. white-space:nowrap;
  5706. text-transform:none;
  5707. }
  5708. #u28164_div {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:81px;
  5714. height:30px;
  5715. background:inherit;
  5716. background-color:rgba(255, 255, 255, 0);
  5717. border:none;
  5718. border-top:0px;
  5719. border-right:0px;
  5720. border-bottom:0px;
  5721. border-radius:0px;
  5722. border-top-left-radius:0px;
  5723. border-bottom-left-radius:0px;
  5724. -moz-box-shadow:none;
  5725. -webkit-box-shadow:none;
  5726. box-shadow:none;
  5727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5728. font-weight:400;
  5729. font-style:normal;
  5730. font-size:14px;
  5731. color:#7F7F7F;
  5732. }
  5733. #u28164 {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:4224px;
  5737. top:372px;
  5738. width:81px;
  5739. height:30px;
  5740. display:flex;
  5741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5742. font-weight:400;
  5743. font-style:normal;
  5744. font-size:14px;
  5745. color:#7F7F7F;
  5746. }
  5747. #u28164 .text {
  5748. position:absolute;
  5749. align-self:center;
  5750. padding:5px 10px 5px 0px;
  5751. box-sizing:border-box;
  5752. width:100%;
  5753. }
  5754. #u28164_text {
  5755. border-width:0px;
  5756. white-space:nowrap;
  5757. text-transform:none;
  5758. }
  5759. #u28165_div {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:81px;
  5765. height:30px;
  5766. background:inherit;
  5767. background-color:rgba(255, 255, 255, 0);
  5768. border:none;
  5769. border-top:0px;
  5770. border-right:0px;
  5771. border-bottom:0px;
  5772. border-radius:0px;
  5773. border-top-left-radius:0px;
  5774. border-bottom-left-radius:0px;
  5775. -moz-box-shadow:none;
  5776. -webkit-box-shadow:none;
  5777. box-shadow:none;
  5778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5779. font-weight:400;
  5780. font-style:normal;
  5781. font-size:14px;
  5782. color:#7F7F7F;
  5783. }
  5784. #u28165 {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:4544px;
  5788. top:372px;
  5789. width:81px;
  5790. height:30px;
  5791. display:flex;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:14px;
  5796. color:#7F7F7F;
  5797. }
  5798. #u28165 .text {
  5799. position:absolute;
  5800. align-self:center;
  5801. padding:5px 10px 5px 0px;
  5802. box-sizing:border-box;
  5803. width:100%;
  5804. }
  5805. #u28165_text {
  5806. border-width:0px;
  5807. white-space:nowrap;
  5808. text-transform:none;
  5809. }
  5810. #u28166_div {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:67px;
  5816. height:30px;
  5817. background:inherit;
  5818. background-color:rgba(255, 255, 255, 0);
  5819. border:none;
  5820. border-top:0px;
  5821. border-right:0px;
  5822. border-bottom:0px;
  5823. border-radius:0px;
  5824. border-top-left-radius:0px;
  5825. border-bottom-left-radius:0px;
  5826. -moz-box-shadow:none;
  5827. -webkit-box-shadow:none;
  5828. box-shadow:none;
  5829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:14px;
  5833. }
  5834. #u28166 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:4625px;
  5838. top:372px;
  5839. width:67px;
  5840. height:30px;
  5841. display:flex;
  5842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:14px;
  5846. }
  5847. #u28166 .text {
  5848. position:absolute;
  5849. align-self:center;
  5850. padding:5px 10px 5px 0px;
  5851. box-sizing:border-box;
  5852. width:100%;
  5853. }
  5854. #u28166_text {
  5855. border-width:0px;
  5856. white-space:nowrap;
  5857. text-transform:none;
  5858. }
  5859. #u28167_div {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:0px;
  5863. top:0px;
  5864. width:67px;
  5865. height:30px;
  5866. background:inherit;
  5867. background-color:rgba(255, 255, 255, 0);
  5868. border:none;
  5869. border-top:0px;
  5870. border-right:0px;
  5871. border-bottom:0px;
  5872. border-radius:0px;
  5873. border-top-left-radius:0px;
  5874. border-bottom-left-radius:0px;
  5875. -moz-box-shadow:none;
  5876. -webkit-box-shadow:none;
  5877. box-shadow:none;
  5878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5879. font-weight:400;
  5880. font-style:normal;
  5881. font-size:14px;
  5882. color:#7F7F7F;
  5883. }
  5884. #u28167 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:4841px;
  5888. top:372px;
  5889. width:67px;
  5890. height:30px;
  5891. display:flex;
  5892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. font-size:14px;
  5896. color:#7F7F7F;
  5897. }
  5898. #u28167 .text {
  5899. position:absolute;
  5900. align-self:center;
  5901. padding:5px 10px 5px 0px;
  5902. box-sizing:border-box;
  5903. width:100%;
  5904. }
  5905. #u28167_text {
  5906. border-width:0px;
  5907. white-space:nowrap;
  5908. text-transform:none;
  5909. }
  5910. #u28168_div {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:85px;
  5916. height:30px;
  5917. background:inherit;
  5918. background-color:rgba(255, 255, 255, 0);
  5919. border:none;
  5920. border-top:0px;
  5921. border-right:0px;
  5922. border-bottom:0px;
  5923. border-radius:0px;
  5924. border-top-left-radius:0px;
  5925. border-bottom-left-radius:0px;
  5926. -moz-box-shadow:none;
  5927. -webkit-box-shadow:none;
  5928. box-shadow:none;
  5929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:14px;
  5933. }
  5934. #u28168 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:4922px;
  5938. top:372px;
  5939. width:85px;
  5940. height:30px;
  5941. display:flex;
  5942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:14px;
  5946. }
  5947. #u28168 .text {
  5948. position:absolute;
  5949. align-self:center;
  5950. padding:5px 10px 5px 0px;
  5951. box-sizing:border-box;
  5952. width:100%;
  5953. }
  5954. #u28168_text {
  5955. border-width:0px;
  5956. white-space:nowrap;
  5957. text-transform:none;
  5958. }
  5959. #u28169_div {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:0px;
  5963. top:0px;
  5964. width:183px;
  5965. height:30px;
  5966. background:inherit;
  5967. background-color:rgba(255, 255, 255, 0);
  5968. border:none;
  5969. border-top:0px;
  5970. border-right:0px;
  5971. border-bottom:0px;
  5972. border-radius:0px;
  5973. border-top-left-radius:0px;
  5974. border-bottom-left-radius:0px;
  5975. -moz-box-shadow:none;
  5976. -webkit-box-shadow:none;
  5977. box-shadow:none;
  5978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5979. font-weight:400;
  5980. font-style:normal;
  5981. font-size:14px;
  5982. }
  5983. #u28169 {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:4305px;
  5987. top:372px;
  5988. width:183px;
  5989. height:30px;
  5990. display:flex;
  5991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5992. font-weight:400;
  5993. font-style:normal;
  5994. font-size:14px;
  5995. }
  5996. #u28169 .text {
  5997. position:absolute;
  5998. align-self:center;
  5999. padding:5px 10px 5px 0px;
  6000. box-sizing:border-box;
  6001. width:100%;
  6002. }
  6003. #u28169_text {
  6004. border-width:0px;
  6005. white-space:nowrap;
  6006. text-transform:none;
  6007. }
  6008. #u28170_div {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:81px;
  6014. height:30px;
  6015. background:inherit;
  6016. background-color:rgba(255, 255, 255, 0);
  6017. border:none;
  6018. border-top:0px;
  6019. border-right:0px;
  6020. border-bottom:0px;
  6021. border-radius:0px;
  6022. border-top-left-radius:0px;
  6023. border-bottom-left-radius:0px;
  6024. -moz-box-shadow:none;
  6025. -webkit-box-shadow:none;
  6026. box-shadow:none;
  6027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6028. font-weight:400;
  6029. font-style:normal;
  6030. font-size:14px;
  6031. color:#7F7F7F;
  6032. }
  6033. #u28170 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:4224px;
  6037. top:412px;
  6038. width:81px;
  6039. height:30px;
  6040. display:flex;
  6041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. font-size:14px;
  6045. color:#7F7F7F;
  6046. }
  6047. #u28170 .text {
  6048. position:absolute;
  6049. align-self:center;
  6050. padding:5px 10px 5px 0px;
  6051. box-sizing:border-box;
  6052. width:100%;
  6053. }
  6054. #u28170_text {
  6055. border-width:0px;
  6056. white-space:nowrap;
  6057. text-transform:none;
  6058. }
  6059. #u28171_div {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:0px;
  6063. top:0px;
  6064. width:126px;
  6065. height:30px;
  6066. background:inherit;
  6067. background-color:rgba(255, 255, 255, 0);
  6068. border:none;
  6069. border-top:0px;
  6070. border-right:0px;
  6071. border-bottom:0px;
  6072. border-radius:0px;
  6073. border-top-left-radius:0px;
  6074. border-bottom-left-radius:0px;
  6075. -moz-box-shadow:none;
  6076. -webkit-box-shadow:none;
  6077. box-shadow:none;
  6078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6079. font-weight:400;
  6080. font-style:normal;
  6081. font-size:14px;
  6082. }
  6083. #u28171 {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:4305px;
  6087. top:412px;
  6088. width:126px;
  6089. height:30px;
  6090. display:flex;
  6091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6092. font-weight:400;
  6093. font-style:normal;
  6094. font-size:14px;
  6095. }
  6096. #u28171 .text {
  6097. position:absolute;
  6098. align-self:center;
  6099. padding:5px 10px 5px 0px;
  6100. box-sizing:border-box;
  6101. width:100%;
  6102. }
  6103. #u28171_text {
  6104. border-width:0px;
  6105. white-space:nowrap;
  6106. text-transform:none;
  6107. }
  6108. #u28172_div {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:0px;
  6112. top:0px;
  6113. width:81px;
  6114. height:30px;
  6115. background:inherit;
  6116. background-color:rgba(255, 255, 255, 0);
  6117. border:none;
  6118. border-top:0px;
  6119. border-right:0px;
  6120. border-bottom:0px;
  6121. border-radius:0px;
  6122. border-top-left-radius:0px;
  6123. border-bottom-left-radius:0px;
  6124. -moz-box-shadow:none;
  6125. -webkit-box-shadow:none;
  6126. box-shadow:none;
  6127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:14px;
  6131. color:#7F7F7F;
  6132. }
  6133. #u28172 {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:4224px;
  6137. top:452px;
  6138. width:81px;
  6139. height:30px;
  6140. display:flex;
  6141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6142. font-weight:400;
  6143. font-style:normal;
  6144. font-size:14px;
  6145. color:#7F7F7F;
  6146. }
  6147. #u28172 .text {
  6148. position:absolute;
  6149. align-self:center;
  6150. padding:5px 10px 5px 0px;
  6151. box-sizing:border-box;
  6152. width:100%;
  6153. }
  6154. #u28172_text {
  6155. border-width:0px;
  6156. white-space:nowrap;
  6157. text-transform:none;
  6158. }
  6159. #u28173_div {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:0px;
  6163. top:0px;
  6164. width:263px;
  6165. height:30px;
  6166. background:inherit;
  6167. background-color:rgba(255, 255, 255, 0);
  6168. border:none;
  6169. border-top:0px;
  6170. border-right:0px;
  6171. border-bottom:0px;
  6172. border-radius:0px;
  6173. border-top-left-radius:0px;
  6174. border-bottom-left-radius:0px;
  6175. -moz-box-shadow:none;
  6176. -webkit-box-shadow:none;
  6177. box-shadow:none;
  6178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6179. font-weight:400;
  6180. font-style:normal;
  6181. font-size:14px;
  6182. }
  6183. #u28173 {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:4305px;
  6187. top:452px;
  6188. width:263px;
  6189. height:30px;
  6190. display:flex;
  6191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6192. font-weight:400;
  6193. font-style:normal;
  6194. font-size:14px;
  6195. }
  6196. #u28173 .text {
  6197. position:absolute;
  6198. align-self:center;
  6199. padding:5px 10px 5px 0px;
  6200. box-sizing:border-box;
  6201. width:100%;
  6202. }
  6203. #u28173_text {
  6204. border-width:0px;
  6205. white-space:nowrap;
  6206. text-transform:none;
  6207. }
  6208. #u28174_img {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:942px;
  6214. height:2px;
  6215. }
  6216. #u28174 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:4224px;
  6220. top:500px;
  6221. width:941px;
  6222. height:1px;
  6223. display:flex;
  6224. }
  6225. #u28174 .text {
  6226. position:absolute;
  6227. align-self:center;
  6228. padding:2px 2px 2px 2px;
  6229. box-sizing:border-box;
  6230. width:100%;
  6231. }
  6232. #u28174_text {
  6233. border-width:0px;
  6234. word-wrap:break-word;
  6235. text-transform:none;
  6236. visibility:hidden;
  6237. }
  6238. #u28175_div {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:1000px;
  6244. height:200px;
  6245. background:inherit;
  6246. background-color:rgba(255, 255, 255, 1);
  6247. box-sizing:border-box;
  6248. border-width:1px;
  6249. border-style:solid;
  6250. border-color:rgba(215, 215, 215, 1);
  6251. border-radius:0px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:14px;
  6259. color:#AAAAAA;
  6260. text-align:center;
  6261. line-height:30px;
  6262. }
  6263. #u28175 {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:4185px;
  6267. top:55px;
  6268. width:1000px;
  6269. height:200px;
  6270. display:flex;
  6271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6272. font-weight:400;
  6273. font-style:normal;
  6274. font-size:14px;
  6275. color:#AAAAAA;
  6276. text-align:center;
  6277. line-height:30px;
  6278. }
  6279. #u28175 .text {
  6280. position:absolute;
  6281. align-self:center;
  6282. padding:5px 10px 5px 10px;
  6283. box-sizing:border-box;
  6284. width:100%;
  6285. }
  6286. #u28175_text {
  6287. border-width:0px;
  6288. word-wrap:break-word;
  6289. text-transform:none;
  6290. visibility:hidden;
  6291. }
  6292. #u28176_div {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:83px;
  6298. height:35px;
  6299. background:inherit;
  6300. background-color:rgba(255, 255, 255, 0);
  6301. border:none;
  6302. border-top:0px;
  6303. border-right:0px;
  6304. border-bottom:0px;
  6305. border-radius:0px;
  6306. border-top-left-radius:0px;
  6307. border-bottom-left-radius:0px;
  6308. -moz-box-shadow:none;
  6309. -webkit-box-shadow:none;
  6310. box-shadow:none;
  6311. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6312. font-weight:500;
  6313. font-style:normal;
  6314. font-size:18px;
  6315. }
  6316. #u28176 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:4205px;
  6320. top:73px;
  6321. width:83px;
  6322. height:35px;
  6323. display:flex;
  6324. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6325. font-weight:500;
  6326. font-style:normal;
  6327. font-size:18px;
  6328. }
  6329. #u28176 .text {
  6330. position:absolute;
  6331. align-self:center;
  6332. padding:5px 10px 5px 0px;
  6333. box-sizing:border-box;
  6334. width:100%;
  6335. }
  6336. #u28176_text {
  6337. border-width:0px;
  6338. white-space:nowrap;
  6339. text-transform:none;
  6340. }
  6341. #u28177_div {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:107px;
  6347. height:43px;
  6348. background:inherit;
  6349. background-color:rgba(255, 255, 255, 0);
  6350. border:none;
  6351. border-top:0px;
  6352. border-right:0px;
  6353. border-bottom:0px;
  6354. border-radius:0px;
  6355. border-top-left-radius:0px;
  6356. border-bottom-left-radius:0px;
  6357. -moz-box-shadow:none;
  6358. -webkit-box-shadow:none;
  6359. box-shadow:none;
  6360. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6361. font-weight:500;
  6362. font-style:normal;
  6363. font-size:24px;
  6364. }
  6365. #u28177 {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:4215px;
  6369. top:124px;
  6370. width:107px;
  6371. height:43px;
  6372. display:flex;
  6373. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6374. font-weight:500;
  6375. font-style:normal;
  6376. font-size:24px;
  6377. }
  6378. #u28177 .text {
  6379. position:absolute;
  6380. align-self:center;
  6381. padding:5px 10px 5px 0px;
  6382. box-sizing:border-box;
  6383. width:100%;
  6384. }
  6385. #u28177_text {
  6386. border-width:0px;
  6387. white-space:nowrap;
  6388. text-transform:none;
  6389. }
  6390. #u28178_img {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:108px;
  6396. height:108px;
  6397. }
  6398. #u28178 {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:5035px;
  6402. top:125px;
  6403. width:108px;
  6404. height:108px;
  6405. display:flex;
  6406. -webkit-transform:rotate(315deg);
  6407. -moz-transform:rotate(315deg);
  6408. -ms-transform:rotate(315deg);
  6409. transform:rotate(315deg);
  6410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6411. font-weight:400;
  6412. font-style:normal;
  6413. font-size:28px;
  6414. color:#F59A23;
  6415. }
  6416. #u28178 .text {
  6417. position:absolute;
  6418. align-self:center;
  6419. padding:2px 2px 2px 2px;
  6420. box-sizing:border-box;
  6421. width:100%;
  6422. }
  6423. #u28178_text {
  6424. border-width:0px;
  6425. word-wrap:break-word;
  6426. text-transform:none;
  6427. }
  6428. #u28179_div {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:0px;
  6432. top:0px;
  6433. width:325px;
  6434. height:60px;
  6435. background:inherit;
  6436. background-color:rgba(255, 255, 255, 0);
  6437. border:none;
  6438. border-left:0px;
  6439. border-top:0px;
  6440. border-right:0px;
  6441. border-radius:0px;
  6442. border-bottom-right-radius:0px;
  6443. border-bottom-left-radius:0px;
  6444. -moz-box-shadow:none;
  6445. -webkit-box-shadow:none;
  6446. box-shadow:none;
  6447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6448. font-weight:400;
  6449. font-style:normal;
  6450. font-size:14px;
  6451. line-height:30px;
  6452. }
  6453. #u28179 {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:4215px;
  6457. top:179px;
  6458. width:325px;
  6459. height:60px;
  6460. display:flex;
  6461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6462. font-weight:400;
  6463. font-style:normal;
  6464. font-size:14px;
  6465. line-height:30px;
  6466. }
  6467. #u28179 .text {
  6468. position:absolute;
  6469. align-self:flex-start;
  6470. padding:0px 0px 0px 0px;
  6471. box-sizing:border-box;
  6472. width:100%;
  6473. }
  6474. #u28179_text {
  6475. border-width:0px;
  6476. word-wrap:break-word;
  6477. text-transform:none;
  6478. }
  6479. #u28180_img {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:17px;
  6485. height:17px;
  6486. }
  6487. #u28180 {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:5157px;
  6491. top:77px;
  6492. width:17px;
  6493. height:17px;
  6494. display:flex;
  6495. }
  6496. #u28180 .text {
  6497. position:absolute;
  6498. align-self:center;
  6499. padding:2px 2px 2px 2px;
  6500. box-sizing:border-box;
  6501. width:100%;
  6502. }
  6503. #u28180_text {
  6504. border-width:0px;
  6505. word-wrap:break-word;
  6506. text-transform:none;
  6507. visibility:hidden;
  6508. }
  6509. #u28181 {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:0px;
  6513. top:0px;
  6514. width:0px;
  6515. height:0px;
  6516. }
  6517. #u28182_div {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:0px;
  6521. top:0px;
  6522. width:1000px;
  6523. height:60px;
  6524. background:inherit;
  6525. background-color:rgba(255, 255, 255, 1);
  6526. box-sizing:border-box;
  6527. border-width:1px;
  6528. border-style:solid;
  6529. border-color:rgba(215, 215, 215, 1);
  6530. border-radius:0px;
  6531. -moz-box-shadow:none;
  6532. -webkit-box-shadow:none;
  6533. box-shadow:none;
  6534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6535. font-weight:400;
  6536. font-style:normal;
  6537. font-size:14px;
  6538. color:#AAAAAA;
  6539. text-align:center;
  6540. line-height:30px;
  6541. }
  6542. #u28182 {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:4184px;
  6546. top:1411px;
  6547. width:1000px;
  6548. height:60px;
  6549. display:flex;
  6550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6551. font-weight:400;
  6552. font-style:normal;
  6553. font-size:14px;
  6554. color:#AAAAAA;
  6555. text-align:center;
  6556. line-height:30px;
  6557. }
  6558. #u28182 .text {
  6559. position:absolute;
  6560. align-self:center;
  6561. padding:5px 10px 5px 10px;
  6562. box-sizing:border-box;
  6563. width:100%;
  6564. }
  6565. #u28182_text {
  6566. border-width:0px;
  6567. word-wrap:break-word;
  6568. text-transform:none;
  6569. visibility:hidden;
  6570. }
  6571. #u28183_div {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:0px;
  6575. top:0px;
  6576. width:80px;
  6577. height:30px;
  6578. background:inherit;
  6579. background-color:rgba(255, 255, 255, 1);
  6580. box-sizing:border-box;
  6581. border-width:1px;
  6582. border-style:solid;
  6583. border-color:rgba(170, 170, 170, 1);
  6584. border-radius:4px;
  6585. -moz-box-shadow:none;
  6586. -webkit-box-shadow:none;
  6587. box-shadow:none;
  6588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6589. font-weight:400;
  6590. font-style:normal;
  6591. font-size:14px;
  6592. }
  6593. #u28183 {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:5085px;
  6597. top:1426px;
  6598. width:80px;
  6599. height:30px;
  6600. display:flex;
  6601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6602. font-weight:400;
  6603. font-style:normal;
  6604. font-size:14px;
  6605. }
  6606. #u28183 .text {
  6607. position:absolute;
  6608. align-self:center;
  6609. padding:2px 2px 2px 2px;
  6610. box-sizing:border-box;
  6611. width:100%;
  6612. }
  6613. #u28183_text {
  6614. border-width:0px;
  6615. word-wrap:break-word;
  6616. text-transform:none;
  6617. }
  6618. #u28184 {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:0px;
  6624. height:0px;
  6625. }
  6626. #u28185_div {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:1000px;
  6632. height:555px;
  6633. background:inherit;
  6634. background-color:rgba(255, 255, 255, 1);
  6635. box-sizing:border-box;
  6636. border-width:1px;
  6637. border-style:solid;
  6638. border-color:rgba(242, 242, 242, 1);
  6639. border-radius:0px;
  6640. -moz-box-shadow:none;
  6641. -webkit-box-shadow:none;
  6642. box-shadow:none;
  6643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6644. font-weight:400;
  6645. font-style:normal;
  6646. font-size:14px;
  6647. color:#AAAAAA;
  6648. text-align:center;
  6649. line-height:30px;
  6650. }
  6651. #u28185 {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:4184px;
  6655. top:856px;
  6656. width:1000px;
  6657. height:555px;
  6658. display:flex;
  6659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6660. font-weight:400;
  6661. font-style:normal;
  6662. font-size:14px;
  6663. color:#AAAAAA;
  6664. text-align:center;
  6665. line-height:30px;
  6666. }
  6667. #u28185 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:5px 10px 5px 10px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u28185_text {
  6675. border-width:0px;
  6676. word-wrap:break-word;
  6677. text-transform:none;
  6678. visibility:hidden;
  6679. }
  6680. #u28186_div {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:0px;
  6684. top:0px;
  6685. width:73px;
  6686. height:40px;
  6687. background:inherit;
  6688. background-color:rgba(255, 255, 255, 0);
  6689. border:none;
  6690. border-left:0px;
  6691. border-top:0px;
  6692. border-right:0px;
  6693. border-radius:0px;
  6694. border-bottom-right-radius:0px;
  6695. border-bottom-left-radius:0px;
  6696. -moz-box-shadow:none;
  6697. -webkit-box-shadow:none;
  6698. box-shadow:none;
  6699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6700. font-weight:400;
  6701. font-style:normal;
  6702. font-size:18px;
  6703. }
  6704. #u28186 {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:4224px;
  6708. top:872px;
  6709. width:73px;
  6710. height:40px;
  6711. display:flex;
  6712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6713. font-weight:400;
  6714. font-style:normal;
  6715. font-size:18px;
  6716. }
  6717. #u28186 .text {
  6718. position:absolute;
  6719. align-self:center;
  6720. padding:0px 0px 0px 0px;
  6721. box-sizing:border-box;
  6722. width:100%;
  6723. }
  6724. #u28186_text {
  6725. border-width:0px;
  6726. white-space:nowrap;
  6727. text-transform:none;
  6728. }
  6729. #u28187 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:0px;
  6733. top:0px;
  6734. width:0px;
  6735. height:0px;
  6736. }
  6737. #u28188_div {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:0px;
  6741. top:0px;
  6742. width:175px;
  6743. height:20px;
  6744. background:inherit;
  6745. background-color:rgba(255, 255, 255, 0);
  6746. border:none;
  6747. border-radius:0px;
  6748. -moz-box-shadow:none;
  6749. -webkit-box-shadow:none;
  6750. box-shadow:none;
  6751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6752. font-weight:400;
  6753. font-style:normal;
  6754. }
  6755. #u28188 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:4260px;
  6759. top:938px;
  6760. width:175px;
  6761. height:20px;
  6762. display:flex;
  6763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. }
  6767. #u28188 .text {
  6768. position:absolute;
  6769. align-self:center;
  6770. padding:0px 0px 0px 0px;
  6771. box-sizing:border-box;
  6772. width:100%;
  6773. }
  6774. #u28188_text {
  6775. border-width:0px;
  6776. white-space:nowrap;
  6777. text-transform:none;
  6778. }
  6779. #u28189 {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:0px;
  6785. height:0px;
  6786. }
  6787. #u28190_div {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:0px;
  6791. top:0px;
  6792. width:878px;
  6793. height:44px;
  6794. background:inherit;
  6795. background-color:rgba(255, 255, 255, 0);
  6796. border:none;
  6797. border-top:0px;
  6798. border-right:0px;
  6799. border-bottom:0px;
  6800. border-radius:0px;
  6801. border-top-left-radius:0px;
  6802. border-bottom-left-radius:0px;
  6803. -moz-box-shadow:none;
  6804. -webkit-box-shadow:none;
  6805. box-shadow:none;
  6806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6807. font-weight:400;
  6808. font-style:normal;
  6809. font-size:12px;
  6810. }
  6811. #u28190 {
  6812. border-width:0px;
  6813. position:absolute;
  6814. left:4260px;
  6815. top:963px;
  6816. width:878px;
  6817. height:44px;
  6818. display:flex;
  6819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6820. font-weight:400;
  6821. font-style:normal;
  6822. font-size:12px;
  6823. }
  6824. #u28190 .text {
  6825. position:absolute;
  6826. align-self:center;
  6827. padding:5px 10px 5px 0px;
  6828. box-sizing:border-box;
  6829. width:100%;
  6830. }
  6831. #u28190_text {
  6832. border-width:0px;
  6833. word-wrap:break-word;
  6834. text-transform:none;
  6835. }
  6836. #u28191_img {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:22px;
  6842. height:22px;
  6843. }
  6844. #u28191 {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:4233px;
  6848. top:938px;
  6849. width:22px;
  6850. height:22px;
  6851. display:flex;
  6852. font-family:'Microsoft YaHei', sans-serif;
  6853. font-weight:400;
  6854. font-style:normal;
  6855. font-size:12px;
  6856. color:#FFFFFF;
  6857. }
  6858. #u28191 .text {
  6859. position:absolute;
  6860. align-self:center;
  6861. padding:4px 4px 4px 4px;
  6862. box-sizing:border-box;
  6863. width:100%;
  6864. }
  6865. #u28191_text {
  6866. border-width:0px;
  6867. word-wrap:break-word;
  6868. text-transform:none;
  6869. visibility:hidden;
  6870. }
  6871. #u28192_img {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:61px;
  6877. height:2px;
  6878. }
  6879. #u28192 {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:4215px;
  6883. top:988px;
  6884. width:60px;
  6885. height:1px;
  6886. display:flex;
  6887. -webkit-transform:rotate(90deg);
  6888. -moz-transform:rotate(90deg);
  6889. -ms-transform:rotate(90deg);
  6890. transform:rotate(90deg);
  6891. }
  6892. #u28192 .text {
  6893. position:absolute;
  6894. align-self:center;
  6895. padding:2px 2px 2px 2px;
  6896. box-sizing:border-box;
  6897. width:100%;
  6898. }
  6899. #u28192_text {
  6900. border-width:0px;
  6901. word-wrap:break-word;
  6902. text-transform:none;
  6903. visibility:hidden;
  6904. }
  6905. #u28193 {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:0px;
  6909. top:0px;
  6910. width:0px;
  6911. height:0px;
  6912. }
  6913. #u28194_div {
  6914. border-width:0px;
  6915. position:absolute;
  6916. left:0px;
  6917. top:0px;
  6918. width:175px;
  6919. height:20px;
  6920. background:inherit;
  6921. background-color:rgba(255, 255, 255, 0);
  6922. border:none;
  6923. border-radius:0px;
  6924. -moz-box-shadow:none;
  6925. -webkit-box-shadow:none;
  6926. box-shadow:none;
  6927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6928. font-weight:400;
  6929. font-style:normal;
  6930. }
  6931. #u28194 {
  6932. border-width:0px;
  6933. position:absolute;
  6934. left:4260px;
  6935. top:1025px;
  6936. width:175px;
  6937. height:20px;
  6938. display:flex;
  6939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6940. font-weight:400;
  6941. font-style:normal;
  6942. }
  6943. #u28194 .text {
  6944. position:absolute;
  6945. align-self:center;
  6946. padding:0px 0px 0px 0px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u28194_text {
  6951. border-width:0px;
  6952. white-space:nowrap;
  6953. text-transform:none;
  6954. }
  6955. #u28195 {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:0px;
  6959. top:0px;
  6960. width:0px;
  6961. height:0px;
  6962. }
  6963. #u28196_div {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:878px;
  6969. height:44px;
  6970. background:inherit;
  6971. background-color:rgba(255, 255, 255, 0);
  6972. border:none;
  6973. border-top:0px;
  6974. border-right:0px;
  6975. border-bottom:0px;
  6976. border-radius:0px;
  6977. border-top-left-radius:0px;
  6978. border-bottom-left-radius:0px;
  6979. -moz-box-shadow:none;
  6980. -webkit-box-shadow:none;
  6981. box-shadow:none;
  6982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:12px;
  6986. }
  6987. #u28196 {
  6988. border-width:0px;
  6989. position:absolute;
  6990. left:4260px;
  6991. top:1050px;
  6992. width:878px;
  6993. height:44px;
  6994. display:flex;
  6995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6996. font-weight:400;
  6997. font-style:normal;
  6998. font-size:12px;
  6999. }
  7000. #u28196 .text {
  7001. position:absolute;
  7002. align-self:center;
  7003. padding:5px 10px 5px 0px;
  7004. box-sizing:border-box;
  7005. width:100%;
  7006. }
  7007. #u28196_text {
  7008. border-width:0px;
  7009. word-wrap:break-word;
  7010. text-transform:none;
  7011. }
  7012. #u28197_img {
  7013. border-width:0px;
  7014. position:absolute;
  7015. left:0px;
  7016. top:0px;
  7017. width:22px;
  7018. height:22px;
  7019. }
  7020. #u28197 {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:4233px;
  7024. top:1025px;
  7025. width:22px;
  7026. height:22px;
  7027. display:flex;
  7028. font-family:'Microsoft YaHei', sans-serif;
  7029. font-weight:400;
  7030. font-style:normal;
  7031. font-size:12px;
  7032. color:#FFFFFF;
  7033. }
  7034. #u28197 .text {
  7035. position:absolute;
  7036. align-self:center;
  7037. padding:4px 4px 4px 4px;
  7038. box-sizing:border-box;
  7039. width:100%;
  7040. }
  7041. #u28197_text {
  7042. border-width:0px;
  7043. word-wrap:break-word;
  7044. text-transform:none;
  7045. visibility:hidden;
  7046. }
  7047. #u28198_img {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:69px;
  7053. height:2px;
  7054. }
  7055. #u28198 {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:4211px;
  7059. top:1078px;
  7060. width:68px;
  7061. height:1px;
  7062. display:flex;
  7063. -webkit-transform:rotate(90deg);
  7064. -moz-transform:rotate(90deg);
  7065. -ms-transform:rotate(90deg);
  7066. transform:rotate(90deg);
  7067. }
  7068. #u28198 .text {
  7069. position:absolute;
  7070. align-self:center;
  7071. padding:2px 2px 2px 2px;
  7072. box-sizing:border-box;
  7073. width:100%;
  7074. }
  7075. #u28198_text {
  7076. border-width:0px;
  7077. word-wrap:break-word;
  7078. text-transform:none;
  7079. visibility:hidden;
  7080. }
  7081. #u28199_img {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:22px;
  7087. height:22px;
  7088. }
  7089. #u28199 {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:4233px;
  7093. top:1112px;
  7094. width:22px;
  7095. height:22px;
  7096. display:flex;
  7097. font-family:'Microsoft YaHei', sans-serif;
  7098. font-weight:400;
  7099. font-style:normal;
  7100. font-size:12px;
  7101. color:#FFFFFF;
  7102. }
  7103. #u28199 .text {
  7104. position:absolute;
  7105. align-self:center;
  7106. padding:4px 4px 4px 4px;
  7107. box-sizing:border-box;
  7108. width:100%;
  7109. }
  7110. #u28199_text {
  7111. border-width:0px;
  7112. word-wrap:break-word;
  7113. text-transform:none;
  7114. visibility:hidden;
  7115. }
  7116. #u28200_div {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:0px;
  7120. top:0px;
  7121. width:189px;
  7122. height:20px;
  7123. background:inherit;
  7124. background-color:rgba(255, 255, 255, 0);
  7125. border:none;
  7126. border-radius:0px;
  7127. -moz-box-shadow:none;
  7128. -webkit-box-shadow:none;
  7129. box-shadow:none;
  7130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7131. font-weight:400;
  7132. font-style:normal;
  7133. }
  7134. #u28200 {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:4260px;
  7138. top:1112px;
  7139. width:189px;
  7140. height:20px;
  7141. display:flex;
  7142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7143. font-weight:400;
  7144. font-style:normal;
  7145. }
  7146. #u28200 .text {
  7147. position:absolute;
  7148. align-self:flex-start;
  7149. padding:0px 0px 0px 0px;
  7150. box-sizing:border-box;
  7151. width:100%;
  7152. }
  7153. #u28200_text {
  7154. border-width:0px;
  7155. white-space:nowrap;
  7156. text-transform:none;
  7157. }
  7158. #u28201 {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:0px;
  7162. top:0px;
  7163. width:0px;
  7164. height:0px;
  7165. }
  7166. #u28202_img {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:0px;
  7170. top:0px;
  7171. width:120px;
  7172. height:80px;
  7173. }
  7174. #u28202 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:4298px;
  7178. top:739px;
  7179. width:120px;
  7180. height:80px;
  7181. display:flex;
  7182. }
  7183. #u28202 .text {
  7184. position:absolute;
  7185. align-self:center;
  7186. padding:2px 2px 2px 2px;
  7187. box-sizing:border-box;
  7188. width:100%;
  7189. }
  7190. #u28202_text {
  7191. border-width:0px;
  7192. word-wrap:break-word;
  7193. text-transform:none;
  7194. }
  7195. #u28203_img {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:120px;
  7201. height:80px;
  7202. }
  7203. #u28203 {
  7204. border-width:0px;
  7205. position:absolute;
  7206. left:4440px;
  7207. top:739px;
  7208. width:120px;
  7209. height:80px;
  7210. display:flex;
  7211. }
  7212. #u28203 .text {
  7213. position:absolute;
  7214. align-self:center;
  7215. padding:2px 2px 2px 2px;
  7216. box-sizing:border-box;
  7217. width:100%;
  7218. }
  7219. #u28203_text {
  7220. border-width:0px;
  7221. word-wrap:break-word;
  7222. text-transform:none;
  7223. }
  7224. #u28204_div {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:0px;
  7228. top:0px;
  7229. width:320px;
  7230. height:90px;
  7231. background:inherit;
  7232. background-color:rgba(255, 255, 255, 0);
  7233. border:none;
  7234. border-left:0px;
  7235. border-top:0px;
  7236. border-right:0px;
  7237. border-radius:0px;
  7238. border-bottom-right-radius:0px;
  7239. border-bottom-left-radius:0px;
  7240. -moz-box-shadow:none;
  7241. -webkit-box-shadow:none;
  7242. box-shadow:none;
  7243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7244. font-weight:400;
  7245. font-style:normal;
  7246. font-size:14px;
  7247. line-height:30px;
  7248. }
  7249. #u28204 {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:4224px;
  7253. top:564px;
  7254. width:320px;
  7255. height:90px;
  7256. display:flex;
  7257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7258. font-weight:400;
  7259. font-style:normal;
  7260. font-size:14px;
  7261. line-height:30px;
  7262. }
  7263. #u28204 .text {
  7264. position:absolute;
  7265. align-self:flex-start;
  7266. padding:0px 0px 0px 0px;
  7267. box-sizing:border-box;
  7268. width:100%;
  7269. }
  7270. #u28204_text {
  7271. border-width:0px;
  7272. word-wrap:break-word;
  7273. text-transform:none;
  7274. }
  7275. #u28205_div {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:320px;
  7281. height:60px;
  7282. background:inherit;
  7283. background-color:rgba(255, 255, 255, 0);
  7284. border:none;
  7285. border-left:0px;
  7286. border-top:0px;
  7287. border-right:0px;
  7288. border-radius:0px;
  7289. border-bottom-right-radius:0px;
  7290. border-bottom-left-radius:0px;
  7291. -moz-box-shadow:none;
  7292. -webkit-box-shadow:none;
  7293. box-shadow:none;
  7294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7295. font-weight:400;
  7296. font-style:normal;
  7297. font-size:14px;
  7298. line-height:30px;
  7299. }
  7300. #u28205 {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:4544px;
  7304. top:564px;
  7305. width:320px;
  7306. height:60px;
  7307. display:flex;
  7308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7309. font-weight:400;
  7310. font-style:normal;
  7311. font-size:14px;
  7312. line-height:30px;
  7313. }
  7314. #u28205 .text {
  7315. position:absolute;
  7316. align-self:flex-start;
  7317. padding:0px 0px 0px 0px;
  7318. box-sizing:border-box;
  7319. width:100%;
  7320. }
  7321. #u28205_text {
  7322. border-width:0px;
  7323. word-wrap:break-word;
  7324. text-transform:none;
  7325. }
  7326. #u28206_div {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:320px;
  7332. height:60px;
  7333. background:inherit;
  7334. background-color:rgba(255, 255, 255, 0);
  7335. border:none;
  7336. border-left:0px;
  7337. border-top:0px;
  7338. border-right:0px;
  7339. border-radius:0px;
  7340. border-bottom-right-radius:0px;
  7341. border-bottom-left-radius:0px;
  7342. -moz-box-shadow:none;
  7343. -webkit-box-shadow:none;
  7344. box-shadow:none;
  7345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7346. font-weight:400;
  7347. font-style:normal;
  7348. font-size:14px;
  7349. line-height:30px;
  7350. }
  7351. #u28206 {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:4864px;
  7355. top:564px;
  7356. width:320px;
  7357. height:60px;
  7358. display:flex;
  7359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7360. font-weight:400;
  7361. font-style:normal;
  7362. font-size:14px;
  7363. line-height:30px;
  7364. }
  7365. #u28206 .text {
  7366. position:absolute;
  7367. align-self:flex-start;
  7368. padding:0px 0px 0px 0px;
  7369. box-sizing:border-box;
  7370. width:100%;
  7371. }
  7372. #u28206_text {
  7373. border-width:0px;
  7374. word-wrap:break-word;
  7375. text-transform:none;
  7376. }
  7377. #u28207_div {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:0px;
  7381. top:0px;
  7382. width:83px;
  7383. height:35px;
  7384. background:inherit;
  7385. background-color:rgba(255, 255, 255, 0);
  7386. border:none;
  7387. border-top:0px;
  7388. border-right:0px;
  7389. border-bottom:0px;
  7390. border-radius:0px;
  7391. border-top-left-radius:0px;
  7392. border-bottom-left-radius:0px;
  7393. -moz-box-shadow:none;
  7394. -webkit-box-shadow:none;
  7395. box-shadow:none;
  7396. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7397. font-weight:500;
  7398. font-style:normal;
  7399. font-size:18px;
  7400. }
  7401. #u28207 {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:4224px;
  7405. top:520px;
  7406. width:83px;
  7407. height:35px;
  7408. display:flex;
  7409. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7410. font-weight:500;
  7411. font-style:normal;
  7412. font-size:18px;
  7413. }
  7414. #u28207 .text {
  7415. position:absolute;
  7416. align-self:center;
  7417. padding:5px 10px 5px 0px;
  7418. box-sizing:border-box;
  7419. width:100%;
  7420. }
  7421. #u28207_text {
  7422. border-width:0px;
  7423. white-space:nowrap;
  7424. text-transform:none;
  7425. }
  7426. #u28208_div {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:323px;
  7432. height:90px;
  7433. background:inherit;
  7434. background-color:rgba(255, 255, 255, 0);
  7435. border:none;
  7436. border-left:0px;
  7437. border-top:0px;
  7438. border-right:0px;
  7439. border-radius:0px;
  7440. border-bottom-right-radius:0px;
  7441. border-bottom-left-radius:0px;
  7442. -moz-box-shadow:none;
  7443. -webkit-box-shadow:none;
  7444. box-shadow:none;
  7445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7446. font-weight:400;
  7447. font-style:normal;
  7448. font-size:14px;
  7449. line-height:30px;
  7450. }
  7451. #u28208 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:4224px;
  7455. top:674px;
  7456. width:323px;
  7457. height:90px;
  7458. display:flex;
  7459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7460. font-weight:400;
  7461. font-style:normal;
  7462. font-size:14px;
  7463. line-height:30px;
  7464. }
  7465. #u28208 .text {
  7466. position:absolute;
  7467. align-self:flex-start;
  7468. padding:0px 0px 0px 0px;
  7469. box-sizing:border-box;
  7470. width:100%;
  7471. }
  7472. #u28208_text {
  7473. border-width:0px;
  7474. white-space:nowrap;
  7475. text-transform:none;
  7476. }
  7477. #u28209_div {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:320px;
  7483. height:30px;
  7484. background:inherit;
  7485. background-color:rgba(255, 255, 255, 0);
  7486. border:none;
  7487. border-left:0px;
  7488. border-top:0px;
  7489. border-right:0px;
  7490. border-radius:0px;
  7491. border-bottom-right-radius:0px;
  7492. border-bottom-left-radius:0px;
  7493. -moz-box-shadow:none;
  7494. -webkit-box-shadow:none;
  7495. box-shadow:none;
  7496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. font-size:14px;
  7500. line-height:30px;
  7501. }
  7502. #u28209 {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:4544px;
  7506. top:674px;
  7507. width:320px;
  7508. height:30px;
  7509. display:flex;
  7510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7511. font-weight:400;
  7512. font-style:normal;
  7513. font-size:14px;
  7514. line-height:30px;
  7515. }
  7516. #u28209 .text {
  7517. position:absolute;
  7518. align-self:flex-start;
  7519. padding:0px 0px 0px 0px;
  7520. box-sizing:border-box;
  7521. width:100%;
  7522. }
  7523. #u28209_text {
  7524. border-width:0px;
  7525. word-wrap:break-word;
  7526. text-transform:none;
  7527. }
  7528. #u28210_div {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:0px;
  7533. width:320px;
  7534. height:30px;
  7535. background:inherit;
  7536. background-color:rgba(255, 255, 255, 0);
  7537. border:none;
  7538. border-left:0px;
  7539. border-top:0px;
  7540. border-right:0px;
  7541. border-radius:0px;
  7542. border-bottom-right-radius:0px;
  7543. border-bottom-left-radius:0px;
  7544. -moz-box-shadow:none;
  7545. -webkit-box-shadow:none;
  7546. box-shadow:none;
  7547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:14px;
  7551. line-height:30px;
  7552. }
  7553. #u28210 {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:4864px;
  7557. top:674px;
  7558. width:320px;
  7559. height:30px;
  7560. display:flex;
  7561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7562. font-weight:400;
  7563. font-style:normal;
  7564. font-size:14px;
  7565. line-height:30px;
  7566. }
  7567. #u28210 .text {
  7568. position:absolute;
  7569. align-self:flex-start;
  7570. padding:0px 0px 0px 0px;
  7571. box-sizing:border-box;
  7572. width:100%;
  7573. }
  7574. #u28210_text {
  7575. border-width:0px;
  7576. word-wrap:break-word;
  7577. text-transform:none;
  7578. }
  7579. #u28211 {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:0px;
  7583. top:0px;
  7584. width:0px;
  7585. height:0px;
  7586. }
  7587. #u28212_div {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:0px;
  7591. top:0px;
  7592. width:1000px;
  7593. height:1303px;
  7594. background:inherit;
  7595. background-color:rgba(242, 242, 242, 1);
  7596. box-sizing:border-box;
  7597. border-width:1px;
  7598. border-style:solid;
  7599. border-color:rgba(242, 242, 242, 1);
  7600. border-radius:0px;
  7601. -moz-box-shadow:none;
  7602. -webkit-box-shadow:none;
  7603. box-shadow:none;
  7604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7605. font-weight:400;
  7606. font-style:normal;
  7607. font-size:14px;
  7608. color:#AAAAAA;
  7609. text-align:center;
  7610. line-height:30px;
  7611. }
  7612. #u28212 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:1121px;
  7616. top:115px;
  7617. width:1000px;
  7618. height:1303px;
  7619. display:flex;
  7620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. font-size:14px;
  7624. color:#AAAAAA;
  7625. text-align:center;
  7626. line-height:30px;
  7627. }
  7628. #u28212 .text {
  7629. position:absolute;
  7630. align-self:center;
  7631. padding:5px 10px 5px 10px;
  7632. box-sizing:border-box;
  7633. width:100%;
  7634. }
  7635. #u28212_text {
  7636. border-width:0px;
  7637. word-wrap:break-word;
  7638. text-transform:none;
  7639. visibility:hidden;
  7640. }
  7641. #u28213_div {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:0px;
  7645. top:0px;
  7646. width:1000px;
  7647. height:580px;
  7648. background:inherit;
  7649. background-color:rgba(255, 255, 255, 1);
  7650. box-sizing:border-box;
  7651. border-width:1px;
  7652. border-style:solid;
  7653. border-color:rgba(242, 242, 242, 1);
  7654. border-radius:0px;
  7655. -moz-box-shadow:none;
  7656. -webkit-box-shadow:none;
  7657. box-shadow:none;
  7658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7659. font-weight:400;
  7660. font-style:normal;
  7661. font-size:14px;
  7662. color:#AAAAAA;
  7663. text-align:center;
  7664. line-height:30px;
  7665. }
  7666. #u28213 {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:1121px;
  7670. top:266px;
  7671. width:1000px;
  7672. height:580px;
  7673. display:flex;
  7674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7675. font-weight:400;
  7676. font-style:normal;
  7677. font-size:14px;
  7678. color:#AAAAAA;
  7679. text-align:center;
  7680. line-height:30px;
  7681. }
  7682. #u28213 .text {
  7683. position:absolute;
  7684. align-self:center;
  7685. padding:5px 10px 5px 10px;
  7686. box-sizing:border-box;
  7687. width:100%;
  7688. }
  7689. #u28213_text {
  7690. border-width:0px;
  7691. word-wrap:break-word;
  7692. text-transform:none;
  7693. visibility:hidden;
  7694. }
  7695. #u28214_div {
  7696. border-width:0px;
  7697. position:absolute;
  7698. left:0px;
  7699. top:0px;
  7700. width:73px;
  7701. height:40px;
  7702. background:inherit;
  7703. background-color:rgba(255, 255, 255, 0);
  7704. border:none;
  7705. border-left:0px;
  7706. border-top:0px;
  7707. border-right:0px;
  7708. border-radius:0px;
  7709. border-bottom-right-radius:0px;
  7710. border-bottom-left-radius:0px;
  7711. -moz-box-shadow:none;
  7712. -webkit-box-shadow:none;
  7713. box-shadow:none;
  7714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7715. font-weight:400;
  7716. font-style:normal;
  7717. font-size:18px;
  7718. }
  7719. #u28214 {
  7720. border-width:0px;
  7721. position:absolute;
  7722. left:1161px;
  7723. top:282px;
  7724. width:73px;
  7725. height:40px;
  7726. display:flex;
  7727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7728. font-weight:400;
  7729. font-style:normal;
  7730. font-size:18px;
  7731. }
  7732. #u28214 .text {
  7733. position:absolute;
  7734. align-self:center;
  7735. padding:0px 0px 0px 0px;
  7736. box-sizing:border-box;
  7737. width:100%;
  7738. }
  7739. #u28214_text {
  7740. border-width:0px;
  7741. white-space:nowrap;
  7742. text-transform:none;
  7743. }
  7744. #u28215_div {
  7745. border-width:0px;
  7746. position:absolute;
  7747. left:0px;
  7748. top:0px;
  7749. width:81px;
  7750. height:30px;
  7751. background:inherit;
  7752. background-color:rgba(255, 255, 255, 0);
  7753. border:none;
  7754. border-top:0px;
  7755. border-right:0px;
  7756. border-bottom:0px;
  7757. border-radius:0px;
  7758. border-top-left-radius:0px;
  7759. border-bottom-left-radius:0px;
  7760. -moz-box-shadow:none;
  7761. -webkit-box-shadow:none;
  7762. box-shadow:none;
  7763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7764. font-weight:400;
  7765. font-style:normal;
  7766. font-size:14px;
  7767. color:#7F7F7F;
  7768. }
  7769. #u28215 {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:1161px;
  7773. top:332px;
  7774. width:81px;
  7775. height:30px;
  7776. display:flex;
  7777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7778. font-weight:400;
  7779. font-style:normal;
  7780. font-size:14px;
  7781. color:#7F7F7F;
  7782. }
  7783. #u28215 .text {
  7784. position:absolute;
  7785. align-self:center;
  7786. padding:5px 10px 5px 0px;
  7787. box-sizing:border-box;
  7788. width:100%;
  7789. }
  7790. #u28215_text {
  7791. border-width:0px;
  7792. white-space:nowrap;
  7793. text-transform:none;
  7794. }
  7795. #u28216_div {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:0px;
  7799. top:0px;
  7800. width:142px;
  7801. height:30px;
  7802. background:inherit;
  7803. background-color:rgba(255, 255, 255, 0);
  7804. border:none;
  7805. border-top:0px;
  7806. border-right:0px;
  7807. border-bottom:0px;
  7808. border-radius:0px;
  7809. border-top-left-radius:0px;
  7810. border-bottom-left-radius:0px;
  7811. -moz-box-shadow:none;
  7812. -webkit-box-shadow:none;
  7813. box-shadow:none;
  7814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:14px;
  7818. color:#1890FF;
  7819. }
  7820. #u28216 {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:1242px;
  7824. top:332px;
  7825. width:142px;
  7826. height:30px;
  7827. display:flex;
  7828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. font-size:14px;
  7832. color:#1890FF;
  7833. }
  7834. #u28216 .text {
  7835. position:absolute;
  7836. align-self:center;
  7837. padding:5px 10px 5px 0px;
  7838. box-sizing:border-box;
  7839. width:100%;
  7840. }
  7841. #u28216_text {
  7842. border-width:0px;
  7843. white-space:nowrap;
  7844. text-transform:none;
  7845. }
  7846. #u28217_div {
  7847. border-width:0px;
  7848. position:absolute;
  7849. left:0px;
  7850. top:0px;
  7851. width:81px;
  7852. height:30px;
  7853. background:inherit;
  7854. background-color:rgba(255, 255, 255, 0);
  7855. border:none;
  7856. border-top:0px;
  7857. border-right:0px;
  7858. border-bottom:0px;
  7859. border-radius:0px;
  7860. border-top-left-radius:0px;
  7861. border-bottom-left-radius:0px;
  7862. -moz-box-shadow:none;
  7863. -webkit-box-shadow:none;
  7864. box-shadow:none;
  7865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7866. font-weight:400;
  7867. font-style:normal;
  7868. font-size:14px;
  7869. color:#7F7F7F;
  7870. }
  7871. #u28217 {
  7872. border-width:0px;
  7873. position:absolute;
  7874. left:1481px;
  7875. top:332px;
  7876. width:81px;
  7877. height:30px;
  7878. display:flex;
  7879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7880. font-weight:400;
  7881. font-style:normal;
  7882. font-size:14px;
  7883. color:#7F7F7F;
  7884. }
  7885. #u28217 .text {
  7886. position:absolute;
  7887. align-self:center;
  7888. padding:5px 10px 5px 0px;
  7889. box-sizing:border-box;
  7890. width:100%;
  7891. }
  7892. #u28217_text {
  7893. border-width:0px;
  7894. white-space:nowrap;
  7895. text-transform:none;
  7896. }
  7897. #u28218_div {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:0px;
  7901. top:0px;
  7902. width:67px;
  7903. height:30px;
  7904. background:inherit;
  7905. background-color:rgba(255, 255, 255, 0);
  7906. border:none;
  7907. border-top:0px;
  7908. border-right:0px;
  7909. border-bottom:0px;
  7910. border-radius:0px;
  7911. border-top-left-radius:0px;
  7912. border-bottom-left-radius:0px;
  7913. -moz-box-shadow:none;
  7914. -webkit-box-shadow:none;
  7915. box-shadow:none;
  7916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7917. font-weight:400;
  7918. font-style:normal;
  7919. font-size:14px;
  7920. }
  7921. #u28218 {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:1562px;
  7925. top:332px;
  7926. width:67px;
  7927. height:30px;
  7928. display:flex;
  7929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7930. font-weight:400;
  7931. font-style:normal;
  7932. font-size:14px;
  7933. }
  7934. #u28218 .text {
  7935. position:absolute;
  7936. align-self:center;
  7937. padding:5px 10px 5px 0px;
  7938. box-sizing:border-box;
  7939. width:100%;
  7940. }
  7941. #u28218_text {
  7942. border-width:0px;
  7943. white-space:nowrap;
  7944. text-transform:none;
  7945. }
  7946. #u28219_div {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:0px;
  7950. top:0px;
  7951. width:81px;
  7952. height:30px;
  7953. background:inherit;
  7954. background-color:rgba(255, 255, 255, 0);
  7955. border:none;
  7956. border-top:0px;
  7957. border-right:0px;
  7958. border-bottom:0px;
  7959. border-radius:0px;
  7960. border-top-left-radius:0px;
  7961. border-bottom-left-radius:0px;
  7962. -moz-box-shadow:none;
  7963. -webkit-box-shadow:none;
  7964. box-shadow:none;
  7965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7966. font-weight:400;
  7967. font-style:normal;
  7968. font-size:14px;
  7969. color:#7F7F7F;
  7970. }
  7971. #u28219 {
  7972. border-width:0px;
  7973. position:absolute;
  7974. left:1778px;
  7975. top:332px;
  7976. width:81px;
  7977. height:30px;
  7978. display:flex;
  7979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7980. font-weight:400;
  7981. font-style:normal;
  7982. font-size:14px;
  7983. color:#7F7F7F;
  7984. }
  7985. #u28219 .text {
  7986. position:absolute;
  7987. align-self:center;
  7988. padding:5px 10px 5px 0px;
  7989. box-sizing:border-box;
  7990. width:100%;
  7991. }
  7992. #u28219_text {
  7993. border-width:0px;
  7994. white-space:nowrap;
  7995. text-transform:none;
  7996. }
  7997. #u28220_div {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:0px;
  8001. top:0px;
  8002. width:53px;
  8003. height:30px;
  8004. background:inherit;
  8005. background-color:rgba(255, 255, 255, 0);
  8006. border:none;
  8007. border-top:0px;
  8008. border-right:0px;
  8009. border-bottom:0px;
  8010. border-radius:0px;
  8011. border-top-left-radius:0px;
  8012. border-bottom-left-radius:0px;
  8013. -moz-box-shadow:none;
  8014. -webkit-box-shadow:none;
  8015. box-shadow:none;
  8016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8017. font-weight:400;
  8018. font-style:normal;
  8019. font-size:14px;
  8020. }
  8021. #u28220 {
  8022. border-width:0px;
  8023. position:absolute;
  8024. left:1859px;
  8025. top:332px;
  8026. width:53px;
  8027. height:30px;
  8028. display:flex;
  8029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8030. font-weight:400;
  8031. font-style:normal;
  8032. font-size:14px;
  8033. }
  8034. #u28220 .text {
  8035. position:absolute;
  8036. align-self:center;
  8037. padding:5px 10px 5px 0px;
  8038. box-sizing:border-box;
  8039. width:100%;
  8040. }
  8041. #u28220_text {
  8042. border-width:0px;
  8043. white-space:nowrap;
  8044. text-transform:none;
  8045. }
  8046. #u28221_div {
  8047. border-width:0px;
  8048. position:absolute;
  8049. left:0px;
  8050. top:0px;
  8051. width:81px;
  8052. height:30px;
  8053. background:inherit;
  8054. background-color:rgba(255, 255, 255, 0);
  8055. border:none;
  8056. border-top:0px;
  8057. border-right:0px;
  8058. border-bottom:0px;
  8059. border-radius:0px;
  8060. border-top-left-radius:0px;
  8061. border-bottom-left-radius:0px;
  8062. -moz-box-shadow:none;
  8063. -webkit-box-shadow:none;
  8064. box-shadow:none;
  8065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8066. font-weight:400;
  8067. font-style:normal;
  8068. font-size:14px;
  8069. color:#7F7F7F;
  8070. }
  8071. #u28221 {
  8072. border-width:0px;
  8073. position:absolute;
  8074. left:1161px;
  8075. top:372px;
  8076. width:81px;
  8077. height:30px;
  8078. display:flex;
  8079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8080. font-weight:400;
  8081. font-style:normal;
  8082. font-size:14px;
  8083. color:#7F7F7F;
  8084. }
  8085. #u28221 .text {
  8086. position:absolute;
  8087. align-self:center;
  8088. padding:5px 10px 5px 0px;
  8089. box-sizing:border-box;
  8090. width:100%;
  8091. }
  8092. #u28221_text {
  8093. border-width:0px;
  8094. white-space:nowrap;
  8095. text-transform:none;
  8096. }
  8097. #u28222_div {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:0px;
  8101. top:0px;
  8102. width:81px;
  8103. height:30px;
  8104. background:inherit;
  8105. background-color:rgba(255, 255, 255, 0);
  8106. border:none;
  8107. border-top:0px;
  8108. border-right:0px;
  8109. border-bottom:0px;
  8110. border-radius:0px;
  8111. border-top-left-radius:0px;
  8112. border-bottom-left-radius:0px;
  8113. -moz-box-shadow:none;
  8114. -webkit-box-shadow:none;
  8115. box-shadow:none;
  8116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8117. font-weight:400;
  8118. font-style:normal;
  8119. font-size:14px;
  8120. color:#7F7F7F;
  8121. }
  8122. #u28222 {
  8123. border-width:0px;
  8124. position:absolute;
  8125. left:1481px;
  8126. top:372px;
  8127. width:81px;
  8128. height:30px;
  8129. display:flex;
  8130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8131. font-weight:400;
  8132. font-style:normal;
  8133. font-size:14px;
  8134. color:#7F7F7F;
  8135. }
  8136. #u28222 .text {
  8137. position:absolute;
  8138. align-self:center;
  8139. padding:5px 10px 5px 0px;
  8140. box-sizing:border-box;
  8141. width:100%;
  8142. }
  8143. #u28222_text {
  8144. border-width:0px;
  8145. white-space:nowrap;
  8146. text-transform:none;
  8147. }
  8148. #u28223_div {
  8149. border-width:0px;
  8150. position:absolute;
  8151. left:0px;
  8152. top:0px;
  8153. width:67px;
  8154. height:30px;
  8155. background:inherit;
  8156. background-color:rgba(255, 255, 255, 0);
  8157. border:none;
  8158. border-top:0px;
  8159. border-right:0px;
  8160. border-bottom:0px;
  8161. border-radius:0px;
  8162. border-top-left-radius:0px;
  8163. border-bottom-left-radius:0px;
  8164. -moz-box-shadow:none;
  8165. -webkit-box-shadow:none;
  8166. box-shadow:none;
  8167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8168. font-weight:400;
  8169. font-style:normal;
  8170. font-size:14px;
  8171. }
  8172. #u28223 {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:1562px;
  8176. top:372px;
  8177. width:67px;
  8178. height:30px;
  8179. display:flex;
  8180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8181. font-weight:400;
  8182. font-style:normal;
  8183. font-size:14px;
  8184. }
  8185. #u28223 .text {
  8186. position:absolute;
  8187. align-self:center;
  8188. padding:5px 10px 5px 0px;
  8189. box-sizing:border-box;
  8190. width:100%;
  8191. }
  8192. #u28223_text {
  8193. border-width:0px;
  8194. white-space:nowrap;
  8195. text-transform:none;
  8196. }
  8197. #u28224_div {
  8198. border-width:0px;
  8199. position:absolute;
  8200. left:0px;
  8201. top:0px;
  8202. width:67px;
  8203. height:30px;
  8204. background:inherit;
  8205. background-color:rgba(255, 255, 255, 0);
  8206. border:none;
  8207. border-top:0px;
  8208. border-right:0px;
  8209. border-bottom:0px;
  8210. border-radius:0px;
  8211. border-top-left-radius:0px;
  8212. border-bottom-left-radius:0px;
  8213. -moz-box-shadow:none;
  8214. -webkit-box-shadow:none;
  8215. box-shadow:none;
  8216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8217. font-weight:400;
  8218. font-style:normal;
  8219. font-size:14px;
  8220. color:#7F7F7F;
  8221. }
  8222. #u28224 {
  8223. border-width:0px;
  8224. position:absolute;
  8225. left:1778px;
  8226. top:372px;
  8227. width:67px;
  8228. height:30px;
  8229. display:flex;
  8230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8231. font-weight:400;
  8232. font-style:normal;
  8233. font-size:14px;
  8234. color:#7F7F7F;
  8235. }
  8236. #u28224 .text {
  8237. position:absolute;
  8238. align-self:center;
  8239. padding:5px 10px 5px 0px;
  8240. box-sizing:border-box;
  8241. width:100%;
  8242. }
  8243. #u28224_text {
  8244. border-width:0px;
  8245. white-space:nowrap;
  8246. text-transform:none;
  8247. }
  8248. #u28225_div {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:0px;
  8252. top:0px;
  8253. width:85px;
  8254. height:30px;
  8255. background:inherit;
  8256. background-color:rgba(255, 255, 255, 0);
  8257. border:none;
  8258. border-top:0px;
  8259. border-right:0px;
  8260. border-bottom:0px;
  8261. border-radius:0px;
  8262. border-top-left-radius:0px;
  8263. border-bottom-left-radius:0px;
  8264. -moz-box-shadow:none;
  8265. -webkit-box-shadow:none;
  8266. box-shadow:none;
  8267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8268. font-weight:400;
  8269. font-style:normal;
  8270. font-size:14px;
  8271. }
  8272. #u28225 {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:1859px;
  8276. top:372px;
  8277. width:85px;
  8278. height:30px;
  8279. display:flex;
  8280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8281. font-weight:400;
  8282. font-style:normal;
  8283. font-size:14px;
  8284. }
  8285. #u28225 .text {
  8286. position:absolute;
  8287. align-self:center;
  8288. padding:5px 10px 5px 0px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u28225_text {
  8293. border-width:0px;
  8294. white-space:nowrap;
  8295. text-transform:none;
  8296. }
  8297. #u28226_div {
  8298. border-width:0px;
  8299. position:absolute;
  8300. left:0px;
  8301. top:0px;
  8302. width:183px;
  8303. height:30px;
  8304. background:inherit;
  8305. background-color:rgba(255, 255, 255, 0);
  8306. border:none;
  8307. border-top:0px;
  8308. border-right:0px;
  8309. border-bottom:0px;
  8310. border-radius:0px;
  8311. border-top-left-radius:0px;
  8312. border-bottom-left-radius:0px;
  8313. -moz-box-shadow:none;
  8314. -webkit-box-shadow:none;
  8315. box-shadow:none;
  8316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8317. font-weight:400;
  8318. font-style:normal;
  8319. font-size:14px;
  8320. }
  8321. #u28226 {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:1242px;
  8325. top:372px;
  8326. width:183px;
  8327. height:30px;
  8328. display:flex;
  8329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8330. font-weight:400;
  8331. font-style:normal;
  8332. font-size:14px;
  8333. }
  8334. #u28226 .text {
  8335. position:absolute;
  8336. align-self:center;
  8337. padding:5px 10px 5px 0px;
  8338. box-sizing:border-box;
  8339. width:100%;
  8340. }
  8341. #u28226_text {
  8342. border-width:0px;
  8343. white-space:nowrap;
  8344. text-transform:none;
  8345. }
  8346. #u28227_div {
  8347. border-width:0px;
  8348. position:absolute;
  8349. left:0px;
  8350. top:0px;
  8351. width:81px;
  8352. height:30px;
  8353. background:inherit;
  8354. background-color:rgba(255, 255, 255, 0);
  8355. border:none;
  8356. border-top:0px;
  8357. border-right:0px;
  8358. border-bottom:0px;
  8359. border-radius:0px;
  8360. border-top-left-radius:0px;
  8361. border-bottom-left-radius:0px;
  8362. -moz-box-shadow:none;
  8363. -webkit-box-shadow:none;
  8364. box-shadow:none;
  8365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8366. font-weight:400;
  8367. font-style:normal;
  8368. font-size:14px;
  8369. color:#7F7F7F;
  8370. }
  8371. #u28227 {
  8372. border-width:0px;
  8373. position:absolute;
  8374. left:1161px;
  8375. top:412px;
  8376. width:81px;
  8377. height:30px;
  8378. display:flex;
  8379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8380. font-weight:400;
  8381. font-style:normal;
  8382. font-size:14px;
  8383. color:#7F7F7F;
  8384. }
  8385. #u28227 .text {
  8386. position:absolute;
  8387. align-self:center;
  8388. padding:5px 10px 5px 0px;
  8389. box-sizing:border-box;
  8390. width:100%;
  8391. }
  8392. #u28227_text {
  8393. border-width:0px;
  8394. white-space:nowrap;
  8395. text-transform:none;
  8396. }
  8397. #u28228_div {
  8398. border-width:0px;
  8399. position:absolute;
  8400. left:0px;
  8401. top:0px;
  8402. width:126px;
  8403. height:30px;
  8404. background:inherit;
  8405. background-color:rgba(255, 255, 255, 0);
  8406. border:none;
  8407. border-top:0px;
  8408. border-right:0px;
  8409. border-bottom:0px;
  8410. border-radius:0px;
  8411. border-top-left-radius:0px;
  8412. border-bottom-left-radius:0px;
  8413. -moz-box-shadow:none;
  8414. -webkit-box-shadow:none;
  8415. box-shadow:none;
  8416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8417. font-weight:400;
  8418. font-style:normal;
  8419. font-size:14px;
  8420. }
  8421. #u28228 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:1242px;
  8425. top:412px;
  8426. width:126px;
  8427. height:30px;
  8428. display:flex;
  8429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8430. font-weight:400;
  8431. font-style:normal;
  8432. font-size:14px;
  8433. }
  8434. #u28228 .text {
  8435. position:absolute;
  8436. align-self:center;
  8437. padding:5px 10px 5px 0px;
  8438. box-sizing:border-box;
  8439. width:100%;
  8440. }
  8441. #u28228_text {
  8442. border-width:0px;
  8443. white-space:nowrap;
  8444. text-transform:none;
  8445. }
  8446. #u28229_div {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:81px;
  8452. height:30px;
  8453. background:inherit;
  8454. background-color:rgba(255, 255, 255, 0);
  8455. border:none;
  8456. border-top:0px;
  8457. border-right:0px;
  8458. border-bottom:0px;
  8459. border-radius:0px;
  8460. border-top-left-radius:0px;
  8461. border-bottom-left-radius:0px;
  8462. -moz-box-shadow:none;
  8463. -webkit-box-shadow:none;
  8464. box-shadow:none;
  8465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8466. font-weight:400;
  8467. font-style:normal;
  8468. font-size:14px;
  8469. color:#7F7F7F;
  8470. }
  8471. #u28229 {
  8472. border-width:0px;
  8473. position:absolute;
  8474. left:1161px;
  8475. top:452px;
  8476. width:81px;
  8477. height:30px;
  8478. display:flex;
  8479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8480. font-weight:400;
  8481. font-style:normal;
  8482. font-size:14px;
  8483. color:#7F7F7F;
  8484. }
  8485. #u28229 .text {
  8486. position:absolute;
  8487. align-self:center;
  8488. padding:5px 10px 5px 0px;
  8489. box-sizing:border-box;
  8490. width:100%;
  8491. }
  8492. #u28229_text {
  8493. border-width:0px;
  8494. white-space:nowrap;
  8495. text-transform:none;
  8496. }
  8497. #u28230_div {
  8498. border-width:0px;
  8499. position:absolute;
  8500. left:0px;
  8501. top:0px;
  8502. width:263px;
  8503. height:30px;
  8504. background:inherit;
  8505. background-color:rgba(255, 255, 255, 0);
  8506. border:none;
  8507. border-top:0px;
  8508. border-right:0px;
  8509. border-bottom:0px;
  8510. border-radius:0px;
  8511. border-top-left-radius:0px;
  8512. border-bottom-left-radius:0px;
  8513. -moz-box-shadow:none;
  8514. -webkit-box-shadow:none;
  8515. box-shadow:none;
  8516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8517. font-weight:400;
  8518. font-style:normal;
  8519. font-size:14px;
  8520. }
  8521. #u28230 {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:1242px;
  8525. top:452px;
  8526. width:263px;
  8527. height:30px;
  8528. display:flex;
  8529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8530. font-weight:400;
  8531. font-style:normal;
  8532. font-size:14px;
  8533. }
  8534. #u28230 .text {
  8535. position:absolute;
  8536. align-self:center;
  8537. padding:5px 10px 5px 0px;
  8538. box-sizing:border-box;
  8539. width:100%;
  8540. }
  8541. #u28230_text {
  8542. border-width:0px;
  8543. white-space:nowrap;
  8544. text-transform:none;
  8545. }
  8546. #u28231_img {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:0px;
  8550. top:0px;
  8551. width:942px;
  8552. height:2px;
  8553. }
  8554. #u28231 {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:1161px;
  8558. top:500px;
  8559. width:941px;
  8560. height:1px;
  8561. display:flex;
  8562. }
  8563. #u28231 .text {
  8564. position:absolute;
  8565. align-self:center;
  8566. padding:2px 2px 2px 2px;
  8567. box-sizing:border-box;
  8568. width:100%;
  8569. }
  8570. #u28231_text {
  8571. border-width:0px;
  8572. word-wrap:break-word;
  8573. text-transform:none;
  8574. visibility:hidden;
  8575. }
  8576. #u28232_div {
  8577. border-width:0px;
  8578. position:absolute;
  8579. left:0px;
  8580. top:0px;
  8581. width:1000px;
  8582. height:200px;
  8583. background:inherit;
  8584. background-color:rgba(255, 255, 255, 1);
  8585. box-sizing:border-box;
  8586. border-width:1px;
  8587. border-style:solid;
  8588. border-color:rgba(215, 215, 215, 1);
  8589. border-radius:0px;
  8590. -moz-box-shadow:none;
  8591. -webkit-box-shadow:none;
  8592. box-shadow:none;
  8593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8594. font-weight:400;
  8595. font-style:normal;
  8596. font-size:14px;
  8597. color:#AAAAAA;
  8598. text-align:center;
  8599. line-height:30px;
  8600. }
  8601. #u28232 {
  8602. border-width:0px;
  8603. position:absolute;
  8604. left:1122px;
  8605. top:55px;
  8606. width:1000px;
  8607. height:200px;
  8608. display:flex;
  8609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. font-size:14px;
  8613. color:#AAAAAA;
  8614. text-align:center;
  8615. line-height:30px;
  8616. }
  8617. #u28232 .text {
  8618. position:absolute;
  8619. align-self:center;
  8620. padding:5px 10px 5px 10px;
  8621. box-sizing:border-box;
  8622. width:100%;
  8623. }
  8624. #u28232_text {
  8625. border-width:0px;
  8626. word-wrap:break-word;
  8627. text-transform:none;
  8628. visibility:hidden;
  8629. }
  8630. #u28233_div {
  8631. border-width:0px;
  8632. position:absolute;
  8633. left:0px;
  8634. top:0px;
  8635. width:83px;
  8636. height:35px;
  8637. background:inherit;
  8638. background-color:rgba(255, 255, 255, 0);
  8639. border:none;
  8640. border-top:0px;
  8641. border-right:0px;
  8642. border-bottom:0px;
  8643. border-radius:0px;
  8644. border-top-left-radius:0px;
  8645. border-bottom-left-radius:0px;
  8646. -moz-box-shadow:none;
  8647. -webkit-box-shadow:none;
  8648. box-shadow:none;
  8649. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8650. font-weight:500;
  8651. font-style:normal;
  8652. font-size:18px;
  8653. }
  8654. #u28233 {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:1142px;
  8658. top:73px;
  8659. width:83px;
  8660. height:35px;
  8661. display:flex;
  8662. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8663. font-weight:500;
  8664. font-style:normal;
  8665. font-size:18px;
  8666. }
  8667. #u28233 .text {
  8668. position:absolute;
  8669. align-self:center;
  8670. padding:5px 10px 5px 0px;
  8671. box-sizing:border-box;
  8672. width:100%;
  8673. }
  8674. #u28233_text {
  8675. border-width:0px;
  8676. white-space:nowrap;
  8677. text-transform:none;
  8678. }
  8679. #u28234_div {
  8680. border-width:0px;
  8681. position:absolute;
  8682. left:0px;
  8683. top:0px;
  8684. width:107px;
  8685. height:43px;
  8686. background:inherit;
  8687. background-color:rgba(255, 255, 255, 0);
  8688. border:none;
  8689. border-top:0px;
  8690. border-right:0px;
  8691. border-bottom:0px;
  8692. border-radius:0px;
  8693. border-top-left-radius:0px;
  8694. border-bottom-left-radius:0px;
  8695. -moz-box-shadow:none;
  8696. -webkit-box-shadow:none;
  8697. box-shadow:none;
  8698. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8699. font-weight:500;
  8700. font-style:normal;
  8701. font-size:24px;
  8702. }
  8703. #u28234 {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:1152px;
  8707. top:124px;
  8708. width:107px;
  8709. height:43px;
  8710. display:flex;
  8711. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8712. font-weight:500;
  8713. font-style:normal;
  8714. font-size:24px;
  8715. }
  8716. #u28234 .text {
  8717. position:absolute;
  8718. align-self:center;
  8719. padding:5px 10px 5px 0px;
  8720. box-sizing:border-box;
  8721. width:100%;
  8722. }
  8723. #u28234_text {
  8724. border-width:0px;
  8725. white-space:nowrap;
  8726. text-transform:none;
  8727. }
  8728. #u28235_img {
  8729. border-width:0px;
  8730. position:absolute;
  8731. left:0px;
  8732. top:0px;
  8733. width:108px;
  8734. height:108px;
  8735. }
  8736. #u28235 {
  8737. border-width:0px;
  8738. position:absolute;
  8739. left:1972px;
  8740. top:125px;
  8741. width:108px;
  8742. height:108px;
  8743. display:flex;
  8744. -webkit-transform:rotate(315deg);
  8745. -moz-transform:rotate(315deg);
  8746. -ms-transform:rotate(315deg);
  8747. transform:rotate(315deg);
  8748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8749. font-weight:400;
  8750. font-style:normal;
  8751. font-size:28px;
  8752. color:#F59A23;
  8753. }
  8754. #u28235 .text {
  8755. position:absolute;
  8756. align-self:center;
  8757. padding:2px 2px 2px 2px;
  8758. box-sizing:border-box;
  8759. width:100%;
  8760. }
  8761. #u28235_text {
  8762. border-width:0px;
  8763. word-wrap:break-word;
  8764. text-transform:none;
  8765. }
  8766. #u28236_div {
  8767. border-width:0px;
  8768. position:absolute;
  8769. left:0px;
  8770. top:0px;
  8771. width:325px;
  8772. height:60px;
  8773. background:inherit;
  8774. background-color:rgba(255, 255, 255, 0);
  8775. border:none;
  8776. border-left:0px;
  8777. border-top:0px;
  8778. border-right:0px;
  8779. border-radius:0px;
  8780. border-bottom-right-radius:0px;
  8781. border-bottom-left-radius:0px;
  8782. -moz-box-shadow:none;
  8783. -webkit-box-shadow:none;
  8784. box-shadow:none;
  8785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8786. font-weight:400;
  8787. font-style:normal;
  8788. font-size:14px;
  8789. line-height:30px;
  8790. }
  8791. #u28236 {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:1152px;
  8795. top:179px;
  8796. width:325px;
  8797. height:60px;
  8798. display:flex;
  8799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8800. font-weight:400;
  8801. font-style:normal;
  8802. font-size:14px;
  8803. line-height:30px;
  8804. }
  8805. #u28236 .text {
  8806. position:absolute;
  8807. align-self:flex-start;
  8808. padding:0px 0px 0px 0px;
  8809. box-sizing:border-box;
  8810. width:100%;
  8811. }
  8812. #u28236_text {
  8813. border-width:0px;
  8814. word-wrap:break-word;
  8815. text-transform:none;
  8816. }
  8817. #u28237_img {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:0px;
  8821. top:0px;
  8822. width:17px;
  8823. height:17px;
  8824. }
  8825. #u28237 {
  8826. border-width:0px;
  8827. position:absolute;
  8828. left:2094px;
  8829. top:77px;
  8830. width:17px;
  8831. height:17px;
  8832. display:flex;
  8833. }
  8834. #u28237 .text {
  8835. position:absolute;
  8836. align-self:center;
  8837. padding:2px 2px 2px 2px;
  8838. box-sizing:border-box;
  8839. width:100%;
  8840. }
  8841. #u28237_text {
  8842. border-width:0px;
  8843. word-wrap:break-word;
  8844. text-transform:none;
  8845. visibility:hidden;
  8846. }
  8847. #u28238 {
  8848. border-width:0px;
  8849. position:absolute;
  8850. left:0px;
  8851. top:0px;
  8852. width:0px;
  8853. height:0px;
  8854. }
  8855. #u28239_div {
  8856. border-width:0px;
  8857. position:absolute;
  8858. left:0px;
  8859. top:0px;
  8860. width:1000px;
  8861. height:60px;
  8862. background:inherit;
  8863. background-color:rgba(255, 255, 255, 1);
  8864. box-sizing:border-box;
  8865. border-width:1px;
  8866. border-style:solid;
  8867. border-color:rgba(215, 215, 215, 1);
  8868. border-radius:0px;
  8869. -moz-box-shadow:none;
  8870. -webkit-box-shadow:none;
  8871. box-shadow:none;
  8872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8873. font-weight:400;
  8874. font-style:normal;
  8875. font-size:14px;
  8876. color:#AAAAAA;
  8877. text-align:center;
  8878. line-height:30px;
  8879. }
  8880. #u28239 {
  8881. border-width:0px;
  8882. position:absolute;
  8883. left:1121px;
  8884. top:1418px;
  8885. width:1000px;
  8886. height:60px;
  8887. display:flex;
  8888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8889. font-weight:400;
  8890. font-style:normal;
  8891. font-size:14px;
  8892. color:#AAAAAA;
  8893. text-align:center;
  8894. line-height:30px;
  8895. }
  8896. #u28239 .text {
  8897. position:absolute;
  8898. align-self:center;
  8899. padding:5px 10px 5px 10px;
  8900. box-sizing:border-box;
  8901. width:100%;
  8902. }
  8903. #u28239_text {
  8904. border-width:0px;
  8905. word-wrap:break-word;
  8906. text-transform:none;
  8907. visibility:hidden;
  8908. }
  8909. #u28240_div {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:0px;
  8913. top:0px;
  8914. width:80px;
  8915. height:30px;
  8916. background:inherit;
  8917. background-color:rgba(255, 255, 255, 1);
  8918. box-sizing:border-box;
  8919. border-width:1px;
  8920. border-style:solid;
  8921. border-color:rgba(170, 170, 170, 1);
  8922. border-radius:4px;
  8923. -moz-box-shadow:none;
  8924. -webkit-box-shadow:none;
  8925. box-shadow:none;
  8926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8927. font-weight:400;
  8928. font-style:normal;
  8929. font-size:14px;
  8930. }
  8931. #u28240 {
  8932. border-width:0px;
  8933. position:absolute;
  8934. left:2011px;
  8935. top:1433px;
  8936. width:80px;
  8937. height:30px;
  8938. display:flex;
  8939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8940. font-weight:400;
  8941. font-style:normal;
  8942. font-size:14px;
  8943. }
  8944. #u28240 .text {
  8945. position:absolute;
  8946. align-self:center;
  8947. padding:2px 2px 2px 2px;
  8948. box-sizing:border-box;
  8949. width:100%;
  8950. }
  8951. #u28240_text {
  8952. border-width:0px;
  8953. word-wrap:break-word;
  8954. text-transform:none;
  8955. }
  8956. #u28241 {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:0px;
  8960. top:0px;
  8961. width:0px;
  8962. height:0px;
  8963. }
  8964. #u28242_div {
  8965. border-width:0px;
  8966. position:absolute;
  8967. left:0px;
  8968. top:0px;
  8969. width:1000px;
  8970. height:561px;
  8971. background:inherit;
  8972. background-color:rgba(255, 255, 255, 1);
  8973. box-sizing:border-box;
  8974. border-width:1px;
  8975. border-style:solid;
  8976. border-color:rgba(242, 242, 242, 1);
  8977. border-radius:0px;
  8978. -moz-box-shadow:none;
  8979. -webkit-box-shadow:none;
  8980. box-shadow:none;
  8981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8982. font-weight:400;
  8983. font-style:normal;
  8984. font-size:14px;
  8985. color:#AAAAAA;
  8986. text-align:center;
  8987. line-height:30px;
  8988. }
  8989. #u28242 {
  8990. border-width:0px;
  8991. position:absolute;
  8992. left:1121px;
  8993. top:857px;
  8994. width:1000px;
  8995. height:561px;
  8996. display:flex;
  8997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8998. font-weight:400;
  8999. font-style:normal;
  9000. font-size:14px;
  9001. color:#AAAAAA;
  9002. text-align:center;
  9003. line-height:30px;
  9004. }
  9005. #u28242 .text {
  9006. position:absolute;
  9007. align-self:center;
  9008. padding:5px 10px 5px 10px;
  9009. box-sizing:border-box;
  9010. width:100%;
  9011. }
  9012. #u28242_text {
  9013. border-width:0px;
  9014. word-wrap:break-word;
  9015. text-transform:none;
  9016. visibility:hidden;
  9017. }
  9018. #u28243_div {
  9019. border-width:0px;
  9020. position:absolute;
  9021. left:0px;
  9022. top:0px;
  9023. width:73px;
  9024. height:40px;
  9025. background:inherit;
  9026. background-color:rgba(255, 255, 255, 0);
  9027. border:none;
  9028. border-left:0px;
  9029. border-top:0px;
  9030. border-right:0px;
  9031. border-radius:0px;
  9032. border-bottom-right-radius:0px;
  9033. border-bottom-left-radius:0px;
  9034. -moz-box-shadow:none;
  9035. -webkit-box-shadow:none;
  9036. box-shadow:none;
  9037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9038. font-weight:400;
  9039. font-style:normal;
  9040. font-size:18px;
  9041. }
  9042. #u28243 {
  9043. border-width:0px;
  9044. position:absolute;
  9045. left:1161px;
  9046. top:873px;
  9047. width:73px;
  9048. height:40px;
  9049. display:flex;
  9050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9051. font-weight:400;
  9052. font-style:normal;
  9053. font-size:18px;
  9054. }
  9055. #u28243 .text {
  9056. position:absolute;
  9057. align-self:center;
  9058. padding:0px 0px 0px 0px;
  9059. box-sizing:border-box;
  9060. width:100%;
  9061. }
  9062. #u28243_text {
  9063. border-width:0px;
  9064. white-space:nowrap;
  9065. text-transform:none;
  9066. }
  9067. #u28244 {
  9068. border-width:0px;
  9069. position:absolute;
  9070. left:0px;
  9071. top:0px;
  9072. width:0px;
  9073. height:0px;
  9074. }
  9075. #u28245_div {
  9076. border-width:0px;
  9077. position:absolute;
  9078. left:0px;
  9079. top:0px;
  9080. width:175px;
  9081. height:20px;
  9082. background:inherit;
  9083. background-color:rgba(255, 255, 255, 0);
  9084. border:none;
  9085. border-radius:0px;
  9086. -moz-box-shadow:none;
  9087. -webkit-box-shadow:none;
  9088. box-shadow:none;
  9089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9090. font-weight:400;
  9091. font-style:normal;
  9092. }
  9093. #u28245 {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:1200px;
  9097. top:1303px;
  9098. width:175px;
  9099. height:20px;
  9100. display:flex;
  9101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9102. font-weight:400;
  9103. font-style:normal;
  9104. }
  9105. #u28245 .text {
  9106. position:absolute;
  9107. align-self:flex-start;
  9108. padding:0px 0px 0px 0px;
  9109. box-sizing:border-box;
  9110. width:100%;
  9111. }
  9112. #u28245_text {
  9113. border-width:0px;
  9114. white-space:nowrap;
  9115. text-transform:none;
  9116. }
  9117. #u28246_img {
  9118. border-width:0px;
  9119. position:absolute;
  9120. left:0px;
  9121. top:0px;
  9122. width:22px;
  9123. height:22px;
  9124. }
  9125. #u28246 {
  9126. border-width:0px;
  9127. position:absolute;
  9128. left:1170px;
  9129. top:1301px;
  9130. width:22px;
  9131. height:22px;
  9132. display:flex;
  9133. font-family:'Microsoft YaHei', sans-serif;
  9134. font-weight:400;
  9135. font-style:normal;
  9136. font-size:12px;
  9137. color:#FFFFFF;
  9138. }
  9139. #u28246 .text {
  9140. position:absolute;
  9141. align-self:center;
  9142. padding:4px 4px 4px 4px;
  9143. box-sizing:border-box;
  9144. width:100%;
  9145. }
  9146. #u28246_text {
  9147. border-width:0px;
  9148. word-wrap:break-word;
  9149. text-transform:none;
  9150. visibility:hidden;
  9151. }
  9152. #u28247_div {
  9153. border-width:0px;
  9154. position:absolute;
  9155. left:0px;
  9156. top:0px;
  9157. width:878px;
  9158. height:27px;
  9159. background:inherit;
  9160. background-color:rgba(255, 255, 255, 0);
  9161. border:none;
  9162. border-top:0px;
  9163. border-right:0px;
  9164. border-bottom:0px;
  9165. border-radius:0px;
  9166. border-top-left-radius:0px;
  9167. border-bottom-left-radius:0px;
  9168. -moz-box-shadow:none;
  9169. -webkit-box-shadow:none;
  9170. box-shadow:none;
  9171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9172. font-weight:400;
  9173. font-style:normal;
  9174. font-size:12px;
  9175. }
  9176. #u28247 {
  9177. border-width:0px;
  9178. position:absolute;
  9179. left:1197px;
  9180. top:1323px;
  9181. width:878px;
  9182. height:27px;
  9183. display:flex;
  9184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9185. font-weight:400;
  9186. font-style:normal;
  9187. font-size:12px;
  9188. }
  9189. #u28247 .text {
  9190. position:absolute;
  9191. align-self:center;
  9192. padding:5px 10px 5px 0px;
  9193. box-sizing:border-box;
  9194. width:100%;
  9195. }
  9196. #u28247_text {
  9197. border-width:0px;
  9198. word-wrap:break-word;
  9199. text-transform:none;
  9200. }
  9201. #u28248_img {
  9202. border-width:0px;
  9203. position:absolute;
  9204. left:0px;
  9205. top:0px;
  9206. width:65px;
  9207. height:2px;
  9208. }
  9209. #u28248 {
  9210. border-width:0px;
  9211. position:absolute;
  9212. left:1149px;
  9213. top:1355px;
  9214. width:64px;
  9215. height:1px;
  9216. display:flex;
  9217. -webkit-transform:rotate(90deg);
  9218. -moz-transform:rotate(90deg);
  9219. -ms-transform:rotate(90deg);
  9220. transform:rotate(90deg);
  9221. }
  9222. #u28248 .text {
  9223. position:absolute;
  9224. align-self:center;
  9225. padding:2px 2px 2px 2px;
  9226. box-sizing:border-box;
  9227. width:100%;
  9228. }
  9229. #u28248_text {
  9230. border-width:0px;
  9231. word-wrap:break-word;
  9232. text-transform:none;
  9233. visibility:hidden;
  9234. }
  9235. #u28249_img {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:0px;
  9239. top:0px;
  9240. width:22px;
  9241. height:22px;
  9242. }
  9243. #u28249 {
  9244. border-width:0px;
  9245. position:absolute;
  9246. left:1170px;
  9247. top:1368px;
  9248. width:22px;
  9249. height:22px;
  9250. display:flex;
  9251. font-family:'Microsoft YaHei', sans-serif;
  9252. font-weight:400;
  9253. font-style:normal;
  9254. font-size:12px;
  9255. color:#FFFFFF;
  9256. }
  9257. #u28249 .text {
  9258. position:absolute;
  9259. align-self:center;
  9260. padding:4px 4px 4px 4px;
  9261. box-sizing:border-box;
  9262. width:100%;
  9263. }
  9264. #u28249_text {
  9265. border-width:0px;
  9266. word-wrap:break-word;
  9267. text-transform:none;
  9268. visibility:hidden;
  9269. }
  9270. #u28250_div {
  9271. border-width:0px;
  9272. position:absolute;
  9273. left:0px;
  9274. top:0px;
  9275. width:43px;
  9276. height:20px;
  9277. background:inherit;
  9278. background-color:rgba(255, 255, 255, 0);
  9279. border:none;
  9280. border-radius:0px;
  9281. -moz-box-shadow:none;
  9282. -webkit-box-shadow:none;
  9283. box-shadow:none;
  9284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9285. font-weight:400;
  9286. font-style:normal;
  9287. font-size:14px;
  9288. color:#AAAAAA;
  9289. }
  9290. #u28250 {
  9291. border-width:0px;
  9292. position:absolute;
  9293. left:1197px;
  9294. top:1368px;
  9295. width:43px;
  9296. height:20px;
  9297. display:flex;
  9298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9299. font-weight:400;
  9300. font-style:normal;
  9301. font-size:14px;
  9302. color:#AAAAAA;
  9303. }
  9304. #u28250 .text {
  9305. position:absolute;
  9306. align-self:center;
  9307. padding:0px 0px 0px 0px;
  9308. box-sizing:border-box;
  9309. width:100%;
  9310. }
  9311. #u28250_text {
  9312. border-width:0px;
  9313. white-space:nowrap;
  9314. text-transform:none;
  9315. }
  9316. #u28251 {
  9317. border-width:0px;
  9318. position:absolute;
  9319. left:0px;
  9320. top:0px;
  9321. width:0px;
  9322. height:0px;
  9323. }
  9324. #u28252_div {
  9325. border-width:0px;
  9326. position:absolute;
  9327. left:0px;
  9328. top:0px;
  9329. width:175px;
  9330. height:20px;
  9331. background:inherit;
  9332. background-color:rgba(255, 255, 255, 0);
  9333. border:none;
  9334. border-radius:0px;
  9335. -moz-box-shadow:none;
  9336. -webkit-box-shadow:none;
  9337. box-shadow:none;
  9338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9339. font-weight:400;
  9340. font-style:normal;
  9341. }
  9342. #u28252 {
  9343. border-width:0px;
  9344. position:absolute;
  9345. left:1197px;
  9346. top:1182px;
  9347. width:175px;
  9348. height:20px;
  9349. display:flex;
  9350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9351. font-weight:400;
  9352. font-style:normal;
  9353. }
  9354. #u28252 .text {
  9355. position:absolute;
  9356. align-self:center;
  9357. padding:0px 0px 0px 0px;
  9358. box-sizing:border-box;
  9359. width:100%;
  9360. }
  9361. #u28252_text {
  9362. border-width:0px;
  9363. white-space:nowrap;
  9364. text-transform:none;
  9365. }
  9366. #u28253 {
  9367. border-width:0px;
  9368. position:absolute;
  9369. left:0px;
  9370. top:0px;
  9371. width:0px;
  9372. height:0px;
  9373. }
  9374. #u28254_div {
  9375. border-width:0px;
  9376. position:absolute;
  9377. left:0px;
  9378. top:0px;
  9379. width:878px;
  9380. height:61px;
  9381. background:inherit;
  9382. background-color:rgba(255, 255, 255, 0);
  9383. border:none;
  9384. border-top:0px;
  9385. border-right:0px;
  9386. border-bottom:0px;
  9387. border-radius:0px;
  9388. border-top-left-radius:0px;
  9389. border-bottom-left-radius:0px;
  9390. -moz-box-shadow:none;
  9391. -webkit-box-shadow:none;
  9392. box-shadow:none;
  9393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9394. font-weight:400;
  9395. font-style:normal;
  9396. font-size:12px;
  9397. }
  9398. #u28254 {
  9399. border-width:0px;
  9400. position:absolute;
  9401. left:1197px;
  9402. top:1202px;
  9403. width:878px;
  9404. height:61px;
  9405. display:flex;
  9406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9407. font-weight:400;
  9408. font-style:normal;
  9409. font-size:12px;
  9410. }
  9411. #u28254 .text {
  9412. position:absolute;
  9413. align-self:center;
  9414. padding:5px 10px 5px 0px;
  9415. box-sizing:border-box;
  9416. width:100%;
  9417. }
  9418. #u28254_text {
  9419. border-width:0px;
  9420. word-wrap:break-word;
  9421. text-transform:none;
  9422. }
  9423. #u28255_img {
  9424. border-width:0px;
  9425. position:absolute;
  9426. left:0px;
  9427. top:0px;
  9428. width:61px;
  9429. height:41px;
  9430. }
  9431. #u28255 {
  9432. border-width:0px;
  9433. position:absolute;
  9434. left:1259px;
  9435. top:1246px;
  9436. width:61px;
  9437. height:41px;
  9438. display:flex;
  9439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9440. font-weight:400;
  9441. font-style:normal;
  9442. }
  9443. #u28255 .text {
  9444. position:absolute;
  9445. align-self:center;
  9446. padding:0px 0px 0px 0px;
  9447. box-sizing:border-box;
  9448. width:100%;
  9449. }
  9450. #u28255_text {
  9451. border-width:0px;
  9452. word-wrap:break-word;
  9453. text-transform:none;
  9454. visibility:hidden;
  9455. }
  9456. #u28256_img {
  9457. border-width:0px;
  9458. position:absolute;
  9459. left:0px;
  9460. top:0px;
  9461. width:61px;
  9462. height:41px;
  9463. }
  9464. #u28256 {
  9465. border-width:0px;
  9466. position:absolute;
  9467. left:1330px;
  9468. top:1246px;
  9469. width:61px;
  9470. height:41px;
  9471. display:flex;
  9472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9473. font-weight:400;
  9474. font-style:normal;
  9475. }
  9476. #u28256 .text {
  9477. position:absolute;
  9478. align-self:center;
  9479. padding:0px 0px 0px 0px;
  9480. box-sizing:border-box;
  9481. width:100%;
  9482. }
  9483. #u28256_text {
  9484. border-width:0px;
  9485. word-wrap:break-word;
  9486. text-transform:none;
  9487. visibility:hidden;
  9488. }
  9489. #u28257_img {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:0px;
  9493. top:0px;
  9494. width:61px;
  9495. height:41px;
  9496. }
  9497. #u28257 {
  9498. border-width:0px;
  9499. position:absolute;
  9500. left:1401px;
  9501. top:1246px;
  9502. width:61px;
  9503. height:41px;
  9504. display:flex;
  9505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9506. font-weight:400;
  9507. font-style:normal;
  9508. }
  9509. #u28257 .text {
  9510. position:absolute;
  9511. align-self:center;
  9512. padding:0px 0px 0px 0px;
  9513. box-sizing:border-box;
  9514. width:100%;
  9515. }
  9516. #u28257_text {
  9517. border-width:0px;
  9518. word-wrap:break-word;
  9519. text-transform:none;
  9520. visibility:hidden;
  9521. }
  9522. #u28258_img {
  9523. border-width:0px;
  9524. position:absolute;
  9525. left:0px;
  9526. top:0px;
  9527. width:61px;
  9528. height:41px;
  9529. }
  9530. #u28258 {
  9531. border-width:0px;
  9532. position:absolute;
  9533. left:1472px;
  9534. top:1246px;
  9535. width:61px;
  9536. height:41px;
  9537. display:flex;
  9538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9539. font-weight:400;
  9540. font-style:normal;
  9541. }
  9542. #u28258 .text {
  9543. position:absolute;
  9544. align-self:center;
  9545. padding:0px 0px 0px 0px;
  9546. box-sizing:border-box;
  9547. width:100%;
  9548. }
  9549. #u28258_text {
  9550. border-width:0px;
  9551. word-wrap:break-word;
  9552. text-transform:none;
  9553. visibility:hidden;
  9554. }
  9555. #u28259_img {
  9556. border-width:0px;
  9557. position:absolute;
  9558. left:0px;
  9559. top:0px;
  9560. width:61px;
  9561. height:41px;
  9562. }
  9563. #u28259 {
  9564. border-width:0px;
  9565. position:absolute;
  9566. left:1543px;
  9567. top:1246px;
  9568. width:61px;
  9569. height:41px;
  9570. display:flex;
  9571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9572. font-weight:400;
  9573. font-style:normal;
  9574. }
  9575. #u28259 .text {
  9576. position:absolute;
  9577. align-self:center;
  9578. padding:0px 0px 0px 0px;
  9579. box-sizing:border-box;
  9580. width:100%;
  9581. }
  9582. #u28259_text {
  9583. border-width:0px;
  9584. word-wrap:break-word;
  9585. text-transform:none;
  9586. visibility:hidden;
  9587. }
  9588. #u28260_img {
  9589. border-width:0px;
  9590. position:absolute;
  9591. left:0px;
  9592. top:0px;
  9593. width:61px;
  9594. height:41px;
  9595. }
  9596. #u28260 {
  9597. border-width:0px;
  9598. position:absolute;
  9599. left:1614px;
  9600. top:1246px;
  9601. width:61px;
  9602. height:41px;
  9603. display:flex;
  9604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9605. font-weight:400;
  9606. font-style:normal;
  9607. }
  9608. #u28260 .text {
  9609. position:absolute;
  9610. align-self:center;
  9611. padding:0px 0px 0px 0px;
  9612. box-sizing:border-box;
  9613. width:100%;
  9614. }
  9615. #u28260_text {
  9616. border-width:0px;
  9617. word-wrap:break-word;
  9618. text-transform:none;
  9619. visibility:hidden;
  9620. }
  9621. #u28261_img {
  9622. border-width:0px;
  9623. position:absolute;
  9624. left:0px;
  9625. top:0px;
  9626. width:22px;
  9627. height:22px;
  9628. }
  9629. #u28261 {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:1170px;
  9633. top:1182px;
  9634. width:22px;
  9635. height:22px;
  9636. display:flex;
  9637. font-family:'Microsoft YaHei', sans-serif;
  9638. font-weight:400;
  9639. font-style:normal;
  9640. font-size:12px;
  9641. color:#FFFFFF;
  9642. }
  9643. #u28261 .text {
  9644. position:absolute;
  9645. align-self:center;
  9646. padding:4px 4px 4px 4px;
  9647. box-sizing:border-box;
  9648. width:100%;
  9649. }
  9650. #u28261_text {
  9651. border-width:0px;
  9652. word-wrap:break-word;
  9653. text-transform:none;
  9654. visibility:hidden;
  9655. }
  9656. #u28262_img {
  9657. border-width:0px;
  9658. position:absolute;
  9659. left:0px;
  9660. top:0px;
  9661. width:87px;
  9662. height:2px;
  9663. }
  9664. #u28262 {
  9665. border-width:0px;
  9666. position:absolute;
  9667. left:1139px;
  9668. top:1247px;
  9669. width:86px;
  9670. height:1px;
  9671. display:flex;
  9672. -webkit-transform:rotate(90deg);
  9673. -moz-transform:rotate(90deg);
  9674. -ms-transform:rotate(90deg);
  9675. transform:rotate(90deg);
  9676. }
  9677. #u28262 .text {
  9678. position:absolute;
  9679. align-self:center;
  9680. padding:2px 2px 2px 2px;
  9681. box-sizing:border-box;
  9682. width:100%;
  9683. }
  9684. #u28262_text {
  9685. border-width:0px;
  9686. word-wrap:break-word;
  9687. text-transform:none;
  9688. visibility:hidden;
  9689. }
  9690. #u28263 {
  9691. border-width:0px;
  9692. position:absolute;
  9693. left:0px;
  9694. top:0px;
  9695. width:0px;
  9696. height:0px;
  9697. }
  9698. #u28264_div {
  9699. border-width:0px;
  9700. position:absolute;
  9701. left:0px;
  9702. top:0px;
  9703. width:175px;
  9704. height:20px;
  9705. background:inherit;
  9706. background-color:rgba(255, 255, 255, 0);
  9707. border:none;
  9708. border-radius:0px;
  9709. -moz-box-shadow:none;
  9710. -webkit-box-shadow:none;
  9711. box-shadow:none;
  9712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9713. font-weight:400;
  9714. font-style:normal;
  9715. }
  9716. #u28264 {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:1197px;
  9720. top:939px;
  9721. width:175px;
  9722. height:20px;
  9723. display:flex;
  9724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9725. font-weight:400;
  9726. font-style:normal;
  9727. }
  9728. #u28264 .text {
  9729. position:absolute;
  9730. align-self:center;
  9731. padding:0px 0px 0px 0px;
  9732. box-sizing:border-box;
  9733. width:100%;
  9734. }
  9735. #u28264_text {
  9736. border-width:0px;
  9737. white-space:nowrap;
  9738. text-transform:none;
  9739. }
  9740. #u28265 {
  9741. border-width:0px;
  9742. position:absolute;
  9743. left:0px;
  9744. top:0px;
  9745. width:0px;
  9746. height:0px;
  9747. }
  9748. #u28266_div {
  9749. border-width:0px;
  9750. position:absolute;
  9751. left:0px;
  9752. top:0px;
  9753. width:878px;
  9754. height:44px;
  9755. background:inherit;
  9756. background-color:rgba(255, 255, 255, 0);
  9757. border:none;
  9758. border-top:0px;
  9759. border-right:0px;
  9760. border-bottom:0px;
  9761. border-radius:0px;
  9762. border-top-left-radius:0px;
  9763. border-bottom-left-radius:0px;
  9764. -moz-box-shadow:none;
  9765. -webkit-box-shadow:none;
  9766. box-shadow:none;
  9767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9768. font-weight:400;
  9769. font-style:normal;
  9770. font-size:12px;
  9771. }
  9772. #u28266 {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:1197px;
  9776. top:964px;
  9777. width:878px;
  9778. height:44px;
  9779. display:flex;
  9780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9781. font-weight:400;
  9782. font-style:normal;
  9783. font-size:12px;
  9784. }
  9785. #u28266 .text {
  9786. position:absolute;
  9787. align-self:center;
  9788. padding:5px 10px 5px 0px;
  9789. box-sizing:border-box;
  9790. width:100%;
  9791. }
  9792. #u28266_text {
  9793. border-width:0px;
  9794. word-wrap:break-word;
  9795. text-transform:none;
  9796. }
  9797. #u28267_img {
  9798. border-width:0px;
  9799. position:absolute;
  9800. left:0px;
  9801. top:0px;
  9802. width:22px;
  9803. height:22px;
  9804. }
  9805. #u28267 {
  9806. border-width:0px;
  9807. position:absolute;
  9808. left:1170px;
  9809. top:939px;
  9810. width:22px;
  9811. height:22px;
  9812. display:flex;
  9813. font-family:'Microsoft YaHei', sans-serif;
  9814. font-weight:400;
  9815. font-style:normal;
  9816. font-size:12px;
  9817. color:#FFFFFF;
  9818. }
  9819. #u28267 .text {
  9820. position:absolute;
  9821. align-self:center;
  9822. padding:4px 4px 4px 4px;
  9823. box-sizing:border-box;
  9824. width:100%;
  9825. }
  9826. #u28267_text {
  9827. border-width:0px;
  9828. word-wrap:break-word;
  9829. text-transform:none;
  9830. visibility:hidden;
  9831. }
  9832. #u28268_img {
  9833. border-width:0px;
  9834. position:absolute;
  9835. left:0px;
  9836. top:0px;
  9837. width:61px;
  9838. height:2px;
  9839. }
  9840. #u28268 {
  9841. border-width:0px;
  9842. position:absolute;
  9843. left:1152px;
  9844. top:989px;
  9845. width:60px;
  9846. height:1px;
  9847. display:flex;
  9848. -webkit-transform:rotate(90deg);
  9849. -moz-transform:rotate(90deg);
  9850. -ms-transform:rotate(90deg);
  9851. transform:rotate(90deg);
  9852. }
  9853. #u28268 .text {
  9854. position:absolute;
  9855. align-self:center;
  9856. padding:2px 2px 2px 2px;
  9857. box-sizing:border-box;
  9858. width:100%;
  9859. }
  9860. #u28268_text {
  9861. border-width:0px;
  9862. word-wrap:break-word;
  9863. text-transform:none;
  9864. visibility:hidden;
  9865. }
  9866. #u28269 {
  9867. border-width:0px;
  9868. position:absolute;
  9869. left:0px;
  9870. top:0px;
  9871. width:0px;
  9872. height:0px;
  9873. }
  9874. #u28270_div {
  9875. border-width:0px;
  9876. position:absolute;
  9877. left:0px;
  9878. top:0px;
  9879. width:175px;
  9880. height:20px;
  9881. background:inherit;
  9882. background-color:rgba(255, 255, 255, 0);
  9883. border:none;
  9884. border-radius:0px;
  9885. -moz-box-shadow:none;
  9886. -webkit-box-shadow:none;
  9887. box-shadow:none;
  9888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9889. font-weight:400;
  9890. font-style:normal;
  9891. }
  9892. #u28270 {
  9893. border-width:0px;
  9894. position:absolute;
  9895. left:1197px;
  9896. top:1026px;
  9897. width:175px;
  9898. height:20px;
  9899. display:flex;
  9900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9901. font-weight:400;
  9902. font-style:normal;
  9903. }
  9904. #u28270 .text {
  9905. position:absolute;
  9906. align-self:center;
  9907. padding:0px 0px 0px 0px;
  9908. box-sizing:border-box;
  9909. width:100%;
  9910. }
  9911. #u28270_text {
  9912. border-width:0px;
  9913. white-space:nowrap;
  9914. text-transform:none;
  9915. }
  9916. #u28271 {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:0px;
  9920. top:0px;
  9921. width:0px;
  9922. height:0px;
  9923. }
  9924. #u28272_div {
  9925. border-width:0px;
  9926. position:absolute;
  9927. left:0px;
  9928. top:0px;
  9929. width:878px;
  9930. height:44px;
  9931. background:inherit;
  9932. background-color:rgba(255, 255, 255, 0);
  9933. border:none;
  9934. border-top:0px;
  9935. border-right:0px;
  9936. border-bottom:0px;
  9937. border-radius:0px;
  9938. border-top-left-radius:0px;
  9939. border-bottom-left-radius:0px;
  9940. -moz-box-shadow:none;
  9941. -webkit-box-shadow:none;
  9942. box-shadow:none;
  9943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9944. font-weight:400;
  9945. font-style:normal;
  9946. font-size:12px;
  9947. }
  9948. #u28272 {
  9949. border-width:0px;
  9950. position:absolute;
  9951. left:1197px;
  9952. top:1051px;
  9953. width:878px;
  9954. height:44px;
  9955. display:flex;
  9956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9957. font-weight:400;
  9958. font-style:normal;
  9959. font-size:12px;
  9960. }
  9961. #u28272 .text {
  9962. position:absolute;
  9963. align-self:center;
  9964. padding:5px 10px 5px 0px;
  9965. box-sizing:border-box;
  9966. width:100%;
  9967. }
  9968. #u28272_text {
  9969. border-width:0px;
  9970. word-wrap:break-word;
  9971. text-transform:none;
  9972. }
  9973. #u28273_img {
  9974. border-width:0px;
  9975. position:absolute;
  9976. left:0px;
  9977. top:0px;
  9978. width:22px;
  9979. height:22px;
  9980. }
  9981. #u28273 {
  9982. border-width:0px;
  9983. position:absolute;
  9984. left:1170px;
  9985. top:1026px;
  9986. width:22px;
  9987. height:22px;
  9988. display:flex;
  9989. font-family:'Microsoft YaHei', sans-serif;
  9990. font-weight:400;
  9991. font-style:normal;
  9992. font-size:12px;
  9993. color:#FFFFFF;
  9994. }
  9995. #u28273 .text {
  9996. position:absolute;
  9997. align-self:center;
  9998. padding:4px 4px 4px 4px;
  9999. box-sizing:border-box;
  10000. width:100%;
  10001. }
  10002. #u28273_text {
  10003. border-width:0px;
  10004. word-wrap:break-word;
  10005. text-transform:none;
  10006. visibility:hidden;
  10007. }
  10008. #u28274_img {
  10009. border-width:0px;
  10010. position:absolute;
  10011. left:0px;
  10012. top:0px;
  10013. width:57px;
  10014. height:2px;
  10015. }
  10016. #u28274 {
  10017. border-width:0px;
  10018. position:absolute;
  10019. left:1154px;
  10020. top:1074px;
  10021. width:56px;
  10022. height:1px;
  10023. display:flex;
  10024. -webkit-transform:rotate(90deg);
  10025. -moz-transform:rotate(90deg);
  10026. -ms-transform:rotate(90deg);
  10027. transform:rotate(90deg);
  10028. }
  10029. #u28274 .text {
  10030. position:absolute;
  10031. align-self:center;
  10032. padding:2px 2px 2px 2px;
  10033. box-sizing:border-box;
  10034. width:100%;
  10035. }
  10036. #u28274_text {
  10037. border-width:0px;
  10038. word-wrap:break-word;
  10039. text-transform:none;
  10040. visibility:hidden;
  10041. }
  10042. #u28275 {
  10043. border-width:0px;
  10044. position:absolute;
  10045. left:0px;
  10046. top:0px;
  10047. width:0px;
  10048. height:0px;
  10049. }
  10050. #u28276_div {
  10051. border-width:0px;
  10052. position:absolute;
  10053. left:0px;
  10054. top:0px;
  10055. width:175px;
  10056. height:20px;
  10057. background:inherit;
  10058. background-color:rgba(255, 255, 255, 0);
  10059. border:none;
  10060. border-radius:0px;
  10061. -moz-box-shadow:none;
  10062. -webkit-box-shadow:none;
  10063. box-shadow:none;
  10064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10065. font-weight:400;
  10066. font-style:normal;
  10067. }
  10068. #u28276 {
  10069. border-width:0px;
  10070. position:absolute;
  10071. left:1197px;
  10072. top:1113px;
  10073. width:175px;
  10074. height:20px;
  10075. display:flex;
  10076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10077. font-weight:400;
  10078. font-style:normal;
  10079. }
  10080. #u28276 .text {
  10081. position:absolute;
  10082. align-self:center;
  10083. padding:0px 0px 0px 0px;
  10084. box-sizing:border-box;
  10085. width:100%;
  10086. }
  10087. #u28276_text {
  10088. border-width:0px;
  10089. white-space:nowrap;
  10090. text-transform:none;
  10091. }
  10092. #u28277 {
  10093. border-width:0px;
  10094. position:absolute;
  10095. left:0px;
  10096. top:0px;
  10097. width:0px;
  10098. height:0px;
  10099. }
  10100. #u28278_div {
  10101. border-width:0px;
  10102. position:absolute;
  10103. left:0px;
  10104. top:0px;
  10105. width:878px;
  10106. height:27px;
  10107. background:inherit;
  10108. background-color:rgba(255, 255, 255, 0);
  10109. border:none;
  10110. border-top:0px;
  10111. border-right:0px;
  10112. border-bottom:0px;
  10113. border-radius:0px;
  10114. border-top-left-radius:0px;
  10115. border-bottom-left-radius:0px;
  10116. -moz-box-shadow:none;
  10117. -webkit-box-shadow:none;
  10118. box-shadow:none;
  10119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10120. font-weight:400;
  10121. font-style:normal;
  10122. font-size:12px;
  10123. }
  10124. #u28278 {
  10125. border-width:0px;
  10126. position:absolute;
  10127. left:1197px;
  10128. top:1138px;
  10129. width:878px;
  10130. height:27px;
  10131. display:flex;
  10132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10133. font-weight:400;
  10134. font-style:normal;
  10135. font-size:12px;
  10136. }
  10137. #u28278 .text {
  10138. position:absolute;
  10139. align-self:center;
  10140. padding:5px 10px 5px 0px;
  10141. box-sizing:border-box;
  10142. width:100%;
  10143. }
  10144. #u28278_text {
  10145. border-width:0px;
  10146. word-wrap:break-word;
  10147. text-transform:none;
  10148. }
  10149. #u28279_img {
  10150. border-width:0px;
  10151. position:absolute;
  10152. left:0px;
  10153. top:0px;
  10154. width:22px;
  10155. height:22px;
  10156. }
  10157. #u28279 {
  10158. border-width:0px;
  10159. position:absolute;
  10160. left:1170px;
  10161. top:1113px;
  10162. width:22px;
  10163. height:22px;
  10164. display:flex;
  10165. font-family:'Microsoft YaHei', sans-serif;
  10166. font-weight:400;
  10167. font-style:normal;
  10168. font-size:12px;
  10169. color:#FFFFFF;
  10170. }
  10171. #u28279 .text {
  10172. position:absolute;
  10173. align-self:center;
  10174. padding:4px 4px 4px 4px;
  10175. box-sizing:border-box;
  10176. width:100%;
  10177. }
  10178. #u28279_text {
  10179. border-width:0px;
  10180. word-wrap:break-word;
  10181. text-transform:none;
  10182. visibility:hidden;
  10183. }
  10184. #u28280_img {
  10185. border-width:0px;
  10186. position:absolute;
  10187. left:0px;
  10188. top:0px;
  10189. width:39px;
  10190. height:2px;
  10191. }
  10192. #u28280 {
  10193. border-width:0px;
  10194. position:absolute;
  10195. left:1163px;
  10196. top:1152px;
  10197. width:38px;
  10198. height:1px;
  10199. display:flex;
  10200. -webkit-transform:rotate(90deg);
  10201. -moz-transform:rotate(90deg);
  10202. -ms-transform:rotate(90deg);
  10203. transform:rotate(90deg);
  10204. }
  10205. #u28280 .text {
  10206. position:absolute;
  10207. align-self:center;
  10208. padding:2px 2px 2px 2px;
  10209. box-sizing:border-box;
  10210. width:100%;
  10211. }
  10212. #u28280_text {
  10213. border-width:0px;
  10214. word-wrap:break-word;
  10215. text-transform:none;
  10216. visibility:hidden;
  10217. }
  10218. #u28281 {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:0px;
  10222. top:0px;
  10223. width:0px;
  10224. height:0px;
  10225. }
  10226. #u28282_img {
  10227. border-width:0px;
  10228. position:absolute;
  10229. left:0px;
  10230. top:0px;
  10231. width:120px;
  10232. height:80px;
  10233. }
  10234. #u28282 {
  10235. border-width:0px;
  10236. position:absolute;
  10237. left:1235px;
  10238. top:740px;
  10239. width:120px;
  10240. height:80px;
  10241. display:flex;
  10242. }
  10243. #u28282 .text {
  10244. position:absolute;
  10245. align-self:center;
  10246. padding:2px 2px 2px 2px;
  10247. box-sizing:border-box;
  10248. width:100%;
  10249. }
  10250. #u28282_text {
  10251. border-width:0px;
  10252. word-wrap:break-word;
  10253. text-transform:none;
  10254. }
  10255. #u28283_img {
  10256. border-width:0px;
  10257. position:absolute;
  10258. left:0px;
  10259. top:0px;
  10260. width:120px;
  10261. height:80px;
  10262. }
  10263. #u28283 {
  10264. border-width:0px;
  10265. position:absolute;
  10266. left:1377px;
  10267. top:740px;
  10268. width:120px;
  10269. height:80px;
  10270. display:flex;
  10271. }
  10272. #u28283 .text {
  10273. position:absolute;
  10274. align-self:center;
  10275. padding:2px 2px 2px 2px;
  10276. box-sizing:border-box;
  10277. width:100%;
  10278. }
  10279. #u28283_text {
  10280. border-width:0px;
  10281. word-wrap:break-word;
  10282. text-transform:none;
  10283. }
  10284. #u28284_div {
  10285. border-width:0px;
  10286. position:absolute;
  10287. left:0px;
  10288. top:0px;
  10289. width:320px;
  10290. height:90px;
  10291. background:inherit;
  10292. background-color:rgba(255, 255, 255, 0);
  10293. border:none;
  10294. border-left:0px;
  10295. border-top:0px;
  10296. border-right:0px;
  10297. border-radius:0px;
  10298. border-bottom-right-radius:0px;
  10299. border-bottom-left-radius:0px;
  10300. -moz-box-shadow:none;
  10301. -webkit-box-shadow:none;
  10302. box-shadow:none;
  10303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10304. font-weight:400;
  10305. font-style:normal;
  10306. font-size:14px;
  10307. line-height:30px;
  10308. }
  10309. #u28284 {
  10310. border-width:0px;
  10311. position:absolute;
  10312. left:1161px;
  10313. top:565px;
  10314. width:320px;
  10315. height:90px;
  10316. display:flex;
  10317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10318. font-weight:400;
  10319. font-style:normal;
  10320. font-size:14px;
  10321. line-height:30px;
  10322. }
  10323. #u28284 .text {
  10324. position:absolute;
  10325. align-self:flex-start;
  10326. padding:0px 0px 0px 0px;
  10327. box-sizing:border-box;
  10328. width:100%;
  10329. }
  10330. #u28284_text {
  10331. border-width:0px;
  10332. word-wrap:break-word;
  10333. text-transform:none;
  10334. }
  10335. #u28285_div {
  10336. border-width:0px;
  10337. position:absolute;
  10338. left:0px;
  10339. top:0px;
  10340. width:320px;
  10341. height:60px;
  10342. background:inherit;
  10343. background-color:rgba(255, 255, 255, 0);
  10344. border:none;
  10345. border-left:0px;
  10346. border-top:0px;
  10347. border-right:0px;
  10348. border-radius:0px;
  10349. border-bottom-right-radius:0px;
  10350. border-bottom-left-radius:0px;
  10351. -moz-box-shadow:none;
  10352. -webkit-box-shadow:none;
  10353. box-shadow:none;
  10354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10355. font-weight:400;
  10356. font-style:normal;
  10357. font-size:14px;
  10358. line-height:30px;
  10359. }
  10360. #u28285 {
  10361. border-width:0px;
  10362. position:absolute;
  10363. left:1481px;
  10364. top:565px;
  10365. width:320px;
  10366. height:60px;
  10367. display:flex;
  10368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10369. font-weight:400;
  10370. font-style:normal;
  10371. font-size:14px;
  10372. line-height:30px;
  10373. }
  10374. #u28285 .text {
  10375. position:absolute;
  10376. align-self:flex-start;
  10377. padding:0px 0px 0px 0px;
  10378. box-sizing:border-box;
  10379. width:100%;
  10380. }
  10381. #u28285_text {
  10382. border-width:0px;
  10383. word-wrap:break-word;
  10384. text-transform:none;
  10385. }
  10386. #u28286_div {
  10387. border-width:0px;
  10388. position:absolute;
  10389. left:0px;
  10390. top:0px;
  10391. width:320px;
  10392. height:60px;
  10393. background:inherit;
  10394. background-color:rgba(255, 255, 255, 0);
  10395. border:none;
  10396. border-left:0px;
  10397. border-top:0px;
  10398. border-right:0px;
  10399. border-radius:0px;
  10400. border-bottom-right-radius:0px;
  10401. border-bottom-left-radius:0px;
  10402. -moz-box-shadow:none;
  10403. -webkit-box-shadow:none;
  10404. box-shadow:none;
  10405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10406. font-weight:400;
  10407. font-style:normal;
  10408. font-size:14px;
  10409. line-height:30px;
  10410. }
  10411. #u28286 {
  10412. border-width:0px;
  10413. position:absolute;
  10414. left:1801px;
  10415. top:565px;
  10416. width:320px;
  10417. height:60px;
  10418. display:flex;
  10419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10420. font-weight:400;
  10421. font-style:normal;
  10422. font-size:14px;
  10423. line-height:30px;
  10424. }
  10425. #u28286 .text {
  10426. position:absolute;
  10427. align-self:flex-start;
  10428. padding:0px 0px 0px 0px;
  10429. box-sizing:border-box;
  10430. width:100%;
  10431. }
  10432. #u28286_text {
  10433. border-width:0px;
  10434. word-wrap:break-word;
  10435. text-transform:none;
  10436. }
  10437. #u28287_div {
  10438. border-width:0px;
  10439. position:absolute;
  10440. left:0px;
  10441. top:0px;
  10442. width:83px;
  10443. height:35px;
  10444. background:inherit;
  10445. background-color:rgba(255, 255, 255, 0);
  10446. border:none;
  10447. border-top:0px;
  10448. border-right:0px;
  10449. border-bottom:0px;
  10450. border-radius:0px;
  10451. border-top-left-radius:0px;
  10452. border-bottom-left-radius:0px;
  10453. -moz-box-shadow:none;
  10454. -webkit-box-shadow:none;
  10455. box-shadow:none;
  10456. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10457. font-weight:500;
  10458. font-style:normal;
  10459. font-size:18px;
  10460. }
  10461. #u28287 {
  10462. border-width:0px;
  10463. position:absolute;
  10464. left:1161px;
  10465. top:521px;
  10466. width:83px;
  10467. height:35px;
  10468. display:flex;
  10469. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10470. font-weight:500;
  10471. font-style:normal;
  10472. font-size:18px;
  10473. }
  10474. #u28287 .text {
  10475. position:absolute;
  10476. align-self:center;
  10477. padding:5px 10px 5px 0px;
  10478. box-sizing:border-box;
  10479. width:100%;
  10480. }
  10481. #u28287_text {
  10482. border-width:0px;
  10483. white-space:nowrap;
  10484. text-transform:none;
  10485. }
  10486. #u28288_div {
  10487. border-width:0px;
  10488. position:absolute;
  10489. left:0px;
  10490. top:0px;
  10491. width:323px;
  10492. height:90px;
  10493. background:inherit;
  10494. background-color:rgba(255, 255, 255, 0);
  10495. border:none;
  10496. border-left:0px;
  10497. border-top:0px;
  10498. border-right:0px;
  10499. border-radius:0px;
  10500. border-bottom-right-radius:0px;
  10501. border-bottom-left-radius:0px;
  10502. -moz-box-shadow:none;
  10503. -webkit-box-shadow:none;
  10504. box-shadow:none;
  10505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10506. font-weight:400;
  10507. font-style:normal;
  10508. font-size:14px;
  10509. line-height:30px;
  10510. }
  10511. #u28288 {
  10512. border-width:0px;
  10513. position:absolute;
  10514. left:1161px;
  10515. top:675px;
  10516. width:323px;
  10517. height:90px;
  10518. display:flex;
  10519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10520. font-weight:400;
  10521. font-style:normal;
  10522. font-size:14px;
  10523. line-height:30px;
  10524. }
  10525. #u28288 .text {
  10526. position:absolute;
  10527. align-self:flex-start;
  10528. padding:0px 0px 0px 0px;
  10529. box-sizing:border-box;
  10530. width:100%;
  10531. }
  10532. #u28288_text {
  10533. border-width:0px;
  10534. white-space:nowrap;
  10535. text-transform:none;
  10536. }
  10537. #u28289_div {
  10538. border-width:0px;
  10539. position:absolute;
  10540. left:0px;
  10541. top:0px;
  10542. width:320px;
  10543. height:30px;
  10544. background:inherit;
  10545. background-color:rgba(255, 255, 255, 0);
  10546. border:none;
  10547. border-left:0px;
  10548. border-top:0px;
  10549. border-right:0px;
  10550. border-radius:0px;
  10551. border-bottom-right-radius:0px;
  10552. border-bottom-left-radius:0px;
  10553. -moz-box-shadow:none;
  10554. -webkit-box-shadow:none;
  10555. box-shadow:none;
  10556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10557. font-weight:400;
  10558. font-style:normal;
  10559. font-size:14px;
  10560. line-height:30px;
  10561. }
  10562. #u28289 {
  10563. border-width:0px;
  10564. position:absolute;
  10565. left:1481px;
  10566. top:675px;
  10567. width:320px;
  10568. height:30px;
  10569. display:flex;
  10570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10571. font-weight:400;
  10572. font-style:normal;
  10573. font-size:14px;
  10574. line-height:30px;
  10575. }
  10576. #u28289 .text {
  10577. position:absolute;
  10578. align-self:flex-start;
  10579. padding:0px 0px 0px 0px;
  10580. box-sizing:border-box;
  10581. width:100%;
  10582. }
  10583. #u28289_text {
  10584. border-width:0px;
  10585. word-wrap:break-word;
  10586. text-transform:none;
  10587. }
  10588. #u28290_div {
  10589. border-width:0px;
  10590. position:absolute;
  10591. left:0px;
  10592. top:0px;
  10593. width:320px;
  10594. height:30px;
  10595. background:inherit;
  10596. background-color:rgba(255, 255, 255, 0);
  10597. border:none;
  10598. border-left:0px;
  10599. border-top:0px;
  10600. border-right:0px;
  10601. border-radius:0px;
  10602. border-bottom-right-radius:0px;
  10603. border-bottom-left-radius:0px;
  10604. -moz-box-shadow:none;
  10605. -webkit-box-shadow:none;
  10606. box-shadow:none;
  10607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10608. font-weight:400;
  10609. font-style:normal;
  10610. font-size:14px;
  10611. line-height:30px;
  10612. }
  10613. #u28290 {
  10614. border-width:0px;
  10615. position:absolute;
  10616. left:1801px;
  10617. top:675px;
  10618. width:320px;
  10619. height:30px;
  10620. display:flex;
  10621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10622. font-weight:400;
  10623. font-style:normal;
  10624. font-size:14px;
  10625. line-height:30px;
  10626. }
  10627. #u28290 .text {
  10628. position:absolute;
  10629. align-self:flex-start;
  10630. padding:0px 0px 0px 0px;
  10631. box-sizing:border-box;
  10632. width:100%;
  10633. }
  10634. #u28290_text {
  10635. border-width:0px;
  10636. word-wrap:break-word;
  10637. text-transform:none;
  10638. }
  10639. #u28291 {
  10640. border-width:0px;
  10641. position:absolute;
  10642. left:0px;
  10643. top:0px;
  10644. width:0px;
  10645. height:0px;
  10646. }
  10647. #u28292_div {
  10648. border-width:0px;
  10649. position:absolute;
  10650. left:0px;
  10651. top:0px;
  10652. width:1000px;
  10653. height:1303px;
  10654. background:inherit;
  10655. background-color:rgba(242, 242, 242, 1);
  10656. box-sizing:border-box;
  10657. border-width:1px;
  10658. border-style:solid;
  10659. border-color:rgba(242, 242, 242, 1);
  10660. border-radius:0px;
  10661. -moz-box-shadow:none;
  10662. -webkit-box-shadow:none;
  10663. box-shadow:none;
  10664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10665. font-weight:400;
  10666. font-style:normal;
  10667. font-size:14px;
  10668. color:#AAAAAA;
  10669. text-align:center;
  10670. line-height:30px;
  10671. }
  10672. #u28292 {
  10673. border-width:0px;
  10674. position:absolute;
  10675. left:2142px;
  10676. top:115px;
  10677. width:1000px;
  10678. height:1303px;
  10679. display:flex;
  10680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10681. font-weight:400;
  10682. font-style:normal;
  10683. font-size:14px;
  10684. color:#AAAAAA;
  10685. text-align:center;
  10686. line-height:30px;
  10687. }
  10688. #u28292 .text {
  10689. position:absolute;
  10690. align-self:center;
  10691. padding:5px 10px 5px 10px;
  10692. box-sizing:border-box;
  10693. width:100%;
  10694. }
  10695. #u28292_text {
  10696. border-width:0px;
  10697. word-wrap:break-word;
  10698. text-transform:none;
  10699. visibility:hidden;
  10700. }
  10701. #u28293_div {
  10702. border-width:0px;
  10703. position:absolute;
  10704. left:0px;
  10705. top:0px;
  10706. width:1000px;
  10707. height:580px;
  10708. background:inherit;
  10709. background-color:rgba(255, 255, 255, 1);
  10710. box-sizing:border-box;
  10711. border-width:1px;
  10712. border-style:solid;
  10713. border-color:rgba(242, 242, 242, 1);
  10714. border-radius:0px;
  10715. -moz-box-shadow:none;
  10716. -webkit-box-shadow:none;
  10717. box-shadow:none;
  10718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10719. font-weight:400;
  10720. font-style:normal;
  10721. font-size:14px;
  10722. color:#AAAAAA;
  10723. text-align:center;
  10724. line-height:30px;
  10725. }
  10726. #u28293 {
  10727. border-width:0px;
  10728. position:absolute;
  10729. left:2142px;
  10730. top:266px;
  10731. width:1000px;
  10732. height:580px;
  10733. display:flex;
  10734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10735. font-weight:400;
  10736. font-style:normal;
  10737. font-size:14px;
  10738. color:#AAAAAA;
  10739. text-align:center;
  10740. line-height:30px;
  10741. }
  10742. #u28293 .text {
  10743. position:absolute;
  10744. align-self:center;
  10745. padding:5px 10px 5px 10px;
  10746. box-sizing:border-box;
  10747. width:100%;
  10748. }
  10749. #u28293_text {
  10750. border-width:0px;
  10751. word-wrap:break-word;
  10752. text-transform:none;
  10753. visibility:hidden;
  10754. }
  10755. #u28294_div {
  10756. border-width:0px;
  10757. position:absolute;
  10758. left:0px;
  10759. top:0px;
  10760. width:73px;
  10761. height:40px;
  10762. background:inherit;
  10763. background-color:rgba(255, 255, 255, 0);
  10764. border:none;
  10765. border-left:0px;
  10766. border-top:0px;
  10767. border-right:0px;
  10768. border-radius:0px;
  10769. border-bottom-right-radius:0px;
  10770. border-bottom-left-radius:0px;
  10771. -moz-box-shadow:none;
  10772. -webkit-box-shadow:none;
  10773. box-shadow:none;
  10774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10775. font-weight:400;
  10776. font-style:normal;
  10777. font-size:18px;
  10778. }
  10779. #u28294 {
  10780. border-width:0px;
  10781. position:absolute;
  10782. left:2182px;
  10783. top:282px;
  10784. width:73px;
  10785. height:40px;
  10786. display:flex;
  10787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10788. font-weight:400;
  10789. font-style:normal;
  10790. font-size:18px;
  10791. }
  10792. #u28294 .text {
  10793. position:absolute;
  10794. align-self:center;
  10795. padding:0px 0px 0px 0px;
  10796. box-sizing:border-box;
  10797. width:100%;
  10798. }
  10799. #u28294_text {
  10800. border-width:0px;
  10801. white-space:nowrap;
  10802. text-transform:none;
  10803. }
  10804. #u28295_div {
  10805. border-width:0px;
  10806. position:absolute;
  10807. left:0px;
  10808. top:0px;
  10809. width:81px;
  10810. height:30px;
  10811. background:inherit;
  10812. background-color:rgba(255, 255, 255, 0);
  10813. border:none;
  10814. border-top:0px;
  10815. border-right:0px;
  10816. border-bottom:0px;
  10817. border-radius:0px;
  10818. border-top-left-radius:0px;
  10819. border-bottom-left-radius:0px;
  10820. -moz-box-shadow:none;
  10821. -webkit-box-shadow:none;
  10822. box-shadow:none;
  10823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10824. font-weight:400;
  10825. font-style:normal;
  10826. font-size:14px;
  10827. color:#7F7F7F;
  10828. }
  10829. #u28295 {
  10830. border-width:0px;
  10831. position:absolute;
  10832. left:2182px;
  10833. top:332px;
  10834. width:81px;
  10835. height:30px;
  10836. display:flex;
  10837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10838. font-weight:400;
  10839. font-style:normal;
  10840. font-size:14px;
  10841. color:#7F7F7F;
  10842. }
  10843. #u28295 .text {
  10844. position:absolute;
  10845. align-self:center;
  10846. padding:5px 10px 5px 0px;
  10847. box-sizing:border-box;
  10848. width:100%;
  10849. }
  10850. #u28295_text {
  10851. border-width:0px;
  10852. white-space:nowrap;
  10853. text-transform:none;
  10854. }
  10855. #u28296_div {
  10856. border-width:0px;
  10857. position:absolute;
  10858. left:0px;
  10859. top:0px;
  10860. width:142px;
  10861. height:30px;
  10862. background:inherit;
  10863. background-color:rgba(255, 255, 255, 0);
  10864. border:none;
  10865. border-top:0px;
  10866. border-right:0px;
  10867. border-bottom:0px;
  10868. border-radius:0px;
  10869. border-top-left-radius:0px;
  10870. border-bottom-left-radius:0px;
  10871. -moz-box-shadow:none;
  10872. -webkit-box-shadow:none;
  10873. box-shadow:none;
  10874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10875. font-weight:400;
  10876. font-style:normal;
  10877. font-size:14px;
  10878. color:#1890FF;
  10879. }
  10880. #u28296 {
  10881. border-width:0px;
  10882. position:absolute;
  10883. left:2263px;
  10884. top:332px;
  10885. width:142px;
  10886. height:30px;
  10887. display:flex;
  10888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10889. font-weight:400;
  10890. font-style:normal;
  10891. font-size:14px;
  10892. color:#1890FF;
  10893. }
  10894. #u28296 .text {
  10895. position:absolute;
  10896. align-self:center;
  10897. padding:5px 10px 5px 0px;
  10898. box-sizing:border-box;
  10899. width:100%;
  10900. }
  10901. #u28296_text {
  10902. border-width:0px;
  10903. white-space:nowrap;
  10904. text-transform:none;
  10905. }
  10906. #u28297_div {
  10907. border-width:0px;
  10908. position:absolute;
  10909. left:0px;
  10910. top:0px;
  10911. width:81px;
  10912. height:30px;
  10913. background:inherit;
  10914. background-color:rgba(255, 255, 255, 0);
  10915. border:none;
  10916. border-top:0px;
  10917. border-right:0px;
  10918. border-bottom:0px;
  10919. border-radius:0px;
  10920. border-top-left-radius:0px;
  10921. border-bottom-left-radius:0px;
  10922. -moz-box-shadow:none;
  10923. -webkit-box-shadow:none;
  10924. box-shadow:none;
  10925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10926. font-weight:400;
  10927. font-style:normal;
  10928. font-size:14px;
  10929. color:#7F7F7F;
  10930. }
  10931. #u28297 {
  10932. border-width:0px;
  10933. position:absolute;
  10934. left:2502px;
  10935. top:332px;
  10936. width:81px;
  10937. height:30px;
  10938. display:flex;
  10939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10940. font-weight:400;
  10941. font-style:normal;
  10942. font-size:14px;
  10943. color:#7F7F7F;
  10944. }
  10945. #u28297 .text {
  10946. position:absolute;
  10947. align-self:center;
  10948. padding:5px 10px 5px 0px;
  10949. box-sizing:border-box;
  10950. width:100%;
  10951. }
  10952. #u28297_text {
  10953. border-width:0px;
  10954. white-space:nowrap;
  10955. text-transform:none;
  10956. }
  10957. #u28298_div {
  10958. border-width:0px;
  10959. position:absolute;
  10960. left:0px;
  10961. top:0px;
  10962. width:67px;
  10963. height:30px;
  10964. background:inherit;
  10965. background-color:rgba(255, 255, 255, 0);
  10966. border:none;
  10967. border-top:0px;
  10968. border-right:0px;
  10969. border-bottom:0px;
  10970. border-radius:0px;
  10971. border-top-left-radius:0px;
  10972. border-bottom-left-radius:0px;
  10973. -moz-box-shadow:none;
  10974. -webkit-box-shadow:none;
  10975. box-shadow:none;
  10976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10977. font-weight:400;
  10978. font-style:normal;
  10979. font-size:14px;
  10980. }
  10981. #u28298 {
  10982. border-width:0px;
  10983. position:absolute;
  10984. left:2583px;
  10985. top:332px;
  10986. width:67px;
  10987. height:30px;
  10988. display:flex;
  10989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10990. font-weight:400;
  10991. font-style:normal;
  10992. font-size:14px;
  10993. }
  10994. #u28298 .text {
  10995. position:absolute;
  10996. align-self:center;
  10997. padding:5px 10px 5px 0px;
  10998. box-sizing:border-box;
  10999. width:100%;
  11000. }
  11001. #u28298_text {
  11002. border-width:0px;
  11003. white-space:nowrap;
  11004. text-transform:none;
  11005. }
  11006. #u28299_div {
  11007. border-width:0px;
  11008. position:absolute;
  11009. left:0px;
  11010. top:0px;
  11011. width:81px;
  11012. height:30px;
  11013. background:inherit;
  11014. background-color:rgba(255, 255, 255, 0);
  11015. border:none;
  11016. border-top:0px;
  11017. border-right:0px;
  11018. border-bottom:0px;
  11019. border-radius:0px;
  11020. border-top-left-radius:0px;
  11021. border-bottom-left-radius:0px;
  11022. -moz-box-shadow:none;
  11023. -webkit-box-shadow:none;
  11024. box-shadow:none;
  11025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11026. font-weight:400;
  11027. font-style:normal;
  11028. font-size:14px;
  11029. color:#7F7F7F;
  11030. }
  11031. #u28299 {
  11032. border-width:0px;
  11033. position:absolute;
  11034. left:2799px;
  11035. top:332px;
  11036. width:81px;
  11037. height:30px;
  11038. display:flex;
  11039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11040. font-weight:400;
  11041. font-style:normal;
  11042. font-size:14px;
  11043. color:#7F7F7F;
  11044. }
  11045. #u28299 .text {
  11046. position:absolute;
  11047. align-self:center;
  11048. padding:5px 10px 5px 0px;
  11049. box-sizing:border-box;
  11050. width:100%;
  11051. }
  11052. #u28299_text {
  11053. border-width:0px;
  11054. white-space:nowrap;
  11055. text-transform:none;
  11056. }
  11057. #u28300_div {
  11058. border-width:0px;
  11059. position:absolute;
  11060. left:0px;
  11061. top:0px;
  11062. width:53px;
  11063. height:30px;
  11064. background:inherit;
  11065. background-color:rgba(255, 255, 255, 0);
  11066. border:none;
  11067. border-top:0px;
  11068. border-right:0px;
  11069. border-bottom:0px;
  11070. border-radius:0px;
  11071. border-top-left-radius:0px;
  11072. border-bottom-left-radius:0px;
  11073. -moz-box-shadow:none;
  11074. -webkit-box-shadow:none;
  11075. box-shadow:none;
  11076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11077. font-weight:400;
  11078. font-style:normal;
  11079. font-size:14px;
  11080. }
  11081. #u28300 {
  11082. border-width:0px;
  11083. position:absolute;
  11084. left:2880px;
  11085. top:332px;
  11086. width:53px;
  11087. height:30px;
  11088. display:flex;
  11089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11090. font-weight:400;
  11091. font-style:normal;
  11092. font-size:14px;
  11093. }
  11094. #u28300 .text {
  11095. position:absolute;
  11096. align-self:center;
  11097. padding:5px 10px 5px 0px;
  11098. box-sizing:border-box;
  11099. width:100%;
  11100. }
  11101. #u28300_text {
  11102. border-width:0px;
  11103. white-space:nowrap;
  11104. text-transform:none;
  11105. }
  11106. #u28301_div {
  11107. border-width:0px;
  11108. position:absolute;
  11109. left:0px;
  11110. top:0px;
  11111. width:81px;
  11112. height:30px;
  11113. background:inherit;
  11114. background-color:rgba(255, 255, 255, 0);
  11115. border:none;
  11116. border-top:0px;
  11117. border-right:0px;
  11118. border-bottom:0px;
  11119. border-radius:0px;
  11120. border-top-left-radius:0px;
  11121. border-bottom-left-radius:0px;
  11122. -moz-box-shadow:none;
  11123. -webkit-box-shadow:none;
  11124. box-shadow:none;
  11125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11126. font-weight:400;
  11127. font-style:normal;
  11128. font-size:14px;
  11129. color:#7F7F7F;
  11130. }
  11131. #u28301 {
  11132. border-width:0px;
  11133. position:absolute;
  11134. left:2182px;
  11135. top:372px;
  11136. width:81px;
  11137. height:30px;
  11138. display:flex;
  11139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11140. font-weight:400;
  11141. font-style:normal;
  11142. font-size:14px;
  11143. color:#7F7F7F;
  11144. }
  11145. #u28301 .text {
  11146. position:absolute;
  11147. align-self:center;
  11148. padding:5px 10px 5px 0px;
  11149. box-sizing:border-box;
  11150. width:100%;
  11151. }
  11152. #u28301_text {
  11153. border-width:0px;
  11154. white-space:nowrap;
  11155. text-transform:none;
  11156. }
  11157. #u28302_div {
  11158. border-width:0px;
  11159. position:absolute;
  11160. left:0px;
  11161. top:0px;
  11162. width:81px;
  11163. height:30px;
  11164. background:inherit;
  11165. background-color:rgba(255, 255, 255, 0);
  11166. border:none;
  11167. border-top:0px;
  11168. border-right:0px;
  11169. border-bottom:0px;
  11170. border-radius:0px;
  11171. border-top-left-radius:0px;
  11172. border-bottom-left-radius:0px;
  11173. -moz-box-shadow:none;
  11174. -webkit-box-shadow:none;
  11175. box-shadow:none;
  11176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11177. font-weight:400;
  11178. font-style:normal;
  11179. font-size:14px;
  11180. color:#7F7F7F;
  11181. }
  11182. #u28302 {
  11183. border-width:0px;
  11184. position:absolute;
  11185. left:2502px;
  11186. top:372px;
  11187. width:81px;
  11188. height:30px;
  11189. display:flex;
  11190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11191. font-weight:400;
  11192. font-style:normal;
  11193. font-size:14px;
  11194. color:#7F7F7F;
  11195. }
  11196. #u28302 .text {
  11197. position:absolute;
  11198. align-self:center;
  11199. padding:5px 10px 5px 0px;
  11200. box-sizing:border-box;
  11201. width:100%;
  11202. }
  11203. #u28302_text {
  11204. border-width:0px;
  11205. white-space:nowrap;
  11206. text-transform:none;
  11207. }
  11208. #u28303_div {
  11209. border-width:0px;
  11210. position:absolute;
  11211. left:0px;
  11212. top:0px;
  11213. width:67px;
  11214. height:30px;
  11215. background:inherit;
  11216. background-color:rgba(255, 255, 255, 0);
  11217. border:none;
  11218. border-top:0px;
  11219. border-right:0px;
  11220. border-bottom:0px;
  11221. border-radius:0px;
  11222. border-top-left-radius:0px;
  11223. border-bottom-left-radius:0px;
  11224. -moz-box-shadow:none;
  11225. -webkit-box-shadow:none;
  11226. box-shadow:none;
  11227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11228. font-weight:400;
  11229. font-style:normal;
  11230. font-size:14px;
  11231. }
  11232. #u28303 {
  11233. border-width:0px;
  11234. position:absolute;
  11235. left:2583px;
  11236. top:372px;
  11237. width:67px;
  11238. height:30px;
  11239. display:flex;
  11240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11241. font-weight:400;
  11242. font-style:normal;
  11243. font-size:14px;
  11244. }
  11245. #u28303 .text {
  11246. position:absolute;
  11247. align-self:center;
  11248. padding:5px 10px 5px 0px;
  11249. box-sizing:border-box;
  11250. width:100%;
  11251. }
  11252. #u28303_text {
  11253. border-width:0px;
  11254. white-space:nowrap;
  11255. text-transform:none;
  11256. }
  11257. #u28304_div {
  11258. border-width:0px;
  11259. position:absolute;
  11260. left:0px;
  11261. top:0px;
  11262. width:67px;
  11263. height:30px;
  11264. background:inherit;
  11265. background-color:rgba(255, 255, 255, 0);
  11266. border:none;
  11267. border-top:0px;
  11268. border-right:0px;
  11269. border-bottom:0px;
  11270. border-radius:0px;
  11271. border-top-left-radius:0px;
  11272. border-bottom-left-radius:0px;
  11273. -moz-box-shadow:none;
  11274. -webkit-box-shadow:none;
  11275. box-shadow:none;
  11276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11277. font-weight:400;
  11278. font-style:normal;
  11279. font-size:14px;
  11280. color:#7F7F7F;
  11281. }
  11282. #u28304 {
  11283. border-width:0px;
  11284. position:absolute;
  11285. left:2799px;
  11286. top:372px;
  11287. width:67px;
  11288. height:30px;
  11289. display:flex;
  11290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11291. font-weight:400;
  11292. font-style:normal;
  11293. font-size:14px;
  11294. color:#7F7F7F;
  11295. }
  11296. #u28304 .text {
  11297. position:absolute;
  11298. align-self:center;
  11299. padding:5px 10px 5px 0px;
  11300. box-sizing:border-box;
  11301. width:100%;
  11302. }
  11303. #u28304_text {
  11304. border-width:0px;
  11305. white-space:nowrap;
  11306. text-transform:none;
  11307. }
  11308. #u28305_div {
  11309. border-width:0px;
  11310. position:absolute;
  11311. left:0px;
  11312. top:0px;
  11313. width:85px;
  11314. height:30px;
  11315. background:inherit;
  11316. background-color:rgba(255, 255, 255, 0);
  11317. border:none;
  11318. border-top:0px;
  11319. border-right:0px;
  11320. border-bottom:0px;
  11321. border-radius:0px;
  11322. border-top-left-radius:0px;
  11323. border-bottom-left-radius:0px;
  11324. -moz-box-shadow:none;
  11325. -webkit-box-shadow:none;
  11326. box-shadow:none;
  11327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11328. font-weight:400;
  11329. font-style:normal;
  11330. font-size:14px;
  11331. }
  11332. #u28305 {
  11333. border-width:0px;
  11334. position:absolute;
  11335. left:2880px;
  11336. top:372px;
  11337. width:85px;
  11338. height:30px;
  11339. display:flex;
  11340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11341. font-weight:400;
  11342. font-style:normal;
  11343. font-size:14px;
  11344. }
  11345. #u28305 .text {
  11346. position:absolute;
  11347. align-self:center;
  11348. padding:5px 10px 5px 0px;
  11349. box-sizing:border-box;
  11350. width:100%;
  11351. }
  11352. #u28305_text {
  11353. border-width:0px;
  11354. white-space:nowrap;
  11355. text-transform:none;
  11356. }
  11357. #u28306_div {
  11358. border-width:0px;
  11359. position:absolute;
  11360. left:0px;
  11361. top:0px;
  11362. width:183px;
  11363. height:30px;
  11364. background:inherit;
  11365. background-color:rgba(255, 255, 255, 0);
  11366. border:none;
  11367. border-top:0px;
  11368. border-right:0px;
  11369. border-bottom:0px;
  11370. border-radius:0px;
  11371. border-top-left-radius:0px;
  11372. border-bottom-left-radius:0px;
  11373. -moz-box-shadow:none;
  11374. -webkit-box-shadow:none;
  11375. box-shadow:none;
  11376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11377. font-weight:400;
  11378. font-style:normal;
  11379. font-size:14px;
  11380. }
  11381. #u28306 {
  11382. border-width:0px;
  11383. position:absolute;
  11384. left:2263px;
  11385. top:372px;
  11386. width:183px;
  11387. height:30px;
  11388. display:flex;
  11389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11390. font-weight:400;
  11391. font-style:normal;
  11392. font-size:14px;
  11393. }
  11394. #u28306 .text {
  11395. position:absolute;
  11396. align-self:center;
  11397. padding:5px 10px 5px 0px;
  11398. box-sizing:border-box;
  11399. width:100%;
  11400. }
  11401. #u28306_text {
  11402. border-width:0px;
  11403. white-space:nowrap;
  11404. text-transform:none;
  11405. }
  11406. #u28307_div {
  11407. border-width:0px;
  11408. position:absolute;
  11409. left:0px;
  11410. top:0px;
  11411. width:81px;
  11412. height:30px;
  11413. background:inherit;
  11414. background-color:rgba(255, 255, 255, 0);
  11415. border:none;
  11416. border-top:0px;
  11417. border-right:0px;
  11418. border-bottom:0px;
  11419. border-radius:0px;
  11420. border-top-left-radius:0px;
  11421. border-bottom-left-radius:0px;
  11422. -moz-box-shadow:none;
  11423. -webkit-box-shadow:none;
  11424. box-shadow:none;
  11425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11426. font-weight:400;
  11427. font-style:normal;
  11428. font-size:14px;
  11429. color:#7F7F7F;
  11430. }
  11431. #u28307 {
  11432. border-width:0px;
  11433. position:absolute;
  11434. left:2182px;
  11435. top:412px;
  11436. width:81px;
  11437. height:30px;
  11438. display:flex;
  11439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11440. font-weight:400;
  11441. font-style:normal;
  11442. font-size:14px;
  11443. color:#7F7F7F;
  11444. }
  11445. #u28307 .text {
  11446. position:absolute;
  11447. align-self:center;
  11448. padding:5px 10px 5px 0px;
  11449. box-sizing:border-box;
  11450. width:100%;
  11451. }
  11452. #u28307_text {
  11453. border-width:0px;
  11454. white-space:nowrap;
  11455. text-transform:none;
  11456. }
  11457. #u28308_div {
  11458. border-width:0px;
  11459. position:absolute;
  11460. left:0px;
  11461. top:0px;
  11462. width:126px;
  11463. height:30px;
  11464. background:inherit;
  11465. background-color:rgba(255, 255, 255, 0);
  11466. border:none;
  11467. border-top:0px;
  11468. border-right:0px;
  11469. border-bottom:0px;
  11470. border-radius:0px;
  11471. border-top-left-radius:0px;
  11472. border-bottom-left-radius:0px;
  11473. -moz-box-shadow:none;
  11474. -webkit-box-shadow:none;
  11475. box-shadow:none;
  11476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11477. font-weight:400;
  11478. font-style:normal;
  11479. font-size:14px;
  11480. }
  11481. #u28308 {
  11482. border-width:0px;
  11483. position:absolute;
  11484. left:2263px;
  11485. top:412px;
  11486. width:126px;
  11487. height:30px;
  11488. display:flex;
  11489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11490. font-weight:400;
  11491. font-style:normal;
  11492. font-size:14px;
  11493. }
  11494. #u28308 .text {
  11495. position:absolute;
  11496. align-self:center;
  11497. padding:5px 10px 5px 0px;
  11498. box-sizing:border-box;
  11499. width:100%;
  11500. }
  11501. #u28308_text {
  11502. border-width:0px;
  11503. white-space:nowrap;
  11504. text-transform:none;
  11505. }
  11506. #u28309_div {
  11507. border-width:0px;
  11508. position:absolute;
  11509. left:0px;
  11510. top:0px;
  11511. width:81px;
  11512. height:30px;
  11513. background:inherit;
  11514. background-color:rgba(255, 255, 255, 0);
  11515. border:none;
  11516. border-top:0px;
  11517. border-right:0px;
  11518. border-bottom:0px;
  11519. border-radius:0px;
  11520. border-top-left-radius:0px;
  11521. border-bottom-left-radius:0px;
  11522. -moz-box-shadow:none;
  11523. -webkit-box-shadow:none;
  11524. box-shadow:none;
  11525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11526. font-weight:400;
  11527. font-style:normal;
  11528. font-size:14px;
  11529. color:#7F7F7F;
  11530. }
  11531. #u28309 {
  11532. border-width:0px;
  11533. position:absolute;
  11534. left:2182px;
  11535. top:452px;
  11536. width:81px;
  11537. height:30px;
  11538. display:flex;
  11539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11540. font-weight:400;
  11541. font-style:normal;
  11542. font-size:14px;
  11543. color:#7F7F7F;
  11544. }
  11545. #u28309 .text {
  11546. position:absolute;
  11547. align-self:center;
  11548. padding:5px 10px 5px 0px;
  11549. box-sizing:border-box;
  11550. width:100%;
  11551. }
  11552. #u28309_text {
  11553. border-width:0px;
  11554. white-space:nowrap;
  11555. text-transform:none;
  11556. }
  11557. #u28310_div {
  11558. border-width:0px;
  11559. position:absolute;
  11560. left:0px;
  11561. top:0px;
  11562. width:263px;
  11563. height:30px;
  11564. background:inherit;
  11565. background-color:rgba(255, 255, 255, 0);
  11566. border:none;
  11567. border-top:0px;
  11568. border-right:0px;
  11569. border-bottom:0px;
  11570. border-radius:0px;
  11571. border-top-left-radius:0px;
  11572. border-bottom-left-radius:0px;
  11573. -moz-box-shadow:none;
  11574. -webkit-box-shadow:none;
  11575. box-shadow:none;
  11576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11577. font-weight:400;
  11578. font-style:normal;
  11579. font-size:14px;
  11580. }
  11581. #u28310 {
  11582. border-width:0px;
  11583. position:absolute;
  11584. left:2263px;
  11585. top:452px;
  11586. width:263px;
  11587. height:30px;
  11588. display:flex;
  11589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11590. font-weight:400;
  11591. font-style:normal;
  11592. font-size:14px;
  11593. }
  11594. #u28310 .text {
  11595. position:absolute;
  11596. align-self:center;
  11597. padding:5px 10px 5px 0px;
  11598. box-sizing:border-box;
  11599. width:100%;
  11600. }
  11601. #u28310_text {
  11602. border-width:0px;
  11603. white-space:nowrap;
  11604. text-transform:none;
  11605. }
  11606. #u28311_img {
  11607. border-width:0px;
  11608. position:absolute;
  11609. left:0px;
  11610. top:0px;
  11611. width:942px;
  11612. height:2px;
  11613. }
  11614. #u28311 {
  11615. border-width:0px;
  11616. position:absolute;
  11617. left:2182px;
  11618. top:500px;
  11619. width:941px;
  11620. height:1px;
  11621. display:flex;
  11622. }
  11623. #u28311 .text {
  11624. position:absolute;
  11625. align-self:center;
  11626. padding:2px 2px 2px 2px;
  11627. box-sizing:border-box;
  11628. width:100%;
  11629. }
  11630. #u28311_text {
  11631. border-width:0px;
  11632. word-wrap:break-word;
  11633. text-transform:none;
  11634. visibility:hidden;
  11635. }
  11636. #u28312_div {
  11637. border-width:0px;
  11638. position:absolute;
  11639. left:0px;
  11640. top:0px;
  11641. width:1000px;
  11642. height:200px;
  11643. background:inherit;
  11644. background-color:rgba(255, 255, 255, 1);
  11645. box-sizing:border-box;
  11646. border-width:1px;
  11647. border-style:solid;
  11648. border-color:rgba(215, 215, 215, 1);
  11649. border-radius:0px;
  11650. -moz-box-shadow:none;
  11651. -webkit-box-shadow:none;
  11652. box-shadow:none;
  11653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11654. font-weight:400;
  11655. font-style:normal;
  11656. font-size:14px;
  11657. color:#AAAAAA;
  11658. text-align:center;
  11659. line-height:30px;
  11660. }
  11661. #u28312 {
  11662. border-width:0px;
  11663. position:absolute;
  11664. left:2143px;
  11665. top:55px;
  11666. width:1000px;
  11667. height:200px;
  11668. display:flex;
  11669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11670. font-weight:400;
  11671. font-style:normal;
  11672. font-size:14px;
  11673. color:#AAAAAA;
  11674. text-align:center;
  11675. line-height:30px;
  11676. }
  11677. #u28312 .text {
  11678. position:absolute;
  11679. align-self:center;
  11680. padding:5px 10px 5px 10px;
  11681. box-sizing:border-box;
  11682. width:100%;
  11683. }
  11684. #u28312_text {
  11685. border-width:0px;
  11686. word-wrap:break-word;
  11687. text-transform:none;
  11688. visibility:hidden;
  11689. }
  11690. #u28313_div {
  11691. border-width:0px;
  11692. position:absolute;
  11693. left:0px;
  11694. top:0px;
  11695. width:83px;
  11696. height:35px;
  11697. background:inherit;
  11698. background-color:rgba(255, 255, 255, 0);
  11699. border:none;
  11700. border-top:0px;
  11701. border-right:0px;
  11702. border-bottom:0px;
  11703. border-radius:0px;
  11704. border-top-left-radius:0px;
  11705. border-bottom-left-radius:0px;
  11706. -moz-box-shadow:none;
  11707. -webkit-box-shadow:none;
  11708. box-shadow:none;
  11709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11710. font-weight:500;
  11711. font-style:normal;
  11712. font-size:18px;
  11713. }
  11714. #u28313 {
  11715. border-width:0px;
  11716. position:absolute;
  11717. left:2163px;
  11718. top:73px;
  11719. width:83px;
  11720. height:35px;
  11721. display:flex;
  11722. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11723. font-weight:500;
  11724. font-style:normal;
  11725. font-size:18px;
  11726. }
  11727. #u28313 .text {
  11728. position:absolute;
  11729. align-self:center;
  11730. padding:5px 10px 5px 0px;
  11731. box-sizing:border-box;
  11732. width:100%;
  11733. }
  11734. #u28313_text {
  11735. border-width:0px;
  11736. white-space:nowrap;
  11737. text-transform:none;
  11738. }
  11739. #u28314_div {
  11740. border-width:0px;
  11741. position:absolute;
  11742. left:0px;
  11743. top:0px;
  11744. width:107px;
  11745. height:43px;
  11746. background:inherit;
  11747. background-color:rgba(255, 255, 255, 0);
  11748. border:none;
  11749. border-top:0px;
  11750. border-right:0px;
  11751. border-bottom:0px;
  11752. border-radius:0px;
  11753. border-top-left-radius:0px;
  11754. border-bottom-left-radius:0px;
  11755. -moz-box-shadow:none;
  11756. -webkit-box-shadow:none;
  11757. box-shadow:none;
  11758. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11759. font-weight:500;
  11760. font-style:normal;
  11761. font-size:24px;
  11762. }
  11763. #u28314 {
  11764. border-width:0px;
  11765. position:absolute;
  11766. left:2173px;
  11767. top:124px;
  11768. width:107px;
  11769. height:43px;
  11770. display:flex;
  11771. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11772. font-weight:500;
  11773. font-style:normal;
  11774. font-size:24px;
  11775. }
  11776. #u28314 .text {
  11777. position:absolute;
  11778. align-self:center;
  11779. padding:5px 10px 5px 0px;
  11780. box-sizing:border-box;
  11781. width:100%;
  11782. }
  11783. #u28314_text {
  11784. border-width:0px;
  11785. white-space:nowrap;
  11786. text-transform:none;
  11787. }
  11788. #u28315_img {
  11789. border-width:0px;
  11790. position:absolute;
  11791. left:0px;
  11792. top:0px;
  11793. width:108px;
  11794. height:108px;
  11795. }
  11796. #u28315 {
  11797. border-width:0px;
  11798. position:absolute;
  11799. left:2993px;
  11800. top:125px;
  11801. width:108px;
  11802. height:108px;
  11803. display:flex;
  11804. -webkit-transform:rotate(315deg);
  11805. -moz-transform:rotate(315deg);
  11806. -ms-transform:rotate(315deg);
  11807. transform:rotate(315deg);
  11808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11809. font-weight:400;
  11810. font-style:normal;
  11811. font-size:28px;
  11812. color:#F59A23;
  11813. }
  11814. #u28315 .text {
  11815. position:absolute;
  11816. align-self:center;
  11817. padding:2px 2px 2px 2px;
  11818. box-sizing:border-box;
  11819. width:100%;
  11820. }
  11821. #u28315_text {
  11822. border-width:0px;
  11823. word-wrap:break-word;
  11824. text-transform:none;
  11825. }
  11826. #u28316_div {
  11827. border-width:0px;
  11828. position:absolute;
  11829. left:0px;
  11830. top:0px;
  11831. width:325px;
  11832. height:60px;
  11833. background:inherit;
  11834. background-color:rgba(255, 255, 255, 0);
  11835. border:none;
  11836. border-left:0px;
  11837. border-top:0px;
  11838. border-right:0px;
  11839. border-radius:0px;
  11840. border-bottom-right-radius:0px;
  11841. border-bottom-left-radius:0px;
  11842. -moz-box-shadow:none;
  11843. -webkit-box-shadow:none;
  11844. box-shadow:none;
  11845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11846. font-weight:400;
  11847. font-style:normal;
  11848. font-size:14px;
  11849. line-height:30px;
  11850. }
  11851. #u28316 {
  11852. border-width:0px;
  11853. position:absolute;
  11854. left:2173px;
  11855. top:179px;
  11856. width:325px;
  11857. height:60px;
  11858. display:flex;
  11859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11860. font-weight:400;
  11861. font-style:normal;
  11862. font-size:14px;
  11863. line-height:30px;
  11864. }
  11865. #u28316 .text {
  11866. position:absolute;
  11867. align-self:flex-start;
  11868. padding:0px 0px 0px 0px;
  11869. box-sizing:border-box;
  11870. width:100%;
  11871. }
  11872. #u28316_text {
  11873. border-width:0px;
  11874. word-wrap:break-word;
  11875. text-transform:none;
  11876. }
  11877. #u28317_img {
  11878. border-width:0px;
  11879. position:absolute;
  11880. left:0px;
  11881. top:0px;
  11882. width:17px;
  11883. height:17px;
  11884. }
  11885. #u28317 {
  11886. border-width:0px;
  11887. position:absolute;
  11888. left:3115px;
  11889. top:77px;
  11890. width:17px;
  11891. height:17px;
  11892. display:flex;
  11893. }
  11894. #u28317 .text {
  11895. position:absolute;
  11896. align-self:center;
  11897. padding:2px 2px 2px 2px;
  11898. box-sizing:border-box;
  11899. width:100%;
  11900. }
  11901. #u28317_text {
  11902. border-width:0px;
  11903. word-wrap:break-word;
  11904. text-transform:none;
  11905. visibility:hidden;
  11906. }
  11907. #u28318 {
  11908. border-width:0px;
  11909. position:absolute;
  11910. left:0px;
  11911. top:0px;
  11912. width:0px;
  11913. height:0px;
  11914. }
  11915. #u28319_div {
  11916. border-width:0px;
  11917. position:absolute;
  11918. left:0px;
  11919. top:0px;
  11920. width:1000px;
  11921. height:60px;
  11922. background:inherit;
  11923. background-color:rgba(255, 255, 255, 1);
  11924. box-sizing:border-box;
  11925. border-width:1px;
  11926. border-style:solid;
  11927. border-color:rgba(215, 215, 215, 1);
  11928. border-radius:0px;
  11929. -moz-box-shadow:none;
  11930. -webkit-box-shadow:none;
  11931. box-shadow:none;
  11932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11933. font-weight:400;
  11934. font-style:normal;
  11935. font-size:14px;
  11936. color:#AAAAAA;
  11937. text-align:center;
  11938. line-height:30px;
  11939. }
  11940. #u28319 {
  11941. border-width:0px;
  11942. position:absolute;
  11943. left:2142px;
  11944. top:1418px;
  11945. width:1000px;
  11946. height:60px;
  11947. display:flex;
  11948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11949. font-weight:400;
  11950. font-style:normal;
  11951. font-size:14px;
  11952. color:#AAAAAA;
  11953. text-align:center;
  11954. line-height:30px;
  11955. }
  11956. #u28319 .text {
  11957. position:absolute;
  11958. align-self:center;
  11959. padding:5px 10px 5px 10px;
  11960. box-sizing:border-box;
  11961. width:100%;
  11962. }
  11963. #u28319_text {
  11964. border-width:0px;
  11965. word-wrap:break-word;
  11966. text-transform:none;
  11967. visibility:hidden;
  11968. }
  11969. #u28320_div {
  11970. border-width:0px;
  11971. position:absolute;
  11972. left:0px;
  11973. top:0px;
  11974. width:80px;
  11975. height:30px;
  11976. background:inherit;
  11977. background-color:rgba(255, 255, 255, 1);
  11978. box-sizing:border-box;
  11979. border-width:1px;
  11980. border-style:solid;
  11981. border-color:rgba(170, 170, 170, 1);
  11982. border-radius:4px;
  11983. -moz-box-shadow:none;
  11984. -webkit-box-shadow:none;
  11985. box-shadow:none;
  11986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11987. font-weight:400;
  11988. font-style:normal;
  11989. font-size:14px;
  11990. }
  11991. #u28320 {
  11992. border-width:0px;
  11993. position:absolute;
  11994. left:3032px;
  11995. top:1433px;
  11996. width:80px;
  11997. height:30px;
  11998. display:flex;
  11999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12000. font-weight:400;
  12001. font-style:normal;
  12002. font-size:14px;
  12003. }
  12004. #u28320 .text {
  12005. position:absolute;
  12006. align-self:center;
  12007. padding:2px 2px 2px 2px;
  12008. box-sizing:border-box;
  12009. width:100%;
  12010. }
  12011. #u28320_text {
  12012. border-width:0px;
  12013. word-wrap:break-word;
  12014. text-transform:none;
  12015. }
  12016. #u28321 {
  12017. border-width:0px;
  12018. position:absolute;
  12019. left:0px;
  12020. top:0px;
  12021. width:0px;
  12022. height:0px;
  12023. }
  12024. #u28322_div {
  12025. border-width:0px;
  12026. position:absolute;
  12027. left:0px;
  12028. top:0px;
  12029. width:1000px;
  12030. height:562px;
  12031. background:inherit;
  12032. background-color:rgba(255, 255, 255, 1);
  12033. box-sizing:border-box;
  12034. border-width:1px;
  12035. border-style:solid;
  12036. border-color:rgba(242, 242, 242, 1);
  12037. border-radius:0px;
  12038. -moz-box-shadow:none;
  12039. -webkit-box-shadow:none;
  12040. box-shadow:none;
  12041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12042. font-weight:400;
  12043. font-style:normal;
  12044. font-size:14px;
  12045. color:#AAAAAA;
  12046. text-align:center;
  12047. line-height:30px;
  12048. }
  12049. #u28322 {
  12050. border-width:0px;
  12051. position:absolute;
  12052. left:2142px;
  12053. top:856px;
  12054. width:1000px;
  12055. height:562px;
  12056. display:flex;
  12057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12058. font-weight:400;
  12059. font-style:normal;
  12060. font-size:14px;
  12061. color:#AAAAAA;
  12062. text-align:center;
  12063. line-height:30px;
  12064. }
  12065. #u28322 .text {
  12066. position:absolute;
  12067. align-self:center;
  12068. padding:5px 10px 5px 10px;
  12069. box-sizing:border-box;
  12070. width:100%;
  12071. }
  12072. #u28322_text {
  12073. border-width:0px;
  12074. word-wrap:break-word;
  12075. text-transform:none;
  12076. visibility:hidden;
  12077. }
  12078. #u28323_div {
  12079. border-width:0px;
  12080. position:absolute;
  12081. left:0px;
  12082. top:0px;
  12083. width:73px;
  12084. height:40px;
  12085. background:inherit;
  12086. background-color:rgba(255, 255, 255, 0);
  12087. border:none;
  12088. border-left:0px;
  12089. border-top:0px;
  12090. border-right:0px;
  12091. border-radius:0px;
  12092. border-bottom-right-radius:0px;
  12093. border-bottom-left-radius:0px;
  12094. -moz-box-shadow:none;
  12095. -webkit-box-shadow:none;
  12096. box-shadow:none;
  12097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12098. font-weight:400;
  12099. font-style:normal;
  12100. font-size:18px;
  12101. }
  12102. #u28323 {
  12103. border-width:0px;
  12104. position:absolute;
  12105. left:2182px;
  12106. top:872px;
  12107. width:73px;
  12108. height:40px;
  12109. display:flex;
  12110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12111. font-weight:400;
  12112. font-style:normal;
  12113. font-size:18px;
  12114. }
  12115. #u28323 .text {
  12116. position:absolute;
  12117. align-self:center;
  12118. padding:0px 0px 0px 0px;
  12119. box-sizing:border-box;
  12120. width:100%;
  12121. }
  12122. #u28323_text {
  12123. border-width:0px;
  12124. white-space:nowrap;
  12125. text-transform:none;
  12126. }
  12127. #u28324 {
  12128. border-width:0px;
  12129. position:absolute;
  12130. left:0px;
  12131. top:0px;
  12132. width:0px;
  12133. height:0px;
  12134. }
  12135. #u28325_div {
  12136. border-width:0px;
  12137. position:absolute;
  12138. left:0px;
  12139. top:0px;
  12140. width:175px;
  12141. height:20px;
  12142. background:inherit;
  12143. background-color:rgba(255, 255, 255, 0);
  12144. border:none;
  12145. border-radius:0px;
  12146. -moz-box-shadow:none;
  12147. -webkit-box-shadow:none;
  12148. box-shadow:none;
  12149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12150. font-weight:400;
  12151. font-style:normal;
  12152. }
  12153. #u28325 {
  12154. border-width:0px;
  12155. position:absolute;
  12156. left:2218px;
  12157. top:1181px;
  12158. width:175px;
  12159. height:20px;
  12160. display:flex;
  12161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12162. font-weight:400;
  12163. font-style:normal;
  12164. }
  12165. #u28325 .text {
  12166. position:absolute;
  12167. align-self:center;
  12168. padding:0px 0px 0px 0px;
  12169. box-sizing:border-box;
  12170. width:100%;
  12171. }
  12172. #u28325_text {
  12173. border-width:0px;
  12174. white-space:nowrap;
  12175. text-transform:none;
  12176. }
  12177. #u28326 {
  12178. border-width:0px;
  12179. position:absolute;
  12180. left:0px;
  12181. top:0px;
  12182. width:0px;
  12183. height:0px;
  12184. }
  12185. #u28327_div {
  12186. border-width:0px;
  12187. position:absolute;
  12188. left:0px;
  12189. top:0px;
  12190. width:878px;
  12191. height:61px;
  12192. background:inherit;
  12193. background-color:rgba(255, 255, 255, 0);
  12194. border:none;
  12195. border-top:0px;
  12196. border-right:0px;
  12197. border-bottom:0px;
  12198. border-radius:0px;
  12199. border-top-left-radius:0px;
  12200. border-bottom-left-radius:0px;
  12201. -moz-box-shadow:none;
  12202. -webkit-box-shadow:none;
  12203. box-shadow:none;
  12204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12205. font-weight:400;
  12206. font-style:normal;
  12207. font-size:12px;
  12208. }
  12209. #u28327 {
  12210. border-width:0px;
  12211. position:absolute;
  12212. left:2218px;
  12213. top:1201px;
  12214. width:878px;
  12215. height:61px;
  12216. display:flex;
  12217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12218. font-weight:400;
  12219. font-style:normal;
  12220. font-size:12px;
  12221. }
  12222. #u28327 .text {
  12223. position:absolute;
  12224. align-self:center;
  12225. padding:5px 10px 5px 0px;
  12226. box-sizing:border-box;
  12227. width:100%;
  12228. }
  12229. #u28327_text {
  12230. border-width:0px;
  12231. word-wrap:break-word;
  12232. text-transform:none;
  12233. }
  12234. #u28328_img {
  12235. border-width:0px;
  12236. position:absolute;
  12237. left:0px;
  12238. top:0px;
  12239. width:61px;
  12240. height:41px;
  12241. }
  12242. #u28328 {
  12243. border-width:0px;
  12244. position:absolute;
  12245. left:2280px;
  12246. top:1245px;
  12247. width:61px;
  12248. height:41px;
  12249. display:flex;
  12250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12251. font-weight:400;
  12252. font-style:normal;
  12253. }
  12254. #u28328 .text {
  12255. position:absolute;
  12256. align-self:center;
  12257. padding:0px 0px 0px 0px;
  12258. box-sizing:border-box;
  12259. width:100%;
  12260. }
  12261. #u28328_text {
  12262. border-width:0px;
  12263. word-wrap:break-word;
  12264. text-transform:none;
  12265. visibility:hidden;
  12266. }
  12267. #u28329_img {
  12268. border-width:0px;
  12269. position:absolute;
  12270. left:0px;
  12271. top:0px;
  12272. width:61px;
  12273. height:41px;
  12274. }
  12275. #u28329 {
  12276. border-width:0px;
  12277. position:absolute;
  12278. left:2351px;
  12279. top:1245px;
  12280. width:61px;
  12281. height:41px;
  12282. display:flex;
  12283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12284. font-weight:400;
  12285. font-style:normal;
  12286. }
  12287. #u28329 .text {
  12288. position:absolute;
  12289. align-self:center;
  12290. padding:0px 0px 0px 0px;
  12291. box-sizing:border-box;
  12292. width:100%;
  12293. }
  12294. #u28329_text {
  12295. border-width:0px;
  12296. word-wrap:break-word;
  12297. text-transform:none;
  12298. visibility:hidden;
  12299. }
  12300. #u28330_img {
  12301. border-width:0px;
  12302. position:absolute;
  12303. left:0px;
  12304. top:0px;
  12305. width:61px;
  12306. height:41px;
  12307. }
  12308. #u28330 {
  12309. border-width:0px;
  12310. position:absolute;
  12311. left:2422px;
  12312. top:1245px;
  12313. width:61px;
  12314. height:41px;
  12315. display:flex;
  12316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12317. font-weight:400;
  12318. font-style:normal;
  12319. }
  12320. #u28330 .text {
  12321. position:absolute;
  12322. align-self:center;
  12323. padding:0px 0px 0px 0px;
  12324. box-sizing:border-box;
  12325. width:100%;
  12326. }
  12327. #u28330_text {
  12328. border-width:0px;
  12329. word-wrap:break-word;
  12330. text-transform:none;
  12331. visibility:hidden;
  12332. }
  12333. #u28331_img {
  12334. border-width:0px;
  12335. position:absolute;
  12336. left:0px;
  12337. top:0px;
  12338. width:61px;
  12339. height:41px;
  12340. }
  12341. #u28331 {
  12342. border-width:0px;
  12343. position:absolute;
  12344. left:2493px;
  12345. top:1245px;
  12346. width:61px;
  12347. height:41px;
  12348. display:flex;
  12349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12350. font-weight:400;
  12351. font-style:normal;
  12352. }
  12353. #u28331 .text {
  12354. position:absolute;
  12355. align-self:center;
  12356. padding:0px 0px 0px 0px;
  12357. box-sizing:border-box;
  12358. width:100%;
  12359. }
  12360. #u28331_text {
  12361. border-width:0px;
  12362. word-wrap:break-word;
  12363. text-transform:none;
  12364. visibility:hidden;
  12365. }
  12366. #u28332_img {
  12367. border-width:0px;
  12368. position:absolute;
  12369. left:0px;
  12370. top:0px;
  12371. width:61px;
  12372. height:41px;
  12373. }
  12374. #u28332 {
  12375. border-width:0px;
  12376. position:absolute;
  12377. left:2564px;
  12378. top:1245px;
  12379. width:61px;
  12380. height:41px;
  12381. display:flex;
  12382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12383. font-weight:400;
  12384. font-style:normal;
  12385. }
  12386. #u28332 .text {
  12387. position:absolute;
  12388. align-self:center;
  12389. padding:0px 0px 0px 0px;
  12390. box-sizing:border-box;
  12391. width:100%;
  12392. }
  12393. #u28332_text {
  12394. border-width:0px;
  12395. word-wrap:break-word;
  12396. text-transform:none;
  12397. visibility:hidden;
  12398. }
  12399. #u28333_img {
  12400. border-width:0px;
  12401. position:absolute;
  12402. left:0px;
  12403. top:0px;
  12404. width:61px;
  12405. height:41px;
  12406. }
  12407. #u28333 {
  12408. border-width:0px;
  12409. position:absolute;
  12410. left:2635px;
  12411. top:1245px;
  12412. width:61px;
  12413. height:41px;
  12414. display:flex;
  12415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12416. font-weight:400;
  12417. font-style:normal;
  12418. }
  12419. #u28333 .text {
  12420. position:absolute;
  12421. align-self:center;
  12422. padding:0px 0px 0px 0px;
  12423. box-sizing:border-box;
  12424. width:100%;
  12425. }
  12426. #u28333_text {
  12427. border-width:0px;
  12428. word-wrap:break-word;
  12429. text-transform:none;
  12430. visibility:hidden;
  12431. }
  12432. #u28334_img {
  12433. border-width:0px;
  12434. position:absolute;
  12435. left:0px;
  12436. top:0px;
  12437. width:22px;
  12438. height:22px;
  12439. }
  12440. #u28334 {
  12441. border-width:0px;
  12442. position:absolute;
  12443. left:2191px;
  12444. top:1181px;
  12445. width:22px;
  12446. height:22px;
  12447. display:flex;
  12448. font-family:'Microsoft YaHei', sans-serif;
  12449. font-weight:400;
  12450. font-style:normal;
  12451. font-size:12px;
  12452. color:#FFFFFF;
  12453. }
  12454. #u28334 .text {
  12455. position:absolute;
  12456. align-self:center;
  12457. padding:4px 4px 4px 4px;
  12458. box-sizing:border-box;
  12459. width:100%;
  12460. }
  12461. #u28334_text {
  12462. border-width:0px;
  12463. word-wrap:break-word;
  12464. text-transform:none;
  12465. visibility:hidden;
  12466. }
  12467. #u28335_img {
  12468. border-width:0px;
  12469. position:absolute;
  12470. left:0px;
  12471. top:0px;
  12472. width:109px;
  12473. height:2px;
  12474. }
  12475. #u28335 {
  12476. border-width:0px;
  12477. position:absolute;
  12478. left:2149px;
  12479. top:1256px;
  12480. width:108px;
  12481. height:1px;
  12482. display:flex;
  12483. -webkit-transform:rotate(90deg);
  12484. -moz-transform:rotate(90deg);
  12485. -ms-transform:rotate(90deg);
  12486. transform:rotate(90deg);
  12487. }
  12488. #u28335 .text {
  12489. position:absolute;
  12490. align-self:center;
  12491. padding:2px 2px 2px 2px;
  12492. box-sizing:border-box;
  12493. width:100%;
  12494. }
  12495. #u28335_text {
  12496. border-width:0px;
  12497. word-wrap:break-word;
  12498. text-transform:none;
  12499. visibility:hidden;
  12500. }
  12501. #u28336_img {
  12502. border-width:0px;
  12503. position:absolute;
  12504. left:0px;
  12505. top:0px;
  12506. width:22px;
  12507. height:22px;
  12508. }
  12509. #u28336 {
  12510. border-width:0px;
  12511. position:absolute;
  12512. left:2191px;
  12513. top:1310px;
  12514. width:22px;
  12515. height:22px;
  12516. display:flex;
  12517. font-family:'Microsoft YaHei', sans-serif;
  12518. font-weight:400;
  12519. font-style:normal;
  12520. font-size:12px;
  12521. color:#FFFFFF;
  12522. }
  12523. #u28336 .text {
  12524. position:absolute;
  12525. align-self:center;
  12526. padding:4px 4px 4px 4px;
  12527. box-sizing:border-box;
  12528. width:100%;
  12529. }
  12530. #u28336_text {
  12531. border-width:0px;
  12532. word-wrap:break-word;
  12533. text-transform:none;
  12534. visibility:hidden;
  12535. }
  12536. #u28337_div {
  12537. border-width:0px;
  12538. position:absolute;
  12539. left:0px;
  12540. top:0px;
  12541. width:43px;
  12542. height:20px;
  12543. background:inherit;
  12544. background-color:rgba(255, 255, 255, 0);
  12545. border:none;
  12546. border-radius:0px;
  12547. -moz-box-shadow:none;
  12548. -webkit-box-shadow:none;
  12549. box-shadow:none;
  12550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12551. font-weight:400;
  12552. font-style:normal;
  12553. font-size:14px;
  12554. color:#AAAAAA;
  12555. }
  12556. #u28337 {
  12557. border-width:0px;
  12558. position:absolute;
  12559. left:2218px;
  12560. top:1310px;
  12561. width:43px;
  12562. height:20px;
  12563. display:flex;
  12564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12565. font-weight:400;
  12566. font-style:normal;
  12567. font-size:14px;
  12568. color:#AAAAAA;
  12569. }
  12570. #u28337 .text {
  12571. position:absolute;
  12572. align-self:center;
  12573. padding:0px 0px 0px 0px;
  12574. box-sizing:border-box;
  12575. width:100%;
  12576. }
  12577. #u28337_text {
  12578. border-width:0px;
  12579. white-space:nowrap;
  12580. text-transform:none;
  12581. }
  12582. #u28338 {
  12583. border-width:0px;
  12584. position:absolute;
  12585. left:0px;
  12586. top:0px;
  12587. width:0px;
  12588. height:0px;
  12589. }
  12590. #u28339_div {
  12591. border-width:0px;
  12592. position:absolute;
  12593. left:0px;
  12594. top:0px;
  12595. width:175px;
  12596. height:20px;
  12597. background:inherit;
  12598. background-color:rgba(255, 255, 255, 0);
  12599. border:none;
  12600. border-radius:0px;
  12601. -moz-box-shadow:none;
  12602. -webkit-box-shadow:none;
  12603. box-shadow:none;
  12604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12605. font-weight:400;
  12606. font-style:normal;
  12607. }
  12608. #u28339 {
  12609. border-width:0px;
  12610. position:absolute;
  12611. left:2218px;
  12612. top:938px;
  12613. width:175px;
  12614. height:20px;
  12615. display:flex;
  12616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12617. font-weight:400;
  12618. font-style:normal;
  12619. }
  12620. #u28339 .text {
  12621. position:absolute;
  12622. align-self:center;
  12623. padding:0px 0px 0px 0px;
  12624. box-sizing:border-box;
  12625. width:100%;
  12626. }
  12627. #u28339_text {
  12628. border-width:0px;
  12629. white-space:nowrap;
  12630. text-transform:none;
  12631. }
  12632. #u28340 {
  12633. border-width:0px;
  12634. position:absolute;
  12635. left:0px;
  12636. top:0px;
  12637. width:0px;
  12638. height:0px;
  12639. }
  12640. #u28341_div {
  12641. border-width:0px;
  12642. position:absolute;
  12643. left:0px;
  12644. top:0px;
  12645. width:878px;
  12646. height:44px;
  12647. background:inherit;
  12648. background-color:rgba(255, 255, 255, 0);
  12649. border:none;
  12650. border-top:0px;
  12651. border-right:0px;
  12652. border-bottom:0px;
  12653. border-radius:0px;
  12654. border-top-left-radius:0px;
  12655. border-bottom-left-radius:0px;
  12656. -moz-box-shadow:none;
  12657. -webkit-box-shadow:none;
  12658. box-shadow:none;
  12659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12660. font-weight:400;
  12661. font-style:normal;
  12662. font-size:12px;
  12663. }
  12664. #u28341 {
  12665. border-width:0px;
  12666. position:absolute;
  12667. left:2218px;
  12668. top:963px;
  12669. width:878px;
  12670. height:44px;
  12671. display:flex;
  12672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12673. font-weight:400;
  12674. font-style:normal;
  12675. font-size:12px;
  12676. }
  12677. #u28341 .text {
  12678. position:absolute;
  12679. align-self:center;
  12680. padding:5px 10px 5px 0px;
  12681. box-sizing:border-box;
  12682. width:100%;
  12683. }
  12684. #u28341_text {
  12685. border-width:0px;
  12686. word-wrap:break-word;
  12687. text-transform:none;
  12688. }
  12689. #u28342_img {
  12690. border-width:0px;
  12691. position:absolute;
  12692. left:0px;
  12693. top:0px;
  12694. width:22px;
  12695. height:22px;
  12696. }
  12697. #u28342 {
  12698. border-width:0px;
  12699. position:absolute;
  12700. left:2191px;
  12701. top:938px;
  12702. width:22px;
  12703. height:22px;
  12704. display:flex;
  12705. font-family:'Microsoft YaHei', sans-serif;
  12706. font-weight:400;
  12707. font-style:normal;
  12708. font-size:12px;
  12709. color:#FFFFFF;
  12710. }
  12711. #u28342 .text {
  12712. position:absolute;
  12713. align-self:center;
  12714. padding:4px 4px 4px 4px;
  12715. box-sizing:border-box;
  12716. width:100%;
  12717. }
  12718. #u28342_text {
  12719. border-width:0px;
  12720. word-wrap:break-word;
  12721. text-transform:none;
  12722. visibility:hidden;
  12723. }
  12724. #u28343_img {
  12725. border-width:0px;
  12726. position:absolute;
  12727. left:0px;
  12728. top:0px;
  12729. width:61px;
  12730. height:2px;
  12731. }
  12732. #u28343 {
  12733. border-width:0px;
  12734. position:absolute;
  12735. left:2173px;
  12736. top:988px;
  12737. width:60px;
  12738. height:1px;
  12739. display:flex;
  12740. -webkit-transform:rotate(90deg);
  12741. -moz-transform:rotate(90deg);
  12742. -ms-transform:rotate(90deg);
  12743. transform:rotate(90deg);
  12744. }
  12745. #u28343 .text {
  12746. position:absolute;
  12747. align-self:center;
  12748. padding:2px 2px 2px 2px;
  12749. box-sizing:border-box;
  12750. width:100%;
  12751. }
  12752. #u28343_text {
  12753. border-width:0px;
  12754. word-wrap:break-word;
  12755. text-transform:none;
  12756. visibility:hidden;
  12757. }
  12758. #u28344 {
  12759. border-width:0px;
  12760. position:absolute;
  12761. left:0px;
  12762. top:0px;
  12763. width:0px;
  12764. height:0px;
  12765. }
  12766. #u28345_div {
  12767. border-width:0px;
  12768. position:absolute;
  12769. left:0px;
  12770. top:0px;
  12771. width:175px;
  12772. height:20px;
  12773. background:inherit;
  12774. background-color:rgba(255, 255, 255, 0);
  12775. border:none;
  12776. border-radius:0px;
  12777. -moz-box-shadow:none;
  12778. -webkit-box-shadow:none;
  12779. box-shadow:none;
  12780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12781. font-weight:400;
  12782. font-style:normal;
  12783. }
  12784. #u28345 {
  12785. border-width:0px;
  12786. position:absolute;
  12787. left:2218px;
  12788. top:1025px;
  12789. width:175px;
  12790. height:20px;
  12791. display:flex;
  12792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12793. font-weight:400;
  12794. font-style:normal;
  12795. }
  12796. #u28345 .text {
  12797. position:absolute;
  12798. align-self:center;
  12799. padding:0px 0px 0px 0px;
  12800. box-sizing:border-box;
  12801. width:100%;
  12802. }
  12803. #u28345_text {
  12804. border-width:0px;
  12805. white-space:nowrap;
  12806. text-transform:none;
  12807. }
  12808. #u28346 {
  12809. border-width:0px;
  12810. position:absolute;
  12811. left:0px;
  12812. top:0px;
  12813. width:0px;
  12814. height:0px;
  12815. }
  12816. #u28347_div {
  12817. border-width:0px;
  12818. position:absolute;
  12819. left:0px;
  12820. top:0px;
  12821. width:878px;
  12822. height:44px;
  12823. background:inherit;
  12824. background-color:rgba(255, 255, 255, 0);
  12825. border:none;
  12826. border-top:0px;
  12827. border-right:0px;
  12828. border-bottom:0px;
  12829. border-radius:0px;
  12830. border-top-left-radius:0px;
  12831. border-bottom-left-radius:0px;
  12832. -moz-box-shadow:none;
  12833. -webkit-box-shadow:none;
  12834. box-shadow:none;
  12835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12836. font-weight:400;
  12837. font-style:normal;
  12838. font-size:12px;
  12839. }
  12840. #u28347 {
  12841. border-width:0px;
  12842. position:absolute;
  12843. left:2218px;
  12844. top:1050px;
  12845. width:878px;
  12846. height:44px;
  12847. display:flex;
  12848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12849. font-weight:400;
  12850. font-style:normal;
  12851. font-size:12px;
  12852. }
  12853. #u28347 .text {
  12854. position:absolute;
  12855. align-self:center;
  12856. padding:5px 10px 5px 0px;
  12857. box-sizing:border-box;
  12858. width:100%;
  12859. }
  12860. #u28347_text {
  12861. border-width:0px;
  12862. word-wrap:break-word;
  12863. text-transform:none;
  12864. }
  12865. #u28348_img {
  12866. border-width:0px;
  12867. position:absolute;
  12868. left:0px;
  12869. top:0px;
  12870. width:22px;
  12871. height:22px;
  12872. }
  12873. #u28348 {
  12874. border-width:0px;
  12875. position:absolute;
  12876. left:2191px;
  12877. top:1025px;
  12878. width:22px;
  12879. height:22px;
  12880. display:flex;
  12881. font-family:'Microsoft YaHei', sans-serif;
  12882. font-weight:400;
  12883. font-style:normal;
  12884. font-size:12px;
  12885. color:#FFFFFF;
  12886. }
  12887. #u28348 .text {
  12888. position:absolute;
  12889. align-self:center;
  12890. padding:4px 4px 4px 4px;
  12891. box-sizing:border-box;
  12892. width:100%;
  12893. }
  12894. #u28348_text {
  12895. border-width:0px;
  12896. word-wrap:break-word;
  12897. text-transform:none;
  12898. visibility:hidden;
  12899. }
  12900. #u28349_img {
  12901. border-width:0px;
  12902. position:absolute;
  12903. left:0px;
  12904. top:0px;
  12905. width:57px;
  12906. height:2px;
  12907. }
  12908. #u28349 {
  12909. border-width:0px;
  12910. position:absolute;
  12911. left:2175px;
  12912. top:1073px;
  12913. width:56px;
  12914. height:1px;
  12915. display:flex;
  12916. -webkit-transform:rotate(90deg);
  12917. -moz-transform:rotate(90deg);
  12918. -ms-transform:rotate(90deg);
  12919. transform:rotate(90deg);
  12920. }
  12921. #u28349 .text {
  12922. position:absolute;
  12923. align-self:center;
  12924. padding:2px 2px 2px 2px;
  12925. box-sizing:border-box;
  12926. width:100%;
  12927. }
  12928. #u28349_text {
  12929. border-width:0px;
  12930. word-wrap:break-word;
  12931. text-transform:none;
  12932. visibility:hidden;
  12933. }
  12934. #u28350 {
  12935. border-width:0px;
  12936. position:absolute;
  12937. left:0px;
  12938. top:0px;
  12939. width:0px;
  12940. height:0px;
  12941. }
  12942. #u28351_div {
  12943. border-width:0px;
  12944. position:absolute;
  12945. left:0px;
  12946. top:0px;
  12947. width:175px;
  12948. height:20px;
  12949. background:inherit;
  12950. background-color:rgba(255, 255, 255, 0);
  12951. border:none;
  12952. border-radius:0px;
  12953. -moz-box-shadow:none;
  12954. -webkit-box-shadow:none;
  12955. box-shadow:none;
  12956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12957. font-weight:400;
  12958. font-style:normal;
  12959. }
  12960. #u28351 {
  12961. border-width:0px;
  12962. position:absolute;
  12963. left:2218px;
  12964. top:1112px;
  12965. width:175px;
  12966. height:20px;
  12967. display:flex;
  12968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12969. font-weight:400;
  12970. font-style:normal;
  12971. }
  12972. #u28351 .text {
  12973. position:absolute;
  12974. align-self:center;
  12975. padding:0px 0px 0px 0px;
  12976. box-sizing:border-box;
  12977. width:100%;
  12978. }
  12979. #u28351_text {
  12980. border-width:0px;
  12981. white-space:nowrap;
  12982. text-transform:none;
  12983. }
  12984. #u28352 {
  12985. border-width:0px;
  12986. position:absolute;
  12987. left:0px;
  12988. top:0px;
  12989. width:0px;
  12990. height:0px;
  12991. }
  12992. #u28353_div {
  12993. border-width:0px;
  12994. position:absolute;
  12995. left:0px;
  12996. top:0px;
  12997. width:878px;
  12998. height:27px;
  12999. background:inherit;
  13000. background-color:rgba(255, 255, 255, 0);
  13001. border:none;
  13002. border-top:0px;
  13003. border-right:0px;
  13004. border-bottom:0px;
  13005. border-radius:0px;
  13006. border-top-left-radius:0px;
  13007. border-bottom-left-radius:0px;
  13008. -moz-box-shadow:none;
  13009. -webkit-box-shadow:none;
  13010. box-shadow:none;
  13011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13012. font-weight:400;
  13013. font-style:normal;
  13014. font-size:12px;
  13015. }
  13016. #u28353 {
  13017. border-width:0px;
  13018. position:absolute;
  13019. left:2218px;
  13020. top:1137px;
  13021. width:878px;
  13022. height:27px;
  13023. display:flex;
  13024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13025. font-weight:400;
  13026. font-style:normal;
  13027. font-size:12px;
  13028. }
  13029. #u28353 .text {
  13030. position:absolute;
  13031. align-self:center;
  13032. padding:5px 10px 5px 0px;
  13033. box-sizing:border-box;
  13034. width:100%;
  13035. }
  13036. #u28353_text {
  13037. border-width:0px;
  13038. word-wrap:break-word;
  13039. text-transform:none;
  13040. }
  13041. #u28354_img {
  13042. border-width:0px;
  13043. position:absolute;
  13044. left:0px;
  13045. top:0px;
  13046. width:22px;
  13047. height:22px;
  13048. }
  13049. #u28354 {
  13050. border-width:0px;
  13051. position:absolute;
  13052. left:2191px;
  13053. top:1112px;
  13054. width:22px;
  13055. height:22px;
  13056. display:flex;
  13057. font-family:'Microsoft YaHei', sans-serif;
  13058. font-weight:400;
  13059. font-style:normal;
  13060. font-size:12px;
  13061. color:#FFFFFF;
  13062. }
  13063. #u28354 .text {
  13064. position:absolute;
  13065. align-self:center;
  13066. padding:4px 4px 4px 4px;
  13067. box-sizing:border-box;
  13068. width:100%;
  13069. }
  13070. #u28354_text {
  13071. border-width:0px;
  13072. word-wrap:break-word;
  13073. text-transform:none;
  13074. visibility:hidden;
  13075. }
  13076. #u28355_img {
  13077. border-width:0px;
  13078. position:absolute;
  13079. left:0px;
  13080. top:0px;
  13081. width:39px;
  13082. height:2px;
  13083. }
  13084. #u28355 {
  13085. border-width:0px;
  13086. position:absolute;
  13087. left:2184px;
  13088. top:1151px;
  13089. width:38px;
  13090. height:1px;
  13091. display:flex;
  13092. -webkit-transform:rotate(90deg);
  13093. -moz-transform:rotate(90deg);
  13094. -ms-transform:rotate(90deg);
  13095. transform:rotate(90deg);
  13096. }
  13097. #u28355 .text {
  13098. position:absolute;
  13099. align-self:center;
  13100. padding:2px 2px 2px 2px;
  13101. box-sizing:border-box;
  13102. width:100%;
  13103. }
  13104. #u28355_text {
  13105. border-width:0px;
  13106. word-wrap:break-word;
  13107. text-transform:none;
  13108. visibility:hidden;
  13109. }
  13110. #u28356 {
  13111. border-width:0px;
  13112. position:absolute;
  13113. left:0px;
  13114. top:0px;
  13115. width:0px;
  13116. height:0px;
  13117. }
  13118. #u28357_img {
  13119. border-width:0px;
  13120. position:absolute;
  13121. left:0px;
  13122. top:0px;
  13123. width:120px;
  13124. height:80px;
  13125. }
  13126. #u28357 {
  13127. border-width:0px;
  13128. position:absolute;
  13129. left:2256px;
  13130. top:739px;
  13131. width:120px;
  13132. height:80px;
  13133. display:flex;
  13134. }
  13135. #u28357 .text {
  13136. position:absolute;
  13137. align-self:center;
  13138. padding:2px 2px 2px 2px;
  13139. box-sizing:border-box;
  13140. width:100%;
  13141. }
  13142. #u28357_text {
  13143. border-width:0px;
  13144. word-wrap:break-word;
  13145. text-transform:none;
  13146. }
  13147. #u28358_img {
  13148. border-width:0px;
  13149. position:absolute;
  13150. left:0px;
  13151. top:0px;
  13152. width:120px;
  13153. height:80px;
  13154. }
  13155. #u28358 {
  13156. border-width:0px;
  13157. position:absolute;
  13158. left:2398px;
  13159. top:739px;
  13160. width:120px;
  13161. height:80px;
  13162. display:flex;
  13163. }
  13164. #u28358 .text {
  13165. position:absolute;
  13166. align-self:center;
  13167. padding:2px 2px 2px 2px;
  13168. box-sizing:border-box;
  13169. width:100%;
  13170. }
  13171. #u28358_text {
  13172. border-width:0px;
  13173. word-wrap:break-word;
  13174. text-transform:none;
  13175. }
  13176. #u28359_div {
  13177. border-width:0px;
  13178. position:absolute;
  13179. left:0px;
  13180. top:0px;
  13181. width:320px;
  13182. height:90px;
  13183. background:inherit;
  13184. background-color:rgba(255, 255, 255, 0);
  13185. border:none;
  13186. border-left:0px;
  13187. border-top:0px;
  13188. border-right:0px;
  13189. border-radius:0px;
  13190. border-bottom-right-radius:0px;
  13191. border-bottom-left-radius:0px;
  13192. -moz-box-shadow:none;
  13193. -webkit-box-shadow:none;
  13194. box-shadow:none;
  13195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13196. font-weight:400;
  13197. font-style:normal;
  13198. font-size:14px;
  13199. line-height:30px;
  13200. }
  13201. #u28359 {
  13202. border-width:0px;
  13203. position:absolute;
  13204. left:2182px;
  13205. top:564px;
  13206. width:320px;
  13207. height:90px;
  13208. display:flex;
  13209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13210. font-weight:400;
  13211. font-style:normal;
  13212. font-size:14px;
  13213. line-height:30px;
  13214. }
  13215. #u28359 .text {
  13216. position:absolute;
  13217. align-self:flex-start;
  13218. padding:0px 0px 0px 0px;
  13219. box-sizing:border-box;
  13220. width:100%;
  13221. }
  13222. #u28359_text {
  13223. border-width:0px;
  13224. word-wrap:break-word;
  13225. text-transform:none;
  13226. }
  13227. #u28360_div {
  13228. border-width:0px;
  13229. position:absolute;
  13230. left:0px;
  13231. top:0px;
  13232. width:320px;
  13233. height:60px;
  13234. background:inherit;
  13235. background-color:rgba(255, 255, 255, 0);
  13236. border:none;
  13237. border-left:0px;
  13238. border-top:0px;
  13239. border-right:0px;
  13240. border-radius:0px;
  13241. border-bottom-right-radius:0px;
  13242. border-bottom-left-radius:0px;
  13243. -moz-box-shadow:none;
  13244. -webkit-box-shadow:none;
  13245. box-shadow:none;
  13246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13247. font-weight:400;
  13248. font-style:normal;
  13249. font-size:14px;
  13250. line-height:30px;
  13251. }
  13252. #u28360 {
  13253. border-width:0px;
  13254. position:absolute;
  13255. left:2502px;
  13256. top:564px;
  13257. width:320px;
  13258. height:60px;
  13259. display:flex;
  13260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13261. font-weight:400;
  13262. font-style:normal;
  13263. font-size:14px;
  13264. line-height:30px;
  13265. }
  13266. #u28360 .text {
  13267. position:absolute;
  13268. align-self:flex-start;
  13269. padding:0px 0px 0px 0px;
  13270. box-sizing:border-box;
  13271. width:100%;
  13272. }
  13273. #u28360_text {
  13274. border-width:0px;
  13275. word-wrap:break-word;
  13276. text-transform:none;
  13277. }
  13278. #u28361_div {
  13279. border-width:0px;
  13280. position:absolute;
  13281. left:0px;
  13282. top:0px;
  13283. width:320px;
  13284. height:60px;
  13285. background:inherit;
  13286. background-color:rgba(255, 255, 255, 0);
  13287. border:none;
  13288. border-left:0px;
  13289. border-top:0px;
  13290. border-right:0px;
  13291. border-radius:0px;
  13292. border-bottom-right-radius:0px;
  13293. border-bottom-left-radius:0px;
  13294. -moz-box-shadow:none;
  13295. -webkit-box-shadow:none;
  13296. box-shadow:none;
  13297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13298. font-weight:400;
  13299. font-style:normal;
  13300. font-size:14px;
  13301. line-height:30px;
  13302. }
  13303. #u28361 {
  13304. border-width:0px;
  13305. position:absolute;
  13306. left:2822px;
  13307. top:564px;
  13308. width:320px;
  13309. height:60px;
  13310. display:flex;
  13311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13312. font-weight:400;
  13313. font-style:normal;
  13314. font-size:14px;
  13315. line-height:30px;
  13316. }
  13317. #u28361 .text {
  13318. position:absolute;
  13319. align-self:flex-start;
  13320. padding:0px 0px 0px 0px;
  13321. box-sizing:border-box;
  13322. width:100%;
  13323. }
  13324. #u28361_text {
  13325. border-width:0px;
  13326. word-wrap:break-word;
  13327. text-transform:none;
  13328. }
  13329. #u28362_div {
  13330. border-width:0px;
  13331. position:absolute;
  13332. left:0px;
  13333. top:0px;
  13334. width:83px;
  13335. height:35px;
  13336. background:inherit;
  13337. background-color:rgba(255, 255, 255, 0);
  13338. border:none;
  13339. border-top:0px;
  13340. border-right:0px;
  13341. border-bottom:0px;
  13342. border-radius:0px;
  13343. border-top-left-radius:0px;
  13344. border-bottom-left-radius:0px;
  13345. -moz-box-shadow:none;
  13346. -webkit-box-shadow:none;
  13347. box-shadow:none;
  13348. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13349. font-weight:500;
  13350. font-style:normal;
  13351. font-size:18px;
  13352. }
  13353. #u28362 {
  13354. border-width:0px;
  13355. position:absolute;
  13356. left:2182px;
  13357. top:520px;
  13358. width:83px;
  13359. height:35px;
  13360. display:flex;
  13361. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13362. font-weight:500;
  13363. font-style:normal;
  13364. font-size:18px;
  13365. }
  13366. #u28362 .text {
  13367. position:absolute;
  13368. align-self:center;
  13369. padding:5px 10px 5px 0px;
  13370. box-sizing:border-box;
  13371. width:100%;
  13372. }
  13373. #u28362_text {
  13374. border-width:0px;
  13375. white-space:nowrap;
  13376. text-transform:none;
  13377. }
  13378. #u28363_div {
  13379. border-width:0px;
  13380. position:absolute;
  13381. left:0px;
  13382. top:0px;
  13383. width:323px;
  13384. height:90px;
  13385. background:inherit;
  13386. background-color:rgba(255, 255, 255, 0);
  13387. border:none;
  13388. border-left:0px;
  13389. border-top:0px;
  13390. border-right:0px;
  13391. border-radius:0px;
  13392. border-bottom-right-radius:0px;
  13393. border-bottom-left-radius:0px;
  13394. -moz-box-shadow:none;
  13395. -webkit-box-shadow:none;
  13396. box-shadow:none;
  13397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13398. font-weight:400;
  13399. font-style:normal;
  13400. font-size:14px;
  13401. line-height:30px;
  13402. }
  13403. #u28363 {
  13404. border-width:0px;
  13405. position:absolute;
  13406. left:2182px;
  13407. top:674px;
  13408. width:323px;
  13409. height:90px;
  13410. display:flex;
  13411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13412. font-weight:400;
  13413. font-style:normal;
  13414. font-size:14px;
  13415. line-height:30px;
  13416. }
  13417. #u28363 .text {
  13418. position:absolute;
  13419. align-self:flex-start;
  13420. padding:0px 0px 0px 0px;
  13421. box-sizing:border-box;
  13422. width:100%;
  13423. }
  13424. #u28363_text {
  13425. border-width:0px;
  13426. white-space:nowrap;
  13427. text-transform:none;
  13428. }
  13429. #u28364_div {
  13430. border-width:0px;
  13431. position:absolute;
  13432. left:0px;
  13433. top:0px;
  13434. width:320px;
  13435. height:30px;
  13436. background:inherit;
  13437. background-color:rgba(255, 255, 255, 0);
  13438. border:none;
  13439. border-left:0px;
  13440. border-top:0px;
  13441. border-right:0px;
  13442. border-radius:0px;
  13443. border-bottom-right-radius:0px;
  13444. border-bottom-left-radius:0px;
  13445. -moz-box-shadow:none;
  13446. -webkit-box-shadow:none;
  13447. box-shadow:none;
  13448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13449. font-weight:400;
  13450. font-style:normal;
  13451. font-size:14px;
  13452. line-height:30px;
  13453. }
  13454. #u28364 {
  13455. border-width:0px;
  13456. position:absolute;
  13457. left:2502px;
  13458. top:674px;
  13459. width:320px;
  13460. height:30px;
  13461. display:flex;
  13462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13463. font-weight:400;
  13464. font-style:normal;
  13465. font-size:14px;
  13466. line-height:30px;
  13467. }
  13468. #u28364 .text {
  13469. position:absolute;
  13470. align-self:flex-start;
  13471. padding:0px 0px 0px 0px;
  13472. box-sizing:border-box;
  13473. width:100%;
  13474. }
  13475. #u28364_text {
  13476. border-width:0px;
  13477. word-wrap:break-word;
  13478. text-transform:none;
  13479. }
  13480. #u28365_div {
  13481. border-width:0px;
  13482. position:absolute;
  13483. left:0px;
  13484. top:0px;
  13485. width:320px;
  13486. height:30px;
  13487. background:inherit;
  13488. background-color:rgba(255, 255, 255, 0);
  13489. border:none;
  13490. border-left:0px;
  13491. border-top:0px;
  13492. border-right:0px;
  13493. border-radius:0px;
  13494. border-bottom-right-radius:0px;
  13495. border-bottom-left-radius:0px;
  13496. -moz-box-shadow:none;
  13497. -webkit-box-shadow:none;
  13498. box-shadow:none;
  13499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13500. font-weight:400;
  13501. font-style:normal;
  13502. font-size:14px;
  13503. line-height:30px;
  13504. }
  13505. #u28365 {
  13506. border-width:0px;
  13507. position:absolute;
  13508. left:2822px;
  13509. top:674px;
  13510. width:320px;
  13511. height:30px;
  13512. display:flex;
  13513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13514. font-weight:400;
  13515. font-style:normal;
  13516. font-size:14px;
  13517. line-height:30px;
  13518. }
  13519. #u28365 .text {
  13520. position:absolute;
  13521. align-self:flex-start;
  13522. padding:0px 0px 0px 0px;
  13523. box-sizing:border-box;
  13524. width:100%;
  13525. }
  13526. #u28365_text {
  13527. border-width:0px;
  13528. word-wrap:break-word;
  13529. text-transform:none;
  13530. }