styles.css 188 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u19812_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. #u19812 {
  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. #u19812 .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. #u19812_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u19813_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. #u19813 {
  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. #u19813 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u19813_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u19814 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u19815_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u19815 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u19815 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u19815_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u19816_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. #u19816 {
  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. #u19816 .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. #u19816_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u19817_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. #u19817 {
  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. #u19817 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u19817_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u19818_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. #u19818 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u19818 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u19818_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u19819 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u19820_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. #u19820 {
  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. #u19820 .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. #u19820_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u19821_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u19821 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u19821 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u19821_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u19822 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u19823_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. #u19823 {
  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. #u19823 .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. #u19823_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u19824_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u19824 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u19824 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u19824_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u19825 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u19826_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. #u19826 {
  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. #u19826 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u19826_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u19827_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u19827 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u19827 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u19827_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u19828 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u19829_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. #u19829 {
  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. #u19829 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u19829_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u19830_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u19830 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u19830 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u19830_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u19831 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u19832_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. #u19832 {
  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. #u19832 .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. #u19832_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u19833_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u19833 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u19833 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u19833_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u19834 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u19835_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. #u19835 {
  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. #u19835 .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. #u19835_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u19836_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u19836 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u19836 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u19836_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u19837 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u19838_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. #u19838 {
  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. #u19838 .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. #u19838_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u19839_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u19839 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u19839 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u19839_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u19840 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u19841_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. #u19841 {
  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. #u19841 .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. #u19841_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u19842_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u19842 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u19842 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u19842_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u19843 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u19844_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. #u19844 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  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. #u19844 .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. #u19844_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u19845_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u19845 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u19845 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u19845_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u19846_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u19846_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u19846_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u19846 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u19846 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u19846_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u19846.disabled {
  1100. }
  1101. .u19846_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u19847_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u19847 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u19847 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u19847_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u19848_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u19848 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u19848 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u19848_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u19849_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u19849 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u19849 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u19849_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u19850 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u19851_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  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. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u19851 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u19851 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u19851_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u19852_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u19852 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u19852 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u19852_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u19853 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u19854_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. #u19854 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  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. #u19854 .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. #u19854_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u19855_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u19855 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u19855 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u19855_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u19856 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u19857_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. #u19857 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  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. #u19857 .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. #u19857_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u19858_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u19858 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u19858 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u19858_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u19859 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u19860_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. #u19860 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  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. #u19860 .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. #u19860_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u19861_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u19861 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u19861 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u19861_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u19862 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u19863_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. #u19863 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  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. #u19863 .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. #u19863_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u19864_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u19864 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u19864 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u19864_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u19865_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:1259px;
  1636. height:160px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 1);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1642. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1643. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1644. }
  1645. #u19865 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:330px;
  1649. top:50px;
  1650. width:1259px;
  1651. height:160px;
  1652. display:flex;
  1653. }
  1654. #u19865 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u19865_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u19866_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:73px;
  1673. height:50px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 0);
  1676. border:none;
  1677. border-left:0px;
  1678. border-top:0px;
  1679. border-right:0px;
  1680. border-radius:0px;
  1681. border-bottom-right-radius:0px;
  1682. border-bottom-left-radius:0px;
  1683. -moz-box-shadow:none;
  1684. -webkit-box-shadow:none;
  1685. box-shadow:none;
  1686. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1687. font-weight:500;
  1688. font-style:normal;
  1689. font-size:18px;
  1690. }
  1691. #u19866 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:350px;
  1695. top:50px;
  1696. width:73px;
  1697. height:50px;
  1698. display:flex;
  1699. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1700. font-weight:500;
  1701. font-style:normal;
  1702. font-size:18px;
  1703. }
  1704. #u19866 .text {
  1705. position:absolute;
  1706. align-self:center;
  1707. padding:0px 0px 0px 0px;
  1708. box-sizing:border-box;
  1709. width:100%;
  1710. }
  1711. #u19866_text {
  1712. border-width:0px;
  1713. white-space:nowrap;
  1714. text-transform:none;
  1715. }
  1716. #u19867_div {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:1259px;
  1722. height:1010px;
  1723. background:inherit;
  1724. background-color:rgba(255, 255, 255, 1);
  1725. border:none;
  1726. border-radius:0px;
  1727. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1728. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1729. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1730. }
  1731. #u19867 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:330px;
  1735. top:220px;
  1736. width:1259px;
  1737. height:1010px;
  1738. display:flex;
  1739. }
  1740. #u19867 .text {
  1741. position:absolute;
  1742. align-self:center;
  1743. padding:2px 2px 2px 2px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u19867_text {
  1748. border-width:0px;
  1749. word-wrap:break-word;
  1750. text-transform:none;
  1751. visibility:hidden;
  1752. }
  1753. #u19868 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:0px;
  1759. height:0px;
  1760. }
  1761. #u19869_div {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:200px;
  1767. height:20px;
  1768. background:inherit;
  1769. background-color:rgba(255, 255, 255, 0);
  1770. border:none;
  1771. border-radius:0px;
  1772. -moz-box-shadow:none;
  1773. -webkit-box-shadow:none;
  1774. box-shadow:none;
  1775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1776. font-weight:400;
  1777. font-style:normal;
  1778. font-size:14px;
  1779. }
  1780. #u19869 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:387px;
  1784. top:163px;
  1785. width:200px;
  1786. height:20px;
  1787. display:flex;
  1788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1789. font-weight:400;
  1790. font-style:normal;
  1791. font-size:14px;
  1792. }
  1793. #u19869 .text {
  1794. position:absolute;
  1795. align-self:flex-start;
  1796. padding:0px 0px 0px 0px;
  1797. box-sizing:border-box;
  1798. width:100%;
  1799. }
  1800. #u19869_text {
  1801. border-width:0px;
  1802. word-wrap:break-word;
  1803. text-transform:none;
  1804. }
  1805. #u19870_div {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:200px;
  1811. height:40px;
  1812. background:inherit;
  1813. background-color:rgba(255, 255, 255, 0);
  1814. border:none;
  1815. border-radius:0px;
  1816. -moz-box-shadow:none;
  1817. -webkit-box-shadow:none;
  1818. box-shadow:none;
  1819. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1820. font-weight:650;
  1821. font-style:normal;
  1822. font-size:28px;
  1823. }
  1824. #u19870 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:387px;
  1828. top:123px;
  1829. width:200px;
  1830. height:40px;
  1831. display:flex;
  1832. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1833. font-weight:650;
  1834. font-style:normal;
  1835. font-size:28px;
  1836. }
  1837. #u19870 .text {
  1838. position:absolute;
  1839. align-self:flex-start;
  1840. padding:0px 0px 0px 0px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u19870_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. }
  1849. #u19871 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:0px;
  1855. height:0px;
  1856. }
  1857. #u19872_div {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:200px;
  1863. height:20px;
  1864. background:inherit;
  1865. background-color:rgba(255, 255, 255, 0);
  1866. border:none;
  1867. border-radius:0px;
  1868. -moz-box-shadow:none;
  1869. -webkit-box-shadow:none;
  1870. box-shadow:none;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:14px;
  1875. }
  1876. #u19872 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:625px;
  1880. top:163px;
  1881. width:200px;
  1882. height:20px;
  1883. display:flex;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:14px;
  1888. }
  1889. #u19872 .text {
  1890. position:absolute;
  1891. align-self:flex-start;
  1892. padding:0px 0px 0px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u19872_text {
  1897. border-width:0px;
  1898. word-wrap:break-word;
  1899. text-transform:none;
  1900. }
  1901. #u19873_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:200px;
  1907. height:40px;
  1908. background:inherit;
  1909. background-color:rgba(255, 255, 255, 0);
  1910. border:none;
  1911. border-radius:0px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1916. font-weight:650;
  1917. font-style:normal;
  1918. font-size:28px;
  1919. }
  1920. #u19873 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:625px;
  1924. top:123px;
  1925. width:200px;
  1926. height:40px;
  1927. display:flex;
  1928. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1929. font-weight:650;
  1930. font-style:normal;
  1931. font-size:28px;
  1932. }
  1933. #u19873 .text {
  1934. position:absolute;
  1935. align-self:flex-start;
  1936. padding:0px 0px 0px 0px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u19873_text {
  1941. border-width:0px;
  1942. word-wrap:break-word;
  1943. text-transform:none;
  1944. }
  1945. #u19874 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:0px;
  1951. height:0px;
  1952. }
  1953. #u19875_div {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:200px;
  1959. height:20px;
  1960. background:inherit;
  1961. background-color:rgba(255, 255, 255, 0);
  1962. border:none;
  1963. border-radius:0px;
  1964. -moz-box-shadow:none;
  1965. -webkit-box-shadow:none;
  1966. box-shadow:none;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:14px;
  1971. }
  1972. #u19875 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:863px;
  1976. top:163px;
  1977. width:200px;
  1978. height:20px;
  1979. display:flex;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:14px;
  1984. }
  1985. #u19875 .text {
  1986. position:absolute;
  1987. align-self:flex-start;
  1988. padding:0px 0px 0px 0px;
  1989. box-sizing:border-box;
  1990. width:100%;
  1991. }
  1992. #u19875_text {
  1993. border-width:0px;
  1994. word-wrap:break-word;
  1995. text-transform:none;
  1996. }
  1997. #u19876_div {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:200px;
  2003. height:40px;
  2004. background:inherit;
  2005. background-color:rgba(255, 255, 255, 0);
  2006. border:none;
  2007. border-radius:0px;
  2008. -moz-box-shadow:none;
  2009. -webkit-box-shadow:none;
  2010. box-shadow:none;
  2011. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2012. font-weight:650;
  2013. font-style:normal;
  2014. font-size:28px;
  2015. }
  2016. #u19876 {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:863px;
  2020. top:123px;
  2021. width:200px;
  2022. height:40px;
  2023. display:flex;
  2024. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2025. font-weight:650;
  2026. font-style:normal;
  2027. font-size:28px;
  2028. }
  2029. #u19876 .text {
  2030. position:absolute;
  2031. align-self:flex-start;
  2032. padding:0px 0px 0px 0px;
  2033. box-sizing:border-box;
  2034. width:100%;
  2035. }
  2036. #u19876_text {
  2037. border-width:0px;
  2038. word-wrap:break-word;
  2039. text-transform:none;
  2040. }
  2041. #u19877 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:0px;
  2047. height:0px;
  2048. }
  2049. #u19878_div {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:200px;
  2055. height:20px;
  2056. background:inherit;
  2057. background-color:rgba(255, 255, 255, 0);
  2058. border:none;
  2059. border-radius:0px;
  2060. -moz-box-shadow:none;
  2061. -webkit-box-shadow:none;
  2062. box-shadow:none;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:14px;
  2067. }
  2068. #u19878 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:1100px;
  2072. top:163px;
  2073. width:200px;
  2074. height:20px;
  2075. display:flex;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:14px;
  2080. }
  2081. #u19878 .text {
  2082. position:absolute;
  2083. align-self:flex-start;
  2084. padding:0px 0px 0px 0px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u19878_text {
  2089. border-width:0px;
  2090. word-wrap:break-word;
  2091. text-transform:none;
  2092. }
  2093. #u19879_div {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:200px;
  2099. height:40px;
  2100. background:inherit;
  2101. background-color:rgba(255, 255, 255, 0);
  2102. border:none;
  2103. border-radius:0px;
  2104. -moz-box-shadow:none;
  2105. -webkit-box-shadow:none;
  2106. box-shadow:none;
  2107. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2108. font-weight:650;
  2109. font-style:normal;
  2110. font-size:28px;
  2111. }
  2112. #u19879 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:1100px;
  2116. top:123px;
  2117. width:200px;
  2118. height:40px;
  2119. display:flex;
  2120. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2121. font-weight:650;
  2122. font-style:normal;
  2123. font-size:28px;
  2124. }
  2125. #u19879 .text {
  2126. position:absolute;
  2127. align-self:flex-start;
  2128. padding:0px 0px 0px 0px;
  2129. box-sizing:border-box;
  2130. width:100%;
  2131. }
  2132. #u19879_text {
  2133. border-width:0px;
  2134. word-wrap:break-word;
  2135. text-transform:none;
  2136. }
  2137. #u19880 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:0px;
  2143. height:0px;
  2144. }
  2145. #u19881_div {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:200px;
  2151. height:20px;
  2152. background:inherit;
  2153. background-color:rgba(255, 255, 255, 0);
  2154. border:none;
  2155. border-radius:0px;
  2156. -moz-box-shadow:none;
  2157. -webkit-box-shadow:none;
  2158. box-shadow:none;
  2159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. font-size:14px;
  2163. }
  2164. #u19881 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:1338px;
  2168. top:163px;
  2169. width:200px;
  2170. height:20px;
  2171. display:flex;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:14px;
  2176. }
  2177. #u19881 .text {
  2178. position:absolute;
  2179. align-self:flex-start;
  2180. padding:0px 0px 0px 0px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u19881_text {
  2185. border-width:0px;
  2186. word-wrap:break-word;
  2187. text-transform:none;
  2188. }
  2189. #u19882_div {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:200px;
  2195. height:40px;
  2196. background:inherit;
  2197. background-color:rgba(255, 255, 255, 0);
  2198. border:none;
  2199. border-radius:0px;
  2200. -moz-box-shadow:none;
  2201. -webkit-box-shadow:none;
  2202. box-shadow:none;
  2203. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2204. font-weight:650;
  2205. font-style:normal;
  2206. font-size:28px;
  2207. }
  2208. #u19882 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:1338px;
  2212. top:123px;
  2213. width:200px;
  2214. height:40px;
  2215. display:flex;
  2216. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2217. font-weight:650;
  2218. font-style:normal;
  2219. font-size:28px;
  2220. }
  2221. #u19882 .text {
  2222. position:absolute;
  2223. align-self:flex-start;
  2224. padding:0px 0px 0px 0px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u19882_text {
  2229. border-width:0px;
  2230. word-wrap:break-word;
  2231. text-transform:none;
  2232. }
  2233. #u19883 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:0px;
  2239. height:0px;
  2240. }
  2241. #u19884_div {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:60px;
  2247. height:30px;
  2248. background:inherit;
  2249. background-color:rgba(24, 144, 255, 1);
  2250. border:none;
  2251. border-radius:0px;
  2252. -moz-box-shadow:none;
  2253. -webkit-box-shadow:none;
  2254. box-shadow:none;
  2255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. color:#FFFFFF;
  2259. text-align:center;
  2260. }
  2261. #u19884 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:1267px;
  2265. top:60px;
  2266. width:60px;
  2267. height:30px;
  2268. display:flex;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. color:#FFFFFF;
  2273. text-align:center;
  2274. }
  2275. #u19884 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:2px 2px 2px 2px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u19884_text {
  2283. border-width:0px;
  2284. word-wrap:break-word;
  2285. text-transform:none;
  2286. }
  2287. #u19885_div {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:60px;
  2293. height:30px;
  2294. background:inherit;
  2295. background-color:rgba(255, 255, 255, 1);
  2296. box-sizing:border-box;
  2297. border-width:1px;
  2298. border-style:solid;
  2299. border-color:rgba(215, 215, 215, 1);
  2300. border-radius:0px;
  2301. -moz-box-shadow:none;
  2302. -webkit-box-shadow:none;
  2303. box-shadow:none;
  2304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2305. font-weight:400;
  2306. font-style:normal;
  2307. text-align:center;
  2308. }
  2309. #u19885 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:1386px;
  2313. top:60px;
  2314. width:60px;
  2315. height:30px;
  2316. display:flex;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. text-align:center;
  2321. }
  2322. #u19885 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 2px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u19885_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. }
  2334. #u19886_div {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:60px;
  2340. height:30px;
  2341. background:inherit;
  2342. background-color:rgba(255, 255, 255, 1);
  2343. box-sizing:border-box;
  2344. border-width:1px;
  2345. border-style:solid;
  2346. border-color:rgba(215, 215, 215, 1);
  2347. border-radius:0px;
  2348. -moz-box-shadow:none;
  2349. -webkit-box-shadow:none;
  2350. box-shadow:none;
  2351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2352. font-weight:400;
  2353. font-style:normal;
  2354. text-align:center;
  2355. }
  2356. #u19886 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:1445px;
  2360. top:60px;
  2361. width:60px;
  2362. height:30px;
  2363. display:flex;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. text-align:center;
  2368. }
  2369. #u19886 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:2px 2px 2px 2px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u19886_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. }
  2381. #u19887_div {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:60px;
  2387. height:30px;
  2388. background:inherit;
  2389. background-color:rgba(255, 255, 255, 1);
  2390. box-sizing:border-box;
  2391. border-width:1px;
  2392. border-style:solid;
  2393. border-color:rgba(215, 215, 215, 1);
  2394. border-radius:0px;
  2395. -moz-box-shadow:none;
  2396. -webkit-box-shadow:none;
  2397. box-shadow:none;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. text-align:center;
  2402. }
  2403. #u19887 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:1327px;
  2407. top:60px;
  2408. width:60px;
  2409. height:30px;
  2410. display:flex;
  2411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2412. font-weight:400;
  2413. font-style:normal;
  2414. text-align:center;
  2415. }
  2416. #u19887 .text {
  2417. position:absolute;
  2418. align-self:center;
  2419. padding:2px 2px 2px 2px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u19887_text {
  2424. border-width:0px;
  2425. word-wrap:break-word;
  2426. text-transform:none;
  2427. }
  2428. #u19888_div {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:60px;
  2434. height:30px;
  2435. background:inherit;
  2436. background-color:rgba(255, 255, 255, 1);
  2437. box-sizing:border-box;
  2438. border-width:1px;
  2439. border-style:solid;
  2440. border-color:rgba(215, 215, 215, 1);
  2441. border-radius:0px;
  2442. -moz-box-shadow:none;
  2443. -webkit-box-shadow:none;
  2444. box-shadow:none;
  2445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2446. font-weight:400;
  2447. font-style:normal;
  2448. text-align:center;
  2449. }
  2450. #u19888 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:1504px;
  2454. top:60px;
  2455. width:60px;
  2456. height:30px;
  2457. display:flex;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. text-align:center;
  2462. }
  2463. #u19888 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 2px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u19888_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. }
  2475. #u19889 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:350px;
  2479. top:370px;
  2480. width:1227px;
  2481. height:292px;
  2482. }
  2483. #u19890_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:30px;
  2489. height:38px;
  2490. }
  2491. #u19890 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:30px;
  2497. height:38px;
  2498. display:flex;
  2499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. color:#FFFFFF;
  2504. }
  2505. #u19890 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 0px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u19890_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. }
  2517. #u19891_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:60px;
  2523. height:38px;
  2524. }
  2525. #u19891 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:30px;
  2529. top:0px;
  2530. width:60px;
  2531. height:38px;
  2532. display:flex;
  2533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:12px;
  2537. color:#FFFFFF;
  2538. }
  2539. #u19891 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 0px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u19891_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. }
  2551. #u19892_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:60px;
  2557. height:38px;
  2558. }
  2559. #u19892 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:90px;
  2563. top:0px;
  2564. width:60px;
  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:#FFFFFF;
  2572. }
  2573. #u19892 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 0px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u19892_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. }
  2585. #u19893_img {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:60px;
  2591. height:38px;
  2592. }
  2593. #u19893 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:150px;
  2597. top:0px;
  2598. width:60px;
  2599. height:38px;
  2600. display:flex;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:12px;
  2605. color:#FFFFFF;
  2606. }
  2607. #u19893 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:2px 2px 2px 0px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u19893_text {
  2615. border-width:0px;
  2616. word-wrap:break-word;
  2617. text-transform:none;
  2618. }
  2619. #u19894_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:60px;
  2625. height:38px;
  2626. }
  2627. #u19894 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:210px;
  2631. top:0px;
  2632. width:60px;
  2633. height:38px;
  2634. display:flex;
  2635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:12px;
  2639. color:#FFFFFF;
  2640. }
  2641. #u19894 .text {
  2642. position:absolute;
  2643. align-self:center;
  2644. padding:2px 2px 2px 0px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u19894_text {
  2649. border-width:0px;
  2650. word-wrap:break-word;
  2651. text-transform:none;
  2652. }
  2653. #u19895_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:60px;
  2659. height:38px;
  2660. }
  2661. #u19895 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:270px;
  2665. top:0px;
  2666. width:60px;
  2667. height:38px;
  2668. display:flex;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:12px;
  2673. color:#FFFFFF;
  2674. }
  2675. #u19895 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 0px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u19895_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. }
  2687. #u19896_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:60px;
  2693. height:38px;
  2694. }
  2695. #u19896 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:330px;
  2699. top:0px;
  2700. width:60px;
  2701. height:38px;
  2702. display:flex;
  2703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2704. font-weight:400;
  2705. font-style:normal;
  2706. font-size:12px;
  2707. color:#FFFFFF;
  2708. }
  2709. #u19896 .text {
  2710. position:absolute;
  2711. align-self:center;
  2712. padding:2px 2px 2px 0px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u19896_text {
  2717. border-width:0px;
  2718. word-wrap:break-word;
  2719. text-transform:none;
  2720. }
  2721. #u19897_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:60px;
  2727. height:38px;
  2728. }
  2729. #u19897 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:390px;
  2733. top:0px;
  2734. width:60px;
  2735. height:38px;
  2736. display:flex;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:12px;
  2741. color:#FFFFFF;
  2742. }
  2743. #u19897 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u19897_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. }
  2755. #u19898_img {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:60px;
  2761. height:38px;
  2762. }
  2763. #u19898 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:450px;
  2767. top:0px;
  2768. width:60px;
  2769. height:38px;
  2770. display:flex;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:12px;
  2775. color:#FFFFFF;
  2776. }
  2777. #u19898 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u19898_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. }
  2789. #u19899_img {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:60px;
  2795. height:38px;
  2796. }
  2797. #u19899 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:510px;
  2801. top:0px;
  2802. width:60px;
  2803. height:38px;
  2804. display:flex;
  2805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2806. font-weight:400;
  2807. font-style:normal;
  2808. font-size:12px;
  2809. color:#FFFFFF;
  2810. }
  2811. #u19899 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 0px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u19899_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. }
  2823. #u19900_img {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:60px;
  2829. height:38px;
  2830. }
  2831. #u19900 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:570px;
  2835. top:0px;
  2836. width:60px;
  2837. height:38px;
  2838. display:flex;
  2839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2840. font-weight:400;
  2841. font-style:normal;
  2842. font-size:12px;
  2843. color:#FFFFFF;
  2844. }
  2845. #u19900 .text {
  2846. position:absolute;
  2847. align-self:center;
  2848. padding:2px 2px 2px 0px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u19900_text {
  2853. border-width:0px;
  2854. word-wrap:break-word;
  2855. text-transform:none;
  2856. }
  2857. #u19901_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:60px;
  2863. height:38px;
  2864. }
  2865. #u19901 {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:630px;
  2869. top:0px;
  2870. width:60px;
  2871. height:38px;
  2872. display:flex;
  2873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. font-size:12px;
  2877. color:#FFFFFF;
  2878. }
  2879. #u19901 .text {
  2880. position:absolute;
  2881. align-self:center;
  2882. padding:2px 2px 2px 0px;
  2883. box-sizing:border-box;
  2884. width:100%;
  2885. }
  2886. #u19901_text {
  2887. border-width:0px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. }
  2891. #u19902_img {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:60px;
  2897. height:38px;
  2898. }
  2899. #u19902 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:690px;
  2903. top:0px;
  2904. width:60px;
  2905. height:38px;
  2906. display:flex;
  2907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:12px;
  2911. color:#FFFFFF;
  2912. }
  2913. #u19902 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u19902_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. }
  2925. #u19903_img {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:60px;
  2931. height:38px;
  2932. }
  2933. #u19903 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:750px;
  2937. top:0px;
  2938. width:60px;
  2939. height:38px;
  2940. display:flex;
  2941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:12px;
  2945. color:#FFFFFF;
  2946. }
  2947. #u19903 .text {
  2948. position:absolute;
  2949. align-self:center;
  2950. padding:2px 2px 2px 0px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u19903_text {
  2955. border-width:0px;
  2956. word-wrap:break-word;
  2957. text-transform:none;
  2958. }
  2959. #u19904_img {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:68px;
  2965. height:38px;
  2966. }
  2967. #u19904 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:810px;
  2971. top:0px;
  2972. width:68px;
  2973. height:38px;
  2974. display:flex;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:12px;
  2979. color:#FFFFFF;
  2980. }
  2981. #u19904 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:2px 2px 2px 0px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u19904_text {
  2989. border-width:0px;
  2990. word-wrap:break-word;
  2991. text-transform:none;
  2992. }
  2993. #u19905_img {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:60px;
  2999. height:38px;
  3000. }
  3001. #u19905 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:878px;
  3005. top:0px;
  3006. width:60px;
  3007. height:38px;
  3008. display:flex;
  3009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3010. font-weight:400;
  3011. font-style:normal;
  3012. font-size:12px;
  3013. color:#FFFFFF;
  3014. }
  3015. #u19905 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 0px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u19905_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. }
  3027. #u19906_img {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:60px;
  3033. height:38px;
  3034. }
  3035. #u19906 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:938px;
  3039. top:0px;
  3040. width:60px;
  3041. height:38px;
  3042. display:flex;
  3043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3044. font-weight:400;
  3045. font-style:normal;
  3046. font-size:12px;
  3047. color:#FFFFFF;
  3048. }
  3049. #u19906 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 0px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u19906_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. }
  3061. #u19907_img {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:60px;
  3067. height:38px;
  3068. }
  3069. #u19907 {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:998px;
  3073. top:0px;
  3074. width:60px;
  3075. height:38px;
  3076. display:flex;
  3077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3078. font-weight:400;
  3079. font-style:normal;
  3080. font-size:12px;
  3081. color:#FFFFFF;
  3082. }
  3083. #u19907 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 2px 2px 0px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u19907_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. }
  3095. #u19908_img {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:60px;
  3101. height:38px;
  3102. }
  3103. #u19908 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:1058px;
  3107. top:0px;
  3108. width:60px;
  3109. height:38px;
  3110. display:flex;
  3111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3112. font-weight:400;
  3113. font-style:normal;
  3114. font-size:12px;
  3115. color:#FFFFFF;
  3116. }
  3117. #u19908 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:2px 2px 2px 0px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u19908_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. }
  3129. #u19909_img {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:60px;
  3135. height:38px;
  3136. }
  3137. #u19909 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:1118px;
  3141. top:0px;
  3142. width:60px;
  3143. height:38px;
  3144. display:flex;
  3145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:12px;
  3149. color:#FFFFFF;
  3150. }
  3151. #u19909 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 0px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u19909_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. }
  3163. #u19910_img {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:50px;
  3169. height:38px;
  3170. }
  3171. #u19910 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:1178px;
  3175. top:0px;
  3176. width:50px;
  3177. height:38px;
  3178. display:flex;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:12px;
  3183. color:#FFFFFF;
  3184. }
  3185. #u19910 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 0px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u19910_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. }
  3197. #u19911_img {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:30px;
  3203. height:38px;
  3204. }
  3205. #u19911 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:38px;
  3210. width:30px;
  3211. height:38px;
  3212. display:flex;
  3213. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3214. font-weight:400;
  3215. font-style:normal;
  3216. font-size:12px;
  3217. }
  3218. #u19911 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 0px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u19911_text {
  3226. border-width:0px;
  3227. word-wrap:break-word;
  3228. text-transform:none;
  3229. }
  3230. #u19912_img {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:60px;
  3236. height:38px;
  3237. }
  3238. #u19912 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:30px;
  3242. top:38px;
  3243. width:60px;
  3244. height:38px;
  3245. display:flex;
  3246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3247. font-weight:400;
  3248. font-style:normal;
  3249. font-size:12px;
  3250. }
  3251. #u19912 .text {
  3252. position:absolute;
  3253. align-self:center;
  3254. padding:2px 2px 2px 0px;
  3255. box-sizing:border-box;
  3256. width:100%;
  3257. }
  3258. #u19912_text {
  3259. border-width:0px;
  3260. word-wrap:break-word;
  3261. text-transform:none;
  3262. visibility:hidden;
  3263. }
  3264. #u19913_img {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:60px;
  3270. height:38px;
  3271. }
  3272. #u19913 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:90px;
  3276. top:38px;
  3277. width:60px;
  3278. height:38px;
  3279. display:flex;
  3280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3281. font-weight:400;
  3282. font-style:normal;
  3283. font-size:12px;
  3284. }
  3285. #u19913 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 0px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u19913_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. visibility:hidden;
  3297. }
  3298. #u19914_img {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:60px;
  3304. height:38px;
  3305. }
  3306. #u19914 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:150px;
  3310. top:38px;
  3311. width:60px;
  3312. height:38px;
  3313. display:flex;
  3314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3315. font-weight:400;
  3316. font-style:normal;
  3317. font-size:12px;
  3318. }
  3319. #u19914 .text {
  3320. position:absolute;
  3321. align-self:center;
  3322. padding:2px 2px 2px 0px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u19914_text {
  3327. border-width:0px;
  3328. word-wrap:break-word;
  3329. text-transform:none;
  3330. visibility:hidden;
  3331. }
  3332. #u19915_img {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:60px;
  3338. height:38px;
  3339. }
  3340. #u19915 {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:210px;
  3344. top:38px;
  3345. width:60px;
  3346. height:38px;
  3347. display:flex;
  3348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3349. font-weight:400;
  3350. font-style:normal;
  3351. font-size:12px;
  3352. }
  3353. #u19915 .text {
  3354. position:absolute;
  3355. align-self:center;
  3356. padding:2px 2px 2px 0px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u19915_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. visibility:hidden;
  3365. }
  3366. #u19916_img {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:60px;
  3372. height:38px;
  3373. }
  3374. #u19916 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:270px;
  3378. top:38px;
  3379. width:60px;
  3380. height:38px;
  3381. display:flex;
  3382. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:12px;
  3386. }
  3387. #u19916 .text {
  3388. position:absolute;
  3389. align-self:center;
  3390. padding:2px 2px 2px 0px;
  3391. box-sizing:border-box;
  3392. width:100%;
  3393. }
  3394. #u19916_text {
  3395. border-width:0px;
  3396. word-wrap:break-word;
  3397. text-transform:none;
  3398. visibility:hidden;
  3399. }
  3400. #u19917_img {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:0px;
  3405. width:60px;
  3406. height:38px;
  3407. }
  3408. #u19917 {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:330px;
  3412. top:38px;
  3413. width:60px;
  3414. height:38px;
  3415. display:flex;
  3416. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:12px;
  3420. }
  3421. #u19917 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:2px 2px 2px 0px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u19917_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. visibility:hidden;
  3433. }
  3434. #u19918_img {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:60px;
  3440. height:38px;
  3441. }
  3442. #u19918 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:390px;
  3446. top:38px;
  3447. width:60px;
  3448. height:38px;
  3449. display:flex;
  3450. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3451. font-weight:400;
  3452. font-style:normal;
  3453. font-size:12px;
  3454. }
  3455. #u19918 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u19918_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. visibility:hidden;
  3467. }
  3468. #u19919_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:60px;
  3474. height:38px;
  3475. }
  3476. #u19919 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:450px;
  3480. top:38px;
  3481. width:60px;
  3482. height:38px;
  3483. display:flex;
  3484. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:12px;
  3488. }
  3489. #u19919 .text {
  3490. position:absolute;
  3491. align-self:center;
  3492. padding:2px 2px 2px 0px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u19919_text {
  3497. border-width:0px;
  3498. word-wrap:break-word;
  3499. text-transform:none;
  3500. visibility:hidden;
  3501. }
  3502. #u19920_img {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:60px;
  3508. height:38px;
  3509. }
  3510. #u19920 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:510px;
  3514. top:38px;
  3515. width:60px;
  3516. height:38px;
  3517. display:flex;
  3518. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:12px;
  3522. }
  3523. #u19920 .text {
  3524. position:absolute;
  3525. align-self:center;
  3526. padding:2px 2px 2px 0px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u19920_text {
  3531. border-width:0px;
  3532. word-wrap:break-word;
  3533. text-transform:none;
  3534. visibility:hidden;
  3535. }
  3536. #u19921_img {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:60px;
  3542. height:38px;
  3543. }
  3544. #u19921 {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:570px;
  3548. top:38px;
  3549. width:60px;
  3550. height:38px;
  3551. display:flex;
  3552. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3553. font-weight:400;
  3554. font-style:normal;
  3555. font-size:12px;
  3556. }
  3557. #u19921 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:2px 2px 2px 0px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u19921_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. visibility:hidden;
  3569. }
  3570. #u19922_img {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:60px;
  3576. height:38px;
  3577. }
  3578. #u19922 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:630px;
  3582. top:38px;
  3583. width:60px;
  3584. height:38px;
  3585. display:flex;
  3586. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:12px;
  3590. }
  3591. #u19922 .text {
  3592. position:absolute;
  3593. align-self:center;
  3594. padding:2px 2px 2px 0px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u19922_text {
  3599. border-width:0px;
  3600. word-wrap:break-word;
  3601. text-transform:none;
  3602. visibility:hidden;
  3603. }
  3604. #u19923_img {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:60px;
  3610. height:38px;
  3611. }
  3612. #u19923 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:690px;
  3616. top:38px;
  3617. width:60px;
  3618. height:38px;
  3619. display:flex;
  3620. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3621. font-weight:400;
  3622. font-style:normal;
  3623. font-size:12px;
  3624. }
  3625. #u19923 .text {
  3626. position:absolute;
  3627. align-self:center;
  3628. padding:2px 2px 2px 0px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u19923_text {
  3633. border-width:0px;
  3634. word-wrap:break-word;
  3635. text-transform:none;
  3636. visibility:hidden;
  3637. }
  3638. #u19924_img {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:60px;
  3644. height:38px;
  3645. }
  3646. #u19924 {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:750px;
  3650. top:38px;
  3651. width:60px;
  3652. height:38px;
  3653. display:flex;
  3654. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3655. font-weight:400;
  3656. font-style:normal;
  3657. font-size:12px;
  3658. }
  3659. #u19924 .text {
  3660. position:absolute;
  3661. align-self:center;
  3662. padding:2px 2px 2px 0px;
  3663. box-sizing:border-box;
  3664. width:100%;
  3665. }
  3666. #u19924_text {
  3667. border-width:0px;
  3668. word-wrap:break-word;
  3669. text-transform:none;
  3670. visibility:hidden;
  3671. }
  3672. #u19925_img {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:68px;
  3678. height:38px;
  3679. }
  3680. #u19925 {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:810px;
  3684. top:38px;
  3685. width:68px;
  3686. height:38px;
  3687. display:flex;
  3688. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3689. font-weight:400;
  3690. font-style:normal;
  3691. font-size:12px;
  3692. }
  3693. #u19925 .text {
  3694. position:absolute;
  3695. align-self:center;
  3696. padding:2px 2px 2px 0px;
  3697. box-sizing:border-box;
  3698. width:100%;
  3699. }
  3700. #u19925_text {
  3701. border-width:0px;
  3702. word-wrap:break-word;
  3703. text-transform:none;
  3704. visibility:hidden;
  3705. }
  3706. #u19926_img {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:0px;
  3711. width:60px;
  3712. height:38px;
  3713. }
  3714. #u19926 {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:878px;
  3718. top:38px;
  3719. width:60px;
  3720. height:38px;
  3721. display:flex;
  3722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3723. font-weight:400;
  3724. font-style:normal;
  3725. font-size:12px;
  3726. }
  3727. #u19926 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:2px 2px 2px 0px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u19926_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u19927_img {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:60px;
  3746. height:38px;
  3747. }
  3748. #u19927 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:938px;
  3752. top:38px;
  3753. width:60px;
  3754. height:38px;
  3755. display:flex;
  3756. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:12px;
  3760. }
  3761. #u19927 .text {
  3762. position:absolute;
  3763. align-self:center;
  3764. padding:2px 2px 2px 0px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u19927_text {
  3769. border-width:0px;
  3770. word-wrap:break-word;
  3771. text-transform:none;
  3772. visibility:hidden;
  3773. }
  3774. #u19928_img {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:60px;
  3780. height:38px;
  3781. }
  3782. #u19928 {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:998px;
  3786. top:38px;
  3787. width:60px;
  3788. height:38px;
  3789. display:flex;
  3790. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3791. font-weight:400;
  3792. font-style:normal;
  3793. font-size:12px;
  3794. }
  3795. #u19928 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:2px 2px 2px 0px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u19928_text {
  3803. border-width:0px;
  3804. word-wrap:break-word;
  3805. text-transform:none;
  3806. visibility:hidden;
  3807. }
  3808. #u19929_img {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:60px;
  3814. height:38px;
  3815. }
  3816. #u19929 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:1058px;
  3820. top:38px;
  3821. width:60px;
  3822. height:38px;
  3823. display:flex;
  3824. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:12px;
  3828. }
  3829. #u19929 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 0px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u19929_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. visibility:hidden;
  3841. }
  3842. #u19930_img {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:60px;
  3848. height:38px;
  3849. }
  3850. #u19930 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:1118px;
  3854. top:38px;
  3855. width:60px;
  3856. height:38px;
  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. }
  3863. #u19930 .text {
  3864. position:absolute;
  3865. align-self:center;
  3866. padding:2px 2px 2px 0px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u19930_text {
  3871. border-width:0px;
  3872. word-wrap:break-word;
  3873. text-transform:none;
  3874. visibility:hidden;
  3875. }
  3876. #u19931_img {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:0px;
  3880. top:0px;
  3881. width:50px;
  3882. height:38px;
  3883. }
  3884. #u19931 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:1178px;
  3888. top:38px;
  3889. width:50px;
  3890. height:38px;
  3891. display:flex;
  3892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. font-size:12px;
  3896. color:#1890FF;
  3897. }
  3898. #u19931 .text {
  3899. position:absolute;
  3900. align-self:center;
  3901. padding:2px 2px 2px 0px;
  3902. box-sizing:border-box;
  3903. width:100%;
  3904. }
  3905. #u19931_text {
  3906. border-width:0px;
  3907. word-wrap:break-word;
  3908. text-transform:none;
  3909. }
  3910. #u19932_img {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:30px;
  3916. height:38px;
  3917. }
  3918. #u19932 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:0px;
  3922. top:76px;
  3923. width:30px;
  3924. height:38px;
  3925. display:flex;
  3926. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3927. font-weight:400;
  3928. font-style:normal;
  3929. font-size:12px;
  3930. color:#606266;
  3931. }
  3932. #u19932 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:2px 2px 2px 0px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u19932_text {
  3940. border-width:0px;
  3941. word-wrap:break-word;
  3942. text-transform:none;
  3943. }
  3944. #u19933_img {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:60px;
  3950. height:38px;
  3951. }
  3952. #u19933 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:30px;
  3956. top:76px;
  3957. width:60px;
  3958. height:38px;
  3959. display:flex;
  3960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3961. font-weight:400;
  3962. font-style:normal;
  3963. font-size:12px;
  3964. color:#606266;
  3965. }
  3966. #u19933 .text {
  3967. position:absolute;
  3968. align-self:center;
  3969. padding:2px 2px 2px 0px;
  3970. box-sizing:border-box;
  3971. width:100%;
  3972. }
  3973. #u19933_text {
  3974. border-width:0px;
  3975. word-wrap:break-word;
  3976. text-transform:none;
  3977. visibility:hidden;
  3978. }
  3979. #u19934_img {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:60px;
  3985. height:38px;
  3986. }
  3987. #u19934 {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:90px;
  3991. top:76px;
  3992. width:60px;
  3993. height:38px;
  3994. display:flex;
  3995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3996. font-weight:400;
  3997. font-style:normal;
  3998. font-size:12px;
  3999. color:#606266;
  4000. }
  4001. #u19934 .text {
  4002. position:absolute;
  4003. align-self:center;
  4004. padding:2px 2px 2px 0px;
  4005. box-sizing:border-box;
  4006. width:100%;
  4007. }
  4008. #u19934_text {
  4009. border-width:0px;
  4010. word-wrap:break-word;
  4011. text-transform:none;
  4012. visibility:hidden;
  4013. }
  4014. #u19935_img {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:60px;
  4020. height:38px;
  4021. }
  4022. #u19935 {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:150px;
  4026. top:76px;
  4027. width:60px;
  4028. height:38px;
  4029. display:flex;
  4030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4031. font-weight:400;
  4032. font-style:normal;
  4033. font-size:12px;
  4034. color:#606266;
  4035. }
  4036. #u19935 .text {
  4037. position:absolute;
  4038. align-self:center;
  4039. padding:2px 2px 2px 0px;
  4040. box-sizing:border-box;
  4041. width:100%;
  4042. }
  4043. #u19935_text {
  4044. border-width:0px;
  4045. word-wrap:break-word;
  4046. text-transform:none;
  4047. visibility:hidden;
  4048. }
  4049. #u19936_img {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:60px;
  4055. height:38px;
  4056. }
  4057. #u19936 {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:210px;
  4061. top:76px;
  4062. width:60px;
  4063. height:38px;
  4064. display:flex;
  4065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4066. font-weight:400;
  4067. font-style:normal;
  4068. font-size:12px;
  4069. color:#606266;
  4070. }
  4071. #u19936 .text {
  4072. position:absolute;
  4073. align-self:center;
  4074. padding:2px 2px 2px 0px;
  4075. box-sizing:border-box;
  4076. width:100%;
  4077. }
  4078. #u19936_text {
  4079. border-width:0px;
  4080. word-wrap:break-word;
  4081. text-transform:none;
  4082. visibility:hidden;
  4083. }
  4084. #u19937_img {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:0px;
  4088. top:0px;
  4089. width:60px;
  4090. height:38px;
  4091. }
  4092. #u19937 {
  4093. border-width:0px;
  4094. position:absolute;
  4095. left:270px;
  4096. top:76px;
  4097. width:60px;
  4098. height:38px;
  4099. display:flex;
  4100. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4101. font-weight:400;
  4102. font-style:normal;
  4103. font-size:12px;
  4104. color:#606266;
  4105. }
  4106. #u19937 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:2px 2px 2px 0px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u19937_text {
  4114. border-width:0px;
  4115. word-wrap:break-word;
  4116. text-transform:none;
  4117. visibility:hidden;
  4118. }
  4119. #u19938_img {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:0px;
  4124. width:60px;
  4125. height:38px;
  4126. }
  4127. #u19938 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:330px;
  4131. top:76px;
  4132. width:60px;
  4133. height:38px;
  4134. display:flex;
  4135. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:12px;
  4139. color:#606266;
  4140. }
  4141. #u19938 .text {
  4142. position:absolute;
  4143. align-self:center;
  4144. padding:2px 2px 2px 0px;
  4145. box-sizing:border-box;
  4146. width:100%;
  4147. }
  4148. #u19938_text {
  4149. border-width:0px;
  4150. word-wrap:break-word;
  4151. text-transform:none;
  4152. visibility:hidden;
  4153. }
  4154. #u19939_img {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:0px;
  4158. top:0px;
  4159. width:60px;
  4160. height:38px;
  4161. }
  4162. #u19939 {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:390px;
  4166. top:76px;
  4167. width:60px;
  4168. height:38px;
  4169. display:flex;
  4170. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4171. font-weight:400;
  4172. font-style:normal;
  4173. font-size:12px;
  4174. color:#606266;
  4175. }
  4176. #u19939 .text {
  4177. position:absolute;
  4178. align-self:center;
  4179. padding:2px 2px 2px 0px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u19939_text {
  4184. border-width:0px;
  4185. word-wrap:break-word;
  4186. text-transform:none;
  4187. visibility:hidden;
  4188. }
  4189. #u19940_img {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:60px;
  4195. height:38px;
  4196. }
  4197. #u19940 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:450px;
  4201. top:76px;
  4202. width:60px;
  4203. height:38px;
  4204. display:flex;
  4205. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. font-size:12px;
  4209. color:#606266;
  4210. }
  4211. #u19940 .text {
  4212. position:absolute;
  4213. align-self:center;
  4214. padding:2px 2px 2px 0px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u19940_text {
  4219. border-width:0px;
  4220. word-wrap:break-word;
  4221. text-transform:none;
  4222. visibility:hidden;
  4223. }
  4224. #u19941_img {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:60px;
  4230. height:38px;
  4231. }
  4232. #u19941 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:510px;
  4236. top:76px;
  4237. width:60px;
  4238. height:38px;
  4239. display:flex;
  4240. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4241. font-weight:400;
  4242. font-style:normal;
  4243. font-size:12px;
  4244. color:#606266;
  4245. }
  4246. #u19941 .text {
  4247. position:absolute;
  4248. align-self:center;
  4249. padding:2px 2px 2px 0px;
  4250. box-sizing:border-box;
  4251. width:100%;
  4252. }
  4253. #u19941_text {
  4254. border-width:0px;
  4255. word-wrap:break-word;
  4256. text-transform:none;
  4257. visibility:hidden;
  4258. }
  4259. #u19942_img {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:60px;
  4265. height:38px;
  4266. }
  4267. #u19942 {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:570px;
  4271. top:76px;
  4272. width:60px;
  4273. height:38px;
  4274. display:flex;
  4275. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:12px;
  4279. color:#606266;
  4280. }
  4281. #u19942 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:2px 2px 2px 0px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u19942_text {
  4289. border-width:0px;
  4290. word-wrap:break-word;
  4291. text-transform:none;
  4292. visibility:hidden;
  4293. }
  4294. #u19943_img {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:60px;
  4300. height:38px;
  4301. }
  4302. #u19943 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:630px;
  4306. top:76px;
  4307. width:60px;
  4308. height:38px;
  4309. display:flex;
  4310. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4311. font-weight:400;
  4312. font-style:normal;
  4313. font-size:12px;
  4314. color:#606266;
  4315. }
  4316. #u19943 .text {
  4317. position:absolute;
  4318. align-self:center;
  4319. padding:2px 2px 2px 0px;
  4320. box-sizing:border-box;
  4321. width:100%;
  4322. }
  4323. #u19943_text {
  4324. border-width:0px;
  4325. word-wrap:break-word;
  4326. text-transform:none;
  4327. visibility:hidden;
  4328. }
  4329. #u19944_img {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:60px;
  4335. height:38px;
  4336. }
  4337. #u19944 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:690px;
  4341. top:76px;
  4342. width:60px;
  4343. height:38px;
  4344. display:flex;
  4345. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4346. font-weight:400;
  4347. font-style:normal;
  4348. font-size:12px;
  4349. color:#606266;
  4350. }
  4351. #u19944 .text {
  4352. position:absolute;
  4353. align-self:center;
  4354. padding:2px 2px 2px 0px;
  4355. box-sizing:border-box;
  4356. width:100%;
  4357. }
  4358. #u19944_text {
  4359. border-width:0px;
  4360. word-wrap:break-word;
  4361. text-transform:none;
  4362. visibility:hidden;
  4363. }
  4364. #u19945_img {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:60px;
  4370. height:38px;
  4371. }
  4372. #u19945 {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:750px;
  4376. top:76px;
  4377. width:60px;
  4378. height:38px;
  4379. display:flex;
  4380. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4381. font-weight:400;
  4382. font-style:normal;
  4383. font-size:12px;
  4384. color:#606266;
  4385. }
  4386. #u19945 .text {
  4387. position:absolute;
  4388. align-self:center;
  4389. padding:2px 2px 2px 0px;
  4390. box-sizing:border-box;
  4391. width:100%;
  4392. }
  4393. #u19945_text {
  4394. border-width:0px;
  4395. word-wrap:break-word;
  4396. text-transform:none;
  4397. visibility:hidden;
  4398. }
  4399. #u19946_img {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:0px;
  4403. top:0px;
  4404. width:68px;
  4405. height:38px;
  4406. }
  4407. #u19946 {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:810px;
  4411. top:76px;
  4412. width:68px;
  4413. height:38px;
  4414. display:flex;
  4415. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:12px;
  4419. color:#606266;
  4420. }
  4421. #u19946 .text {
  4422. position:absolute;
  4423. align-self:center;
  4424. padding:2px 2px 2px 0px;
  4425. box-sizing:border-box;
  4426. width:100%;
  4427. }
  4428. #u19946_text {
  4429. border-width:0px;
  4430. word-wrap:break-word;
  4431. text-transform:none;
  4432. visibility:hidden;
  4433. }
  4434. #u19947_img {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:60px;
  4440. height:38px;
  4441. }
  4442. #u19947 {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:878px;
  4446. top:76px;
  4447. width:60px;
  4448. height:38px;
  4449. display:flex;
  4450. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4451. font-weight:400;
  4452. font-style:normal;
  4453. font-size:12px;
  4454. color:#606266;
  4455. }
  4456. #u19947 .text {
  4457. position:absolute;
  4458. align-self:center;
  4459. padding:2px 2px 2px 0px;
  4460. box-sizing:border-box;
  4461. width:100%;
  4462. }
  4463. #u19947_text {
  4464. border-width:0px;
  4465. word-wrap:break-word;
  4466. text-transform:none;
  4467. visibility:hidden;
  4468. }
  4469. #u19948_img {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:0px;
  4473. top:0px;
  4474. width:60px;
  4475. height:38px;
  4476. }
  4477. #u19948 {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:938px;
  4481. top:76px;
  4482. width:60px;
  4483. height:38px;
  4484. display:flex;
  4485. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:12px;
  4489. color:#606266;
  4490. }
  4491. #u19948 .text {
  4492. position:absolute;
  4493. align-self:center;
  4494. padding:2px 2px 2px 0px;
  4495. box-sizing:border-box;
  4496. width:100%;
  4497. }
  4498. #u19948_text {
  4499. border-width:0px;
  4500. word-wrap:break-word;
  4501. text-transform:none;
  4502. visibility:hidden;
  4503. }
  4504. #u19949_img {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:0px;
  4508. top:0px;
  4509. width:60px;
  4510. height:38px;
  4511. }
  4512. #u19949 {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:998px;
  4516. top:76px;
  4517. width:60px;
  4518. height:38px;
  4519. display:flex;
  4520. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4521. font-weight:400;
  4522. font-style:normal;
  4523. font-size:12px;
  4524. color:#606266;
  4525. }
  4526. #u19949 .text {
  4527. position:absolute;
  4528. align-self:center;
  4529. padding:2px 2px 2px 0px;
  4530. box-sizing:border-box;
  4531. width:100%;
  4532. }
  4533. #u19949_text {
  4534. border-width:0px;
  4535. word-wrap:break-word;
  4536. text-transform:none;
  4537. visibility:hidden;
  4538. }
  4539. #u19950_img {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:0px;
  4543. top:0px;
  4544. width:60px;
  4545. height:38px;
  4546. }
  4547. #u19950 {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:1058px;
  4551. top:76px;
  4552. width:60px;
  4553. height:38px;
  4554. display:flex;
  4555. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4556. font-weight:400;
  4557. font-style:normal;
  4558. font-size:12px;
  4559. color:#606266;
  4560. }
  4561. #u19950 .text {
  4562. position:absolute;
  4563. align-self:center;
  4564. padding:2px 2px 2px 0px;
  4565. box-sizing:border-box;
  4566. width:100%;
  4567. }
  4568. #u19950_text {
  4569. border-width:0px;
  4570. word-wrap:break-word;
  4571. text-transform:none;
  4572. visibility:hidden;
  4573. }
  4574. #u19951_img {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:0px;
  4578. top:0px;
  4579. width:60px;
  4580. height:38px;
  4581. }
  4582. #u19951 {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:1118px;
  4586. top:76px;
  4587. width:60px;
  4588. height:38px;
  4589. display:flex;
  4590. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4591. font-weight:400;
  4592. font-style:normal;
  4593. font-size:12px;
  4594. color:#606266;
  4595. }
  4596. #u19951 .text {
  4597. position:absolute;
  4598. align-self:center;
  4599. padding:2px 2px 2px 0px;
  4600. box-sizing:border-box;
  4601. width:100%;
  4602. }
  4603. #u19951_text {
  4604. border-width:0px;
  4605. word-wrap:break-word;
  4606. text-transform:none;
  4607. visibility:hidden;
  4608. }
  4609. #u19952_img {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:0px;
  4613. top:0px;
  4614. width:50px;
  4615. height:38px;
  4616. }
  4617. #u19952 {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:1178px;
  4621. top:76px;
  4622. width:50px;
  4623. height:38px;
  4624. display:flex;
  4625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4626. font-weight:400;
  4627. font-style:normal;
  4628. font-size:12px;
  4629. color:#1890FF;
  4630. }
  4631. #u19952 .text {
  4632. position:absolute;
  4633. align-self:center;
  4634. padding:2px 2px 2px 0px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u19952_text {
  4639. border-width:0px;
  4640. word-wrap:break-word;
  4641. text-transform:none;
  4642. }
  4643. #u19953_img {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:30px;
  4649. height:38px;
  4650. }
  4651. #u19953 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:114px;
  4656. width:30px;
  4657. height:38px;
  4658. display:flex;
  4659. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4660. font-weight:400;
  4661. font-style:normal;
  4662. font-size:12px;
  4663. color:#606266;
  4664. }
  4665. #u19953 .text {
  4666. position:absolute;
  4667. align-self:center;
  4668. padding:2px 2px 2px 0px;
  4669. box-sizing:border-box;
  4670. width:100%;
  4671. }
  4672. #u19953_text {
  4673. border-width:0px;
  4674. word-wrap:break-word;
  4675. text-transform:none;
  4676. }
  4677. #u19954_img {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:0px;
  4681. top:0px;
  4682. width:60px;
  4683. height:38px;
  4684. }
  4685. #u19954 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:30px;
  4689. top:114px;
  4690. width:60px;
  4691. height:38px;
  4692. display:flex;
  4693. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4694. font-weight:400;
  4695. font-style:normal;
  4696. font-size:12px;
  4697. color:#606266;
  4698. }
  4699. #u19954 .text {
  4700. position:absolute;
  4701. align-self:center;
  4702. padding:2px 2px 2px 0px;
  4703. box-sizing:border-box;
  4704. width:100%;
  4705. }
  4706. #u19954_text {
  4707. border-width:0px;
  4708. word-wrap:break-word;
  4709. text-transform:none;
  4710. visibility:hidden;
  4711. }
  4712. #u19955_img {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:0px;
  4716. top:0px;
  4717. width:60px;
  4718. height:38px;
  4719. }
  4720. #u19955 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:90px;
  4724. top:114px;
  4725. width:60px;
  4726. height:38px;
  4727. display:flex;
  4728. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4729. font-weight:400;
  4730. font-style:normal;
  4731. font-size:12px;
  4732. color:#606266;
  4733. }
  4734. #u19955 .text {
  4735. position:absolute;
  4736. align-self:center;
  4737. padding:2px 2px 2px 0px;
  4738. box-sizing:border-box;
  4739. width:100%;
  4740. }
  4741. #u19955_text {
  4742. border-width:0px;
  4743. word-wrap:break-word;
  4744. text-transform:none;
  4745. visibility:hidden;
  4746. }
  4747. #u19956_img {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:60px;
  4753. height:38px;
  4754. }
  4755. #u19956 {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:150px;
  4759. top:114px;
  4760. width:60px;
  4761. height:38px;
  4762. display:flex;
  4763. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4764. font-weight:400;
  4765. font-style:normal;
  4766. font-size:12px;
  4767. color:#606266;
  4768. }
  4769. #u19956 .text {
  4770. position:absolute;
  4771. align-self:center;
  4772. padding:2px 2px 2px 0px;
  4773. box-sizing:border-box;
  4774. width:100%;
  4775. }
  4776. #u19956_text {
  4777. border-width:0px;
  4778. word-wrap:break-word;
  4779. text-transform:none;
  4780. visibility:hidden;
  4781. }
  4782. #u19957_img {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:0px;
  4787. width:60px;
  4788. height:38px;
  4789. }
  4790. #u19957 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:210px;
  4794. top:114px;
  4795. width:60px;
  4796. height:38px;
  4797. display:flex;
  4798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4799. font-weight:400;
  4800. font-style:normal;
  4801. font-size:12px;
  4802. color:#606266;
  4803. }
  4804. #u19957 .text {
  4805. position:absolute;
  4806. align-self:center;
  4807. padding:2px 2px 2px 0px;
  4808. box-sizing:border-box;
  4809. width:100%;
  4810. }
  4811. #u19957_text {
  4812. border-width:0px;
  4813. word-wrap:break-word;
  4814. text-transform:none;
  4815. visibility:hidden;
  4816. }
  4817. #u19958_img {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:60px;
  4823. height:38px;
  4824. }
  4825. #u19958 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:270px;
  4829. top:114px;
  4830. width:60px;
  4831. height:38px;
  4832. display:flex;
  4833. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4834. font-weight:400;
  4835. font-style:normal;
  4836. font-size:12px;
  4837. color:#606266;
  4838. }
  4839. #u19958 .text {
  4840. position:absolute;
  4841. align-self:center;
  4842. padding:2px 2px 2px 0px;
  4843. box-sizing:border-box;
  4844. width:100%;
  4845. }
  4846. #u19958_text {
  4847. border-width:0px;
  4848. word-wrap:break-word;
  4849. text-transform:none;
  4850. visibility:hidden;
  4851. }
  4852. #u19959_img {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:60px;
  4858. height:38px;
  4859. }
  4860. #u19959 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:330px;
  4864. top:114px;
  4865. width:60px;
  4866. height:38px;
  4867. display:flex;
  4868. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:12px;
  4872. color:#606266;
  4873. }
  4874. #u19959 .text {
  4875. position:absolute;
  4876. align-self:center;
  4877. padding:2px 2px 2px 0px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u19959_text {
  4882. border-width:0px;
  4883. word-wrap:break-word;
  4884. text-transform:none;
  4885. visibility:hidden;
  4886. }
  4887. #u19960_img {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:0px;
  4891. top:0px;
  4892. width:60px;
  4893. height:38px;
  4894. }
  4895. #u19960 {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:390px;
  4899. top:114px;
  4900. width:60px;
  4901. height:38px;
  4902. display:flex;
  4903. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4904. font-weight:400;
  4905. font-style:normal;
  4906. font-size:12px;
  4907. color:#606266;
  4908. }
  4909. #u19960 .text {
  4910. position:absolute;
  4911. align-self:center;
  4912. padding:2px 2px 2px 0px;
  4913. box-sizing:border-box;
  4914. width:100%;
  4915. }
  4916. #u19960_text {
  4917. border-width:0px;
  4918. word-wrap:break-word;
  4919. text-transform:none;
  4920. visibility:hidden;
  4921. }
  4922. #u19961_img {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:0px;
  4926. top:0px;
  4927. width:60px;
  4928. height:38px;
  4929. }
  4930. #u19961 {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:450px;
  4934. top:114px;
  4935. width:60px;
  4936. height:38px;
  4937. display:flex;
  4938. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4939. font-weight:400;
  4940. font-style:normal;
  4941. font-size:12px;
  4942. color:#606266;
  4943. }
  4944. #u19961 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:2px 2px 2px 0px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u19961_text {
  4952. border-width:0px;
  4953. word-wrap:break-word;
  4954. text-transform:none;
  4955. visibility:hidden;
  4956. }
  4957. #u19962_img {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:60px;
  4963. height:38px;
  4964. }
  4965. #u19962 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:510px;
  4969. top:114px;
  4970. width:60px;
  4971. height:38px;
  4972. display:flex;
  4973. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4974. font-weight:400;
  4975. font-style:normal;
  4976. font-size:12px;
  4977. color:#606266;
  4978. }
  4979. #u19962 .text {
  4980. position:absolute;
  4981. align-self:center;
  4982. padding:2px 2px 2px 0px;
  4983. box-sizing:border-box;
  4984. width:100%;
  4985. }
  4986. #u19962_text {
  4987. border-width:0px;
  4988. word-wrap:break-word;
  4989. text-transform:none;
  4990. visibility:hidden;
  4991. }
  4992. #u19963_img {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:0px;
  4996. top:0px;
  4997. width:60px;
  4998. height:38px;
  4999. }
  5000. #u19963 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:570px;
  5004. top:114px;
  5005. width:60px;
  5006. height:38px;
  5007. display:flex;
  5008. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5009. font-weight:400;
  5010. font-style:normal;
  5011. font-size:12px;
  5012. color:#606266;
  5013. }
  5014. #u19963 .text {
  5015. position:absolute;
  5016. align-self:center;
  5017. padding:2px 2px 2px 0px;
  5018. box-sizing:border-box;
  5019. width:100%;
  5020. }
  5021. #u19963_text {
  5022. border-width:0px;
  5023. word-wrap:break-word;
  5024. text-transform:none;
  5025. visibility:hidden;
  5026. }
  5027. #u19964_img {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:0px;
  5031. top:0px;
  5032. width:60px;
  5033. height:38px;
  5034. }
  5035. #u19964 {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:630px;
  5039. top:114px;
  5040. width:60px;
  5041. height:38px;
  5042. display:flex;
  5043. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:12px;
  5047. color:#606266;
  5048. }
  5049. #u19964 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 0px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u19964_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. visibility:hidden;
  5061. }
  5062. #u19965_img {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:60px;
  5068. height:38px;
  5069. }
  5070. #u19965 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:690px;
  5074. top:114px;
  5075. width:60px;
  5076. height:38px;
  5077. display:flex;
  5078. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:12px;
  5082. color:#606266;
  5083. }
  5084. #u19965 .text {
  5085. position:absolute;
  5086. align-self:center;
  5087. padding:2px 2px 2px 0px;
  5088. box-sizing:border-box;
  5089. width:100%;
  5090. }
  5091. #u19965_text {
  5092. border-width:0px;
  5093. word-wrap:break-word;
  5094. text-transform:none;
  5095. visibility:hidden;
  5096. }
  5097. #u19966_img {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:60px;
  5103. height:38px;
  5104. }
  5105. #u19966 {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:750px;
  5109. top:114px;
  5110. width:60px;
  5111. height:38px;
  5112. display:flex;
  5113. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5114. font-weight:400;
  5115. font-style:normal;
  5116. font-size:12px;
  5117. color:#606266;
  5118. }
  5119. #u19966 .text {
  5120. position:absolute;
  5121. align-self:center;
  5122. padding:2px 2px 2px 0px;
  5123. box-sizing:border-box;
  5124. width:100%;
  5125. }
  5126. #u19966_text {
  5127. border-width:0px;
  5128. word-wrap:break-word;
  5129. text-transform:none;
  5130. visibility:hidden;
  5131. }
  5132. #u19967_img {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:0px;
  5136. top:0px;
  5137. width:68px;
  5138. height:38px;
  5139. }
  5140. #u19967 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:810px;
  5144. top:114px;
  5145. width:68px;
  5146. height:38px;
  5147. display:flex;
  5148. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5149. font-weight:400;
  5150. font-style:normal;
  5151. font-size:12px;
  5152. color:#606266;
  5153. }
  5154. #u19967 .text {
  5155. position:absolute;
  5156. align-self:center;
  5157. padding:2px 2px 2px 0px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u19967_text {
  5162. border-width:0px;
  5163. word-wrap:break-word;
  5164. text-transform:none;
  5165. visibility:hidden;
  5166. }
  5167. #u19968_img {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:0px;
  5171. top:0px;
  5172. width:60px;
  5173. height:38px;
  5174. }
  5175. #u19968 {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:878px;
  5179. top:114px;
  5180. width:60px;
  5181. height:38px;
  5182. display:flex;
  5183. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5184. font-weight:400;
  5185. font-style:normal;
  5186. font-size:12px;
  5187. color:#606266;
  5188. }
  5189. #u19968 .text {
  5190. position:absolute;
  5191. align-self:center;
  5192. padding:2px 2px 2px 0px;
  5193. box-sizing:border-box;
  5194. width:100%;
  5195. }
  5196. #u19968_text {
  5197. border-width:0px;
  5198. word-wrap:break-word;
  5199. text-transform:none;
  5200. visibility:hidden;
  5201. }
  5202. #u19969_img {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:0px;
  5206. top:0px;
  5207. width:60px;
  5208. height:38px;
  5209. }
  5210. #u19969 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:938px;
  5214. top:114px;
  5215. width:60px;
  5216. height:38px;
  5217. display:flex;
  5218. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:12px;
  5222. color:#606266;
  5223. }
  5224. #u19969 .text {
  5225. position:absolute;
  5226. align-self:center;
  5227. padding:2px 2px 2px 0px;
  5228. box-sizing:border-box;
  5229. width:100%;
  5230. }
  5231. #u19969_text {
  5232. border-width:0px;
  5233. word-wrap:break-word;
  5234. text-transform:none;
  5235. visibility:hidden;
  5236. }
  5237. #u19970_img {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:60px;
  5243. height:38px;
  5244. }
  5245. #u19970 {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:998px;
  5249. top:114px;
  5250. width:60px;
  5251. height:38px;
  5252. display:flex;
  5253. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5254. font-weight:400;
  5255. font-style:normal;
  5256. font-size:12px;
  5257. color:#606266;
  5258. }
  5259. #u19970 .text {
  5260. position:absolute;
  5261. align-self:center;
  5262. padding:2px 2px 2px 0px;
  5263. box-sizing:border-box;
  5264. width:100%;
  5265. }
  5266. #u19970_text {
  5267. border-width:0px;
  5268. word-wrap:break-word;
  5269. text-transform:none;
  5270. visibility:hidden;
  5271. }
  5272. #u19971_img {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:60px;
  5278. height:38px;
  5279. }
  5280. #u19971 {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:1058px;
  5284. top:114px;
  5285. width:60px;
  5286. height:38px;
  5287. display:flex;
  5288. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:12px;
  5292. color:#606266;
  5293. }
  5294. #u19971 .text {
  5295. position:absolute;
  5296. align-self:center;
  5297. padding:2px 2px 2px 0px;
  5298. box-sizing:border-box;
  5299. width:100%;
  5300. }
  5301. #u19971_text {
  5302. border-width:0px;
  5303. word-wrap:break-word;
  5304. text-transform:none;
  5305. visibility:hidden;
  5306. }
  5307. #u19972_img {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:0px;
  5311. top:0px;
  5312. width:60px;
  5313. height:38px;
  5314. }
  5315. #u19972 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:1118px;
  5319. top:114px;
  5320. width:60px;
  5321. height:38px;
  5322. display:flex;
  5323. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5324. font-weight:400;
  5325. font-style:normal;
  5326. font-size:12px;
  5327. color:#606266;
  5328. }
  5329. #u19972 .text {
  5330. position:absolute;
  5331. align-self:center;
  5332. padding:2px 2px 2px 0px;
  5333. box-sizing:border-box;
  5334. width:100%;
  5335. }
  5336. #u19972_text {
  5337. border-width:0px;
  5338. word-wrap:break-word;
  5339. text-transform:none;
  5340. visibility:hidden;
  5341. }
  5342. #u19973_img {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:0px;
  5346. top:0px;
  5347. width:50px;
  5348. height:38px;
  5349. }
  5350. #u19973 {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:1178px;
  5354. top:114px;
  5355. width:50px;
  5356. height:38px;
  5357. display:flex;
  5358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5359. font-weight:400;
  5360. font-style:normal;
  5361. font-size:12px;
  5362. color:#1890FF;
  5363. }
  5364. #u19973 .text {
  5365. position:absolute;
  5366. align-self:center;
  5367. padding:2px 2px 2px 0px;
  5368. box-sizing:border-box;
  5369. width:100%;
  5370. }
  5371. #u19973_text {
  5372. border-width:0px;
  5373. word-wrap:break-word;
  5374. text-transform:none;
  5375. }
  5376. #u19974_img {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:30px;
  5382. height:35px;
  5383. }
  5384. #u19974 {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:152px;
  5389. width:30px;
  5390. height:35px;
  5391. display:flex;
  5392. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5393. font-weight:400;
  5394. font-style:normal;
  5395. font-size:12px;
  5396. color:#606266;
  5397. }
  5398. #u19974 .text {
  5399. position:absolute;
  5400. align-self:center;
  5401. padding:2px 2px 2px 0px;
  5402. box-sizing:border-box;
  5403. width:100%;
  5404. }
  5405. #u19974_text {
  5406. border-width:0px;
  5407. word-wrap:break-word;
  5408. text-transform:none;
  5409. }
  5410. #u19975_img {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:60px;
  5416. height:35px;
  5417. }
  5418. #u19975 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:30px;
  5422. top:152px;
  5423. width:60px;
  5424. height:35px;
  5425. display:flex;
  5426. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5427. font-weight:400;
  5428. font-style:normal;
  5429. font-size:12px;
  5430. color:#606266;
  5431. }
  5432. #u19975 .text {
  5433. position:absolute;
  5434. align-self:center;
  5435. padding:2px 2px 2px 0px;
  5436. box-sizing:border-box;
  5437. width:100%;
  5438. }
  5439. #u19975_text {
  5440. border-width:0px;
  5441. word-wrap:break-word;
  5442. text-transform:none;
  5443. visibility:hidden;
  5444. }
  5445. #u19976_img {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:60px;
  5451. height:35px;
  5452. }
  5453. #u19976 {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:90px;
  5457. top:152px;
  5458. width:60px;
  5459. height:35px;
  5460. display:flex;
  5461. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5462. font-weight:400;
  5463. font-style:normal;
  5464. font-size:12px;
  5465. color:#606266;
  5466. }
  5467. #u19976 .text {
  5468. position:absolute;
  5469. align-self:center;
  5470. padding:2px 2px 2px 0px;
  5471. box-sizing:border-box;
  5472. width:100%;
  5473. }
  5474. #u19976_text {
  5475. border-width:0px;
  5476. word-wrap:break-word;
  5477. text-transform:none;
  5478. visibility:hidden;
  5479. }
  5480. #u19977_img {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:60px;
  5486. height:35px;
  5487. }
  5488. #u19977 {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:150px;
  5492. top:152px;
  5493. width:60px;
  5494. height:35px;
  5495. display:flex;
  5496. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5497. font-weight:400;
  5498. font-style:normal;
  5499. font-size:12px;
  5500. color:#606266;
  5501. }
  5502. #u19977 .text {
  5503. position:absolute;
  5504. align-self:center;
  5505. padding:2px 2px 2px 0px;
  5506. box-sizing:border-box;
  5507. width:100%;
  5508. }
  5509. #u19977_text {
  5510. border-width:0px;
  5511. word-wrap:break-word;
  5512. text-transform:none;
  5513. visibility:hidden;
  5514. }
  5515. #u19978_img {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:0px;
  5519. top:0px;
  5520. width:60px;
  5521. height:35px;
  5522. }
  5523. #u19978 {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:210px;
  5527. top:152px;
  5528. width:60px;
  5529. height:35px;
  5530. display:flex;
  5531. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:12px;
  5535. color:#606266;
  5536. }
  5537. #u19978 .text {
  5538. position:absolute;
  5539. align-self:center;
  5540. padding:2px 2px 2px 0px;
  5541. box-sizing:border-box;
  5542. width:100%;
  5543. }
  5544. #u19978_text {
  5545. border-width:0px;
  5546. word-wrap:break-word;
  5547. text-transform:none;
  5548. visibility:hidden;
  5549. }
  5550. #u19979_img {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:60px;
  5556. height:35px;
  5557. }
  5558. #u19979 {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:270px;
  5562. top:152px;
  5563. width:60px;
  5564. height:35px;
  5565. display:flex;
  5566. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5567. font-weight:400;
  5568. font-style:normal;
  5569. font-size:12px;
  5570. color:#606266;
  5571. }
  5572. #u19979 .text {
  5573. position:absolute;
  5574. align-self:center;
  5575. padding:2px 2px 2px 0px;
  5576. box-sizing:border-box;
  5577. width:100%;
  5578. }
  5579. #u19979_text {
  5580. border-width:0px;
  5581. word-wrap:break-word;
  5582. text-transform:none;
  5583. visibility:hidden;
  5584. }
  5585. #u19980_img {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:0px;
  5589. top:0px;
  5590. width:60px;
  5591. height:35px;
  5592. }
  5593. #u19980 {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:330px;
  5597. top:152px;
  5598. width:60px;
  5599. height:35px;
  5600. display:flex;
  5601. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:12px;
  5605. color:#606266;
  5606. }
  5607. #u19980 .text {
  5608. position:absolute;
  5609. align-self:center;
  5610. padding:2px 2px 2px 0px;
  5611. box-sizing:border-box;
  5612. width:100%;
  5613. }
  5614. #u19980_text {
  5615. border-width:0px;
  5616. word-wrap:break-word;
  5617. text-transform:none;
  5618. visibility:hidden;
  5619. }
  5620. #u19981_img {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:0px;
  5624. top:0px;
  5625. width:60px;
  5626. height:35px;
  5627. }
  5628. #u19981 {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:390px;
  5632. top:152px;
  5633. width:60px;
  5634. height:35px;
  5635. display:flex;
  5636. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5637. font-weight:400;
  5638. font-style:normal;
  5639. font-size:12px;
  5640. color:#606266;
  5641. }
  5642. #u19981 .text {
  5643. position:absolute;
  5644. align-self:center;
  5645. padding:2px 2px 2px 0px;
  5646. box-sizing:border-box;
  5647. width:100%;
  5648. }
  5649. #u19981_text {
  5650. border-width:0px;
  5651. word-wrap:break-word;
  5652. text-transform:none;
  5653. visibility:hidden;
  5654. }
  5655. #u19982_img {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:60px;
  5661. height:35px;
  5662. }
  5663. #u19982 {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:450px;
  5667. top:152px;
  5668. width:60px;
  5669. height:35px;
  5670. display:flex;
  5671. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:12px;
  5675. color:#606266;
  5676. }
  5677. #u19982 .text {
  5678. position:absolute;
  5679. align-self:center;
  5680. padding:2px 2px 2px 0px;
  5681. box-sizing:border-box;
  5682. width:100%;
  5683. }
  5684. #u19982_text {
  5685. border-width:0px;
  5686. word-wrap:break-word;
  5687. text-transform:none;
  5688. visibility:hidden;
  5689. }
  5690. #u19983_img {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:0px;
  5695. width:60px;
  5696. height:35px;
  5697. }
  5698. #u19983 {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:510px;
  5702. top:152px;
  5703. width:60px;
  5704. height:35px;
  5705. display:flex;
  5706. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5707. font-weight:400;
  5708. font-style:normal;
  5709. font-size:12px;
  5710. color:#606266;
  5711. }
  5712. #u19983 .text {
  5713. position:absolute;
  5714. align-self:center;
  5715. padding:2px 2px 2px 0px;
  5716. box-sizing:border-box;
  5717. width:100%;
  5718. }
  5719. #u19983_text {
  5720. border-width:0px;
  5721. word-wrap:break-word;
  5722. text-transform:none;
  5723. visibility:hidden;
  5724. }
  5725. #u19984_img {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:0px;
  5729. top:0px;
  5730. width:60px;
  5731. height:35px;
  5732. }
  5733. #u19984 {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:570px;
  5737. top:152px;
  5738. width:60px;
  5739. height:35px;
  5740. display:flex;
  5741. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5742. font-weight:400;
  5743. font-style:normal;
  5744. font-size:12px;
  5745. color:#606266;
  5746. }
  5747. #u19984 .text {
  5748. position:absolute;
  5749. align-self:center;
  5750. padding:2px 2px 2px 0px;
  5751. box-sizing:border-box;
  5752. width:100%;
  5753. }
  5754. #u19984_text {
  5755. border-width:0px;
  5756. word-wrap:break-word;
  5757. text-transform:none;
  5758. visibility:hidden;
  5759. }
  5760. #u19985_img {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:60px;
  5766. height:35px;
  5767. }
  5768. #u19985 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:630px;
  5772. top:152px;
  5773. width:60px;
  5774. height:35px;
  5775. display:flex;
  5776. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:12px;
  5780. color:#606266;
  5781. }
  5782. #u19985 .text {
  5783. position:absolute;
  5784. align-self:center;
  5785. padding:2px 2px 2px 0px;
  5786. box-sizing:border-box;
  5787. width:100%;
  5788. }
  5789. #u19985_text {
  5790. border-width:0px;
  5791. word-wrap:break-word;
  5792. text-transform:none;
  5793. visibility:hidden;
  5794. }
  5795. #u19986_img {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:60px;
  5801. height:35px;
  5802. }
  5803. #u19986 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:690px;
  5807. top:152px;
  5808. width:60px;
  5809. height:35px;
  5810. display:flex;
  5811. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:12px;
  5815. color:#606266;
  5816. }
  5817. #u19986 .text {
  5818. position:absolute;
  5819. align-self:center;
  5820. padding:2px 2px 2px 0px;
  5821. box-sizing:border-box;
  5822. width:100%;
  5823. }
  5824. #u19986_text {
  5825. border-width:0px;
  5826. word-wrap:break-word;
  5827. text-transform:none;
  5828. visibility:hidden;
  5829. }
  5830. #u19987_img {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:0px;
  5834. top:0px;
  5835. width:60px;
  5836. height:35px;
  5837. }
  5838. #u19987 {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:750px;
  5842. top:152px;
  5843. width:60px;
  5844. height:35px;
  5845. display:flex;
  5846. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5847. font-weight:400;
  5848. font-style:normal;
  5849. font-size:12px;
  5850. color:#606266;
  5851. }
  5852. #u19987 .text {
  5853. position:absolute;
  5854. align-self:center;
  5855. padding:2px 2px 2px 0px;
  5856. box-sizing:border-box;
  5857. width:100%;
  5858. }
  5859. #u19987_text {
  5860. border-width:0px;
  5861. word-wrap:break-word;
  5862. text-transform:none;
  5863. visibility:hidden;
  5864. }
  5865. #u19988_img {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:68px;
  5871. height:35px;
  5872. }
  5873. #u19988 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:810px;
  5877. top:152px;
  5878. width:68px;
  5879. height:35px;
  5880. display:flex;
  5881. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5882. font-weight:400;
  5883. font-style:normal;
  5884. font-size:12px;
  5885. color:#606266;
  5886. }
  5887. #u19988 .text {
  5888. position:absolute;
  5889. align-self:center;
  5890. padding:2px 2px 2px 0px;
  5891. box-sizing:border-box;
  5892. width:100%;
  5893. }
  5894. #u19988_text {
  5895. border-width:0px;
  5896. word-wrap:break-word;
  5897. text-transform:none;
  5898. visibility:hidden;
  5899. }
  5900. #u19989_img {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:0px;
  5904. top:0px;
  5905. width:60px;
  5906. height:35px;
  5907. }
  5908. #u19989 {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:878px;
  5912. top:152px;
  5913. width:60px;
  5914. height:35px;
  5915. display:flex;
  5916. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5917. font-weight:400;
  5918. font-style:normal;
  5919. font-size:12px;
  5920. color:#606266;
  5921. }
  5922. #u19989 .text {
  5923. position:absolute;
  5924. align-self:center;
  5925. padding:2px 2px 2px 0px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u19989_text {
  5930. border-width:0px;
  5931. word-wrap:break-word;
  5932. text-transform:none;
  5933. visibility:hidden;
  5934. }
  5935. #u19990_img {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:60px;
  5941. height:35px;
  5942. }
  5943. #u19990 {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:938px;
  5947. top:152px;
  5948. width:60px;
  5949. height:35px;
  5950. display:flex;
  5951. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5952. font-weight:400;
  5953. font-style:normal;
  5954. font-size:12px;
  5955. color:#606266;
  5956. }
  5957. #u19990 .text {
  5958. position:absolute;
  5959. align-self:center;
  5960. padding:2px 2px 2px 0px;
  5961. box-sizing:border-box;
  5962. width:100%;
  5963. }
  5964. #u19990_text {
  5965. border-width:0px;
  5966. word-wrap:break-word;
  5967. text-transform:none;
  5968. visibility:hidden;
  5969. }
  5970. #u19991_img {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:60px;
  5976. height:35px;
  5977. }
  5978. #u19991 {
  5979. border-width:0px;
  5980. position:absolute;
  5981. left:998px;
  5982. top:152px;
  5983. width:60px;
  5984. height:35px;
  5985. display:flex;
  5986. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5987. font-weight:400;
  5988. font-style:normal;
  5989. font-size:12px;
  5990. color:#606266;
  5991. }
  5992. #u19991 .text {
  5993. position:absolute;
  5994. align-self:center;
  5995. padding:2px 2px 2px 0px;
  5996. box-sizing:border-box;
  5997. width:100%;
  5998. }
  5999. #u19991_text {
  6000. border-width:0px;
  6001. word-wrap:break-word;
  6002. text-transform:none;
  6003. visibility:hidden;
  6004. }
  6005. #u19992_img {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:0px;
  6009. top:0px;
  6010. width:60px;
  6011. height:35px;
  6012. }
  6013. #u19992 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:1058px;
  6017. top:152px;
  6018. width:60px;
  6019. height:35px;
  6020. display:flex;
  6021. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6022. font-weight:400;
  6023. font-style:normal;
  6024. font-size:12px;
  6025. color:#606266;
  6026. }
  6027. #u19992 .text {
  6028. position:absolute;
  6029. align-self:center;
  6030. padding:2px 2px 2px 0px;
  6031. box-sizing:border-box;
  6032. width:100%;
  6033. }
  6034. #u19992_text {
  6035. border-width:0px;
  6036. word-wrap:break-word;
  6037. text-transform:none;
  6038. visibility:hidden;
  6039. }
  6040. #u19993_img {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:0px;
  6044. top:0px;
  6045. width:60px;
  6046. height:35px;
  6047. }
  6048. #u19993 {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:1118px;
  6052. top:152px;
  6053. width:60px;
  6054. height:35px;
  6055. display:flex;
  6056. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. font-size:12px;
  6060. color:#606266;
  6061. }
  6062. #u19993 .text {
  6063. position:absolute;
  6064. align-self:center;
  6065. padding:2px 2px 2px 0px;
  6066. box-sizing:border-box;
  6067. width:100%;
  6068. }
  6069. #u19993_text {
  6070. border-width:0px;
  6071. word-wrap:break-word;
  6072. text-transform:none;
  6073. visibility:hidden;
  6074. }
  6075. #u19994_img {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:50px;
  6081. height:35px;
  6082. }
  6083. #u19994 {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:1178px;
  6087. top:152px;
  6088. width:50px;
  6089. height:35px;
  6090. display:flex;
  6091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6092. font-weight:400;
  6093. font-style:normal;
  6094. font-size:12px;
  6095. color:#02A7F0;
  6096. }
  6097. #u19994 .text {
  6098. position:absolute;
  6099. align-self:center;
  6100. padding:2px 2px 2px 0px;
  6101. box-sizing:border-box;
  6102. width:100%;
  6103. }
  6104. #u19994_text {
  6105. border-width:0px;
  6106. word-wrap:break-word;
  6107. text-transform:none;
  6108. visibility:hidden;
  6109. }
  6110. #u19995_img {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:30px;
  6116. height:35px;
  6117. }
  6118. #u19995 {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:187px;
  6123. width:30px;
  6124. height:35px;
  6125. display:flex;
  6126. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6127. font-weight:400;
  6128. font-style:normal;
  6129. font-size:12px;
  6130. color:#606266;
  6131. }
  6132. #u19995 .text {
  6133. position:absolute;
  6134. align-self:center;
  6135. padding:2px 2px 2px 0px;
  6136. box-sizing:border-box;
  6137. width:100%;
  6138. }
  6139. #u19995_text {
  6140. border-width:0px;
  6141. word-wrap:break-word;
  6142. text-transform:none;
  6143. visibility:hidden;
  6144. }
  6145. #u19996_img {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:60px;
  6151. height:35px;
  6152. }
  6153. #u19996 {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:30px;
  6157. top:187px;
  6158. width:60px;
  6159. height:35px;
  6160. display:flex;
  6161. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6162. font-weight:400;
  6163. font-style:normal;
  6164. font-size:12px;
  6165. color:#606266;
  6166. }
  6167. #u19996 .text {
  6168. position:absolute;
  6169. align-self:center;
  6170. padding:2px 2px 2px 0px;
  6171. box-sizing:border-box;
  6172. width:100%;
  6173. }
  6174. #u19996_text {
  6175. border-width:0px;
  6176. word-wrap:break-word;
  6177. text-transform:none;
  6178. visibility:hidden;
  6179. }
  6180. #u19997_img {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:0px;
  6184. top:0px;
  6185. width:60px;
  6186. height:35px;
  6187. }
  6188. #u19997 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:90px;
  6192. top:187px;
  6193. width:60px;
  6194. height:35px;
  6195. display:flex;
  6196. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:12px;
  6200. color:#606266;
  6201. }
  6202. #u19997 .text {
  6203. position:absolute;
  6204. align-self:center;
  6205. padding:2px 2px 2px 0px;
  6206. box-sizing:border-box;
  6207. width:100%;
  6208. }
  6209. #u19997_text {
  6210. border-width:0px;
  6211. word-wrap:break-word;
  6212. text-transform:none;
  6213. visibility:hidden;
  6214. }
  6215. #u19998_img {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:60px;
  6221. height:35px;
  6222. }
  6223. #u19998 {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:150px;
  6227. top:187px;
  6228. width:60px;
  6229. height:35px;
  6230. display:flex;
  6231. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6232. font-weight:400;
  6233. font-style:normal;
  6234. font-size:12px;
  6235. color:#606266;
  6236. }
  6237. #u19998 .text {
  6238. position:absolute;
  6239. align-self:center;
  6240. padding:2px 2px 2px 0px;
  6241. box-sizing:border-box;
  6242. width:100%;
  6243. }
  6244. #u19998_text {
  6245. border-width:0px;
  6246. word-wrap:break-word;
  6247. text-transform:none;
  6248. visibility:hidden;
  6249. }
  6250. #u19999_img {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:60px;
  6256. height:35px;
  6257. }
  6258. #u19999 {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:210px;
  6262. top:187px;
  6263. width:60px;
  6264. height:35px;
  6265. display:flex;
  6266. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6267. font-weight:400;
  6268. font-style:normal;
  6269. font-size:12px;
  6270. color:#606266;
  6271. }
  6272. #u19999 .text {
  6273. position:absolute;
  6274. align-self:center;
  6275. padding:2px 2px 2px 0px;
  6276. box-sizing:border-box;
  6277. width:100%;
  6278. }
  6279. #u19999_text {
  6280. border-width:0px;
  6281. word-wrap:break-word;
  6282. text-transform:none;
  6283. visibility:hidden;
  6284. }
  6285. #u20000_img {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:0px;
  6289. top:0px;
  6290. width:60px;
  6291. height:35px;
  6292. }
  6293. #u20000 {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:270px;
  6297. top:187px;
  6298. width:60px;
  6299. height:35px;
  6300. display:flex;
  6301. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6302. font-weight:400;
  6303. font-style:normal;
  6304. font-size:12px;
  6305. color:#606266;
  6306. }
  6307. #u20000 .text {
  6308. position:absolute;
  6309. align-self:center;
  6310. padding:2px 2px 2px 0px;
  6311. box-sizing:border-box;
  6312. width:100%;
  6313. }
  6314. #u20000_text {
  6315. border-width:0px;
  6316. word-wrap:break-word;
  6317. text-transform:none;
  6318. visibility:hidden;
  6319. }
  6320. #u20001_img {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:0px;
  6324. top:0px;
  6325. width:60px;
  6326. height:35px;
  6327. }
  6328. #u20001 {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:330px;
  6332. top:187px;
  6333. width:60px;
  6334. height:35px;
  6335. display:flex;
  6336. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6337. font-weight:400;
  6338. font-style:normal;
  6339. font-size:12px;
  6340. color:#606266;
  6341. }
  6342. #u20001 .text {
  6343. position:absolute;
  6344. align-self:center;
  6345. padding:2px 2px 2px 0px;
  6346. box-sizing:border-box;
  6347. width:100%;
  6348. }
  6349. #u20001_text {
  6350. border-width:0px;
  6351. word-wrap:break-word;
  6352. text-transform:none;
  6353. visibility:hidden;
  6354. }
  6355. #u20002_img {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:0px;
  6359. top:0px;
  6360. width:60px;
  6361. height:35px;
  6362. }
  6363. #u20002 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:390px;
  6367. top:187px;
  6368. width:60px;
  6369. height:35px;
  6370. display:flex;
  6371. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6372. font-weight:400;
  6373. font-style:normal;
  6374. font-size:12px;
  6375. color:#606266;
  6376. }
  6377. #u20002 .text {
  6378. position:absolute;
  6379. align-self:center;
  6380. padding:2px 2px 2px 0px;
  6381. box-sizing:border-box;
  6382. width:100%;
  6383. }
  6384. #u20002_text {
  6385. border-width:0px;
  6386. word-wrap:break-word;
  6387. text-transform:none;
  6388. visibility:hidden;
  6389. }
  6390. #u20003_img {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:60px;
  6396. height:35px;
  6397. }
  6398. #u20003 {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:450px;
  6402. top:187px;
  6403. width:60px;
  6404. height:35px;
  6405. display:flex;
  6406. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6407. font-weight:400;
  6408. font-style:normal;
  6409. font-size:12px;
  6410. color:#606266;
  6411. }
  6412. #u20003 .text {
  6413. position:absolute;
  6414. align-self:center;
  6415. padding:2px 2px 2px 0px;
  6416. box-sizing:border-box;
  6417. width:100%;
  6418. }
  6419. #u20003_text {
  6420. border-width:0px;
  6421. word-wrap:break-word;
  6422. text-transform:none;
  6423. visibility:hidden;
  6424. }
  6425. #u20004_img {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:0px;
  6429. top:0px;
  6430. width:60px;
  6431. height:35px;
  6432. }
  6433. #u20004 {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:510px;
  6437. top:187px;
  6438. width:60px;
  6439. height:35px;
  6440. display:flex;
  6441. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6442. font-weight:400;
  6443. font-style:normal;
  6444. font-size:12px;
  6445. color:#606266;
  6446. }
  6447. #u20004 .text {
  6448. position:absolute;
  6449. align-self:center;
  6450. padding:2px 2px 2px 0px;
  6451. box-sizing:border-box;
  6452. width:100%;
  6453. }
  6454. #u20004_text {
  6455. border-width:0px;
  6456. word-wrap:break-word;
  6457. text-transform:none;
  6458. visibility:hidden;
  6459. }
  6460. #u20005_img {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:0px;
  6464. top:0px;
  6465. width:60px;
  6466. height:35px;
  6467. }
  6468. #u20005 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:570px;
  6472. top:187px;
  6473. width:60px;
  6474. height:35px;
  6475. display:flex;
  6476. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6477. font-weight:400;
  6478. font-style:normal;
  6479. font-size:12px;
  6480. color:#606266;
  6481. }
  6482. #u20005 .text {
  6483. position:absolute;
  6484. align-self:center;
  6485. padding:2px 2px 2px 0px;
  6486. box-sizing:border-box;
  6487. width:100%;
  6488. }
  6489. #u20005_text {
  6490. border-width:0px;
  6491. word-wrap:break-word;
  6492. text-transform:none;
  6493. visibility:hidden;
  6494. }
  6495. #u20006_img {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:0px;
  6499. top:0px;
  6500. width:60px;
  6501. height:35px;
  6502. }
  6503. #u20006 {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:630px;
  6507. top:187px;
  6508. width:60px;
  6509. height:35px;
  6510. display:flex;
  6511. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6512. font-weight:400;
  6513. font-style:normal;
  6514. font-size:12px;
  6515. color:#606266;
  6516. }
  6517. #u20006 .text {
  6518. position:absolute;
  6519. align-self:center;
  6520. padding:2px 2px 2px 0px;
  6521. box-sizing:border-box;
  6522. width:100%;
  6523. }
  6524. #u20006_text {
  6525. border-width:0px;
  6526. word-wrap:break-word;
  6527. text-transform:none;
  6528. visibility:hidden;
  6529. }
  6530. #u20007_img {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:60px;
  6536. height:35px;
  6537. }
  6538. #u20007 {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:690px;
  6542. top:187px;
  6543. width:60px;
  6544. height:35px;
  6545. display:flex;
  6546. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6547. font-weight:400;
  6548. font-style:normal;
  6549. font-size:12px;
  6550. color:#606266;
  6551. }
  6552. #u20007 .text {
  6553. position:absolute;
  6554. align-self:center;
  6555. padding:2px 2px 2px 0px;
  6556. box-sizing:border-box;
  6557. width:100%;
  6558. }
  6559. #u20007_text {
  6560. border-width:0px;
  6561. word-wrap:break-word;
  6562. text-transform:none;
  6563. visibility:hidden;
  6564. }
  6565. #u20008_img {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:0px;
  6569. top:0px;
  6570. width:60px;
  6571. height:35px;
  6572. }
  6573. #u20008 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:750px;
  6577. top:187px;
  6578. width:60px;
  6579. height:35px;
  6580. display:flex;
  6581. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:12px;
  6585. color:#606266;
  6586. }
  6587. #u20008 .text {
  6588. position:absolute;
  6589. align-self:center;
  6590. padding:2px 2px 2px 0px;
  6591. box-sizing:border-box;
  6592. width:100%;
  6593. }
  6594. #u20008_text {
  6595. border-width:0px;
  6596. word-wrap:break-word;
  6597. text-transform:none;
  6598. visibility:hidden;
  6599. }
  6600. #u20009_img {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:68px;
  6606. height:35px;
  6607. }
  6608. #u20009 {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:810px;
  6612. top:187px;
  6613. width:68px;
  6614. height:35px;
  6615. display:flex;
  6616. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6617. font-weight:400;
  6618. font-style:normal;
  6619. font-size:12px;
  6620. color:#606266;
  6621. }
  6622. #u20009 .text {
  6623. position:absolute;
  6624. align-self:center;
  6625. padding:2px 2px 2px 0px;
  6626. box-sizing:border-box;
  6627. width:100%;
  6628. }
  6629. #u20009_text {
  6630. border-width:0px;
  6631. word-wrap:break-word;
  6632. text-transform:none;
  6633. visibility:hidden;
  6634. }
  6635. #u20010_img {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:0px;
  6639. top:0px;
  6640. width:60px;
  6641. height:35px;
  6642. }
  6643. #u20010 {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:878px;
  6647. top:187px;
  6648. width:60px;
  6649. height:35px;
  6650. display:flex;
  6651. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6652. font-weight:400;
  6653. font-style:normal;
  6654. font-size:12px;
  6655. color:#606266;
  6656. }
  6657. #u20010 .text {
  6658. position:absolute;
  6659. align-self:center;
  6660. padding:2px 2px 2px 0px;
  6661. box-sizing:border-box;
  6662. width:100%;
  6663. }
  6664. #u20010_text {
  6665. border-width:0px;
  6666. word-wrap:break-word;
  6667. text-transform:none;
  6668. visibility:hidden;
  6669. }
  6670. #u20011_img {
  6671. border-width:0px;
  6672. position:absolute;
  6673. left:0px;
  6674. top:0px;
  6675. width:60px;
  6676. height:35px;
  6677. }
  6678. #u20011 {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:938px;
  6682. top:187px;
  6683. width:60px;
  6684. height:35px;
  6685. display:flex;
  6686. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6687. font-weight:400;
  6688. font-style:normal;
  6689. font-size:12px;
  6690. color:#606266;
  6691. }
  6692. #u20011 .text {
  6693. position:absolute;
  6694. align-self:center;
  6695. padding:2px 2px 2px 0px;
  6696. box-sizing:border-box;
  6697. width:100%;
  6698. }
  6699. #u20011_text {
  6700. border-width:0px;
  6701. word-wrap:break-word;
  6702. text-transform:none;
  6703. visibility:hidden;
  6704. }
  6705. #u20012_img {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:0px;
  6709. top:0px;
  6710. width:60px;
  6711. height:35px;
  6712. }
  6713. #u20012 {
  6714. border-width:0px;
  6715. position:absolute;
  6716. left:998px;
  6717. top:187px;
  6718. width:60px;
  6719. height:35px;
  6720. display:flex;
  6721. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6722. font-weight:400;
  6723. font-style:normal;
  6724. font-size:12px;
  6725. color:#606266;
  6726. }
  6727. #u20012 .text {
  6728. position:absolute;
  6729. align-self:center;
  6730. padding:2px 2px 2px 0px;
  6731. box-sizing:border-box;
  6732. width:100%;
  6733. }
  6734. #u20012_text {
  6735. border-width:0px;
  6736. word-wrap:break-word;
  6737. text-transform:none;
  6738. visibility:hidden;
  6739. }
  6740. #u20013_img {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:0px;
  6744. top:0px;
  6745. width:60px;
  6746. height:35px;
  6747. }
  6748. #u20013 {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:1058px;
  6752. top:187px;
  6753. width:60px;
  6754. height:35px;
  6755. display:flex;
  6756. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6757. font-weight:400;
  6758. font-style:normal;
  6759. font-size:12px;
  6760. color:#606266;
  6761. }
  6762. #u20013 .text {
  6763. position:absolute;
  6764. align-self:center;
  6765. padding:2px 2px 2px 0px;
  6766. box-sizing:border-box;
  6767. width:100%;
  6768. }
  6769. #u20013_text {
  6770. border-width:0px;
  6771. word-wrap:break-word;
  6772. text-transform:none;
  6773. visibility:hidden;
  6774. }
  6775. #u20014_img {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:0px;
  6779. top:0px;
  6780. width:60px;
  6781. height:35px;
  6782. }
  6783. #u20014 {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:1118px;
  6787. top:187px;
  6788. width:60px;
  6789. height:35px;
  6790. display:flex;
  6791. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. font-size:12px;
  6795. color:#606266;
  6796. }
  6797. #u20014 .text {
  6798. position:absolute;
  6799. align-self:center;
  6800. padding:2px 2px 2px 0px;
  6801. box-sizing:border-box;
  6802. width:100%;
  6803. }
  6804. #u20014_text {
  6805. border-width:0px;
  6806. word-wrap:break-word;
  6807. text-transform:none;
  6808. visibility:hidden;
  6809. }
  6810. #u20015_img {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:0px;
  6814. top:0px;
  6815. width:50px;
  6816. height:35px;
  6817. }
  6818. #u20015 {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:1178px;
  6822. top:187px;
  6823. width:50px;
  6824. height:35px;
  6825. display:flex;
  6826. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6827. font-weight:400;
  6828. font-style:normal;
  6829. font-size:12px;
  6830. color:#606266;
  6831. }
  6832. #u20015 .text {
  6833. position:absolute;
  6834. align-self:center;
  6835. padding:2px 2px 2px 0px;
  6836. box-sizing:border-box;
  6837. width:100%;
  6838. }
  6839. #u20015_text {
  6840. border-width:0px;
  6841. word-wrap:break-word;
  6842. text-transform:none;
  6843. visibility:hidden;
  6844. }
  6845. #u20016_img {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:30px;
  6851. height:38px;
  6852. }
  6853. #u20016 {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:0px;
  6857. top:222px;
  6858. width:30px;
  6859. height:38px;
  6860. display:flex;
  6861. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6862. font-weight:400;
  6863. font-style:normal;
  6864. font-size:12px;
  6865. color:#606266;
  6866. }
  6867. #u20016 .text {
  6868. position:absolute;
  6869. align-self:center;
  6870. padding:2px 2px 2px 0px;
  6871. box-sizing:border-box;
  6872. width:100%;
  6873. }
  6874. #u20016_text {
  6875. border-width:0px;
  6876. word-wrap:break-word;
  6877. text-transform:none;
  6878. visibility:hidden;
  6879. }
  6880. #u20017_img {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:0px;
  6884. top:0px;
  6885. width:60px;
  6886. height:38px;
  6887. }
  6888. #u20017 {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:30px;
  6892. top:222px;
  6893. width:60px;
  6894. height:38px;
  6895. display:flex;
  6896. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:12px;
  6900. color:#606266;
  6901. }
  6902. #u20017 .text {
  6903. position:absolute;
  6904. align-self:center;
  6905. padding:2px 2px 2px 0px;
  6906. box-sizing:border-box;
  6907. width:100%;
  6908. }
  6909. #u20017_text {
  6910. border-width:0px;
  6911. word-wrap:break-word;
  6912. text-transform:none;
  6913. visibility:hidden;
  6914. }
  6915. #u20018_img {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:60px;
  6921. height:38px;
  6922. }
  6923. #u20018 {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:90px;
  6927. top:222px;
  6928. width:60px;
  6929. height:38px;
  6930. display:flex;
  6931. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. font-size:12px;
  6935. color:#606266;
  6936. }
  6937. #u20018 .text {
  6938. position:absolute;
  6939. align-self:center;
  6940. padding:2px 2px 2px 0px;
  6941. box-sizing:border-box;
  6942. width:100%;
  6943. }
  6944. #u20018_text {
  6945. border-width:0px;
  6946. word-wrap:break-word;
  6947. text-transform:none;
  6948. visibility:hidden;
  6949. }
  6950. #u20019_img {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:0px;
  6954. top:0px;
  6955. width:60px;
  6956. height:38px;
  6957. }
  6958. #u20019 {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:150px;
  6962. top:222px;
  6963. width:60px;
  6964. height:38px;
  6965. display:flex;
  6966. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6967. font-weight:400;
  6968. font-style:normal;
  6969. font-size:12px;
  6970. color:#606266;
  6971. }
  6972. #u20019 .text {
  6973. position:absolute;
  6974. align-self:center;
  6975. padding:2px 2px 2px 0px;
  6976. box-sizing:border-box;
  6977. width:100%;
  6978. }
  6979. #u20019_text {
  6980. border-width:0px;
  6981. word-wrap:break-word;
  6982. text-transform:none;
  6983. visibility:hidden;
  6984. }
  6985. #u20020_img {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:0px;
  6989. top:0px;
  6990. width:60px;
  6991. height:38px;
  6992. }
  6993. #u20020 {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:210px;
  6997. top:222px;
  6998. width:60px;
  6999. height:38px;
  7000. display:flex;
  7001. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7002. font-weight:400;
  7003. font-style:normal;
  7004. font-size:12px;
  7005. color:#606266;
  7006. }
  7007. #u20020 .text {
  7008. position:absolute;
  7009. align-self:center;
  7010. padding:2px 2px 2px 0px;
  7011. box-sizing:border-box;
  7012. width:100%;
  7013. }
  7014. #u20020_text {
  7015. border-width:0px;
  7016. word-wrap:break-word;
  7017. text-transform:none;
  7018. visibility:hidden;
  7019. }
  7020. #u20021_img {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:0px;
  7024. top:0px;
  7025. width:60px;
  7026. height:38px;
  7027. }
  7028. #u20021 {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:270px;
  7032. top:222px;
  7033. width:60px;
  7034. height:38px;
  7035. display:flex;
  7036. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7037. font-weight:400;
  7038. font-style:normal;
  7039. font-size:12px;
  7040. color:#606266;
  7041. }
  7042. #u20021 .text {
  7043. position:absolute;
  7044. align-self:center;
  7045. padding:2px 2px 2px 0px;
  7046. box-sizing:border-box;
  7047. width:100%;
  7048. }
  7049. #u20021_text {
  7050. border-width:0px;
  7051. word-wrap:break-word;
  7052. text-transform:none;
  7053. visibility:hidden;
  7054. }
  7055. #u20022_img {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:60px;
  7061. height:38px;
  7062. }
  7063. #u20022 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:330px;
  7067. top:222px;
  7068. width:60px;
  7069. height:38px;
  7070. display:flex;
  7071. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7072. font-weight:400;
  7073. font-style:normal;
  7074. font-size:12px;
  7075. color:#606266;
  7076. }
  7077. #u20022 .text {
  7078. position:absolute;
  7079. align-self:center;
  7080. padding:2px 2px 2px 0px;
  7081. box-sizing:border-box;
  7082. width:100%;
  7083. }
  7084. #u20022_text {
  7085. border-width:0px;
  7086. word-wrap:break-word;
  7087. text-transform:none;
  7088. visibility:hidden;
  7089. }
  7090. #u20023_img {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:0px;
  7094. top:0px;
  7095. width:60px;
  7096. height:38px;
  7097. }
  7098. #u20023 {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:390px;
  7102. top:222px;
  7103. width:60px;
  7104. height:38px;
  7105. display:flex;
  7106. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7107. font-weight:400;
  7108. font-style:normal;
  7109. font-size:12px;
  7110. color:#606266;
  7111. }
  7112. #u20023 .text {
  7113. position:absolute;
  7114. align-self:center;
  7115. padding:2px 2px 2px 0px;
  7116. box-sizing:border-box;
  7117. width:100%;
  7118. }
  7119. #u20023_text {
  7120. border-width:0px;
  7121. word-wrap:break-word;
  7122. text-transform:none;
  7123. visibility:hidden;
  7124. }
  7125. #u20024_img {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:0px;
  7129. top:0px;
  7130. width:60px;
  7131. height:38px;
  7132. }
  7133. #u20024 {
  7134. border-width:0px;
  7135. position:absolute;
  7136. left:450px;
  7137. top:222px;
  7138. width:60px;
  7139. height:38px;
  7140. display:flex;
  7141. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7142. font-weight:400;
  7143. font-style:normal;
  7144. font-size:12px;
  7145. color:#606266;
  7146. }
  7147. #u20024 .text {
  7148. position:absolute;
  7149. align-self:center;
  7150. padding:2px 2px 2px 0px;
  7151. box-sizing:border-box;
  7152. width:100%;
  7153. }
  7154. #u20024_text {
  7155. border-width:0px;
  7156. word-wrap:break-word;
  7157. text-transform:none;
  7158. visibility:hidden;
  7159. }
  7160. #u20025_img {
  7161. border-width:0px;
  7162. position:absolute;
  7163. left:0px;
  7164. top:0px;
  7165. width:60px;
  7166. height:38px;
  7167. }
  7168. #u20025 {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:510px;
  7172. top:222px;
  7173. width:60px;
  7174. height:38px;
  7175. display:flex;
  7176. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7177. font-weight:400;
  7178. font-style:normal;
  7179. font-size:12px;
  7180. color:#606266;
  7181. }
  7182. #u20025 .text {
  7183. position:absolute;
  7184. align-self:center;
  7185. padding:2px 2px 2px 0px;
  7186. box-sizing:border-box;
  7187. width:100%;
  7188. }
  7189. #u20025_text {
  7190. border-width:0px;
  7191. word-wrap:break-word;
  7192. text-transform:none;
  7193. visibility:hidden;
  7194. }
  7195. #u20026_img {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:60px;
  7201. height:38px;
  7202. }
  7203. #u20026 {
  7204. border-width:0px;
  7205. position:absolute;
  7206. left:570px;
  7207. top:222px;
  7208. width:60px;
  7209. height:38px;
  7210. display:flex;
  7211. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7212. font-weight:400;
  7213. font-style:normal;
  7214. font-size:12px;
  7215. color:#606266;
  7216. }
  7217. #u20026 .text {
  7218. position:absolute;
  7219. align-self:center;
  7220. padding:2px 2px 2px 0px;
  7221. box-sizing:border-box;
  7222. width:100%;
  7223. }
  7224. #u20026_text {
  7225. border-width:0px;
  7226. word-wrap:break-word;
  7227. text-transform:none;
  7228. visibility:hidden;
  7229. }
  7230. #u20027_img {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:0px;
  7234. top:0px;
  7235. width:60px;
  7236. height:38px;
  7237. }
  7238. #u20027 {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:630px;
  7242. top:222px;
  7243. width:60px;
  7244. height:38px;
  7245. display:flex;
  7246. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7247. font-weight:400;
  7248. font-style:normal;
  7249. font-size:12px;
  7250. color:#606266;
  7251. }
  7252. #u20027 .text {
  7253. position:absolute;
  7254. align-self:center;
  7255. padding:2px 2px 2px 0px;
  7256. box-sizing:border-box;
  7257. width:100%;
  7258. }
  7259. #u20027_text {
  7260. border-width:0px;
  7261. word-wrap:break-word;
  7262. text-transform:none;
  7263. visibility:hidden;
  7264. }
  7265. #u20028_img {
  7266. border-width:0px;
  7267. position:absolute;
  7268. left:0px;
  7269. top:0px;
  7270. width:60px;
  7271. height:38px;
  7272. }
  7273. #u20028 {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:690px;
  7277. top:222px;
  7278. width:60px;
  7279. height:38px;
  7280. display:flex;
  7281. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7282. font-weight:400;
  7283. font-style:normal;
  7284. font-size:12px;
  7285. color:#606266;
  7286. }
  7287. #u20028 .text {
  7288. position:absolute;
  7289. align-self:center;
  7290. padding:2px 2px 2px 0px;
  7291. box-sizing:border-box;
  7292. width:100%;
  7293. }
  7294. #u20028_text {
  7295. border-width:0px;
  7296. word-wrap:break-word;
  7297. text-transform:none;
  7298. visibility:hidden;
  7299. }
  7300. #u20029_img {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:0px;
  7304. top:0px;
  7305. width:60px;
  7306. height:38px;
  7307. }
  7308. #u20029 {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:750px;
  7312. top:222px;
  7313. width:60px;
  7314. height:38px;
  7315. display:flex;
  7316. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7317. font-weight:400;
  7318. font-style:normal;
  7319. font-size:12px;
  7320. color:#606266;
  7321. }
  7322. #u20029 .text {
  7323. position:absolute;
  7324. align-self:center;
  7325. padding:2px 2px 2px 0px;
  7326. box-sizing:border-box;
  7327. width:100%;
  7328. }
  7329. #u20029_text {
  7330. border-width:0px;
  7331. word-wrap:break-word;
  7332. text-transform:none;
  7333. visibility:hidden;
  7334. }
  7335. #u20030_img {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:68px;
  7341. height:38px;
  7342. }
  7343. #u20030 {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:810px;
  7347. top:222px;
  7348. width:68px;
  7349. height:38px;
  7350. display:flex;
  7351. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7352. font-weight:400;
  7353. font-style:normal;
  7354. font-size:12px;
  7355. color:#606266;
  7356. }
  7357. #u20030 .text {
  7358. position:absolute;
  7359. align-self:center;
  7360. padding:2px 2px 2px 0px;
  7361. box-sizing:border-box;
  7362. width:100%;
  7363. }
  7364. #u20030_text {
  7365. border-width:0px;
  7366. word-wrap:break-word;
  7367. text-transform:none;
  7368. visibility:hidden;
  7369. }
  7370. #u20031_img {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:60px;
  7376. height:38px;
  7377. }
  7378. #u20031 {
  7379. border-width:0px;
  7380. position:absolute;
  7381. left:878px;
  7382. top:222px;
  7383. width:60px;
  7384. height:38px;
  7385. display:flex;
  7386. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7387. font-weight:400;
  7388. font-style:normal;
  7389. font-size:12px;
  7390. color:#606266;
  7391. }
  7392. #u20031 .text {
  7393. position:absolute;
  7394. align-self:center;
  7395. padding:2px 2px 2px 0px;
  7396. box-sizing:border-box;
  7397. width:100%;
  7398. }
  7399. #u20031_text {
  7400. border-width:0px;
  7401. word-wrap:break-word;
  7402. text-transform:none;
  7403. visibility:hidden;
  7404. }
  7405. #u20032_img {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:0px;
  7409. top:0px;
  7410. width:60px;
  7411. height:38px;
  7412. }
  7413. #u20032 {
  7414. border-width:0px;
  7415. position:absolute;
  7416. left:938px;
  7417. top:222px;
  7418. width:60px;
  7419. height:38px;
  7420. display:flex;
  7421. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7422. font-weight:400;
  7423. font-style:normal;
  7424. font-size:12px;
  7425. color:#606266;
  7426. }
  7427. #u20032 .text {
  7428. position:absolute;
  7429. align-self:center;
  7430. padding:2px 2px 2px 0px;
  7431. box-sizing:border-box;
  7432. width:100%;
  7433. }
  7434. #u20032_text {
  7435. border-width:0px;
  7436. word-wrap:break-word;
  7437. text-transform:none;
  7438. visibility:hidden;
  7439. }
  7440. #u20033_img {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:0px;
  7444. top:0px;
  7445. width:60px;
  7446. height:38px;
  7447. }
  7448. #u20033 {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:998px;
  7452. top:222px;
  7453. width:60px;
  7454. height:38px;
  7455. display:flex;
  7456. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7457. font-weight:400;
  7458. font-style:normal;
  7459. font-size:12px;
  7460. color:#606266;
  7461. }
  7462. #u20033 .text {
  7463. position:absolute;
  7464. align-self:center;
  7465. padding:2px 2px 2px 0px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u20033_text {
  7470. border-width:0px;
  7471. word-wrap:break-word;
  7472. text-transform:none;
  7473. visibility:hidden;
  7474. }
  7475. #u20034_img {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:0px;
  7479. top:0px;
  7480. width:60px;
  7481. height:38px;
  7482. }
  7483. #u20034 {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:1058px;
  7487. top:222px;
  7488. width:60px;
  7489. height:38px;
  7490. display:flex;
  7491. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7492. font-weight:400;
  7493. font-style:normal;
  7494. font-size:12px;
  7495. color:#606266;
  7496. }
  7497. #u20034 .text {
  7498. position:absolute;
  7499. align-self:center;
  7500. padding:2px 2px 2px 0px;
  7501. box-sizing:border-box;
  7502. width:100%;
  7503. }
  7504. #u20034_text {
  7505. border-width:0px;
  7506. word-wrap:break-word;
  7507. text-transform:none;
  7508. visibility:hidden;
  7509. }
  7510. #u20035_img {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:0px;
  7514. top:0px;
  7515. width:60px;
  7516. height:38px;
  7517. }
  7518. #u20035 {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:1118px;
  7522. top:222px;
  7523. width:60px;
  7524. height:38px;
  7525. display:flex;
  7526. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7527. font-weight:400;
  7528. font-style:normal;
  7529. font-size:12px;
  7530. color:#606266;
  7531. }
  7532. #u20035 .text {
  7533. position:absolute;
  7534. align-self:center;
  7535. padding:2px 2px 2px 0px;
  7536. box-sizing:border-box;
  7537. width:100%;
  7538. }
  7539. #u20035_text {
  7540. border-width:0px;
  7541. word-wrap:break-word;
  7542. text-transform:none;
  7543. visibility:hidden;
  7544. }
  7545. #u20036_img {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:0px;
  7549. top:0px;
  7550. width:50px;
  7551. height:38px;
  7552. }
  7553. #u20036 {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:1178px;
  7557. top:222px;
  7558. width:50px;
  7559. height:38px;
  7560. display:flex;
  7561. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7562. font-weight:400;
  7563. font-style:normal;
  7564. font-size:12px;
  7565. color:#606266;
  7566. }
  7567. #u20036 .text {
  7568. position:absolute;
  7569. align-self:center;
  7570. padding:2px 2px 2px 0px;
  7571. box-sizing:border-box;
  7572. width:100%;
  7573. }
  7574. #u20036_text {
  7575. border-width:0px;
  7576. word-wrap:break-word;
  7577. text-transform:none;
  7578. visibility:hidden;
  7579. }
  7580. #u20037_img {
  7581. border-width:0px;
  7582. position:absolute;
  7583. left:0px;
  7584. top:0px;
  7585. width:30px;
  7586. height:32px;
  7587. }
  7588. #u20037 {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:0px;
  7592. top:260px;
  7593. width:30px;
  7594. height:32px;
  7595. display:flex;
  7596. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7597. font-weight:400;
  7598. font-style:normal;
  7599. font-size:12px;
  7600. color:#606266;
  7601. }
  7602. #u20037 .text {
  7603. position:absolute;
  7604. align-self:center;
  7605. padding:2px 2px 2px 0px;
  7606. box-sizing:border-box;
  7607. width:100%;
  7608. }
  7609. #u20037_text {
  7610. border-width:0px;
  7611. word-wrap:break-word;
  7612. text-transform:none;
  7613. visibility:hidden;
  7614. }
  7615. #u20038_img {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:0px;
  7619. top:0px;
  7620. width:60px;
  7621. height:32px;
  7622. }
  7623. #u20038 {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:30px;
  7627. top:260px;
  7628. width:60px;
  7629. height:32px;
  7630. display:flex;
  7631. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7632. font-weight:400;
  7633. font-style:normal;
  7634. font-size:12px;
  7635. color:#606266;
  7636. }
  7637. #u20038 .text {
  7638. position:absolute;
  7639. align-self:center;
  7640. padding:2px 2px 2px 0px;
  7641. box-sizing:border-box;
  7642. width:100%;
  7643. }
  7644. #u20038_text {
  7645. border-width:0px;
  7646. word-wrap:break-word;
  7647. text-transform:none;
  7648. visibility:hidden;
  7649. }
  7650. #u20039_img {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:0px;
  7654. top:0px;
  7655. width:60px;
  7656. height:32px;
  7657. }
  7658. #u20039 {
  7659. border-width:0px;
  7660. position:absolute;
  7661. left:90px;
  7662. top:260px;
  7663. width:60px;
  7664. height:32px;
  7665. display:flex;
  7666. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7667. font-weight:400;
  7668. font-style:normal;
  7669. font-size:12px;
  7670. color:#606266;
  7671. }
  7672. #u20039 .text {
  7673. position:absolute;
  7674. align-self:center;
  7675. padding:2px 2px 2px 0px;
  7676. box-sizing:border-box;
  7677. width:100%;
  7678. }
  7679. #u20039_text {
  7680. border-width:0px;
  7681. word-wrap:break-word;
  7682. text-transform:none;
  7683. visibility:hidden;
  7684. }
  7685. #u20040_img {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:0px;
  7689. top:0px;
  7690. width:60px;
  7691. height:32px;
  7692. }
  7693. #u20040 {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:150px;
  7697. top:260px;
  7698. width:60px;
  7699. height:32px;
  7700. display:flex;
  7701. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7702. font-weight:400;
  7703. font-style:normal;
  7704. font-size:12px;
  7705. color:#606266;
  7706. }
  7707. #u20040 .text {
  7708. position:absolute;
  7709. align-self:center;
  7710. padding:2px 2px 2px 0px;
  7711. box-sizing:border-box;
  7712. width:100%;
  7713. }
  7714. #u20040_text {
  7715. border-width:0px;
  7716. word-wrap:break-word;
  7717. text-transform:none;
  7718. visibility:hidden;
  7719. }
  7720. #u20041_img {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:0px;
  7724. top:0px;
  7725. width:60px;
  7726. height:32px;
  7727. }
  7728. #u20041 {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:210px;
  7732. top:260px;
  7733. width:60px;
  7734. height:32px;
  7735. display:flex;
  7736. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7737. font-weight:400;
  7738. font-style:normal;
  7739. font-size:12px;
  7740. color:#606266;
  7741. }
  7742. #u20041 .text {
  7743. position:absolute;
  7744. align-self:center;
  7745. padding:2px 2px 2px 0px;
  7746. box-sizing:border-box;
  7747. width:100%;
  7748. }
  7749. #u20041_text {
  7750. border-width:0px;
  7751. word-wrap:break-word;
  7752. text-transform:none;
  7753. visibility:hidden;
  7754. }
  7755. #u20042_img {
  7756. border-width:0px;
  7757. position:absolute;
  7758. left:0px;
  7759. top:0px;
  7760. width:60px;
  7761. height:32px;
  7762. }
  7763. #u20042 {
  7764. border-width:0px;
  7765. position:absolute;
  7766. left:270px;
  7767. top:260px;
  7768. width:60px;
  7769. height:32px;
  7770. display:flex;
  7771. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7772. font-weight:400;
  7773. font-style:normal;
  7774. font-size:12px;
  7775. color:#606266;
  7776. }
  7777. #u20042 .text {
  7778. position:absolute;
  7779. align-self:center;
  7780. padding:2px 2px 2px 0px;
  7781. box-sizing:border-box;
  7782. width:100%;
  7783. }
  7784. #u20042_text {
  7785. border-width:0px;
  7786. word-wrap:break-word;
  7787. text-transform:none;
  7788. visibility:hidden;
  7789. }
  7790. #u20043_img {
  7791. border-width:0px;
  7792. position:absolute;
  7793. left:0px;
  7794. top:0px;
  7795. width:60px;
  7796. height:32px;
  7797. }
  7798. #u20043 {
  7799. border-width:0px;
  7800. position:absolute;
  7801. left:330px;
  7802. top:260px;
  7803. width:60px;
  7804. height:32px;
  7805. display:flex;
  7806. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7807. font-weight:400;
  7808. font-style:normal;
  7809. font-size:12px;
  7810. color:#606266;
  7811. }
  7812. #u20043 .text {
  7813. position:absolute;
  7814. align-self:center;
  7815. padding:2px 2px 2px 0px;
  7816. box-sizing:border-box;
  7817. width:100%;
  7818. }
  7819. #u20043_text {
  7820. border-width:0px;
  7821. word-wrap:break-word;
  7822. text-transform:none;
  7823. visibility:hidden;
  7824. }
  7825. #u20044_img {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:0px;
  7829. top:0px;
  7830. width:60px;
  7831. height:32px;
  7832. }
  7833. #u20044 {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:390px;
  7837. top:260px;
  7838. width:60px;
  7839. height:32px;
  7840. display:flex;
  7841. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7842. font-weight:400;
  7843. font-style:normal;
  7844. font-size:12px;
  7845. color:#606266;
  7846. }
  7847. #u20044 .text {
  7848. position:absolute;
  7849. align-self:center;
  7850. padding:2px 2px 2px 0px;
  7851. box-sizing:border-box;
  7852. width:100%;
  7853. }
  7854. #u20044_text {
  7855. border-width:0px;
  7856. word-wrap:break-word;
  7857. text-transform:none;
  7858. visibility:hidden;
  7859. }
  7860. #u20045_img {
  7861. border-width:0px;
  7862. position:absolute;
  7863. left:0px;
  7864. top:0px;
  7865. width:60px;
  7866. height:32px;
  7867. }
  7868. #u20045 {
  7869. border-width:0px;
  7870. position:absolute;
  7871. left:450px;
  7872. top:260px;
  7873. width:60px;
  7874. height:32px;
  7875. display:flex;
  7876. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7877. font-weight:400;
  7878. font-style:normal;
  7879. font-size:12px;
  7880. color:#606266;
  7881. }
  7882. #u20045 .text {
  7883. position:absolute;
  7884. align-self:center;
  7885. padding:2px 2px 2px 0px;
  7886. box-sizing:border-box;
  7887. width:100%;
  7888. }
  7889. #u20045_text {
  7890. border-width:0px;
  7891. word-wrap:break-word;
  7892. text-transform:none;
  7893. visibility:hidden;
  7894. }
  7895. #u20046_img {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:0px;
  7899. top:0px;
  7900. width:60px;
  7901. height:32px;
  7902. }
  7903. #u20046 {
  7904. border-width:0px;
  7905. position:absolute;
  7906. left:510px;
  7907. top:260px;
  7908. width:60px;
  7909. height:32px;
  7910. display:flex;
  7911. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7912. font-weight:400;
  7913. font-style:normal;
  7914. font-size:12px;
  7915. color:#606266;
  7916. }
  7917. #u20046 .text {
  7918. position:absolute;
  7919. align-self:center;
  7920. padding:2px 2px 2px 0px;
  7921. box-sizing:border-box;
  7922. width:100%;
  7923. }
  7924. #u20046_text {
  7925. border-width:0px;
  7926. word-wrap:break-word;
  7927. text-transform:none;
  7928. visibility:hidden;
  7929. }
  7930. #u20047_img {
  7931. border-width:0px;
  7932. position:absolute;
  7933. left:0px;
  7934. top:0px;
  7935. width:60px;
  7936. height:32px;
  7937. }
  7938. #u20047 {
  7939. border-width:0px;
  7940. position:absolute;
  7941. left:570px;
  7942. top:260px;
  7943. width:60px;
  7944. height:32px;
  7945. display:flex;
  7946. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7947. font-weight:400;
  7948. font-style:normal;
  7949. font-size:12px;
  7950. color:#606266;
  7951. }
  7952. #u20047 .text {
  7953. position:absolute;
  7954. align-self:center;
  7955. padding:2px 2px 2px 0px;
  7956. box-sizing:border-box;
  7957. width:100%;
  7958. }
  7959. #u20047_text {
  7960. border-width:0px;
  7961. word-wrap:break-word;
  7962. text-transform:none;
  7963. visibility:hidden;
  7964. }
  7965. #u20048_img {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:0px;
  7969. top:0px;
  7970. width:60px;
  7971. height:32px;
  7972. }
  7973. #u20048 {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:630px;
  7977. top:260px;
  7978. width:60px;
  7979. height:32px;
  7980. display:flex;
  7981. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7982. font-weight:400;
  7983. font-style:normal;
  7984. font-size:12px;
  7985. color:#606266;
  7986. }
  7987. #u20048 .text {
  7988. position:absolute;
  7989. align-self:center;
  7990. padding:2px 2px 2px 0px;
  7991. box-sizing:border-box;
  7992. width:100%;
  7993. }
  7994. #u20048_text {
  7995. border-width:0px;
  7996. word-wrap:break-word;
  7997. text-transform:none;
  7998. visibility:hidden;
  7999. }
  8000. #u20049_img {
  8001. border-width:0px;
  8002. position:absolute;
  8003. left:0px;
  8004. top:0px;
  8005. width:60px;
  8006. height:32px;
  8007. }
  8008. #u20049 {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:690px;
  8012. top:260px;
  8013. width:60px;
  8014. height:32px;
  8015. display:flex;
  8016. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8017. font-weight:400;
  8018. font-style:normal;
  8019. font-size:12px;
  8020. color:#606266;
  8021. }
  8022. #u20049 .text {
  8023. position:absolute;
  8024. align-self:center;
  8025. padding:2px 2px 2px 0px;
  8026. box-sizing:border-box;
  8027. width:100%;
  8028. }
  8029. #u20049_text {
  8030. border-width:0px;
  8031. word-wrap:break-word;
  8032. text-transform:none;
  8033. visibility:hidden;
  8034. }
  8035. #u20050_img {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:0px;
  8039. top:0px;
  8040. width:60px;
  8041. height:32px;
  8042. }
  8043. #u20050 {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:750px;
  8047. top:260px;
  8048. width:60px;
  8049. height:32px;
  8050. display:flex;
  8051. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8052. font-weight:400;
  8053. font-style:normal;
  8054. font-size:12px;
  8055. color:#606266;
  8056. }
  8057. #u20050 .text {
  8058. position:absolute;
  8059. align-self:center;
  8060. padding:2px 2px 2px 0px;
  8061. box-sizing:border-box;
  8062. width:100%;
  8063. }
  8064. #u20050_text {
  8065. border-width:0px;
  8066. word-wrap:break-word;
  8067. text-transform:none;
  8068. visibility:hidden;
  8069. }
  8070. #u20051_img {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:0px;
  8074. top:0px;
  8075. width:68px;
  8076. height:32px;
  8077. }
  8078. #u20051 {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:810px;
  8082. top:260px;
  8083. width:68px;
  8084. height:32px;
  8085. display:flex;
  8086. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8087. font-weight:400;
  8088. font-style:normal;
  8089. font-size:12px;
  8090. color:#606266;
  8091. }
  8092. #u20051 .text {
  8093. position:absolute;
  8094. align-self:center;
  8095. padding:2px 2px 2px 0px;
  8096. box-sizing:border-box;
  8097. width:100%;
  8098. }
  8099. #u20051_text {
  8100. border-width:0px;
  8101. word-wrap:break-word;
  8102. text-transform:none;
  8103. visibility:hidden;
  8104. }
  8105. #u20052_img {
  8106. border-width:0px;
  8107. position:absolute;
  8108. left:0px;
  8109. top:0px;
  8110. width:60px;
  8111. height:32px;
  8112. }
  8113. #u20052 {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:878px;
  8117. top:260px;
  8118. width:60px;
  8119. height:32px;
  8120. display:flex;
  8121. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8122. font-weight:400;
  8123. font-style:normal;
  8124. font-size:12px;
  8125. color:#606266;
  8126. }
  8127. #u20052 .text {
  8128. position:absolute;
  8129. align-self:center;
  8130. padding:2px 2px 2px 0px;
  8131. box-sizing:border-box;
  8132. width:100%;
  8133. }
  8134. #u20052_text {
  8135. border-width:0px;
  8136. word-wrap:break-word;
  8137. text-transform:none;
  8138. visibility:hidden;
  8139. }
  8140. #u20053_img {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:0px;
  8144. top:0px;
  8145. width:60px;
  8146. height:32px;
  8147. }
  8148. #u20053 {
  8149. border-width:0px;
  8150. position:absolute;
  8151. left:938px;
  8152. top:260px;
  8153. width:60px;
  8154. height:32px;
  8155. display:flex;
  8156. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8157. font-weight:400;
  8158. font-style:normal;
  8159. font-size:12px;
  8160. color:#606266;
  8161. }
  8162. #u20053 .text {
  8163. position:absolute;
  8164. align-self:center;
  8165. padding:2px 2px 2px 0px;
  8166. box-sizing:border-box;
  8167. width:100%;
  8168. }
  8169. #u20053_text {
  8170. border-width:0px;
  8171. word-wrap:break-word;
  8172. text-transform:none;
  8173. visibility:hidden;
  8174. }
  8175. #u20054_img {
  8176. border-width:0px;
  8177. position:absolute;
  8178. left:0px;
  8179. top:0px;
  8180. width:60px;
  8181. height:32px;
  8182. }
  8183. #u20054 {
  8184. border-width:0px;
  8185. position:absolute;
  8186. left:998px;
  8187. top:260px;
  8188. width:60px;
  8189. height:32px;
  8190. display:flex;
  8191. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8192. font-weight:400;
  8193. font-style:normal;
  8194. font-size:12px;
  8195. color:#606266;
  8196. }
  8197. #u20054 .text {
  8198. position:absolute;
  8199. align-self:center;
  8200. padding:2px 2px 2px 0px;
  8201. box-sizing:border-box;
  8202. width:100%;
  8203. }
  8204. #u20054_text {
  8205. border-width:0px;
  8206. word-wrap:break-word;
  8207. text-transform:none;
  8208. visibility:hidden;
  8209. }
  8210. #u20055_img {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:0px;
  8214. top:0px;
  8215. width:60px;
  8216. height:32px;
  8217. }
  8218. #u20055 {
  8219. border-width:0px;
  8220. position:absolute;
  8221. left:1058px;
  8222. top:260px;
  8223. width:60px;
  8224. height:32px;
  8225. display:flex;
  8226. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8227. font-weight:400;
  8228. font-style:normal;
  8229. font-size:12px;
  8230. color:#606266;
  8231. }
  8232. #u20055 .text {
  8233. position:absolute;
  8234. align-self:center;
  8235. padding:2px 2px 2px 0px;
  8236. box-sizing:border-box;
  8237. width:100%;
  8238. }
  8239. #u20055_text {
  8240. border-width:0px;
  8241. word-wrap:break-word;
  8242. text-transform:none;
  8243. visibility:hidden;
  8244. }
  8245. #u20056_img {
  8246. border-width:0px;
  8247. position:absolute;
  8248. left:0px;
  8249. top:0px;
  8250. width:60px;
  8251. height:32px;
  8252. }
  8253. #u20056 {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:1118px;
  8257. top:260px;
  8258. width:60px;
  8259. height:32px;
  8260. display:flex;
  8261. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8262. font-weight:400;
  8263. font-style:normal;
  8264. font-size:12px;
  8265. color:#606266;
  8266. }
  8267. #u20056 .text {
  8268. position:absolute;
  8269. align-self:center;
  8270. padding:2px 2px 2px 0px;
  8271. box-sizing:border-box;
  8272. width:100%;
  8273. }
  8274. #u20056_text {
  8275. border-width:0px;
  8276. word-wrap:break-word;
  8277. text-transform:none;
  8278. visibility:hidden;
  8279. }
  8280. #u20057_img {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:0px;
  8284. top:0px;
  8285. width:50px;
  8286. height:32px;
  8287. }
  8288. #u20057 {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:1178px;
  8292. top:260px;
  8293. width:50px;
  8294. height:32px;
  8295. display:flex;
  8296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8297. font-weight:400;
  8298. font-style:normal;
  8299. font-size:12px;
  8300. color:#606266;
  8301. }
  8302. #u20057 .text {
  8303. position:absolute;
  8304. align-self:center;
  8305. padding:2px 2px 2px 0px;
  8306. box-sizing:border-box;
  8307. width:100%;
  8308. }
  8309. #u20057_text {
  8310. border-width:0px;
  8311. word-wrap:break-word;
  8312. text-transform:none;
  8313. visibility:hidden;
  8314. }
  8315. #u20058 {
  8316. border-width:0px;
  8317. position:absolute;
  8318. left:0px;
  8319. top:0px;
  8320. width:0px;
  8321. height:0px;
  8322. }
  8323. #u20059_div {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:0px;
  8327. top:0px;
  8328. width:59px;
  8329. height:30px;
  8330. background:inherit;
  8331. background-color:rgba(0, 153, 255, 1);
  8332. box-sizing:border-box;
  8333. border-width:1px;
  8334. border-style:solid;
  8335. border-color:rgba(0, 153, 255, 1);
  8336. border-radius:4px;
  8337. -moz-box-shadow:none;
  8338. -webkit-box-shadow:none;
  8339. box-shadow:none;
  8340. font-family:'Microsoft YaHei', sans-serif;
  8341. font-weight:400;
  8342. font-style:normal;
  8343. font-size:14px;
  8344. color:#FFFFFF;
  8345. }
  8346. #u20059 {
  8347. border-width:0px;
  8348. position:absolute;
  8349. left:493px;
  8350. top:280px;
  8351. width:59px;
  8352. height:30px;
  8353. display:flex;
  8354. font-family:'Microsoft YaHei', sans-serif;
  8355. font-weight:400;
  8356. font-style:normal;
  8357. font-size:14px;
  8358. color:#FFFFFF;
  8359. }
  8360. #u20059 .text {
  8361. position:absolute;
  8362. align-self:center;
  8363. padding:5px 15px 5px 15px;
  8364. box-sizing:border-box;
  8365. width:100%;
  8366. }
  8367. #u20059_text {
  8368. border-width:0px;
  8369. white-space:nowrap;
  8370. text-transform:none;
  8371. }
  8372. #u20060_div {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:0px;
  8376. top:0px;
  8377. width:55px;
  8378. height:30px;
  8379. background:inherit;
  8380. background-color:rgba(255, 255, 255, 1);
  8381. box-sizing:border-box;
  8382. border-width:1px;
  8383. border-style:solid;
  8384. border-color:rgba(170, 170, 170, 1);
  8385. border-radius:4px;
  8386. -moz-box-shadow:none;
  8387. -webkit-box-shadow:none;
  8388. box-shadow:none;
  8389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8390. font-weight:400;
  8391. font-style:normal;
  8392. font-size:12px;
  8393. color:#555555;
  8394. }
  8395. #u20060 {
  8396. border-width:0px;
  8397. position:absolute;
  8398. left:562px;
  8399. top:280px;
  8400. width:55px;
  8401. height:30px;
  8402. display:flex;
  8403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8404. font-weight:400;
  8405. font-style:normal;
  8406. font-size:12px;
  8407. color:#555555;
  8408. }
  8409. #u20060 .text {
  8410. position:absolute;
  8411. align-self:center;
  8412. padding:5px 15px 5px 15px;
  8413. box-sizing:border-box;
  8414. width:100%;
  8415. }
  8416. #u20060_text {
  8417. border-width:0px;
  8418. white-space:nowrap;
  8419. text-transform:none;
  8420. }
  8421. #u20061 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:0px;
  8425. top:0px;
  8426. width:0px;
  8427. height:0px;
  8428. }
  8429. #u20062_div {
  8430. border-width:0px;
  8431. position:absolute;
  8432. left:0px;
  8433. top:0px;
  8434. width:140px;
  8435. height:30px;
  8436. background:inherit;
  8437. background-color:rgba(255, 255, 255, 1);
  8438. box-sizing:border-box;
  8439. border-width:1px;
  8440. border-style:solid;
  8441. border-color:rgba(215, 215, 215, 1);
  8442. border-radius:4px;
  8443. -moz-box-shadow:none;
  8444. -webkit-box-shadow:none;
  8445. box-shadow:none;
  8446. font-size:11px;
  8447. }
  8448. #u20062 {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:1240px;
  8452. top:240px;
  8453. width:140px;
  8454. height:30px;
  8455. display:flex;
  8456. font-size:11px;
  8457. }
  8458. #u20062 .text {
  8459. position:absolute;
  8460. align-self:center;
  8461. padding:2px 2px 2px 2px;
  8462. box-sizing:border-box;
  8463. width:100%;
  8464. }
  8465. #u20062_text {
  8466. border-width:0px;
  8467. word-wrap:break-word;
  8468. text-transform:none;
  8469. visibility:hidden;
  8470. }
  8471. #u20063_input {
  8472. position:absolute;
  8473. left:0px;
  8474. top:0px;
  8475. width:120px;
  8476. height:23px;
  8477. padding:2px 2px 2px 2px;
  8478. font-family:'ArialMT', 'Arial', sans-serif;
  8479. font-weight:400;
  8480. font-style:normal;
  8481. font-size:11px;
  8482. letter-spacing:normal;
  8483. color:#AAAAAA;
  8484. vertical-align:none;
  8485. text-align:left;
  8486. text-transform:none;
  8487. background-color:transparent;
  8488. border-color:transparent;
  8489. }
  8490. #u20063_input.disabled {
  8491. position:absolute;
  8492. left:0px;
  8493. top:0px;
  8494. width:120px;
  8495. height:23px;
  8496. padding:2px 2px 2px 2px;
  8497. font-family:'ArialMT', 'Arial', sans-serif;
  8498. font-weight:400;
  8499. font-style:normal;
  8500. font-size:11px;
  8501. letter-spacing:normal;
  8502. color:#AAAAAA;
  8503. vertical-align:none;
  8504. text-align:left;
  8505. text-transform:none;
  8506. background-color:transparent;
  8507. border-color:transparent;
  8508. }
  8509. #u20063_div {
  8510. border-width:0px;
  8511. position:absolute;
  8512. left:0px;
  8513. top:0px;
  8514. width:120px;
  8515. height:23px;
  8516. background:inherit;
  8517. background-color:rgba(255, 255, 255, 1);
  8518. border:none;
  8519. border-radius:0px;
  8520. -moz-box-shadow:none;
  8521. -webkit-box-shadow:none;
  8522. box-shadow:none;
  8523. font-size:11px;
  8524. color:#AAAAAA;
  8525. }
  8526. #u20063 {
  8527. border-width:0px;
  8528. position:absolute;
  8529. left:1247px;
  8530. top:242px;
  8531. width:120px;
  8532. height:23px;
  8533. display:flex;
  8534. font-size:11px;
  8535. color:#AAAAAA;
  8536. }
  8537. #u20063 .text {
  8538. position:absolute;
  8539. align-self:flex-start;
  8540. padding:2px 2px 2px 2px;
  8541. box-sizing:border-box;
  8542. width:100%;
  8543. }
  8544. #u20063_div.disabled {
  8545. border-width:0px;
  8546. position:absolute;
  8547. left:0px;
  8548. top:0px;
  8549. width:120px;
  8550. height:23px;
  8551. background:inherit;
  8552. background-color:rgba(240, 240, 240, 1);
  8553. border:none;
  8554. border-radius:0px;
  8555. -moz-box-shadow:none;
  8556. -webkit-box-shadow:none;
  8557. box-shadow:none;
  8558. font-size:11px;
  8559. color:#AAAAAA;
  8560. }
  8561. #u20063.disabled {
  8562. }
  8563. .u20063_input_option {
  8564. font-size:11px;
  8565. }
  8566. #u20064 {
  8567. border-width:0px;
  8568. position:absolute;
  8569. left:0px;
  8570. top:0px;
  8571. width:0px;
  8572. height:0px;
  8573. }
  8574. #u20065_div {
  8575. border-width:0px;
  8576. position:absolute;
  8577. left:0px;
  8578. top:0px;
  8579. width:140px;
  8580. height:30px;
  8581. background:inherit;
  8582. background-color:rgba(255, 255, 255, 1);
  8583. box-sizing:border-box;
  8584. border-width:1px;
  8585. border-style:solid;
  8586. border-color:rgba(215, 215, 215, 1);
  8587. border-radius:4px;
  8588. -moz-box-shadow:none;
  8589. -webkit-box-shadow:none;
  8590. box-shadow:none;
  8591. font-size:11px;
  8592. }
  8593. #u20065 {
  8594. border-width:0px;
  8595. position:absolute;
  8596. left:1090px;
  8597. top:240px;
  8598. width:140px;
  8599. height:30px;
  8600. display:flex;
  8601. font-size:11px;
  8602. }
  8603. #u20065 .text {
  8604. position:absolute;
  8605. align-self:center;
  8606. padding:2px 2px 2px 2px;
  8607. box-sizing:border-box;
  8608. width:100%;
  8609. }
  8610. #u20065_text {
  8611. border-width:0px;
  8612. word-wrap:break-word;
  8613. text-transform:none;
  8614. visibility:hidden;
  8615. }
  8616. #u20066_input {
  8617. position:absolute;
  8618. left:0px;
  8619. top:0px;
  8620. width:120px;
  8621. height:23px;
  8622. padding:2px 2px 2px 2px;
  8623. font-family:'ArialMT', 'Arial', sans-serif;
  8624. font-weight:400;
  8625. font-style:normal;
  8626. font-size:11px;
  8627. letter-spacing:normal;
  8628. color:#AAAAAA;
  8629. vertical-align:none;
  8630. text-align:left;
  8631. text-transform:none;
  8632. background-color:transparent;
  8633. border-color:transparent;
  8634. }
  8635. #u20066_input.disabled {
  8636. position:absolute;
  8637. left:0px;
  8638. top:0px;
  8639. width:120px;
  8640. height:23px;
  8641. padding:2px 2px 2px 2px;
  8642. font-family:'ArialMT', 'Arial', sans-serif;
  8643. font-weight:400;
  8644. font-style:normal;
  8645. font-size:11px;
  8646. letter-spacing:normal;
  8647. color:#AAAAAA;
  8648. vertical-align:none;
  8649. text-align:left;
  8650. text-transform:none;
  8651. background-color:transparent;
  8652. border-color:transparent;
  8653. }
  8654. #u20066_div {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:0px;
  8658. top:0px;
  8659. width:120px;
  8660. height:23px;
  8661. background:inherit;
  8662. background-color:rgba(255, 255, 255, 1);
  8663. border:none;
  8664. border-radius:0px;
  8665. -moz-box-shadow:none;
  8666. -webkit-box-shadow:none;
  8667. box-shadow:none;
  8668. font-size:11px;
  8669. color:#AAAAAA;
  8670. }
  8671. #u20066 {
  8672. border-width:0px;
  8673. position:absolute;
  8674. left:1097px;
  8675. top:242px;
  8676. width:120px;
  8677. height:23px;
  8678. display:flex;
  8679. font-size:11px;
  8680. color:#AAAAAA;
  8681. }
  8682. #u20066 .text {
  8683. position:absolute;
  8684. align-self:flex-start;
  8685. padding:2px 2px 2px 2px;
  8686. box-sizing:border-box;
  8687. width:100%;
  8688. }
  8689. #u20066_div.disabled {
  8690. border-width:0px;
  8691. position:absolute;
  8692. left:0px;
  8693. top:0px;
  8694. width:120px;
  8695. height:23px;
  8696. background:inherit;
  8697. background-color:rgba(240, 240, 240, 1);
  8698. border:none;
  8699. border-radius:0px;
  8700. -moz-box-shadow:none;
  8701. -webkit-box-shadow:none;
  8702. box-shadow:none;
  8703. font-size:11px;
  8704. color:#AAAAAA;
  8705. }
  8706. #u20066.disabled {
  8707. }
  8708. .u20066_input_option {
  8709. font-size:11px;
  8710. }
  8711. #u20067 {
  8712. border-width:0px;
  8713. position:absolute;
  8714. left:0px;
  8715. top:0px;
  8716. width:0px;
  8717. height:0px;
  8718. }
  8719. #u20068_div {
  8720. border-width:0px;
  8721. position:absolute;
  8722. left:0px;
  8723. top:0px;
  8724. width:140px;
  8725. height:30px;
  8726. background:inherit;
  8727. background-color:rgba(255, 255, 255, 1);
  8728. box-sizing:border-box;
  8729. border-width:1px;
  8730. border-style:solid;
  8731. border-color:rgba(215, 215, 215, 1);
  8732. border-radius:4px;
  8733. -moz-box-shadow:none;
  8734. -webkit-box-shadow:none;
  8735. box-shadow:none;
  8736. font-size:11px;
  8737. }
  8738. #u20068 {
  8739. border-width:0px;
  8740. position:absolute;
  8741. left:343px;
  8742. top:280px;
  8743. width:140px;
  8744. height:30px;
  8745. display:flex;
  8746. font-size:11px;
  8747. }
  8748. #u20068 .text {
  8749. position:absolute;
  8750. align-self:center;
  8751. padding:2px 2px 2px 2px;
  8752. box-sizing:border-box;
  8753. width:100%;
  8754. }
  8755. #u20068_text {
  8756. border-width:0px;
  8757. word-wrap:break-word;
  8758. text-transform:none;
  8759. visibility:hidden;
  8760. }
  8761. #u20069_input {
  8762. position:absolute;
  8763. left:0px;
  8764. top:0px;
  8765. width:120px;
  8766. height:23px;
  8767. padding:2px 2px 2px 2px;
  8768. font-family:'ArialMT', 'Arial', sans-serif;
  8769. font-weight:400;
  8770. font-style:normal;
  8771. font-size:11px;
  8772. letter-spacing:normal;
  8773. color:#AAAAAA;
  8774. vertical-align:none;
  8775. text-align:left;
  8776. text-transform:none;
  8777. background-color:transparent;
  8778. border-color:transparent;
  8779. }
  8780. #u20069_input.disabled {
  8781. position:absolute;
  8782. left:0px;
  8783. top:0px;
  8784. width:120px;
  8785. height:23px;
  8786. padding:2px 2px 2px 2px;
  8787. font-family:'ArialMT', 'Arial', sans-serif;
  8788. font-weight:400;
  8789. font-style:normal;
  8790. font-size:11px;
  8791. letter-spacing:normal;
  8792. color:#AAAAAA;
  8793. vertical-align:none;
  8794. text-align:left;
  8795. text-transform:none;
  8796. background-color:transparent;
  8797. border-color:transparent;
  8798. }
  8799. #u20069_div {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:0px;
  8803. top:0px;
  8804. width:120px;
  8805. height:23px;
  8806. background:inherit;
  8807. background-color:rgba(255, 255, 255, 1);
  8808. border:none;
  8809. border-radius:0px;
  8810. -moz-box-shadow:none;
  8811. -webkit-box-shadow:none;
  8812. box-shadow:none;
  8813. font-size:11px;
  8814. color:#AAAAAA;
  8815. }
  8816. #u20069 {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:350px;
  8820. top:282px;
  8821. width:120px;
  8822. height:23px;
  8823. display:flex;
  8824. font-size:11px;
  8825. color:#AAAAAA;
  8826. }
  8827. #u20069 .text {
  8828. position:absolute;
  8829. align-self:flex-start;
  8830. padding:2px 2px 2px 2px;
  8831. box-sizing:border-box;
  8832. width:100%;
  8833. }
  8834. #u20069_div.disabled {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:0px;
  8838. top:0px;
  8839. width:120px;
  8840. height:23px;
  8841. background:inherit;
  8842. background-color:rgba(240, 240, 240, 1);
  8843. border:none;
  8844. border-radius:0px;
  8845. -moz-box-shadow:none;
  8846. -webkit-box-shadow:none;
  8847. box-shadow:none;
  8848. font-size:11px;
  8849. color:#AAAAAA;
  8850. }
  8851. #u20069.disabled {
  8852. }
  8853. .u20069_input_option {
  8854. font-size:11px;
  8855. }
  8856. #u20070 {
  8857. border-width:0px;
  8858. position:absolute;
  8859. left:0px;
  8860. top:0px;
  8861. width:0px;
  8862. height:0px;
  8863. }
  8864. #u20071_div {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:0px;
  8868. top:0px;
  8869. width:140px;
  8870. height:30px;
  8871. background:inherit;
  8872. background-color:rgba(255, 255, 255, 1);
  8873. box-sizing:border-box;
  8874. border-width:1px;
  8875. border-style:solid;
  8876. border-color:rgba(215, 215, 215, 1);
  8877. border-radius:4px;
  8878. -moz-box-shadow:none;
  8879. -webkit-box-shadow:none;
  8880. box-shadow:none;
  8881. font-size:11px;
  8882. }
  8883. #u20071 {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:1390px;
  8887. top:240px;
  8888. width:140px;
  8889. height:30px;
  8890. display:flex;
  8891. font-size:11px;
  8892. }
  8893. #u20071 .text {
  8894. position:absolute;
  8895. align-self:center;
  8896. padding:2px 2px 2px 2px;
  8897. box-sizing:border-box;
  8898. width:100%;
  8899. }
  8900. #u20071_text {
  8901. border-width:0px;
  8902. word-wrap:break-word;
  8903. text-transform:none;
  8904. visibility:hidden;
  8905. }
  8906. #u20072_input {
  8907. position:absolute;
  8908. left:0px;
  8909. top:0px;
  8910. width:120px;
  8911. height:23px;
  8912. padding:2px 2px 2px 2px;
  8913. font-family:'ArialMT', 'Arial', sans-serif;
  8914. font-weight:400;
  8915. font-style:normal;
  8916. font-size:11px;
  8917. letter-spacing:normal;
  8918. color:#AAAAAA;
  8919. vertical-align:none;
  8920. text-align:left;
  8921. text-transform:none;
  8922. background-color:transparent;
  8923. border-color:transparent;
  8924. }
  8925. #u20072_input.disabled {
  8926. position:absolute;
  8927. left:0px;
  8928. top:0px;
  8929. width:120px;
  8930. height:23px;
  8931. padding:2px 2px 2px 2px;
  8932. font-family:'ArialMT', 'Arial', sans-serif;
  8933. font-weight:400;
  8934. font-style:normal;
  8935. font-size:11px;
  8936. letter-spacing:normal;
  8937. color:#AAAAAA;
  8938. vertical-align:none;
  8939. text-align:left;
  8940. text-transform:none;
  8941. background-color:transparent;
  8942. border-color:transparent;
  8943. }
  8944. #u20072_div {
  8945. border-width:0px;
  8946. position:absolute;
  8947. left:0px;
  8948. top:0px;
  8949. width:120px;
  8950. height:23px;
  8951. background:inherit;
  8952. background-color:rgba(255, 255, 255, 1);
  8953. border:none;
  8954. border-radius:0px;
  8955. -moz-box-shadow:none;
  8956. -webkit-box-shadow:none;
  8957. box-shadow:none;
  8958. font-size:11px;
  8959. color:#AAAAAA;
  8960. }
  8961. #u20072 {
  8962. border-width:0px;
  8963. position:absolute;
  8964. left:1397px;
  8965. top:242px;
  8966. width:120px;
  8967. height:23px;
  8968. display:flex;
  8969. font-size:11px;
  8970. color:#AAAAAA;
  8971. }
  8972. #u20072 .text {
  8973. position:absolute;
  8974. align-self:flex-start;
  8975. padding:2px 2px 2px 2px;
  8976. box-sizing:border-box;
  8977. width:100%;
  8978. }
  8979. #u20072_div.disabled {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:0px;
  8983. top:0px;
  8984. width:120px;
  8985. height:23px;
  8986. background:inherit;
  8987. background-color:rgba(240, 240, 240, 1);
  8988. border:none;
  8989. border-radius:0px;
  8990. -moz-box-shadow:none;
  8991. -webkit-box-shadow:none;
  8992. box-shadow:none;
  8993. font-size:11px;
  8994. color:#AAAAAA;
  8995. }
  8996. #u20072.disabled {
  8997. }
  8998. .u20072_input_option {
  8999. font-size:11px;
  9000. }
  9001. #u20073 {
  9002. border-width:0px;
  9003. position:absolute;
  9004. left:0px;
  9005. top:0px;
  9006. width:0px;
  9007. height:0px;
  9008. }
  9009. #u20074_div {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:0px;
  9013. top:0px;
  9014. width:140px;
  9015. height:30px;
  9016. background:inherit;
  9017. background-color:rgba(255, 255, 255, 1);
  9018. box-sizing:border-box;
  9019. border-width:1px;
  9020. border-style:solid;
  9021. border-color:rgba(201, 201, 201, 1);
  9022. border-radius:4px;
  9023. -moz-box-shadow:none;
  9024. -webkit-box-shadow:none;
  9025. box-shadow:none;
  9026. font-family:'Microsoft YaHei', sans-serif;
  9027. font-weight:400;
  9028. font-style:normal;
  9029. font-size:14px;
  9030. color:#CCCCCC;
  9031. text-align:left;
  9032. }
  9033. #u20074 {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:343px;
  9037. top:240px;
  9038. width:140px;
  9039. height:30px;
  9040. display:flex;
  9041. font-family:'Microsoft YaHei', sans-serif;
  9042. font-weight:400;
  9043. font-style:normal;
  9044. font-size:14px;
  9045. color:#CCCCCC;
  9046. text-align:left;
  9047. }
  9048. #u20074 .text {
  9049. position:absolute;
  9050. align-self:center;
  9051. padding:2px 8px 2px 8px;
  9052. box-sizing:border-box;
  9053. width:100%;
  9054. }
  9055. #u20074_text {
  9056. border-width:0px;
  9057. word-wrap:break-word;
  9058. text-transform:none;
  9059. visibility:hidden;
  9060. }
  9061. #u20075_input {
  9062. position:absolute;
  9063. left:0px;
  9064. top:0px;
  9065. width:127px;
  9066. height:25px;
  9067. padding:2px 2px 2px 2px;
  9068. font-family:'Microsoft YaHei', sans-serif;
  9069. font-weight:400;
  9070. font-style:normal;
  9071. font-size:10px;
  9072. letter-spacing:normal;
  9073. color:#000000;
  9074. vertical-align:none;
  9075. text-align:left;
  9076. text-transform:none;
  9077. background-color:transparent;
  9078. border-color:transparent;
  9079. }
  9080. #u20075_input.disabled {
  9081. position:absolute;
  9082. left:0px;
  9083. top:0px;
  9084. width:127px;
  9085. height:25px;
  9086. padding:2px 2px 2px 2px;
  9087. font-family:'Microsoft YaHei', sans-serif;
  9088. font-weight:400;
  9089. font-style:normal;
  9090. font-size:10px;
  9091. letter-spacing:normal;
  9092. color:#000000;
  9093. vertical-align:none;
  9094. text-align:left;
  9095. text-transform:none;
  9096. background-color:transparent;
  9097. border-color:transparent;
  9098. }
  9099. #u20075_div {
  9100. border-width:0px;
  9101. position:absolute;
  9102. left:0px;
  9103. top:0px;
  9104. width:127px;
  9105. height:25px;
  9106. background:inherit;
  9107. background-color:rgba(255, 255, 255, 1);
  9108. border:none;
  9109. border-radius:0px;
  9110. -moz-box-shadow:none;
  9111. -webkit-box-shadow:none;
  9112. box-shadow:none;
  9113. font-family:'Microsoft YaHei', sans-serif;
  9114. font-weight:400;
  9115. font-style:normal;
  9116. font-size:10px;
  9117. }
  9118. #u20075 {
  9119. border-width:0px;
  9120. position:absolute;
  9121. left:351px;
  9122. top:241px;
  9123. width:127px;
  9124. height:25px;
  9125. display:flex;
  9126. font-family:'Microsoft YaHei', sans-serif;
  9127. font-weight:400;
  9128. font-style:normal;
  9129. font-size:10px;
  9130. }
  9131. #u20075 .text {
  9132. position:absolute;
  9133. align-self:center;
  9134. padding:2px 2px 2px 2px;
  9135. box-sizing:border-box;
  9136. width:100%;
  9137. }
  9138. #u20075_div.disabled {
  9139. border-width:0px;
  9140. position:absolute;
  9141. left:0px;
  9142. top:0px;
  9143. width:127px;
  9144. height:25px;
  9145. background:inherit;
  9146. background-color:rgba(240, 240, 240, 1);
  9147. border:none;
  9148. border-radius:0px;
  9149. -moz-box-shadow:none;
  9150. -webkit-box-shadow:none;
  9151. box-shadow:none;
  9152. font-family:'Microsoft YaHei', sans-serif;
  9153. font-weight:400;
  9154. font-style:normal;
  9155. font-size:10px;
  9156. }
  9157. #u20075.disabled {
  9158. }
  9159. #u20076 {
  9160. border-width:0px;
  9161. position:absolute;
  9162. left:0px;
  9163. top:0px;
  9164. width:0px;
  9165. height:0px;
  9166. }
  9167. #u20077_div {
  9168. border-width:0px;
  9169. position:absolute;
  9170. left:0px;
  9171. top:0px;
  9172. width:140px;
  9173. height:30px;
  9174. background:inherit;
  9175. background-color:rgba(255, 255, 255, 1);
  9176. box-sizing:border-box;
  9177. border-width:1px;
  9178. border-style:solid;
  9179. border-color:rgba(201, 201, 201, 1);
  9180. border-radius:4px;
  9181. -moz-box-shadow:none;
  9182. -webkit-box-shadow:none;
  9183. box-shadow:none;
  9184. font-family:'Microsoft YaHei', sans-serif;
  9185. font-weight:400;
  9186. font-style:normal;
  9187. font-size:14px;
  9188. color:#CCCCCC;
  9189. text-align:left;
  9190. }
  9191. #u20077 {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:492px;
  9195. top:240px;
  9196. width:140px;
  9197. height:30px;
  9198. display:flex;
  9199. font-family:'Microsoft YaHei', sans-serif;
  9200. font-weight:400;
  9201. font-style:normal;
  9202. font-size:14px;
  9203. color:#CCCCCC;
  9204. text-align:left;
  9205. }
  9206. #u20077 .text {
  9207. position:absolute;
  9208. align-self:center;
  9209. padding:2px 8px 2px 8px;
  9210. box-sizing:border-box;
  9211. width:100%;
  9212. }
  9213. #u20077_text {
  9214. border-width:0px;
  9215. word-wrap:break-word;
  9216. text-transform:none;
  9217. visibility:hidden;
  9218. }
  9219. #u20078_input {
  9220. position:absolute;
  9221. left:0px;
  9222. top:0px;
  9223. width:127px;
  9224. height:25px;
  9225. padding:2px 2px 2px 2px;
  9226. font-family:'Microsoft YaHei', sans-serif;
  9227. font-weight:400;
  9228. font-style:normal;
  9229. font-size:10px;
  9230. letter-spacing:normal;
  9231. color:#000000;
  9232. vertical-align:none;
  9233. text-align:left;
  9234. text-transform:none;
  9235. background-color:transparent;
  9236. border-color:transparent;
  9237. }
  9238. #u20078_input.disabled {
  9239. position:absolute;
  9240. left:0px;
  9241. top:0px;
  9242. width:127px;
  9243. height:25px;
  9244. padding:2px 2px 2px 2px;
  9245. font-family:'Microsoft YaHei', sans-serif;
  9246. font-weight:400;
  9247. font-style:normal;
  9248. font-size:10px;
  9249. letter-spacing:normal;
  9250. color:#000000;
  9251. vertical-align:none;
  9252. text-align:left;
  9253. text-transform:none;
  9254. background-color:transparent;
  9255. border-color:transparent;
  9256. }
  9257. #u20078_div {
  9258. border-width:0px;
  9259. position:absolute;
  9260. left:0px;
  9261. top:0px;
  9262. width:127px;
  9263. height:25px;
  9264. background:inherit;
  9265. background-color:rgba(255, 255, 255, 1);
  9266. border:none;
  9267. border-radius:0px;
  9268. -moz-box-shadow:none;
  9269. -webkit-box-shadow:none;
  9270. box-shadow:none;
  9271. font-family:'Microsoft YaHei', sans-serif;
  9272. font-weight:400;
  9273. font-style:normal;
  9274. font-size:10px;
  9275. }
  9276. #u20078 {
  9277. border-width:0px;
  9278. position:absolute;
  9279. left:500px;
  9280. top:241px;
  9281. width:127px;
  9282. height:25px;
  9283. display:flex;
  9284. font-family:'Microsoft YaHei', sans-serif;
  9285. font-weight:400;
  9286. font-style:normal;
  9287. font-size:10px;
  9288. }
  9289. #u20078 .text {
  9290. position:absolute;
  9291. align-self:center;
  9292. padding:2px 2px 2px 2px;
  9293. box-sizing:border-box;
  9294. width:100%;
  9295. }
  9296. #u20078_div.disabled {
  9297. border-width:0px;
  9298. position:absolute;
  9299. left:0px;
  9300. top:0px;
  9301. width:127px;
  9302. height:25px;
  9303. background:inherit;
  9304. background-color:rgba(240, 240, 240, 1);
  9305. border:none;
  9306. border-radius:0px;
  9307. -moz-box-shadow:none;
  9308. -webkit-box-shadow:none;
  9309. box-shadow:none;
  9310. font-family:'Microsoft YaHei', sans-serif;
  9311. font-weight:400;
  9312. font-style:normal;
  9313. font-size:10px;
  9314. }
  9315. #u20078.disabled {
  9316. }
  9317. #u20079 {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:0px;
  9321. top:0px;
  9322. width:0px;
  9323. height:0px;
  9324. }
  9325. #u20080_div {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:0px;
  9329. top:0px;
  9330. width:140px;
  9331. height:30px;
  9332. background:inherit;
  9333. background-color:rgba(255, 255, 255, 1);
  9334. box-sizing:border-box;
  9335. border-width:1px;
  9336. border-style:solid;
  9337. border-color:rgba(215, 215, 215, 1);
  9338. border-radius:4px;
  9339. -moz-box-shadow:none;
  9340. -webkit-box-shadow:none;
  9341. box-shadow:none;
  9342. font-size:11px;
  9343. }
  9344. #u20080 {
  9345. border-width:0px;
  9346. position:absolute;
  9347. left:642px;
  9348. top:240px;
  9349. width:140px;
  9350. height:30px;
  9351. display:flex;
  9352. font-size:11px;
  9353. }
  9354. #u20080 .text {
  9355. position:absolute;
  9356. align-self:center;
  9357. padding:2px 2px 2px 2px;
  9358. box-sizing:border-box;
  9359. width:100%;
  9360. }
  9361. #u20080_text {
  9362. border-width:0px;
  9363. word-wrap:break-word;
  9364. text-transform:none;
  9365. visibility:hidden;
  9366. }
  9367. #u20081_input {
  9368. position:absolute;
  9369. left:0px;
  9370. top:0px;
  9371. width:120px;
  9372. height:23px;
  9373. padding:2px 2px 2px 2px;
  9374. font-family:'ArialMT', 'Arial', sans-serif;
  9375. font-weight:400;
  9376. font-style:normal;
  9377. font-size:11px;
  9378. letter-spacing:normal;
  9379. color:#AAAAAA;
  9380. vertical-align:none;
  9381. text-align:left;
  9382. text-transform:none;
  9383. background-color:transparent;
  9384. border-color:transparent;
  9385. }
  9386. #u20081_input.disabled {
  9387. position:absolute;
  9388. left:0px;
  9389. top:0px;
  9390. width:120px;
  9391. height:23px;
  9392. padding:2px 2px 2px 2px;
  9393. font-family:'ArialMT', 'Arial', sans-serif;
  9394. font-weight:400;
  9395. font-style:normal;
  9396. font-size:11px;
  9397. letter-spacing:normal;
  9398. color:#AAAAAA;
  9399. vertical-align:none;
  9400. text-align:left;
  9401. text-transform:none;
  9402. background-color:transparent;
  9403. border-color:transparent;
  9404. }
  9405. #u20081_div {
  9406. border-width:0px;
  9407. position:absolute;
  9408. left:0px;
  9409. top:0px;
  9410. width:120px;
  9411. height:23px;
  9412. background:inherit;
  9413. background-color:rgba(255, 255, 255, 1);
  9414. border:none;
  9415. border-radius:0px;
  9416. -moz-box-shadow:none;
  9417. -webkit-box-shadow:none;
  9418. box-shadow:none;
  9419. font-size:11px;
  9420. color:#AAAAAA;
  9421. }
  9422. #u20081 {
  9423. border-width:0px;
  9424. position:absolute;
  9425. left:649px;
  9426. top:242px;
  9427. width:120px;
  9428. height:23px;
  9429. display:flex;
  9430. font-size:11px;
  9431. color:#AAAAAA;
  9432. }
  9433. #u20081 .text {
  9434. position:absolute;
  9435. align-self:flex-start;
  9436. padding:2px 2px 2px 2px;
  9437. box-sizing:border-box;
  9438. width:100%;
  9439. }
  9440. #u20081_div.disabled {
  9441. border-width:0px;
  9442. position:absolute;
  9443. left:0px;
  9444. top:0px;
  9445. width:120px;
  9446. height:23px;
  9447. background:inherit;
  9448. background-color:rgba(240, 240, 240, 1);
  9449. border:none;
  9450. border-radius:0px;
  9451. -moz-box-shadow:none;
  9452. -webkit-box-shadow:none;
  9453. box-shadow:none;
  9454. font-size:11px;
  9455. color:#AAAAAA;
  9456. }
  9457. #u20081.disabled {
  9458. }
  9459. .u20081_input_option {
  9460. font-size:11px;
  9461. }
  9462. #u20082 {
  9463. border-width:0px;
  9464. position:absolute;
  9465. left:0px;
  9466. top:0px;
  9467. width:0px;
  9468. height:0px;
  9469. }
  9470. #u20083_div {
  9471. border-width:0px;
  9472. position:absolute;
  9473. left:0px;
  9474. top:0px;
  9475. width:140px;
  9476. height:30px;
  9477. background:inherit;
  9478. background-color:rgba(255, 255, 255, 1);
  9479. box-sizing:border-box;
  9480. border-width:1px;
  9481. border-style:solid;
  9482. border-color:rgba(215, 215, 215, 1);
  9483. border-radius:4px;
  9484. -moz-box-shadow:none;
  9485. -webkit-box-shadow:none;
  9486. box-shadow:none;
  9487. font-size:11px;
  9488. }
  9489. #u20083 {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:791px;
  9493. top:240px;
  9494. width:140px;
  9495. height:30px;
  9496. display:flex;
  9497. font-size:11px;
  9498. }
  9499. #u20083 .text {
  9500. position:absolute;
  9501. align-self:center;
  9502. padding:2px 2px 2px 2px;
  9503. box-sizing:border-box;
  9504. width:100%;
  9505. }
  9506. #u20083_text {
  9507. border-width:0px;
  9508. word-wrap:break-word;
  9509. text-transform:none;
  9510. visibility:hidden;
  9511. }
  9512. #u20084_input {
  9513. position:absolute;
  9514. left:0px;
  9515. top:0px;
  9516. width:120px;
  9517. height:23px;
  9518. padding:2px 2px 2px 2px;
  9519. font-family:'ArialMT', 'Arial', sans-serif;
  9520. font-weight:400;
  9521. font-style:normal;
  9522. font-size:11px;
  9523. letter-spacing:normal;
  9524. color:#AAAAAA;
  9525. vertical-align:none;
  9526. text-align:left;
  9527. text-transform:none;
  9528. background-color:transparent;
  9529. border-color:transparent;
  9530. }
  9531. #u20084_input.disabled {
  9532. position:absolute;
  9533. left:0px;
  9534. top:0px;
  9535. width:120px;
  9536. height:23px;
  9537. padding:2px 2px 2px 2px;
  9538. font-family:'ArialMT', 'Arial', sans-serif;
  9539. font-weight:400;
  9540. font-style:normal;
  9541. font-size:11px;
  9542. letter-spacing:normal;
  9543. color:#AAAAAA;
  9544. vertical-align:none;
  9545. text-align:left;
  9546. text-transform:none;
  9547. background-color:transparent;
  9548. border-color:transparent;
  9549. }
  9550. #u20084_div {
  9551. border-width:0px;
  9552. position:absolute;
  9553. left:0px;
  9554. top:0px;
  9555. width:120px;
  9556. height:23px;
  9557. background:inherit;
  9558. background-color:rgba(255, 255, 255, 1);
  9559. border:none;
  9560. border-radius:0px;
  9561. -moz-box-shadow:none;
  9562. -webkit-box-shadow:none;
  9563. box-shadow:none;
  9564. font-size:11px;
  9565. color:#AAAAAA;
  9566. }
  9567. #u20084 {
  9568. border-width:0px;
  9569. position:absolute;
  9570. left:798px;
  9571. top:242px;
  9572. width:120px;
  9573. height:23px;
  9574. display:flex;
  9575. font-size:11px;
  9576. color:#AAAAAA;
  9577. }
  9578. #u20084 .text {
  9579. position:absolute;
  9580. align-self:flex-start;
  9581. padding:2px 2px 2px 2px;
  9582. box-sizing:border-box;
  9583. width:100%;
  9584. }
  9585. #u20084_div.disabled {
  9586. border-width:0px;
  9587. position:absolute;
  9588. left:0px;
  9589. top:0px;
  9590. width:120px;
  9591. height:23px;
  9592. background:inherit;
  9593. background-color:rgba(240, 240, 240, 1);
  9594. border:none;
  9595. border-radius:0px;
  9596. -moz-box-shadow:none;
  9597. -webkit-box-shadow:none;
  9598. box-shadow:none;
  9599. font-size:11px;
  9600. color:#AAAAAA;
  9601. }
  9602. #u20084.disabled {
  9603. }
  9604. .u20084_input_option {
  9605. font-size:11px;
  9606. }
  9607. #u20085 {
  9608. border-width:0px;
  9609. position:absolute;
  9610. left:0px;
  9611. top:0px;
  9612. width:0px;
  9613. height:0px;
  9614. }
  9615. #u20086_div {
  9616. border-width:0px;
  9617. position:absolute;
  9618. left:0px;
  9619. top:0px;
  9620. width:140px;
  9621. height:30px;
  9622. background:inherit;
  9623. background-color:rgba(255, 255, 255, 1);
  9624. box-sizing:border-box;
  9625. border-width:1px;
  9626. border-style:solid;
  9627. border-color:rgba(215, 215, 215, 1);
  9628. border-radius:4px;
  9629. -moz-box-shadow:none;
  9630. -webkit-box-shadow:none;
  9631. box-shadow:none;
  9632. font-size:11px;
  9633. }
  9634. #u20086 {
  9635. border-width:0px;
  9636. position:absolute;
  9637. left:941px;
  9638. top:240px;
  9639. width:140px;
  9640. height:30px;
  9641. display:flex;
  9642. font-size:11px;
  9643. }
  9644. #u20086 .text {
  9645. position:absolute;
  9646. align-self:center;
  9647. padding:2px 2px 2px 2px;
  9648. box-sizing:border-box;
  9649. width:100%;
  9650. }
  9651. #u20086_text {
  9652. border-width:0px;
  9653. word-wrap:break-word;
  9654. text-transform:none;
  9655. visibility:hidden;
  9656. }
  9657. #u20087_input {
  9658. position:absolute;
  9659. left:0px;
  9660. top:0px;
  9661. width:120px;
  9662. height:23px;
  9663. padding:2px 2px 2px 2px;
  9664. font-family:'ArialMT', 'Arial', sans-serif;
  9665. font-weight:400;
  9666. font-style:normal;
  9667. font-size:11px;
  9668. letter-spacing:normal;
  9669. color:#AAAAAA;
  9670. vertical-align:none;
  9671. text-align:left;
  9672. text-transform:none;
  9673. background-color:transparent;
  9674. border-color:transparent;
  9675. }
  9676. #u20087_input.disabled {
  9677. position:absolute;
  9678. left:0px;
  9679. top:0px;
  9680. width:120px;
  9681. height:23px;
  9682. padding:2px 2px 2px 2px;
  9683. font-family:'ArialMT', 'Arial', sans-serif;
  9684. font-weight:400;
  9685. font-style:normal;
  9686. font-size:11px;
  9687. letter-spacing:normal;
  9688. color:#AAAAAA;
  9689. vertical-align:none;
  9690. text-align:left;
  9691. text-transform:none;
  9692. background-color:transparent;
  9693. border-color:transparent;
  9694. }
  9695. #u20087_div {
  9696. border-width:0px;
  9697. position:absolute;
  9698. left:0px;
  9699. top:0px;
  9700. width:120px;
  9701. height:23px;
  9702. background:inherit;
  9703. background-color:rgba(255, 255, 255, 1);
  9704. border:none;
  9705. border-radius:0px;
  9706. -moz-box-shadow:none;
  9707. -webkit-box-shadow:none;
  9708. box-shadow:none;
  9709. font-size:11px;
  9710. color:#AAAAAA;
  9711. }
  9712. #u20087 {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:948px;
  9716. top:242px;
  9717. width:120px;
  9718. height:23px;
  9719. display:flex;
  9720. font-size:11px;
  9721. color:#AAAAAA;
  9722. }
  9723. #u20087 .text {
  9724. position:absolute;
  9725. align-self:flex-start;
  9726. padding:2px 2px 2px 2px;
  9727. box-sizing:border-box;
  9728. width:100%;
  9729. }
  9730. #u20087_div.disabled {
  9731. border-width:0px;
  9732. position:absolute;
  9733. left:0px;
  9734. top:0px;
  9735. width:120px;
  9736. height:23px;
  9737. background:inherit;
  9738. background-color:rgba(240, 240, 240, 1);
  9739. border:none;
  9740. border-radius:0px;
  9741. -moz-box-shadow:none;
  9742. -webkit-box-shadow:none;
  9743. box-shadow:none;
  9744. font-size:11px;
  9745. color:#AAAAAA;
  9746. }
  9747. #u20087.disabled {
  9748. }
  9749. .u20087_input_option {
  9750. font-size:11px;
  9751. }
  9752. #u20088_div {
  9753. border-width:0px;
  9754. position:absolute;
  9755. left:0px;
  9756. top:0px;
  9757. width:55px;
  9758. height:30px;
  9759. background:inherit;
  9760. background-color:rgba(255, 255, 255, 1);
  9761. box-sizing:border-box;
  9762. border-width:1px;
  9763. border-style:solid;
  9764. border-color:rgba(170, 170, 170, 1);
  9765. border-radius:4px;
  9766. -moz-box-shadow:none;
  9767. -webkit-box-shadow:none;
  9768. box-shadow:none;
  9769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9770. font-weight:400;
  9771. font-style:normal;
  9772. font-size:12px;
  9773. color:#555555;
  9774. }
  9775. #u20088 {
  9776. border-width:0px;
  9777. position:absolute;
  9778. left:350px;
  9779. top:330px;
  9780. width:55px;
  9781. height:30px;
  9782. display:flex;
  9783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9784. font-weight:400;
  9785. font-style:normal;
  9786. font-size:12px;
  9787. color:#555555;
  9788. }
  9789. #u20088 .text {
  9790. position:absolute;
  9791. align-self:center;
  9792. padding:5px 15px 5px 15px;
  9793. box-sizing:border-box;
  9794. width:100%;
  9795. }
  9796. #u20088_text {
  9797. border-width:0px;
  9798. white-space:nowrap;
  9799. text-transform:none;
  9800. }
  9801. #u20089_div {
  9802. border-width:0px;
  9803. position:absolute;
  9804. left:0px;
  9805. top:0px;
  9806. width:80px;
  9807. height:30px;
  9808. background:inherit;
  9809. background-color:rgba(255, 255, 255, 0);
  9810. box-sizing:border-box;
  9811. border-width:1px;
  9812. border-style:solid;
  9813. border-color:rgba(0, 153, 255, 1);
  9814. border-radius:4px;
  9815. -moz-box-shadow:none;
  9816. -webkit-box-shadow:none;
  9817. box-shadow:none;
  9818. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9819. font-weight:500;
  9820. font-style:normal;
  9821. font-size:14px;
  9822. color:#0099FF;
  9823. text-align:center;
  9824. }
  9825. #u20089 {
  9826. border-width:0px;
  9827. position:absolute;
  9828. left:1494px;
  9829. top:330px;
  9830. width:80px;
  9831. height:30px;
  9832. display:flex;
  9833. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9834. font-weight:500;
  9835. font-style:normal;
  9836. font-size:14px;
  9837. color:#0099FF;
  9838. text-align:center;
  9839. }
  9840. #u20089 .text {
  9841. position:absolute;
  9842. align-self:center;
  9843. padding:0px 0px 0px 0px;
  9844. box-sizing:border-box;
  9845. width:100%;
  9846. }
  9847. #u20089_text {
  9848. border-width:0px;
  9849. word-wrap:break-word;
  9850. text-transform:none;
  9851. }
  9852. #u20090 {
  9853. border-width:0px;
  9854. position:absolute;
  9855. left:0px;
  9856. top:0px;
  9857. width:0px;
  9858. height:0px;
  9859. }
  9860. #u20091_div {
  9861. border-width:0px;
  9862. position:absolute;
  9863. left:0px;
  9864. top:0px;
  9865. width:200px;
  9866. height:1180px;
  9867. background:inherit;
  9868. background-color:rgba(255, 255, 255, 1);
  9869. border:none;
  9870. border-radius:0px;
  9871. -moz-box-shadow:none;
  9872. -webkit-box-shadow:none;
  9873. box-shadow:none;
  9874. }
  9875. #u20091 {
  9876. border-width:0px;
  9877. position:absolute;
  9878. left:120px;
  9879. top:50px;
  9880. width:200px;
  9881. height:1180px;
  9882. display:flex;
  9883. }
  9884. #u20091 .text {
  9885. position:absolute;
  9886. align-self:center;
  9887. padding:2px 2px 2px 2px;
  9888. box-sizing:border-box;
  9889. width:100%;
  9890. }
  9891. #u20091_text {
  9892. border-width:0px;
  9893. word-wrap:break-word;
  9894. text-transform:none;
  9895. visibility:hidden;
  9896. }
  9897. #u20092_div {
  9898. border-width:0px;
  9899. position:absolute;
  9900. left:0px;
  9901. top:0px;
  9902. width:200px;
  9903. height:60px;
  9904. background:inherit;
  9905. background-color:rgba(224, 231, 247, 1);
  9906. border:none;
  9907. border-radius:0px;
  9908. -moz-box-shadow:none;
  9909. -webkit-box-shadow:none;
  9910. box-shadow:none;
  9911. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9912. font-weight:500;
  9913. font-style:normal;
  9914. font-size:18px;
  9915. }
  9916. #u20092 {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:120px;
  9920. top:50px;
  9921. width:200px;
  9922. height:60px;
  9923. display:flex;
  9924. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9925. font-weight:500;
  9926. font-style:normal;
  9927. font-size:18px;
  9928. }
  9929. #u20092 .text {
  9930. position:absolute;
  9931. align-self:center;
  9932. padding:0px 0px 0px 20px;
  9933. box-sizing:border-box;
  9934. width:100%;
  9935. }
  9936. #u20092_text {
  9937. border-width:0px;
  9938. word-wrap:break-word;
  9939. text-transform:none;
  9940. }
  9941. #u20093_div {
  9942. border-width:0px;
  9943. position:absolute;
  9944. left:0px;
  9945. top:0px;
  9946. width:65px;
  9947. height:22px;
  9948. background:inherit;
  9949. background-color:rgba(255, 255, 255, 0);
  9950. border:none;
  9951. border-radius:0px;
  9952. -moz-box-shadow:none;
  9953. -webkit-box-shadow:none;
  9954. box-shadow:none;
  9955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9956. font-weight:400;
  9957. font-style:normal;
  9958. font-size:16px;
  9959. }
  9960. #u20093 {
  9961. border-width:0px;
  9962. position:absolute;
  9963. left:147px;
  9964. top:130px;
  9965. width:65px;
  9966. height:22px;
  9967. display:flex;
  9968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9969. font-weight:400;
  9970. font-style:normal;
  9971. font-size:16px;
  9972. }
  9973. #u20093 .text {
  9974. position:absolute;
  9975. align-self:flex-start;
  9976. padding:0px 0px 0px 0px;
  9977. box-sizing:border-box;
  9978. width:100%;
  9979. }
  9980. #u20093_text {
  9981. border-width:0px;
  9982. white-space:nowrap;
  9983. text-transform:none;
  9984. }
  9985. #u20094_div {
  9986. border-width:0px;
  9987. position:absolute;
  9988. left:0px;
  9989. top:0px;
  9990. width:65px;
  9991. height:22px;
  9992. background:inherit;
  9993. background-color:rgba(255, 255, 255, 0);
  9994. border:none;
  9995. border-radius:0px;
  9996. -moz-box-shadow:none;
  9997. -webkit-box-shadow:none;
  9998. box-shadow:none;
  9999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10000. font-weight:400;
  10001. font-style:normal;
  10002. font-size:16px;
  10003. }
  10004. #u20094 {
  10005. border-width:0px;
  10006. position:absolute;
  10007. left:147px;
  10008. top:229px;
  10009. width:65px;
  10010. height:22px;
  10011. display:flex;
  10012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10013. font-weight:400;
  10014. font-style:normal;
  10015. font-size:16px;
  10016. }
  10017. #u20094 .text {
  10018. position:absolute;
  10019. align-self:flex-start;
  10020. padding:0px 0px 0px 0px;
  10021. box-sizing:border-box;
  10022. width:100%;
  10023. }
  10024. #u20094_text {
  10025. border-width:0px;
  10026. white-space:nowrap;
  10027. text-transform:none;
  10028. }
  10029. #u20095_div {
  10030. border-width:0px;
  10031. position:absolute;
  10032. left:0px;
  10033. top:0px;
  10034. width:65px;
  10035. height:22px;
  10036. background:inherit;
  10037. background-color:rgba(255, 255, 255, 0);
  10038. border:none;
  10039. border-radius:0px;
  10040. -moz-box-shadow:none;
  10041. -webkit-box-shadow:none;
  10042. box-shadow:none;
  10043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10044. font-weight:400;
  10045. font-style:normal;
  10046. font-size:16px;
  10047. }
  10048. #u20095 {
  10049. border-width:0px;
  10050. position:absolute;
  10051. left:147px;
  10052. top:271px;
  10053. width:65px;
  10054. height:22px;
  10055. display:flex;
  10056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10057. font-weight:400;
  10058. font-style:normal;
  10059. font-size:16px;
  10060. }
  10061. #u20095 .text {
  10062. position:absolute;
  10063. align-self:flex-start;
  10064. padding:0px 0px 0px 0px;
  10065. box-sizing:border-box;
  10066. width:100%;
  10067. }
  10068. #u20095_text {
  10069. border-width:0px;
  10070. white-space:nowrap;
  10071. text-transform:none;
  10072. }
  10073. #u20096_div {
  10074. border-width:0px;
  10075. position:absolute;
  10076. left:0px;
  10077. top:0px;
  10078. width:65px;
  10079. height:22px;
  10080. background:inherit;
  10081. background-color:rgba(255, 255, 255, 0);
  10082. border:none;
  10083. border-radius:0px;
  10084. -moz-box-shadow:none;
  10085. -webkit-box-shadow:none;
  10086. box-shadow:none;
  10087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10088. font-weight:400;
  10089. font-style:normal;
  10090. font-size:16px;
  10091. }
  10092. #u20096 {
  10093. border-width:0px;
  10094. position:absolute;
  10095. left:147px;
  10096. top:770px;
  10097. width:65px;
  10098. height:22px;
  10099. display:flex;
  10100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10101. font-weight:400;
  10102. font-style:normal;
  10103. font-size:16px;
  10104. }
  10105. #u20096 .text {
  10106. position:absolute;
  10107. align-self:flex-start;
  10108. padding:0px 0px 0px 0px;
  10109. box-sizing:border-box;
  10110. width:100%;
  10111. }
  10112. #u20096_text {
  10113. border-width:0px;
  10114. white-space:nowrap;
  10115. text-transform:none;
  10116. }
  10117. #u20097_div {
  10118. border-width:0px;
  10119. position:absolute;
  10120. left:0px;
  10121. top:0px;
  10122. width:65px;
  10123. height:22px;
  10124. background:inherit;
  10125. background-color:rgba(255, 255, 255, 0);
  10126. border:none;
  10127. border-radius:0px;
  10128. -moz-box-shadow:none;
  10129. -webkit-box-shadow:none;
  10130. box-shadow:none;
  10131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10132. font-weight:400;
  10133. font-style:normal;
  10134. font-size:16px;
  10135. }
  10136. #u20097 {
  10137. border-width:0px;
  10138. position:absolute;
  10139. left:147px;
  10140. top:812px;
  10141. width:65px;
  10142. height:22px;
  10143. display:flex;
  10144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10145. font-weight:400;
  10146. font-style:normal;
  10147. font-size:16px;
  10148. }
  10149. #u20097 .text {
  10150. position:absolute;
  10151. align-self:flex-start;
  10152. padding:0px 0px 0px 0px;
  10153. box-sizing:border-box;
  10154. width:100%;
  10155. }
  10156. #u20097_text {
  10157. border-width:0px;
  10158. white-space:nowrap;
  10159. text-transform:none;
  10160. }
  10161. #u20098_div {
  10162. border-width:0px;
  10163. position:absolute;
  10164. left:0px;
  10165. top:0px;
  10166. width:49px;
  10167. height:17px;
  10168. background:inherit;
  10169. background-color:rgba(255, 255, 255, 0);
  10170. border:none;
  10171. border-radius:0px;
  10172. -moz-box-shadow:none;
  10173. -webkit-box-shadow:none;
  10174. box-shadow:none;
  10175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10176. font-weight:400;
  10177. font-style:normal;
  10178. font-size:12px;
  10179. color:#AAAAAA;
  10180. }
  10181. #u20098 {
  10182. border-width:0px;
  10183. position:absolute;
  10184. left:147px;
  10185. top:192px;
  10186. width:49px;
  10187. height:17px;
  10188. display:flex;
  10189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10190. font-weight:400;
  10191. font-style:normal;
  10192. font-size:12px;
  10193. color:#AAAAAA;
  10194. }
  10195. #u20098 .text {
  10196. position:absolute;
  10197. align-self:flex-start;
  10198. padding:0px 0px 0px 0px;
  10199. box-sizing:border-box;
  10200. width:100%;
  10201. }
  10202. #u20098_text {
  10203. border-width:0px;
  10204. white-space:nowrap;
  10205. text-transform:none;
  10206. }
  10207. #u20099_img {
  10208. border-width:0px;
  10209. position:absolute;
  10210. left:0px;
  10211. top:0px;
  10212. width:201px;
  10213. height:2px;
  10214. }
  10215. #u20099 {
  10216. border-width:0px;
  10217. position:absolute;
  10218. left:121px;
  10219. top:712px;
  10220. width:200px;
  10221. height:1px;
  10222. display:flex;
  10223. }
  10224. #u20099 .text {
  10225. position:absolute;
  10226. align-self:center;
  10227. padding:2px 2px 2px 2px;
  10228. box-sizing:border-box;
  10229. width:100%;
  10230. }
  10231. #u20099_text {
  10232. border-width:0px;
  10233. word-wrap:break-word;
  10234. text-transform:none;
  10235. visibility:hidden;
  10236. }
  10237. #u20100_div {
  10238. border-width:0px;
  10239. position:absolute;
  10240. left:0px;
  10241. top:0px;
  10242. width:49px;
  10243. height:17px;
  10244. background:inherit;
  10245. background-color:rgba(255, 255, 255, 0);
  10246. border:none;
  10247. border-radius:0px;
  10248. -moz-box-shadow:none;
  10249. -webkit-box-shadow:none;
  10250. box-shadow:none;
  10251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10252. font-weight:400;
  10253. font-style:normal;
  10254. font-size:12px;
  10255. color:#AAAAAA;
  10256. }
  10257. #u20100 {
  10258. border-width:0px;
  10259. position:absolute;
  10260. left:147px;
  10261. top:733px;
  10262. width:49px;
  10263. height:17px;
  10264. display:flex;
  10265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10266. font-weight:400;
  10267. font-style:normal;
  10268. font-size:12px;
  10269. color:#AAAAAA;
  10270. }
  10271. #u20100 .text {
  10272. position:absolute;
  10273. align-self:flex-start;
  10274. padding:0px 0px 0px 0px;
  10275. box-sizing:border-box;
  10276. width:100%;
  10277. }
  10278. #u20100_text {
  10279. border-width:0px;
  10280. white-space:nowrap;
  10281. text-transform:none;
  10282. }
  10283. #u20101_img {
  10284. border-width:0px;
  10285. position:absolute;
  10286. left:0px;
  10287. top:0px;
  10288. width:201px;
  10289. height:2px;
  10290. }
  10291. #u20101 {
  10292. border-width:0px;
  10293. position:absolute;
  10294. left:121px;
  10295. top:171px;
  10296. width:200px;
  10297. height:1px;
  10298. display:flex;
  10299. }
  10300. #u20101 .text {
  10301. position:absolute;
  10302. align-self:center;
  10303. padding:2px 2px 2px 2px;
  10304. box-sizing:border-box;
  10305. width:100%;
  10306. }
  10307. #u20101_text {
  10308. border-width:0px;
  10309. word-wrap:break-word;
  10310. text-transform:none;
  10311. visibility:hidden;
  10312. }
  10313. #u20102_div {
  10314. border-width:0px;
  10315. position:absolute;
  10316. left:0px;
  10317. top:0px;
  10318. width:81px;
  10319. height:22px;
  10320. background:inherit;
  10321. background-color:rgba(255, 255, 255, 0);
  10322. border:none;
  10323. border-radius:0px;
  10324. -moz-box-shadow:none;
  10325. -webkit-box-shadow:none;
  10326. box-shadow:none;
  10327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10328. font-weight:400;
  10329. font-style:normal;
  10330. font-size:16px;
  10331. }
  10332. #u20102 {
  10333. border-width:0px;
  10334. position:absolute;
  10335. left:147px;
  10336. top:315px;
  10337. width:81px;
  10338. height:22px;
  10339. display:flex;
  10340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10341. font-weight:400;
  10342. font-style:normal;
  10343. font-size:16px;
  10344. }
  10345. #u20102 .text {
  10346. position:absolute;
  10347. align-self:flex-start;
  10348. padding:0px 0px 0px 0px;
  10349. box-sizing:border-box;
  10350. width:100%;
  10351. }
  10352. #u20102_text {
  10353. border-width:0px;
  10354. white-space:nowrap;
  10355. text-transform:none;
  10356. }
  10357. #u20103_div {
  10358. border-width:0px;
  10359. position:absolute;
  10360. left:0px;
  10361. top:0px;
  10362. width:81px;
  10363. height:22px;
  10364. background:inherit;
  10365. background-color:rgba(255, 255, 255, 0);
  10366. border:none;
  10367. border-radius:0px;
  10368. -moz-box-shadow:none;
  10369. -webkit-box-shadow:none;
  10370. box-shadow:none;
  10371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10372. font-weight:400;
  10373. font-style:normal;
  10374. font-size:16px;
  10375. }
  10376. #u20103 {
  10377. border-width:0px;
  10378. position:absolute;
  10379. left:147px;
  10380. top:357px;
  10381. width:81px;
  10382. height:22px;
  10383. display:flex;
  10384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10385. font-weight:400;
  10386. font-style:normal;
  10387. font-size:16px;
  10388. }
  10389. #u20103 .text {
  10390. position:absolute;
  10391. align-self:flex-start;
  10392. padding:0px 0px 0px 0px;
  10393. box-sizing:border-box;
  10394. width:100%;
  10395. }
  10396. #u20103_text {
  10397. border-width:0px;
  10398. white-space:nowrap;
  10399. text-transform:none;
  10400. }
  10401. #u20104_div {
  10402. border-width:0px;
  10403. position:absolute;
  10404. left:0px;
  10405. top:0px;
  10406. width:81px;
  10407. height:22px;
  10408. background:inherit;
  10409. background-color:rgba(255, 255, 255, 0);
  10410. border:none;
  10411. border-radius:0px;
  10412. -moz-box-shadow:none;
  10413. -webkit-box-shadow:none;
  10414. box-shadow:none;
  10415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10416. font-weight:400;
  10417. font-style:normal;
  10418. font-size:16px;
  10419. }
  10420. #u20104 {
  10421. border-width:0px;
  10422. position:absolute;
  10423. left:147px;
  10424. top:399px;
  10425. width:81px;
  10426. height:22px;
  10427. display:flex;
  10428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10429. font-weight:400;
  10430. font-style:normal;
  10431. font-size:16px;
  10432. }
  10433. #u20104 .text {
  10434. position:absolute;
  10435. align-self:flex-start;
  10436. padding:0px 0px 0px 0px;
  10437. box-sizing:border-box;
  10438. width:100%;
  10439. }
  10440. #u20104_text {
  10441. border-width:0px;
  10442. white-space:nowrap;
  10443. text-transform:none;
  10444. }
  10445. #u20105_div {
  10446. border-width:0px;
  10447. position:absolute;
  10448. left:0px;
  10449. top:0px;
  10450. width:97px;
  10451. height:22px;
  10452. background:inherit;
  10453. background-color:rgba(255, 255, 255, 0);
  10454. border:none;
  10455. border-radius:0px;
  10456. -moz-box-shadow:none;
  10457. -webkit-box-shadow:none;
  10458. box-shadow:none;
  10459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10460. font-weight:400;
  10461. font-style:normal;
  10462. font-size:16px;
  10463. }
  10464. #u20105 {
  10465. border-width:0px;
  10466. position:absolute;
  10467. left:146px;
  10468. top:499px;
  10469. width:97px;
  10470. height:22px;
  10471. display:flex;
  10472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10473. font-weight:400;
  10474. font-style:normal;
  10475. font-size:16px;
  10476. }
  10477. #u20105 .text {
  10478. position:absolute;
  10479. align-self:flex-start;
  10480. padding:0px 0px 0px 0px;
  10481. box-sizing:border-box;
  10482. width:100%;
  10483. }
  10484. #u20105_text {
  10485. border-width:0px;
  10486. white-space:nowrap;
  10487. text-transform:none;
  10488. }
  10489. #u20106_div {
  10490. border-width:0px;
  10491. position:absolute;
  10492. left:0px;
  10493. top:0px;
  10494. width:65px;
  10495. height:22px;
  10496. background:inherit;
  10497. background-color:rgba(255, 255, 255, 0);
  10498. border:none;
  10499. border-radius:0px;
  10500. -moz-box-shadow:none;
  10501. -webkit-box-shadow:none;
  10502. box-shadow:none;
  10503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10504. font-weight:400;
  10505. font-style:normal;
  10506. font-size:16px;
  10507. }
  10508. #u20106 {
  10509. border-width:0px;
  10510. position:absolute;
  10511. left:146px;
  10512. top:581px;
  10513. width:65px;
  10514. height:22px;
  10515. display:flex;
  10516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10517. font-weight:400;
  10518. font-style:normal;
  10519. font-size:16px;
  10520. }
  10521. #u20106 .text {
  10522. position:absolute;
  10523. align-self:flex-start;
  10524. padding:0px 0px 0px 0px;
  10525. box-sizing:border-box;
  10526. width:100%;
  10527. }
  10528. #u20106_text {
  10529. border-width:0px;
  10530. white-space:nowrap;
  10531. text-transform:none;
  10532. }
  10533. #u20107_div {
  10534. border-width:0px;
  10535. position:absolute;
  10536. left:0px;
  10537. top:0px;
  10538. width:65px;
  10539. height:22px;
  10540. background:inherit;
  10541. background-color:rgba(255, 255, 255, 0);
  10542. border:none;
  10543. border-radius:0px;
  10544. -moz-box-shadow:none;
  10545. -webkit-box-shadow:none;
  10546. box-shadow:none;
  10547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10548. font-weight:400;
  10549. font-style:normal;
  10550. font-size:16px;
  10551. }
  10552. #u20107 {
  10553. border-width:0px;
  10554. position:absolute;
  10555. left:146px;
  10556. top:623px;
  10557. width:65px;
  10558. height:22px;
  10559. display:flex;
  10560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10561. font-weight:400;
  10562. font-style:normal;
  10563. font-size:16px;
  10564. }
  10565. #u20107 .text {
  10566. position:absolute;
  10567. align-self:flex-start;
  10568. padding:0px 0px 0px 0px;
  10569. box-sizing:border-box;
  10570. width:100%;
  10571. }
  10572. #u20107_text {
  10573. border-width:0px;
  10574. white-space:nowrap;
  10575. text-transform:none;
  10576. }
  10577. #u20108_div {
  10578. border-width:0px;
  10579. position:absolute;
  10580. left:0px;
  10581. top:0px;
  10582. width:49px;
  10583. height:17px;
  10584. background:inherit;
  10585. background-color:rgba(255, 255, 255, 0);
  10586. border:none;
  10587. border-radius:0px;
  10588. -moz-box-shadow:none;
  10589. -webkit-box-shadow:none;
  10590. box-shadow:none;
  10591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10592. font-weight:400;
  10593. font-style:normal;
  10594. font-size:12px;
  10595. color:#AAAAAA;
  10596. }
  10597. #u20108 {
  10598. border-width:0px;
  10599. position:absolute;
  10600. left:146px;
  10601. top:462px;
  10602. width:49px;
  10603. height:17px;
  10604. display:flex;
  10605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10606. font-weight:400;
  10607. font-style:normal;
  10608. font-size:12px;
  10609. color:#AAAAAA;
  10610. }
  10611. #u20108 .text {
  10612. position:absolute;
  10613. align-self:flex-start;
  10614. padding:0px 0px 0px 0px;
  10615. box-sizing:border-box;
  10616. width:100%;
  10617. }
  10618. #u20108_text {
  10619. border-width:0px;
  10620. white-space:nowrap;
  10621. text-transform:none;
  10622. }
  10623. #u20109_img {
  10624. border-width:0px;
  10625. position:absolute;
  10626. left:0px;
  10627. top:0px;
  10628. width:201px;
  10629. height:2px;
  10630. }
  10631. #u20109 {
  10632. border-width:0px;
  10633. position:absolute;
  10634. left:120px;
  10635. top:441px;
  10636. width:200px;
  10637. height:1px;
  10638. display:flex;
  10639. }
  10640. #u20109 .text {
  10641. position:absolute;
  10642. align-self:center;
  10643. padding:2px 2px 2px 2px;
  10644. box-sizing:border-box;
  10645. width:100%;
  10646. }
  10647. #u20109_text {
  10648. border-width:0px;
  10649. word-wrap:break-word;
  10650. text-transform:none;
  10651. visibility:hidden;
  10652. }
  10653. #u20110_div {
  10654. border-width:0px;
  10655. position:absolute;
  10656. left:0px;
  10657. top:0px;
  10658. width:65px;
  10659. height:22px;
  10660. background:inherit;
  10661. background-color:rgba(255, 255, 255, 0);
  10662. border:none;
  10663. border-radius:0px;
  10664. -moz-box-shadow:none;
  10665. -webkit-box-shadow:none;
  10666. box-shadow:none;
  10667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10668. font-weight:400;
  10669. font-style:normal;
  10670. font-size:16px;
  10671. }
  10672. #u20110 {
  10673. border-width:0px;
  10674. position:absolute;
  10675. left:146px;
  10676. top:665px;
  10677. width:65px;
  10678. height:22px;
  10679. display:flex;
  10680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10681. font-weight:400;
  10682. font-style:normal;
  10683. font-size:16px;
  10684. }
  10685. #u20110 .text {
  10686. position:absolute;
  10687. align-self:flex-start;
  10688. padding:0px 0px 0px 0px;
  10689. box-sizing:border-box;
  10690. width:100%;
  10691. }
  10692. #u20110_text {
  10693. border-width:0px;
  10694. white-space:nowrap;
  10695. text-transform:none;
  10696. }
  10697. #u20111_div {
  10698. border-width:0px;
  10699. position:absolute;
  10700. left:0px;
  10701. top:0px;
  10702. width:97px;
  10703. height:22px;
  10704. background:inherit;
  10705. background-color:rgba(255, 255, 255, 0);
  10706. border:none;
  10707. border-radius:0px;
  10708. -moz-box-shadow:none;
  10709. -webkit-box-shadow:none;
  10710. box-shadow:none;
  10711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10712. font-weight:400;
  10713. font-style:normal;
  10714. font-size:16px;
  10715. }
  10716. #u20111 {
  10717. border-width:0px;
  10718. position:absolute;
  10719. left:146px;
  10720. top:541px;
  10721. width:97px;
  10722. height:22px;
  10723. display:flex;
  10724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10725. font-weight:400;
  10726. font-style:normal;
  10727. font-size:16px;
  10728. }
  10729. #u20111 .text {
  10730. position:absolute;
  10731. align-self:flex-start;
  10732. padding:0px 0px 0px 0px;
  10733. box-sizing:border-box;
  10734. width:100%;
  10735. }
  10736. #u20111_text {
  10737. border-width:0px;
  10738. white-space:nowrap;
  10739. text-transform:none;
  10740. }