styles.css 179 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3505px;
  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. #u22909_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u22909 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u22909 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u22909_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u22910_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u22910 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u22910 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u22910_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u22911 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u22912_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u22912 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u22912 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u22912_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u22913_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u22913 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u22913 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u22913_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u22914_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u22914 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u22914 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u22914_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u22915_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u22915 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u22915 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u22915_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u22916 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u22917_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. #u22917 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u22917 .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. #u22917_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u22918_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u22918 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u22918 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u22918_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u22919 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u22920_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. #u22920 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u22920 .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. #u22920_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u22921_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u22921 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u22921 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u22921_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u22922 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u22923_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u22923 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u22923 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u22923_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u22924_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u22924 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u22924 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u22924_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u22925 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u22926_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u22926 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u22926 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u22926_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u22927_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u22927 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u22927 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u22927_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u22928 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u22929_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u22929 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u22929 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u22929_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u22930_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u22930 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u22930 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u22930_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u22931 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u22932_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u22932 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u22932 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u22932_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u22933_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u22933 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u22933 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u22933_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u22934 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u22935_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u22935 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u22935 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u22935_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u22936_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u22936 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u22936 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u22936_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u22937 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u22938_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u22938 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u22938 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u22938_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u22939_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u22939 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u22939 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u22939_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u22940 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u22941_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u22941 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u22941 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u22941_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u22942_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u22942 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u22942 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u22942_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u22943 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u22944_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u22944 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u22944 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u22944_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u22945_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u22945 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u22945 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u22945_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u22946_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u22946_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u22946_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u22946 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u22946 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u22946_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u22946.disabled {
  1184. }
  1185. .u22946_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u22947_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u22947 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u22947 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u22947_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u22948_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u22948 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u22948 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u22948_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u22949_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u22949 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u22949 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u22949_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u22950 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u22951_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u22951 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u22951 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u22951_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u22952_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u22952 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u22952 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u22952_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u22953 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u22954_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u22954 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u22954 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u22954_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u22955_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u22955 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u22955 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u22955_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u22956 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u22957_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u22957 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u22957 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u22957_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u22958_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u22958 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u22958 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u22958_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u22959 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u22960_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u22960 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u22960 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u22960_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u22961_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u22961 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u22961 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u22961_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u22962 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u22963_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u22963 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u22963 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u22963_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u22964_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u22964 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u22964 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u22964_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u22965_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:1257px;
  1720. height:1192px;
  1721. background:inherit;
  1722. background-color:rgba(255, 255, 255, 1);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:none;
  1726. -webkit-box-shadow:none;
  1727. box-shadow:none;
  1728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1729. font-weight:400;
  1730. font-style:normal;
  1731. font-size:12px;
  1732. color:#FFFFFF;
  1733. text-align:left;
  1734. }
  1735. #u22965 {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:332px;
  1739. top:50px;
  1740. width:1257px;
  1741. height:1192px;
  1742. display:flex;
  1743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:12px;
  1747. color:#FFFFFF;
  1748. text-align:left;
  1749. }
  1750. #u22965 .text {
  1751. position:absolute;
  1752. align-self:center;
  1753. padding:2px 2px 2px 50px;
  1754. box-sizing:border-box;
  1755. width:100%;
  1756. }
  1757. #u22965_text {
  1758. border-width:0px;
  1759. word-wrap:break-word;
  1760. text-transform:none;
  1761. visibility:hidden;
  1762. }
  1763. #u22966 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:352px;
  1767. top:194px;
  1768. width:1217px;
  1769. height:428px;
  1770. }
  1771. #u22967_img {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:55px;
  1777. height:35px;
  1778. }
  1779. #u22967 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:55px;
  1785. height:35px;
  1786. display:flex;
  1787. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:12px;
  1791. color:#FFFFFF;
  1792. }
  1793. #u22967 .text {
  1794. position:absolute;
  1795. align-self:center;
  1796. padding:2px 2px 2px 0px;
  1797. box-sizing:border-box;
  1798. width:100%;
  1799. }
  1800. #u22967_text {
  1801. border-width:0px;
  1802. word-wrap:break-word;
  1803. text-transform:none;
  1804. }
  1805. #u22968_img {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:145px;
  1811. height:35px;
  1812. }
  1813. #u22968 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:55px;
  1817. top:0px;
  1818. width:145px;
  1819. height:35px;
  1820. display:flex;
  1821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:12px;
  1825. color:#FFFFFF;
  1826. }
  1827. #u22968 .text {
  1828. position:absolute;
  1829. align-self:center;
  1830. padding:2px 2px 2px 0px;
  1831. box-sizing:border-box;
  1832. width:100%;
  1833. }
  1834. #u22968_text {
  1835. border-width:0px;
  1836. word-wrap:break-word;
  1837. text-transform:none;
  1838. }
  1839. #u22969_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:141px;
  1845. height:35px;
  1846. }
  1847. #u22969 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:200px;
  1851. top:0px;
  1852. width:141px;
  1853. height:35px;
  1854. display:flex;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:12px;
  1859. color:#FFFFFF;
  1860. }
  1861. #u22969 .text {
  1862. position:absolute;
  1863. align-self:center;
  1864. padding:2px 2px 2px 0px;
  1865. box-sizing:border-box;
  1866. width:100%;
  1867. }
  1868. #u22969_text {
  1869. border-width:0px;
  1870. word-wrap:break-word;
  1871. text-transform:none;
  1872. }
  1873. #u22970_img {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:0px;
  1877. top:0px;
  1878. width:141px;
  1879. height:35px;
  1880. }
  1881. #u22970 {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:341px;
  1885. top:0px;
  1886. width:141px;
  1887. height:35px;
  1888. display:flex;
  1889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1890. font-weight:400;
  1891. font-style:normal;
  1892. font-size:12px;
  1893. color:#FFFFFF;
  1894. }
  1895. #u22970 .text {
  1896. position:absolute;
  1897. align-self:center;
  1898. padding:2px 2px 2px 0px;
  1899. box-sizing:border-box;
  1900. width:100%;
  1901. }
  1902. #u22970_text {
  1903. border-width:0px;
  1904. word-wrap:break-word;
  1905. text-transform:none;
  1906. }
  1907. #u22971_img {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:141px;
  1913. height:35px;
  1914. }
  1915. #u22971 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:482px;
  1919. top:0px;
  1920. width:141px;
  1921. height:35px;
  1922. display:flex;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:12px;
  1927. color:#FFFFFF;
  1928. }
  1929. #u22971 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:2px 2px 2px 0px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u22971_text {
  1937. border-width:0px;
  1938. word-wrap:break-word;
  1939. text-transform:none;
  1940. }
  1941. #u22972_img {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:155px;
  1947. height:35px;
  1948. }
  1949. #u22972 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:623px;
  1953. top:0px;
  1954. width:155px;
  1955. height:35px;
  1956. display:flex;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:12px;
  1961. color:#FFFFFF;
  1962. }
  1963. #u22972 .text {
  1964. position:absolute;
  1965. align-self:center;
  1966. padding:2px 2px 2px 0px;
  1967. box-sizing:border-box;
  1968. width:100%;
  1969. }
  1970. #u22972_text {
  1971. border-width:0px;
  1972. word-wrap:break-word;
  1973. text-transform:none;
  1974. }
  1975. #u22973_img {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:174px;
  1981. height:35px;
  1982. }
  1983. #u22973 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:778px;
  1987. top:0px;
  1988. width:174px;
  1989. height:35px;
  1990. display:flex;
  1991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1992. font-weight:400;
  1993. font-style:normal;
  1994. font-size:12px;
  1995. color:#FFFFFF;
  1996. }
  1997. #u22973 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 2px 2px 0px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u22973_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. }
  2009. #u22974_img {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:145px;
  2015. height:35px;
  2016. }
  2017. #u22974 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:952px;
  2021. top:0px;
  2022. width:145px;
  2023. height:35px;
  2024. display:flex;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:12px;
  2029. color:#FFFFFF;
  2030. }
  2031. #u22974 .text {
  2032. position:absolute;
  2033. align-self:center;
  2034. padding:2px 2px 2px 0px;
  2035. box-sizing:border-box;
  2036. width:100%;
  2037. }
  2038. #u22974_text {
  2039. border-width:0px;
  2040. word-wrap:break-word;
  2041. text-transform:none;
  2042. }
  2043. #u22975_img {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:120px;
  2049. height:35px;
  2050. }
  2051. #u22975 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:1097px;
  2055. top:0px;
  2056. width:120px;
  2057. height:35px;
  2058. display:flex;
  2059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2060. font-weight:400;
  2061. font-style:normal;
  2062. font-size:12px;
  2063. color:#FFFFFF;
  2064. }
  2065. #u22975 .text {
  2066. position:absolute;
  2067. align-self:center;
  2068. padding:2px 2px 2px 0px;
  2069. box-sizing:border-box;
  2070. width:100%;
  2071. }
  2072. #u22975_text {
  2073. border-width:0px;
  2074. word-wrap:break-word;
  2075. text-transform:none;
  2076. }
  2077. #u22976_img {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:55px;
  2083. height:39px;
  2084. }
  2085. #u22976 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:35px;
  2090. width:55px;
  2091. height:39px;
  2092. display:flex;
  2093. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2094. font-weight:400;
  2095. font-style:normal;
  2096. font-size:12px;
  2097. }
  2098. #u22976 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 0px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u22976_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. }
  2110. #u22977_img {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:145px;
  2116. height:39px;
  2117. }
  2118. #u22977 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:55px;
  2122. top:35px;
  2123. width:145px;
  2124. height:39px;
  2125. display:flex;
  2126. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:12px;
  2130. }
  2131. #u22977 .text {
  2132. position:absolute;
  2133. align-self:center;
  2134. padding:2px 2px 2px 0px;
  2135. box-sizing:border-box;
  2136. width:100%;
  2137. }
  2138. #u22977_text {
  2139. border-width:0px;
  2140. word-wrap:break-word;
  2141. text-transform:none;
  2142. }
  2143. #u22978_img {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:141px;
  2149. height:39px;
  2150. }
  2151. #u22978 {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:200px;
  2155. top:35px;
  2156. width:141px;
  2157. height:39px;
  2158. display:flex;
  2159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. font-size:12px;
  2163. }
  2164. #u22978 .text {
  2165. position:absolute;
  2166. align-self:center;
  2167. padding:2px 2px 2px 0px;
  2168. box-sizing:border-box;
  2169. width:100%;
  2170. }
  2171. #u22978_text {
  2172. border-width:0px;
  2173. word-wrap:break-word;
  2174. text-transform:none;
  2175. }
  2176. #u22979_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:141px;
  2182. height:39px;
  2183. }
  2184. #u22979 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:341px;
  2188. top:35px;
  2189. width:141px;
  2190. height:39px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:12px;
  2196. }
  2197. #u22979 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:2px 2px 2px 0px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u22979_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. }
  2209. #u22980_img {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:141px;
  2215. height:39px;
  2216. }
  2217. #u22980 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:482px;
  2221. top:35px;
  2222. width:141px;
  2223. height:39px;
  2224. display:flex;
  2225. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:12px;
  2229. }
  2230. #u22980 .text {
  2231. position:absolute;
  2232. align-self:center;
  2233. padding:2px 2px 2px 0px;
  2234. box-sizing:border-box;
  2235. width:100%;
  2236. }
  2237. #u22980_text {
  2238. border-width:0px;
  2239. word-wrap:break-word;
  2240. text-transform:none;
  2241. visibility:hidden;
  2242. }
  2243. #u22981_img {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:155px;
  2249. height:39px;
  2250. }
  2251. #u22981 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:623px;
  2255. top:35px;
  2256. width:155px;
  2257. height:39px;
  2258. display:flex;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:12px;
  2263. }
  2264. #u22981 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 0px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u22981_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. }
  2276. #u22982_img {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:174px;
  2282. height:39px;
  2283. }
  2284. #u22982 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:778px;
  2288. top:35px;
  2289. width:174px;
  2290. height:39px;
  2291. display:flex;
  2292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2293. font-weight:400;
  2294. font-style:normal;
  2295. font-size:12px;
  2296. }
  2297. #u22982 .text {
  2298. position:absolute;
  2299. align-self:center;
  2300. padding:2px 2px 2px 0px;
  2301. box-sizing:border-box;
  2302. width:100%;
  2303. }
  2304. #u22982_text {
  2305. border-width:0px;
  2306. word-wrap:break-word;
  2307. text-transform:none;
  2308. visibility:hidden;
  2309. }
  2310. #u22983_img {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:0px;
  2314. top:0px;
  2315. width:145px;
  2316. height:39px;
  2317. }
  2318. #u22983 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:952px;
  2322. top:35px;
  2323. width:145px;
  2324. height:39px;
  2325. display:flex;
  2326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2327. font-weight:400;
  2328. font-style:normal;
  2329. font-size:12px;
  2330. }
  2331. #u22983 .text {
  2332. position:absolute;
  2333. align-self:center;
  2334. padding:2px 2px 2px 0px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u22983_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. visibility:hidden;
  2343. }
  2344. #u22984_img {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:120px;
  2350. height:39px;
  2351. }
  2352. #u22984 {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:1097px;
  2356. top:35px;
  2357. width:120px;
  2358. height:39px;
  2359. display:flex;
  2360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. font-size:12px;
  2364. color:#298FFF;
  2365. }
  2366. #u22984 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 0px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u22984_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. }
  2378. #u22985_img {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:55px;
  2384. height:38px;
  2385. }
  2386. #u22985 {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:74px;
  2391. width:55px;
  2392. height:38px;
  2393. display:flex;
  2394. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:12px;
  2398. color:#606266;
  2399. }
  2400. #u22985 .text {
  2401. position:absolute;
  2402. align-self:center;
  2403. padding:2px 2px 2px 0px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u22985_text {
  2408. border-width:0px;
  2409. word-wrap:break-word;
  2410. text-transform:none;
  2411. }
  2412. #u22986_img {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:0px;
  2416. top:0px;
  2417. width:145px;
  2418. height:38px;
  2419. }
  2420. #u22986 {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:55px;
  2424. top:74px;
  2425. width:145px;
  2426. height:38px;
  2427. display:flex;
  2428. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2429. font-weight:400;
  2430. font-style:normal;
  2431. font-size:12px;
  2432. color:#606266;
  2433. }
  2434. #u22986 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 2px 2px 0px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u22986_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u22987_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:141px;
  2453. height:38px;
  2454. }
  2455. #u22987 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:200px;
  2459. top:74px;
  2460. width:141px;
  2461. height:38px;
  2462. display:flex;
  2463. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:12px;
  2467. color:#606266;
  2468. }
  2469. #u22987 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:2px 2px 2px 0px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u22987_text {
  2477. border-width:0px;
  2478. word-wrap:break-word;
  2479. text-transform:none;
  2480. visibility:hidden;
  2481. }
  2482. #u22988_img {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:141px;
  2488. height:38px;
  2489. }
  2490. #u22988 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:341px;
  2494. top:74px;
  2495. width:141px;
  2496. height:38px;
  2497. display:flex;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:12px;
  2502. color:#606266;
  2503. }
  2504. #u22988 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 0px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u22988_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. }
  2516. #u22989_img {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:141px;
  2522. height:38px;
  2523. }
  2524. #u22989 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:482px;
  2528. top:74px;
  2529. width:141px;
  2530. height:38px;
  2531. display:flex;
  2532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2533. font-weight:400;
  2534. font-style:normal;
  2535. font-size:12px;
  2536. color:#606266;
  2537. }
  2538. #u22989 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 0px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u22989_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. visibility:hidden;
  2550. }
  2551. #u22990_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:155px;
  2557. height:38px;
  2558. }
  2559. #u22990 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:623px;
  2563. top:74px;
  2564. width:155px;
  2565. height:38px;
  2566. display:flex;
  2567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2568. font-weight:400;
  2569. font-style:normal;
  2570. font-size:12px;
  2571. color:#606266;
  2572. }
  2573. #u22990 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 0px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u22990_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. visibility:hidden;
  2585. }
  2586. #u22991_img {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:174px;
  2592. height:38px;
  2593. }
  2594. #u22991 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:778px;
  2598. top:74px;
  2599. width:174px;
  2600. height:38px;
  2601. display:flex;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:12px;
  2606. }
  2607. #u22991 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:2px 2px 2px 0px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u22991_text {
  2615. border-width:0px;
  2616. word-wrap:break-word;
  2617. text-transform:none;
  2618. visibility:hidden;
  2619. }
  2620. #u22992_img {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:145px;
  2626. height:38px;
  2627. }
  2628. #u22992 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:952px;
  2632. top:74px;
  2633. width:145px;
  2634. height:38px;
  2635. display:flex;
  2636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2637. font-weight:400;
  2638. font-style:normal;
  2639. font-size:12px;
  2640. }
  2641. #u22992 .text {
  2642. position:absolute;
  2643. align-self:center;
  2644. padding:2px 2px 2px 0px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u22992_text {
  2649. border-width:0px;
  2650. word-wrap:break-word;
  2651. text-transform:none;
  2652. visibility:hidden;
  2653. }
  2654. #u22993_img {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:120px;
  2660. height:38px;
  2661. }
  2662. #u22993 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:1097px;
  2666. top:74px;
  2667. width:120px;
  2668. height:38px;
  2669. display:flex;
  2670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2671. font-weight:400;
  2672. font-style:normal;
  2673. font-size:12px;
  2674. color:#1890FF;
  2675. }
  2676. #u22993 .text {
  2677. position:absolute;
  2678. align-self:center;
  2679. padding:2px 2px 2px 0px;
  2680. box-sizing:border-box;
  2681. width:100%;
  2682. }
  2683. #u22993_text {
  2684. border-width:0px;
  2685. word-wrap:break-word;
  2686. text-transform:none;
  2687. visibility:hidden;
  2688. }
  2689. #u22994_img {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:55px;
  2695. height:38px;
  2696. }
  2697. #u22994 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:112px;
  2702. width:55px;
  2703. height:38px;
  2704. display:flex;
  2705. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2706. font-weight:400;
  2707. font-style:normal;
  2708. font-size:12px;
  2709. color:#606266;
  2710. }
  2711. #u22994 .text {
  2712. position:absolute;
  2713. align-self:center;
  2714. padding:2px 2px 2px 0px;
  2715. box-sizing:border-box;
  2716. width:100%;
  2717. }
  2718. #u22994_text {
  2719. border-width:0px;
  2720. word-wrap:break-word;
  2721. text-transform:none;
  2722. }
  2723. #u22995_img {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:145px;
  2729. height:38px;
  2730. }
  2731. #u22995 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:55px;
  2735. top:112px;
  2736. width:145px;
  2737. height:38px;
  2738. display:flex;
  2739. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2740. font-weight:400;
  2741. font-style:normal;
  2742. font-size:12px;
  2743. color:#606266;
  2744. }
  2745. #u22995 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 0px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u22995_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u22996_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:141px;
  2764. height:38px;
  2765. }
  2766. #u22996 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:200px;
  2770. top:112px;
  2771. width:141px;
  2772. height:38px;
  2773. display:flex;
  2774. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2775. font-weight:400;
  2776. font-style:normal;
  2777. font-size:12px;
  2778. color:#606266;
  2779. }
  2780. #u22996 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:2px 2px 2px 0px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u22996_text {
  2788. border-width:0px;
  2789. word-wrap:break-word;
  2790. text-transform:none;
  2791. visibility:hidden;
  2792. }
  2793. #u22997_img {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:141px;
  2799. height:38px;
  2800. }
  2801. #u22997 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:341px;
  2805. top:112px;
  2806. width:141px;
  2807. height:38px;
  2808. display:flex;
  2809. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. font-size:12px;
  2813. color:#606266;
  2814. }
  2815. #u22997 .text {
  2816. position:absolute;
  2817. align-self:center;
  2818. padding:2px 2px 2px 0px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u22997_text {
  2823. border-width:0px;
  2824. word-wrap:break-word;
  2825. text-transform:none;
  2826. visibility:hidden;
  2827. }
  2828. #u22998_img {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:141px;
  2834. height:38px;
  2835. }
  2836. #u22998 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:482px;
  2840. top:112px;
  2841. width:141px;
  2842. height:38px;
  2843. display:flex;
  2844. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2845. font-weight:400;
  2846. font-style:normal;
  2847. font-size:12px;
  2848. color:#606266;
  2849. }
  2850. #u22998 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 0px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u22998_text {
  2858. border-width:0px;
  2859. word-wrap:break-word;
  2860. text-transform:none;
  2861. visibility:hidden;
  2862. }
  2863. #u22999_img {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:155px;
  2869. height:38px;
  2870. }
  2871. #u22999 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:623px;
  2875. top:112px;
  2876. width:155px;
  2877. height:38px;
  2878. display:flex;
  2879. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:12px;
  2883. color:#606266;
  2884. }
  2885. #u22999 .text {
  2886. position:absolute;
  2887. align-self:center;
  2888. padding:2px 2px 2px 0px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u22999_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. visibility:hidden;
  2897. }
  2898. #u23000_img {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:174px;
  2904. height:38px;
  2905. }
  2906. #u23000 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:778px;
  2910. top:112px;
  2911. width:174px;
  2912. height:38px;
  2913. display:flex;
  2914. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2915. font-weight:400;
  2916. font-style:normal;
  2917. font-size:12px;
  2918. color:#606266;
  2919. }
  2920. #u23000 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:2px 2px 2px 0px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u23000_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u23001_img {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:145px;
  2939. height:38px;
  2940. }
  2941. #u23001 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:952px;
  2945. top:112px;
  2946. width:145px;
  2947. height:38px;
  2948. display:flex;
  2949. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:12px;
  2953. color:#606266;
  2954. }
  2955. #u23001 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 0px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u23001_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u23002_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:120px;
  2974. height:38px;
  2975. }
  2976. #u23002 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:1097px;
  2980. top:112px;
  2981. width:120px;
  2982. height:38px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:12px;
  2988. color:#1890FF;
  2989. }
  2990. #u23002 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 0px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u23002_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. visibility:hidden;
  3002. }
  3003. #u23003_img {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:55px;
  3009. height:36px;
  3010. }
  3011. #u23003 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:0px;
  3015. top:150px;
  3016. width:55px;
  3017. height:36px;
  3018. display:flex;
  3019. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3020. font-weight:400;
  3021. font-style:normal;
  3022. font-size:12px;
  3023. color:#606266;
  3024. }
  3025. #u23003 .text {
  3026. position:absolute;
  3027. align-self:center;
  3028. padding:2px 2px 2px 0px;
  3029. box-sizing:border-box;
  3030. width:100%;
  3031. }
  3032. #u23003_text {
  3033. border-width:0px;
  3034. word-wrap:break-word;
  3035. text-transform:none;
  3036. }
  3037. #u23004_img {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:145px;
  3043. height:36px;
  3044. }
  3045. #u23004 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:55px;
  3049. top:150px;
  3050. width:145px;
  3051. height:36px;
  3052. display:flex;
  3053. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3054. font-weight:400;
  3055. font-style:normal;
  3056. font-size:12px;
  3057. color:#606266;
  3058. }
  3059. #u23004 .text {
  3060. position:absolute;
  3061. align-self:center;
  3062. padding:2px 2px 2px 0px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u23004_text {
  3067. border-width:0px;
  3068. word-wrap:break-word;
  3069. text-transform:none;
  3070. visibility:hidden;
  3071. }
  3072. #u23005_img {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:141px;
  3078. height:36px;
  3079. }
  3080. #u23005 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:200px;
  3084. top:150px;
  3085. width:141px;
  3086. height:36px;
  3087. display:flex;
  3088. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3089. font-weight:400;
  3090. font-style:normal;
  3091. font-size:12px;
  3092. color:#606266;
  3093. }
  3094. #u23005 .text {
  3095. position:absolute;
  3096. align-self:center;
  3097. padding:2px 2px 2px 0px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u23005_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. visibility:hidden;
  3106. }
  3107. #u23006_img {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:141px;
  3113. height:36px;
  3114. }
  3115. #u23006 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:341px;
  3119. top:150px;
  3120. width:141px;
  3121. height:36px;
  3122. display:flex;
  3123. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:12px;
  3127. color:#606266;
  3128. }
  3129. #u23006 .text {
  3130. position:absolute;
  3131. align-self:center;
  3132. padding:2px 2px 2px 0px;
  3133. box-sizing:border-box;
  3134. width:100%;
  3135. }
  3136. #u23006_text {
  3137. border-width:0px;
  3138. word-wrap:break-word;
  3139. text-transform:none;
  3140. visibility:hidden;
  3141. }
  3142. #u23007_img {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:141px;
  3148. height:36px;
  3149. }
  3150. #u23007 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:482px;
  3154. top:150px;
  3155. width:141px;
  3156. height:36px;
  3157. display:flex;
  3158. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3159. font-weight:400;
  3160. font-style:normal;
  3161. font-size:12px;
  3162. color:#606266;
  3163. }
  3164. #u23007 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:2px 2px 2px 0px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u23007_text {
  3172. border-width:0px;
  3173. word-wrap:break-word;
  3174. text-transform:none;
  3175. visibility:hidden;
  3176. }
  3177. #u23008_img {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:0px;
  3181. top:0px;
  3182. width:155px;
  3183. height:36px;
  3184. }
  3185. #u23008 {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:623px;
  3189. top:150px;
  3190. width:155px;
  3191. height:36px;
  3192. display:flex;
  3193. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3194. font-weight:400;
  3195. font-style:normal;
  3196. font-size:12px;
  3197. color:#606266;
  3198. }
  3199. #u23008 .text {
  3200. position:absolute;
  3201. align-self:center;
  3202. padding:2px 2px 2px 0px;
  3203. box-sizing:border-box;
  3204. width:100%;
  3205. }
  3206. #u23008_text {
  3207. border-width:0px;
  3208. word-wrap:break-word;
  3209. text-transform:none;
  3210. visibility:hidden;
  3211. }
  3212. #u23009_img {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:174px;
  3218. height:36px;
  3219. }
  3220. #u23009 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:778px;
  3224. top:150px;
  3225. width:174px;
  3226. height:36px;
  3227. display:flex;
  3228. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3229. font-weight:400;
  3230. font-style:normal;
  3231. font-size:12px;
  3232. color:#606266;
  3233. }
  3234. #u23009 .text {
  3235. position:absolute;
  3236. align-self:center;
  3237. padding:2px 2px 2px 0px;
  3238. box-sizing:border-box;
  3239. width:100%;
  3240. }
  3241. #u23009_text {
  3242. border-width:0px;
  3243. word-wrap:break-word;
  3244. text-transform:none;
  3245. visibility:hidden;
  3246. }
  3247. #u23010_img {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:0px;
  3251. top:0px;
  3252. width:145px;
  3253. height:36px;
  3254. }
  3255. #u23010 {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:952px;
  3259. top:150px;
  3260. width:145px;
  3261. height:36px;
  3262. display:flex;
  3263. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3264. font-weight:400;
  3265. font-style:normal;
  3266. font-size:12px;
  3267. color:#606266;
  3268. }
  3269. #u23010 .text {
  3270. position:absolute;
  3271. align-self:center;
  3272. padding:2px 2px 2px 0px;
  3273. box-sizing:border-box;
  3274. width:100%;
  3275. }
  3276. #u23010_text {
  3277. border-width:0px;
  3278. word-wrap:break-word;
  3279. text-transform:none;
  3280. visibility:hidden;
  3281. }
  3282. #u23011_img {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:0px;
  3286. top:0px;
  3287. width:120px;
  3288. height:36px;
  3289. }
  3290. #u23011 {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:1097px;
  3294. top:150px;
  3295. width:120px;
  3296. height:36px;
  3297. display:flex;
  3298. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3299. font-weight:400;
  3300. font-style:normal;
  3301. font-size:12px;
  3302. color:#606266;
  3303. }
  3304. #u23011 .text {
  3305. position:absolute;
  3306. align-self:center;
  3307. padding:2px 2px 2px 0px;
  3308. box-sizing:border-box;
  3309. width:100%;
  3310. }
  3311. #u23011_text {
  3312. border-width:0px;
  3313. word-wrap:break-word;
  3314. text-transform:none;
  3315. visibility:hidden;
  3316. }
  3317. #u23012_img {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:0px;
  3321. top:0px;
  3322. width:55px;
  3323. height:35px;
  3324. }
  3325. #u23012 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:186px;
  3330. width:55px;
  3331. height:35px;
  3332. display:flex;
  3333. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3334. font-weight:400;
  3335. font-style:normal;
  3336. font-size:12px;
  3337. color:#606266;
  3338. }
  3339. #u23012 .text {
  3340. position:absolute;
  3341. align-self:center;
  3342. padding:2px 2px 2px 0px;
  3343. box-sizing:border-box;
  3344. width:100%;
  3345. }
  3346. #u23012_text {
  3347. border-width:0px;
  3348. word-wrap:break-word;
  3349. text-transform:none;
  3350. visibility:hidden;
  3351. }
  3352. #u23013_img {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:145px;
  3358. height:35px;
  3359. }
  3360. #u23013 {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:55px;
  3364. top:186px;
  3365. width:145px;
  3366. height:35px;
  3367. display:flex;
  3368. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:12px;
  3372. color:#606266;
  3373. }
  3374. #u23013 .text {
  3375. position:absolute;
  3376. align-self:center;
  3377. padding:2px 2px 2px 0px;
  3378. box-sizing:border-box;
  3379. width:100%;
  3380. }
  3381. #u23013_text {
  3382. border-width:0px;
  3383. word-wrap:break-word;
  3384. text-transform:none;
  3385. visibility:hidden;
  3386. }
  3387. #u23014_img {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:0px;
  3391. top:0px;
  3392. width:141px;
  3393. height:35px;
  3394. }
  3395. #u23014 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:200px;
  3399. top:186px;
  3400. width:141px;
  3401. height:35px;
  3402. display:flex;
  3403. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3404. font-weight:400;
  3405. font-style:normal;
  3406. font-size:12px;
  3407. color:#606266;
  3408. }
  3409. #u23014 .text {
  3410. position:absolute;
  3411. align-self:center;
  3412. padding:2px 2px 2px 0px;
  3413. box-sizing:border-box;
  3414. width:100%;
  3415. }
  3416. #u23014_text {
  3417. border-width:0px;
  3418. word-wrap:break-word;
  3419. text-transform:none;
  3420. visibility:hidden;
  3421. }
  3422. #u23015_img {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:141px;
  3428. height:35px;
  3429. }
  3430. #u23015 {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:341px;
  3434. top:186px;
  3435. width:141px;
  3436. height:35px;
  3437. display:flex;
  3438. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3439. font-weight:400;
  3440. font-style:normal;
  3441. font-size:12px;
  3442. color:#606266;
  3443. }
  3444. #u23015 .text {
  3445. position:absolute;
  3446. align-self:center;
  3447. padding:2px 2px 2px 0px;
  3448. box-sizing:border-box;
  3449. width:100%;
  3450. }
  3451. #u23015_text {
  3452. border-width:0px;
  3453. word-wrap:break-word;
  3454. text-transform:none;
  3455. visibility:hidden;
  3456. }
  3457. #u23016_img {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:0px;
  3461. top:0px;
  3462. width:141px;
  3463. height:35px;
  3464. }
  3465. #u23016 {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:482px;
  3469. top:186px;
  3470. width:141px;
  3471. height:35px;
  3472. display:flex;
  3473. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3474. font-weight:400;
  3475. font-style:normal;
  3476. font-size:12px;
  3477. color:#606266;
  3478. }
  3479. #u23016 .text {
  3480. position:absolute;
  3481. align-self:center;
  3482. padding:2px 2px 2px 0px;
  3483. box-sizing:border-box;
  3484. width:100%;
  3485. }
  3486. #u23016_text {
  3487. border-width:0px;
  3488. word-wrap:break-word;
  3489. text-transform:none;
  3490. visibility:hidden;
  3491. }
  3492. #u23017_img {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:155px;
  3498. height:35px;
  3499. }
  3500. #u23017 {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:623px;
  3504. top:186px;
  3505. width:155px;
  3506. height:35px;
  3507. display:flex;
  3508. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3509. font-weight:400;
  3510. font-style:normal;
  3511. font-size:12px;
  3512. color:#606266;
  3513. }
  3514. #u23017 .text {
  3515. position:absolute;
  3516. align-self:center;
  3517. padding:2px 2px 2px 0px;
  3518. box-sizing:border-box;
  3519. width:100%;
  3520. }
  3521. #u23017_text {
  3522. border-width:0px;
  3523. word-wrap:break-word;
  3524. text-transform:none;
  3525. visibility:hidden;
  3526. }
  3527. #u23018_img {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:174px;
  3533. height:35px;
  3534. }
  3535. #u23018 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:778px;
  3539. top:186px;
  3540. width:174px;
  3541. height:35px;
  3542. display:flex;
  3543. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3544. font-weight:400;
  3545. font-style:normal;
  3546. font-size:12px;
  3547. color:#606266;
  3548. }
  3549. #u23018 .text {
  3550. position:absolute;
  3551. align-self:center;
  3552. padding:2px 2px 2px 0px;
  3553. box-sizing:border-box;
  3554. width:100%;
  3555. }
  3556. #u23018_text {
  3557. border-width:0px;
  3558. word-wrap:break-word;
  3559. text-transform:none;
  3560. visibility:hidden;
  3561. }
  3562. #u23019_img {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:145px;
  3568. height:35px;
  3569. }
  3570. #u23019 {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:952px;
  3574. top:186px;
  3575. width:145px;
  3576. height:35px;
  3577. display:flex;
  3578. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3579. font-weight:400;
  3580. font-style:normal;
  3581. font-size:12px;
  3582. color:#606266;
  3583. }
  3584. #u23019 .text {
  3585. position:absolute;
  3586. align-self:center;
  3587. padding:2px 2px 2px 0px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u23019_text {
  3592. border-width:0px;
  3593. word-wrap:break-word;
  3594. text-transform:none;
  3595. visibility:hidden;
  3596. }
  3597. #u23020_img {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:120px;
  3603. height:35px;
  3604. }
  3605. #u23020 {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:1097px;
  3609. top:186px;
  3610. width:120px;
  3611. height:35px;
  3612. display:flex;
  3613. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3614. font-weight:400;
  3615. font-style:normal;
  3616. font-size:12px;
  3617. color:#606266;
  3618. }
  3619. #u23020 .text {
  3620. position:absolute;
  3621. align-self:center;
  3622. padding:2px 2px 2px 0px;
  3623. box-sizing:border-box;
  3624. width:100%;
  3625. }
  3626. #u23020_text {
  3627. border-width:0px;
  3628. word-wrap:break-word;
  3629. text-transform:none;
  3630. visibility:hidden;
  3631. }
  3632. #u23021_img {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:55px;
  3638. height:35px;
  3639. }
  3640. #u23021 {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:221px;
  3645. width:55px;
  3646. height:35px;
  3647. display:flex;
  3648. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3649. font-weight:400;
  3650. font-style:normal;
  3651. font-size:12px;
  3652. color:#606266;
  3653. }
  3654. #u23021 .text {
  3655. position:absolute;
  3656. align-self:center;
  3657. padding:2px 2px 2px 0px;
  3658. box-sizing:border-box;
  3659. width:100%;
  3660. }
  3661. #u23021_text {
  3662. border-width:0px;
  3663. word-wrap:break-word;
  3664. text-transform:none;
  3665. visibility:hidden;
  3666. }
  3667. #u23022_img {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:0px;
  3671. top:0px;
  3672. width:145px;
  3673. height:35px;
  3674. }
  3675. #u23022 {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:55px;
  3679. top:221px;
  3680. width:145px;
  3681. height:35px;
  3682. display:flex;
  3683. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3684. font-weight:400;
  3685. font-style:normal;
  3686. font-size:12px;
  3687. color:#606266;
  3688. }
  3689. #u23022 .text {
  3690. position:absolute;
  3691. align-self:center;
  3692. padding:2px 2px 2px 0px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u23022_text {
  3697. border-width:0px;
  3698. word-wrap:break-word;
  3699. text-transform:none;
  3700. visibility:hidden;
  3701. }
  3702. #u23023_img {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:141px;
  3708. height:35px;
  3709. }
  3710. #u23023 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:200px;
  3714. top:221px;
  3715. width:141px;
  3716. height:35px;
  3717. display:flex;
  3718. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3719. font-weight:400;
  3720. font-style:normal;
  3721. font-size:12px;
  3722. color:#606266;
  3723. }
  3724. #u23023 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 0px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u23023_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. visibility:hidden;
  3736. }
  3737. #u23024_img {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:141px;
  3743. height:35px;
  3744. }
  3745. #u23024 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:341px;
  3749. top:221px;
  3750. width:141px;
  3751. height:35px;
  3752. display:flex;
  3753. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:12px;
  3757. color:#606266;
  3758. }
  3759. #u23024 .text {
  3760. position:absolute;
  3761. align-self:center;
  3762. padding:2px 2px 2px 0px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u23024_text {
  3767. border-width:0px;
  3768. word-wrap:break-word;
  3769. text-transform:none;
  3770. visibility:hidden;
  3771. }
  3772. #u23025_img {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:0px;
  3776. top:0px;
  3777. width:141px;
  3778. height:35px;
  3779. }
  3780. #u23025 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:482px;
  3784. top:221px;
  3785. width:141px;
  3786. height:35px;
  3787. display:flex;
  3788. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3789. font-weight:400;
  3790. font-style:normal;
  3791. font-size:12px;
  3792. color:#606266;
  3793. }
  3794. #u23025 .text {
  3795. position:absolute;
  3796. align-self:center;
  3797. padding:2px 2px 2px 0px;
  3798. box-sizing:border-box;
  3799. width:100%;
  3800. }
  3801. #u23025_text {
  3802. border-width:0px;
  3803. word-wrap:break-word;
  3804. text-transform:none;
  3805. visibility:hidden;
  3806. }
  3807. #u23026_img {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:0px;
  3811. top:0px;
  3812. width:155px;
  3813. height:35px;
  3814. }
  3815. #u23026 {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:623px;
  3819. top:221px;
  3820. width:155px;
  3821. height:35px;
  3822. display:flex;
  3823. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:12px;
  3827. color:#606266;
  3828. }
  3829. #u23026 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 0px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u23026_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. visibility:hidden;
  3841. }
  3842. #u23027_img {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:174px;
  3848. height:35px;
  3849. }
  3850. #u23027 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:778px;
  3854. top:221px;
  3855. width:174px;
  3856. height:35px;
  3857. display:flex;
  3858. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:12px;
  3862. color:#606266;
  3863. }
  3864. #u23027 .text {
  3865. position:absolute;
  3866. align-self:center;
  3867. padding:2px 2px 2px 0px;
  3868. box-sizing:border-box;
  3869. width:100%;
  3870. }
  3871. #u23027_text {
  3872. border-width:0px;
  3873. word-wrap:break-word;
  3874. text-transform:none;
  3875. visibility:hidden;
  3876. }
  3877. #u23028_img {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:145px;
  3883. height:35px;
  3884. }
  3885. #u23028 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:952px;
  3889. top:221px;
  3890. width:145px;
  3891. height:35px;
  3892. display:flex;
  3893. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3894. font-weight:400;
  3895. font-style:normal;
  3896. font-size:12px;
  3897. color:#606266;
  3898. }
  3899. #u23028 .text {
  3900. position:absolute;
  3901. align-self:center;
  3902. padding:2px 2px 2px 0px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u23028_text {
  3907. border-width:0px;
  3908. word-wrap:break-word;
  3909. text-transform:none;
  3910. visibility:hidden;
  3911. }
  3912. #u23029_img {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:0px;
  3917. width:120px;
  3918. height:35px;
  3919. }
  3920. #u23029 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:1097px;
  3924. top:221px;
  3925. width:120px;
  3926. height:35px;
  3927. display:flex;
  3928. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3929. font-weight:400;
  3930. font-style:normal;
  3931. font-size:12px;
  3932. color:#606266;
  3933. }
  3934. #u23029 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:2px 2px 2px 0px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u23029_text {
  3942. border-width:0px;
  3943. word-wrap:break-word;
  3944. text-transform:none;
  3945. visibility:hidden;
  3946. }
  3947. #u23030_img {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:55px;
  3953. height:35px;
  3954. }
  3955. #u23030 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:256px;
  3960. width:55px;
  3961. height:35px;
  3962. display:flex;
  3963. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:12px;
  3967. color:#606266;
  3968. }
  3969. #u23030 .text {
  3970. position:absolute;
  3971. align-self:center;
  3972. padding:2px 2px 2px 0px;
  3973. box-sizing:border-box;
  3974. width:100%;
  3975. }
  3976. #u23030_text {
  3977. border-width:0px;
  3978. word-wrap:break-word;
  3979. text-transform:none;
  3980. visibility:hidden;
  3981. }
  3982. #u23031_img {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:145px;
  3988. height:35px;
  3989. }
  3990. #u23031 {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:55px;
  3994. top:256px;
  3995. width:145px;
  3996. height:35px;
  3997. display:flex;
  3998. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. font-size:12px;
  4002. color:#606266;
  4003. }
  4004. #u23031 .text {
  4005. position:absolute;
  4006. align-self:center;
  4007. padding:2px 2px 2px 0px;
  4008. box-sizing:border-box;
  4009. width:100%;
  4010. }
  4011. #u23031_text {
  4012. border-width:0px;
  4013. word-wrap:break-word;
  4014. text-transform:none;
  4015. visibility:hidden;
  4016. }
  4017. #u23032_img {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:0px;
  4021. top:0px;
  4022. width:141px;
  4023. height:35px;
  4024. }
  4025. #u23032 {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:200px;
  4029. top:256px;
  4030. width:141px;
  4031. height:35px;
  4032. display:flex;
  4033. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4034. font-weight:400;
  4035. font-style:normal;
  4036. font-size:12px;
  4037. color:#606266;
  4038. }
  4039. #u23032 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:2px 2px 2px 0px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u23032_text {
  4047. border-width:0px;
  4048. word-wrap:break-word;
  4049. text-transform:none;
  4050. visibility:hidden;
  4051. }
  4052. #u23033_img {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:141px;
  4058. height:35px;
  4059. }
  4060. #u23033 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:341px;
  4064. top:256px;
  4065. width:141px;
  4066. height:35px;
  4067. display:flex;
  4068. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:12px;
  4072. color:#606266;
  4073. }
  4074. #u23033 .text {
  4075. position:absolute;
  4076. align-self:center;
  4077. padding:2px 2px 2px 0px;
  4078. box-sizing:border-box;
  4079. width:100%;
  4080. }
  4081. #u23033_text {
  4082. border-width:0px;
  4083. word-wrap:break-word;
  4084. text-transform:none;
  4085. visibility:hidden;
  4086. }
  4087. #u23034_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:141px;
  4093. height:35px;
  4094. }
  4095. #u23034 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:482px;
  4099. top:256px;
  4100. width:141px;
  4101. height:35px;
  4102. display:flex;
  4103. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4104. font-weight:400;
  4105. font-style:normal;
  4106. font-size:12px;
  4107. color:#606266;
  4108. }
  4109. #u23034 .text {
  4110. position:absolute;
  4111. align-self:center;
  4112. padding:2px 2px 2px 0px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u23034_text {
  4117. border-width:0px;
  4118. word-wrap:break-word;
  4119. text-transform:none;
  4120. visibility:hidden;
  4121. }
  4122. #u23035_img {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:155px;
  4128. height:35px;
  4129. }
  4130. #u23035 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:623px;
  4134. top:256px;
  4135. width:155px;
  4136. height:35px;
  4137. display:flex;
  4138. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4139. font-weight:400;
  4140. font-style:normal;
  4141. font-size:12px;
  4142. color:#606266;
  4143. }
  4144. #u23035 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 0px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u23035_text {
  4152. border-width:0px;
  4153. word-wrap:break-word;
  4154. text-transform:none;
  4155. visibility:hidden;
  4156. }
  4157. #u23036_img {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:174px;
  4163. height:35px;
  4164. }
  4165. #u23036 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:778px;
  4169. top:256px;
  4170. width:174px;
  4171. height:35px;
  4172. display:flex;
  4173. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4174. font-weight:400;
  4175. font-style:normal;
  4176. font-size:12px;
  4177. color:#606266;
  4178. }
  4179. #u23036 .text {
  4180. position:absolute;
  4181. align-self:center;
  4182. padding:2px 2px 2px 0px;
  4183. box-sizing:border-box;
  4184. width:100%;
  4185. }
  4186. #u23036_text {
  4187. border-width:0px;
  4188. word-wrap:break-word;
  4189. text-transform:none;
  4190. visibility:hidden;
  4191. }
  4192. #u23037_img {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:145px;
  4198. height:35px;
  4199. }
  4200. #u23037 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:952px;
  4204. top:256px;
  4205. width:145px;
  4206. height:35px;
  4207. display:flex;
  4208. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:12px;
  4212. color:#606266;
  4213. }
  4214. #u23037 .text {
  4215. position:absolute;
  4216. align-self:center;
  4217. padding:2px 2px 2px 0px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u23037_text {
  4222. border-width:0px;
  4223. word-wrap:break-word;
  4224. text-transform:none;
  4225. visibility:hidden;
  4226. }
  4227. #u23038_img {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:120px;
  4233. height:35px;
  4234. }
  4235. #u23038 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:1097px;
  4239. top:256px;
  4240. width:120px;
  4241. height:35px;
  4242. display:flex;
  4243. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4244. font-weight:400;
  4245. font-style:normal;
  4246. font-size:12px;
  4247. color:#606266;
  4248. }
  4249. #u23038 .text {
  4250. position:absolute;
  4251. align-self:center;
  4252. padding:2px 2px 2px 0px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u23038_text {
  4257. border-width:0px;
  4258. word-wrap:break-word;
  4259. text-transform:none;
  4260. visibility:hidden;
  4261. }
  4262. #u23039_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:55px;
  4268. height:35px;
  4269. }
  4270. #u23039 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:291px;
  4275. width:55px;
  4276. height:35px;
  4277. display:flex;
  4278. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4279. font-weight:400;
  4280. font-style:normal;
  4281. font-size:12px;
  4282. color:#606266;
  4283. }
  4284. #u23039 .text {
  4285. position:absolute;
  4286. align-self:center;
  4287. padding:2px 2px 2px 0px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u23039_text {
  4292. border-width:0px;
  4293. word-wrap:break-word;
  4294. text-transform:none;
  4295. visibility:hidden;
  4296. }
  4297. #u23040_img {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:145px;
  4303. height:35px;
  4304. }
  4305. #u23040 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:55px;
  4309. top:291px;
  4310. width:145px;
  4311. height:35px;
  4312. display:flex;
  4313. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:12px;
  4317. color:#606266;
  4318. }
  4319. #u23040 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 0px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u23040_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. visibility:hidden;
  4331. }
  4332. #u23041_img {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:141px;
  4338. height:35px;
  4339. }
  4340. #u23041 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:200px;
  4344. top:291px;
  4345. width:141px;
  4346. height:35px;
  4347. display:flex;
  4348. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4349. font-weight:400;
  4350. font-style:normal;
  4351. font-size:12px;
  4352. color:#606266;
  4353. }
  4354. #u23041 .text {
  4355. position:absolute;
  4356. align-self:center;
  4357. padding:2px 2px 2px 0px;
  4358. box-sizing:border-box;
  4359. width:100%;
  4360. }
  4361. #u23041_text {
  4362. border-width:0px;
  4363. word-wrap:break-word;
  4364. text-transform:none;
  4365. visibility:hidden;
  4366. }
  4367. #u23042_img {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:141px;
  4373. height:35px;
  4374. }
  4375. #u23042 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:341px;
  4379. top:291px;
  4380. width:141px;
  4381. height:35px;
  4382. display:flex;
  4383. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4384. font-weight:400;
  4385. font-style:normal;
  4386. font-size:12px;
  4387. color:#606266;
  4388. }
  4389. #u23042 .text {
  4390. position:absolute;
  4391. align-self:center;
  4392. padding:2px 2px 2px 0px;
  4393. box-sizing:border-box;
  4394. width:100%;
  4395. }
  4396. #u23042_text {
  4397. border-width:0px;
  4398. word-wrap:break-word;
  4399. text-transform:none;
  4400. visibility:hidden;
  4401. }
  4402. #u23043_img {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:0px;
  4406. top:0px;
  4407. width:141px;
  4408. height:35px;
  4409. }
  4410. #u23043 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:482px;
  4414. top:291px;
  4415. width:141px;
  4416. height:35px;
  4417. display:flex;
  4418. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4419. font-weight:400;
  4420. font-style:normal;
  4421. font-size:12px;
  4422. color:#606266;
  4423. }
  4424. #u23043 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 2px 2px 0px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u23043_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. visibility:hidden;
  4436. }
  4437. #u23044_img {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:155px;
  4443. height:35px;
  4444. }
  4445. #u23044 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:623px;
  4449. top:291px;
  4450. width:155px;
  4451. height:35px;
  4452. display:flex;
  4453. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:12px;
  4457. color:#606266;
  4458. }
  4459. #u23044 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:2px 2px 2px 0px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u23044_text {
  4467. border-width:0px;
  4468. word-wrap:break-word;
  4469. text-transform:none;
  4470. visibility:hidden;
  4471. }
  4472. #u23045_img {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:174px;
  4478. height:35px;
  4479. }
  4480. #u23045 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:778px;
  4484. top:291px;
  4485. width:174px;
  4486. height:35px;
  4487. display:flex;
  4488. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. font-size:12px;
  4492. color:#606266;
  4493. }
  4494. #u23045 .text {
  4495. position:absolute;
  4496. align-self:center;
  4497. padding:2px 2px 2px 0px;
  4498. box-sizing:border-box;
  4499. width:100%;
  4500. }
  4501. #u23045_text {
  4502. border-width:0px;
  4503. word-wrap:break-word;
  4504. text-transform:none;
  4505. visibility:hidden;
  4506. }
  4507. #u23046_img {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:145px;
  4513. height:35px;
  4514. }
  4515. #u23046 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:952px;
  4519. top:291px;
  4520. width:145px;
  4521. height:35px;
  4522. display:flex;
  4523. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. font-size:12px;
  4527. color:#606266;
  4528. }
  4529. #u23046 .text {
  4530. position:absolute;
  4531. align-self:center;
  4532. padding:2px 2px 2px 0px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u23046_text {
  4537. border-width:0px;
  4538. word-wrap:break-word;
  4539. text-transform:none;
  4540. visibility:hidden;
  4541. }
  4542. #u23047_img {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:120px;
  4548. height:35px;
  4549. }
  4550. #u23047 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:1097px;
  4554. top:291px;
  4555. width:120px;
  4556. height:35px;
  4557. display:flex;
  4558. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:12px;
  4562. color:#606266;
  4563. }
  4564. #u23047 .text {
  4565. position:absolute;
  4566. align-self:center;
  4567. padding:2px 2px 2px 0px;
  4568. box-sizing:border-box;
  4569. width:100%;
  4570. }
  4571. #u23047_text {
  4572. border-width:0px;
  4573. word-wrap:break-word;
  4574. text-transform:none;
  4575. visibility:hidden;
  4576. }
  4577. #u23048_img {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:55px;
  4583. height:35px;
  4584. }
  4585. #u23048 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:326px;
  4590. width:55px;
  4591. height:35px;
  4592. display:flex;
  4593. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4594. font-weight:400;
  4595. font-style:normal;
  4596. font-size:12px;
  4597. color:#606266;
  4598. }
  4599. #u23048 .text {
  4600. position:absolute;
  4601. align-self:center;
  4602. padding:2px 2px 2px 0px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u23048_text {
  4607. border-width:0px;
  4608. word-wrap:break-word;
  4609. text-transform:none;
  4610. visibility:hidden;
  4611. }
  4612. #u23049_img {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:0px;
  4616. top:0px;
  4617. width:145px;
  4618. height:35px;
  4619. }
  4620. #u23049 {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:55px;
  4624. top:326px;
  4625. width:145px;
  4626. height:35px;
  4627. display:flex;
  4628. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4629. font-weight:400;
  4630. font-style:normal;
  4631. font-size:12px;
  4632. color:#606266;
  4633. }
  4634. #u23049 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 0px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u23049_text {
  4642. border-width:0px;
  4643. word-wrap:break-word;
  4644. text-transform:none;
  4645. visibility:hidden;
  4646. }
  4647. #u23050_img {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:0px;
  4652. width:141px;
  4653. height:35px;
  4654. }
  4655. #u23050 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:200px;
  4659. top:326px;
  4660. width:141px;
  4661. height:35px;
  4662. display:flex;
  4663. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. font-size:12px;
  4667. color:#606266;
  4668. }
  4669. #u23050 .text {
  4670. position:absolute;
  4671. align-self:center;
  4672. padding:2px 2px 2px 0px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u23050_text {
  4677. border-width:0px;
  4678. word-wrap:break-word;
  4679. text-transform:none;
  4680. visibility:hidden;
  4681. }
  4682. #u23051_img {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:141px;
  4688. height:35px;
  4689. }
  4690. #u23051 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:341px;
  4694. top:326px;
  4695. width:141px;
  4696. height:35px;
  4697. display:flex;
  4698. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4699. font-weight:400;
  4700. font-style:normal;
  4701. font-size:12px;
  4702. color:#606266;
  4703. }
  4704. #u23051 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:2px 2px 2px 0px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u23051_text {
  4712. border-width:0px;
  4713. word-wrap:break-word;
  4714. text-transform:none;
  4715. visibility:hidden;
  4716. }
  4717. #u23052_img {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:141px;
  4723. height:35px;
  4724. }
  4725. #u23052 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:482px;
  4729. top:326px;
  4730. width:141px;
  4731. height:35px;
  4732. display:flex;
  4733. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:12px;
  4737. color:#606266;
  4738. }
  4739. #u23052 .text {
  4740. position:absolute;
  4741. align-self:center;
  4742. padding:2px 2px 2px 0px;
  4743. box-sizing:border-box;
  4744. width:100%;
  4745. }
  4746. #u23052_text {
  4747. border-width:0px;
  4748. word-wrap:break-word;
  4749. text-transform:none;
  4750. visibility:hidden;
  4751. }
  4752. #u23053_img {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:155px;
  4758. height:35px;
  4759. }
  4760. #u23053 {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:623px;
  4764. top:326px;
  4765. width:155px;
  4766. height:35px;
  4767. display:flex;
  4768. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4769. font-weight:400;
  4770. font-style:normal;
  4771. font-size:12px;
  4772. color:#606266;
  4773. }
  4774. #u23053 .text {
  4775. position:absolute;
  4776. align-self:center;
  4777. padding:2px 2px 2px 0px;
  4778. box-sizing:border-box;
  4779. width:100%;
  4780. }
  4781. #u23053_text {
  4782. border-width:0px;
  4783. word-wrap:break-word;
  4784. text-transform:none;
  4785. visibility:hidden;
  4786. }
  4787. #u23054_img {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:174px;
  4793. height:35px;
  4794. }
  4795. #u23054 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:778px;
  4799. top:326px;
  4800. width:174px;
  4801. height:35px;
  4802. display:flex;
  4803. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:12px;
  4807. color:#606266;
  4808. }
  4809. #u23054 .text {
  4810. position:absolute;
  4811. align-self:center;
  4812. padding:2px 2px 2px 0px;
  4813. box-sizing:border-box;
  4814. width:100%;
  4815. }
  4816. #u23054_text {
  4817. border-width:0px;
  4818. word-wrap:break-word;
  4819. text-transform:none;
  4820. visibility:hidden;
  4821. }
  4822. #u23055_img {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:145px;
  4828. height:35px;
  4829. }
  4830. #u23055 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:952px;
  4834. top:326px;
  4835. width:145px;
  4836. height:35px;
  4837. display:flex;
  4838. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:12px;
  4842. color:#606266;
  4843. }
  4844. #u23055 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 0px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u23055_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u23056_img {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:120px;
  4863. height:35px;
  4864. }
  4865. #u23056 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:1097px;
  4869. top:326px;
  4870. width:120px;
  4871. height:35px;
  4872. display:flex;
  4873. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:12px;
  4877. color:#606266;
  4878. }
  4879. #u23056 .text {
  4880. position:absolute;
  4881. align-self:center;
  4882. padding:2px 2px 2px 0px;
  4883. box-sizing:border-box;
  4884. width:100%;
  4885. }
  4886. #u23056_text {
  4887. border-width:0px;
  4888. word-wrap:break-word;
  4889. text-transform:none;
  4890. visibility:hidden;
  4891. }
  4892. #u23057_img {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:0px;
  4896. top:0px;
  4897. width:55px;
  4898. height:35px;
  4899. }
  4900. #u23057 {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:361px;
  4905. width:55px;
  4906. height:35px;
  4907. display:flex;
  4908. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4909. font-weight:400;
  4910. font-style:normal;
  4911. font-size:12px;
  4912. color:#606266;
  4913. }
  4914. #u23057 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:2px 2px 2px 0px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u23057_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. visibility:hidden;
  4926. }
  4927. #u23058_img {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:145px;
  4933. height:35px;
  4934. }
  4935. #u23058 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:55px;
  4939. top:361px;
  4940. width:145px;
  4941. height:35px;
  4942. display:flex;
  4943. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:12px;
  4947. color:#606266;
  4948. }
  4949. #u23058 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 2px 2px 0px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u23058_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u23059_img {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:141px;
  4968. height:35px;
  4969. }
  4970. #u23059 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:200px;
  4974. top:361px;
  4975. width:141px;
  4976. height:35px;
  4977. display:flex;
  4978. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4979. font-weight:400;
  4980. font-style:normal;
  4981. font-size:12px;
  4982. color:#606266;
  4983. }
  4984. #u23059 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:2px 2px 2px 0px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u23059_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. visibility:hidden;
  4996. }
  4997. #u23060_img {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:141px;
  5003. height:35px;
  5004. }
  5005. #u23060 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:341px;
  5009. top:361px;
  5010. width:141px;
  5011. height:35px;
  5012. display:flex;
  5013. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:12px;
  5017. color:#606266;
  5018. }
  5019. #u23060 .text {
  5020. position:absolute;
  5021. align-self:center;
  5022. padding:2px 2px 2px 0px;
  5023. box-sizing:border-box;
  5024. width:100%;
  5025. }
  5026. #u23060_text {
  5027. border-width:0px;
  5028. word-wrap:break-word;
  5029. text-transform:none;
  5030. visibility:hidden;
  5031. }
  5032. #u23061_img {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:141px;
  5038. height:35px;
  5039. }
  5040. #u23061 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:482px;
  5044. top:361px;
  5045. width:141px;
  5046. height:35px;
  5047. display:flex;
  5048. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5049. font-weight:400;
  5050. font-style:normal;
  5051. font-size:12px;
  5052. color:#606266;
  5053. }
  5054. #u23061 .text {
  5055. position:absolute;
  5056. align-self:center;
  5057. padding:2px 2px 2px 0px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u23061_text {
  5062. border-width:0px;
  5063. word-wrap:break-word;
  5064. text-transform:none;
  5065. visibility:hidden;
  5066. }
  5067. #u23062_img {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:0px;
  5071. top:0px;
  5072. width:155px;
  5073. height:35px;
  5074. }
  5075. #u23062 {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:623px;
  5079. top:361px;
  5080. width:155px;
  5081. height:35px;
  5082. display:flex;
  5083. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5084. font-weight:400;
  5085. font-style:normal;
  5086. font-size:12px;
  5087. color:#606266;
  5088. }
  5089. #u23062 .text {
  5090. position:absolute;
  5091. align-self:center;
  5092. padding:2px 2px 2px 0px;
  5093. box-sizing:border-box;
  5094. width:100%;
  5095. }
  5096. #u23062_text {
  5097. border-width:0px;
  5098. word-wrap:break-word;
  5099. text-transform:none;
  5100. visibility:hidden;
  5101. }
  5102. #u23063_img {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:174px;
  5108. height:35px;
  5109. }
  5110. #u23063 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:778px;
  5114. top:361px;
  5115. width:174px;
  5116. height:35px;
  5117. display:flex;
  5118. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5119. font-weight:400;
  5120. font-style:normal;
  5121. font-size:12px;
  5122. color:#606266;
  5123. }
  5124. #u23063 .text {
  5125. position:absolute;
  5126. align-self:center;
  5127. padding:2px 2px 2px 0px;
  5128. box-sizing:border-box;
  5129. width:100%;
  5130. }
  5131. #u23063_text {
  5132. border-width:0px;
  5133. word-wrap:break-word;
  5134. text-transform:none;
  5135. visibility:hidden;
  5136. }
  5137. #u23064_img {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:145px;
  5143. height:35px;
  5144. }
  5145. #u23064 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:952px;
  5149. top:361px;
  5150. width:145px;
  5151. height:35px;
  5152. display:flex;
  5153. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5154. font-weight:400;
  5155. font-style:normal;
  5156. font-size:12px;
  5157. color:#606266;
  5158. }
  5159. #u23064 .text {
  5160. position:absolute;
  5161. align-self:center;
  5162. padding:2px 2px 2px 0px;
  5163. box-sizing:border-box;
  5164. width:100%;
  5165. }
  5166. #u23064_text {
  5167. border-width:0px;
  5168. word-wrap:break-word;
  5169. text-transform:none;
  5170. visibility:hidden;
  5171. }
  5172. #u23065_img {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:120px;
  5178. height:35px;
  5179. }
  5180. #u23065 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:1097px;
  5184. top:361px;
  5185. width:120px;
  5186. height:35px;
  5187. display:flex;
  5188. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:12px;
  5192. color:#606266;
  5193. }
  5194. #u23065 .text {
  5195. position:absolute;
  5196. align-self:center;
  5197. padding:2px 2px 2px 0px;
  5198. box-sizing:border-box;
  5199. width:100%;
  5200. }
  5201. #u23065_text {
  5202. border-width:0px;
  5203. word-wrap:break-word;
  5204. text-transform:none;
  5205. visibility:hidden;
  5206. }
  5207. #u23066_img {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:55px;
  5213. height:32px;
  5214. }
  5215. #u23066 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:0px;
  5219. top:396px;
  5220. width:55px;
  5221. height:32px;
  5222. display:flex;
  5223. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:12px;
  5227. color:#606266;
  5228. }
  5229. #u23066 .text {
  5230. position:absolute;
  5231. align-self:center;
  5232. padding:2px 2px 2px 0px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u23066_text {
  5237. border-width:0px;
  5238. word-wrap:break-word;
  5239. text-transform:none;
  5240. visibility:hidden;
  5241. }
  5242. #u23067_img {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:145px;
  5248. height:32px;
  5249. }
  5250. #u23067 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:55px;
  5254. top:396px;
  5255. width:145px;
  5256. height:32px;
  5257. display:flex;
  5258. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5259. font-weight:400;
  5260. font-style:normal;
  5261. font-size:12px;
  5262. color:#606266;
  5263. }
  5264. #u23067 .text {
  5265. position:absolute;
  5266. align-self:center;
  5267. padding:2px 2px 2px 0px;
  5268. box-sizing:border-box;
  5269. width:100%;
  5270. }
  5271. #u23067_text {
  5272. border-width:0px;
  5273. word-wrap:break-word;
  5274. text-transform:none;
  5275. visibility:hidden;
  5276. }
  5277. #u23068_img {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:141px;
  5283. height:32px;
  5284. }
  5285. #u23068 {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:200px;
  5289. top:396px;
  5290. width:141px;
  5291. height:32px;
  5292. display:flex;
  5293. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5294. font-weight:400;
  5295. font-style:normal;
  5296. font-size:12px;
  5297. color:#606266;
  5298. }
  5299. #u23068 .text {
  5300. position:absolute;
  5301. align-self:center;
  5302. padding:2px 2px 2px 0px;
  5303. box-sizing:border-box;
  5304. width:100%;
  5305. }
  5306. #u23068_text {
  5307. border-width:0px;
  5308. word-wrap:break-word;
  5309. text-transform:none;
  5310. visibility:hidden;
  5311. }
  5312. #u23069_img {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:141px;
  5318. height:32px;
  5319. }
  5320. #u23069 {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:341px;
  5324. top:396px;
  5325. width:141px;
  5326. height:32px;
  5327. display:flex;
  5328. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5329. font-weight:400;
  5330. font-style:normal;
  5331. font-size:12px;
  5332. color:#606266;
  5333. }
  5334. #u23069 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:2px 2px 2px 0px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u23069_text {
  5342. border-width:0px;
  5343. word-wrap:break-word;
  5344. text-transform:none;
  5345. visibility:hidden;
  5346. }
  5347. #u23070_img {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:141px;
  5353. height:32px;
  5354. }
  5355. #u23070 {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:482px;
  5359. top:396px;
  5360. width:141px;
  5361. height:32px;
  5362. display:flex;
  5363. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:12px;
  5367. color:#606266;
  5368. }
  5369. #u23070 .text {
  5370. position:absolute;
  5371. align-self:center;
  5372. padding:2px 2px 2px 0px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u23070_text {
  5377. border-width:0px;
  5378. word-wrap:break-word;
  5379. text-transform:none;
  5380. visibility:hidden;
  5381. }
  5382. #u23071_img {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:155px;
  5388. height:32px;
  5389. }
  5390. #u23071 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:623px;
  5394. top:396px;
  5395. width:155px;
  5396. height:32px;
  5397. display:flex;
  5398. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5399. font-weight:400;
  5400. font-style:normal;
  5401. font-size:12px;
  5402. color:#606266;
  5403. }
  5404. #u23071 .text {
  5405. position:absolute;
  5406. align-self:center;
  5407. padding:2px 2px 2px 0px;
  5408. box-sizing:border-box;
  5409. width:100%;
  5410. }
  5411. #u23071_text {
  5412. border-width:0px;
  5413. word-wrap:break-word;
  5414. text-transform:none;
  5415. visibility:hidden;
  5416. }
  5417. #u23072_img {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:174px;
  5423. height:32px;
  5424. }
  5425. #u23072 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:778px;
  5429. top:396px;
  5430. width:174px;
  5431. height:32px;
  5432. display:flex;
  5433. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:12px;
  5437. color:#606266;
  5438. }
  5439. #u23072 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 0px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u23072_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u23073_img {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:145px;
  5458. height:32px;
  5459. }
  5460. #u23073 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:952px;
  5464. top:396px;
  5465. width:145px;
  5466. height:32px;
  5467. display:flex;
  5468. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. font-size:12px;
  5472. color:#606266;
  5473. }
  5474. #u23073 .text {
  5475. position:absolute;
  5476. align-self:center;
  5477. padding:2px 2px 2px 0px;
  5478. box-sizing:border-box;
  5479. width:100%;
  5480. }
  5481. #u23073_text {
  5482. border-width:0px;
  5483. word-wrap:break-word;
  5484. text-transform:none;
  5485. visibility:hidden;
  5486. }
  5487. #u23074_img {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:120px;
  5493. height:32px;
  5494. }
  5495. #u23074 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:1097px;
  5499. top:396px;
  5500. width:120px;
  5501. height:32px;
  5502. display:flex;
  5503. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:12px;
  5507. color:#606266;
  5508. }
  5509. #u23074 .text {
  5510. position:absolute;
  5511. align-self:center;
  5512. padding:2px 2px 2px 0px;
  5513. box-sizing:border-box;
  5514. width:100%;
  5515. }
  5516. #u23074_text {
  5517. border-width:0px;
  5518. word-wrap:break-word;
  5519. text-transform:none;
  5520. visibility:hidden;
  5521. }
  5522. #u23075_div {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:59px;
  5528. height:30px;
  5529. background:inherit;
  5530. background-color:rgba(41, 143, 255, 1);
  5531. border:none;
  5532. border-radius:4px;
  5533. -moz-box-shadow:none;
  5534. -webkit-box-shadow:none;
  5535. box-shadow:none;
  5536. font-family:'Microsoft YaHei', sans-serif;
  5537. font-weight:400;
  5538. font-style:normal;
  5539. font-size:14px;
  5540. color:#FFFFFF;
  5541. }
  5542. #u23075 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:652px;
  5546. top:100px;
  5547. width:59px;
  5548. height:30px;
  5549. display:flex;
  5550. font-family:'Microsoft YaHei', sans-serif;
  5551. font-weight:400;
  5552. font-style:normal;
  5553. font-size:14px;
  5554. color:#FFFFFF;
  5555. }
  5556. #u23075 .text {
  5557. position:absolute;
  5558. align-self:center;
  5559. padding:5px 15px 5px 15px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u23075_text {
  5564. border-width:0px;
  5565. white-space:nowrap;
  5566. text-transform:none;
  5567. }
  5568. #u23076_div {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:55px;
  5574. height:30px;
  5575. background:inherit;
  5576. background-color:rgba(255, 255, 255, 1);
  5577. box-sizing:border-box;
  5578. border-width:1px;
  5579. border-style:solid;
  5580. border-color:rgba(170, 170, 170, 1);
  5581. border-radius:4px;
  5582. -moz-box-shadow:none;
  5583. -webkit-box-shadow:none;
  5584. box-shadow:none;
  5585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5586. font-weight:400;
  5587. font-style:normal;
  5588. font-size:12px;
  5589. color:#555555;
  5590. }
  5591. #u23076 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:721px;
  5595. top:100px;
  5596. width:55px;
  5597. height:30px;
  5598. display:flex;
  5599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:12px;
  5603. color:#555555;
  5604. }
  5605. #u23076 .text {
  5606. position:absolute;
  5607. align-self:center;
  5608. padding:5px 15px 5px 15px;
  5609. box-sizing:border-box;
  5610. width:100%;
  5611. }
  5612. #u23076_text {
  5613. border-width:0px;
  5614. white-space:nowrap;
  5615. text-transform:none;
  5616. }
  5617. #u23077_div {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:0px;
  5621. top:0px;
  5622. width:55px;
  5623. height:30px;
  5624. background:inherit;
  5625. background-color:rgba(24, 144, 255, 1);
  5626. border:none;
  5627. border-radius:4px;
  5628. -moz-box-shadow:none;
  5629. -webkit-box-shadow:none;
  5630. box-shadow:none;
  5631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5632. font-weight:400;
  5633. font-style:normal;
  5634. font-size:12px;
  5635. color:#FFFFFF;
  5636. }
  5637. #u23077 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:352px;
  5641. top:152px;
  5642. width:55px;
  5643. height:30px;
  5644. display:flex;
  5645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:12px;
  5649. color:#FFFFFF;
  5650. }
  5651. #u23077 .text {
  5652. position:absolute;
  5653. align-self:center;
  5654. padding:5px 15px 5px 15px;
  5655. box-sizing:border-box;
  5656. width:100%;
  5657. }
  5658. #u23077_text {
  5659. border-width:0px;
  5660. white-space:nowrap;
  5661. text-transform:none;
  5662. }
  5663. #u23078 {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:0px;
  5669. height:0px;
  5670. }
  5671. #u23079_div {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:0px;
  5675. top:0px;
  5676. width:140px;
  5677. height:30px;
  5678. background:inherit;
  5679. background-color:rgba(255, 255, 255, 1);
  5680. box-sizing:border-box;
  5681. border-width:1px;
  5682. border-style:solid;
  5683. border-color:rgba(201, 201, 201, 1);
  5684. border-radius:4px;
  5685. -moz-box-shadow:none;
  5686. -webkit-box-shadow:none;
  5687. box-shadow:none;
  5688. font-family:'Microsoft YaHei', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. font-size:14px;
  5692. color:#CCCCCC;
  5693. text-align:left;
  5694. }
  5695. #u23079 {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:502px;
  5699. top:100px;
  5700. width:140px;
  5701. height:30px;
  5702. display:flex;
  5703. font-family:'Microsoft YaHei', sans-serif;
  5704. font-weight:400;
  5705. font-style:normal;
  5706. font-size:14px;
  5707. color:#CCCCCC;
  5708. text-align:left;
  5709. }
  5710. #u23079 .text {
  5711. position:absolute;
  5712. align-self:center;
  5713. padding:2px 8px 2px 8px;
  5714. box-sizing:border-box;
  5715. width:100%;
  5716. }
  5717. #u23079_text {
  5718. border-width:0px;
  5719. word-wrap:break-word;
  5720. text-transform:none;
  5721. visibility:hidden;
  5722. }
  5723. #u23080_input {
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:127px;
  5728. height:25px;
  5729. padding:2px 2px 2px 2px;
  5730. font-family:'Microsoft YaHei', sans-serif;
  5731. font-weight:400;
  5732. font-style:normal;
  5733. font-size:10px;
  5734. letter-spacing:normal;
  5735. color:#000000;
  5736. vertical-align:none;
  5737. text-align:left;
  5738. text-transform:none;
  5739. background-color:transparent;
  5740. border-color:transparent;
  5741. }
  5742. #u23080_input.disabled {
  5743. position:absolute;
  5744. left:0px;
  5745. top:0px;
  5746. width:127px;
  5747. height:25px;
  5748. padding:2px 2px 2px 2px;
  5749. font-family:'Microsoft YaHei', sans-serif;
  5750. font-weight:400;
  5751. font-style:normal;
  5752. font-size:10px;
  5753. letter-spacing:normal;
  5754. color:#000000;
  5755. vertical-align:none;
  5756. text-align:left;
  5757. text-transform:none;
  5758. background-color:transparent;
  5759. border-color:transparent;
  5760. }
  5761. #u23080_div {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:127px;
  5767. height:25px;
  5768. background:inherit;
  5769. background-color:rgba(255, 255, 255, 1);
  5770. border:none;
  5771. border-radius:0px;
  5772. -moz-box-shadow:none;
  5773. -webkit-box-shadow:none;
  5774. box-shadow:none;
  5775. font-family:'Microsoft YaHei', sans-serif;
  5776. font-weight:400;
  5777. font-style:normal;
  5778. font-size:10px;
  5779. }
  5780. #u23080 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:510px;
  5784. top:101px;
  5785. width:127px;
  5786. height:25px;
  5787. display:flex;
  5788. font-family:'Microsoft YaHei', sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. font-size:10px;
  5792. }
  5793. #u23080 .text {
  5794. position:absolute;
  5795. align-self:center;
  5796. padding:2px 2px 2px 2px;
  5797. box-sizing:border-box;
  5798. width:100%;
  5799. }
  5800. #u23080_div.disabled {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:0px;
  5804. top:0px;
  5805. width:127px;
  5806. height:25px;
  5807. background:inherit;
  5808. background-color:rgba(240, 240, 240, 1);
  5809. border:none;
  5810. border-radius:0px;
  5811. -moz-box-shadow:none;
  5812. -webkit-box-shadow:none;
  5813. box-shadow:none;
  5814. font-family:'Microsoft YaHei', sans-serif;
  5815. font-weight:400;
  5816. font-style:normal;
  5817. font-size:10px;
  5818. }
  5819. #u23080.disabled {
  5820. }
  5821. #u23081_div {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:0px;
  5825. top:0px;
  5826. width:73px;
  5827. height:50px;
  5828. background:inherit;
  5829. background-color:rgba(255, 255, 255, 0);
  5830. border:none;
  5831. border-left:0px;
  5832. border-top:0px;
  5833. border-right:0px;
  5834. border-radius:0px;
  5835. border-bottom-right-radius:0px;
  5836. border-bottom-left-radius:0px;
  5837. -moz-box-shadow:none;
  5838. -webkit-box-shadow:none;
  5839. box-shadow:none;
  5840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5841. font-weight:400;
  5842. font-style:normal;
  5843. font-size:18px;
  5844. }
  5845. #u23081 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:351px;
  5849. top:50px;
  5850. width:73px;
  5851. height:50px;
  5852. display:flex;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:18px;
  5857. }
  5858. #u23081 .text {
  5859. position:absolute;
  5860. align-self:center;
  5861. padding:0px 0px 0px 0px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u23081_text {
  5866. border-width:0px;
  5867. white-space:nowrap;
  5868. text-transform:none;
  5869. }
  5870. #u23082 {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:0px;
  5876. height:0px;
  5877. }
  5878. #u23083_div {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:100px;
  5884. height:100px;
  5885. background:inherit;
  5886. background-color:rgba(255, 255, 255, 1);
  5887. box-sizing:border-box;
  5888. border-width:1px;
  5889. border-style:solid;
  5890. border-color:rgba(242, 242, 242, 1);
  5891. border-radius:4px;
  5892. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5893. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5894. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5896. font-weight:400;
  5897. font-style:normal;
  5898. font-size:14px;
  5899. text-align:left;
  5900. }
  5901. #u23083 {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:1429px;
  5905. top:259px;
  5906. width:100px;
  5907. height:100px;
  5908. display:flex;
  5909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:14px;
  5913. text-align:left;
  5914. }
  5915. #u23083 .text {
  5916. position:absolute;
  5917. align-self:center;
  5918. padding:2px 2px 2px 2px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u23083_text {
  5923. border-width:0px;
  5924. word-wrap:break-word;
  5925. text-transform:none;
  5926. visibility:hidden;
  5927. }
  5928. #u23084_div {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:83px;
  5934. height:40px;
  5935. background:inherit;
  5936. background-color:rgba(255, 255, 255, 1);
  5937. box-sizing:border-box;
  5938. border-width:1px;
  5939. border-style:solid;
  5940. border-color:rgba(215, 215, 215, 1);
  5941. border-left:0px;
  5942. border-top:0px;
  5943. border-right:0px;
  5944. border-radius:0px;
  5945. border-bottom-right-radius:0px;
  5946. border-bottom-left-radius:0px;
  5947. -moz-box-shadow:none;
  5948. -webkit-box-shadow:none;
  5949. box-shadow:none;
  5950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5951. font-weight:400;
  5952. font-style:normal;
  5953. font-size:14px;
  5954. }
  5955. #u23084 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:1437px;
  5959. top:269px;
  5960. width:83px;
  5961. height:40px;
  5962. display:flex;
  5963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5964. font-weight:400;
  5965. font-style:normal;
  5966. font-size:14px;
  5967. }
  5968. #u23084 .text {
  5969. position:absolute;
  5970. align-self:center;
  5971. padding:2px 2px 2px 2px;
  5972. box-sizing:border-box;
  5973. width:100%;
  5974. }
  5975. #u23084_text {
  5976. border-width:0px;
  5977. word-wrap:break-word;
  5978. text-transform:none;
  5979. }
  5980. #u23085_div {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:83px;
  5986. height:40px;
  5987. background:inherit;
  5988. background-color:rgba(255, 255, 255, 1);
  5989. border:none;
  5990. border-left:0px;
  5991. border-top:0px;
  5992. border-right:0px;
  5993. border-radius:0px;
  5994. border-bottom-right-radius:0px;
  5995. border-bottom-left-radius:0px;
  5996. -moz-box-shadow:none;
  5997. -webkit-box-shadow:none;
  5998. box-shadow:none;
  5999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:14px;
  6003. color:#D9001B;
  6004. }
  6005. #u23085 {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:1437px;
  6009. top:309px;
  6010. width:83px;
  6011. height:40px;
  6012. display:flex;
  6013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6014. font-weight:400;
  6015. font-style:normal;
  6016. font-size:14px;
  6017. color:#D9001B;
  6018. }
  6019. #u23085 .text {
  6020. position:absolute;
  6021. align-self:center;
  6022. padding:2px 2px 2px 2px;
  6023. box-sizing:border-box;
  6024. width:100%;
  6025. }
  6026. #u23085_text {
  6027. border-width:0px;
  6028. word-wrap:break-word;
  6029. text-transform:none;
  6030. }
  6031. #u23086 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:0px;
  6035. top:0px;
  6036. width:0px;
  6037. height:0px;
  6038. }
  6039. #u23087_div {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:0px;
  6043. top:0px;
  6044. width:140px;
  6045. height:30px;
  6046. background:inherit;
  6047. background-color:rgba(255, 255, 255, 1);
  6048. box-sizing:border-box;
  6049. border-width:1px;
  6050. border-style:solid;
  6051. border-color:rgba(215, 215, 215, 1);
  6052. border-radius:4px;
  6053. -moz-box-shadow:none;
  6054. -webkit-box-shadow:none;
  6055. box-shadow:none;
  6056. font-size:11px;
  6057. }
  6058. #u23087 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:352px;
  6062. top:100px;
  6063. width:140px;
  6064. height:30px;
  6065. display:flex;
  6066. font-size:11px;
  6067. }
  6068. #u23087 .text {
  6069. position:absolute;
  6070. align-self:center;
  6071. padding:2px 2px 2px 2px;
  6072. box-sizing:border-box;
  6073. width:100%;
  6074. }
  6075. #u23087_text {
  6076. border-width:0px;
  6077. word-wrap:break-word;
  6078. text-transform:none;
  6079. visibility:hidden;
  6080. }
  6081. #u23088_input {
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:120px;
  6086. height:23px;
  6087. padding:2px 2px 2px 2px;
  6088. font-family:'ArialMT', 'Arial', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:11px;
  6092. letter-spacing:normal;
  6093. color:#AAAAAA;
  6094. vertical-align:none;
  6095. text-align:left;
  6096. text-transform:none;
  6097. background-color:transparent;
  6098. border-color:transparent;
  6099. }
  6100. #u23088_input.disabled {
  6101. position:absolute;
  6102. left:0px;
  6103. top:0px;
  6104. width:120px;
  6105. height:23px;
  6106. padding:2px 2px 2px 2px;
  6107. font-family:'ArialMT', 'Arial', sans-serif;
  6108. font-weight:400;
  6109. font-style:normal;
  6110. font-size:11px;
  6111. letter-spacing:normal;
  6112. color:#AAAAAA;
  6113. vertical-align:none;
  6114. text-align:left;
  6115. text-transform:none;
  6116. background-color:transparent;
  6117. border-color:transparent;
  6118. }
  6119. #u23088_div {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:120px;
  6125. height:23px;
  6126. background:inherit;
  6127. background-color:rgba(255, 255, 255, 1);
  6128. border:none;
  6129. border-radius:0px;
  6130. -moz-box-shadow:none;
  6131. -webkit-box-shadow:none;
  6132. box-shadow:none;
  6133. font-size:11px;
  6134. color:#AAAAAA;
  6135. }
  6136. #u23088 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:359px;
  6140. top:102px;
  6141. width:120px;
  6142. height:23px;
  6143. display:flex;
  6144. font-size:11px;
  6145. color:#AAAAAA;
  6146. }
  6147. #u23088 .text {
  6148. position:absolute;
  6149. align-self:flex-start;
  6150. padding:2px 2px 2px 2px;
  6151. box-sizing:border-box;
  6152. width:100%;
  6153. }
  6154. #u23088_div.disabled {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:120px;
  6160. height:23px;
  6161. background:inherit;
  6162. background-color:rgba(240, 240, 240, 1);
  6163. border:none;
  6164. border-radius:0px;
  6165. -moz-box-shadow:none;
  6166. -webkit-box-shadow:none;
  6167. box-shadow:none;
  6168. font-size:11px;
  6169. color:#AAAAAA;
  6170. }
  6171. #u23088.disabled {
  6172. }
  6173. .u23088_input_option {
  6174. font-size:11px;
  6175. }
  6176. #u23089_div {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:984px;
  6182. height:191px;
  6183. background:inherit;
  6184. background-color:rgba(255, 255, 255, 1);
  6185. box-sizing:border-box;
  6186. border-width:1px;
  6187. border-style:solid;
  6188. border-color:rgba(217, 0, 27, 1);
  6189. border-radius:0px;
  6190. -moz-box-shadow:none;
  6191. -webkit-box-shadow:none;
  6192. box-shadow:none;
  6193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6194. font-weight:400;
  6195. font-style:normal;
  6196. font-size:18px;
  6197. color:#D9001B;
  6198. line-height:40px;
  6199. }
  6200. #u23089 {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:1702px;
  6204. top:89px;
  6205. width:984px;
  6206. height:191px;
  6207. display:flex;
  6208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6209. font-weight:400;
  6210. font-style:normal;
  6211. font-size:18px;
  6212. color:#D9001B;
  6213. line-height:40px;
  6214. }
  6215. #u23089 .text {
  6216. position:absolute;
  6217. align-self:flex-start;
  6218. padding:10px 10px 10px 10px;
  6219. box-sizing:border-box;
  6220. width:100%;
  6221. }
  6222. #u23089_text {
  6223. border-width:0px;
  6224. word-wrap:break-word;
  6225. text-transform:none;
  6226. }
  6227. #u23090_div {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:1000px;
  6233. height:40px;
  6234. background:inherit;
  6235. background-color:rgba(217, 0, 27, 1);
  6236. border:none;
  6237. border-radius:0px;
  6238. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6239. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6240. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  6241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6242. font-weight:400;
  6243. font-style:normal;
  6244. font-size:14px;
  6245. color:#FFFFFF;
  6246. line-height:20px;
  6247. }
  6248. #u23090 {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:1702px;
  6252. top:552px;
  6253. width:1000px;
  6254. height:40px;
  6255. display:flex;
  6256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6257. font-weight:400;
  6258. font-style:normal;
  6259. font-size:14px;
  6260. color:#FFFFFF;
  6261. line-height:20px;
  6262. }
  6263. #u23090 .text {
  6264. position:absolute;
  6265. align-self:flex-start;
  6266. padding:10px 10px 10px 10px;
  6267. box-sizing:border-box;
  6268. width:100%;
  6269. }
  6270. #u23090_text {
  6271. border-width:0px;
  6272. word-wrap:break-word;
  6273. text-transform:none;
  6274. }
  6275. #u23091 {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:1702px;
  6279. top:602px;
  6280. width:960px;
  6281. height:280px;
  6282. }
  6283. #u23092_img {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:160px;
  6289. height:40px;
  6290. }
  6291. #u23092 {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:160px;
  6297. height:40px;
  6298. display:flex;
  6299. font-size:14px;
  6300. color:#FFFFFF;
  6301. text-align:left;
  6302. line-height:30px;
  6303. }
  6304. #u23092 .text {
  6305. position:absolute;
  6306. align-self:center;
  6307. padding:5px 10px 5px 10px;
  6308. box-sizing:border-box;
  6309. width:100%;
  6310. }
  6311. #u23092_text {
  6312. border-width:0px;
  6313. word-wrap:break-word;
  6314. text-transform:none;
  6315. }
  6316. #u23093_img {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:400px;
  6322. height:40px;
  6323. }
  6324. #u23093 {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:160px;
  6328. top:0px;
  6329. width:400px;
  6330. height:40px;
  6331. display:flex;
  6332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6333. font-weight:400;
  6334. font-style:normal;
  6335. font-size:14px;
  6336. color:#FFFFFF;
  6337. text-align:left;
  6338. line-height:30px;
  6339. }
  6340. #u23093 .text {
  6341. position:absolute;
  6342. align-self:center;
  6343. padding:5px 10px 5px 10px;
  6344. box-sizing:border-box;
  6345. width:100%;
  6346. }
  6347. #u23093_text {
  6348. border-width:0px;
  6349. word-wrap:break-word;
  6350. text-transform:none;
  6351. }
  6352. #u23094_img {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:0px;
  6356. top:0px;
  6357. width:400px;
  6358. height:40px;
  6359. }
  6360. #u23094 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:560px;
  6364. top:0px;
  6365. width:400px;
  6366. height:40px;
  6367. display:flex;
  6368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6369. font-weight:400;
  6370. font-style:normal;
  6371. font-size:14px;
  6372. color:#FFFFFF;
  6373. text-align:left;
  6374. line-height:30px;
  6375. }
  6376. #u23094 .text {
  6377. position:absolute;
  6378. align-self:center;
  6379. padding:5px 10px 5px 10px;
  6380. box-sizing:border-box;
  6381. width:100%;
  6382. }
  6383. #u23094_text {
  6384. border-width:0px;
  6385. word-wrap:break-word;
  6386. text-transform:none;
  6387. }
  6388. #u23095_img {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:0px;
  6392. top:0px;
  6393. width:160px;
  6394. height:40px;
  6395. }
  6396. #u23095 {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:0px;
  6400. top:40px;
  6401. width:160px;
  6402. height:40px;
  6403. display:flex;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:14px;
  6408. text-align:left;
  6409. line-height:30px;
  6410. }
  6411. #u23095 .text {
  6412. position:absolute;
  6413. align-self:center;
  6414. padding:5px 10px 5px 10px;
  6415. box-sizing:border-box;
  6416. width:100%;
  6417. }
  6418. #u23095_text {
  6419. border-width:0px;
  6420. word-wrap:break-word;
  6421. text-transform:none;
  6422. }
  6423. #u23096_img {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:400px;
  6429. height:40px;
  6430. }
  6431. #u23096 {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:160px;
  6435. top:40px;
  6436. width:400px;
  6437. height:40px;
  6438. display:flex;
  6439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6440. font-weight:400;
  6441. font-style:normal;
  6442. font-size:14px;
  6443. text-align:left;
  6444. line-height:30px;
  6445. }
  6446. #u23096 .text {
  6447. position:absolute;
  6448. align-self:center;
  6449. padding:5px 10px 5px 10px;
  6450. box-sizing:border-box;
  6451. width:100%;
  6452. }
  6453. #u23096_text {
  6454. border-width:0px;
  6455. word-wrap:break-word;
  6456. text-transform:none;
  6457. }
  6458. #u23097_img {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:400px;
  6464. height:40px;
  6465. }
  6466. #u23097 {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:560px;
  6470. top:40px;
  6471. width:400px;
  6472. height:40px;
  6473. display:flex;
  6474. font-size:14px;
  6475. text-align:left;
  6476. line-height:30px;
  6477. }
  6478. #u23097 .text {
  6479. position:absolute;
  6480. align-self:center;
  6481. padding:5px 10px 5px 10px;
  6482. box-sizing:border-box;
  6483. width:100%;
  6484. }
  6485. #u23097_text {
  6486. border-width:0px;
  6487. word-wrap:break-word;
  6488. text-transform:none;
  6489. visibility:hidden;
  6490. }
  6491. #u23098_img {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:160px;
  6497. height:40px;
  6498. }
  6499. #u23098 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:0px;
  6503. top:80px;
  6504. width:160px;
  6505. height:40px;
  6506. display:flex;
  6507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:14px;
  6511. text-align:left;
  6512. line-height:30px;
  6513. }
  6514. #u23098 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:5px 10px 5px 10px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u23098_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. }
  6526. #u23099_img {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:400px;
  6532. height:40px;
  6533. }
  6534. #u23099 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:160px;
  6538. top:80px;
  6539. width:400px;
  6540. height:40px;
  6541. display:flex;
  6542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:14px;
  6546. text-align:left;
  6547. line-height:30px;
  6548. }
  6549. #u23099 .text {
  6550. position:absolute;
  6551. align-self:center;
  6552. padding:5px 10px 5px 10px;
  6553. box-sizing:border-box;
  6554. width:100%;
  6555. }
  6556. #u23099_text {
  6557. border-width:0px;
  6558. word-wrap:break-word;
  6559. text-transform:none;
  6560. }
  6561. #u23100_img {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:400px;
  6567. height:40px;
  6568. }
  6569. #u23100 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:560px;
  6573. top:80px;
  6574. width:400px;
  6575. height:40px;
  6576. display:flex;
  6577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:14px;
  6581. text-align:left;
  6582. line-height:30px;
  6583. }
  6584. #u23100 .text {
  6585. position:absolute;
  6586. align-self:center;
  6587. padding:5px 10px 5px 10px;
  6588. box-sizing:border-box;
  6589. width:100%;
  6590. }
  6591. #u23100_text {
  6592. border-width:0px;
  6593. word-wrap:break-word;
  6594. text-transform:none;
  6595. }
  6596. #u23101_img {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:160px;
  6602. height:40px;
  6603. }
  6604. #u23101 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:120px;
  6609. width:160px;
  6610. height:40px;
  6611. display:flex;
  6612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:14px;
  6616. text-align:left;
  6617. line-height:30px;
  6618. }
  6619. #u23101 .text {
  6620. position:absolute;
  6621. align-self:center;
  6622. padding:5px 10px 5px 10px;
  6623. box-sizing:border-box;
  6624. width:100%;
  6625. }
  6626. #u23101_text {
  6627. border-width:0px;
  6628. word-wrap:break-word;
  6629. text-transform:none;
  6630. }
  6631. #u23102_img {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:400px;
  6637. height:40px;
  6638. }
  6639. #u23102 {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:160px;
  6643. top:120px;
  6644. width:400px;
  6645. height:40px;
  6646. display:flex;
  6647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:14px;
  6651. text-align:left;
  6652. line-height:30px;
  6653. }
  6654. #u23102 .text {
  6655. position:absolute;
  6656. align-self:center;
  6657. padding:5px 10px 5px 10px;
  6658. box-sizing:border-box;
  6659. width:100%;
  6660. }
  6661. #u23102_text {
  6662. border-width:0px;
  6663. word-wrap:break-word;
  6664. text-transform:none;
  6665. }
  6666. #u23103_img {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:400px;
  6672. height:40px;
  6673. }
  6674. #u23103 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:560px;
  6678. top:120px;
  6679. width:400px;
  6680. height:40px;
  6681. display:flex;
  6682. font-size:14px;
  6683. text-align:left;
  6684. line-height:30px;
  6685. }
  6686. #u23103 .text {
  6687. position:absolute;
  6688. align-self:center;
  6689. padding:5px 10px 5px 10px;
  6690. box-sizing:border-box;
  6691. width:100%;
  6692. }
  6693. #u23103_text {
  6694. border-width:0px;
  6695. word-wrap:break-word;
  6696. text-transform:none;
  6697. visibility:hidden;
  6698. }
  6699. #u23104_img {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:0px;
  6703. top:0px;
  6704. width:160px;
  6705. height:40px;
  6706. }
  6707. #u23104 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:0px;
  6711. top:160px;
  6712. width:160px;
  6713. height:40px;
  6714. display:flex;
  6715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6716. font-weight:400;
  6717. font-style:normal;
  6718. font-size:14px;
  6719. text-align:left;
  6720. line-height:30px;
  6721. }
  6722. #u23104 .text {
  6723. position:absolute;
  6724. align-self:center;
  6725. padding:5px 10px 5px 10px;
  6726. box-sizing:border-box;
  6727. width:100%;
  6728. }
  6729. #u23104_text {
  6730. border-width:0px;
  6731. word-wrap:break-word;
  6732. text-transform:none;
  6733. }
  6734. #u23105_img {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:0px;
  6738. top:0px;
  6739. width:400px;
  6740. height:40px;
  6741. }
  6742. #u23105 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:160px;
  6746. top:160px;
  6747. width:400px;
  6748. height:40px;
  6749. display:flex;
  6750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6751. font-weight:400;
  6752. font-style:normal;
  6753. font-size:14px;
  6754. text-align:left;
  6755. line-height:30px;
  6756. }
  6757. #u23105 .text {
  6758. position:absolute;
  6759. align-self:center;
  6760. padding:5px 10px 5px 10px;
  6761. box-sizing:border-box;
  6762. width:100%;
  6763. }
  6764. #u23105_text {
  6765. border-width:0px;
  6766. word-wrap:break-word;
  6767. text-transform:none;
  6768. }
  6769. #u23106_img {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:0px;
  6773. top:0px;
  6774. width:400px;
  6775. height:40px;
  6776. }
  6777. #u23106 {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:560px;
  6781. top:160px;
  6782. width:400px;
  6783. height:40px;
  6784. display:flex;
  6785. font-size:14px;
  6786. text-align:left;
  6787. line-height:30px;
  6788. }
  6789. #u23106 .text {
  6790. position:absolute;
  6791. align-self:center;
  6792. padding:5px 10px 5px 10px;
  6793. box-sizing:border-box;
  6794. width:100%;
  6795. }
  6796. #u23106_text {
  6797. border-width:0px;
  6798. word-wrap:break-word;
  6799. text-transform:none;
  6800. visibility:hidden;
  6801. }
  6802. #u23107_img {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:0px;
  6806. top:0px;
  6807. width:160px;
  6808. height:40px;
  6809. }
  6810. #u23107 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:0px;
  6814. top:200px;
  6815. width:160px;
  6816. height:40px;
  6817. display:flex;
  6818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6819. font-weight:400;
  6820. font-style:normal;
  6821. font-size:14px;
  6822. text-align:left;
  6823. line-height:30px;
  6824. }
  6825. #u23107 .text {
  6826. position:absolute;
  6827. align-self:center;
  6828. padding:5px 10px 5px 10px;
  6829. box-sizing:border-box;
  6830. width:100%;
  6831. }
  6832. #u23107_text {
  6833. border-width:0px;
  6834. word-wrap:break-word;
  6835. text-transform:none;
  6836. }
  6837. #u23108_img {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:0px;
  6841. top:0px;
  6842. width:400px;
  6843. height:40px;
  6844. }
  6845. #u23108 {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:160px;
  6849. top:200px;
  6850. width:400px;
  6851. height:40px;
  6852. display:flex;
  6853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6854. font-weight:400;
  6855. font-style:normal;
  6856. font-size:14px;
  6857. text-align:left;
  6858. line-height:30px;
  6859. }
  6860. #u23108 .text {
  6861. position:absolute;
  6862. align-self:center;
  6863. padding:5px 10px 5px 10px;
  6864. box-sizing:border-box;
  6865. width:100%;
  6866. }
  6867. #u23108_text {
  6868. border-width:0px;
  6869. word-wrap:break-word;
  6870. text-transform:none;
  6871. }
  6872. #u23109_img {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:0px;
  6876. top:0px;
  6877. width:400px;
  6878. height:40px;
  6879. }
  6880. #u23109 {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:560px;
  6884. top:200px;
  6885. width:400px;
  6886. height:40px;
  6887. display:flex;
  6888. font-size:14px;
  6889. text-align:left;
  6890. line-height:30px;
  6891. }
  6892. #u23109 .text {
  6893. position:absolute;
  6894. align-self:center;
  6895. padding:5px 10px 5px 10px;
  6896. box-sizing:border-box;
  6897. width:100%;
  6898. }
  6899. #u23109_text {
  6900. border-width:0px;
  6901. word-wrap:break-word;
  6902. text-transform:none;
  6903. visibility:hidden;
  6904. }
  6905. #u23110_img {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:0px;
  6909. top:0px;
  6910. width:160px;
  6911. height:40px;
  6912. }
  6913. #u23110 {
  6914. border-width:0px;
  6915. position:absolute;
  6916. left:0px;
  6917. top:240px;
  6918. width:160px;
  6919. height:40px;
  6920. display:flex;
  6921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6922. font-weight:400;
  6923. font-style:normal;
  6924. font-size:14px;
  6925. text-align:left;
  6926. line-height:30px;
  6927. }
  6928. #u23110 .text {
  6929. position:absolute;
  6930. align-self:center;
  6931. padding:5px 10px 5px 10px;
  6932. box-sizing:border-box;
  6933. width:100%;
  6934. }
  6935. #u23110_text {
  6936. border-width:0px;
  6937. word-wrap:break-word;
  6938. text-transform:none;
  6939. }
  6940. #u23111_img {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:0px;
  6944. top:0px;
  6945. width:400px;
  6946. height:40px;
  6947. }
  6948. #u23111 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:160px;
  6952. top:240px;
  6953. width:400px;
  6954. height:40px;
  6955. display:flex;
  6956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:14px;
  6960. text-align:left;
  6961. line-height:30px;
  6962. }
  6963. #u23111 .text {
  6964. position:absolute;
  6965. align-self:center;
  6966. padding:5px 10px 5px 10px;
  6967. box-sizing:border-box;
  6968. width:100%;
  6969. }
  6970. #u23111_text {
  6971. border-width:0px;
  6972. word-wrap:break-word;
  6973. text-transform:none;
  6974. }
  6975. #u23112_img {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:0px;
  6979. top:0px;
  6980. width:400px;
  6981. height:40px;
  6982. }
  6983. #u23112 {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:560px;
  6987. top:240px;
  6988. width:400px;
  6989. height:40px;
  6990. display:flex;
  6991. font-size:14px;
  6992. text-align:left;
  6993. line-height:30px;
  6994. }
  6995. #u23112 .text {
  6996. position:absolute;
  6997. align-self:center;
  6998. padding:5px 10px 5px 10px;
  6999. box-sizing:border-box;
  7000. width:100%;
  7001. }
  7002. #u23112_text {
  7003. border-width:0px;
  7004. word-wrap:break-word;
  7005. text-transform:none;
  7006. visibility:hidden;
  7007. }
  7008. #u23113_div {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:0px;
  7012. top:0px;
  7013. width:1000px;
  7014. height:40px;
  7015. background:inherit;
  7016. background-color:rgba(217, 0, 27, 1);
  7017. border:none;
  7018. border-radius:0px;
  7019. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  7020. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  7021. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  7022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7023. font-weight:400;
  7024. font-style:normal;
  7025. font-size:14px;
  7026. color:#FFFFFF;
  7027. line-height:20px;
  7028. }
  7029. #u23113 {
  7030. border-width:0px;
  7031. position:absolute;
  7032. left:1702px;
  7033. top:39px;
  7034. width:1000px;
  7035. height:40px;
  7036. display:flex;
  7037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7038. font-weight:400;
  7039. font-style:normal;
  7040. font-size:14px;
  7041. color:#FFFFFF;
  7042. line-height:20px;
  7043. }
  7044. #u23113 .text {
  7045. position:absolute;
  7046. align-self:flex-start;
  7047. padding:10px 10px 10px 10px;
  7048. box-sizing:border-box;
  7049. width:100%;
  7050. }
  7051. #u23113_text {
  7052. border-width:0px;
  7053. word-wrap:break-word;
  7054. text-transform:none;
  7055. }
  7056. #u23114_div {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:0px;
  7060. top:0px;
  7061. width:1000px;
  7062. height:40px;
  7063. background:inherit;
  7064. background-color:rgba(217, 0, 27, 1);
  7065. border:none;
  7066. border-radius:0px;
  7067. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  7068. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  7069. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  7070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:14px;
  7074. color:#FFFFFF;
  7075. line-height:20px;
  7076. }
  7077. #u23114 {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:1702px;
  7081. top:912px;
  7082. width:1000px;
  7083. height:40px;
  7084. display:flex;
  7085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7086. font-weight:400;
  7087. font-style:normal;
  7088. font-size:14px;
  7089. color:#FFFFFF;
  7090. line-height:20px;
  7091. }
  7092. #u23114 .text {
  7093. position:absolute;
  7094. align-self:flex-start;
  7095. padding:10px 10px 10px 10px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u23114_text {
  7100. border-width:0px;
  7101. word-wrap:break-word;
  7102. text-transform:none;
  7103. }
  7104. #u23115_div {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:1000px;
  7110. height:40px;
  7111. background:inherit;
  7112. background-color:rgba(217, 0, 27, 1);
  7113. border:none;
  7114. border-radius:0px;
  7115. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  7116. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  7117. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  7118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7119. font-weight:400;
  7120. font-style:normal;
  7121. font-size:14px;
  7122. color:#FFFFFF;
  7123. line-height:20px;
  7124. }
  7125. #u23115 {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:1702px;
  7129. top:310px;
  7130. width:1000px;
  7131. height:40px;
  7132. display:flex;
  7133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7134. font-weight:400;
  7135. font-style:normal;
  7136. font-size:14px;
  7137. color:#FFFFFF;
  7138. line-height:20px;
  7139. }
  7140. #u23115 .text {
  7141. position:absolute;
  7142. align-self:flex-start;
  7143. padding:10px 10px 10px 10px;
  7144. box-sizing:border-box;
  7145. width:100%;
  7146. }
  7147. #u23115_text {
  7148. border-width:0px;
  7149. word-wrap:break-word;
  7150. text-transform:none;
  7151. }
  7152. #u23116 {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:1702px;
  7156. top:362px;
  7157. width:960px;
  7158. height:160px;
  7159. }
  7160. #u23117_img {
  7161. border-width:0px;
  7162. position:absolute;
  7163. left:0px;
  7164. top:0px;
  7165. width:160px;
  7166. height:40px;
  7167. }
  7168. #u23117 {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:0px;
  7172. top:0px;
  7173. width:160px;
  7174. height:40px;
  7175. display:flex;
  7176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7177. font-weight:400;
  7178. font-style:normal;
  7179. font-size:14px;
  7180. color:#FFFFFF;
  7181. text-align:left;
  7182. line-height:30px;
  7183. }
  7184. #u23117 .text {
  7185. position:absolute;
  7186. align-self:center;
  7187. padding:5px 10px 5px 10px;
  7188. box-sizing:border-box;
  7189. width:100%;
  7190. }
  7191. #u23117_text {
  7192. border-width:0px;
  7193. word-wrap:break-word;
  7194. text-transform:none;
  7195. }
  7196. #u23118_img {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:400px;
  7202. height:40px;
  7203. }
  7204. #u23118 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:160px;
  7208. top:0px;
  7209. width:400px;
  7210. height:40px;
  7211. display:flex;
  7212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7213. font-weight:400;
  7214. font-style:normal;
  7215. font-size:14px;
  7216. color:#FFFFFF;
  7217. text-align:left;
  7218. line-height:30px;
  7219. }
  7220. #u23118 .text {
  7221. position:absolute;
  7222. align-self:center;
  7223. padding:5px 10px 5px 10px;
  7224. box-sizing:border-box;
  7225. width:100%;
  7226. }
  7227. #u23118_text {
  7228. border-width:0px;
  7229. word-wrap:break-word;
  7230. text-transform:none;
  7231. }
  7232. #u23119_img {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:0px;
  7236. top:0px;
  7237. width:400px;
  7238. height:40px;
  7239. }
  7240. #u23119 {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:560px;
  7244. top:0px;
  7245. width:400px;
  7246. height:40px;
  7247. display:flex;
  7248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7249. font-weight:400;
  7250. font-style:normal;
  7251. font-size:14px;
  7252. color:#FFFFFF;
  7253. text-align:left;
  7254. line-height:30px;
  7255. }
  7256. #u23119 .text {
  7257. position:absolute;
  7258. align-self:center;
  7259. padding:5px 10px 5px 10px;
  7260. box-sizing:border-box;
  7261. width:100%;
  7262. }
  7263. #u23119_text {
  7264. border-width:0px;
  7265. word-wrap:break-word;
  7266. text-transform:none;
  7267. }
  7268. #u23120_img {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:0px;
  7272. top:0px;
  7273. width:160px;
  7274. height:40px;
  7275. }
  7276. #u23120 {
  7277. border-width:0px;
  7278. position:absolute;
  7279. left:0px;
  7280. top:40px;
  7281. width:160px;
  7282. height:40px;
  7283. display:flex;
  7284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7285. font-weight:400;
  7286. font-style:normal;
  7287. font-size:14px;
  7288. text-align:left;
  7289. line-height:30px;
  7290. }
  7291. #u23120 .text {
  7292. position:absolute;
  7293. align-self:center;
  7294. padding:5px 10px 5px 10px;
  7295. box-sizing:border-box;
  7296. width:100%;
  7297. }
  7298. #u23120_text {
  7299. border-width:0px;
  7300. word-wrap:break-word;
  7301. text-transform:none;
  7302. }
  7303. #u23121_img {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:400px;
  7309. height:40px;
  7310. }
  7311. #u23121 {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:160px;
  7315. top:40px;
  7316. width:400px;
  7317. height:40px;
  7318. display:flex;
  7319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:14px;
  7323. text-align:left;
  7324. line-height:30px;
  7325. }
  7326. #u23121 .text {
  7327. position:absolute;
  7328. align-self:center;
  7329. padding:5px 10px 5px 10px;
  7330. box-sizing:border-box;
  7331. width:100%;
  7332. }
  7333. #u23121_text {
  7334. border-width:0px;
  7335. word-wrap:break-word;
  7336. text-transform:none;
  7337. }
  7338. #u23122_img {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:400px;
  7344. height:40px;
  7345. }
  7346. #u23122 {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:560px;
  7350. top:40px;
  7351. width:400px;
  7352. height:40px;
  7353. display:flex;
  7354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7355. font-weight:400;
  7356. font-style:normal;
  7357. font-size:14px;
  7358. text-align:left;
  7359. line-height:30px;
  7360. }
  7361. #u23122 .text {
  7362. position:absolute;
  7363. align-self:center;
  7364. padding:5px 10px 5px 10px;
  7365. box-sizing:border-box;
  7366. width:100%;
  7367. }
  7368. #u23122_text {
  7369. border-width:0px;
  7370. word-wrap:break-word;
  7371. text-transform:none;
  7372. }
  7373. #u23123_img {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:0px;
  7377. top:0px;
  7378. width:160px;
  7379. height:40px;
  7380. }
  7381. #u23123 {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:0px;
  7385. top:80px;
  7386. width:160px;
  7387. height:40px;
  7388. display:flex;
  7389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7390. font-weight:400;
  7391. font-style:normal;
  7392. font-size:14px;
  7393. text-align:left;
  7394. line-height:30px;
  7395. }
  7396. #u23123 .text {
  7397. position:absolute;
  7398. align-self:center;
  7399. padding:5px 10px 5px 10px;
  7400. box-sizing:border-box;
  7401. width:100%;
  7402. }
  7403. #u23123_text {
  7404. border-width:0px;
  7405. word-wrap:break-word;
  7406. text-transform:none;
  7407. }
  7408. #u23124_img {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:0px;
  7412. top:0px;
  7413. width:400px;
  7414. height:40px;
  7415. }
  7416. #u23124 {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:160px;
  7420. top:80px;
  7421. width:400px;
  7422. height:40px;
  7423. display:flex;
  7424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7425. font-weight:400;
  7426. font-style:normal;
  7427. font-size:14px;
  7428. text-align:left;
  7429. line-height:30px;
  7430. }
  7431. #u23124 .text {
  7432. position:absolute;
  7433. align-self:center;
  7434. padding:5px 10px 5px 10px;
  7435. box-sizing:border-box;
  7436. width:100%;
  7437. }
  7438. #u23124_text {
  7439. border-width:0px;
  7440. word-wrap:break-word;
  7441. text-transform:none;
  7442. }
  7443. #u23125_img {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:0px;
  7447. top:0px;
  7448. width:400px;
  7449. height:40px;
  7450. }
  7451. #u23125 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:560px;
  7455. top:80px;
  7456. width:400px;
  7457. height:40px;
  7458. display:flex;
  7459. font-size:14px;
  7460. text-align:left;
  7461. line-height:30px;
  7462. }
  7463. #u23125 .text {
  7464. position:absolute;
  7465. align-self:center;
  7466. padding:5px 10px 5px 10px;
  7467. box-sizing:border-box;
  7468. width:100%;
  7469. }
  7470. #u23125_text {
  7471. border-width:0px;
  7472. word-wrap:break-word;
  7473. text-transform:none;
  7474. visibility:hidden;
  7475. }
  7476. #u23126_img {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:0px;
  7480. top:0px;
  7481. width:160px;
  7482. height:40px;
  7483. }
  7484. #u23126 {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:120px;
  7489. width:160px;
  7490. height:40px;
  7491. display:flex;
  7492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7493. font-weight:400;
  7494. font-style:normal;
  7495. font-size:14px;
  7496. text-align:left;
  7497. line-height:30px;
  7498. }
  7499. #u23126 .text {
  7500. position:absolute;
  7501. align-self:center;
  7502. padding:5px 10px 5px 10px;
  7503. box-sizing:border-box;
  7504. width:100%;
  7505. }
  7506. #u23126_text {
  7507. border-width:0px;
  7508. word-wrap:break-word;
  7509. text-transform:none;
  7510. }
  7511. #u23127_img {
  7512. border-width:0px;
  7513. position:absolute;
  7514. left:0px;
  7515. top:0px;
  7516. width:400px;
  7517. height:40px;
  7518. }
  7519. #u23127 {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:160px;
  7523. top:120px;
  7524. width:400px;
  7525. height:40px;
  7526. display:flex;
  7527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7528. font-weight:400;
  7529. font-style:normal;
  7530. font-size:14px;
  7531. text-align:left;
  7532. line-height:20px;
  7533. }
  7534. #u23127 .text {
  7535. position:absolute;
  7536. align-self:center;
  7537. padding:5px 10px 5px 10px;
  7538. box-sizing:border-box;
  7539. width:100%;
  7540. }
  7541. #u23127_text {
  7542. border-width:0px;
  7543. word-wrap:break-word;
  7544. text-transform:none;
  7545. }
  7546. #u23128_img {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:0px;
  7550. top:0px;
  7551. width:400px;
  7552. height:40px;
  7553. }
  7554. #u23128 {
  7555. border-width:0px;
  7556. position:absolute;
  7557. left:560px;
  7558. top:120px;
  7559. width:400px;
  7560. height:40px;
  7561. display:flex;
  7562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7563. font-weight:400;
  7564. font-style:normal;
  7565. font-size:14px;
  7566. text-align:left;
  7567. line-height:30px;
  7568. }
  7569. #u23128 .text {
  7570. position:absolute;
  7571. align-self:center;
  7572. padding:5px 10px 5px 10px;
  7573. box-sizing:border-box;
  7574. width:100%;
  7575. }
  7576. #u23128_text {
  7577. border-width:0px;
  7578. word-wrap:break-word;
  7579. text-transform:none;
  7580. }
  7581. #u23129 {
  7582. border-width:0px;
  7583. position:absolute;
  7584. left:2776px;
  7585. top:449px;
  7586. width:728px;
  7587. height:320px;
  7588. }
  7589. #u23130_img {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:0px;
  7593. top:0px;
  7594. width:112px;
  7595. height:40px;
  7596. }
  7597. #u23130 {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:0px;
  7601. top:0px;
  7602. width:112px;
  7603. height:40px;
  7604. display:flex;
  7605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7606. font-weight:400;
  7607. font-style:normal;
  7608. font-size:14px;
  7609. color:#FFFFFF;
  7610. text-align:left;
  7611. line-height:30px;
  7612. }
  7613. #u23130 .text {
  7614. position:absolute;
  7615. align-self:center;
  7616. padding:5px 10px 5px 10px;
  7617. box-sizing:border-box;
  7618. width:100%;
  7619. }
  7620. #u23130_text {
  7621. border-width:0px;
  7622. word-wrap:break-word;
  7623. text-transform:none;
  7624. }
  7625. #u23131_img {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:0px;
  7629. top:0px;
  7630. width:131px;
  7631. height:40px;
  7632. }
  7633. #u23131 {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:112px;
  7637. top:0px;
  7638. width:131px;
  7639. height:40px;
  7640. display:flex;
  7641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7642. font-weight:400;
  7643. font-style:normal;
  7644. font-size:14px;
  7645. color:#FFFFFF;
  7646. text-align:left;
  7647. line-height:30px;
  7648. }
  7649. #u23131 .text {
  7650. position:absolute;
  7651. align-self:center;
  7652. padding:5px 10px 5px 10px;
  7653. box-sizing:border-box;
  7654. width:100%;
  7655. }
  7656. #u23131_text {
  7657. border-width:0px;
  7658. word-wrap:break-word;
  7659. text-transform:none;
  7660. }
  7661. #u23132_img {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:99px;
  7667. height:40px;
  7668. }
  7669. #u23132 {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:243px;
  7673. top:0px;
  7674. width:99px;
  7675. height:40px;
  7676. display:flex;
  7677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. font-size:14px;
  7681. color:#FFFFFF;
  7682. text-align:left;
  7683. line-height:30px;
  7684. }
  7685. #u23132 .text {
  7686. position:absolute;
  7687. align-self:center;
  7688. padding:5px 10px 5px 10px;
  7689. box-sizing:border-box;
  7690. width:100%;
  7691. }
  7692. #u23132_text {
  7693. border-width:0px;
  7694. word-wrap:break-word;
  7695. text-transform:none;
  7696. }
  7697. #u23133_img {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:0px;
  7701. top:0px;
  7702. width:299px;
  7703. height:40px;
  7704. }
  7705. #u23133 {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:342px;
  7709. top:0px;
  7710. width:299px;
  7711. height:40px;
  7712. display:flex;
  7713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7714. font-weight:400;
  7715. font-style:normal;
  7716. font-size:14px;
  7717. color:#FFFFFF;
  7718. text-align:left;
  7719. line-height:30px;
  7720. }
  7721. #u23133 .text {
  7722. position:absolute;
  7723. align-self:center;
  7724. padding:5px 10px 5px 10px;
  7725. box-sizing:border-box;
  7726. width:100%;
  7727. }
  7728. #u23133_text {
  7729. border-width:0px;
  7730. word-wrap:break-word;
  7731. text-transform:none;
  7732. }
  7733. #u23134_img {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:0px;
  7737. top:0px;
  7738. width:87px;
  7739. height:40px;
  7740. }
  7741. #u23134 {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:641px;
  7745. top:0px;
  7746. width:87px;
  7747. height:40px;
  7748. display:flex;
  7749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7750. font-weight:400;
  7751. font-style:normal;
  7752. font-size:14px;
  7753. color:#FFFFFF;
  7754. text-align:left;
  7755. line-height:30px;
  7756. }
  7757. #u23134 .text {
  7758. position:absolute;
  7759. align-self:center;
  7760. padding:5px 10px 5px 10px;
  7761. box-sizing:border-box;
  7762. width:100%;
  7763. }
  7764. #u23134_text {
  7765. border-width:0px;
  7766. word-wrap:break-word;
  7767. text-transform:none;
  7768. }
  7769. #u23135_img {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:0px;
  7773. top:0px;
  7774. width:112px;
  7775. height:40px;
  7776. }
  7777. #u23135 {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:40px;
  7782. width:112px;
  7783. height:40px;
  7784. display:flex;
  7785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7786. font-weight:400;
  7787. font-style:normal;
  7788. font-size:14px;
  7789. text-align:left;
  7790. line-height:30px;
  7791. }
  7792. #u23135 .text {
  7793. position:absolute;
  7794. align-self:center;
  7795. padding:5px 10px 5px 10px;
  7796. box-sizing:border-box;
  7797. width:100%;
  7798. }
  7799. #u23135_text {
  7800. border-width:0px;
  7801. word-wrap:break-word;
  7802. text-transform:none;
  7803. }
  7804. #u23136_img {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:0px;
  7808. top:0px;
  7809. width:131px;
  7810. height:40px;
  7811. }
  7812. #u23136 {
  7813. border-width:0px;
  7814. position:absolute;
  7815. left:112px;
  7816. top:40px;
  7817. width:131px;
  7818. height:40px;
  7819. display:flex;
  7820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7821. font-weight:400;
  7822. font-style:normal;
  7823. font-size:14px;
  7824. text-align:left;
  7825. line-height:30px;
  7826. }
  7827. #u23136 .text {
  7828. position:absolute;
  7829. align-self:center;
  7830. padding:5px 10px 5px 10px;
  7831. box-sizing:border-box;
  7832. width:100%;
  7833. }
  7834. #u23136_text {
  7835. border-width:0px;
  7836. word-wrap:break-word;
  7837. text-transform:none;
  7838. }
  7839. #u23137_img {
  7840. border-width:0px;
  7841. position:absolute;
  7842. left:0px;
  7843. top:0px;
  7844. width:99px;
  7845. height:40px;
  7846. }
  7847. #u23137 {
  7848. border-width:0px;
  7849. position:absolute;
  7850. left:243px;
  7851. top:40px;
  7852. width:99px;
  7853. height:40px;
  7854. display:flex;
  7855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7856. font-weight:400;
  7857. font-style:normal;
  7858. font-size:14px;
  7859. text-align:left;
  7860. line-height:30px;
  7861. }
  7862. #u23137 .text {
  7863. position:absolute;
  7864. align-self:center;
  7865. padding:5px 10px 5px 10px;
  7866. box-sizing:border-box;
  7867. width:100%;
  7868. }
  7869. #u23137_text {
  7870. border-width:0px;
  7871. word-wrap:break-word;
  7872. text-transform:none;
  7873. }
  7874. #u23138_img {
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:0px;
  7878. top:0px;
  7879. width:299px;
  7880. height:40px;
  7881. }
  7882. #u23138 {
  7883. border-width:0px;
  7884. position:absolute;
  7885. left:342px;
  7886. top:40px;
  7887. width:299px;
  7888. height:40px;
  7889. display:flex;
  7890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7891. font-weight:400;
  7892. font-style:normal;
  7893. font-size:14px;
  7894. text-align:left;
  7895. line-height:30px;
  7896. }
  7897. #u23138 .text {
  7898. position:absolute;
  7899. align-self:center;
  7900. padding:5px 10px 5px 10px;
  7901. box-sizing:border-box;
  7902. width:100%;
  7903. }
  7904. #u23138_text {
  7905. border-width:0px;
  7906. word-wrap:break-word;
  7907. text-transform:none;
  7908. visibility:hidden;
  7909. }
  7910. #u23139_img {
  7911. border-width:0px;
  7912. position:absolute;
  7913. left:0px;
  7914. top:0px;
  7915. width:87px;
  7916. height:40px;
  7917. }
  7918. #u23139 {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:641px;
  7922. top:40px;
  7923. width:87px;
  7924. height:40px;
  7925. display:flex;
  7926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7927. font-weight:400;
  7928. font-style:normal;
  7929. font-size:14px;
  7930. text-align:left;
  7931. line-height:30px;
  7932. }
  7933. #u23139 .text {
  7934. position:absolute;
  7935. align-self:center;
  7936. padding:5px 10px 5px 10px;
  7937. box-sizing:border-box;
  7938. width:100%;
  7939. }
  7940. #u23139_text {
  7941. border-width:0px;
  7942. word-wrap:break-word;
  7943. text-transform:none;
  7944. }
  7945. #u23140_img {
  7946. border-width:0px;
  7947. position:absolute;
  7948. left:0px;
  7949. top:0px;
  7950. width:112px;
  7951. height:40px;
  7952. }
  7953. #u23140 {
  7954. border-width:0px;
  7955. position:absolute;
  7956. left:0px;
  7957. top:80px;
  7958. width:112px;
  7959. height:40px;
  7960. display:flex;
  7961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7962. font-weight:400;
  7963. font-style:normal;
  7964. font-size:14px;
  7965. text-align:left;
  7966. line-height:30px;
  7967. }
  7968. #u23140 .text {
  7969. position:absolute;
  7970. align-self:center;
  7971. padding:5px 10px 5px 10px;
  7972. box-sizing:border-box;
  7973. width:100%;
  7974. }
  7975. #u23140_text {
  7976. border-width:0px;
  7977. word-wrap:break-word;
  7978. text-transform:none;
  7979. }
  7980. #u23141_img {
  7981. border-width:0px;
  7982. position:absolute;
  7983. left:0px;
  7984. top:0px;
  7985. width:131px;
  7986. height:40px;
  7987. }
  7988. #u23141 {
  7989. border-width:0px;
  7990. position:absolute;
  7991. left:112px;
  7992. top:80px;
  7993. width:131px;
  7994. height:40px;
  7995. display:flex;
  7996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7997. font-weight:400;
  7998. font-style:normal;
  7999. font-size:14px;
  8000. text-align:left;
  8001. line-height:30px;
  8002. }
  8003. #u23141 .text {
  8004. position:absolute;
  8005. align-self:center;
  8006. padding:5px 10px 5px 10px;
  8007. box-sizing:border-box;
  8008. width:100%;
  8009. }
  8010. #u23141_text {
  8011. border-width:0px;
  8012. word-wrap:break-word;
  8013. text-transform:none;
  8014. }
  8015. #u23142_img {
  8016. border-width:0px;
  8017. position:absolute;
  8018. left:0px;
  8019. top:0px;
  8020. width:99px;
  8021. height:40px;
  8022. }
  8023. #u23142 {
  8024. border-width:0px;
  8025. position:absolute;
  8026. left:243px;
  8027. top:80px;
  8028. width:99px;
  8029. height:40px;
  8030. display:flex;
  8031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8032. font-weight:400;
  8033. font-style:normal;
  8034. font-size:14px;
  8035. text-align:left;
  8036. line-height:30px;
  8037. }
  8038. #u23142 .text {
  8039. position:absolute;
  8040. align-self:center;
  8041. padding:5px 10px 5px 10px;
  8042. box-sizing:border-box;
  8043. width:100%;
  8044. }
  8045. #u23142_text {
  8046. border-width:0px;
  8047. word-wrap:break-word;
  8048. text-transform:none;
  8049. }
  8050. #u23143_img {
  8051. border-width:0px;
  8052. position:absolute;
  8053. left:0px;
  8054. top:0px;
  8055. width:299px;
  8056. height:40px;
  8057. }
  8058. #u23143 {
  8059. border-width:0px;
  8060. position:absolute;
  8061. left:342px;
  8062. top:80px;
  8063. width:299px;
  8064. height:40px;
  8065. display:flex;
  8066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8067. font-weight:400;
  8068. font-style:normal;
  8069. font-size:14px;
  8070. text-align:left;
  8071. line-height:30px;
  8072. }
  8073. #u23143 .text {
  8074. position:absolute;
  8075. align-self:center;
  8076. padding:5px 10px 5px 10px;
  8077. box-sizing:border-box;
  8078. width:100%;
  8079. }
  8080. #u23143_text {
  8081. border-width:0px;
  8082. word-wrap:break-word;
  8083. text-transform:none;
  8084. }
  8085. #u23144_img {
  8086. border-width:0px;
  8087. position:absolute;
  8088. left:0px;
  8089. top:0px;
  8090. width:87px;
  8091. height:40px;
  8092. }
  8093. #u23144 {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:641px;
  8097. top:80px;
  8098. width:87px;
  8099. height:40px;
  8100. display:flex;
  8101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8102. font-weight:400;
  8103. font-style:normal;
  8104. font-size:14px;
  8105. text-align:left;
  8106. line-height:30px;
  8107. }
  8108. #u23144 .text {
  8109. position:absolute;
  8110. align-self:center;
  8111. padding:5px 10px 5px 10px;
  8112. box-sizing:border-box;
  8113. width:100%;
  8114. }
  8115. #u23144_text {
  8116. border-width:0px;
  8117. word-wrap:break-word;
  8118. text-transform:none;
  8119. }
  8120. #u23145_img {
  8121. border-width:0px;
  8122. position:absolute;
  8123. left:0px;
  8124. top:0px;
  8125. width:112px;
  8126. height:40px;
  8127. }
  8128. #u23145 {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:120px;
  8133. width:112px;
  8134. height:40px;
  8135. display:flex;
  8136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8137. font-weight:400;
  8138. font-style:normal;
  8139. font-size:14px;
  8140. text-align:left;
  8141. line-height:30px;
  8142. }
  8143. #u23145 .text {
  8144. position:absolute;
  8145. align-self:center;
  8146. padding:5px 10px 5px 10px;
  8147. box-sizing:border-box;
  8148. width:100%;
  8149. }
  8150. #u23145_text {
  8151. border-width:0px;
  8152. word-wrap:break-word;
  8153. text-transform:none;
  8154. }
  8155. #u23146_img {
  8156. border-width:0px;
  8157. position:absolute;
  8158. left:0px;
  8159. top:0px;
  8160. width:131px;
  8161. height:40px;
  8162. }
  8163. #u23146 {
  8164. border-width:0px;
  8165. position:absolute;
  8166. left:112px;
  8167. top:120px;
  8168. width:131px;
  8169. height:40px;
  8170. display:flex;
  8171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8172. font-weight:400;
  8173. font-style:normal;
  8174. font-size:14px;
  8175. text-align:left;
  8176. line-height:30px;
  8177. }
  8178. #u23146 .text {
  8179. position:absolute;
  8180. align-self:center;
  8181. padding:5px 10px 5px 10px;
  8182. box-sizing:border-box;
  8183. width:100%;
  8184. }
  8185. #u23146_text {
  8186. border-width:0px;
  8187. word-wrap:break-word;
  8188. text-transform:none;
  8189. }
  8190. #u23147_img {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:0px;
  8194. top:0px;
  8195. width:99px;
  8196. height:40px;
  8197. }
  8198. #u23147 {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:243px;
  8202. top:120px;
  8203. width:99px;
  8204. height:40px;
  8205. display:flex;
  8206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8207. font-weight:400;
  8208. font-style:normal;
  8209. font-size:14px;
  8210. text-align:left;
  8211. line-height:30px;
  8212. }
  8213. #u23147 .text {
  8214. position:absolute;
  8215. align-self:center;
  8216. padding:5px 10px 5px 10px;
  8217. box-sizing:border-box;
  8218. width:100%;
  8219. }
  8220. #u23147_text {
  8221. border-width:0px;
  8222. word-wrap:break-word;
  8223. text-transform:none;
  8224. }
  8225. #u23148_img {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:0px;
  8229. top:0px;
  8230. width:299px;
  8231. height:40px;
  8232. }
  8233. #u23148 {
  8234. border-width:0px;
  8235. position:absolute;
  8236. left:342px;
  8237. top:120px;
  8238. width:299px;
  8239. height:40px;
  8240. display:flex;
  8241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8242. font-weight:400;
  8243. font-style:normal;
  8244. font-size:14px;
  8245. text-align:left;
  8246. line-height:30px;
  8247. }
  8248. #u23148 .text {
  8249. position:absolute;
  8250. align-self:center;
  8251. padding:5px 10px 5px 10px;
  8252. box-sizing:border-box;
  8253. width:100%;
  8254. }
  8255. #u23148_text {
  8256. border-width:0px;
  8257. word-wrap:break-word;
  8258. text-transform:none;
  8259. visibility:hidden;
  8260. }
  8261. #u23149_img {
  8262. border-width:0px;
  8263. position:absolute;
  8264. left:0px;
  8265. top:0px;
  8266. width:87px;
  8267. height:40px;
  8268. }
  8269. #u23149 {
  8270. border-width:0px;
  8271. position:absolute;
  8272. left:641px;
  8273. top:120px;
  8274. width:87px;
  8275. height:40px;
  8276. display:flex;
  8277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8278. font-weight:400;
  8279. font-style:normal;
  8280. font-size:14px;
  8281. text-align:left;
  8282. line-height:30px;
  8283. }
  8284. #u23149 .text {
  8285. position:absolute;
  8286. align-self:center;
  8287. padding:5px 10px 5px 10px;
  8288. box-sizing:border-box;
  8289. width:100%;
  8290. }
  8291. #u23149_text {
  8292. border-width:0px;
  8293. word-wrap:break-word;
  8294. text-transform:none;
  8295. }
  8296. #u23150_img {
  8297. border-width:0px;
  8298. position:absolute;
  8299. left:0px;
  8300. top:0px;
  8301. width:112px;
  8302. height:40px;
  8303. }
  8304. #u23150 {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:160px;
  8309. width:112px;
  8310. height:40px;
  8311. display:flex;
  8312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8313. font-weight:400;
  8314. font-style:normal;
  8315. font-size:14px;
  8316. text-align:left;
  8317. line-height:30px;
  8318. }
  8319. #u23150 .text {
  8320. position:absolute;
  8321. align-self:center;
  8322. padding:5px 10px 5px 10px;
  8323. box-sizing:border-box;
  8324. width:100%;
  8325. }
  8326. #u23150_text {
  8327. border-width:0px;
  8328. word-wrap:break-word;
  8329. text-transform:none;
  8330. }
  8331. #u23151_img {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:0px;
  8335. top:0px;
  8336. width:131px;
  8337. height:40px;
  8338. }
  8339. #u23151 {
  8340. border-width:0px;
  8341. position:absolute;
  8342. left:112px;
  8343. top:160px;
  8344. width:131px;
  8345. height:40px;
  8346. display:flex;
  8347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8348. font-weight:400;
  8349. font-style:normal;
  8350. font-size:14px;
  8351. text-align:left;
  8352. line-height:30px;
  8353. }
  8354. #u23151 .text {
  8355. position:absolute;
  8356. align-self:center;
  8357. padding:5px 10px 5px 10px;
  8358. box-sizing:border-box;
  8359. width:100%;
  8360. }
  8361. #u23151_text {
  8362. border-width:0px;
  8363. word-wrap:break-word;
  8364. text-transform:none;
  8365. }
  8366. #u23152_img {
  8367. border-width:0px;
  8368. position:absolute;
  8369. left:0px;
  8370. top:0px;
  8371. width:99px;
  8372. height:40px;
  8373. }
  8374. #u23152 {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:243px;
  8378. top:160px;
  8379. width:99px;
  8380. height:40px;
  8381. display:flex;
  8382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8383. font-weight:400;
  8384. font-style:normal;
  8385. font-size:14px;
  8386. text-align:left;
  8387. line-height:30px;
  8388. }
  8389. #u23152 .text {
  8390. position:absolute;
  8391. align-self:center;
  8392. padding:5px 10px 5px 10px;
  8393. box-sizing:border-box;
  8394. width:100%;
  8395. }
  8396. #u23152_text {
  8397. border-width:0px;
  8398. word-wrap:break-word;
  8399. text-transform:none;
  8400. }
  8401. #u23153_img {
  8402. border-width:0px;
  8403. position:absolute;
  8404. left:0px;
  8405. top:0px;
  8406. width:299px;
  8407. height:40px;
  8408. }
  8409. #u23153 {
  8410. border-width:0px;
  8411. position:absolute;
  8412. left:342px;
  8413. top:160px;
  8414. width:299px;
  8415. height:40px;
  8416. display:flex;
  8417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8418. font-weight:400;
  8419. font-style:normal;
  8420. font-size:14px;
  8421. text-align:left;
  8422. line-height:30px;
  8423. }
  8424. #u23153 .text {
  8425. position:absolute;
  8426. align-self:center;
  8427. padding:5px 10px 5px 10px;
  8428. box-sizing:border-box;
  8429. width:100%;
  8430. }
  8431. #u23153_text {
  8432. border-width:0px;
  8433. word-wrap:break-word;
  8434. text-transform:none;
  8435. }
  8436. #u23154_img {
  8437. border-width:0px;
  8438. position:absolute;
  8439. left:0px;
  8440. top:0px;
  8441. width:87px;
  8442. height:40px;
  8443. }
  8444. #u23154 {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:641px;
  8448. top:160px;
  8449. width:87px;
  8450. height:40px;
  8451. display:flex;
  8452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8453. font-weight:400;
  8454. font-style:normal;
  8455. font-size:14px;
  8456. text-align:left;
  8457. line-height:30px;
  8458. }
  8459. #u23154 .text {
  8460. position:absolute;
  8461. align-self:center;
  8462. padding:5px 10px 5px 10px;
  8463. box-sizing:border-box;
  8464. width:100%;
  8465. }
  8466. #u23154_text {
  8467. border-width:0px;
  8468. word-wrap:break-word;
  8469. text-transform:none;
  8470. }
  8471. #u23155_img {
  8472. border-width:0px;
  8473. position:absolute;
  8474. left:0px;
  8475. top:0px;
  8476. width:112px;
  8477. height:40px;
  8478. }
  8479. #u23155 {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:0px;
  8483. top:200px;
  8484. width:112px;
  8485. height:40px;
  8486. display:flex;
  8487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8488. font-weight:400;
  8489. font-style:normal;
  8490. font-size:14px;
  8491. text-align:left;
  8492. line-height:30px;
  8493. }
  8494. #u23155 .text {
  8495. position:absolute;
  8496. align-self:center;
  8497. padding:5px 10px 5px 10px;
  8498. box-sizing:border-box;
  8499. width:100%;
  8500. }
  8501. #u23155_text {
  8502. border-width:0px;
  8503. word-wrap:break-word;
  8504. text-transform:none;
  8505. }
  8506. #u23156_img {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:0px;
  8510. top:0px;
  8511. width:131px;
  8512. height:40px;
  8513. }
  8514. #u23156 {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:112px;
  8518. top:200px;
  8519. width:131px;
  8520. height:40px;
  8521. display:flex;
  8522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8523. font-weight:400;
  8524. font-style:normal;
  8525. font-size:14px;
  8526. text-align:left;
  8527. line-height:20px;
  8528. }
  8529. #u23156 .text {
  8530. position:absolute;
  8531. align-self:center;
  8532. padding:5px 10px 5px 10px;
  8533. box-sizing:border-box;
  8534. width:100%;
  8535. }
  8536. #u23156_text {
  8537. border-width:0px;
  8538. word-wrap:break-word;
  8539. text-transform:none;
  8540. }
  8541. #u23157_img {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:0px;
  8545. top:0px;
  8546. width:99px;
  8547. height:40px;
  8548. }
  8549. #u23157 {
  8550. border-width:0px;
  8551. position:absolute;
  8552. left:243px;
  8553. top:200px;
  8554. width:99px;
  8555. height:40px;
  8556. display:flex;
  8557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8558. font-weight:400;
  8559. font-style:normal;
  8560. font-size:14px;
  8561. text-align:left;
  8562. line-height:20px;
  8563. }
  8564. #u23157 .text {
  8565. position:absolute;
  8566. align-self:center;
  8567. padding:5px 10px 5px 10px;
  8568. box-sizing:border-box;
  8569. width:100%;
  8570. }
  8571. #u23157_text {
  8572. border-width:0px;
  8573. word-wrap:break-word;
  8574. text-transform:none;
  8575. }
  8576. #u23158_img {
  8577. border-width:0px;
  8578. position:absolute;
  8579. left:0px;
  8580. top:0px;
  8581. width:299px;
  8582. height:40px;
  8583. }
  8584. #u23158 {
  8585. border-width:0px;
  8586. position:absolute;
  8587. left:342px;
  8588. top:200px;
  8589. width:299px;
  8590. height:40px;
  8591. display:flex;
  8592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8593. font-weight:400;
  8594. font-style:normal;
  8595. font-size:14px;
  8596. text-align:left;
  8597. line-height:30px;
  8598. }
  8599. #u23158 .text {
  8600. position:absolute;
  8601. align-self:center;
  8602. padding:5px 10px 5px 10px;
  8603. box-sizing:border-box;
  8604. width:100%;
  8605. }
  8606. #u23158_text {
  8607. border-width:0px;
  8608. word-wrap:break-word;
  8609. text-transform:none;
  8610. }
  8611. #u23159_img {
  8612. border-width:0px;
  8613. position:absolute;
  8614. left:0px;
  8615. top:0px;
  8616. width:87px;
  8617. height:40px;
  8618. }
  8619. #u23159 {
  8620. border-width:0px;
  8621. position:absolute;
  8622. left:641px;
  8623. top:200px;
  8624. width:87px;
  8625. height:40px;
  8626. display:flex;
  8627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8628. font-weight:400;
  8629. font-style:normal;
  8630. font-size:14px;
  8631. text-align:left;
  8632. line-height:30px;
  8633. }
  8634. #u23159 .text {
  8635. position:absolute;
  8636. align-self:center;
  8637. padding:5px 10px 5px 10px;
  8638. box-sizing:border-box;
  8639. width:100%;
  8640. }
  8641. #u23159_text {
  8642. border-width:0px;
  8643. word-wrap:break-word;
  8644. text-transform:none;
  8645. }
  8646. #u23160_img {
  8647. border-width:0px;
  8648. position:absolute;
  8649. left:0px;
  8650. top:0px;
  8651. width:112px;
  8652. height:40px;
  8653. }
  8654. #u23160 {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:0px;
  8658. top:240px;
  8659. width:112px;
  8660. height:40px;
  8661. display:flex;
  8662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8663. font-weight:400;
  8664. font-style:normal;
  8665. font-size:14px;
  8666. text-align:left;
  8667. line-height:30px;
  8668. }
  8669. #u23160 .text {
  8670. position:absolute;
  8671. align-self:center;
  8672. padding:5px 10px 5px 10px;
  8673. box-sizing:border-box;
  8674. width:100%;
  8675. }
  8676. #u23160_text {
  8677. border-width:0px;
  8678. word-wrap:break-word;
  8679. text-transform:none;
  8680. }
  8681. #u23161_img {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:0px;
  8685. top:0px;
  8686. width:131px;
  8687. height:40px;
  8688. }
  8689. #u23161 {
  8690. border-width:0px;
  8691. position:absolute;
  8692. left:112px;
  8693. top:240px;
  8694. width:131px;
  8695. height:40px;
  8696. display:flex;
  8697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8698. font-weight:400;
  8699. font-style:normal;
  8700. font-size:14px;
  8701. text-align:left;
  8702. line-height:20px;
  8703. }
  8704. #u23161 .text {
  8705. position:absolute;
  8706. align-self:center;
  8707. padding:5px 10px 5px 10px;
  8708. box-sizing:border-box;
  8709. width:100%;
  8710. }
  8711. #u23161_text {
  8712. border-width:0px;
  8713. word-wrap:break-word;
  8714. text-transform:none;
  8715. }
  8716. #u23162_img {
  8717. border-width:0px;
  8718. position:absolute;
  8719. left:0px;
  8720. top:0px;
  8721. width:99px;
  8722. height:40px;
  8723. }
  8724. #u23162 {
  8725. border-width:0px;
  8726. position:absolute;
  8727. left:243px;
  8728. top:240px;
  8729. width:99px;
  8730. height:40px;
  8731. display:flex;
  8732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8733. font-weight:400;
  8734. font-style:normal;
  8735. font-size:14px;
  8736. text-align:left;
  8737. line-height:20px;
  8738. }
  8739. #u23162 .text {
  8740. position:absolute;
  8741. align-self:center;
  8742. padding:5px 10px 5px 10px;
  8743. box-sizing:border-box;
  8744. width:100%;
  8745. }
  8746. #u23162_text {
  8747. border-width:0px;
  8748. word-wrap:break-word;
  8749. text-transform:none;
  8750. }
  8751. #u23163_img {
  8752. border-width:0px;
  8753. position:absolute;
  8754. left:0px;
  8755. top:0px;
  8756. width:299px;
  8757. height:40px;
  8758. }
  8759. #u23163 {
  8760. border-width:0px;
  8761. position:absolute;
  8762. left:342px;
  8763. top:240px;
  8764. width:299px;
  8765. height:40px;
  8766. display:flex;
  8767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8768. font-weight:400;
  8769. font-style:normal;
  8770. font-size:14px;
  8771. text-align:left;
  8772. line-height:30px;
  8773. }
  8774. #u23163 .text {
  8775. position:absolute;
  8776. align-self:center;
  8777. padding:5px 10px 5px 10px;
  8778. box-sizing:border-box;
  8779. width:100%;
  8780. }
  8781. #u23163_text {
  8782. border-width:0px;
  8783. word-wrap:break-word;
  8784. text-transform:none;
  8785. }
  8786. #u23164_img {
  8787. border-width:0px;
  8788. position:absolute;
  8789. left:0px;
  8790. top:0px;
  8791. width:87px;
  8792. height:40px;
  8793. }
  8794. #u23164 {
  8795. border-width:0px;
  8796. position:absolute;
  8797. left:641px;
  8798. top:240px;
  8799. width:87px;
  8800. height:40px;
  8801. display:flex;
  8802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8803. font-weight:400;
  8804. font-style:normal;
  8805. font-size:14px;
  8806. text-align:left;
  8807. line-height:30px;
  8808. }
  8809. #u23164 .text {
  8810. position:absolute;
  8811. align-self:center;
  8812. padding:5px 10px 5px 10px;
  8813. box-sizing:border-box;
  8814. width:100%;
  8815. }
  8816. #u23164_text {
  8817. border-width:0px;
  8818. word-wrap:break-word;
  8819. text-transform:none;
  8820. }
  8821. #u23165_img {
  8822. border-width:0px;
  8823. position:absolute;
  8824. left:0px;
  8825. top:0px;
  8826. width:112px;
  8827. height:40px;
  8828. }
  8829. #u23165 {
  8830. border-width:0px;
  8831. position:absolute;
  8832. left:0px;
  8833. top:280px;
  8834. width:112px;
  8835. height:40px;
  8836. display:flex;
  8837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8838. font-weight:400;
  8839. font-style:normal;
  8840. font-size:14px;
  8841. text-align:left;
  8842. line-height:30px;
  8843. }
  8844. #u23165 .text {
  8845. position:absolute;
  8846. align-self:center;
  8847. padding:5px 10px 5px 10px;
  8848. box-sizing:border-box;
  8849. width:100%;
  8850. }
  8851. #u23165_text {
  8852. border-width:0px;
  8853. word-wrap:break-word;
  8854. text-transform:none;
  8855. }
  8856. #u23166_img {
  8857. border-width:0px;
  8858. position:absolute;
  8859. left:0px;
  8860. top:0px;
  8861. width:131px;
  8862. height:40px;
  8863. }
  8864. #u23166 {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:112px;
  8868. top:280px;
  8869. width:131px;
  8870. height:40px;
  8871. display:flex;
  8872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8873. font-weight:400;
  8874. font-style:normal;
  8875. font-size:14px;
  8876. text-align:left;
  8877. line-height:20px;
  8878. }
  8879. #u23166 .text {
  8880. position:absolute;
  8881. align-self:center;
  8882. padding:5px 10px 5px 10px;
  8883. box-sizing:border-box;
  8884. width:100%;
  8885. }
  8886. #u23166_text {
  8887. border-width:0px;
  8888. word-wrap:break-word;
  8889. text-transform:none;
  8890. }
  8891. #u23167_img {
  8892. border-width:0px;
  8893. position:absolute;
  8894. left:0px;
  8895. top:0px;
  8896. width:99px;
  8897. height:40px;
  8898. }
  8899. #u23167 {
  8900. border-width:0px;
  8901. position:absolute;
  8902. left:243px;
  8903. top:280px;
  8904. width:99px;
  8905. height:40px;
  8906. display:flex;
  8907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8908. font-weight:400;
  8909. font-style:normal;
  8910. font-size:14px;
  8911. text-align:left;
  8912. line-height:20px;
  8913. }
  8914. #u23167 .text {
  8915. position:absolute;
  8916. align-self:center;
  8917. padding:5px 10px 5px 10px;
  8918. box-sizing:border-box;
  8919. width:100%;
  8920. }
  8921. #u23167_text {
  8922. border-width:0px;
  8923. word-wrap:break-word;
  8924. text-transform:none;
  8925. visibility:hidden;
  8926. }
  8927. #u23168_img {
  8928. border-width:0px;
  8929. position:absolute;
  8930. left:0px;
  8931. top:0px;
  8932. width:299px;
  8933. height:40px;
  8934. }
  8935. #u23168 {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:342px;
  8939. top:280px;
  8940. width:299px;
  8941. height:40px;
  8942. display:flex;
  8943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8944. font-weight:400;
  8945. font-style:normal;
  8946. font-size:14px;
  8947. text-align:left;
  8948. line-height:30px;
  8949. }
  8950. #u23168 .text {
  8951. position:absolute;
  8952. align-self:center;
  8953. padding:5px 10px 5px 10px;
  8954. box-sizing:border-box;
  8955. width:100%;
  8956. }
  8957. #u23168_text {
  8958. border-width:0px;
  8959. word-wrap:break-word;
  8960. text-transform:none;
  8961. visibility:hidden;
  8962. }
  8963. #u23169_img {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:0px;
  8967. top:0px;
  8968. width:87px;
  8969. height:40px;
  8970. }
  8971. #u23169 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:641px;
  8975. top:280px;
  8976. width:87px;
  8977. height:40px;
  8978. display:flex;
  8979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:14px;
  8983. text-align:left;
  8984. line-height:30px;
  8985. }
  8986. #u23169 .text {
  8987. position:absolute;
  8988. align-self:center;
  8989. padding:5px 10px 5px 10px;
  8990. box-sizing:border-box;
  8991. width:100%;
  8992. }
  8993. #u23169_text {
  8994. border-width:0px;
  8995. word-wrap:break-word;
  8996. text-transform:none;
  8997. visibility:hidden;
  8998. }
  8999. #u23170_div {
  9000. border-width:0px;
  9001. position:absolute;
  9002. left:0px;
  9003. top:0px;
  9004. width:729px;
  9005. height:40px;
  9006. background:inherit;
  9007. background-color:rgba(127, 127, 127, 1);
  9008. border:none;
  9009. border-radius:0px;
  9010. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  9011. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  9012. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  9013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9014. font-weight:400;
  9015. font-style:normal;
  9016. font-size:14px;
  9017. color:#FFFFFF;
  9018. line-height:20px;
  9019. }
  9020. #u23170 {
  9021. border-width:0px;
  9022. position:absolute;
  9023. left:2776px;
  9024. top:403px;
  9025. width:729px;
  9026. height:40px;
  9027. display:flex;
  9028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9029. font-weight:400;
  9030. font-style:normal;
  9031. font-size:14px;
  9032. color:#FFFFFF;
  9033. line-height:20px;
  9034. }
  9035. #u23170 .text {
  9036. position:absolute;
  9037. align-self:flex-start;
  9038. padding:10px 10px 10px 10px;
  9039. box-sizing:border-box;
  9040. width:100%;
  9041. }
  9042. #u23170_text {
  9043. border-width:0px;
  9044. word-wrap:break-word;
  9045. text-transform:none;
  9046. }
  9047. #u23171 {
  9048. border-width:0px;
  9049. position:absolute;
  9050. left:1702px;
  9051. top:962px;
  9052. width:960px;
  9053. height:360px;
  9054. }
  9055. #u23172_img {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:160px;
  9061. height:40px;
  9062. }
  9063. #u23172 {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:0px;
  9067. top:0px;
  9068. width:160px;
  9069. height:40px;
  9070. display:flex;
  9071. font-size:14px;
  9072. color:#FFFFFF;
  9073. text-align:left;
  9074. line-height:30px;
  9075. }
  9076. #u23172 .text {
  9077. position:absolute;
  9078. align-self:center;
  9079. padding:5px 10px 5px 10px;
  9080. box-sizing:border-box;
  9081. width:100%;
  9082. }
  9083. #u23172_text {
  9084. border-width:0px;
  9085. word-wrap:break-word;
  9086. text-transform:none;
  9087. }
  9088. #u23173_img {
  9089. border-width:0px;
  9090. position:absolute;
  9091. left:0px;
  9092. top:0px;
  9093. width:400px;
  9094. height:40px;
  9095. }
  9096. #u23173 {
  9097. border-width:0px;
  9098. position:absolute;
  9099. left:160px;
  9100. top:0px;
  9101. width:400px;
  9102. height:40px;
  9103. display:flex;
  9104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9105. font-weight:400;
  9106. font-style:normal;
  9107. font-size:14px;
  9108. color:#FFFFFF;
  9109. text-align:left;
  9110. line-height:30px;
  9111. }
  9112. #u23173 .text {
  9113. position:absolute;
  9114. align-self:center;
  9115. padding:5px 10px 5px 10px;
  9116. box-sizing:border-box;
  9117. width:100%;
  9118. }
  9119. #u23173_text {
  9120. border-width:0px;
  9121. word-wrap:break-word;
  9122. text-transform:none;
  9123. }
  9124. #u23174_img {
  9125. border-width:0px;
  9126. position:absolute;
  9127. left:0px;
  9128. top:0px;
  9129. width:400px;
  9130. height:40px;
  9131. }
  9132. #u23174 {
  9133. border-width:0px;
  9134. position:absolute;
  9135. left:560px;
  9136. top:0px;
  9137. width:400px;
  9138. height:40px;
  9139. display:flex;
  9140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9141. font-weight:400;
  9142. font-style:normal;
  9143. font-size:14px;
  9144. color:#FFFFFF;
  9145. text-align:left;
  9146. line-height:30px;
  9147. }
  9148. #u23174 .text {
  9149. position:absolute;
  9150. align-self:center;
  9151. padding:5px 10px 5px 10px;
  9152. box-sizing:border-box;
  9153. width:100%;
  9154. }
  9155. #u23174_text {
  9156. border-width:0px;
  9157. word-wrap:break-word;
  9158. text-transform:none;
  9159. }
  9160. #u23175_img {
  9161. border-width:0px;
  9162. position:absolute;
  9163. left:0px;
  9164. top:0px;
  9165. width:160px;
  9166. height:40px;
  9167. }
  9168. #u23175 {
  9169. border-width:0px;
  9170. position:absolute;
  9171. left:0px;
  9172. top:40px;
  9173. width:160px;
  9174. height:40px;
  9175. display:flex;
  9176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9177. font-weight:400;
  9178. font-style:normal;
  9179. font-size:14px;
  9180. text-align:left;
  9181. line-height:30px;
  9182. }
  9183. #u23175 .text {
  9184. position:absolute;
  9185. align-self:center;
  9186. padding:5px 10px 5px 10px;
  9187. box-sizing:border-box;
  9188. width:100%;
  9189. }
  9190. #u23175_text {
  9191. border-width:0px;
  9192. word-wrap:break-word;
  9193. text-transform:none;
  9194. }
  9195. #u23176_img {
  9196. border-width:0px;
  9197. position:absolute;
  9198. left:0px;
  9199. top:0px;
  9200. width:400px;
  9201. height:40px;
  9202. }
  9203. #u23176 {
  9204. border-width:0px;
  9205. position:absolute;
  9206. left:160px;
  9207. top:40px;
  9208. width:400px;
  9209. height:40px;
  9210. display:flex;
  9211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9212. font-weight:400;
  9213. font-style:normal;
  9214. font-size:14px;
  9215. text-align:left;
  9216. line-height:30px;
  9217. }
  9218. #u23176 .text {
  9219. position:absolute;
  9220. align-self:center;
  9221. padding:5px 10px 5px 10px;
  9222. box-sizing:border-box;
  9223. width:100%;
  9224. }
  9225. #u23176_text {
  9226. border-width:0px;
  9227. word-wrap:break-word;
  9228. text-transform:none;
  9229. visibility:hidden;
  9230. }
  9231. #u23177_img {
  9232. border-width:0px;
  9233. position:absolute;
  9234. left:0px;
  9235. top:0px;
  9236. width:400px;
  9237. height:40px;
  9238. }
  9239. #u23177 {
  9240. border-width:0px;
  9241. position:absolute;
  9242. left:560px;
  9243. top:40px;
  9244. width:400px;
  9245. height:40px;
  9246. display:flex;
  9247. font-size:14px;
  9248. text-align:left;
  9249. line-height:30px;
  9250. }
  9251. #u23177 .text {
  9252. position:absolute;
  9253. align-self:center;
  9254. padding:5px 10px 5px 10px;
  9255. box-sizing:border-box;
  9256. width:100%;
  9257. }
  9258. #u23177_text {
  9259. border-width:0px;
  9260. word-wrap:break-word;
  9261. text-transform:none;
  9262. visibility:hidden;
  9263. }
  9264. #u23178_img {
  9265. border-width:0px;
  9266. position:absolute;
  9267. left:0px;
  9268. top:0px;
  9269. width:160px;
  9270. height:40px;
  9271. }
  9272. #u23178 {
  9273. border-width:0px;
  9274. position:absolute;
  9275. left:0px;
  9276. top:80px;
  9277. width:160px;
  9278. height:40px;
  9279. display:flex;
  9280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9281. font-weight:400;
  9282. font-style:normal;
  9283. font-size:14px;
  9284. text-align:left;
  9285. line-height:30px;
  9286. }
  9287. #u23178 .text {
  9288. position:absolute;
  9289. align-self:center;
  9290. padding:5px 10px 5px 10px;
  9291. box-sizing:border-box;
  9292. width:100%;
  9293. }
  9294. #u23178_text {
  9295. border-width:0px;
  9296. word-wrap:break-word;
  9297. text-transform:none;
  9298. }
  9299. #u23179_img {
  9300. border-width:0px;
  9301. position:absolute;
  9302. left:0px;
  9303. top:0px;
  9304. width:400px;
  9305. height:40px;
  9306. }
  9307. #u23179 {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:160px;
  9311. top:80px;
  9312. width:400px;
  9313. height:40px;
  9314. display:flex;
  9315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9316. font-weight:400;
  9317. font-style:normal;
  9318. font-size:14px;
  9319. text-align:left;
  9320. line-height:30px;
  9321. }
  9322. #u23179 .text {
  9323. position:absolute;
  9324. align-self:center;
  9325. padding:5px 10px 5px 10px;
  9326. box-sizing:border-box;
  9327. width:100%;
  9328. }
  9329. #u23179_text {
  9330. border-width:0px;
  9331. word-wrap:break-word;
  9332. text-transform:none;
  9333. visibility:hidden;
  9334. }
  9335. #u23180_img {
  9336. border-width:0px;
  9337. position:absolute;
  9338. left:0px;
  9339. top:0px;
  9340. width:400px;
  9341. height:40px;
  9342. }
  9343. #u23180 {
  9344. border-width:0px;
  9345. position:absolute;
  9346. left:560px;
  9347. top:80px;
  9348. width:400px;
  9349. height:40px;
  9350. display:flex;
  9351. font-size:14px;
  9352. text-align:left;
  9353. line-height:30px;
  9354. }
  9355. #u23180 .text {
  9356. position:absolute;
  9357. align-self:center;
  9358. padding:5px 10px 5px 10px;
  9359. box-sizing:border-box;
  9360. width:100%;
  9361. }
  9362. #u23180_text {
  9363. border-width:0px;
  9364. word-wrap:break-word;
  9365. text-transform:none;
  9366. visibility:hidden;
  9367. }
  9368. #u23181_img {
  9369. border-width:0px;
  9370. position:absolute;
  9371. left:0px;
  9372. top:0px;
  9373. width:160px;
  9374. height:40px;
  9375. }
  9376. #u23181 {
  9377. border-width:0px;
  9378. position:absolute;
  9379. left:0px;
  9380. top:120px;
  9381. width:160px;
  9382. height:40px;
  9383. display:flex;
  9384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9385. font-weight:400;
  9386. font-style:normal;
  9387. font-size:14px;
  9388. text-align:left;
  9389. line-height:30px;
  9390. }
  9391. #u23181 .text {
  9392. position:absolute;
  9393. align-self:center;
  9394. padding:5px 10px 5px 10px;
  9395. box-sizing:border-box;
  9396. width:100%;
  9397. }
  9398. #u23181_text {
  9399. border-width:0px;
  9400. word-wrap:break-word;
  9401. text-transform:none;
  9402. }
  9403. #u23182_img {
  9404. border-width:0px;
  9405. position:absolute;
  9406. left:0px;
  9407. top:0px;
  9408. width:400px;
  9409. height:40px;
  9410. }
  9411. #u23182 {
  9412. border-width:0px;
  9413. position:absolute;
  9414. left:160px;
  9415. top:120px;
  9416. width:400px;
  9417. height:40px;
  9418. display:flex;
  9419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9420. font-weight:400;
  9421. font-style:normal;
  9422. font-size:14px;
  9423. text-align:left;
  9424. line-height:30px;
  9425. }
  9426. #u23182 .text {
  9427. position:absolute;
  9428. align-self:center;
  9429. padding:5px 10px 5px 10px;
  9430. box-sizing:border-box;
  9431. width:100%;
  9432. }
  9433. #u23182_text {
  9434. border-width:0px;
  9435. word-wrap:break-word;
  9436. text-transform:none;
  9437. visibility:hidden;
  9438. }
  9439. #u23183_img {
  9440. border-width:0px;
  9441. position:absolute;
  9442. left:0px;
  9443. top:0px;
  9444. width:400px;
  9445. height:40px;
  9446. }
  9447. #u23183 {
  9448. border-width:0px;
  9449. position:absolute;
  9450. left:560px;
  9451. top:120px;
  9452. width:400px;
  9453. height:40px;
  9454. display:flex;
  9455. font-size:14px;
  9456. text-align:left;
  9457. line-height:30px;
  9458. }
  9459. #u23183 .text {
  9460. position:absolute;
  9461. align-self:center;
  9462. padding:5px 10px 5px 10px;
  9463. box-sizing:border-box;
  9464. width:100%;
  9465. }
  9466. #u23183_text {
  9467. border-width:0px;
  9468. word-wrap:break-word;
  9469. text-transform:none;
  9470. visibility:hidden;
  9471. }
  9472. #u23184_img {
  9473. border-width:0px;
  9474. position:absolute;
  9475. left:0px;
  9476. top:0px;
  9477. width:160px;
  9478. height:40px;
  9479. }
  9480. #u23184 {
  9481. border-width:0px;
  9482. position:absolute;
  9483. left:0px;
  9484. top:160px;
  9485. width:160px;
  9486. height:40px;
  9487. display:flex;
  9488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9489. font-weight:400;
  9490. font-style:normal;
  9491. font-size:14px;
  9492. text-align:left;
  9493. line-height:30px;
  9494. }
  9495. #u23184 .text {
  9496. position:absolute;
  9497. align-self:center;
  9498. padding:5px 10px 5px 10px;
  9499. box-sizing:border-box;
  9500. width:100%;
  9501. }
  9502. #u23184_text {
  9503. border-width:0px;
  9504. word-wrap:break-word;
  9505. text-transform:none;
  9506. }
  9507. #u23185_img {
  9508. border-width:0px;
  9509. position:absolute;
  9510. left:0px;
  9511. top:0px;
  9512. width:400px;
  9513. height:40px;
  9514. }
  9515. #u23185 {
  9516. border-width:0px;
  9517. position:absolute;
  9518. left:160px;
  9519. top:160px;
  9520. width:400px;
  9521. height:40px;
  9522. display:flex;
  9523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9524. font-weight:400;
  9525. font-style:normal;
  9526. font-size:14px;
  9527. text-align:left;
  9528. line-height:30px;
  9529. }
  9530. #u23185 .text {
  9531. position:absolute;
  9532. align-self:center;
  9533. padding:5px 10px 5px 10px;
  9534. box-sizing:border-box;
  9535. width:100%;
  9536. }
  9537. #u23185_text {
  9538. border-width:0px;
  9539. word-wrap:break-word;
  9540. text-transform:none;
  9541. visibility:hidden;
  9542. }
  9543. #u23186_img {
  9544. border-width:0px;
  9545. position:absolute;
  9546. left:0px;
  9547. top:0px;
  9548. width:400px;
  9549. height:40px;
  9550. }
  9551. #u23186 {
  9552. border-width:0px;
  9553. position:absolute;
  9554. left:560px;
  9555. top:160px;
  9556. width:400px;
  9557. height:40px;
  9558. display:flex;
  9559. font-size:14px;
  9560. text-align:left;
  9561. line-height:30px;
  9562. }
  9563. #u23186 .text {
  9564. position:absolute;
  9565. align-self:center;
  9566. padding:5px 10px 5px 10px;
  9567. box-sizing:border-box;
  9568. width:100%;
  9569. }
  9570. #u23186_text {
  9571. border-width:0px;
  9572. word-wrap:break-word;
  9573. text-transform:none;
  9574. visibility:hidden;
  9575. }
  9576. #u23187_img {
  9577. border-width:0px;
  9578. position:absolute;
  9579. left:0px;
  9580. top:0px;
  9581. width:160px;
  9582. height:40px;
  9583. }
  9584. #u23187 {
  9585. border-width:0px;
  9586. position:absolute;
  9587. left:0px;
  9588. top:200px;
  9589. width:160px;
  9590. height:40px;
  9591. display:flex;
  9592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9593. font-weight:400;
  9594. font-style:normal;
  9595. font-size:14px;
  9596. text-align:left;
  9597. line-height:30px;
  9598. }
  9599. #u23187 .text {
  9600. position:absolute;
  9601. align-self:center;
  9602. padding:5px 10px 5px 10px;
  9603. box-sizing:border-box;
  9604. width:100%;
  9605. }
  9606. #u23187_text {
  9607. border-width:0px;
  9608. word-wrap:break-word;
  9609. text-transform:none;
  9610. }
  9611. #u23188_img {
  9612. border-width:0px;
  9613. position:absolute;
  9614. left:0px;
  9615. top:0px;
  9616. width:400px;
  9617. height:40px;
  9618. }
  9619. #u23188 {
  9620. border-width:0px;
  9621. position:absolute;
  9622. left:160px;
  9623. top:200px;
  9624. width:400px;
  9625. height:40px;
  9626. display:flex;
  9627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9628. font-weight:400;
  9629. font-style:normal;
  9630. font-size:14px;
  9631. text-align:left;
  9632. line-height:30px;
  9633. }
  9634. #u23188 .text {
  9635. position:absolute;
  9636. align-self:center;
  9637. padding:5px 10px 5px 10px;
  9638. box-sizing:border-box;
  9639. width:100%;
  9640. }
  9641. #u23188_text {
  9642. border-width:0px;
  9643. word-wrap:break-word;
  9644. text-transform:none;
  9645. visibility:hidden;
  9646. }
  9647. #u23189_img {
  9648. border-width:0px;
  9649. position:absolute;
  9650. left:0px;
  9651. top:0px;
  9652. width:400px;
  9653. height:40px;
  9654. }
  9655. #u23189 {
  9656. border-width:0px;
  9657. position:absolute;
  9658. left:560px;
  9659. top:200px;
  9660. width:400px;
  9661. height:40px;
  9662. display:flex;
  9663. font-size:14px;
  9664. text-align:left;
  9665. line-height:30px;
  9666. }
  9667. #u23189 .text {
  9668. position:absolute;
  9669. align-self:center;
  9670. padding:5px 10px 5px 10px;
  9671. box-sizing:border-box;
  9672. width:100%;
  9673. }
  9674. #u23189_text {
  9675. border-width:0px;
  9676. word-wrap:break-word;
  9677. text-transform:none;
  9678. visibility:hidden;
  9679. }
  9680. #u23190_img {
  9681. border-width:0px;
  9682. position:absolute;
  9683. left:0px;
  9684. top:0px;
  9685. width:160px;
  9686. height:40px;
  9687. }
  9688. #u23190 {
  9689. border-width:0px;
  9690. position:absolute;
  9691. left:0px;
  9692. top:240px;
  9693. width:160px;
  9694. height:40px;
  9695. display:flex;
  9696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9697. font-weight:400;
  9698. font-style:normal;
  9699. font-size:14px;
  9700. text-align:left;
  9701. line-height:30px;
  9702. }
  9703. #u23190 .text {
  9704. position:absolute;
  9705. align-self:center;
  9706. padding:5px 10px 5px 10px;
  9707. box-sizing:border-box;
  9708. width:100%;
  9709. }
  9710. #u23190_text {
  9711. border-width:0px;
  9712. word-wrap:break-word;
  9713. text-transform:none;
  9714. }
  9715. #u23191_img {
  9716. border-width:0px;
  9717. position:absolute;
  9718. left:0px;
  9719. top:0px;
  9720. width:400px;
  9721. height:40px;
  9722. }
  9723. #u23191 {
  9724. border-width:0px;
  9725. position:absolute;
  9726. left:160px;
  9727. top:240px;
  9728. width:400px;
  9729. height:40px;
  9730. display:flex;
  9731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9732. font-weight:400;
  9733. font-style:normal;
  9734. font-size:14px;
  9735. text-align:left;
  9736. line-height:30px;
  9737. }
  9738. #u23191 .text {
  9739. position:absolute;
  9740. align-self:center;
  9741. padding:5px 10px 5px 10px;
  9742. box-sizing:border-box;
  9743. width:100%;
  9744. }
  9745. #u23191_text {
  9746. border-width:0px;
  9747. word-wrap:break-word;
  9748. text-transform:none;
  9749. visibility:hidden;
  9750. }
  9751. #u23192_img {
  9752. border-width:0px;
  9753. position:absolute;
  9754. left:0px;
  9755. top:0px;
  9756. width:400px;
  9757. height:40px;
  9758. }
  9759. #u23192 {
  9760. border-width:0px;
  9761. position:absolute;
  9762. left:560px;
  9763. top:240px;
  9764. width:400px;
  9765. height:40px;
  9766. display:flex;
  9767. font-size:14px;
  9768. text-align:left;
  9769. line-height:30px;
  9770. }
  9771. #u23192 .text {
  9772. position:absolute;
  9773. align-self:center;
  9774. padding:5px 10px 5px 10px;
  9775. box-sizing:border-box;
  9776. width:100%;
  9777. }
  9778. #u23192_text {
  9779. border-width:0px;
  9780. word-wrap:break-word;
  9781. text-transform:none;
  9782. visibility:hidden;
  9783. }
  9784. #u23193_img {
  9785. border-width:0px;
  9786. position:absolute;
  9787. left:0px;
  9788. top:0px;
  9789. width:160px;
  9790. height:40px;
  9791. }
  9792. #u23193 {
  9793. border-width:0px;
  9794. position:absolute;
  9795. left:0px;
  9796. top:280px;
  9797. width:160px;
  9798. height:40px;
  9799. display:flex;
  9800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9801. font-weight:400;
  9802. font-style:normal;
  9803. font-size:14px;
  9804. text-align:left;
  9805. line-height:30px;
  9806. }
  9807. #u23193 .text {
  9808. position:absolute;
  9809. align-self:center;
  9810. padding:5px 10px 5px 10px;
  9811. box-sizing:border-box;
  9812. width:100%;
  9813. }
  9814. #u23193_text {
  9815. border-width:0px;
  9816. word-wrap:break-word;
  9817. text-transform:none;
  9818. }
  9819. #u23194_img {
  9820. border-width:0px;
  9821. position:absolute;
  9822. left:0px;
  9823. top:0px;
  9824. width:400px;
  9825. height:40px;
  9826. }
  9827. #u23194 {
  9828. border-width:0px;
  9829. position:absolute;
  9830. left:160px;
  9831. top:280px;
  9832. width:400px;
  9833. height:40px;
  9834. display:flex;
  9835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9836. font-weight:400;
  9837. font-style:normal;
  9838. font-size:14px;
  9839. text-align:left;
  9840. line-height:20px;
  9841. }
  9842. #u23194 .text {
  9843. position:absolute;
  9844. align-self:center;
  9845. padding:5px 10px 5px 10px;
  9846. box-sizing:border-box;
  9847. width:100%;
  9848. }
  9849. #u23194_text {
  9850. border-width:0px;
  9851. word-wrap:break-word;
  9852. text-transform:none;
  9853. visibility:hidden;
  9854. }
  9855. #u23195_img {
  9856. border-width:0px;
  9857. position:absolute;
  9858. left:0px;
  9859. top:0px;
  9860. width:400px;
  9861. height:40px;
  9862. }
  9863. #u23195 {
  9864. border-width:0px;
  9865. position:absolute;
  9866. left:560px;
  9867. top:280px;
  9868. width:400px;
  9869. height:40px;
  9870. display:flex;
  9871. font-size:14px;
  9872. text-align:left;
  9873. line-height:30px;
  9874. }
  9875. #u23195 .text {
  9876. position:absolute;
  9877. align-self:center;
  9878. padding:5px 10px 5px 10px;
  9879. box-sizing:border-box;
  9880. width:100%;
  9881. }
  9882. #u23195_text {
  9883. border-width:0px;
  9884. word-wrap:break-word;
  9885. text-transform:none;
  9886. visibility:hidden;
  9887. }
  9888. #u23196_img {
  9889. border-width:0px;
  9890. position:absolute;
  9891. left:0px;
  9892. top:0px;
  9893. width:160px;
  9894. height:40px;
  9895. }
  9896. #u23196 {
  9897. border-width:0px;
  9898. position:absolute;
  9899. left:0px;
  9900. top:320px;
  9901. width:160px;
  9902. height:40px;
  9903. display:flex;
  9904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9905. font-weight:400;
  9906. font-style:normal;
  9907. font-size:14px;
  9908. text-align:left;
  9909. line-height:30px;
  9910. }
  9911. #u23196 .text {
  9912. position:absolute;
  9913. align-self:center;
  9914. padding:5px 10px 5px 10px;
  9915. box-sizing:border-box;
  9916. width:100%;
  9917. }
  9918. #u23196_text {
  9919. border-width:0px;
  9920. word-wrap:break-word;
  9921. text-transform:none;
  9922. }
  9923. #u23197_img {
  9924. border-width:0px;
  9925. position:absolute;
  9926. left:0px;
  9927. top:0px;
  9928. width:400px;
  9929. height:40px;
  9930. }
  9931. #u23197 {
  9932. border-width:0px;
  9933. position:absolute;
  9934. left:160px;
  9935. top:320px;
  9936. width:400px;
  9937. height:40px;
  9938. display:flex;
  9939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9940. font-weight:400;
  9941. font-style:normal;
  9942. font-size:14px;
  9943. text-align:left;
  9944. line-height:20px;
  9945. }
  9946. #u23197 .text {
  9947. position:absolute;
  9948. align-self:center;
  9949. padding:5px 10px 5px 10px;
  9950. box-sizing:border-box;
  9951. width:100%;
  9952. }
  9953. #u23197_text {
  9954. border-width:0px;
  9955. word-wrap:break-word;
  9956. text-transform:none;
  9957. }
  9958. #u23198_img {
  9959. border-width:0px;
  9960. position:absolute;
  9961. left:0px;
  9962. top:0px;
  9963. width:400px;
  9964. height:40px;
  9965. }
  9966. #u23198 {
  9967. border-width:0px;
  9968. position:absolute;
  9969. left:560px;
  9970. top:320px;
  9971. width:400px;
  9972. height:40px;
  9973. display:flex;
  9974. font-size:14px;
  9975. text-align:left;
  9976. line-height:30px;
  9977. }
  9978. #u23198 .text {
  9979. position:absolute;
  9980. align-self:center;
  9981. padding:5px 10px 5px 10px;
  9982. box-sizing:border-box;
  9983. width:100%;
  9984. }
  9985. #u23198_text {
  9986. border-width:0px;
  9987. word-wrap:break-word;
  9988. text-transform:none;
  9989. visibility:hidden;
  9990. }
  9991. #u23199 {
  9992. border-width:0px;
  9993. position:absolute;
  9994. left:0px;
  9995. top:0px;
  9996. width:0px;
  9997. height:0px;
  9998. }
  9999. #u23200_div {
  10000. border-width:0px;
  10001. position:absolute;
  10002. left:0px;
  10003. top:0px;
  10004. width:200px;
  10005. height:1192px;
  10006. background:inherit;
  10007. background-color:rgba(255, 255, 255, 1);
  10008. border:none;
  10009. border-radius:0px;
  10010. -moz-box-shadow:none;
  10011. -webkit-box-shadow:none;
  10012. box-shadow:none;
  10013. }
  10014. #u23200 {
  10015. border-width:0px;
  10016. position:absolute;
  10017. left:120px;
  10018. top:50px;
  10019. width:200px;
  10020. height:1192px;
  10021. display:flex;
  10022. }
  10023. #u23200 .text {
  10024. position:absolute;
  10025. align-self:center;
  10026. padding:2px 2px 2px 2px;
  10027. box-sizing:border-box;
  10028. width:100%;
  10029. }
  10030. #u23200_text {
  10031. border-width:0px;
  10032. word-wrap:break-word;
  10033. text-transform:none;
  10034. visibility:hidden;
  10035. }
  10036. #u23201_div {
  10037. border-width:0px;
  10038. position:absolute;
  10039. left:0px;
  10040. top:0px;
  10041. width:200px;
  10042. height:60px;
  10043. background:inherit;
  10044. background-color:rgba(224, 231, 247, 1);
  10045. border:none;
  10046. border-radius:0px;
  10047. -moz-box-shadow:none;
  10048. -webkit-box-shadow:none;
  10049. box-shadow:none;
  10050. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10051. font-weight:500;
  10052. font-style:normal;
  10053. font-size:18px;
  10054. }
  10055. #u23201 {
  10056. border-width:0px;
  10057. position:absolute;
  10058. left:120px;
  10059. top:50px;
  10060. width:200px;
  10061. height:60px;
  10062. display:flex;
  10063. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10064. font-weight:500;
  10065. font-style:normal;
  10066. font-size:18px;
  10067. }
  10068. #u23201 .text {
  10069. position:absolute;
  10070. align-self:center;
  10071. padding:0px 0px 0px 20px;
  10072. box-sizing:border-box;
  10073. width:100%;
  10074. }
  10075. #u23201_text {
  10076. border-width:0px;
  10077. word-wrap:break-word;
  10078. text-transform:none;
  10079. }
  10080. #u23202_div {
  10081. border-width:0px;
  10082. position:absolute;
  10083. left:0px;
  10084. top:0px;
  10085. width:65px;
  10086. height:22px;
  10087. background:inherit;
  10088. background-color:rgba(255, 255, 255, 0);
  10089. border:none;
  10090. border-radius:0px;
  10091. -moz-box-shadow:none;
  10092. -webkit-box-shadow:none;
  10093. box-shadow:none;
  10094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10095. font-weight:400;
  10096. font-style:normal;
  10097. font-size:16px;
  10098. }
  10099. #u23202 {
  10100. border-width:0px;
  10101. position:absolute;
  10102. left:150px;
  10103. top:166px;
  10104. width:65px;
  10105. height:22px;
  10106. display:flex;
  10107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10108. font-weight:400;
  10109. font-style:normal;
  10110. font-size:16px;
  10111. }
  10112. #u23202 .text {
  10113. position:absolute;
  10114. align-self:flex-start;
  10115. padding:0px 0px 0px 0px;
  10116. box-sizing:border-box;
  10117. width:100%;
  10118. }
  10119. #u23202_text {
  10120. border-width:0px;
  10121. white-space:nowrap;
  10122. text-transform:none;
  10123. }
  10124. #u23203_div {
  10125. border-width:0px;
  10126. position:absolute;
  10127. left:0px;
  10128. top:0px;
  10129. width:25px;
  10130. height:17px;
  10131. background:inherit;
  10132. background-color:rgba(255, 255, 255, 0);
  10133. border:none;
  10134. border-radius:0px;
  10135. -moz-box-shadow:none;
  10136. -webkit-box-shadow:none;
  10137. box-shadow:none;
  10138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10139. font-weight:400;
  10140. font-style:normal;
  10141. font-size:12px;
  10142. color:#AAAAAA;
  10143. }
  10144. #u23203 {
  10145. border-width:0px;
  10146. position:absolute;
  10147. left:150px;
  10148. top:130px;
  10149. width:25px;
  10150. height:17px;
  10151. display:flex;
  10152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10153. font-weight:400;
  10154. font-style:normal;
  10155. font-size:12px;
  10156. color:#AAAAAA;
  10157. }
  10158. #u23203 .text {
  10159. position:absolute;
  10160. align-self:flex-start;
  10161. padding:0px 0px 0px 0px;
  10162. box-sizing:border-box;
  10163. width:100%;
  10164. }
  10165. #u23203_text {
  10166. border-width:0px;
  10167. white-space:nowrap;
  10168. text-transform:none;
  10169. }
  10170. #u23204_div {
  10171. border-width:0px;
  10172. position:absolute;
  10173. left:0px;
  10174. top:0px;
  10175. width:65px;
  10176. height:22px;
  10177. background:inherit;
  10178. background-color:rgba(255, 255, 255, 0);
  10179. border:none;
  10180. border-radius:0px;
  10181. -moz-box-shadow:none;
  10182. -webkit-box-shadow:none;
  10183. box-shadow:none;
  10184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10185. font-weight:400;
  10186. font-style:normal;
  10187. font-size:16px;
  10188. }
  10189. #u23204 {
  10190. border-width:0px;
  10191. position:absolute;
  10192. left:150px;
  10193. top:208px;
  10194. width:65px;
  10195. height:22px;
  10196. display:flex;
  10197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10198. font-weight:400;
  10199. font-style:normal;
  10200. font-size:16px;
  10201. }
  10202. #u23204 .text {
  10203. position:absolute;
  10204. align-self:flex-start;
  10205. padding:0px 0px 0px 0px;
  10206. box-sizing:border-box;
  10207. width:100%;
  10208. }
  10209. #u23204_text {
  10210. border-width:0px;
  10211. white-space:nowrap;
  10212. text-transform:none;
  10213. }
  10214. #u23205_img {
  10215. border-width:0px;
  10216. position:absolute;
  10217. left:0px;
  10218. top:0px;
  10219. width:201px;
  10220. height:2px;
  10221. }
  10222. #u23205 {
  10223. border-width:0px;
  10224. position:absolute;
  10225. left:120px;
  10226. top:250px;
  10227. width:200px;
  10228. height:1px;
  10229. display:flex;
  10230. }
  10231. #u23205 .text {
  10232. position:absolute;
  10233. align-self:center;
  10234. padding:2px 2px 2px 2px;
  10235. box-sizing:border-box;
  10236. width:100%;
  10237. }
  10238. #u23205_text {
  10239. border-width:0px;
  10240. word-wrap:break-word;
  10241. text-transform:none;
  10242. visibility:hidden;
  10243. }
  10244. #u23206_div {
  10245. border-width:0px;
  10246. position:absolute;
  10247. left:0px;
  10248. top:0px;
  10249. width:65px;
  10250. height:22px;
  10251. background:inherit;
  10252. background-color:rgba(255, 255, 255, 0);
  10253. border:none;
  10254. border-radius:0px;
  10255. -moz-box-shadow:none;
  10256. -webkit-box-shadow:none;
  10257. box-shadow:none;
  10258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10259. font-weight:400;
  10260. font-style:normal;
  10261. font-size:16px;
  10262. }
  10263. #u23206 {
  10264. border-width:0px;
  10265. position:absolute;
  10266. left:150px;
  10267. top:306px;
  10268. width:65px;
  10269. height:22px;
  10270. display:flex;
  10271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10272. font-weight:400;
  10273. font-style:normal;
  10274. font-size:16px;
  10275. }
  10276. #u23206 .text {
  10277. position:absolute;
  10278. align-self:flex-start;
  10279. padding:0px 0px 0px 0px;
  10280. box-sizing:border-box;
  10281. width:100%;
  10282. }
  10283. #u23206_text {
  10284. border-width:0px;
  10285. white-space:nowrap;
  10286. text-transform:none;
  10287. }
  10288. #u23207_div {
  10289. border-width:0px;
  10290. position:absolute;
  10291. left:0px;
  10292. top:0px;
  10293. width:25px;
  10294. height:17px;
  10295. background:inherit;
  10296. background-color:rgba(255, 255, 255, 0);
  10297. border:none;
  10298. border-radius:0px;
  10299. -moz-box-shadow:none;
  10300. -webkit-box-shadow:none;
  10301. box-shadow:none;
  10302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10303. font-weight:400;
  10304. font-style:normal;
  10305. font-size:12px;
  10306. color:#AAAAAA;
  10307. }
  10308. #u23207 {
  10309. border-width:0px;
  10310. position:absolute;
  10311. left:150px;
  10312. top:270px;
  10313. width:25px;
  10314. height:17px;
  10315. display:flex;
  10316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10317. font-weight:400;
  10318. font-style:normal;
  10319. font-size:12px;
  10320. color:#AAAAAA;
  10321. }
  10322. #u23207 .text {
  10323. position:absolute;
  10324. align-self:flex-start;
  10325. padding:0px 0px 0px 0px;
  10326. box-sizing:border-box;
  10327. width:100%;
  10328. }
  10329. #u23207_text {
  10330. border-width:0px;
  10331. white-space:nowrap;
  10332. text-transform:none;
  10333. }
  10334. #u23208_div {
  10335. border-width:0px;
  10336. position:absolute;
  10337. left:0px;
  10338. top:0px;
  10339. width:65px;
  10340. height:22px;
  10341. background:inherit;
  10342. background-color:rgba(255, 255, 255, 0);
  10343. border:none;
  10344. border-radius:0px;
  10345. -moz-box-shadow:none;
  10346. -webkit-box-shadow:none;
  10347. box-shadow:none;
  10348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10349. font-weight:400;
  10350. font-style:normal;
  10351. font-size:16px;
  10352. }
  10353. #u23208 {
  10354. border-width:0px;
  10355. position:absolute;
  10356. left:150px;
  10357. top:348px;
  10358. width:65px;
  10359. height:22px;
  10360. display:flex;
  10361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10362. font-weight:400;
  10363. font-style:normal;
  10364. font-size:16px;
  10365. }
  10366. #u23208 .text {
  10367. position:absolute;
  10368. align-self:flex-start;
  10369. padding:0px 0px 0px 0px;
  10370. box-sizing:border-box;
  10371. width:100%;
  10372. }
  10373. #u23208_text {
  10374. border-width:0px;
  10375. white-space:nowrap;
  10376. text-transform:none;
  10377. }