styles.css 126 KB

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