styles.css 279 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116151171511815119151201512115122151231512415125151261512715128151291513015131151321513315134151351513615137151381513915140151411514215143151441514515146151471514815149151501515115152151531515415155151561515715158151591516015161151621516315164151651516615167151681516915170151711517215173151741517515176151771517815179151801518115182151831518415185151861518715188151891519015191151921519315194151951519615197151981519915200152011520215203152041520515206152071520815209152101521115212152131521415215152161521715218152191522015221152221522315224152251522615227152281522915230152311523215233152341523515236152371523815239152401524115242152431524415245152461524715248152491525015251152521525315254152551525615257152581525915260152611526215263152641526515266152671526815269152701527115272152731527415275152761527715278152791528015281152821528315284152851528615287152881528915290152911529215293152941529515296152971529815299153001530115302153031530415305153061530715308153091531015311153121531315314153151531615317153181531915320153211532215323153241532515326153271532815329153301533115332153331533415335153361533715338153391534015341153421534315344153451534615347153481534915350153511535215353153541535515356153571535815359153601536115362153631536415365153661536715368153691537015371153721537315374153751537615377153781537915380153811538215383153841538515386153871538815389153901539115392153931539415395153961539715398153991540015401154021540315404154051540615407154081540915410154111541215413154141541515416154171541815419154201542115422154231542415425154261542715428154291543015431154321543315434154351543615437154381543915440154411544215443154441544515446154471544815449154501545115452154531545415455154561545715458154591546015461154621546315464154651546615467154681546915470154711547215473154741547515476154771547815479154801548115482154831548415485154861548715488154891549015491154921549315494154951549615497154981549915500155011550215503155041550515506155071550815509155101551115512155131551415515155161551715518155191552015521155221552315524155251552615527155281552915530155311553215533155341553515536155371553815539155401554115542155431554415545155461554715548155491555015551155521555315554155551555615557155581555915560155611556215563155641556515566155671556815569155701557115572155731557415575155761557715578155791558015581155821558315584155851558615587155881558915590155911559215593155941559515596155971559815599156001560115602156031560415605156061560715608156091561015611156121561315614156151561615617156181561915620156211562215623156241562515626156271562815629156301563115632156331563415635156361563715638156391564015641156421564315644156451564615647156481564915650156511565215653156541565515656156571565815659156601566115662156631566415665156661566715668156691567015671156721567315674156751567615677156781567915680156811568215683156841568515686156871568815689156901569115692156931569415695156961569715698156991570015701157021570315704157051570615707157081570915710157111571215713157141571515716157171571815719157201572115722157231572415725157261572715728157291573015731157321573315734157351573615737157381573915740157411574215743157441574515746157471574815749157501575115752157531575415755157561575715758157591576015761157621576315764157651576615767157681576915770157711577215773157741577515776157771577815779157801578115782157831578415785157861578715788157891579015791157921579315794157951579615797157981579915800158011580215803158041580515806158071580815809158101581115812158131581415815158161581715818158191582015821158221582315824158251582615827158281582915830158311583215833158341583515836158371583815839158401584115842158431584415845158461584715848158491585015851158521585315854158551585615857158581585915860158611586215863158641586515866158671586815869158701587115872158731587415875158761587715878158791588015881158821588315884
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3012px;
  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. #u20268_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. #u20268 {
  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. #u20268 .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. #u20268_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u20269_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. #u20269 {
  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. #u20269 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u20269_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u20270 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u20271_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u20271 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u20271 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u20271_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u20272_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. #u20272 {
  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. #u20272 .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. #u20272_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u20273_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. #u20273 {
  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. #u20273 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u20273_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u20274_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. #u20274 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u20274 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u20274_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u20275 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u20276_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. #u20276 {
  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. #u20276 .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. #u20276_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u20277_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u20277 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u20277 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u20277_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u20278 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u20279_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. #u20279 {
  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. #u20279 .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. #u20279_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u20280_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u20280 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u20280 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u20280_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u20281 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u20282_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. #u20282 {
  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. #u20282 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u20282_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u20283_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u20283 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u20283 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u20283_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u20284 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u20285_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. #u20285 {
  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. #u20285 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u20285_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u20286_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u20286 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u20286 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u20286_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u20287 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u20288_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. #u20288 {
  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. #u20288 .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. #u20288_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u20289_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u20289 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u20289 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u20289_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u20290 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u20291_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. #u20291 {
  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. #u20291 .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. #u20291_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u20292_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u20292 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u20292 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u20292_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u20293 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u20294_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. #u20294 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:445px;
  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. #u20294 .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. #u20294_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u20295_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u20295 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:449px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u20295 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u20295_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u20296 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u20297_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. #u20297 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:487px;
  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. #u20297 .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. #u20297_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u20298_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u20298 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:491px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u20298 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u20298_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u20299 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u20300_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. #u20300 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u20300 .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. #u20300_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u20301_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u20301 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u20301 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u20301_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u20302 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u20303_input {
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:214px;
  1022. height:27px;
  1023. padding:2px 2px 2px 2px;
  1024. font-family:'ArialMT', 'Arial', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:14px;
  1028. letter-spacing:normal;
  1029. color:#FFFFFF;
  1030. vertical-align:none;
  1031. text-align:left;
  1032. text-transform:none;
  1033. background-color:transparent;
  1034. border-color:transparent;
  1035. }
  1036. #u20303_input.disabled {
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:214px;
  1041. height:27px;
  1042. padding:2px 2px 2px 2px;
  1043. font-family:'ArialMT', 'Arial', sans-serif;
  1044. font-weight:400;
  1045. font-style:normal;
  1046. font-size:14px;
  1047. letter-spacing:normal;
  1048. color:#FFFFFF;
  1049. vertical-align:none;
  1050. text-align:left;
  1051. text-transform:none;
  1052. background-color:transparent;
  1053. border-color:transparent;
  1054. }
  1055. #u20303_div {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:214px;
  1061. height:27px;
  1062. background:inherit;
  1063. background-color:rgba(255, 255, 255, 0);
  1064. border:none;
  1065. border-radius:0px;
  1066. -moz-box-shadow:none;
  1067. -webkit-box-shadow:none;
  1068. box-shadow:none;
  1069. font-size:14px;
  1070. color:#FFFFFF;
  1071. }
  1072. #u20303 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:1221px;
  1076. top:11px;
  1077. width:214px;
  1078. height:27px;
  1079. display:flex;
  1080. font-size:14px;
  1081. color:#FFFFFF;
  1082. }
  1083. #u20303 .text {
  1084. position:absolute;
  1085. align-self:flex-start;
  1086. padding:2px 2px 2px 2px;
  1087. box-sizing:border-box;
  1088. width:100%;
  1089. }
  1090. #u20303_div.disabled {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:214px;
  1096. height:27px;
  1097. background:inherit;
  1098. background-color:rgba(240, 240, 240, 1);
  1099. border:none;
  1100. border-radius:0px;
  1101. -moz-box-shadow:none;
  1102. -webkit-box-shadow:none;
  1103. box-shadow:none;
  1104. font-size:14px;
  1105. color:#FFFFFF;
  1106. }
  1107. #u20303.disabled {
  1108. }
  1109. .u20303_input_option {
  1110. font-size:14px;
  1111. }
  1112. #u20304_img {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:22px;
  1118. height:22px;
  1119. }
  1120. #u20304 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:1194px;
  1124. top:14px;
  1125. width:22px;
  1126. height:22px;
  1127. display:flex;
  1128. }
  1129. #u20304 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u20304_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u20305_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:100px;
  1148. height:24px;
  1149. background:inherit;
  1150. background-color:rgba(242, 242, 242, 0.2);
  1151. border:none;
  1152. border-radius:25px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. color:#FFFFFF;
  1160. text-align:center;
  1161. }
  1162. #u20305 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:1480px;
  1166. top:13px;
  1167. width:100px;
  1168. height:24px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. color:#FFFFFF;
  1174. text-align:center;
  1175. }
  1176. #u20305 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u20305_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. }
  1188. #u20306_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:2px;
  1194. height:12px;
  1195. }
  1196. #u20306 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1452px;
  1200. top:19px;
  1201. width:1px;
  1202. height:11px;
  1203. display:flex;
  1204. }
  1205. #u20306 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u20306_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u20307 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:0px;
  1224. height:0px;
  1225. }
  1226. #u20308_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:33px;
  1232. height:22px;
  1233. background:inherit;
  1234. background-color:rgba(255, 255, 255, 0);
  1235. border:none;
  1236. border-radius:0px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. font-size:16px;
  1244. color:#FFFFFF;
  1245. }
  1246. #u20308 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:39px;
  1250. top:361px;
  1251. width:33px;
  1252. height:22px;
  1253. display:flex;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. font-size:16px;
  1258. color:#FFFFFF;
  1259. }
  1260. #u20308 .text {
  1261. position:absolute;
  1262. align-self:flex-start;
  1263. padding:0px 0px 0px 0px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u20308_text {
  1268. border-width:0px;
  1269. white-space:nowrap;
  1270. text-transform:none;
  1271. }
  1272. #u20309_img {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:14px;
  1278. height:14px;
  1279. }
  1280. #u20309 {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:20px;
  1284. top:365px;
  1285. width:14px;
  1286. height:14px;
  1287. display:flex;
  1288. }
  1289. #u20309 .text {
  1290. position:absolute;
  1291. align-self:center;
  1292. padding:2px 2px 2px 2px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u20309_text {
  1297. border-width:0px;
  1298. word-wrap:break-word;
  1299. text-transform:none;
  1300. visibility:hidden;
  1301. }
  1302. #u20310 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:0px;
  1308. height:0px;
  1309. }
  1310. #u20311_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:33px;
  1316. height:22px;
  1317. background:inherit;
  1318. background-color:rgba(255, 255, 255, 0);
  1319. border:none;
  1320. border-radius:0px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:16px;
  1328. color:#FFFFFF;
  1329. }
  1330. #u20311 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:39px;
  1334. top:319px;
  1335. width:33px;
  1336. height:22px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:16px;
  1342. color:#FFFFFF;
  1343. }
  1344. #u20311 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u20311_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u20312_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:14px;
  1362. height:14px;
  1363. }
  1364. #u20312 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:20px;
  1368. top:323px;
  1369. width:14px;
  1370. height:14px;
  1371. display:flex;
  1372. }
  1373. #u20312 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u20312_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u20313 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u20314_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:33px;
  1400. height:22px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:0px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:16px;
  1412. color:#FFFFFF;
  1413. }
  1414. #u20314 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:39px;
  1418. top:151px;
  1419. width:33px;
  1420. height:22px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:16px;
  1426. color:#FFFFFF;
  1427. }
  1428. #u20314 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u20314_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u20315_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:14px;
  1446. height:14px;
  1447. }
  1448. #u20315 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:155px;
  1453. width:14px;
  1454. height:14px;
  1455. display:flex;
  1456. }
  1457. #u20315 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u20315_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u20316 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u20317_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u20317 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:529px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u20317 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u20317_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u20318_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u20318 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:533px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u20318 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u20318_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u20319 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u20320_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u20320 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:193px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u20320 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u20320_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u20321_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u20321 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:197px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u20321 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u20321_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u20322 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u20323_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u20323 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:403px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u20323 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u20323_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u20324_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u20324 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:407px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u20324 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u20324_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u20325_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1259px;
  1728. height:1180px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1734. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1735. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1736. }
  1737. #u20325 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:330px;
  1741. top:50px;
  1742. width:1259px;
  1743. height:1180px;
  1744. display:flex;
  1745. }
  1746. #u20325 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u20325_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u20326_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:73px;
  1765. height:50px;
  1766. background:inherit;
  1767. background-color:rgba(255, 255, 255, 0);
  1768. border:none;
  1769. border-left:0px;
  1770. border-top:0px;
  1771. border-right:0px;
  1772. border-radius:0px;
  1773. border-bottom-right-radius:0px;
  1774. border-bottom-left-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1779. font-weight:500;
  1780. font-style:normal;
  1781. font-size:18px;
  1782. }
  1783. #u20326 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:350px;
  1787. top:50px;
  1788. width:73px;
  1789. height:50px;
  1790. display:flex;
  1791. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1792. font-weight:500;
  1793. font-style:normal;
  1794. font-size:18px;
  1795. }
  1796. #u20326 .text {
  1797. position:absolute;
  1798. align-self:center;
  1799. padding:0px 0px 0px 0px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u20326_text {
  1804. border-width:0px;
  1805. white-space:nowrap;
  1806. text-transform:none;
  1807. }
  1808. #u20327_div {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:59px;
  1814. height:30px;
  1815. background:inherit;
  1816. background-color:rgba(0, 153, 255, 1);
  1817. box-sizing:border-box;
  1818. border-width:1px;
  1819. border-style:solid;
  1820. border-color:rgba(0, 153, 255, 1);
  1821. border-radius:4px;
  1822. -moz-box-shadow:none;
  1823. -webkit-box-shadow:none;
  1824. box-shadow:none;
  1825. font-family:'Microsoft YaHei', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:14px;
  1829. color:#FFFFFF;
  1830. }
  1831. #u20327 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:1429px;
  1835. top:100px;
  1836. width:59px;
  1837. height:30px;
  1838. display:flex;
  1839. font-family:'Microsoft YaHei', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:14px;
  1843. color:#FFFFFF;
  1844. }
  1845. #u20327 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:5px 15px 5px 15px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u20327_text {
  1853. border-width:0px;
  1854. white-space:nowrap;
  1855. text-transform:none;
  1856. }
  1857. #u20328 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:0px;
  1863. height:0px;
  1864. }
  1865. #u20329_div {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:80px;
  1871. height:30px;
  1872. background:inherit;
  1873. background-color:rgba(255, 255, 255, 1);
  1874. box-sizing:border-box;
  1875. border-width:1px;
  1876. border-style:solid;
  1877. border-color:rgba(215, 215, 215, 1);
  1878. border-radius:2px;
  1879. -moz-box-shadow:none;
  1880. -webkit-box-shadow:none;
  1881. box-shadow:none;
  1882. font-size:11px;
  1883. }
  1884. #u20329 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:350px;
  1888. top:100px;
  1889. width:80px;
  1890. height:30px;
  1891. display:flex;
  1892. font-size:11px;
  1893. }
  1894. #u20329 .text {
  1895. position:absolute;
  1896. align-self:center;
  1897. padding:2px 2px 2px 2px;
  1898. box-sizing:border-box;
  1899. width:100%;
  1900. }
  1901. #u20329_text {
  1902. border-width:0px;
  1903. word-wrap:break-word;
  1904. text-transform:none;
  1905. visibility:hidden;
  1906. }
  1907. #u20330_input {
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:70px;
  1912. height:23px;
  1913. padding:2px 2px 2px 2px;
  1914. font-family:'ArialMT', 'Arial', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:11px;
  1918. letter-spacing:normal;
  1919. color:#AAAAAA;
  1920. vertical-align:none;
  1921. text-align:left;
  1922. text-transform:none;
  1923. background-color:transparent;
  1924. border-color:transparent;
  1925. }
  1926. #u20330_input.disabled {
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:70px;
  1931. height:23px;
  1932. padding:2px 2px 2px 2px;
  1933. font-family:'ArialMT', 'Arial', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:11px;
  1937. letter-spacing:normal;
  1938. color:#AAAAAA;
  1939. vertical-align:none;
  1940. text-align:left;
  1941. text-transform:none;
  1942. background-color:transparent;
  1943. border-color:transparent;
  1944. }
  1945. #u20330_div {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:70px;
  1951. height:23px;
  1952. background:inherit;
  1953. background-color:rgba(255, 255, 255, 1);
  1954. border:none;
  1955. border-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. font-size:11px;
  1960. color:#AAAAAA;
  1961. }
  1962. #u20330 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:354px;
  1966. top:102px;
  1967. width:70px;
  1968. height:23px;
  1969. display:flex;
  1970. font-size:11px;
  1971. color:#AAAAAA;
  1972. }
  1973. #u20330 .text {
  1974. position:absolute;
  1975. align-self:flex-start;
  1976. padding:2px 2px 2px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u20330_div.disabled {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:70px;
  1986. height:23px;
  1987. background:inherit;
  1988. background-color:rgba(240, 240, 240, 1);
  1989. border:none;
  1990. border-radius:0px;
  1991. -moz-box-shadow:none;
  1992. -webkit-box-shadow:none;
  1993. box-shadow:none;
  1994. font-size:11px;
  1995. color:#AAAAAA;
  1996. }
  1997. #u20330.disabled {
  1998. }
  1999. .u20330_input_option {
  2000. font-size:11px;
  2001. }
  2002. #u20331_div {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:55px;
  2008. height:30px;
  2009. background:inherit;
  2010. background-color:rgba(255, 255, 255, 1);
  2011. box-sizing:border-box;
  2012. border-width:1px;
  2013. border-style:solid;
  2014. border-color:rgba(170, 170, 170, 1);
  2015. border-radius:4px;
  2016. -moz-box-shadow:none;
  2017. -webkit-box-shadow:none;
  2018. box-shadow:none;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:12px;
  2023. color:#555555;
  2024. }
  2025. #u20331 {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:1498px;
  2029. top:100px;
  2030. width:55px;
  2031. height:30px;
  2032. display:flex;
  2033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2034. font-weight:400;
  2035. font-style:normal;
  2036. font-size:12px;
  2037. color:#555555;
  2038. }
  2039. #u20331 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:5px 15px 5px 15px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u20331_text {
  2047. border-width:0px;
  2048. white-space:nowrap;
  2049. text-transform:none;
  2050. }
  2051. #u20332 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:0px;
  2057. height:0px;
  2058. }
  2059. #u20333_div {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:240px;
  2065. height:30px;
  2066. background:inherit;
  2067. background-color:rgba(255, 255, 255, 1);
  2068. box-sizing:border-box;
  2069. border-width:1px;
  2070. border-style:solid;
  2071. border-color:rgba(215, 215, 215, 1);
  2072. border-radius:2px;
  2073. -moz-box-shadow:none;
  2074. -webkit-box-shadow:none;
  2075. box-shadow:none;
  2076. font-size:11px;
  2077. }
  2078. #u20333 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:429px;
  2082. top:100px;
  2083. width:240px;
  2084. height:30px;
  2085. display:flex;
  2086. font-size:11px;
  2087. }
  2088. #u20333 .text {
  2089. position:absolute;
  2090. align-self:center;
  2091. padding:2px 2px 2px 2px;
  2092. box-sizing:border-box;
  2093. width:100%;
  2094. }
  2095. #u20333_text {
  2096. border-width:0px;
  2097. word-wrap:break-word;
  2098. text-transform:none;
  2099. visibility:hidden;
  2100. }
  2101. #u20334_input {
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:100px;
  2106. height:23px;
  2107. padding:2px 2px 2px 2px;
  2108. font-family:'ArialMT', 'Arial', sans-serif;
  2109. font-weight:400;
  2110. font-style:normal;
  2111. font-size:11px;
  2112. letter-spacing:normal;
  2113. color:#AAAAAA;
  2114. vertical-align:none;
  2115. text-align:left;
  2116. text-transform:none;
  2117. background-color:transparent;
  2118. border-color:transparent;
  2119. }
  2120. #u20334_input.disabled {
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:100px;
  2125. height:23px;
  2126. padding:2px 2px 2px 2px;
  2127. font-family:'ArialMT', 'Arial', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:11px;
  2131. letter-spacing:normal;
  2132. color:#AAAAAA;
  2133. vertical-align:none;
  2134. text-align:left;
  2135. text-transform:none;
  2136. background-color:transparent;
  2137. border-color:transparent;
  2138. }
  2139. #u20334_div {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:100px;
  2145. height:23px;
  2146. background:inherit;
  2147. background-color:rgba(255, 255, 255, 1);
  2148. border:none;
  2149. border-radius:0px;
  2150. -moz-box-shadow:none;
  2151. -webkit-box-shadow:none;
  2152. box-shadow:none;
  2153. font-size:11px;
  2154. color:#AAAAAA;
  2155. }
  2156. #u20334 {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:436px;
  2160. top:102px;
  2161. width:100px;
  2162. height:23px;
  2163. display:flex;
  2164. font-size:11px;
  2165. color:#AAAAAA;
  2166. }
  2167. #u20334 .text {
  2168. position:absolute;
  2169. align-self:flex-start;
  2170. padding:2px 2px 2px 2px;
  2171. box-sizing:border-box;
  2172. width:100%;
  2173. }
  2174. #u20334_div.disabled {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:100px;
  2180. height:23px;
  2181. background:inherit;
  2182. background-color:rgba(240, 240, 240, 1);
  2183. border:none;
  2184. border-radius:0px;
  2185. -moz-box-shadow:none;
  2186. -webkit-box-shadow:none;
  2187. box-shadow:none;
  2188. font-size:11px;
  2189. color:#AAAAAA;
  2190. }
  2191. #u20334.disabled {
  2192. }
  2193. .u20334_input_option {
  2194. font-size:11px;
  2195. }
  2196. #u20335_input {
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:100px;
  2201. height:23px;
  2202. padding:2px 2px 2px 2px;
  2203. font-family:'ArialMT', 'Arial', sans-serif;
  2204. font-weight:400;
  2205. font-style:normal;
  2206. font-size:11px;
  2207. letter-spacing:normal;
  2208. color:#AAAAAA;
  2209. vertical-align:none;
  2210. text-align:left;
  2211. text-transform:none;
  2212. background-color:transparent;
  2213. border-color:transparent;
  2214. }
  2215. #u20335_input.disabled {
  2216. position:absolute;
  2217. left:0px;
  2218. top:0px;
  2219. width:100px;
  2220. height:23px;
  2221. padding:2px 2px 2px 2px;
  2222. font-family:'ArialMT', 'Arial', sans-serif;
  2223. font-weight:400;
  2224. font-style:normal;
  2225. font-size:11px;
  2226. letter-spacing:normal;
  2227. color:#AAAAAA;
  2228. vertical-align:none;
  2229. text-align:left;
  2230. text-transform:none;
  2231. background-color:transparent;
  2232. border-color:transparent;
  2233. }
  2234. #u20335_div {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:100px;
  2240. height:23px;
  2241. background:inherit;
  2242. background-color:rgba(255, 255, 255, 1);
  2243. border:none;
  2244. border-radius:0px;
  2245. -moz-box-shadow:none;
  2246. -webkit-box-shadow:none;
  2247. box-shadow:none;
  2248. font-size:11px;
  2249. color:#AAAAAA;
  2250. }
  2251. #u20335 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:557px;
  2255. top:102px;
  2256. width:100px;
  2257. height:23px;
  2258. display:flex;
  2259. font-size:11px;
  2260. color:#AAAAAA;
  2261. }
  2262. #u20335 .text {
  2263. position:absolute;
  2264. align-self:flex-start;
  2265. padding:2px 2px 2px 2px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u20335_div.disabled {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:100px;
  2275. height:23px;
  2276. background:inherit;
  2277. background-color:rgba(240, 240, 240, 1);
  2278. border:none;
  2279. border-radius:0px;
  2280. -moz-box-shadow:none;
  2281. -webkit-box-shadow:none;
  2282. box-shadow:none;
  2283. font-size:11px;
  2284. color:#AAAAAA;
  2285. }
  2286. #u20335.disabled {
  2287. }
  2288. .u20335_input_option {
  2289. font-size:11px;
  2290. }
  2291. #u20336 {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:350px;
  2295. top:300px;
  2296. width:1219px;
  2297. height:321px;
  2298. }
  2299. #u20337_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:80px;
  2305. height:38px;
  2306. }
  2307. #u20337 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:80px;
  2313. height:38px;
  2314. display:flex;
  2315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2316. font-weight:400;
  2317. font-style:normal;
  2318. font-size:12px;
  2319. color:#FFFFFF;
  2320. }
  2321. #u20337 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:2px 2px 2px 0px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u20337_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. }
  2333. #u20338_img {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:80px;
  2339. height:38px;
  2340. }
  2341. #u20338 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:80px;
  2345. top:0px;
  2346. width:80px;
  2347. height:38px;
  2348. display:flex;
  2349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:12px;
  2353. color:#FFFFFF;
  2354. }
  2355. #u20338 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u20338_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. }
  2367. #u20339_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:80px;
  2373. height:38px;
  2374. }
  2375. #u20339 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:160px;
  2379. top:0px;
  2380. width:80px;
  2381. height:38px;
  2382. display:flex;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:12px;
  2387. color:#FFFFFF;
  2388. }
  2389. #u20339 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:2px 2px 2px 0px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u20339_text {
  2397. border-width:0px;
  2398. word-wrap:break-word;
  2399. text-transform:none;
  2400. }
  2401. #u20340_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:80px;
  2407. height:38px;
  2408. }
  2409. #u20340 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:240px;
  2413. top:0px;
  2414. width:80px;
  2415. height:38px;
  2416. display:flex;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:12px;
  2421. color:#FFFFFF;
  2422. }
  2423. #u20340 .text {
  2424. position:absolute;
  2425. align-self:center;
  2426. padding:2px 2px 2px 0px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u20340_text {
  2431. border-width:0px;
  2432. word-wrap:break-word;
  2433. text-transform:none;
  2434. }
  2435. #u20341_img {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:103px;
  2441. height:38px;
  2442. }
  2443. #u20341 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:320px;
  2447. top:0px;
  2448. width:103px;
  2449. height:38px;
  2450. display:flex;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:12px;
  2455. color:#FFFFFF;
  2456. }
  2457. #u20341 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:2px 2px 2px 0px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u20341_text {
  2465. border-width:0px;
  2466. word-wrap:break-word;
  2467. text-transform:none;
  2468. }
  2469. #u20342_img {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:80px;
  2475. height:38px;
  2476. }
  2477. #u20342 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:423px;
  2481. top:0px;
  2482. width:80px;
  2483. height:38px;
  2484. display:flex;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:12px;
  2489. color:#FFFFFF;
  2490. }
  2491. #u20342 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:2px 2px 2px 0px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u20342_text {
  2499. border-width:0px;
  2500. word-wrap:break-word;
  2501. text-transform:none;
  2502. }
  2503. #u20343_img {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:80px;
  2509. height:38px;
  2510. }
  2511. #u20343 {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:503px;
  2515. top:0px;
  2516. width:80px;
  2517. height:38px;
  2518. display:flex;
  2519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:12px;
  2523. color:#FFFFFF;
  2524. }
  2525. #u20343 .text {
  2526. position:absolute;
  2527. align-self:center;
  2528. padding:2px 2px 2px 0px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u20343_text {
  2533. border-width:0px;
  2534. word-wrap:break-word;
  2535. text-transform:none;
  2536. }
  2537. #u20344_img {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:113px;
  2543. height:38px;
  2544. }
  2545. #u20344 {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:583px;
  2549. top:0px;
  2550. width:113px;
  2551. height:38px;
  2552. display:flex;
  2553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2554. font-weight:400;
  2555. font-style:normal;
  2556. font-size:12px;
  2557. color:#FFFFFF;
  2558. }
  2559. #u20344 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 0px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u20344_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. }
  2571. #u20345_img {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:104px;
  2577. height:38px;
  2578. }
  2579. #u20345 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:696px;
  2583. top:0px;
  2584. width:104px;
  2585. height:38px;
  2586. display:flex;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:12px;
  2591. color:#FFFFFF;
  2592. }
  2593. #u20345 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 2px 2px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u20345_text {
  2601. border-width:0px;
  2602. word-wrap:break-word;
  2603. text-transform:none;
  2604. }
  2605. #u20346_img {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:113px;
  2611. height:38px;
  2612. }
  2613. #u20346 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:800px;
  2617. top:0px;
  2618. width:113px;
  2619. height:38px;
  2620. display:flex;
  2621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2622. font-weight:400;
  2623. font-style:normal;
  2624. font-size:12px;
  2625. color:#FFFFFF;
  2626. }
  2627. #u20346 .text {
  2628. position:absolute;
  2629. align-self:center;
  2630. padding:2px 2px 2px 0px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u20346_text {
  2635. border-width:0px;
  2636. word-wrap:break-word;
  2637. text-transform:none;
  2638. }
  2639. #u20347_img {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:113px;
  2645. height:38px;
  2646. }
  2647. #u20347 {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:913px;
  2651. top:0px;
  2652. width:113px;
  2653. height:38px;
  2654. display:flex;
  2655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2656. font-weight:400;
  2657. font-style:normal;
  2658. font-size:12px;
  2659. color:#FFFFFF;
  2660. }
  2661. #u20347 .text {
  2662. position:absolute;
  2663. align-self:center;
  2664. padding:2px 2px 2px 0px;
  2665. box-sizing:border-box;
  2666. width:100%;
  2667. }
  2668. #u20347_text {
  2669. border-width:0px;
  2670. word-wrap:break-word;
  2671. text-transform:none;
  2672. }
  2673. #u20348_img {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:0px;
  2677. top:0px;
  2678. width:113px;
  2679. height:38px;
  2680. }
  2681. #u20348 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:1026px;
  2685. top:0px;
  2686. width:113px;
  2687. height:38px;
  2688. display:flex;
  2689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2690. font-weight:400;
  2691. font-style:normal;
  2692. font-size:12px;
  2693. color:#FFFFFF;
  2694. }
  2695. #u20348 .text {
  2696. position:absolute;
  2697. align-self:center;
  2698. padding:2px 2px 2px 0px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u20348_text {
  2703. border-width:0px;
  2704. word-wrap:break-word;
  2705. text-transform:none;
  2706. }
  2707. #u20349_img {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:80px;
  2713. height:38px;
  2714. }
  2715. #u20349 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:1139px;
  2719. top:0px;
  2720. width:80px;
  2721. height:38px;
  2722. display:flex;
  2723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2724. font-weight:400;
  2725. font-style:normal;
  2726. font-size:12px;
  2727. color:#FFFFFF;
  2728. }
  2729. #u20349 .text {
  2730. position:absolute;
  2731. align-self:center;
  2732. padding:2px 2px 2px 0px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u20349_text {
  2737. border-width:0px;
  2738. word-wrap:break-word;
  2739. text-transform:none;
  2740. }
  2741. #u20350_img {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:80px;
  2747. height:38px;
  2748. }
  2749. #u20350 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:38px;
  2754. width:80px;
  2755. height:38px;
  2756. display:flex;
  2757. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:12px;
  2761. }
  2762. #u20350 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:2px 2px 2px 0px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u20350_text {
  2770. border-width:0px;
  2771. word-wrap:break-word;
  2772. text-transform:none;
  2773. visibility:hidden;
  2774. }
  2775. #u20351_img {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:80px;
  2781. height:38px;
  2782. }
  2783. #u20351 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:80px;
  2787. top:38px;
  2788. width:80px;
  2789. height:38px;
  2790. display:flex;
  2791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2792. font-weight:400;
  2793. font-style:normal;
  2794. font-size:12px;
  2795. }
  2796. #u20351 .text {
  2797. position:absolute;
  2798. align-self:center;
  2799. padding:2px 2px 2px 0px;
  2800. box-sizing:border-box;
  2801. width:100%;
  2802. }
  2803. #u20351_text {
  2804. border-width:0px;
  2805. word-wrap:break-word;
  2806. text-transform:none;
  2807. }
  2808. #u20352_img {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:80px;
  2814. height:38px;
  2815. }
  2816. #u20352 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:160px;
  2820. top:38px;
  2821. width:80px;
  2822. height:38px;
  2823. display:flex;
  2824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2825. font-weight:400;
  2826. font-style:normal;
  2827. font-size:12px;
  2828. }
  2829. #u20352 .text {
  2830. position:absolute;
  2831. align-self:center;
  2832. padding:2px 2px 2px 0px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u20352_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. }
  2841. #u20353_img {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:80px;
  2847. height:38px;
  2848. }
  2849. #u20353 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:240px;
  2853. top:38px;
  2854. width:80px;
  2855. height:38px;
  2856. display:flex;
  2857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. font-size:12px;
  2861. }
  2862. #u20353 .text {
  2863. position:absolute;
  2864. align-self:center;
  2865. padding:2px 2px 2px 0px;
  2866. box-sizing:border-box;
  2867. width:100%;
  2868. }
  2869. #u20353_text {
  2870. border-width:0px;
  2871. word-wrap:break-word;
  2872. text-transform:none;
  2873. }
  2874. #u20354_img {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:0px;
  2878. top:0px;
  2879. width:103px;
  2880. height:38px;
  2881. }
  2882. #u20354 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:320px;
  2886. top:38px;
  2887. width:103px;
  2888. height:38px;
  2889. display:flex;
  2890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2891. font-weight:400;
  2892. font-style:normal;
  2893. font-size:12px;
  2894. }
  2895. #u20354 .text {
  2896. position:absolute;
  2897. align-self:center;
  2898. padding:2px 2px 2px 0px;
  2899. box-sizing:border-box;
  2900. width:100%;
  2901. }
  2902. #u20354_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. }
  2907. #u20355_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:80px;
  2913. height:38px;
  2914. }
  2915. #u20355 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:423px;
  2919. top:38px;
  2920. width:80px;
  2921. height:38px;
  2922. display:flex;
  2923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2924. font-weight:400;
  2925. font-style:normal;
  2926. font-size:12px;
  2927. }
  2928. #u20355 .text {
  2929. position:absolute;
  2930. align-self:center;
  2931. padding:2px 2px 2px 0px;
  2932. box-sizing:border-box;
  2933. width:100%;
  2934. }
  2935. #u20355_text {
  2936. border-width:0px;
  2937. word-wrap:break-word;
  2938. text-transform:none;
  2939. }
  2940. #u20356_img {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:80px;
  2946. height:38px;
  2947. }
  2948. #u20356 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:503px;
  2952. top:38px;
  2953. width:80px;
  2954. height:38px;
  2955. display:flex;
  2956. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2957. font-weight:400;
  2958. font-style:normal;
  2959. font-size:12px;
  2960. }
  2961. #u20356 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 0px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u20356_text {
  2969. border-width:0px;
  2970. word-wrap:break-word;
  2971. text-transform:none;
  2972. visibility:hidden;
  2973. }
  2974. #u20357_img {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:113px;
  2980. height:38px;
  2981. }
  2982. #u20357 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:583px;
  2986. top:38px;
  2987. width:113px;
  2988. height:38px;
  2989. display:flex;
  2990. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. }
  2995. #u20357 .text {
  2996. position:absolute;
  2997. align-self:center;
  2998. padding:2px 2px 2px 0px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u20357_text {
  3003. border-width:0px;
  3004. word-wrap:break-word;
  3005. text-transform:none;
  3006. visibility:hidden;
  3007. }
  3008. #u20358_img {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:104px;
  3014. height:38px;
  3015. }
  3016. #u20358 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:696px;
  3020. top:38px;
  3021. width:104px;
  3022. height:38px;
  3023. display:flex;
  3024. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3025. font-weight:400;
  3026. font-style:normal;
  3027. font-size:12px;
  3028. }
  3029. #u20358 .text {
  3030. position:absolute;
  3031. align-self:center;
  3032. padding:2px 2px 2px 0px;
  3033. box-sizing:border-box;
  3034. width:100%;
  3035. }
  3036. #u20358_text {
  3037. border-width:0px;
  3038. word-wrap:break-word;
  3039. text-transform:none;
  3040. visibility:hidden;
  3041. }
  3042. #u20359_img {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:113px;
  3048. height:38px;
  3049. }
  3050. #u20359 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:800px;
  3054. top:38px;
  3055. width:113px;
  3056. height:38px;
  3057. display:flex;
  3058. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3059. font-weight:400;
  3060. font-style:normal;
  3061. font-size:12px;
  3062. }
  3063. #u20359 .text {
  3064. position:absolute;
  3065. align-self:center;
  3066. padding:2px 2px 2px 0px;
  3067. box-sizing:border-box;
  3068. width:100%;
  3069. }
  3070. #u20359_text {
  3071. border-width:0px;
  3072. word-wrap:break-word;
  3073. text-transform:none;
  3074. visibility:hidden;
  3075. }
  3076. #u20360_img {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:113px;
  3082. height:38px;
  3083. }
  3084. #u20360 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:913px;
  3088. top:38px;
  3089. width:113px;
  3090. height:38px;
  3091. display:flex;
  3092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:12px;
  3096. }
  3097. #u20360 .text {
  3098. position:absolute;
  3099. align-self:center;
  3100. padding:2px 2px 2px 0px;
  3101. box-sizing:border-box;
  3102. width:100%;
  3103. }
  3104. #u20360_text {
  3105. border-width:0px;
  3106. word-wrap:break-word;
  3107. text-transform:none;
  3108. visibility:hidden;
  3109. }
  3110. #u20361_img {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:113px;
  3116. height:38px;
  3117. }
  3118. #u20361 {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:1026px;
  3122. top:38px;
  3123. width:113px;
  3124. height:38px;
  3125. display:flex;
  3126. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3127. font-weight:400;
  3128. font-style:normal;
  3129. font-size:12px;
  3130. }
  3131. #u20361 .text {
  3132. position:absolute;
  3133. align-self:center;
  3134. padding:2px 2px 2px 0px;
  3135. box-sizing:border-box;
  3136. width:100%;
  3137. }
  3138. #u20361_text {
  3139. border-width:0px;
  3140. word-wrap:break-word;
  3141. text-transform:none;
  3142. visibility:hidden;
  3143. }
  3144. #u20362_img {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:80px;
  3150. height:38px;
  3151. }
  3152. #u20362 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:1139px;
  3156. top:38px;
  3157. width:80px;
  3158. height:38px;
  3159. display:flex;
  3160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3161. font-weight:400;
  3162. font-style:normal;
  3163. font-size:12px;
  3164. color:#1890FF;
  3165. }
  3166. #u20362 .text {
  3167. position:absolute;
  3168. align-self:center;
  3169. padding:2px 2px 2px 0px;
  3170. box-sizing:border-box;
  3171. width:100%;
  3172. }
  3173. #u20362_text {
  3174. border-width:0px;
  3175. word-wrap:break-word;
  3176. text-transform:none;
  3177. }
  3178. #u20363_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:80px;
  3184. height:38px;
  3185. }
  3186. #u20363 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:0px;
  3190. top:76px;
  3191. width:80px;
  3192. height:38px;
  3193. display:flex;
  3194. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. color:#606266;
  3199. }
  3200. #u20363 .text {
  3201. position:absolute;
  3202. align-self:center;
  3203. padding:2px 2px 2px 0px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u20363_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. visibility:hidden;
  3212. }
  3213. #u20364_img {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:80px;
  3219. height:38px;
  3220. }
  3221. #u20364 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:80px;
  3225. top:76px;
  3226. width:80px;
  3227. height:38px;
  3228. display:flex;
  3229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:12px;
  3233. color:#606266;
  3234. }
  3235. #u20364 .text {
  3236. position:absolute;
  3237. align-self:center;
  3238. padding:2px 2px 2px 0px;
  3239. box-sizing:border-box;
  3240. width:100%;
  3241. }
  3242. #u20364_text {
  3243. border-width:0px;
  3244. word-wrap:break-word;
  3245. text-transform:none;
  3246. visibility:hidden;
  3247. }
  3248. #u20365_img {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:0px;
  3252. top:0px;
  3253. width:80px;
  3254. height:38px;
  3255. }
  3256. #u20365 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:160px;
  3260. top:76px;
  3261. width:80px;
  3262. height:38px;
  3263. display:flex;
  3264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3265. font-weight:400;
  3266. font-style:normal;
  3267. font-size:12px;
  3268. color:#606266;
  3269. }
  3270. #u20365 .text {
  3271. position:absolute;
  3272. align-self:center;
  3273. padding:2px 2px 2px 0px;
  3274. box-sizing:border-box;
  3275. width:100%;
  3276. }
  3277. #u20365_text {
  3278. border-width:0px;
  3279. word-wrap:break-word;
  3280. text-transform:none;
  3281. visibility:hidden;
  3282. }
  3283. #u20366_img {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:0px;
  3287. top:0px;
  3288. width:80px;
  3289. height:38px;
  3290. }
  3291. #u20366 {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:240px;
  3295. top:76px;
  3296. width:80px;
  3297. height:38px;
  3298. display:flex;
  3299. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:12px;
  3303. color:#606266;
  3304. }
  3305. #u20366 .text {
  3306. position:absolute;
  3307. align-self:center;
  3308. padding:2px 2px 2px 0px;
  3309. box-sizing:border-box;
  3310. width:100%;
  3311. }
  3312. #u20366_text {
  3313. border-width:0px;
  3314. word-wrap:break-word;
  3315. text-transform:none;
  3316. visibility:hidden;
  3317. }
  3318. #u20367_img {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:103px;
  3324. height:38px;
  3325. }
  3326. #u20367 {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:320px;
  3330. top:76px;
  3331. width:103px;
  3332. height:38px;
  3333. display:flex;
  3334. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:12px;
  3338. color:#606266;
  3339. }
  3340. #u20367 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 0px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u20367_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. visibility:hidden;
  3352. }
  3353. #u20368_img {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:80px;
  3359. height:38px;
  3360. }
  3361. #u20368 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:423px;
  3365. top:76px;
  3366. width:80px;
  3367. height:38px;
  3368. display:flex;
  3369. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:12px;
  3373. color:#606266;
  3374. }
  3375. #u20368 .text {
  3376. position:absolute;
  3377. align-self:center;
  3378. padding:2px 2px 2px 0px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u20368_text {
  3383. border-width:0px;
  3384. word-wrap:break-word;
  3385. text-transform:none;
  3386. visibility:hidden;
  3387. }
  3388. #u20369_img {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:80px;
  3394. height:38px;
  3395. }
  3396. #u20369 {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:503px;
  3400. top:76px;
  3401. width:80px;
  3402. height:38px;
  3403. display:flex;
  3404. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:12px;
  3408. color:#606266;
  3409. }
  3410. #u20369 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 2px 2px 0px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u20369_text {
  3418. border-width:0px;
  3419. word-wrap:break-word;
  3420. text-transform:none;
  3421. visibility:hidden;
  3422. }
  3423. #u20370_img {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:113px;
  3429. height:38px;
  3430. }
  3431. #u20370 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:583px;
  3435. top:76px;
  3436. width:113px;
  3437. height:38px;
  3438. display:flex;
  3439. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:12px;
  3443. color:#606266;
  3444. }
  3445. #u20370 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 0px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u20370_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. visibility:hidden;
  3457. }
  3458. #u20371_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:104px;
  3464. height:38px;
  3465. }
  3466. #u20371 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:696px;
  3470. top:76px;
  3471. width:104px;
  3472. height:38px;
  3473. display:flex;
  3474. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:12px;
  3478. color:#606266;
  3479. }
  3480. #u20371 .text {
  3481. position:absolute;
  3482. align-self:center;
  3483. padding:2px 2px 2px 0px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u20371_text {
  3488. border-width:0px;
  3489. word-wrap:break-word;
  3490. text-transform:none;
  3491. visibility:hidden;
  3492. }
  3493. #u20372_img {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:113px;
  3499. height:38px;
  3500. }
  3501. #u20372 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:800px;
  3505. top:76px;
  3506. width:113px;
  3507. height:38px;
  3508. display:flex;
  3509. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3510. font-weight:400;
  3511. font-style:normal;
  3512. font-size:12px;
  3513. color:#606266;
  3514. }
  3515. #u20372 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:2px 2px 2px 0px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u20372_text {
  3523. border-width:0px;
  3524. word-wrap:break-word;
  3525. text-transform:none;
  3526. visibility:hidden;
  3527. }
  3528. #u20373_img {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:113px;
  3534. height:38px;
  3535. }
  3536. #u20373 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:913px;
  3540. top:76px;
  3541. width:113px;
  3542. height:38px;
  3543. display:flex;
  3544. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. font-size:12px;
  3548. color:#606266;
  3549. }
  3550. #u20373 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 0px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u20373_text {
  3558. border-width:0px;
  3559. word-wrap:break-word;
  3560. text-transform:none;
  3561. visibility:hidden;
  3562. }
  3563. #u20374_img {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:113px;
  3569. height:38px;
  3570. }
  3571. #u20374 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:1026px;
  3575. top:76px;
  3576. width:113px;
  3577. height:38px;
  3578. display:flex;
  3579. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:12px;
  3583. color:#606266;
  3584. }
  3585. #u20374 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 0px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u20374_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u20375_img {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:80px;
  3604. height:38px;
  3605. }
  3606. #u20375 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:1139px;
  3610. top:76px;
  3611. width:80px;
  3612. height:38px;
  3613. display:flex;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:12px;
  3618. color:#1890FF;
  3619. }
  3620. #u20375 .text {
  3621. position:absolute;
  3622. align-self:center;
  3623. padding:2px 2px 2px 0px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u20375_text {
  3628. border-width:0px;
  3629. word-wrap:break-word;
  3630. text-transform:none;
  3631. }
  3632. #u20376_img {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:80px;
  3638. height:38px;
  3639. }
  3640. #u20376 {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:114px;
  3645. width:80px;
  3646. height:38px;
  3647. display:flex;
  3648. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3649. font-weight:400;
  3650. font-style:normal;
  3651. font-size:12px;
  3652. color:#606266;
  3653. }
  3654. #u20376 .text {
  3655. position:absolute;
  3656. align-self:center;
  3657. padding:2px 2px 2px 0px;
  3658. box-sizing:border-box;
  3659. width:100%;
  3660. }
  3661. #u20376_text {
  3662. border-width:0px;
  3663. word-wrap:break-word;
  3664. text-transform:none;
  3665. visibility:hidden;
  3666. }
  3667. #u20377_img {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:0px;
  3671. top:0px;
  3672. width:80px;
  3673. height:38px;
  3674. }
  3675. #u20377 {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:80px;
  3679. top:114px;
  3680. width:80px;
  3681. height:38px;
  3682. display:flex;
  3683. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3684. font-weight:400;
  3685. font-style:normal;
  3686. font-size:12px;
  3687. color:#606266;
  3688. }
  3689. #u20377 .text {
  3690. position:absolute;
  3691. align-self:center;
  3692. padding:2px 2px 2px 0px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u20377_text {
  3697. border-width:0px;
  3698. word-wrap:break-word;
  3699. text-transform:none;
  3700. visibility:hidden;
  3701. }
  3702. #u20378_img {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:80px;
  3708. height:38px;
  3709. }
  3710. #u20378 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:160px;
  3714. top:114px;
  3715. width:80px;
  3716. height:38px;
  3717. display:flex;
  3718. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3719. font-weight:400;
  3720. font-style:normal;
  3721. font-size:12px;
  3722. color:#606266;
  3723. }
  3724. #u20378 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 0px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u20378_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. visibility:hidden;
  3736. }
  3737. #u20379_img {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:80px;
  3743. height:38px;
  3744. }
  3745. #u20379 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:240px;
  3749. top:114px;
  3750. width:80px;
  3751. height:38px;
  3752. display:flex;
  3753. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:12px;
  3757. color:#606266;
  3758. }
  3759. #u20379 .text {
  3760. position:absolute;
  3761. align-self:center;
  3762. padding:2px 2px 2px 0px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u20379_text {
  3767. border-width:0px;
  3768. word-wrap:break-word;
  3769. text-transform:none;
  3770. visibility:hidden;
  3771. }
  3772. #u20380_img {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:0px;
  3776. top:0px;
  3777. width:103px;
  3778. height:38px;
  3779. }
  3780. #u20380 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:320px;
  3784. top:114px;
  3785. width:103px;
  3786. height:38px;
  3787. display:flex;
  3788. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3789. font-weight:400;
  3790. font-style:normal;
  3791. font-size:12px;
  3792. color:#606266;
  3793. }
  3794. #u20380 .text {
  3795. position:absolute;
  3796. align-self:center;
  3797. padding:2px 2px 2px 0px;
  3798. box-sizing:border-box;
  3799. width:100%;
  3800. }
  3801. #u20380_text {
  3802. border-width:0px;
  3803. word-wrap:break-word;
  3804. text-transform:none;
  3805. visibility:hidden;
  3806. }
  3807. #u20381_img {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:0px;
  3811. top:0px;
  3812. width:80px;
  3813. height:38px;
  3814. }
  3815. #u20381 {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:423px;
  3819. top:114px;
  3820. width:80px;
  3821. height:38px;
  3822. display:flex;
  3823. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:12px;
  3827. color:#606266;
  3828. }
  3829. #u20381 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 0px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u20381_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. visibility:hidden;
  3841. }
  3842. #u20382_img {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:80px;
  3848. height:38px;
  3849. }
  3850. #u20382 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:503px;
  3854. top:114px;
  3855. width:80px;
  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. color:#606266;
  3863. }
  3864. #u20382 .text {
  3865. position:absolute;
  3866. align-self:center;
  3867. padding:2px 2px 2px 0px;
  3868. box-sizing:border-box;
  3869. width:100%;
  3870. }
  3871. #u20382_text {
  3872. border-width:0px;
  3873. word-wrap:break-word;
  3874. text-transform:none;
  3875. visibility:hidden;
  3876. }
  3877. #u20383_img {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:113px;
  3883. height:38px;
  3884. }
  3885. #u20383 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:583px;
  3889. top:114px;
  3890. width:113px;
  3891. height:38px;
  3892. display:flex;
  3893. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3894. font-weight:400;
  3895. font-style:normal;
  3896. font-size:12px;
  3897. color:#606266;
  3898. }
  3899. #u20383 .text {
  3900. position:absolute;
  3901. align-self:center;
  3902. padding:2px 2px 2px 0px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u20383_text {
  3907. border-width:0px;
  3908. word-wrap:break-word;
  3909. text-transform:none;
  3910. visibility:hidden;
  3911. }
  3912. #u20384_img {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:0px;
  3917. width:104px;
  3918. height:38px;
  3919. }
  3920. #u20384 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:696px;
  3924. top:114px;
  3925. width:104px;
  3926. height:38px;
  3927. display:flex;
  3928. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3929. font-weight:400;
  3930. font-style:normal;
  3931. font-size:12px;
  3932. color:#606266;
  3933. }
  3934. #u20384 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:2px 2px 2px 0px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u20384_text {
  3942. border-width:0px;
  3943. word-wrap:break-word;
  3944. text-transform:none;
  3945. visibility:hidden;
  3946. }
  3947. #u20385_img {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:113px;
  3953. height:38px;
  3954. }
  3955. #u20385 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:800px;
  3959. top:114px;
  3960. width:113px;
  3961. height:38px;
  3962. display:flex;
  3963. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:12px;
  3967. color:#606266;
  3968. }
  3969. #u20385 .text {
  3970. position:absolute;
  3971. align-self:center;
  3972. padding:2px 2px 2px 0px;
  3973. box-sizing:border-box;
  3974. width:100%;
  3975. }
  3976. #u20385_text {
  3977. border-width:0px;
  3978. word-wrap:break-word;
  3979. text-transform:none;
  3980. visibility:hidden;
  3981. }
  3982. #u20386_img {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:113px;
  3988. height:38px;
  3989. }
  3990. #u20386 {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:913px;
  3994. top:114px;
  3995. width:113px;
  3996. height:38px;
  3997. display:flex;
  3998. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. font-size:12px;
  4002. color:#606266;
  4003. }
  4004. #u20386 .text {
  4005. position:absolute;
  4006. align-self:center;
  4007. padding:2px 2px 2px 0px;
  4008. box-sizing:border-box;
  4009. width:100%;
  4010. }
  4011. #u20386_text {
  4012. border-width:0px;
  4013. word-wrap:break-word;
  4014. text-transform:none;
  4015. visibility:hidden;
  4016. }
  4017. #u20387_img {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:0px;
  4021. top:0px;
  4022. width:113px;
  4023. height:38px;
  4024. }
  4025. #u20387 {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:1026px;
  4029. top:114px;
  4030. width:113px;
  4031. height:38px;
  4032. display:flex;
  4033. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4034. font-weight:400;
  4035. font-style:normal;
  4036. font-size:12px;
  4037. color:#606266;
  4038. }
  4039. #u20387 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:2px 2px 2px 0px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u20387_text {
  4047. border-width:0px;
  4048. word-wrap:break-word;
  4049. text-transform:none;
  4050. visibility:hidden;
  4051. }
  4052. #u20388_img {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:80px;
  4058. height:38px;
  4059. }
  4060. #u20388 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:1139px;
  4064. top:114px;
  4065. width:80px;
  4066. height:38px;
  4067. display:flex;
  4068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:12px;
  4072. color:#02A7F0;
  4073. }
  4074. #u20388 .text {
  4075. position:absolute;
  4076. align-self:center;
  4077. padding:2px 2px 2px 0px;
  4078. box-sizing:border-box;
  4079. width:100%;
  4080. }
  4081. #u20388_text {
  4082. border-width:0px;
  4083. word-wrap:break-word;
  4084. text-transform:none;
  4085. visibility:hidden;
  4086. }
  4087. #u20389_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:80px;
  4093. height:38px;
  4094. }
  4095. #u20389 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:152px;
  4100. width:80px;
  4101. height:38px;
  4102. display:flex;
  4103. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4104. font-weight:400;
  4105. font-style:normal;
  4106. font-size:12px;
  4107. color:#606266;
  4108. }
  4109. #u20389 .text {
  4110. position:absolute;
  4111. align-self:center;
  4112. padding:2px 2px 2px 0px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u20389_text {
  4117. border-width:0px;
  4118. word-wrap:break-word;
  4119. text-transform:none;
  4120. visibility:hidden;
  4121. }
  4122. #u20390_img {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:80px;
  4128. height:38px;
  4129. }
  4130. #u20390 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:80px;
  4134. top:152px;
  4135. width:80px;
  4136. height:38px;
  4137. display:flex;
  4138. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4139. font-weight:400;
  4140. font-style:normal;
  4141. font-size:12px;
  4142. color:#606266;
  4143. }
  4144. #u20390 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 0px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u20390_text {
  4152. border-width:0px;
  4153. word-wrap:break-word;
  4154. text-transform:none;
  4155. visibility:hidden;
  4156. }
  4157. #u20391_img {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:80px;
  4163. height:38px;
  4164. }
  4165. #u20391 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:160px;
  4169. top:152px;
  4170. width:80px;
  4171. height:38px;
  4172. display:flex;
  4173. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4174. font-weight:400;
  4175. font-style:normal;
  4176. font-size:12px;
  4177. color:#606266;
  4178. }
  4179. #u20391 .text {
  4180. position:absolute;
  4181. align-self:center;
  4182. padding:2px 2px 2px 0px;
  4183. box-sizing:border-box;
  4184. width:100%;
  4185. }
  4186. #u20391_text {
  4187. border-width:0px;
  4188. word-wrap:break-word;
  4189. text-transform:none;
  4190. visibility:hidden;
  4191. }
  4192. #u20392_img {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:80px;
  4198. height:38px;
  4199. }
  4200. #u20392 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:240px;
  4204. top:152px;
  4205. width:80px;
  4206. height:38px;
  4207. display:flex;
  4208. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:12px;
  4212. color:#606266;
  4213. }
  4214. #u20392 .text {
  4215. position:absolute;
  4216. align-self:center;
  4217. padding:2px 2px 2px 0px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u20392_text {
  4222. border-width:0px;
  4223. word-wrap:break-word;
  4224. text-transform:none;
  4225. visibility:hidden;
  4226. }
  4227. #u20393_img {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:103px;
  4233. height:38px;
  4234. }
  4235. #u20393 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:320px;
  4239. top:152px;
  4240. width:103px;
  4241. height:38px;
  4242. display:flex;
  4243. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4244. font-weight:400;
  4245. font-style:normal;
  4246. font-size:12px;
  4247. color:#606266;
  4248. }
  4249. #u20393 .text {
  4250. position:absolute;
  4251. align-self:center;
  4252. padding:2px 2px 2px 0px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u20393_text {
  4257. border-width:0px;
  4258. word-wrap:break-word;
  4259. text-transform:none;
  4260. visibility:hidden;
  4261. }
  4262. #u20394_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:80px;
  4268. height:38px;
  4269. }
  4270. #u20394 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:423px;
  4274. top:152px;
  4275. width:80px;
  4276. height:38px;
  4277. display:flex;
  4278. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4279. font-weight:400;
  4280. font-style:normal;
  4281. font-size:12px;
  4282. color:#606266;
  4283. }
  4284. #u20394 .text {
  4285. position:absolute;
  4286. align-self:center;
  4287. padding:2px 2px 2px 0px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u20394_text {
  4292. border-width:0px;
  4293. word-wrap:break-word;
  4294. text-transform:none;
  4295. visibility:hidden;
  4296. }
  4297. #u20395_img {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:80px;
  4303. height:38px;
  4304. }
  4305. #u20395 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:503px;
  4309. top:152px;
  4310. width:80px;
  4311. height:38px;
  4312. display:flex;
  4313. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:12px;
  4317. color:#606266;
  4318. }
  4319. #u20395 .text {
  4320. position:absolute;
  4321. align-self:center;
  4322. padding:2px 2px 2px 0px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u20395_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. visibility:hidden;
  4331. }
  4332. #u20396_img {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:113px;
  4338. height:38px;
  4339. }
  4340. #u20396 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:583px;
  4344. top:152px;
  4345. width:113px;
  4346. height:38px;
  4347. display:flex;
  4348. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4349. font-weight:400;
  4350. font-style:normal;
  4351. font-size:12px;
  4352. color:#606266;
  4353. }
  4354. #u20396 .text {
  4355. position:absolute;
  4356. align-self:center;
  4357. padding:2px 2px 2px 0px;
  4358. box-sizing:border-box;
  4359. width:100%;
  4360. }
  4361. #u20396_text {
  4362. border-width:0px;
  4363. word-wrap:break-word;
  4364. text-transform:none;
  4365. visibility:hidden;
  4366. }
  4367. #u20397_img {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:104px;
  4373. height:38px;
  4374. }
  4375. #u20397 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:696px;
  4379. top:152px;
  4380. width:104px;
  4381. height:38px;
  4382. display:flex;
  4383. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4384. font-weight:400;
  4385. font-style:normal;
  4386. font-size:12px;
  4387. color:#606266;
  4388. }
  4389. #u20397 .text {
  4390. position:absolute;
  4391. align-self:center;
  4392. padding:2px 2px 2px 0px;
  4393. box-sizing:border-box;
  4394. width:100%;
  4395. }
  4396. #u20397_text {
  4397. border-width:0px;
  4398. word-wrap:break-word;
  4399. text-transform:none;
  4400. visibility:hidden;
  4401. }
  4402. #u20398_img {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:0px;
  4406. top:0px;
  4407. width:113px;
  4408. height:38px;
  4409. }
  4410. #u20398 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:800px;
  4414. top:152px;
  4415. width:113px;
  4416. height:38px;
  4417. display:flex;
  4418. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4419. font-weight:400;
  4420. font-style:normal;
  4421. font-size:12px;
  4422. color:#606266;
  4423. }
  4424. #u20398 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 2px 2px 0px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u20398_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. visibility:hidden;
  4436. }
  4437. #u20399_img {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:113px;
  4443. height:38px;
  4444. }
  4445. #u20399 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:913px;
  4449. top:152px;
  4450. width:113px;
  4451. height:38px;
  4452. display:flex;
  4453. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:12px;
  4457. color:#606266;
  4458. }
  4459. #u20399 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:2px 2px 2px 0px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u20399_text {
  4467. border-width:0px;
  4468. word-wrap:break-word;
  4469. text-transform:none;
  4470. visibility:hidden;
  4471. }
  4472. #u20400_img {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:113px;
  4478. height:38px;
  4479. }
  4480. #u20400 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:1026px;
  4484. top:152px;
  4485. width:113px;
  4486. height:38px;
  4487. display:flex;
  4488. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. font-size:12px;
  4492. color:#606266;
  4493. }
  4494. #u20400 .text {
  4495. position:absolute;
  4496. align-self:center;
  4497. padding:2px 2px 2px 0px;
  4498. box-sizing:border-box;
  4499. width:100%;
  4500. }
  4501. #u20400_text {
  4502. border-width:0px;
  4503. word-wrap:break-word;
  4504. text-transform:none;
  4505. visibility:hidden;
  4506. }
  4507. #u20401_img {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:80px;
  4513. height:38px;
  4514. }
  4515. #u20401 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:1139px;
  4519. top:152px;
  4520. width:80px;
  4521. height:38px;
  4522. display:flex;
  4523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. font-size:12px;
  4527. color:#02A7F0;
  4528. }
  4529. #u20401 .text {
  4530. position:absolute;
  4531. align-self:center;
  4532. padding:2px 2px 2px 0px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u20401_text {
  4537. border-width:0px;
  4538. word-wrap:break-word;
  4539. text-transform:none;
  4540. visibility:hidden;
  4541. }
  4542. #u20402_img {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:80px;
  4548. height:35px;
  4549. }
  4550. #u20402 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:190px;
  4555. width:80px;
  4556. height:35px;
  4557. display:flex;
  4558. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:12px;
  4562. color:#606266;
  4563. }
  4564. #u20402 .text {
  4565. position:absolute;
  4566. align-self:center;
  4567. padding:2px 2px 2px 0px;
  4568. box-sizing:border-box;
  4569. width:100%;
  4570. }
  4571. #u20402_text {
  4572. border-width:0px;
  4573. word-wrap:break-word;
  4574. text-transform:none;
  4575. visibility:hidden;
  4576. }
  4577. #u20403_img {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:80px;
  4583. height:35px;
  4584. }
  4585. #u20403 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:80px;
  4589. top:190px;
  4590. width:80px;
  4591. height:35px;
  4592. display:flex;
  4593. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4594. font-weight:400;
  4595. font-style:normal;
  4596. font-size:12px;
  4597. color:#606266;
  4598. }
  4599. #u20403 .text {
  4600. position:absolute;
  4601. align-self:center;
  4602. padding:2px 2px 2px 0px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u20403_text {
  4607. border-width:0px;
  4608. word-wrap:break-word;
  4609. text-transform:none;
  4610. visibility:hidden;
  4611. }
  4612. #u20404_img {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:0px;
  4616. top:0px;
  4617. width:80px;
  4618. height:35px;
  4619. }
  4620. #u20404 {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:160px;
  4624. top:190px;
  4625. width:80px;
  4626. height:35px;
  4627. display:flex;
  4628. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4629. font-weight:400;
  4630. font-style:normal;
  4631. font-size:12px;
  4632. color:#606266;
  4633. }
  4634. #u20404 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 0px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u20404_text {
  4642. border-width:0px;
  4643. word-wrap:break-word;
  4644. text-transform:none;
  4645. visibility:hidden;
  4646. }
  4647. #u20405_img {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:0px;
  4652. width:80px;
  4653. height:35px;
  4654. }
  4655. #u20405 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:240px;
  4659. top:190px;
  4660. width:80px;
  4661. height:35px;
  4662. display:flex;
  4663. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. font-size:12px;
  4667. color:#606266;
  4668. }
  4669. #u20405 .text {
  4670. position:absolute;
  4671. align-self:center;
  4672. padding:2px 2px 2px 0px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u20405_text {
  4677. border-width:0px;
  4678. word-wrap:break-word;
  4679. text-transform:none;
  4680. visibility:hidden;
  4681. }
  4682. #u20406_img {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:103px;
  4688. height:35px;
  4689. }
  4690. #u20406 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:320px;
  4694. top:190px;
  4695. width:103px;
  4696. height:35px;
  4697. display:flex;
  4698. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4699. font-weight:400;
  4700. font-style:normal;
  4701. font-size:12px;
  4702. color:#606266;
  4703. }
  4704. #u20406 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:2px 2px 2px 0px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u20406_text {
  4712. border-width:0px;
  4713. word-wrap:break-word;
  4714. text-transform:none;
  4715. visibility:hidden;
  4716. }
  4717. #u20407_img {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:80px;
  4723. height:35px;
  4724. }
  4725. #u20407 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:423px;
  4729. top:190px;
  4730. width:80px;
  4731. height:35px;
  4732. display:flex;
  4733. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:12px;
  4737. color:#606266;
  4738. }
  4739. #u20407 .text {
  4740. position:absolute;
  4741. align-self:center;
  4742. padding:2px 2px 2px 0px;
  4743. box-sizing:border-box;
  4744. width:100%;
  4745. }
  4746. #u20407_text {
  4747. border-width:0px;
  4748. word-wrap:break-word;
  4749. text-transform:none;
  4750. visibility:hidden;
  4751. }
  4752. #u20408_img {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:80px;
  4758. height:35px;
  4759. }
  4760. #u20408 {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:503px;
  4764. top:190px;
  4765. width:80px;
  4766. height:35px;
  4767. display:flex;
  4768. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4769. font-weight:400;
  4770. font-style:normal;
  4771. font-size:12px;
  4772. color:#606266;
  4773. }
  4774. #u20408 .text {
  4775. position:absolute;
  4776. align-self:center;
  4777. padding:2px 2px 2px 0px;
  4778. box-sizing:border-box;
  4779. width:100%;
  4780. }
  4781. #u20408_text {
  4782. border-width:0px;
  4783. word-wrap:break-word;
  4784. text-transform:none;
  4785. visibility:hidden;
  4786. }
  4787. #u20409_img {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:113px;
  4793. height:35px;
  4794. }
  4795. #u20409 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:583px;
  4799. top:190px;
  4800. width:113px;
  4801. height:35px;
  4802. display:flex;
  4803. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:12px;
  4807. color:#606266;
  4808. }
  4809. #u20409 .text {
  4810. position:absolute;
  4811. align-self:center;
  4812. padding:2px 2px 2px 0px;
  4813. box-sizing:border-box;
  4814. width:100%;
  4815. }
  4816. #u20409_text {
  4817. border-width:0px;
  4818. word-wrap:break-word;
  4819. text-transform:none;
  4820. visibility:hidden;
  4821. }
  4822. #u20410_img {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:104px;
  4828. height:35px;
  4829. }
  4830. #u20410 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:696px;
  4834. top:190px;
  4835. width:104px;
  4836. height:35px;
  4837. display:flex;
  4838. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:12px;
  4842. color:#606266;
  4843. }
  4844. #u20410 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 0px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u20410_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u20411_img {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:113px;
  4863. height:35px;
  4864. }
  4865. #u20411 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:800px;
  4869. top:190px;
  4870. width:113px;
  4871. height:35px;
  4872. display:flex;
  4873. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:12px;
  4877. color:#606266;
  4878. }
  4879. #u20411 .text {
  4880. position:absolute;
  4881. align-self:center;
  4882. padding:2px 2px 2px 0px;
  4883. box-sizing:border-box;
  4884. width:100%;
  4885. }
  4886. #u20411_text {
  4887. border-width:0px;
  4888. word-wrap:break-word;
  4889. text-transform:none;
  4890. visibility:hidden;
  4891. }
  4892. #u20412_img {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:0px;
  4896. top:0px;
  4897. width:113px;
  4898. height:35px;
  4899. }
  4900. #u20412 {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:913px;
  4904. top:190px;
  4905. width:113px;
  4906. height:35px;
  4907. display:flex;
  4908. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4909. font-weight:400;
  4910. font-style:normal;
  4911. font-size:12px;
  4912. color:#606266;
  4913. }
  4914. #u20412 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:2px 2px 2px 0px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u20412_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. visibility:hidden;
  4926. }
  4927. #u20413_img {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:113px;
  4933. height:35px;
  4934. }
  4935. #u20413 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:1026px;
  4939. top:190px;
  4940. width:113px;
  4941. height:35px;
  4942. display:flex;
  4943. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:12px;
  4947. color:#606266;
  4948. }
  4949. #u20413 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 2px 2px 0px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u20413_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u20414_img {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:80px;
  4968. height:35px;
  4969. }
  4970. #u20414 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:1139px;
  4974. top:190px;
  4975. width:80px;
  4976. height:35px;
  4977. display:flex;
  4978. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4979. font-weight:400;
  4980. font-style:normal;
  4981. font-size:12px;
  4982. color:#606266;
  4983. }
  4984. #u20414 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:2px 2px 2px 0px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u20414_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. visibility:hidden;
  4996. }
  4997. #u20415_img {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:80px;
  5003. height:34px;
  5004. }
  5005. #u20415 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:225px;
  5010. width:80px;
  5011. height:34px;
  5012. display:flex;
  5013. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:12px;
  5017. color:#606266;
  5018. }
  5019. #u20415 .text {
  5020. position:absolute;
  5021. align-self:center;
  5022. padding:2px 2px 2px 0px;
  5023. box-sizing:border-box;
  5024. width:100%;
  5025. }
  5026. #u20415_text {
  5027. border-width:0px;
  5028. word-wrap:break-word;
  5029. text-transform:none;
  5030. visibility:hidden;
  5031. }
  5032. #u20416_img {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:80px;
  5038. height:34px;
  5039. }
  5040. #u20416 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:80px;
  5044. top:225px;
  5045. width:80px;
  5046. height:34px;
  5047. display:flex;
  5048. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5049. font-weight:400;
  5050. font-style:normal;
  5051. font-size:12px;
  5052. color:#606266;
  5053. }
  5054. #u20416 .text {
  5055. position:absolute;
  5056. align-self:center;
  5057. padding:2px 2px 2px 0px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u20416_text {
  5062. border-width:0px;
  5063. word-wrap:break-word;
  5064. text-transform:none;
  5065. visibility:hidden;
  5066. }
  5067. #u20417_img {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:0px;
  5071. top:0px;
  5072. width:80px;
  5073. height:34px;
  5074. }
  5075. #u20417 {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:160px;
  5079. top:225px;
  5080. width:80px;
  5081. height:34px;
  5082. display:flex;
  5083. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5084. font-weight:400;
  5085. font-style:normal;
  5086. font-size:12px;
  5087. color:#606266;
  5088. }
  5089. #u20417 .text {
  5090. position:absolute;
  5091. align-self:center;
  5092. padding:2px 2px 2px 0px;
  5093. box-sizing:border-box;
  5094. width:100%;
  5095. }
  5096. #u20417_text {
  5097. border-width:0px;
  5098. word-wrap:break-word;
  5099. text-transform:none;
  5100. visibility:hidden;
  5101. }
  5102. #u20418_img {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:80px;
  5108. height:34px;
  5109. }
  5110. #u20418 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:240px;
  5114. top:225px;
  5115. width:80px;
  5116. height:34px;
  5117. display:flex;
  5118. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5119. font-weight:400;
  5120. font-style:normal;
  5121. font-size:12px;
  5122. color:#606266;
  5123. }
  5124. #u20418 .text {
  5125. position:absolute;
  5126. align-self:center;
  5127. padding:2px 2px 2px 0px;
  5128. box-sizing:border-box;
  5129. width:100%;
  5130. }
  5131. #u20418_text {
  5132. border-width:0px;
  5133. word-wrap:break-word;
  5134. text-transform:none;
  5135. visibility:hidden;
  5136. }
  5137. #u20419_img {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:103px;
  5143. height:34px;
  5144. }
  5145. #u20419 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:320px;
  5149. top:225px;
  5150. width:103px;
  5151. height:34px;
  5152. display:flex;
  5153. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5154. font-weight:400;
  5155. font-style:normal;
  5156. font-size:12px;
  5157. color:#606266;
  5158. }
  5159. #u20419 .text {
  5160. position:absolute;
  5161. align-self:center;
  5162. padding:2px 2px 2px 0px;
  5163. box-sizing:border-box;
  5164. width:100%;
  5165. }
  5166. #u20419_text {
  5167. border-width:0px;
  5168. word-wrap:break-word;
  5169. text-transform:none;
  5170. visibility:hidden;
  5171. }
  5172. #u20420_img {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:80px;
  5178. height:34px;
  5179. }
  5180. #u20420 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:423px;
  5184. top:225px;
  5185. width:80px;
  5186. height:34px;
  5187. display:flex;
  5188. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:12px;
  5192. color:#606266;
  5193. }
  5194. #u20420 .text {
  5195. position:absolute;
  5196. align-self:center;
  5197. padding:2px 2px 2px 0px;
  5198. box-sizing:border-box;
  5199. width:100%;
  5200. }
  5201. #u20420_text {
  5202. border-width:0px;
  5203. word-wrap:break-word;
  5204. text-transform:none;
  5205. visibility:hidden;
  5206. }
  5207. #u20421_img {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:80px;
  5213. height:34px;
  5214. }
  5215. #u20421 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:503px;
  5219. top:225px;
  5220. width:80px;
  5221. height:34px;
  5222. display:flex;
  5223. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:12px;
  5227. color:#606266;
  5228. }
  5229. #u20421 .text {
  5230. position:absolute;
  5231. align-self:center;
  5232. padding:2px 2px 2px 0px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u20421_text {
  5237. border-width:0px;
  5238. word-wrap:break-word;
  5239. text-transform:none;
  5240. visibility:hidden;
  5241. }
  5242. #u20422_img {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:113px;
  5248. height:34px;
  5249. }
  5250. #u20422 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:583px;
  5254. top:225px;
  5255. width:113px;
  5256. height:34px;
  5257. display:flex;
  5258. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5259. font-weight:400;
  5260. font-style:normal;
  5261. font-size:12px;
  5262. color:#606266;
  5263. }
  5264. #u20422 .text {
  5265. position:absolute;
  5266. align-self:center;
  5267. padding:2px 2px 2px 0px;
  5268. box-sizing:border-box;
  5269. width:100%;
  5270. }
  5271. #u20422_text {
  5272. border-width:0px;
  5273. word-wrap:break-word;
  5274. text-transform:none;
  5275. visibility:hidden;
  5276. }
  5277. #u20423_img {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:104px;
  5283. height:34px;
  5284. }
  5285. #u20423 {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:696px;
  5289. top:225px;
  5290. width:104px;
  5291. height:34px;
  5292. display:flex;
  5293. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5294. font-weight:400;
  5295. font-style:normal;
  5296. font-size:12px;
  5297. color:#606266;
  5298. }
  5299. #u20423 .text {
  5300. position:absolute;
  5301. align-self:center;
  5302. padding:2px 2px 2px 0px;
  5303. box-sizing:border-box;
  5304. width:100%;
  5305. }
  5306. #u20423_text {
  5307. border-width:0px;
  5308. word-wrap:break-word;
  5309. text-transform:none;
  5310. visibility:hidden;
  5311. }
  5312. #u20424_img {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:113px;
  5318. height:34px;
  5319. }
  5320. #u20424 {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:800px;
  5324. top:225px;
  5325. width:113px;
  5326. height:34px;
  5327. display:flex;
  5328. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5329. font-weight:400;
  5330. font-style:normal;
  5331. font-size:12px;
  5332. color:#606266;
  5333. }
  5334. #u20424 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:2px 2px 2px 0px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u20424_text {
  5342. border-width:0px;
  5343. word-wrap:break-word;
  5344. text-transform:none;
  5345. visibility:hidden;
  5346. }
  5347. #u20425_img {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:113px;
  5353. height:34px;
  5354. }
  5355. #u20425 {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:913px;
  5359. top:225px;
  5360. width:113px;
  5361. height:34px;
  5362. display:flex;
  5363. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:12px;
  5367. color:#606266;
  5368. }
  5369. #u20425 .text {
  5370. position:absolute;
  5371. align-self:center;
  5372. padding:2px 2px 2px 0px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u20425_text {
  5377. border-width:0px;
  5378. word-wrap:break-word;
  5379. text-transform:none;
  5380. visibility:hidden;
  5381. }
  5382. #u20426_img {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:113px;
  5388. height:34px;
  5389. }
  5390. #u20426 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:1026px;
  5394. top:225px;
  5395. width:113px;
  5396. height:34px;
  5397. display:flex;
  5398. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5399. font-weight:400;
  5400. font-style:normal;
  5401. font-size:12px;
  5402. color:#606266;
  5403. }
  5404. #u20426 .text {
  5405. position:absolute;
  5406. align-self:center;
  5407. padding:2px 2px 2px 0px;
  5408. box-sizing:border-box;
  5409. width:100%;
  5410. }
  5411. #u20426_text {
  5412. border-width:0px;
  5413. word-wrap:break-word;
  5414. text-transform:none;
  5415. visibility:hidden;
  5416. }
  5417. #u20427_img {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:80px;
  5423. height:34px;
  5424. }
  5425. #u20427 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:1139px;
  5429. top:225px;
  5430. width:80px;
  5431. height:34px;
  5432. display:flex;
  5433. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:12px;
  5437. color:#606266;
  5438. }
  5439. #u20427 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 0px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u20427_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u20428_img {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:80px;
  5458. height:32px;
  5459. }
  5460. #u20428 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:259px;
  5465. width:80px;
  5466. height:32px;
  5467. display:flex;
  5468. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. font-size:12px;
  5472. color:#606266;
  5473. }
  5474. #u20428 .text {
  5475. position:absolute;
  5476. align-self:center;
  5477. padding:2px 2px 2px 0px;
  5478. box-sizing:border-box;
  5479. width:100%;
  5480. }
  5481. #u20428_text {
  5482. border-width:0px;
  5483. word-wrap:break-word;
  5484. text-transform:none;
  5485. visibility:hidden;
  5486. }
  5487. #u20429_img {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:80px;
  5493. height:32px;
  5494. }
  5495. #u20429 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:80px;
  5499. top:259px;
  5500. width:80px;
  5501. height:32px;
  5502. display:flex;
  5503. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:12px;
  5507. color:#606266;
  5508. }
  5509. #u20429 .text {
  5510. position:absolute;
  5511. align-self:center;
  5512. padding:2px 2px 2px 0px;
  5513. box-sizing:border-box;
  5514. width:100%;
  5515. }
  5516. #u20429_text {
  5517. border-width:0px;
  5518. word-wrap:break-word;
  5519. text-transform:none;
  5520. visibility:hidden;
  5521. }
  5522. #u20430_img {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:80px;
  5528. height:32px;
  5529. }
  5530. #u20430 {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:160px;
  5534. top:259px;
  5535. width:80px;
  5536. height:32px;
  5537. display:flex;
  5538. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5539. font-weight:400;
  5540. font-style:normal;
  5541. font-size:12px;
  5542. color:#606266;
  5543. }
  5544. #u20430 .text {
  5545. position:absolute;
  5546. align-self:center;
  5547. padding:2px 2px 2px 0px;
  5548. box-sizing:border-box;
  5549. width:100%;
  5550. }
  5551. #u20430_text {
  5552. border-width:0px;
  5553. word-wrap:break-word;
  5554. text-transform:none;
  5555. visibility:hidden;
  5556. }
  5557. #u20431_img {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:0px;
  5561. top:0px;
  5562. width:80px;
  5563. height:32px;
  5564. }
  5565. #u20431 {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:240px;
  5569. top:259px;
  5570. width:80px;
  5571. height:32px;
  5572. display:flex;
  5573. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5574. font-weight:400;
  5575. font-style:normal;
  5576. font-size:12px;
  5577. color:#606266;
  5578. }
  5579. #u20431 .text {
  5580. position:absolute;
  5581. align-self:center;
  5582. padding:2px 2px 2px 0px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u20431_text {
  5587. border-width:0px;
  5588. word-wrap:break-word;
  5589. text-transform:none;
  5590. visibility:hidden;
  5591. }
  5592. #u20432_img {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:0px;
  5596. top:0px;
  5597. width:103px;
  5598. height:32px;
  5599. }
  5600. #u20432 {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:320px;
  5604. top:259px;
  5605. width:103px;
  5606. height:32px;
  5607. display:flex;
  5608. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:12px;
  5612. color:#606266;
  5613. }
  5614. #u20432 .text {
  5615. position:absolute;
  5616. align-self:center;
  5617. padding:2px 2px 2px 0px;
  5618. box-sizing:border-box;
  5619. width:100%;
  5620. }
  5621. #u20432_text {
  5622. border-width:0px;
  5623. word-wrap:break-word;
  5624. text-transform:none;
  5625. visibility:hidden;
  5626. }
  5627. #u20433_img {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:80px;
  5633. height:32px;
  5634. }
  5635. #u20433 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:423px;
  5639. top:259px;
  5640. width:80px;
  5641. height:32px;
  5642. display:flex;
  5643. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5644. font-weight:400;
  5645. font-style:normal;
  5646. font-size:12px;
  5647. color:#606266;
  5648. }
  5649. #u20433 .text {
  5650. position:absolute;
  5651. align-self:center;
  5652. padding:2px 2px 2px 0px;
  5653. box-sizing:border-box;
  5654. width:100%;
  5655. }
  5656. #u20433_text {
  5657. border-width:0px;
  5658. word-wrap:break-word;
  5659. text-transform:none;
  5660. visibility:hidden;
  5661. }
  5662. #u20434_img {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:80px;
  5668. height:32px;
  5669. }
  5670. #u20434 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:503px;
  5674. top:259px;
  5675. width:80px;
  5676. height:32px;
  5677. display:flex;
  5678. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:12px;
  5682. color:#606266;
  5683. }
  5684. #u20434 .text {
  5685. position:absolute;
  5686. align-self:center;
  5687. padding:2px 2px 2px 0px;
  5688. box-sizing:border-box;
  5689. width:100%;
  5690. }
  5691. #u20434_text {
  5692. border-width:0px;
  5693. word-wrap:break-word;
  5694. text-transform:none;
  5695. visibility:hidden;
  5696. }
  5697. #u20435_img {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:0px;
  5701. top:0px;
  5702. width:113px;
  5703. height:32px;
  5704. }
  5705. #u20435 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:583px;
  5709. top:259px;
  5710. width:113px;
  5711. height:32px;
  5712. display:flex;
  5713. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:12px;
  5717. color:#606266;
  5718. }
  5719. #u20435 .text {
  5720. position:absolute;
  5721. align-self:center;
  5722. padding:2px 2px 2px 0px;
  5723. box-sizing:border-box;
  5724. width:100%;
  5725. }
  5726. #u20435_text {
  5727. border-width:0px;
  5728. word-wrap:break-word;
  5729. text-transform:none;
  5730. visibility:hidden;
  5731. }
  5732. #u20436_img {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:0px;
  5736. top:0px;
  5737. width:104px;
  5738. height:32px;
  5739. }
  5740. #u20436 {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:696px;
  5744. top:259px;
  5745. width:104px;
  5746. height:32px;
  5747. display:flex;
  5748. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5749. font-weight:400;
  5750. font-style:normal;
  5751. font-size:12px;
  5752. color:#606266;
  5753. }
  5754. #u20436 .text {
  5755. position:absolute;
  5756. align-self:center;
  5757. padding:2px 2px 2px 0px;
  5758. box-sizing:border-box;
  5759. width:100%;
  5760. }
  5761. #u20436_text {
  5762. border-width:0px;
  5763. word-wrap:break-word;
  5764. text-transform:none;
  5765. visibility:hidden;
  5766. }
  5767. #u20437_img {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:113px;
  5773. height:32px;
  5774. }
  5775. #u20437 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:800px;
  5779. top:259px;
  5780. width:113px;
  5781. height:32px;
  5782. display:flex;
  5783. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5784. font-weight:400;
  5785. font-style:normal;
  5786. font-size:12px;
  5787. color:#606266;
  5788. }
  5789. #u20437 .text {
  5790. position:absolute;
  5791. align-self:center;
  5792. padding:2px 2px 2px 0px;
  5793. box-sizing:border-box;
  5794. width:100%;
  5795. }
  5796. #u20437_text {
  5797. border-width:0px;
  5798. word-wrap:break-word;
  5799. text-transform:none;
  5800. visibility:hidden;
  5801. }
  5802. #u20438_img {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:113px;
  5808. height:32px;
  5809. }
  5810. #u20438 {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:913px;
  5814. top:259px;
  5815. width:113px;
  5816. height:32px;
  5817. display:flex;
  5818. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5819. font-weight:400;
  5820. font-style:normal;
  5821. font-size:12px;
  5822. color:#606266;
  5823. }
  5824. #u20438 .text {
  5825. position:absolute;
  5826. align-self:center;
  5827. padding:2px 2px 2px 0px;
  5828. box-sizing:border-box;
  5829. width:100%;
  5830. }
  5831. #u20438_text {
  5832. border-width:0px;
  5833. word-wrap:break-word;
  5834. text-transform:none;
  5835. visibility:hidden;
  5836. }
  5837. #u20439_img {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:113px;
  5843. height:32px;
  5844. }
  5845. #u20439 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:1026px;
  5849. top:259px;
  5850. width:113px;
  5851. height:32px;
  5852. display:flex;
  5853. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:12px;
  5857. color:#606266;
  5858. }
  5859. #u20439 .text {
  5860. position:absolute;
  5861. align-self:center;
  5862. padding:2px 2px 2px 0px;
  5863. box-sizing:border-box;
  5864. width:100%;
  5865. }
  5866. #u20439_text {
  5867. border-width:0px;
  5868. word-wrap:break-word;
  5869. text-transform:none;
  5870. visibility:hidden;
  5871. }
  5872. #u20440_img {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:80px;
  5878. height:32px;
  5879. }
  5880. #u20440 {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:1139px;
  5884. top:259px;
  5885. width:80px;
  5886. height:32px;
  5887. display:flex;
  5888. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5889. font-weight:400;
  5890. font-style:normal;
  5891. font-size:12px;
  5892. color:#606266;
  5893. }
  5894. #u20440 .text {
  5895. position:absolute;
  5896. align-self:center;
  5897. padding:2px 2px 2px 0px;
  5898. box-sizing:border-box;
  5899. width:100%;
  5900. }
  5901. #u20440_text {
  5902. border-width:0px;
  5903. word-wrap:break-word;
  5904. text-transform:none;
  5905. visibility:hidden;
  5906. }
  5907. #u20441_img {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:80px;
  5913. height:30px;
  5914. }
  5915. #u20441 {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:0px;
  5919. top:291px;
  5920. width:80px;
  5921. height:30px;
  5922. display:flex;
  5923. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5924. font-weight:400;
  5925. font-style:normal;
  5926. font-size:12px;
  5927. color:#606266;
  5928. }
  5929. #u20441 .text {
  5930. position:absolute;
  5931. align-self:center;
  5932. padding:2px 2px 2px 0px;
  5933. box-sizing:border-box;
  5934. width:100%;
  5935. }
  5936. #u20441_text {
  5937. border-width:0px;
  5938. word-wrap:break-word;
  5939. text-transform:none;
  5940. visibility:hidden;
  5941. }
  5942. #u20442_img {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:80px;
  5948. height:30px;
  5949. }
  5950. #u20442 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:80px;
  5954. top:291px;
  5955. width:80px;
  5956. height:30px;
  5957. display:flex;
  5958. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. font-size:12px;
  5962. color:#606266;
  5963. }
  5964. #u20442 .text {
  5965. position:absolute;
  5966. align-self:center;
  5967. padding:2px 2px 2px 0px;
  5968. box-sizing:border-box;
  5969. width:100%;
  5970. }
  5971. #u20442_text {
  5972. border-width:0px;
  5973. word-wrap:break-word;
  5974. text-transform:none;
  5975. visibility:hidden;
  5976. }
  5977. #u20443_img {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:80px;
  5983. height:30px;
  5984. }
  5985. #u20443 {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:160px;
  5989. top:291px;
  5990. width:80px;
  5991. height:30px;
  5992. display:flex;
  5993. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. font-size:12px;
  5997. color:#606266;
  5998. }
  5999. #u20443 .text {
  6000. position:absolute;
  6001. align-self:center;
  6002. padding:2px 2px 2px 0px;
  6003. box-sizing:border-box;
  6004. width:100%;
  6005. }
  6006. #u20443_text {
  6007. border-width:0px;
  6008. word-wrap:break-word;
  6009. text-transform:none;
  6010. visibility:hidden;
  6011. }
  6012. #u20444_img {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:0px;
  6016. top:0px;
  6017. width:80px;
  6018. height:30px;
  6019. }
  6020. #u20444 {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:240px;
  6024. top:291px;
  6025. width:80px;
  6026. height:30px;
  6027. display:flex;
  6028. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6029. font-weight:400;
  6030. font-style:normal;
  6031. font-size:12px;
  6032. color:#606266;
  6033. }
  6034. #u20444 .text {
  6035. position:absolute;
  6036. align-self:center;
  6037. padding:2px 2px 2px 0px;
  6038. box-sizing:border-box;
  6039. width:100%;
  6040. }
  6041. #u20444_text {
  6042. border-width:0px;
  6043. word-wrap:break-word;
  6044. text-transform:none;
  6045. visibility:hidden;
  6046. }
  6047. #u20445_img {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:0px;
  6051. top:0px;
  6052. width:103px;
  6053. height:30px;
  6054. }
  6055. #u20445 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:320px;
  6059. top:291px;
  6060. width:103px;
  6061. height:30px;
  6062. display:flex;
  6063. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:12px;
  6067. color:#606266;
  6068. }
  6069. #u20445 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:2px 2px 2px 0px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u20445_text {
  6077. border-width:0px;
  6078. word-wrap:break-word;
  6079. text-transform:none;
  6080. visibility:hidden;
  6081. }
  6082. #u20446_img {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:80px;
  6088. height:30px;
  6089. }
  6090. #u20446 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:423px;
  6094. top:291px;
  6095. width:80px;
  6096. height:30px;
  6097. display:flex;
  6098. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6099. font-weight:400;
  6100. font-style:normal;
  6101. font-size:12px;
  6102. color:#606266;
  6103. }
  6104. #u20446 .text {
  6105. position:absolute;
  6106. align-self:center;
  6107. padding:2px 2px 2px 0px;
  6108. box-sizing:border-box;
  6109. width:100%;
  6110. }
  6111. #u20446_text {
  6112. border-width:0px;
  6113. word-wrap:break-word;
  6114. text-transform:none;
  6115. visibility:hidden;
  6116. }
  6117. #u20447_img {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:0px;
  6121. top:0px;
  6122. width:80px;
  6123. height:30px;
  6124. }
  6125. #u20447 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:503px;
  6129. top:291px;
  6130. width:80px;
  6131. height:30px;
  6132. display:flex;
  6133. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:12px;
  6137. color:#606266;
  6138. }
  6139. #u20447 .text {
  6140. position:absolute;
  6141. align-self:center;
  6142. padding:2px 2px 2px 0px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u20447_text {
  6147. border-width:0px;
  6148. word-wrap:break-word;
  6149. text-transform:none;
  6150. visibility:hidden;
  6151. }
  6152. #u20448_img {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:0px;
  6156. top:0px;
  6157. width:113px;
  6158. height:30px;
  6159. }
  6160. #u20448 {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:583px;
  6164. top:291px;
  6165. width:113px;
  6166. height:30px;
  6167. display:flex;
  6168. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6169. font-weight:400;
  6170. font-style:normal;
  6171. font-size:12px;
  6172. color:#606266;
  6173. }
  6174. #u20448 .text {
  6175. position:absolute;
  6176. align-self:center;
  6177. padding:2px 2px 2px 0px;
  6178. box-sizing:border-box;
  6179. width:100%;
  6180. }
  6181. #u20448_text {
  6182. border-width:0px;
  6183. word-wrap:break-word;
  6184. text-transform:none;
  6185. visibility:hidden;
  6186. }
  6187. #u20449_img {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:104px;
  6193. height:30px;
  6194. }
  6195. #u20449 {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:696px;
  6199. top:291px;
  6200. width:104px;
  6201. height:30px;
  6202. display:flex;
  6203. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6204. font-weight:400;
  6205. font-style:normal;
  6206. font-size:12px;
  6207. color:#606266;
  6208. }
  6209. #u20449 .text {
  6210. position:absolute;
  6211. align-self:center;
  6212. padding:2px 2px 2px 0px;
  6213. box-sizing:border-box;
  6214. width:100%;
  6215. }
  6216. #u20449_text {
  6217. border-width:0px;
  6218. word-wrap:break-word;
  6219. text-transform:none;
  6220. visibility:hidden;
  6221. }
  6222. #u20450_img {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:0px;
  6226. top:0px;
  6227. width:113px;
  6228. height:30px;
  6229. }
  6230. #u20450 {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:800px;
  6234. top:291px;
  6235. width:113px;
  6236. height:30px;
  6237. display:flex;
  6238. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6239. font-weight:400;
  6240. font-style:normal;
  6241. font-size:12px;
  6242. color:#606266;
  6243. }
  6244. #u20450 .text {
  6245. position:absolute;
  6246. align-self:center;
  6247. padding:2px 2px 2px 0px;
  6248. box-sizing:border-box;
  6249. width:100%;
  6250. }
  6251. #u20450_text {
  6252. border-width:0px;
  6253. word-wrap:break-word;
  6254. text-transform:none;
  6255. visibility:hidden;
  6256. }
  6257. #u20451_img {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:113px;
  6263. height:30px;
  6264. }
  6265. #u20451 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:913px;
  6269. top:291px;
  6270. width:113px;
  6271. height:30px;
  6272. display:flex;
  6273. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:12px;
  6277. color:#606266;
  6278. }
  6279. #u20451 .text {
  6280. position:absolute;
  6281. align-self:center;
  6282. padding:2px 2px 2px 0px;
  6283. box-sizing:border-box;
  6284. width:100%;
  6285. }
  6286. #u20451_text {
  6287. border-width:0px;
  6288. word-wrap:break-word;
  6289. text-transform:none;
  6290. visibility:hidden;
  6291. }
  6292. #u20452_img {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:113px;
  6298. height:30px;
  6299. }
  6300. #u20452 {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:1026px;
  6304. top:291px;
  6305. width:113px;
  6306. height:30px;
  6307. display:flex;
  6308. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:12px;
  6312. color:#606266;
  6313. }
  6314. #u20452 .text {
  6315. position:absolute;
  6316. align-self:center;
  6317. padding:2px 2px 2px 0px;
  6318. box-sizing:border-box;
  6319. width:100%;
  6320. }
  6321. #u20452_text {
  6322. border-width:0px;
  6323. word-wrap:break-word;
  6324. text-transform:none;
  6325. visibility:hidden;
  6326. }
  6327. #u20453_img {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:80px;
  6333. height:30px;
  6334. }
  6335. #u20453 {
  6336. border-width:0px;
  6337. position:absolute;
  6338. left:1139px;
  6339. top:291px;
  6340. width:80px;
  6341. height:30px;
  6342. display:flex;
  6343. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6344. font-weight:400;
  6345. font-style:normal;
  6346. font-size:12px;
  6347. color:#606266;
  6348. }
  6349. #u20453 .text {
  6350. position:absolute;
  6351. align-self:center;
  6352. padding:2px 2px 2px 0px;
  6353. box-sizing:border-box;
  6354. width:100%;
  6355. }
  6356. #u20453_text {
  6357. border-width:0px;
  6358. word-wrap:break-word;
  6359. text-transform:none;
  6360. visibility:hidden;
  6361. }
  6362. #u20454 {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:0px;
  6366. top:0px;
  6367. width:0px;
  6368. height:0px;
  6369. }
  6370. #u20455_div {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:0px;
  6374. top:0px;
  6375. width:1219px;
  6376. height:40px;
  6377. background:inherit;
  6378. background-color:rgba(255, 255, 255, 1);
  6379. box-sizing:border-box;
  6380. border-width:1px;
  6381. border-style:solid;
  6382. border-color:rgba(242, 242, 242, 1);
  6383. border-radius:0px;
  6384. -moz-box-shadow:none;
  6385. -webkit-box-shadow:none;
  6386. box-shadow:none;
  6387. font-size:11px;
  6388. }
  6389. #u20455 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:350px;
  6393. top:260px;
  6394. width:1219px;
  6395. height:40px;
  6396. display:flex;
  6397. font-size:11px;
  6398. }
  6399. #u20455 .text {
  6400. position:absolute;
  6401. align-self:center;
  6402. padding:2px 2px 2px 2px;
  6403. box-sizing:border-box;
  6404. width:100%;
  6405. }
  6406. #u20455_text {
  6407. border-width:0px;
  6408. word-wrap:break-word;
  6409. text-transform:none;
  6410. visibility:hidden;
  6411. }
  6412. #u20456 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:0px;
  6416. top:0px;
  6417. width:0px;
  6418. height:0px;
  6419. }
  6420. #u20457_div {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:101px;
  6426. height:21px;
  6427. background:inherit;
  6428. background-color:rgba(255, 255, 255, 0);
  6429. border:none;
  6430. border-left:0px;
  6431. border-radius:0px;
  6432. border-top-left-radius:0px;
  6433. border-bottom-left-radius:0px;
  6434. -moz-box-shadow:none;
  6435. -webkit-box-shadow:none;
  6436. box-shadow:none;
  6437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. font-size:12px;
  6441. text-align:left;
  6442. }
  6443. #u20457 {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:360px;
  6447. top:269px;
  6448. width:101px;
  6449. height:21px;
  6450. display:flex;
  6451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6452. font-weight:400;
  6453. font-style:normal;
  6454. font-size:12px;
  6455. text-align:left;
  6456. }
  6457. #u20457 .text {
  6458. position:absolute;
  6459. align-self:center;
  6460. padding:2px 2px 2px 2px;
  6461. box-sizing:border-box;
  6462. width:100%;
  6463. }
  6464. #u20457_text {
  6465. border-width:0px;
  6466. white-space:nowrap;
  6467. text-transform:none;
  6468. }
  6469. #u20458_img {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:0px;
  6473. top:0px;
  6474. width:12px;
  6475. height:12px;
  6476. }
  6477. #u20458 {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:461px;
  6481. top:274px;
  6482. width:12px;
  6483. height:12px;
  6484. display:flex;
  6485. }
  6486. #u20458 .text {
  6487. position:absolute;
  6488. align-self:center;
  6489. padding:2px 2px 2px 2px;
  6490. box-sizing:border-box;
  6491. width:100%;
  6492. }
  6493. #u20458_text {
  6494. border-width:0px;
  6495. word-wrap:break-word;
  6496. text-transform:none;
  6497. visibility:hidden;
  6498. }
  6499. #u20459 {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:0px;
  6503. top:0px;
  6504. width:0px;
  6505. height:0px;
  6506. }
  6507. #u20460_div {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:0px;
  6511. top:0px;
  6512. width:46px;
  6513. height:24px;
  6514. background:inherit;
  6515. background-color:rgba(0, 153, 255, 1);
  6516. box-sizing:border-box;
  6517. border-width:1px;
  6518. border-style:solid;
  6519. border-color:rgba(0, 153, 255, 1);
  6520. border-right:0px;
  6521. border-radius:4px;
  6522. border-top-right-radius:0px;
  6523. border-bottom-right-radius:0px;
  6524. -moz-box-shadow:none;
  6525. -webkit-box-shadow:none;
  6526. box-shadow:none;
  6527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:12px;
  6531. color:#FFFFFF;
  6532. }
  6533. #u20460 {
  6534. border-width:0px;
  6535. position:absolute;
  6536. left:1461px;
  6537. top:268px;
  6538. width:46px;
  6539. height:24px;
  6540. display:flex;
  6541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. font-size:12px;
  6545. color:#FFFFFF;
  6546. }
  6547. #u20460 .text {
  6548. position:absolute;
  6549. align-self:center;
  6550. padding:0px 0px 0px 0px;
  6551. box-sizing:border-box;
  6552. width:100%;
  6553. }
  6554. #u20460_text {
  6555. border-width:0px;
  6556. word-wrap:break-word;
  6557. text-transform:none;
  6558. }
  6559. #u20461_div {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:0px;
  6563. top:0px;
  6564. width:46px;
  6565. height:24px;
  6566. background:inherit;
  6567. background-color:rgba(255, 255, 255, 1);
  6568. box-sizing:border-box;
  6569. border-width:1px;
  6570. border-style:solid;
  6571. border-color:rgba(170, 170, 170, 1);
  6572. border-left:0px;
  6573. border-radius:4px;
  6574. border-top-left-radius:0px;
  6575. border-bottom-left-radius:0px;
  6576. -moz-box-shadow:none;
  6577. -webkit-box-shadow:none;
  6578. box-shadow:none;
  6579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6580. font-weight:400;
  6581. font-style:normal;
  6582. font-size:12px;
  6583. color:#555555;
  6584. }
  6585. #u20461 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:1507px;
  6589. top:268px;
  6590. width:46px;
  6591. height:24px;
  6592. display:flex;
  6593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6594. font-weight:400;
  6595. font-style:normal;
  6596. font-size:12px;
  6597. color:#555555;
  6598. }
  6599. #u20461 .text {
  6600. position:absolute;
  6601. align-self:center;
  6602. padding:0px 0px 0px 0px;
  6603. box-sizing:border-box;
  6604. width:100%;
  6605. }
  6606. #u20461_text {
  6607. border-width:0px;
  6608. word-wrap:break-word;
  6609. text-transform:none;
  6610. }
  6611. #u20462 {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:0px;
  6615. top:0px;
  6616. width:0px;
  6617. height:0px;
  6618. }
  6619. #u20463_div {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:643px;
  6625. height:265px;
  6626. background:inherit;
  6627. background-color:rgba(255, 255, 255, 1);
  6628. border:none;
  6629. border-radius:0px;
  6630. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6631. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6632. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. text-align:left;
  6637. line-height:35px;
  6638. }
  6639. #u20463 {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:411px;
  6643. top:824px;
  6644. width:643px;
  6645. height:265px;
  6646. display:flex;
  6647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. text-align:left;
  6651. line-height:35px;
  6652. }
  6653. #u20463 .text {
  6654. position:absolute;
  6655. align-self:center;
  6656. padding:10px 10px 10px 10px;
  6657. box-sizing:border-box;
  6658. width:100%;
  6659. }
  6660. #u20463_text {
  6661. border-width:0px;
  6662. white-space:nowrap;
  6663. text-transform:none;
  6664. }
  6665. #u20464_img {
  6666. border-width:0px;
  6667. position:absolute;
  6668. left:0px;
  6669. top:0px;
  6670. width:10px;
  6671. height:10px;
  6672. }
  6673. #u20464 {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:1032px;
  6677. top:834px;
  6678. width:10px;
  6679. height:10px;
  6680. display:flex;
  6681. }
  6682. #u20464 .text {
  6683. position:absolute;
  6684. align-self:center;
  6685. padding:2px 2px 2px 2px;
  6686. box-sizing:border-box;
  6687. width:100%;
  6688. }
  6689. #u20464_text {
  6690. border-width:0px;
  6691. word-wrap:break-word;
  6692. text-transform:none;
  6693. visibility:hidden;
  6694. }
  6695. #u20465 {
  6696. border-width:0px;
  6697. position:absolute;
  6698. left:0px;
  6699. top:0px;
  6700. width:0px;
  6701. height:0px;
  6702. }
  6703. #u20466_div {
  6704. border-width:0px;
  6705. position:absolute;
  6706. left:0px;
  6707. top:0px;
  6708. width:140px;
  6709. height:30px;
  6710. background:inherit;
  6711. background-color:rgba(255, 255, 255, 1);
  6712. box-sizing:border-box;
  6713. border-width:1px;
  6714. border-style:solid;
  6715. border-color:rgba(215, 215, 215, 1);
  6716. border-radius:2px;
  6717. -moz-box-shadow:none;
  6718. -webkit-box-shadow:none;
  6719. box-shadow:none;
  6720. font-size:11px;
  6721. }
  6722. #u20466 {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:679px;
  6726. top:100px;
  6727. width:140px;
  6728. height:30px;
  6729. display:flex;
  6730. font-size:11px;
  6731. }
  6732. #u20466 .text {
  6733. position:absolute;
  6734. align-self:center;
  6735. padding:2px 2px 2px 2px;
  6736. box-sizing:border-box;
  6737. width:100%;
  6738. }
  6739. #u20466_text {
  6740. border-width:0px;
  6741. word-wrap:break-word;
  6742. text-transform:none;
  6743. visibility:hidden;
  6744. }
  6745. #u20467_input {
  6746. position:absolute;
  6747. left:0px;
  6748. top:0px;
  6749. width:126px;
  6750. height:23px;
  6751. padding:2px 2px 2px 2px;
  6752. font-family:'ArialMT', 'Arial', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:11px;
  6756. letter-spacing:normal;
  6757. color:#AAAAAA;
  6758. vertical-align:none;
  6759. text-align:left;
  6760. text-transform:none;
  6761. background-color:transparent;
  6762. border-color:transparent;
  6763. }
  6764. #u20467_input.disabled {
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:126px;
  6769. height:23px;
  6770. padding:2px 2px 2px 2px;
  6771. font-family:'ArialMT', 'Arial', sans-serif;
  6772. font-weight:400;
  6773. font-style:normal;
  6774. font-size:11px;
  6775. letter-spacing:normal;
  6776. color:#AAAAAA;
  6777. vertical-align:none;
  6778. text-align:left;
  6779. text-transform:none;
  6780. background-color:transparent;
  6781. border-color:transparent;
  6782. }
  6783. #u20467_div {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:0px;
  6787. top:0px;
  6788. width:126px;
  6789. height:23px;
  6790. background:inherit;
  6791. background-color:rgba(255, 255, 255, 1);
  6792. border:none;
  6793. border-radius:0px;
  6794. -moz-box-shadow:none;
  6795. -webkit-box-shadow:none;
  6796. box-shadow:none;
  6797. font-size:11px;
  6798. color:#AAAAAA;
  6799. }
  6800. #u20467 {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:686px;
  6804. top:102px;
  6805. width:126px;
  6806. height:23px;
  6807. display:flex;
  6808. font-size:11px;
  6809. color:#AAAAAA;
  6810. }
  6811. #u20467 .text {
  6812. position:absolute;
  6813. align-self:flex-start;
  6814. padding:2px 2px 2px 2px;
  6815. box-sizing:border-box;
  6816. width:100%;
  6817. }
  6818. #u20467_div.disabled {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:0px;
  6822. top:0px;
  6823. width:126px;
  6824. height:23px;
  6825. background:inherit;
  6826. background-color:rgba(240, 240, 240, 1);
  6827. border:none;
  6828. border-radius:0px;
  6829. -moz-box-shadow:none;
  6830. -webkit-box-shadow:none;
  6831. box-shadow:none;
  6832. font-size:11px;
  6833. color:#AAAAAA;
  6834. }
  6835. #u20467.disabled {
  6836. }
  6837. .u20467_input_option {
  6838. font-size:11px;
  6839. }
  6840. #u20468_div {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:0px;
  6844. top:0px;
  6845. width:1219px;
  6846. height:100px;
  6847. background:inherit;
  6848. background-color:rgba(242, 242, 242, 1);
  6849. border:none;
  6850. border-radius:5px;
  6851. -moz-box-shadow:none;
  6852. -webkit-box-shadow:none;
  6853. box-shadow:none;
  6854. color:#1890FF;
  6855. }
  6856. #u20468 {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:350px;
  6860. top:150px;
  6861. width:1219px;
  6862. height:100px;
  6863. display:flex;
  6864. color:#1890FF;
  6865. }
  6866. #u20468 .text {
  6867. position:absolute;
  6868. align-self:center;
  6869. padding:2px 2px 2px 2px;
  6870. box-sizing:border-box;
  6871. width:100%;
  6872. }
  6873. #u20468_text {
  6874. border-width:0px;
  6875. word-wrap:break-word;
  6876. text-transform:none;
  6877. visibility:hidden;
  6878. }
  6879. #u20469_div {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:0px;
  6883. top:0px;
  6884. width:200px;
  6885. height:20px;
  6886. background:inherit;
  6887. background-color:rgba(255, 255, 255, 0);
  6888. border:none;
  6889. border-radius:0px;
  6890. -moz-box-shadow:none;
  6891. -webkit-box-shadow:none;
  6892. box-shadow:none;
  6893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6894. font-weight:400;
  6895. font-style:normal;
  6896. font-size:14px;
  6897. }
  6898. #u20469 {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:549px;
  6902. top:170px;
  6903. width:200px;
  6904. height:20px;
  6905. display:flex;
  6906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6907. font-weight:400;
  6908. font-style:normal;
  6909. font-size:14px;
  6910. }
  6911. #u20469 .text {
  6912. position:absolute;
  6913. align-self:flex-start;
  6914. padding:0px 0px 0px 0px;
  6915. box-sizing:border-box;
  6916. width:100%;
  6917. }
  6918. #u20469_text {
  6919. border-width:0px;
  6920. word-wrap:break-word;
  6921. text-transform:none;
  6922. }
  6923. #u20470_div {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:0px;
  6927. top:0px;
  6928. width:200px;
  6929. height:25px;
  6930. background:inherit;
  6931. background-color:rgba(255, 255, 255, 0);
  6932. border:none;
  6933. border-radius:0px;
  6934. -moz-box-shadow:none;
  6935. -webkit-box-shadow:none;
  6936. box-shadow:none;
  6937. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6938. font-weight:650;
  6939. font-style:normal;
  6940. font-size:18px;
  6941. }
  6942. #u20470 {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:549px;
  6946. top:203px;
  6947. width:200px;
  6948. height:25px;
  6949. display:flex;
  6950. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6951. font-weight:650;
  6952. font-style:normal;
  6953. font-size:18px;
  6954. }
  6955. #u20470 .text {
  6956. position:absolute;
  6957. align-self:flex-start;
  6958. padding:0px 0px 0px 0px;
  6959. box-sizing:border-box;
  6960. width:100%;
  6961. }
  6962. #u20470_text {
  6963. border-width:0px;
  6964. word-wrap:break-word;
  6965. text-transform:none;
  6966. }
  6967. #u20471_div {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:200px;
  6973. height:20px;
  6974. background:inherit;
  6975. background-color:rgba(255, 255, 255, 0);
  6976. border:none;
  6977. border-radius:0px;
  6978. -moz-box-shadow:none;
  6979. -webkit-box-shadow:none;
  6980. box-shadow:none;
  6981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6982. font-weight:400;
  6983. font-style:normal;
  6984. font-size:14px;
  6985. }
  6986. #u20471 {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:383px;
  6990. top:170px;
  6991. width:200px;
  6992. height:20px;
  6993. display:flex;
  6994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6995. font-weight:400;
  6996. font-style:normal;
  6997. font-size:14px;
  6998. }
  6999. #u20471 .text {
  7000. position:absolute;
  7001. align-self:flex-start;
  7002. padding:0px 0px 0px 0px;
  7003. box-sizing:border-box;
  7004. width:100%;
  7005. }
  7006. #u20471_text {
  7007. border-width:0px;
  7008. word-wrap:break-word;
  7009. text-transform:none;
  7010. }
  7011. #u20472_div {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:0px;
  7015. top:0px;
  7016. width:200px;
  7017. height:25px;
  7018. background:inherit;
  7019. background-color:rgba(255, 255, 255, 0);
  7020. border:none;
  7021. border-radius:0px;
  7022. -moz-box-shadow:none;
  7023. -webkit-box-shadow:none;
  7024. box-shadow:none;
  7025. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7026. font-weight:650;
  7027. font-style:normal;
  7028. font-size:18px;
  7029. }
  7030. #u20472 {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:383px;
  7034. top:203px;
  7035. width:200px;
  7036. height:25px;
  7037. display:flex;
  7038. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7039. font-weight:650;
  7040. font-style:normal;
  7041. font-size:18px;
  7042. }
  7043. #u20472 .text {
  7044. position:absolute;
  7045. align-self:flex-start;
  7046. padding:0px 0px 0px 0px;
  7047. box-sizing:border-box;
  7048. width:100%;
  7049. }
  7050. #u20472_text {
  7051. border-width:0px;
  7052. word-wrap:break-word;
  7053. text-transform:none;
  7054. }
  7055. #u20473_div {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:200px;
  7061. height:20px;
  7062. background:inherit;
  7063. background-color:rgba(255, 255, 255, 0);
  7064. border:none;
  7065. border-radius:0px;
  7066. -moz-box-shadow:none;
  7067. -webkit-box-shadow:none;
  7068. box-shadow:none;
  7069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7070. font-weight:400;
  7071. font-style:normal;
  7072. font-size:14px;
  7073. }
  7074. #u20473 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:749px;
  7078. top:170px;
  7079. width:200px;
  7080. height:20px;
  7081. display:flex;
  7082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7083. font-weight:400;
  7084. font-style:normal;
  7085. font-size:14px;
  7086. }
  7087. #u20473 .text {
  7088. position:absolute;
  7089. align-self:flex-start;
  7090. padding:0px 0px 0px 0px;
  7091. box-sizing:border-box;
  7092. width:100%;
  7093. }
  7094. #u20473_text {
  7095. border-width:0px;
  7096. word-wrap:break-word;
  7097. text-transform:none;
  7098. }
  7099. #u20474_div {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:0px;
  7103. top:0px;
  7104. width:200px;
  7105. height:25px;
  7106. background:inherit;
  7107. background-color:rgba(255, 255, 255, 0);
  7108. border:none;
  7109. border-radius:0px;
  7110. -moz-box-shadow:none;
  7111. -webkit-box-shadow:none;
  7112. box-shadow:none;
  7113. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7114. font-weight:650;
  7115. font-style:normal;
  7116. font-size:18px;
  7117. }
  7118. #u20474 {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:749px;
  7122. top:203px;
  7123. width:200px;
  7124. height:25px;
  7125. display:flex;
  7126. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7127. font-weight:650;
  7128. font-style:normal;
  7129. font-size:18px;
  7130. }
  7131. #u20474 .text {
  7132. position:absolute;
  7133. align-self:flex-start;
  7134. padding:0px 0px 0px 0px;
  7135. box-sizing:border-box;
  7136. width:100%;
  7137. }
  7138. #u20474_text {
  7139. border-width:0px;
  7140. word-wrap:break-word;
  7141. text-transform:none;
  7142. }
  7143. #u20475_div {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:200px;
  7149. height:20px;
  7150. background:inherit;
  7151. background-color:rgba(255, 255, 255, 0);
  7152. border:none;
  7153. border-radius:0px;
  7154. -moz-box-shadow:none;
  7155. -webkit-box-shadow:none;
  7156. box-shadow:none;
  7157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7158. font-weight:400;
  7159. font-style:normal;
  7160. font-size:14px;
  7161. }
  7162. #u20475 {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:935px;
  7166. top:170px;
  7167. width:200px;
  7168. height:20px;
  7169. display:flex;
  7170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7171. font-weight:400;
  7172. font-style:normal;
  7173. font-size:14px;
  7174. }
  7175. #u20475 .text {
  7176. position:absolute;
  7177. align-self:flex-start;
  7178. padding:0px 0px 0px 0px;
  7179. box-sizing:border-box;
  7180. width:100%;
  7181. }
  7182. #u20475_text {
  7183. border-width:0px;
  7184. word-wrap:break-word;
  7185. text-transform:none;
  7186. }
  7187. #u20476_div {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:200px;
  7193. height:25px;
  7194. background:inherit;
  7195. background-color:rgba(255, 255, 255, 0);
  7196. border:none;
  7197. border-radius:0px;
  7198. -moz-box-shadow:none;
  7199. -webkit-box-shadow:none;
  7200. box-shadow:none;
  7201. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7202. font-weight:650;
  7203. font-style:normal;
  7204. font-size:18px;
  7205. }
  7206. #u20476 {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:935px;
  7210. top:203px;
  7211. width:200px;
  7212. height:25px;
  7213. display:flex;
  7214. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7215. font-weight:650;
  7216. font-style:normal;
  7217. font-size:18px;
  7218. }
  7219. #u20476 .text {
  7220. position:absolute;
  7221. align-self:flex-start;
  7222. padding:0px 0px 0px 0px;
  7223. box-sizing:border-box;
  7224. width:100%;
  7225. }
  7226. #u20476_text {
  7227. border-width:0px;
  7228. word-wrap:break-word;
  7229. text-transform:none;
  7230. }
  7231. #u20477 {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:0px;
  7235. top:0px;
  7236. width:0px;
  7237. height:0px;
  7238. }
  7239. #u20478_div {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:0px;
  7243. top:0px;
  7244. width:140px;
  7245. height:30px;
  7246. background:inherit;
  7247. background-color:rgba(255, 255, 255, 1);
  7248. box-sizing:border-box;
  7249. border-width:1px;
  7250. border-style:solid;
  7251. border-color:rgba(215, 215, 215, 1);
  7252. border-radius:2px;
  7253. -moz-box-shadow:none;
  7254. -webkit-box-shadow:none;
  7255. box-shadow:none;
  7256. font-size:11px;
  7257. }
  7258. #u20478 {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:1279px;
  7262. top:100px;
  7263. width:140px;
  7264. height:30px;
  7265. display:flex;
  7266. font-size:11px;
  7267. }
  7268. #u20478 .text {
  7269. position:absolute;
  7270. align-self:center;
  7271. padding:2px 2px 2px 2px;
  7272. box-sizing:border-box;
  7273. width:100%;
  7274. }
  7275. #u20478_text {
  7276. border-width:0px;
  7277. word-wrap:break-word;
  7278. text-transform:none;
  7279. visibility:hidden;
  7280. }
  7281. #u20479_input {
  7282. position:absolute;
  7283. left:0px;
  7284. top:0px;
  7285. width:126px;
  7286. height:23px;
  7287. padding:2px 2px 2px 2px;
  7288. font-family:'ArialMT', 'Arial', sans-serif;
  7289. font-weight:400;
  7290. font-style:normal;
  7291. font-size:11px;
  7292. letter-spacing:normal;
  7293. color:#AAAAAA;
  7294. vertical-align:none;
  7295. text-align:left;
  7296. text-transform:none;
  7297. background-color:transparent;
  7298. border-color:transparent;
  7299. }
  7300. #u20479_input.disabled {
  7301. position:absolute;
  7302. left:0px;
  7303. top:0px;
  7304. width:126px;
  7305. height:23px;
  7306. padding:2px 2px 2px 2px;
  7307. font-family:'ArialMT', 'Arial', sans-serif;
  7308. font-weight:400;
  7309. font-style:normal;
  7310. font-size:11px;
  7311. letter-spacing:normal;
  7312. color:#AAAAAA;
  7313. vertical-align:none;
  7314. text-align:left;
  7315. text-transform:none;
  7316. background-color:transparent;
  7317. border-color:transparent;
  7318. }
  7319. #u20479_div {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:0px;
  7323. top:0px;
  7324. width:126px;
  7325. height:23px;
  7326. background:inherit;
  7327. background-color:rgba(255, 255, 255, 1);
  7328. border:none;
  7329. border-radius:0px;
  7330. -moz-box-shadow:none;
  7331. -webkit-box-shadow:none;
  7332. box-shadow:none;
  7333. font-size:11px;
  7334. color:#AAAAAA;
  7335. }
  7336. #u20479 {
  7337. border-width:0px;
  7338. position:absolute;
  7339. left:1286px;
  7340. top:102px;
  7341. width:126px;
  7342. height:23px;
  7343. display:flex;
  7344. font-size:11px;
  7345. color:#AAAAAA;
  7346. }
  7347. #u20479 .text {
  7348. position:absolute;
  7349. align-self:flex-start;
  7350. padding:2px 2px 2px 2px;
  7351. box-sizing:border-box;
  7352. width:100%;
  7353. }
  7354. #u20479_div.disabled {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:0px;
  7358. top:0px;
  7359. width:126px;
  7360. height:23px;
  7361. background:inherit;
  7362. background-color:rgba(240, 240, 240, 1);
  7363. border:none;
  7364. border-radius:0px;
  7365. -moz-box-shadow:none;
  7366. -webkit-box-shadow:none;
  7367. box-shadow:none;
  7368. font-size:11px;
  7369. color:#AAAAAA;
  7370. }
  7371. #u20479.disabled {
  7372. }
  7373. .u20479_input_option {
  7374. font-size:11px;
  7375. }
  7376. #u20480 {
  7377. border-width:0px;
  7378. position:absolute;
  7379. left:0px;
  7380. top:0px;
  7381. width:0px;
  7382. height:0px;
  7383. }
  7384. #u20481_div {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:0px;
  7388. top:0px;
  7389. width:140px;
  7390. height:30px;
  7391. background:inherit;
  7392. background-color:rgba(255, 255, 255, 1);
  7393. box-sizing:border-box;
  7394. border-width:1px;
  7395. border-style:solid;
  7396. border-color:rgba(215, 215, 215, 1);
  7397. border-radius:2px;
  7398. -moz-box-shadow:none;
  7399. -webkit-box-shadow:none;
  7400. box-shadow:none;
  7401. font-size:11px;
  7402. }
  7403. #u20481 {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:829px;
  7407. top:100px;
  7408. width:140px;
  7409. height:30px;
  7410. display:flex;
  7411. font-size:11px;
  7412. }
  7413. #u20481 .text {
  7414. position:absolute;
  7415. align-self:center;
  7416. padding:2px 2px 2px 2px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u20481_text {
  7421. border-width:0px;
  7422. word-wrap:break-word;
  7423. text-transform:none;
  7424. visibility:hidden;
  7425. }
  7426. #u20482_input {
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:126px;
  7431. height:23px;
  7432. padding:2px 2px 2px 2px;
  7433. font-family:'ArialMT', 'Arial', sans-serif;
  7434. font-weight:400;
  7435. font-style:normal;
  7436. font-size:11px;
  7437. letter-spacing:normal;
  7438. color:#AAAAAA;
  7439. vertical-align:none;
  7440. text-align:left;
  7441. text-transform:none;
  7442. background-color:transparent;
  7443. border-color:transparent;
  7444. }
  7445. #u20482_input.disabled {
  7446. position:absolute;
  7447. left:0px;
  7448. top:0px;
  7449. width:126px;
  7450. height:23px;
  7451. padding:2px 2px 2px 2px;
  7452. font-family:'ArialMT', 'Arial', sans-serif;
  7453. font-weight:400;
  7454. font-style:normal;
  7455. font-size:11px;
  7456. letter-spacing:normal;
  7457. color:#AAAAAA;
  7458. vertical-align:none;
  7459. text-align:left;
  7460. text-transform:none;
  7461. background-color:transparent;
  7462. border-color:transparent;
  7463. }
  7464. #u20482_div {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:0px;
  7468. top:0px;
  7469. width:126px;
  7470. height:23px;
  7471. background:inherit;
  7472. background-color:rgba(255, 255, 255, 1);
  7473. border:none;
  7474. border-radius:0px;
  7475. -moz-box-shadow:none;
  7476. -webkit-box-shadow:none;
  7477. box-shadow:none;
  7478. font-size:11px;
  7479. color:#AAAAAA;
  7480. }
  7481. #u20482 {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:836px;
  7485. top:102px;
  7486. width:126px;
  7487. height:23px;
  7488. display:flex;
  7489. font-size:11px;
  7490. color:#AAAAAA;
  7491. }
  7492. #u20482 .text {
  7493. position:absolute;
  7494. align-self:flex-start;
  7495. padding:2px 2px 2px 2px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u20482_div.disabled {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:0px;
  7503. top:0px;
  7504. width:126px;
  7505. height:23px;
  7506. background:inherit;
  7507. background-color:rgba(240, 240, 240, 1);
  7508. border:none;
  7509. border-radius:0px;
  7510. -moz-box-shadow:none;
  7511. -webkit-box-shadow:none;
  7512. box-shadow:none;
  7513. font-size:11px;
  7514. color:#AAAAAA;
  7515. }
  7516. #u20482.disabled {
  7517. }
  7518. .u20482_input_option {
  7519. font-size:11px;
  7520. }
  7521. #u20483 {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:0px;
  7525. top:0px;
  7526. width:0px;
  7527. height:0px;
  7528. }
  7529. #u20484_div {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:0px;
  7533. top:0px;
  7534. width:140px;
  7535. height:30px;
  7536. background:inherit;
  7537. background-color:rgba(255, 255, 255, 1);
  7538. box-sizing:border-box;
  7539. border-width:1px;
  7540. border-style:solid;
  7541. border-color:rgba(215, 215, 215, 1);
  7542. border-radius:2px;
  7543. -moz-box-shadow:none;
  7544. -webkit-box-shadow:none;
  7545. box-shadow:none;
  7546. font-size:11px;
  7547. }
  7548. #u20484 {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:979px;
  7552. top:100px;
  7553. width:140px;
  7554. height:30px;
  7555. display:flex;
  7556. font-size:11px;
  7557. }
  7558. #u20484 .text {
  7559. position:absolute;
  7560. align-self:center;
  7561. padding:2px 2px 2px 2px;
  7562. box-sizing:border-box;
  7563. width:100%;
  7564. }
  7565. #u20484_text {
  7566. border-width:0px;
  7567. word-wrap:break-word;
  7568. text-transform:none;
  7569. visibility:hidden;
  7570. }
  7571. #u20485_input {
  7572. position:absolute;
  7573. left:0px;
  7574. top:0px;
  7575. width:126px;
  7576. height:23px;
  7577. padding:2px 2px 2px 2px;
  7578. font-family:'ArialMT', 'Arial', sans-serif;
  7579. font-weight:400;
  7580. font-style:normal;
  7581. font-size:11px;
  7582. letter-spacing:normal;
  7583. color:#AAAAAA;
  7584. vertical-align:none;
  7585. text-align:left;
  7586. text-transform:none;
  7587. background-color:transparent;
  7588. border-color:transparent;
  7589. }
  7590. #u20485_input.disabled {
  7591. position:absolute;
  7592. left:0px;
  7593. top:0px;
  7594. width:126px;
  7595. height:23px;
  7596. padding:2px 2px 2px 2px;
  7597. font-family:'ArialMT', 'Arial', sans-serif;
  7598. font-weight:400;
  7599. font-style:normal;
  7600. font-size:11px;
  7601. letter-spacing:normal;
  7602. color:#AAAAAA;
  7603. vertical-align:none;
  7604. text-align:left;
  7605. text-transform:none;
  7606. background-color:transparent;
  7607. border-color:transparent;
  7608. }
  7609. #u20485_div {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:0px;
  7613. top:0px;
  7614. width:126px;
  7615. height:23px;
  7616. background:inherit;
  7617. background-color:rgba(255, 255, 255, 1);
  7618. border:none;
  7619. border-radius:0px;
  7620. -moz-box-shadow:none;
  7621. -webkit-box-shadow:none;
  7622. box-shadow:none;
  7623. font-size:11px;
  7624. color:#AAAAAA;
  7625. }
  7626. #u20485 {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:986px;
  7630. top:102px;
  7631. width:126px;
  7632. height:23px;
  7633. display:flex;
  7634. font-size:11px;
  7635. color:#AAAAAA;
  7636. }
  7637. #u20485 .text {
  7638. position:absolute;
  7639. align-self:flex-start;
  7640. padding:2px 2px 2px 2px;
  7641. box-sizing:border-box;
  7642. width:100%;
  7643. }
  7644. #u20485_div.disabled {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:0px;
  7648. top:0px;
  7649. width:126px;
  7650. height:23px;
  7651. background:inherit;
  7652. background-color:rgba(240, 240, 240, 1);
  7653. border:none;
  7654. border-radius:0px;
  7655. -moz-box-shadow:none;
  7656. -webkit-box-shadow:none;
  7657. box-shadow:none;
  7658. font-size:11px;
  7659. color:#AAAAAA;
  7660. }
  7661. #u20485.disabled {
  7662. }
  7663. .u20485_input_option {
  7664. font-size:11px;
  7665. }
  7666. #u20486 {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:0px;
  7672. height:0px;
  7673. }
  7674. #u20487_div {
  7675. border-width:0px;
  7676. position:absolute;
  7677. left:0px;
  7678. top:0px;
  7679. width:140px;
  7680. height:30px;
  7681. background:inherit;
  7682. background-color:rgba(255, 255, 255, 1);
  7683. box-sizing:border-box;
  7684. border-width:1px;
  7685. border-style:solid;
  7686. border-color:rgba(215, 215, 215, 1);
  7687. border-radius:2px;
  7688. -moz-box-shadow:none;
  7689. -webkit-box-shadow:none;
  7690. box-shadow:none;
  7691. font-size:11px;
  7692. }
  7693. #u20487 {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:1129px;
  7697. top:100px;
  7698. width:140px;
  7699. height:30px;
  7700. display:flex;
  7701. font-size:11px;
  7702. }
  7703. #u20487 .text {
  7704. position:absolute;
  7705. align-self:center;
  7706. padding:2px 2px 2px 2px;
  7707. box-sizing:border-box;
  7708. width:100%;
  7709. }
  7710. #u20487_text {
  7711. border-width:0px;
  7712. word-wrap:break-word;
  7713. text-transform:none;
  7714. visibility:hidden;
  7715. }
  7716. #u20488_input {
  7717. position:absolute;
  7718. left:0px;
  7719. top:0px;
  7720. width:126px;
  7721. height:23px;
  7722. padding:2px 2px 2px 2px;
  7723. font-family:'ArialMT', 'Arial', sans-serif;
  7724. font-weight:400;
  7725. font-style:normal;
  7726. font-size:11px;
  7727. letter-spacing:normal;
  7728. color:#AAAAAA;
  7729. vertical-align:none;
  7730. text-align:left;
  7731. text-transform:none;
  7732. background-color:transparent;
  7733. border-color:transparent;
  7734. }
  7735. #u20488_input.disabled {
  7736. position:absolute;
  7737. left:0px;
  7738. top:0px;
  7739. width:126px;
  7740. height:23px;
  7741. padding:2px 2px 2px 2px;
  7742. font-family:'ArialMT', 'Arial', sans-serif;
  7743. font-weight:400;
  7744. font-style:normal;
  7745. font-size:11px;
  7746. letter-spacing:normal;
  7747. color:#AAAAAA;
  7748. vertical-align:none;
  7749. text-align:left;
  7750. text-transform:none;
  7751. background-color:transparent;
  7752. border-color:transparent;
  7753. }
  7754. #u20488_div {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:126px;
  7760. height:23px;
  7761. background:inherit;
  7762. background-color:rgba(255, 255, 255, 1);
  7763. border:none;
  7764. border-radius:0px;
  7765. -moz-box-shadow:none;
  7766. -webkit-box-shadow:none;
  7767. box-shadow:none;
  7768. font-size:11px;
  7769. color:#AAAAAA;
  7770. }
  7771. #u20488 {
  7772. border-width:0px;
  7773. position:absolute;
  7774. left:1136px;
  7775. top:102px;
  7776. width:126px;
  7777. height:23px;
  7778. display:flex;
  7779. font-size:11px;
  7780. color:#AAAAAA;
  7781. }
  7782. #u20488 .text {
  7783. position:absolute;
  7784. align-self:flex-start;
  7785. padding:2px 2px 2px 2px;
  7786. box-sizing:border-box;
  7787. width:100%;
  7788. }
  7789. #u20488_div.disabled {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:0px;
  7793. top:0px;
  7794. width:126px;
  7795. height:23px;
  7796. background:inherit;
  7797. background-color:rgba(240, 240, 240, 1);
  7798. border:none;
  7799. border-radius:0px;
  7800. -moz-box-shadow:none;
  7801. -webkit-box-shadow:none;
  7802. box-shadow:none;
  7803. font-size:11px;
  7804. color:#AAAAAA;
  7805. }
  7806. #u20488.disabled {
  7807. }
  7808. .u20488_input_option {
  7809. font-size:11px;
  7810. }
  7811. #u20489_div {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:200px;
  7817. height:20px;
  7818. background:inherit;
  7819. background-color:rgba(255, 255, 255, 0);
  7820. border:none;
  7821. border-radius:0px;
  7822. -moz-box-shadow:none;
  7823. -webkit-box-shadow:none;
  7824. box-shadow:none;
  7825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7826. font-weight:400;
  7827. font-style:normal;
  7828. font-size:14px;
  7829. }
  7830. #u20489 {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:1129px;
  7834. top:170px;
  7835. width:200px;
  7836. height:20px;
  7837. display:flex;
  7838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7839. font-weight:400;
  7840. font-style:normal;
  7841. font-size:14px;
  7842. }
  7843. #u20489 .text {
  7844. position:absolute;
  7845. align-self:flex-start;
  7846. padding:0px 0px 0px 0px;
  7847. box-sizing:border-box;
  7848. width:100%;
  7849. }
  7850. #u20489_text {
  7851. border-width:0px;
  7852. word-wrap:break-word;
  7853. text-transform:none;
  7854. }
  7855. #u20490_div {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:0px;
  7859. top:0px;
  7860. width:200px;
  7861. height:25px;
  7862. background:inherit;
  7863. background-color:rgba(255, 255, 255, 0);
  7864. border:none;
  7865. border-radius:0px;
  7866. -moz-box-shadow:none;
  7867. -webkit-box-shadow:none;
  7868. box-shadow:none;
  7869. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7870. font-weight:650;
  7871. font-style:normal;
  7872. font-size:18px;
  7873. }
  7874. #u20490 {
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:1129px;
  7878. top:203px;
  7879. width:200px;
  7880. height:25px;
  7881. display:flex;
  7882. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7883. font-weight:650;
  7884. font-style:normal;
  7885. font-size:18px;
  7886. }
  7887. #u20490 .text {
  7888. position:absolute;
  7889. align-self:flex-start;
  7890. padding:0px 0px 0px 0px;
  7891. box-sizing:border-box;
  7892. width:100%;
  7893. }
  7894. #u20490_text {
  7895. border-width:0px;
  7896. word-wrap:break-word;
  7897. text-transform:none;
  7898. }
  7899. #u20491_div {
  7900. border-width:0px;
  7901. position:absolute;
  7902. left:0px;
  7903. top:0px;
  7904. width:200px;
  7905. height:20px;
  7906. background:inherit;
  7907. background-color:rgba(255, 255, 255, 0);
  7908. border:none;
  7909. border-radius:0px;
  7910. -moz-box-shadow:none;
  7911. -webkit-box-shadow:none;
  7912. box-shadow:none;
  7913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7914. font-weight:400;
  7915. font-style:normal;
  7916. font-size:14px;
  7917. }
  7918. #u20491 {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:1305px;
  7922. top:170px;
  7923. width:200px;
  7924. height:20px;
  7925. display:flex;
  7926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7927. font-weight:400;
  7928. font-style:normal;
  7929. font-size:14px;
  7930. }
  7931. #u20491 .text {
  7932. position:absolute;
  7933. align-self:flex-start;
  7934. padding:0px 0px 0px 0px;
  7935. box-sizing:border-box;
  7936. width:100%;
  7937. }
  7938. #u20491_text {
  7939. border-width:0px;
  7940. word-wrap:break-word;
  7941. text-transform:none;
  7942. }
  7943. #u20492_div {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:0px;
  7947. top:0px;
  7948. width:200px;
  7949. height:25px;
  7950. background:inherit;
  7951. background-color:rgba(255, 255, 255, 0);
  7952. border:none;
  7953. border-radius:0px;
  7954. -moz-box-shadow:none;
  7955. -webkit-box-shadow:none;
  7956. box-shadow:none;
  7957. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7958. font-weight:650;
  7959. font-style:normal;
  7960. font-size:18px;
  7961. }
  7962. #u20492 {
  7963. border-width:0px;
  7964. position:absolute;
  7965. left:1305px;
  7966. top:203px;
  7967. width:200px;
  7968. height:25px;
  7969. display:flex;
  7970. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7971. font-weight:650;
  7972. font-style:normal;
  7973. font-size:18px;
  7974. }
  7975. #u20492 .text {
  7976. position:absolute;
  7977. align-self:flex-start;
  7978. padding:0px 0px 0px 0px;
  7979. box-sizing:border-box;
  7980. width:100%;
  7981. }
  7982. #u20492_text {
  7983. border-width:0px;
  7984. word-wrap:break-word;
  7985. text-transform:none;
  7986. }
  7987. #u20493_div {
  7988. border-width:0px;
  7989. position:absolute;
  7990. left:0px;
  7991. top:0px;
  7992. width:239px;
  7993. height:30px;
  7994. background:inherit;
  7995. background-color:rgba(255, 255, 255, 0);
  7996. border:none;
  7997. border-left:0px;
  7998. border-top:0px;
  7999. border-right:0px;
  8000. border-radius:0px;
  8001. border-bottom-right-radius:0px;
  8002. border-bottom-left-radius:0px;
  8003. -moz-box-shadow:none;
  8004. -webkit-box-shadow:none;
  8005. box-shadow:none;
  8006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8007. font-weight:400;
  8008. font-style:normal;
  8009. font-size:14px;
  8010. color:#D9001B;
  8011. line-height:30px;
  8012. }
  8013. #u20493 {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:429px;
  8017. top:765px;
  8018. width:239px;
  8019. height:30px;
  8020. display:flex;
  8021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8022. font-weight:400;
  8023. font-style:normal;
  8024. font-size:14px;
  8025. color:#D9001B;
  8026. line-height:30px;
  8027. }
  8028. #u20493 .text {
  8029. position:absolute;
  8030. align-self:flex-start;
  8031. padding:0px 0px 0px 0px;
  8032. box-sizing:border-box;
  8033. width:100%;
  8034. }
  8035. #u20493_text {
  8036. border-width:0px;
  8037. white-space:nowrap;
  8038. text-transform:none;
  8039. }
  8040. #u20494_div {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:0px;
  8044. top:0px;
  8045. width:1381px;
  8046. height:1150px;
  8047. background:inherit;
  8048. background-color:rgba(255, 255, 255, 1);
  8049. border:none;
  8050. border-radius:0px;
  8051. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  8052. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  8053. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  8054. }
  8055. #u20494 {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:1631px;
  8059. top:50px;
  8060. width:1381px;
  8061. height:1150px;
  8062. display:flex;
  8063. }
  8064. #u20494 .text {
  8065. position:absolute;
  8066. align-self:center;
  8067. padding:2px 2px 2px 2px;
  8068. box-sizing:border-box;
  8069. width:100%;
  8070. }
  8071. #u20494_text {
  8072. border-width:0px;
  8073. word-wrap:break-word;
  8074. text-transform:none;
  8075. visibility:hidden;
  8076. }
  8077. #u20495 {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:0px;
  8081. top:0px;
  8082. width:0px;
  8083. height:0px;
  8084. }
  8085. #u20496_div {
  8086. border-width:0px;
  8087. position:absolute;
  8088. left:0px;
  8089. top:0px;
  8090. width:101px;
  8091. height:21px;
  8092. background:inherit;
  8093. background-color:rgba(255, 255, 255, 0);
  8094. border:none;
  8095. border-left:0px;
  8096. border-radius:0px;
  8097. border-top-left-radius:0px;
  8098. border-bottom-left-radius:0px;
  8099. -moz-box-shadow:none;
  8100. -webkit-box-shadow:none;
  8101. box-shadow:none;
  8102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8103. font-weight:400;
  8104. font-style:normal;
  8105. font-size:12px;
  8106. text-align:left;
  8107. }
  8108. #u20496 {
  8109. border-width:0px;
  8110. position:absolute;
  8111. left:1661px;
  8112. top:289px;
  8113. width:101px;
  8114. height:21px;
  8115. display:flex;
  8116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8117. font-weight:400;
  8118. font-style:normal;
  8119. font-size:12px;
  8120. text-align:left;
  8121. }
  8122. #u20496 .text {
  8123. position:absolute;
  8124. align-self:center;
  8125. padding:2px 2px 2px 2px;
  8126. box-sizing:border-box;
  8127. width:100%;
  8128. }
  8129. #u20496_text {
  8130. border-width:0px;
  8131. white-space:nowrap;
  8132. text-transform:none;
  8133. }
  8134. #u20497_img {
  8135. border-width:0px;
  8136. position:absolute;
  8137. left:0px;
  8138. top:0px;
  8139. width:12px;
  8140. height:12px;
  8141. }
  8142. #u20497 {
  8143. border-width:0px;
  8144. position:absolute;
  8145. left:1762px;
  8146. top:294px;
  8147. width:12px;
  8148. height:12px;
  8149. display:flex;
  8150. }
  8151. #u20497 .text {
  8152. position:absolute;
  8153. align-self:center;
  8154. padding:2px 2px 2px 2px;
  8155. box-sizing:border-box;
  8156. width:100%;
  8157. }
  8158. #u20497_text {
  8159. border-width:0px;
  8160. word-wrap:break-word;
  8161. text-transform:none;
  8162. visibility:hidden;
  8163. }
  8164. #u20498 {
  8165. border-width:0px;
  8166. position:absolute;
  8167. left:0px;
  8168. top:0px;
  8169. width:0px;
  8170. height:0px;
  8171. }
  8172. #u20499_div {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:0px;
  8176. top:0px;
  8177. width:46px;
  8178. height:24px;
  8179. background:inherit;
  8180. background-color:rgba(0, 153, 255, 0);
  8181. box-sizing:border-box;
  8182. border-width:1px;
  8183. border-style:solid;
  8184. border-color:rgba(170, 170, 170, 1);
  8185. border-right:0px;
  8186. border-radius:4px;
  8187. border-top-right-radius:0px;
  8188. border-bottom-right-radius:0px;
  8189. -moz-box-shadow:none;
  8190. -webkit-box-shadow:none;
  8191. box-shadow:none;
  8192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8193. font-weight:400;
  8194. font-style:normal;
  8195. font-size:12px;
  8196. color:#555555;
  8197. }
  8198. #u20499 {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:2890px;
  8202. top:288px;
  8203. width:46px;
  8204. height:24px;
  8205. display:flex;
  8206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8207. font-weight:400;
  8208. font-style:normal;
  8209. font-size:12px;
  8210. color:#555555;
  8211. }
  8212. #u20499 .text {
  8213. position:absolute;
  8214. align-self:center;
  8215. padding:0px 0px 0px 0px;
  8216. box-sizing:border-box;
  8217. width:100%;
  8218. }
  8219. #u20499_text {
  8220. border-width:0px;
  8221. word-wrap:break-word;
  8222. text-transform:none;
  8223. }
  8224. #u20500_div {
  8225. border-width:0px;
  8226. position:absolute;
  8227. left:0px;
  8228. top:0px;
  8229. width:46px;
  8230. height:24px;
  8231. background:inherit;
  8232. background-color:rgba(0, 137, 254, 1);
  8233. box-sizing:border-box;
  8234. border-width:1px;
  8235. border-style:solid;
  8236. border-color:rgba(170, 170, 170, 1);
  8237. border-left:0px;
  8238. border-radius:4px;
  8239. border-top-left-radius:0px;
  8240. border-bottom-left-radius:0px;
  8241. -moz-box-shadow:none;
  8242. -webkit-box-shadow:none;
  8243. box-shadow:none;
  8244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8245. font-weight:400;
  8246. font-style:normal;
  8247. font-size:12px;
  8248. color:#FFFFFF;
  8249. }
  8250. #u20500 {
  8251. border-width:0px;
  8252. position:absolute;
  8253. left:2936px;
  8254. top:288px;
  8255. width:46px;
  8256. height:24px;
  8257. display:flex;
  8258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8259. font-weight:400;
  8260. font-style:normal;
  8261. font-size:12px;
  8262. color:#FFFFFF;
  8263. }
  8264. #u20500 .text {
  8265. position:absolute;
  8266. align-self:center;
  8267. padding:0px 0px 0px 0px;
  8268. box-sizing:border-box;
  8269. width:100%;
  8270. }
  8271. #u20500_text {
  8272. border-width:0px;
  8273. word-wrap:break-word;
  8274. text-transform:none;
  8275. }
  8276. #u20501_div {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:0px;
  8280. top:0px;
  8281. width:57px;
  8282. height:50px;
  8283. background:inherit;
  8284. background-color:rgba(255, 255, 255, 0);
  8285. border:none;
  8286. border-left:0px;
  8287. border-top:0px;
  8288. border-right:0px;
  8289. border-radius:0px;
  8290. border-bottom-right-radius:0px;
  8291. border-bottom-left-radius:0px;
  8292. -moz-box-shadow:none;
  8293. -webkit-box-shadow:none;
  8294. box-shadow:none;
  8295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8296. font-weight:400;
  8297. font-style:normal;
  8298. font-size:14px;
  8299. }
  8300. #u20501 {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:1651px;
  8304. top:50px;
  8305. width:57px;
  8306. height:50px;
  8307. display:flex;
  8308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8309. font-weight:400;
  8310. font-style:normal;
  8311. font-size:14px;
  8312. }
  8313. #u20501 .text {
  8314. position:absolute;
  8315. align-self:center;
  8316. padding:0px 0px 0px 0px;
  8317. box-sizing:border-box;
  8318. width:100%;
  8319. }
  8320. #u20501_text {
  8321. border-width:0px;
  8322. white-space:nowrap;
  8323. text-transform:none;
  8324. }
  8325. #u20502 {
  8326. border-width:0px;
  8327. position:absolute;
  8328. left:0px;
  8329. top:0px;
  8330. width:0px;
  8331. height:0px;
  8332. }
  8333. #u20503_div {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:0px;
  8337. top:0px;
  8338. width:8px;
  8339. height:135px;
  8340. background:inherit;
  8341. background-color:rgba(0, 92, 249, 1);
  8342. border:none;
  8343. border-radius:0px;
  8344. -moz-box-shadow:none;
  8345. -webkit-box-shadow:none;
  8346. box-shadow:none;
  8347. }
  8348. #u20503 {
  8349. border-width:0px;
  8350. position:absolute;
  8351. left:1691px;
  8352. top:589px;
  8353. width:8px;
  8354. height:135px;
  8355. display:flex;
  8356. }
  8357. #u20503 .text {
  8358. position:absolute;
  8359. align-self:center;
  8360. padding:2px 2px 2px 2px;
  8361. box-sizing:border-box;
  8362. width:100%;
  8363. }
  8364. #u20503_text {
  8365. border-width:0px;
  8366. word-wrap:break-word;
  8367. text-transform:none;
  8368. visibility:hidden;
  8369. }
  8370. #u20504_div {
  8371. border-width:0px;
  8372. position:absolute;
  8373. left:0px;
  8374. top:0px;
  8375. width:8px;
  8376. height:26px;
  8377. background:inherit;
  8378. background-color:rgba(245, 154, 35, 1);
  8379. border:none;
  8380. border-radius:0px;
  8381. -moz-box-shadow:none;
  8382. -webkit-box-shadow:none;
  8383. box-shadow:none;
  8384. }
  8385. #u20504 {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:1699px;
  8389. top:698px;
  8390. width:8px;
  8391. height:26px;
  8392. display:flex;
  8393. }
  8394. #u20504 .text {
  8395. position:absolute;
  8396. align-self:center;
  8397. padding:2px 2px 2px 2px;
  8398. box-sizing:border-box;
  8399. width:100%;
  8400. }
  8401. #u20504_text {
  8402. border-width:0px;
  8403. word-wrap:break-word;
  8404. text-transform:none;
  8405. visibility:hidden;
  8406. }
  8407. #u20505_div {
  8408. border-width:0px;
  8409. position:absolute;
  8410. left:0px;
  8411. top:0px;
  8412. width:8px;
  8413. height:22px;
  8414. background:inherit;
  8415. background-color:rgba(236, 128, 141, 1);
  8416. border:none;
  8417. border-radius:0px;
  8418. -moz-box-shadow:none;
  8419. -webkit-box-shadow:none;
  8420. box-shadow:none;
  8421. }
  8422. #u20505 {
  8423. border-width:0px;
  8424. position:absolute;
  8425. left:1715px;
  8426. top:702px;
  8427. width:8px;
  8428. height:22px;
  8429. display:flex;
  8430. }
  8431. #u20505 .text {
  8432. position:absolute;
  8433. align-self:center;
  8434. padding:2px 2px 2px 2px;
  8435. box-sizing:border-box;
  8436. width:100%;
  8437. }
  8438. #u20505_text {
  8439. border-width:0px;
  8440. word-wrap:break-word;
  8441. text-transform:none;
  8442. visibility:hidden;
  8443. }
  8444. #u20506_div {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:0px;
  8448. top:0px;
  8449. width:8px;
  8450. height:87px;
  8451. background:inherit;
  8452. background-color:rgba(1, 215, 210, 1);
  8453. border:none;
  8454. border-radius:0px;
  8455. -moz-box-shadow:none;
  8456. -webkit-box-shadow:none;
  8457. box-shadow:none;
  8458. }
  8459. #u20506 {
  8460. border-width:0px;
  8461. position:absolute;
  8462. left:1724px;
  8463. top:637px;
  8464. width:8px;
  8465. height:87px;
  8466. display:flex;
  8467. }
  8468. #u20506 .text {
  8469. position:absolute;
  8470. align-self:center;
  8471. padding:2px 2px 2px 2px;
  8472. box-sizing:border-box;
  8473. width:100%;
  8474. }
  8475. #u20506_text {
  8476. border-width:0px;
  8477. word-wrap:break-word;
  8478. text-transform:none;
  8479. visibility:hidden;
  8480. }
  8481. #u20507_div {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:0px;
  8485. top:0px;
  8486. width:8px;
  8487. height:109px;
  8488. background:inherit;
  8489. background-color:rgba(0, 177, 255, 1);
  8490. border:none;
  8491. border-radius:0px;
  8492. -moz-box-shadow:none;
  8493. -webkit-box-shadow:none;
  8494. box-shadow:none;
  8495. }
  8496. #u20507 {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:1707px;
  8500. top:615px;
  8501. width:8px;
  8502. height:109px;
  8503. display:flex;
  8504. }
  8505. #u20507 .text {
  8506. position:absolute;
  8507. align-self:center;
  8508. padding:2px 2px 2px 2px;
  8509. box-sizing:border-box;
  8510. width:100%;
  8511. }
  8512. #u20507_text {
  8513. border-width:0px;
  8514. word-wrap:break-word;
  8515. text-transform:none;
  8516. visibility:hidden;
  8517. }
  8518. #u20508_div {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:0px;
  8522. top:0px;
  8523. width:42px;
  8524. height:17px;
  8525. background:inherit;
  8526. background-color:rgba(255, 255, 255, 0);
  8527. border:none;
  8528. border-radius:0px;
  8529. -moz-box-shadow:none;
  8530. -webkit-box-shadow:none;
  8531. box-shadow:none;
  8532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8533. font-weight:400;
  8534. font-style:normal;
  8535. font-size:12px;
  8536. text-align:center;
  8537. }
  8538. #u20508 {
  8539. border-width:0px;
  8540. position:absolute;
  8541. left:1691px;
  8542. top:735px;
  8543. width:42px;
  8544. height:17px;
  8545. display:flex;
  8546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8547. font-weight:400;
  8548. font-style:normal;
  8549. font-size:12px;
  8550. text-align:center;
  8551. }
  8552. #u20508 .text {
  8553. position:absolute;
  8554. align-self:flex-start;
  8555. padding:0px 0px 0px 0px;
  8556. box-sizing:border-box;
  8557. width:100%;
  8558. }
  8559. #u20508_text {
  8560. border-width:0px;
  8561. word-wrap:break-word;
  8562. text-transform:none;
  8563. }
  8564. #u20509_img {
  8565. border-width:0px;
  8566. position:absolute;
  8567. left:-2px;
  8568. top:-2px;
  8569. width:6px;
  8570. height:333px;
  8571. }
  8572. #u20509 {
  8573. border-width:0px;
  8574. position:absolute;
  8575. left:2020px;
  8576. top:395px;
  8577. width:1px;
  8578. height:328px;
  8579. display:flex;
  8580. }
  8581. #u20509 .text {
  8582. position:absolute;
  8583. align-self:center;
  8584. padding:2px 2px 2px 2px;
  8585. box-sizing:border-box;
  8586. width:100%;
  8587. }
  8588. #u20509_text {
  8589. border-width:0px;
  8590. word-wrap:break-word;
  8591. text-transform:none;
  8592. visibility:hidden;
  8593. }
  8594. #u20510_img {
  8595. border-width:0px;
  8596. position:absolute;
  8597. left:0px;
  8598. top:0px;
  8599. width:1285px;
  8600. height:2px;
  8601. }
  8602. #u20510 {
  8603. border-width:0px;
  8604. position:absolute;
  8605. left:1665px;
  8606. top:725px;
  8607. width:1284px;
  8608. height:1px;
  8609. display:flex;
  8610. }
  8611. #u20510 .text {
  8612. position:absolute;
  8613. align-self:center;
  8614. padding:2px 2px 2px 2px;
  8615. box-sizing:border-box;
  8616. width:100%;
  8617. }
  8618. #u20510_text {
  8619. border-width:0px;
  8620. word-wrap:break-word;
  8621. text-transform:none;
  8622. visibility:hidden;
  8623. }
  8624. #u20511 {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:0px;
  8628. top:0px;
  8629. width:0px;
  8630. height:0px;
  8631. }
  8632. #u20512_img {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:0px;
  8636. top:0px;
  8637. width:31px;
  8638. height:2px;
  8639. }
  8640. #u20512 {
  8641. border-width:0px;
  8642. position:absolute;
  8643. left:2854px;
  8644. top:349px;
  8645. width:30px;
  8646. height:1px;
  8647. display:flex;
  8648. }
  8649. #u20512 .text {
  8650. position:absolute;
  8651. align-self:center;
  8652. padding:2px 2px 2px 2px;
  8653. box-sizing:border-box;
  8654. width:100%;
  8655. }
  8656. #u20512_text {
  8657. border-width:0px;
  8658. word-wrap:break-word;
  8659. text-transform:none;
  8660. visibility:hidden;
  8661. }
  8662. #u20513_div {
  8663. border-width:0px;
  8664. position:absolute;
  8665. left:0px;
  8666. top:0px;
  8667. width:59px;
  8668. height:27px;
  8669. background:inherit;
  8670. background-color:rgba(255, 255, 255, 0);
  8671. border:none;
  8672. border-radius:31px;
  8673. -moz-box-shadow:none;
  8674. -webkit-box-shadow:none;
  8675. box-shadow:none;
  8676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8677. font-weight:400;
  8678. font-style:normal;
  8679. font-size:12px;
  8680. }
  8681. #u20513 {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:2894px;
  8685. top:336px;
  8686. width:59px;
  8687. height:27px;
  8688. display:flex;
  8689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8690. font-weight:400;
  8691. font-style:normal;
  8692. font-size:12px;
  8693. }
  8694. #u20513 .text {
  8695. position:absolute;
  8696. align-self:center;
  8697. padding:5px 10px 5px 0px;
  8698. box-sizing:border-box;
  8699. width:100%;
  8700. }
  8701. #u20513_text {
  8702. border-width:0px;
  8703. white-space:nowrap;
  8704. text-transform:none;
  8705. }
  8706. #u20514_div {
  8707. border-width:0px;
  8708. position:absolute;
  8709. left:0px;
  8710. top:0px;
  8711. width:1336px;
  8712. height:100px;
  8713. background:inherit;
  8714. background-color:rgba(242, 242, 242, 1);
  8715. border:none;
  8716. border-radius:5px;
  8717. -moz-box-shadow:none;
  8718. -webkit-box-shadow:none;
  8719. box-shadow:none;
  8720. color:#1890FF;
  8721. }
  8722. #u20514 {
  8723. border-width:0px;
  8724. position:absolute;
  8725. left:1651px;
  8726. top:150px;
  8727. width:1336px;
  8728. height:100px;
  8729. display:flex;
  8730. color:#1890FF;
  8731. }
  8732. #u20514 .text {
  8733. position:absolute;
  8734. align-self:center;
  8735. padding:2px 2px 2px 2px;
  8736. box-sizing:border-box;
  8737. width:100%;
  8738. }
  8739. #u20514_text {
  8740. border-width:0px;
  8741. word-wrap:break-word;
  8742. text-transform:none;
  8743. visibility:hidden;
  8744. }
  8745. #u20515_div {
  8746. border-width:0px;
  8747. position:absolute;
  8748. left:0px;
  8749. top:0px;
  8750. width:200px;
  8751. height:20px;
  8752. background:inherit;
  8753. background-color:rgba(255, 255, 255, 0);
  8754. border:none;
  8755. border-radius:0px;
  8756. -moz-box-shadow:none;
  8757. -webkit-box-shadow:none;
  8758. box-shadow:none;
  8759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8760. font-weight:400;
  8761. font-style:normal;
  8762. font-size:14px;
  8763. }
  8764. #u20515 {
  8765. border-width:0px;
  8766. position:absolute;
  8767. left:1905px;
  8768. top:170px;
  8769. width:200px;
  8770. height:20px;
  8771. display:flex;
  8772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8773. font-weight:400;
  8774. font-style:normal;
  8775. font-size:14px;
  8776. }
  8777. #u20515 .text {
  8778. position:absolute;
  8779. align-self:flex-start;
  8780. padding:0px 0px 0px 0px;
  8781. box-sizing:border-box;
  8782. width:100%;
  8783. }
  8784. #u20515_text {
  8785. border-width:0px;
  8786. word-wrap:break-word;
  8787. text-transform:none;
  8788. }
  8789. #u20516_div {
  8790. border-width:0px;
  8791. position:absolute;
  8792. left:0px;
  8793. top:0px;
  8794. width:200px;
  8795. height:25px;
  8796. background:inherit;
  8797. background-color:rgba(255, 255, 255, 0);
  8798. border:none;
  8799. border-radius:0px;
  8800. -moz-box-shadow:none;
  8801. -webkit-box-shadow:none;
  8802. box-shadow:none;
  8803. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8804. font-weight:650;
  8805. font-style:normal;
  8806. font-size:18px;
  8807. }
  8808. #u20516 {
  8809. border-width:0px;
  8810. position:absolute;
  8811. left:1905px;
  8812. top:203px;
  8813. width:200px;
  8814. height:25px;
  8815. display:flex;
  8816. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8817. font-weight:650;
  8818. font-style:normal;
  8819. font-size:18px;
  8820. }
  8821. #u20516 .text {
  8822. position:absolute;
  8823. align-self:flex-start;
  8824. padding:0px 0px 0px 0px;
  8825. box-sizing:border-box;
  8826. width:100%;
  8827. }
  8828. #u20516_text {
  8829. border-width:0px;
  8830. word-wrap:break-word;
  8831. text-transform:none;
  8832. }
  8833. #u20517_div {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:0px;
  8837. top:0px;
  8838. width:200px;
  8839. height:20px;
  8840. background:inherit;
  8841. background-color:rgba(255, 255, 255, 0);
  8842. border:none;
  8843. border-radius:0px;
  8844. -moz-box-shadow:none;
  8845. -webkit-box-shadow:none;
  8846. box-shadow:none;
  8847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8848. font-weight:400;
  8849. font-style:normal;
  8850. font-size:14px;
  8851. }
  8852. #u20517 {
  8853. border-width:0px;
  8854. position:absolute;
  8855. left:1684px;
  8856. top:170px;
  8857. width:200px;
  8858. height:20px;
  8859. display:flex;
  8860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8861. font-weight:400;
  8862. font-style:normal;
  8863. font-size:14px;
  8864. }
  8865. #u20517 .text {
  8866. position:absolute;
  8867. align-self:flex-start;
  8868. padding:0px 0px 0px 0px;
  8869. box-sizing:border-box;
  8870. width:100%;
  8871. }
  8872. #u20517_text {
  8873. border-width:0px;
  8874. word-wrap:break-word;
  8875. text-transform:none;
  8876. }
  8877. #u20518_div {
  8878. border-width:0px;
  8879. position:absolute;
  8880. left:0px;
  8881. top:0px;
  8882. width:200px;
  8883. height:25px;
  8884. background:inherit;
  8885. background-color:rgba(255, 255, 255, 0);
  8886. border:none;
  8887. border-radius:0px;
  8888. -moz-box-shadow:none;
  8889. -webkit-box-shadow:none;
  8890. box-shadow:none;
  8891. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8892. font-weight:650;
  8893. font-style:normal;
  8894. font-size:18px;
  8895. }
  8896. #u20518 {
  8897. border-width:0px;
  8898. position:absolute;
  8899. left:1684px;
  8900. top:203px;
  8901. width:200px;
  8902. height:25px;
  8903. display:flex;
  8904. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8905. font-weight:650;
  8906. font-style:normal;
  8907. font-size:18px;
  8908. }
  8909. #u20518 .text {
  8910. position:absolute;
  8911. align-self:flex-start;
  8912. padding:0px 0px 0px 0px;
  8913. box-sizing:border-box;
  8914. width:100%;
  8915. }
  8916. #u20518_text {
  8917. border-width:0px;
  8918. word-wrap:break-word;
  8919. text-transform:none;
  8920. }
  8921. #u20519_div {
  8922. border-width:0px;
  8923. position:absolute;
  8924. left:0px;
  8925. top:0px;
  8926. width:200px;
  8927. height:20px;
  8928. background:inherit;
  8929. background-color:rgba(255, 255, 255, 0);
  8930. border:none;
  8931. border-radius:0px;
  8932. -moz-box-shadow:none;
  8933. -webkit-box-shadow:none;
  8934. box-shadow:none;
  8935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8936. font-weight:400;
  8937. font-style:normal;
  8938. font-size:14px;
  8939. }
  8940. #u20519 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:2125px;
  8944. top:170px;
  8945. width:200px;
  8946. height:20px;
  8947. display:flex;
  8948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8949. font-weight:400;
  8950. font-style:normal;
  8951. font-size:14px;
  8952. }
  8953. #u20519 .text {
  8954. position:absolute;
  8955. align-self:flex-start;
  8956. padding:0px 0px 0px 0px;
  8957. box-sizing:border-box;
  8958. width:100%;
  8959. }
  8960. #u20519_text {
  8961. border-width:0px;
  8962. word-wrap:break-word;
  8963. text-transform:none;
  8964. }
  8965. #u20520_div {
  8966. border-width:0px;
  8967. position:absolute;
  8968. left:0px;
  8969. top:0px;
  8970. width:200px;
  8971. height:25px;
  8972. background:inherit;
  8973. background-color:rgba(255, 255, 255, 0);
  8974. border:none;
  8975. border-radius:0px;
  8976. -moz-box-shadow:none;
  8977. -webkit-box-shadow:none;
  8978. box-shadow:none;
  8979. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8980. font-weight:650;
  8981. font-style:normal;
  8982. font-size:18px;
  8983. }
  8984. #u20520 {
  8985. border-width:0px;
  8986. position:absolute;
  8987. left:2125px;
  8988. top:203px;
  8989. width:200px;
  8990. height:25px;
  8991. display:flex;
  8992. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8993. font-weight:650;
  8994. font-style:normal;
  8995. font-size:18px;
  8996. }
  8997. #u20520 .text {
  8998. position:absolute;
  8999. align-self:flex-start;
  9000. padding:0px 0px 0px 0px;
  9001. box-sizing:border-box;
  9002. width:100%;
  9003. }
  9004. #u20520_text {
  9005. border-width:0px;
  9006. word-wrap:break-word;
  9007. text-transform:none;
  9008. }
  9009. #u20521_div {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:0px;
  9013. top:0px;
  9014. width:200px;
  9015. height:20px;
  9016. background:inherit;
  9017. background-color:rgba(255, 255, 255, 0);
  9018. border:none;
  9019. border-radius:0px;
  9020. -moz-box-shadow:none;
  9021. -webkit-box-shadow:none;
  9022. box-shadow:none;
  9023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9024. font-weight:400;
  9025. font-style:normal;
  9026. font-size:14px;
  9027. }
  9028. #u20521 {
  9029. border-width:0px;
  9030. position:absolute;
  9031. left:2346px;
  9032. top:170px;
  9033. width:200px;
  9034. height:20px;
  9035. display:flex;
  9036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9037. font-weight:400;
  9038. font-style:normal;
  9039. font-size:14px;
  9040. }
  9041. #u20521 .text {
  9042. position:absolute;
  9043. align-self:flex-start;
  9044. padding:0px 0px 0px 0px;
  9045. box-sizing:border-box;
  9046. width:100%;
  9047. }
  9048. #u20521_text {
  9049. border-width:0px;
  9050. word-wrap:break-word;
  9051. text-transform:none;
  9052. }
  9053. #u20522_div {
  9054. border-width:0px;
  9055. position:absolute;
  9056. left:0px;
  9057. top:0px;
  9058. width:200px;
  9059. height:25px;
  9060. background:inherit;
  9061. background-color:rgba(255, 255, 255, 0);
  9062. border:none;
  9063. border-radius:0px;
  9064. -moz-box-shadow:none;
  9065. -webkit-box-shadow:none;
  9066. box-shadow:none;
  9067. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9068. font-weight:650;
  9069. font-style:normal;
  9070. font-size:18px;
  9071. }
  9072. #u20522 {
  9073. border-width:0px;
  9074. position:absolute;
  9075. left:2346px;
  9076. top:203px;
  9077. width:200px;
  9078. height:25px;
  9079. display:flex;
  9080. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9081. font-weight:650;
  9082. font-style:normal;
  9083. font-size:18px;
  9084. }
  9085. #u20522 .text {
  9086. position:absolute;
  9087. align-self:flex-start;
  9088. padding:0px 0px 0px 0px;
  9089. box-sizing:border-box;
  9090. width:100%;
  9091. }
  9092. #u20522_text {
  9093. border-width:0px;
  9094. word-wrap:break-word;
  9095. text-transform:none;
  9096. }
  9097. #u20523_div {
  9098. border-width:0px;
  9099. position:absolute;
  9100. left:0px;
  9101. top:0px;
  9102. width:200px;
  9103. height:20px;
  9104. background:inherit;
  9105. background-color:rgba(255, 255, 255, 0);
  9106. border:none;
  9107. border-radius:0px;
  9108. -moz-box-shadow:none;
  9109. -webkit-box-shadow:none;
  9110. box-shadow:none;
  9111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9112. font-weight:400;
  9113. font-style:normal;
  9114. font-size:14px;
  9115. }
  9116. #u20523 {
  9117. border-width:0px;
  9118. position:absolute;
  9119. left:2566px;
  9120. top:170px;
  9121. width:200px;
  9122. height:20px;
  9123. display:flex;
  9124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9125. font-weight:400;
  9126. font-style:normal;
  9127. font-size:14px;
  9128. }
  9129. #u20523 .text {
  9130. position:absolute;
  9131. align-self:flex-start;
  9132. padding:0px 0px 0px 0px;
  9133. box-sizing:border-box;
  9134. width:100%;
  9135. }
  9136. #u20523_text {
  9137. border-width:0px;
  9138. word-wrap:break-word;
  9139. text-transform:none;
  9140. }
  9141. #u20524_div {
  9142. border-width:0px;
  9143. position:absolute;
  9144. left:0px;
  9145. top:0px;
  9146. width:200px;
  9147. height:25px;
  9148. background:inherit;
  9149. background-color:rgba(255, 255, 255, 0);
  9150. border:none;
  9151. border-radius:0px;
  9152. -moz-box-shadow:none;
  9153. -webkit-box-shadow:none;
  9154. box-shadow:none;
  9155. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9156. font-weight:650;
  9157. font-style:normal;
  9158. font-size:18px;
  9159. }
  9160. #u20524 {
  9161. border-width:0px;
  9162. position:absolute;
  9163. left:2566px;
  9164. top:203px;
  9165. width:200px;
  9166. height:25px;
  9167. display:flex;
  9168. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9169. font-weight:650;
  9170. font-style:normal;
  9171. font-size:18px;
  9172. }
  9173. #u20524 .text {
  9174. position:absolute;
  9175. align-self:flex-start;
  9176. padding:0px 0px 0px 0px;
  9177. box-sizing:border-box;
  9178. width:100%;
  9179. }
  9180. #u20524_text {
  9181. border-width:0px;
  9182. word-wrap:break-word;
  9183. text-transform:none;
  9184. }
  9185. #u20525_div {
  9186. border-width:0px;
  9187. position:absolute;
  9188. left:0px;
  9189. top:0px;
  9190. width:200px;
  9191. height:20px;
  9192. background:inherit;
  9193. background-color:rgba(255, 255, 255, 0);
  9194. border:none;
  9195. border-radius:0px;
  9196. -moz-box-shadow:none;
  9197. -webkit-box-shadow:none;
  9198. box-shadow:none;
  9199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9200. font-weight:400;
  9201. font-style:normal;
  9202. font-size:14px;
  9203. }
  9204. #u20525 {
  9205. border-width:0px;
  9206. position:absolute;
  9207. left:2787px;
  9208. top:170px;
  9209. width:200px;
  9210. height:20px;
  9211. display:flex;
  9212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9213. font-weight:400;
  9214. font-style:normal;
  9215. font-size:14px;
  9216. }
  9217. #u20525 .text {
  9218. position:absolute;
  9219. align-self:flex-start;
  9220. padding:0px 0px 0px 0px;
  9221. box-sizing:border-box;
  9222. width:100%;
  9223. }
  9224. #u20525_text {
  9225. border-width:0px;
  9226. word-wrap:break-word;
  9227. text-transform:none;
  9228. }
  9229. #u20526_div {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:0px;
  9233. top:0px;
  9234. width:200px;
  9235. height:25px;
  9236. background:inherit;
  9237. background-color:rgba(255, 255, 255, 0);
  9238. border:none;
  9239. border-radius:0px;
  9240. -moz-box-shadow:none;
  9241. -webkit-box-shadow:none;
  9242. box-shadow:none;
  9243. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9244. font-weight:650;
  9245. font-style:normal;
  9246. font-size:18px;
  9247. }
  9248. #u20526 {
  9249. border-width:0px;
  9250. position:absolute;
  9251. left:2787px;
  9252. top:203px;
  9253. width:200px;
  9254. height:25px;
  9255. display:flex;
  9256. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9257. font-weight:650;
  9258. font-style:normal;
  9259. font-size:18px;
  9260. }
  9261. #u20526 .text {
  9262. position:absolute;
  9263. align-self:flex-start;
  9264. padding:0px 0px 0px 0px;
  9265. box-sizing:border-box;
  9266. width:100%;
  9267. }
  9268. #u20526_text {
  9269. border-width:0px;
  9270. word-wrap:break-word;
  9271. text-transform:none;
  9272. }
  9273. #u20527 {
  9274. border-width:0px;
  9275. position:absolute;
  9276. left:0px;
  9277. top:0px;
  9278. width:0px;
  9279. height:0px;
  9280. }
  9281. #u20528_div {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:0px;
  9285. top:0px;
  9286. width:23px;
  9287. height:8px;
  9288. background:inherit;
  9289. background-color:rgba(0, 92, 249, 1);
  9290. border:none;
  9291. border-radius:0px;
  9292. -moz-box-shadow:none;
  9293. -webkit-box-shadow:none;
  9294. box-shadow:none;
  9295. }
  9296. #u20528 {
  9297. border-width:0px;
  9298. position:absolute;
  9299. left:2204px;
  9300. top:346px;
  9301. width:23px;
  9302. height:8px;
  9303. display:flex;
  9304. }
  9305. #u20528 .text {
  9306. position:absolute;
  9307. align-self:center;
  9308. padding:2px 2px 2px 2px;
  9309. box-sizing:border-box;
  9310. width:100%;
  9311. }
  9312. #u20528_text {
  9313. border-width:0px;
  9314. word-wrap:break-word;
  9315. text-transform:none;
  9316. visibility:hidden;
  9317. }
  9318. #u20529_div {
  9319. border-width:0px;
  9320. position:absolute;
  9321. left:0px;
  9322. top:0px;
  9323. width:83px;
  9324. height:27px;
  9325. background:inherit;
  9326. background-color:rgba(255, 255, 255, 0);
  9327. border:none;
  9328. border-radius:31px;
  9329. -moz-box-shadow:none;
  9330. -webkit-box-shadow:none;
  9331. box-shadow:none;
  9332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9333. font-weight:400;
  9334. font-style:normal;
  9335. font-size:12px;
  9336. }
  9337. #u20529 {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:2237px;
  9341. top:336px;
  9342. width:83px;
  9343. height:27px;
  9344. display:flex;
  9345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9346. font-weight:400;
  9347. font-style:normal;
  9348. font-size:12px;
  9349. }
  9350. #u20529 .text {
  9351. position:absolute;
  9352. align-self:center;
  9353. padding:5px 10px 5px 0px;
  9354. box-sizing:border-box;
  9355. width:100%;
  9356. }
  9357. #u20529_text {
  9358. border-width:0px;
  9359. white-space:nowrap;
  9360. text-transform:none;
  9361. }
  9362. #u20530 {
  9363. border-width:0px;
  9364. position:absolute;
  9365. left:0px;
  9366. top:0px;
  9367. width:0px;
  9368. height:0px;
  9369. }
  9370. #u20531_div {
  9371. border-width:0px;
  9372. position:absolute;
  9373. left:0px;
  9374. top:0px;
  9375. width:8px;
  9376. height:97px;
  9377. background:inherit;
  9378. background-color:rgba(0, 92, 249, 1);
  9379. border:none;
  9380. border-radius:0px;
  9381. -moz-box-shadow:none;
  9382. -webkit-box-shadow:none;
  9383. box-shadow:none;
  9384. }
  9385. #u20531 {
  9386. border-width:0px;
  9387. position:absolute;
  9388. left:1780px;
  9389. top:628px;
  9390. width:8px;
  9391. height:97px;
  9392. display:flex;
  9393. }
  9394. #u20531 .text {
  9395. position:absolute;
  9396. align-self:center;
  9397. padding:2px 2px 2px 2px;
  9398. box-sizing:border-box;
  9399. width:100%;
  9400. }
  9401. #u20531_text {
  9402. border-width:0px;
  9403. word-wrap:break-word;
  9404. text-transform:none;
  9405. visibility:hidden;
  9406. }
  9407. #u20532_div {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:0px;
  9411. top:0px;
  9412. width:8px;
  9413. height:19px;
  9414. background:inherit;
  9415. background-color:rgba(245, 154, 35, 1);
  9416. border:none;
  9417. border-radius:0px;
  9418. -moz-box-shadow:none;
  9419. -webkit-box-shadow:none;
  9420. box-shadow:none;
  9421. }
  9422. #u20532 {
  9423. border-width:0px;
  9424. position:absolute;
  9425. left:1789px;
  9426. top:706px;
  9427. width:8px;
  9428. height:19px;
  9429. display:flex;
  9430. }
  9431. #u20532 .text {
  9432. position:absolute;
  9433. align-self:center;
  9434. padding:2px 2px 2px 2px;
  9435. box-sizing:border-box;
  9436. width:100%;
  9437. }
  9438. #u20532_text {
  9439. border-width:0px;
  9440. word-wrap:break-word;
  9441. text-transform:none;
  9442. visibility:hidden;
  9443. }
  9444. #u20533_div {
  9445. border-width:0px;
  9446. position:absolute;
  9447. left:0px;
  9448. top:0px;
  9449. width:8px;
  9450. height:16px;
  9451. background:inherit;
  9452. background-color:rgba(236, 128, 141, 1);
  9453. border:none;
  9454. border-radius:0px;
  9455. -moz-box-shadow:none;
  9456. -webkit-box-shadow:none;
  9457. box-shadow:none;
  9458. }
  9459. #u20533 {
  9460. border-width:0px;
  9461. position:absolute;
  9462. left:1805px;
  9463. top:708px;
  9464. width:8px;
  9465. height:16px;
  9466. display:flex;
  9467. }
  9468. #u20533 .text {
  9469. position:absolute;
  9470. align-self:center;
  9471. padding:2px 2px 2px 2px;
  9472. box-sizing:border-box;
  9473. width:100%;
  9474. }
  9475. #u20533_text {
  9476. border-width:0px;
  9477. word-wrap:break-word;
  9478. text-transform:none;
  9479. visibility:hidden;
  9480. }
  9481. #u20534_div {
  9482. border-width:0px;
  9483. position:absolute;
  9484. left:0px;
  9485. top:0px;
  9486. width:8px;
  9487. height:62px;
  9488. background:inherit;
  9489. background-color:rgba(1, 215, 210, 1);
  9490. border:none;
  9491. border-radius:0px;
  9492. -moz-box-shadow:none;
  9493. -webkit-box-shadow:none;
  9494. box-shadow:none;
  9495. }
  9496. #u20534 {
  9497. border-width:0px;
  9498. position:absolute;
  9499. left:1813px;
  9500. top:662px;
  9501. width:8px;
  9502. height:62px;
  9503. display:flex;
  9504. }
  9505. #u20534 .text {
  9506. position:absolute;
  9507. align-self:center;
  9508. padding:2px 2px 2px 2px;
  9509. box-sizing:border-box;
  9510. width:100%;
  9511. }
  9512. #u20534_text {
  9513. border-width:0px;
  9514. word-wrap:break-word;
  9515. text-transform:none;
  9516. visibility:hidden;
  9517. }
  9518. #u20535_div {
  9519. border-width:0px;
  9520. position:absolute;
  9521. left:0px;
  9522. top:0px;
  9523. width:8px;
  9524. height:78px;
  9525. background:inherit;
  9526. background-color:rgba(0, 177, 255, 1);
  9527. border:none;
  9528. border-radius:0px;
  9529. -moz-box-shadow:none;
  9530. -webkit-box-shadow:none;
  9531. box-shadow:none;
  9532. }
  9533. #u20535 {
  9534. border-width:0px;
  9535. position:absolute;
  9536. left:1797px;
  9537. top:646px;
  9538. width:8px;
  9539. height:78px;
  9540. display:flex;
  9541. }
  9542. #u20535 .text {
  9543. position:absolute;
  9544. align-self:center;
  9545. padding:2px 2px 2px 2px;
  9546. box-sizing:border-box;
  9547. width:100%;
  9548. }
  9549. #u20535_text {
  9550. border-width:0px;
  9551. word-wrap:break-word;
  9552. text-transform:none;
  9553. visibility:hidden;
  9554. }
  9555. #u20536_div {
  9556. border-width:0px;
  9557. position:absolute;
  9558. left:0px;
  9559. top:0px;
  9560. width:45px;
  9561. height:17px;
  9562. background:inherit;
  9563. background-color:rgba(255, 255, 255, 0);
  9564. border:none;
  9565. border-radius:0px;
  9566. -moz-box-shadow:none;
  9567. -webkit-box-shadow:none;
  9568. box-shadow:none;
  9569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9570. font-weight:400;
  9571. font-style:normal;
  9572. font-size:12px;
  9573. text-align:center;
  9574. }
  9575. #u20536 {
  9576. border-width:0px;
  9577. position:absolute;
  9578. left:1779px;
  9579. top:735px;
  9580. width:45px;
  9581. height:17px;
  9582. display:flex;
  9583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9584. font-weight:400;
  9585. font-style:normal;
  9586. font-size:12px;
  9587. text-align:center;
  9588. }
  9589. #u20536 .text {
  9590. position:absolute;
  9591. align-self:flex-start;
  9592. padding:0px 0px 0px 0px;
  9593. box-sizing:border-box;
  9594. width:100%;
  9595. }
  9596. #u20536_text {
  9597. border-width:0px;
  9598. word-wrap:break-word;
  9599. text-transform:none;
  9600. }
  9601. #u20537 {
  9602. border-width:0px;
  9603. position:absolute;
  9604. left:0px;
  9605. top:0px;
  9606. width:0px;
  9607. height:0px;
  9608. }
  9609. #u20538_div {
  9610. border-width:0px;
  9611. position:absolute;
  9612. left:0px;
  9613. top:0px;
  9614. width:8px;
  9615. height:156px;
  9616. background:inherit;
  9617. background-color:rgba(0, 92, 249, 1);
  9618. border:none;
  9619. border-radius:0px;
  9620. -moz-box-shadow:none;
  9621. -webkit-box-shadow:none;
  9622. box-shadow:none;
  9623. }
  9624. #u20538 {
  9625. border-width:0px;
  9626. position:absolute;
  9627. left:1870px;
  9628. top:568px;
  9629. width:8px;
  9630. height:156px;
  9631. display:flex;
  9632. }
  9633. #u20538 .text {
  9634. position:absolute;
  9635. align-self:center;
  9636. padding:2px 2px 2px 2px;
  9637. box-sizing:border-box;
  9638. width:100%;
  9639. }
  9640. #u20538_text {
  9641. border-width:0px;
  9642. word-wrap:break-word;
  9643. text-transform:none;
  9644. visibility:hidden;
  9645. }
  9646. #u20539_div {
  9647. border-width:0px;
  9648. position:absolute;
  9649. left:0px;
  9650. top:0px;
  9651. width:8px;
  9652. height:30px;
  9653. background:inherit;
  9654. background-color:rgba(245, 154, 35, 1);
  9655. border:none;
  9656. border-radius:0px;
  9657. -moz-box-shadow:none;
  9658. -webkit-box-shadow:none;
  9659. box-shadow:none;
  9660. }
  9661. #u20539 {
  9662. border-width:0px;
  9663. position:absolute;
  9664. left:1878px;
  9665. top:694px;
  9666. width:8px;
  9667. height:30px;
  9668. display:flex;
  9669. }
  9670. #u20539 .text {
  9671. position:absolute;
  9672. align-self:center;
  9673. padding:2px 2px 2px 2px;
  9674. box-sizing:border-box;
  9675. width:100%;
  9676. }
  9677. #u20539_text {
  9678. border-width:0px;
  9679. word-wrap:break-word;
  9680. text-transform:none;
  9681. visibility:hidden;
  9682. }
  9683. #u20540_div {
  9684. border-width:0px;
  9685. position:absolute;
  9686. left:0px;
  9687. top:0px;
  9688. width:8px;
  9689. height:26px;
  9690. background:inherit;
  9691. background-color:rgba(236, 128, 141, 1);
  9692. border:none;
  9693. border-radius:0px;
  9694. -moz-box-shadow:none;
  9695. -webkit-box-shadow:none;
  9696. box-shadow:none;
  9697. }
  9698. #u20540 {
  9699. border-width:0px;
  9700. position:absolute;
  9701. left:1894px;
  9702. top:698px;
  9703. width:8px;
  9704. height:26px;
  9705. display:flex;
  9706. }
  9707. #u20540 .text {
  9708. position:absolute;
  9709. align-self:center;
  9710. padding:2px 2px 2px 2px;
  9711. box-sizing:border-box;
  9712. width:100%;
  9713. }
  9714. #u20540_text {
  9715. border-width:0px;
  9716. word-wrap:break-word;
  9717. text-transform:none;
  9718. visibility:hidden;
  9719. }
  9720. #u20541_div {
  9721. border-width:0px;
  9722. position:absolute;
  9723. left:0px;
  9724. top:0px;
  9725. width:8px;
  9726. height:100px;
  9727. background:inherit;
  9728. background-color:rgba(1, 215, 210, 1);
  9729. border:none;
  9730. border-radius:0px;
  9731. -moz-box-shadow:none;
  9732. -webkit-box-shadow:none;
  9733. box-shadow:none;
  9734. }
  9735. #u20541 {
  9736. border-width:0px;
  9737. position:absolute;
  9738. left:1902px;
  9739. top:624px;
  9740. width:8px;
  9741. height:100px;
  9742. display:flex;
  9743. }
  9744. #u20541 .text {
  9745. position:absolute;
  9746. align-self:center;
  9747. padding:2px 2px 2px 2px;
  9748. box-sizing:border-box;
  9749. width:100%;
  9750. }
  9751. #u20541_text {
  9752. border-width:0px;
  9753. word-wrap:break-word;
  9754. text-transform:none;
  9755. visibility:hidden;
  9756. }
  9757. #u20542_div {
  9758. border-width:0px;
  9759. position:absolute;
  9760. left:0px;
  9761. top:0px;
  9762. width:8px;
  9763. height:126px;
  9764. background:inherit;
  9765. background-color:rgba(0, 177, 255, 1);
  9766. border:none;
  9767. border-radius:0px;
  9768. -moz-box-shadow:none;
  9769. -webkit-box-shadow:none;
  9770. box-shadow:none;
  9771. }
  9772. #u20542 {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:1886px;
  9776. top:598px;
  9777. width:8px;
  9778. height:126px;
  9779. display:flex;
  9780. }
  9781. #u20542 .text {
  9782. position:absolute;
  9783. align-self:center;
  9784. padding:2px 2px 2px 2px;
  9785. box-sizing:border-box;
  9786. width:100%;
  9787. }
  9788. #u20542_text {
  9789. border-width:0px;
  9790. word-wrap:break-word;
  9791. text-transform:none;
  9792. visibility:hidden;
  9793. }
  9794. #u20543_div {
  9795. border-width:0px;
  9796. position:absolute;
  9797. left:0px;
  9798. top:0px;
  9799. width:45px;
  9800. height:17px;
  9801. background:inherit;
  9802. background-color:rgba(255, 255, 255, 0);
  9803. border:none;
  9804. border-radius:0px;
  9805. -moz-box-shadow:none;
  9806. -webkit-box-shadow:none;
  9807. box-shadow:none;
  9808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9809. font-weight:400;
  9810. font-style:normal;
  9811. font-size:12px;
  9812. text-align:center;
  9813. }
  9814. #u20543 {
  9815. border-width:0px;
  9816. position:absolute;
  9817. left:1868px;
  9818. top:735px;
  9819. width:45px;
  9820. height:17px;
  9821. display:flex;
  9822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9823. font-weight:400;
  9824. font-style:normal;
  9825. font-size:12px;
  9826. text-align:center;
  9827. }
  9828. #u20543 .text {
  9829. position:absolute;
  9830. align-self:flex-start;
  9831. padding:0px 0px 0px 0px;
  9832. box-sizing:border-box;
  9833. width:100%;
  9834. }
  9835. #u20543_text {
  9836. border-width:0px;
  9837. word-wrap:break-word;
  9838. text-transform:none;
  9839. }
  9840. #u20544 {
  9841. border-width:0px;
  9842. position:absolute;
  9843. left:0px;
  9844. top:0px;
  9845. width:0px;
  9846. height:0px;
  9847. }
  9848. #u20545_div {
  9849. border-width:0px;
  9850. position:absolute;
  9851. left:0px;
  9852. top:0px;
  9853. width:8px;
  9854. height:165px;
  9855. background:inherit;
  9856. background-color:rgba(0, 92, 249, 1);
  9857. border:none;
  9858. border-radius:0px;
  9859. -moz-box-shadow:none;
  9860. -webkit-box-shadow:none;
  9861. box-shadow:none;
  9862. }
  9863. #u20545 {
  9864. border-width:0px;
  9865. position:absolute;
  9866. left:1961px;
  9867. top:559px;
  9868. width:8px;
  9869. height:165px;
  9870. display:flex;
  9871. }
  9872. #u20545 .text {
  9873. position:absolute;
  9874. align-self:center;
  9875. padding:2px 2px 2px 2px;
  9876. box-sizing:border-box;
  9877. width:100%;
  9878. }
  9879. #u20545_text {
  9880. border-width:0px;
  9881. word-wrap:break-word;
  9882. text-transform:none;
  9883. visibility:hidden;
  9884. }
  9885. #u20546_div {
  9886. border-width:0px;
  9887. position:absolute;
  9888. left:0px;
  9889. top:0px;
  9890. width:8px;
  9891. height:32px;
  9892. background:inherit;
  9893. background-color:rgba(245, 154, 35, 1);
  9894. border:none;
  9895. border-radius:0px;
  9896. -moz-box-shadow:none;
  9897. -webkit-box-shadow:none;
  9898. box-shadow:none;
  9899. }
  9900. #u20546 {
  9901. border-width:0px;
  9902. position:absolute;
  9903. left:1969px;
  9904. top:692px;
  9905. width:8px;
  9906. height:32px;
  9907. display:flex;
  9908. }
  9909. #u20546 .text {
  9910. position:absolute;
  9911. align-self:center;
  9912. padding:2px 2px 2px 2px;
  9913. box-sizing:border-box;
  9914. width:100%;
  9915. }
  9916. #u20546_text {
  9917. border-width:0px;
  9918. word-wrap:break-word;
  9919. text-transform:none;
  9920. visibility:hidden;
  9921. }
  9922. #u20547_div {
  9923. border-width:0px;
  9924. position:absolute;
  9925. left:0px;
  9926. top:0px;
  9927. width:8px;
  9928. height:27px;
  9929. background:inherit;
  9930. background-color:rgba(236, 128, 141, 1);
  9931. border:none;
  9932. border-radius:0px;
  9933. -moz-box-shadow:none;
  9934. -webkit-box-shadow:none;
  9935. box-shadow:none;
  9936. }
  9937. #u20547 {
  9938. border-width:0px;
  9939. position:absolute;
  9940. left:1985px;
  9941. top:697px;
  9942. width:8px;
  9943. height:27px;
  9944. display:flex;
  9945. }
  9946. #u20547 .text {
  9947. position:absolute;
  9948. align-self:center;
  9949. padding:2px 2px 2px 2px;
  9950. box-sizing:border-box;
  9951. width:100%;
  9952. }
  9953. #u20547_text {
  9954. border-width:0px;
  9955. word-wrap:break-word;
  9956. text-transform:none;
  9957. visibility:hidden;
  9958. }
  9959. #u20548_div {
  9960. border-width:0px;
  9961. position:absolute;
  9962. left:0px;
  9963. top:0px;
  9964. width:8px;
  9965. height:106px;
  9966. background:inherit;
  9967. background-color:rgba(1, 215, 210, 1);
  9968. border:none;
  9969. border-radius:0px;
  9970. -moz-box-shadow:none;
  9971. -webkit-box-shadow:none;
  9972. box-shadow:none;
  9973. }
  9974. #u20548 {
  9975. border-width:0px;
  9976. position:absolute;
  9977. left:1993px;
  9978. top:618px;
  9979. width:8px;
  9980. height:106px;
  9981. display:flex;
  9982. }
  9983. #u20548 .text {
  9984. position:absolute;
  9985. align-self:center;
  9986. padding:2px 2px 2px 2px;
  9987. box-sizing:border-box;
  9988. width:100%;
  9989. }
  9990. #u20548_text {
  9991. border-width:0px;
  9992. word-wrap:break-word;
  9993. text-transform:none;
  9994. visibility:hidden;
  9995. }
  9996. #u20549_div {
  9997. border-width:0px;
  9998. position:absolute;
  9999. left:0px;
  10000. top:0px;
  10001. width:8px;
  10002. height:133px;
  10003. background:inherit;
  10004. background-color:rgba(0, 177, 255, 1);
  10005. border:none;
  10006. border-radius:0px;
  10007. -moz-box-shadow:none;
  10008. -webkit-box-shadow:none;
  10009. box-shadow:none;
  10010. }
  10011. #u20549 {
  10012. border-width:0px;
  10013. position:absolute;
  10014. left:1977px;
  10015. top:591px;
  10016. width:8px;
  10017. height:133px;
  10018. display:flex;
  10019. }
  10020. #u20549 .text {
  10021. position:absolute;
  10022. align-self:center;
  10023. padding:2px 2px 2px 2px;
  10024. box-sizing:border-box;
  10025. width:100%;
  10026. }
  10027. #u20549_text {
  10028. border-width:0px;
  10029. word-wrap:break-word;
  10030. text-transform:none;
  10031. visibility:hidden;
  10032. }
  10033. #u20550_div {
  10034. border-width:0px;
  10035. position:absolute;
  10036. left:0px;
  10037. top:0px;
  10038. width:45px;
  10039. height:17px;
  10040. background:inherit;
  10041. background-color:rgba(255, 255, 255, 0);
  10042. border:none;
  10043. border-radius:0px;
  10044. -moz-box-shadow:none;
  10045. -webkit-box-shadow:none;
  10046. box-shadow:none;
  10047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10048. font-weight:400;
  10049. font-style:normal;
  10050. font-size:12px;
  10051. text-align:center;
  10052. }
  10053. #u20550 {
  10054. border-width:0px;
  10055. position:absolute;
  10056. left:1959px;
  10057. top:735px;
  10058. width:45px;
  10059. height:17px;
  10060. display:flex;
  10061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10062. font-weight:400;
  10063. font-style:normal;
  10064. font-size:12px;
  10065. text-align:center;
  10066. }
  10067. #u20550 .text {
  10068. position:absolute;
  10069. align-self:flex-start;
  10070. padding:0px 0px 0px 0px;
  10071. box-sizing:border-box;
  10072. width:100%;
  10073. }
  10074. #u20550_text {
  10075. border-width:0px;
  10076. word-wrap:break-word;
  10077. text-transform:none;
  10078. }
  10079. #u20551 {
  10080. border-width:0px;
  10081. position:absolute;
  10082. left:0px;
  10083. top:0px;
  10084. width:0px;
  10085. height:0px;
  10086. }
  10087. #u20552_div {
  10088. border-width:0px;
  10089. position:absolute;
  10090. left:0px;
  10091. top:0px;
  10092. width:8px;
  10093. height:193px;
  10094. background:inherit;
  10095. background-color:rgba(0, 92, 249, 1);
  10096. border:none;
  10097. border-radius:0px;
  10098. -moz-box-shadow:none;
  10099. -webkit-box-shadow:none;
  10100. box-shadow:none;
  10101. }
  10102. #u20552 {
  10103. border-width:0px;
  10104. position:absolute;
  10105. left:2050px;
  10106. top:531px;
  10107. width:8px;
  10108. height:193px;
  10109. display:flex;
  10110. }
  10111. #u20552 .text {
  10112. position:absolute;
  10113. align-self:center;
  10114. padding:2px 2px 2px 2px;
  10115. box-sizing:border-box;
  10116. width:100%;
  10117. }
  10118. #u20552_text {
  10119. border-width:0px;
  10120. word-wrap:break-word;
  10121. text-transform:none;
  10122. visibility:hidden;
  10123. }
  10124. #u20553_div {
  10125. border-width:0px;
  10126. position:absolute;
  10127. left:0px;
  10128. top:0px;
  10129. width:8px;
  10130. height:37px;
  10131. background:inherit;
  10132. background-color:rgba(245, 154, 35, 1);
  10133. border:none;
  10134. border-radius:0px;
  10135. -moz-box-shadow:none;
  10136. -webkit-box-shadow:none;
  10137. box-shadow:none;
  10138. }
  10139. #u20553 {
  10140. border-width:0px;
  10141. position:absolute;
  10142. left:2058px;
  10143. top:687px;
  10144. width:8px;
  10145. height:37px;
  10146. display:flex;
  10147. }
  10148. #u20553 .text {
  10149. position:absolute;
  10150. align-self:center;
  10151. padding:2px 2px 2px 2px;
  10152. box-sizing:border-box;
  10153. width:100%;
  10154. }
  10155. #u20553_text {
  10156. border-width:0px;
  10157. word-wrap:break-word;
  10158. text-transform:none;
  10159. visibility:hidden;
  10160. }
  10161. #u20554_div {
  10162. border-width:0px;
  10163. position:absolute;
  10164. left:0px;
  10165. top:0px;
  10166. width:8px;
  10167. height:32px;
  10168. background:inherit;
  10169. background-color:rgba(236, 128, 141, 1);
  10170. border:none;
  10171. border-radius:0px;
  10172. -moz-box-shadow:none;
  10173. -webkit-box-shadow:none;
  10174. box-shadow:none;
  10175. }
  10176. #u20554 {
  10177. border-width:0px;
  10178. position:absolute;
  10179. left:2074px;
  10180. top:692px;
  10181. width:8px;
  10182. height:32px;
  10183. display:flex;
  10184. }
  10185. #u20554 .text {
  10186. position:absolute;
  10187. align-self:center;
  10188. padding:2px 2px 2px 2px;
  10189. box-sizing:border-box;
  10190. width:100%;
  10191. }
  10192. #u20554_text {
  10193. border-width:0px;
  10194. word-wrap:break-word;
  10195. text-transform:none;
  10196. visibility:hidden;
  10197. }
  10198. #u20555_div {
  10199. border-width:0px;
  10200. position:absolute;
  10201. left:0px;
  10202. top:0px;
  10203. width:8px;
  10204. height:124px;
  10205. background:inherit;
  10206. background-color:rgba(1, 215, 210, 1);
  10207. border:none;
  10208. border-radius:0px;
  10209. -moz-box-shadow:none;
  10210. -webkit-box-shadow:none;
  10211. box-shadow:none;
  10212. }
  10213. #u20555 {
  10214. border-width:0px;
  10215. position:absolute;
  10216. left:2082px;
  10217. top:600px;
  10218. width:8px;
  10219. height:124px;
  10220. display:flex;
  10221. }
  10222. #u20555 .text {
  10223. position:absolute;
  10224. align-self:center;
  10225. padding:2px 2px 2px 2px;
  10226. box-sizing:border-box;
  10227. width:100%;
  10228. }
  10229. #u20555_text {
  10230. border-width:0px;
  10231. word-wrap:break-word;
  10232. text-transform:none;
  10233. visibility:hidden;
  10234. }
  10235. #u20556_div {
  10236. border-width:0px;
  10237. position:absolute;
  10238. left:0px;
  10239. top:0px;
  10240. width:8px;
  10241. height:156px;
  10242. background:inherit;
  10243. background-color:rgba(0, 177, 255, 1);
  10244. border:none;
  10245. border-radius:0px;
  10246. -moz-box-shadow:none;
  10247. -webkit-box-shadow:none;
  10248. box-shadow:none;
  10249. }
  10250. #u20556 {
  10251. border-width:0px;
  10252. position:absolute;
  10253. left:2066px;
  10254. top:568px;
  10255. width:8px;
  10256. height:156px;
  10257. display:flex;
  10258. }
  10259. #u20556 .text {
  10260. position:absolute;
  10261. align-self:center;
  10262. padding:2px 2px 2px 2px;
  10263. box-sizing:border-box;
  10264. width:100%;
  10265. }
  10266. #u20556_text {
  10267. border-width:0px;
  10268. word-wrap:break-word;
  10269. text-transform:none;
  10270. visibility:hidden;
  10271. }
  10272. #u20557_div {
  10273. border-width:0px;
  10274. position:absolute;
  10275. left:0px;
  10276. top:0px;
  10277. width:45px;
  10278. height:17px;
  10279. background:inherit;
  10280. background-color:rgba(255, 255, 255, 0);
  10281. border:none;
  10282. border-radius:0px;
  10283. -moz-box-shadow:none;
  10284. -webkit-box-shadow:none;
  10285. box-shadow:none;
  10286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10287. font-weight:400;
  10288. font-style:normal;
  10289. font-size:12px;
  10290. text-align:center;
  10291. }
  10292. #u20557 {
  10293. border-width:0px;
  10294. position:absolute;
  10295. left:2049px;
  10296. top:735px;
  10297. width:45px;
  10298. height:17px;
  10299. display:flex;
  10300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10301. font-weight:400;
  10302. font-style:normal;
  10303. font-size:12px;
  10304. text-align:center;
  10305. }
  10306. #u20557 .text {
  10307. position:absolute;
  10308. align-self:flex-start;
  10309. padding:0px 0px 0px 0px;
  10310. box-sizing:border-box;
  10311. width:100%;
  10312. }
  10313. #u20557_text {
  10314. border-width:0px;
  10315. word-wrap:break-word;
  10316. text-transform:none;
  10317. }
  10318. #u20558 {
  10319. border-width:0px;
  10320. position:absolute;
  10321. left:0px;
  10322. top:0px;
  10323. width:0px;
  10324. height:0px;
  10325. }
  10326. #u20559_div {
  10327. border-width:0px;
  10328. position:absolute;
  10329. left:0px;
  10330. top:0px;
  10331. width:8px;
  10332. height:193px;
  10333. background:inherit;
  10334. background-color:rgba(0, 92, 249, 1);
  10335. border:none;
  10336. border-radius:0px;
  10337. -moz-box-shadow:none;
  10338. -webkit-box-shadow:none;
  10339. box-shadow:none;
  10340. }
  10341. #u20559 {
  10342. border-width:0px;
  10343. position:absolute;
  10344. left:2141px;
  10345. top:531px;
  10346. width:8px;
  10347. height:193px;
  10348. display:flex;
  10349. }
  10350. #u20559 .text {
  10351. position:absolute;
  10352. align-self:center;
  10353. padding:2px 2px 2px 2px;
  10354. box-sizing:border-box;
  10355. width:100%;
  10356. }
  10357. #u20559_text {
  10358. border-width:0px;
  10359. word-wrap:break-word;
  10360. text-transform:none;
  10361. visibility:hidden;
  10362. }
  10363. #u20560_div {
  10364. border-width:0px;
  10365. position:absolute;
  10366. left:0px;
  10367. top:0px;
  10368. width:8px;
  10369. height:37px;
  10370. background:inherit;
  10371. background-color:rgba(245, 154, 35, 1);
  10372. border:none;
  10373. border-radius:0px;
  10374. -moz-box-shadow:none;
  10375. -webkit-box-shadow:none;
  10376. box-shadow:none;
  10377. }
  10378. #u20560 {
  10379. border-width:0px;
  10380. position:absolute;
  10381. left:2149px;
  10382. top:687px;
  10383. width:8px;
  10384. height:37px;
  10385. display:flex;
  10386. }
  10387. #u20560 .text {
  10388. position:absolute;
  10389. align-self:center;
  10390. padding:2px 2px 2px 2px;
  10391. box-sizing:border-box;
  10392. width:100%;
  10393. }
  10394. #u20560_text {
  10395. border-width:0px;
  10396. word-wrap:break-word;
  10397. text-transform:none;
  10398. visibility:hidden;
  10399. }
  10400. #u20561_div {
  10401. border-width:0px;
  10402. position:absolute;
  10403. left:0px;
  10404. top:0px;
  10405. width:8px;
  10406. height:32px;
  10407. background:inherit;
  10408. background-color:rgba(236, 128, 141, 1);
  10409. border:none;
  10410. border-radius:0px;
  10411. -moz-box-shadow:none;
  10412. -webkit-box-shadow:none;
  10413. box-shadow:none;
  10414. }
  10415. #u20561 {
  10416. border-width:0px;
  10417. position:absolute;
  10418. left:2165px;
  10419. top:692px;
  10420. width:8px;
  10421. height:32px;
  10422. display:flex;
  10423. }
  10424. #u20561 .text {
  10425. position:absolute;
  10426. align-self:center;
  10427. padding:2px 2px 2px 2px;
  10428. box-sizing:border-box;
  10429. width:100%;
  10430. }
  10431. #u20561_text {
  10432. border-width:0px;
  10433. word-wrap:break-word;
  10434. text-transform:none;
  10435. visibility:hidden;
  10436. }
  10437. #u20562_div {
  10438. border-width:0px;
  10439. position:absolute;
  10440. left:0px;
  10441. top:0px;
  10442. width:8px;
  10443. height:124px;
  10444. background:inherit;
  10445. background-color:rgba(1, 215, 210, 1);
  10446. border:none;
  10447. border-radius:0px;
  10448. -moz-box-shadow:none;
  10449. -webkit-box-shadow:none;
  10450. box-shadow:none;
  10451. }
  10452. #u20562 {
  10453. border-width:0px;
  10454. position:absolute;
  10455. left:2173px;
  10456. top:600px;
  10457. width:8px;
  10458. height:124px;
  10459. display:flex;
  10460. }
  10461. #u20562 .text {
  10462. position:absolute;
  10463. align-self:center;
  10464. padding:2px 2px 2px 2px;
  10465. box-sizing:border-box;
  10466. width:100%;
  10467. }
  10468. #u20562_text {
  10469. border-width:0px;
  10470. word-wrap:break-word;
  10471. text-transform:none;
  10472. visibility:hidden;
  10473. }
  10474. #u20563_div {
  10475. border-width:0px;
  10476. position:absolute;
  10477. left:0px;
  10478. top:0px;
  10479. width:8px;
  10480. height:156px;
  10481. background:inherit;
  10482. background-color:rgba(0, 177, 255, 1);
  10483. border:none;
  10484. border-radius:0px;
  10485. -moz-box-shadow:none;
  10486. -webkit-box-shadow:none;
  10487. box-shadow:none;
  10488. }
  10489. #u20563 {
  10490. border-width:0px;
  10491. position:absolute;
  10492. left:2157px;
  10493. top:568px;
  10494. width:8px;
  10495. height:156px;
  10496. display:flex;
  10497. }
  10498. #u20563 .text {
  10499. position:absolute;
  10500. align-self:center;
  10501. padding:2px 2px 2px 2px;
  10502. box-sizing:border-box;
  10503. width:100%;
  10504. }
  10505. #u20563_text {
  10506. border-width:0px;
  10507. word-wrap:break-word;
  10508. text-transform:none;
  10509. visibility:hidden;
  10510. }
  10511. #u20564_div {
  10512. border-width:0px;
  10513. position:absolute;
  10514. left:0px;
  10515. top:0px;
  10516. width:45px;
  10517. height:17px;
  10518. background:inherit;
  10519. background-color:rgba(255, 255, 255, 0);
  10520. border:none;
  10521. border-radius:0px;
  10522. -moz-box-shadow:none;
  10523. -webkit-box-shadow:none;
  10524. box-shadow:none;
  10525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10526. font-weight:400;
  10527. font-style:normal;
  10528. font-size:12px;
  10529. text-align:center;
  10530. }
  10531. #u20564 {
  10532. border-width:0px;
  10533. position:absolute;
  10534. left:2139px;
  10535. top:735px;
  10536. width:45px;
  10537. height:17px;
  10538. display:flex;
  10539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10540. font-weight:400;
  10541. font-style:normal;
  10542. font-size:12px;
  10543. text-align:center;
  10544. }
  10545. #u20564 .text {
  10546. position:absolute;
  10547. align-self:flex-start;
  10548. padding:0px 0px 0px 0px;
  10549. box-sizing:border-box;
  10550. width:100%;
  10551. }
  10552. #u20564_text {
  10553. border-width:0px;
  10554. word-wrap:break-word;
  10555. text-transform:none;
  10556. }
  10557. #u20565 {
  10558. border-width:0px;
  10559. position:absolute;
  10560. left:0px;
  10561. top:0px;
  10562. width:0px;
  10563. height:0px;
  10564. }
  10565. #u20566_div {
  10566. border-width:0px;
  10567. position:absolute;
  10568. left:0px;
  10569. top:0px;
  10570. width:8px;
  10571. height:213px;
  10572. background:inherit;
  10573. background-color:rgba(0, 92, 249, 1);
  10574. border:none;
  10575. border-radius:0px;
  10576. -moz-box-shadow:none;
  10577. -webkit-box-shadow:none;
  10578. box-shadow:none;
  10579. }
  10580. #u20566 {
  10581. border-width:0px;
  10582. position:absolute;
  10583. left:2230px;
  10584. top:511px;
  10585. width:8px;
  10586. height:213px;
  10587. display:flex;
  10588. }
  10589. #u20566 .text {
  10590. position:absolute;
  10591. align-self:center;
  10592. padding:2px 2px 2px 2px;
  10593. box-sizing:border-box;
  10594. width:100%;
  10595. }
  10596. #u20566_text {
  10597. border-width:0px;
  10598. word-wrap:break-word;
  10599. text-transform:none;
  10600. visibility:hidden;
  10601. }
  10602. #u20567_div {
  10603. border-width:0px;
  10604. position:absolute;
  10605. left:0px;
  10606. top:0px;
  10607. width:8px;
  10608. height:41px;
  10609. background:inherit;
  10610. background-color:rgba(245, 154, 35, 1);
  10611. border:none;
  10612. border-radius:0px;
  10613. -moz-box-shadow:none;
  10614. -webkit-box-shadow:none;
  10615. box-shadow:none;
  10616. }
  10617. #u20567 {
  10618. border-width:0px;
  10619. position:absolute;
  10620. left:2238px;
  10621. top:683px;
  10622. width:8px;
  10623. height:41px;
  10624. display:flex;
  10625. }
  10626. #u20567 .text {
  10627. position:absolute;
  10628. align-self:center;
  10629. padding:2px 2px 2px 2px;
  10630. box-sizing:border-box;
  10631. width:100%;
  10632. }
  10633. #u20567_text {
  10634. border-width:0px;
  10635. word-wrap:break-word;
  10636. text-transform:none;
  10637. visibility:hidden;
  10638. }
  10639. #u20568_div {
  10640. border-width:0px;
  10641. position:absolute;
  10642. left:0px;
  10643. top:0px;
  10644. width:8px;
  10645. height:35px;
  10646. background:inherit;
  10647. background-color:rgba(236, 128, 141, 1);
  10648. border:none;
  10649. border-radius:0px;
  10650. -moz-box-shadow:none;
  10651. -webkit-box-shadow:none;
  10652. box-shadow:none;
  10653. }
  10654. #u20568 {
  10655. border-width:0px;
  10656. position:absolute;
  10657. left:2255px;
  10658. top:689px;
  10659. width:8px;
  10660. height:35px;
  10661. display:flex;
  10662. }
  10663. #u20568 .text {
  10664. position:absolute;
  10665. align-self:center;
  10666. padding:2px 2px 2px 2px;
  10667. box-sizing:border-box;
  10668. width:100%;
  10669. }
  10670. #u20568_text {
  10671. border-width:0px;
  10672. word-wrap:break-word;
  10673. text-transform:none;
  10674. visibility:hidden;
  10675. }
  10676. #u20569_div {
  10677. border-width:0px;
  10678. position:absolute;
  10679. left:0px;
  10680. top:0px;
  10681. width:8px;
  10682. height:137px;
  10683. background:inherit;
  10684. background-color:rgba(1, 215, 210, 1);
  10685. border:none;
  10686. border-radius:0px;
  10687. -moz-box-shadow:none;
  10688. -webkit-box-shadow:none;
  10689. box-shadow:none;
  10690. }
  10691. #u20569 {
  10692. border-width:0px;
  10693. position:absolute;
  10694. left:2263px;
  10695. top:587px;
  10696. width:8px;
  10697. height:137px;
  10698. display:flex;
  10699. }
  10700. #u20569 .text {
  10701. position:absolute;
  10702. align-self:center;
  10703. padding:2px 2px 2px 2px;
  10704. box-sizing:border-box;
  10705. width:100%;
  10706. }
  10707. #u20569_text {
  10708. border-width:0px;
  10709. word-wrap:break-word;
  10710. text-transform:none;
  10711. visibility:hidden;
  10712. }
  10713. #u20570_div {
  10714. border-width:0px;
  10715. position:absolute;
  10716. left:0px;
  10717. top:0px;
  10718. width:8px;
  10719. height:172px;
  10720. background:inherit;
  10721. background-color:rgba(0, 177, 255, 1);
  10722. border:none;
  10723. border-radius:0px;
  10724. -moz-box-shadow:none;
  10725. -webkit-box-shadow:none;
  10726. box-shadow:none;
  10727. }
  10728. #u20570 {
  10729. border-width:0px;
  10730. position:absolute;
  10731. left:2246px;
  10732. top:552px;
  10733. width:8px;
  10734. height:172px;
  10735. display:flex;
  10736. }
  10737. #u20570 .text {
  10738. position:absolute;
  10739. align-self:center;
  10740. padding:2px 2px 2px 2px;
  10741. box-sizing:border-box;
  10742. width:100%;
  10743. }
  10744. #u20570_text {
  10745. border-width:0px;
  10746. word-wrap:break-word;
  10747. text-transform:none;
  10748. visibility:hidden;
  10749. }
  10750. #u20571_div {
  10751. border-width:0px;
  10752. position:absolute;
  10753. left:0px;
  10754. top:0px;
  10755. width:45px;
  10756. height:17px;
  10757. background:inherit;
  10758. background-color:rgba(255, 255, 255, 0);
  10759. border:none;
  10760. border-radius:0px;
  10761. -moz-box-shadow:none;
  10762. -webkit-box-shadow:none;
  10763. box-shadow:none;
  10764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10765. font-weight:400;
  10766. font-style:normal;
  10767. font-size:12px;
  10768. text-align:center;
  10769. }
  10770. #u20571 {
  10771. border-width:0px;
  10772. position:absolute;
  10773. left:2229px;
  10774. top:735px;
  10775. width:45px;
  10776. height:17px;
  10777. display:flex;
  10778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10779. font-weight:400;
  10780. font-style:normal;
  10781. font-size:12px;
  10782. text-align:center;
  10783. }
  10784. #u20571 .text {
  10785. position:absolute;
  10786. align-self:flex-start;
  10787. padding:0px 0px 0px 0px;
  10788. box-sizing:border-box;
  10789. width:100%;
  10790. }
  10791. #u20571_text {
  10792. border-width:0px;
  10793. word-wrap:break-word;
  10794. text-transform:none;
  10795. }
  10796. #u20572 {
  10797. border-width:0px;
  10798. position:absolute;
  10799. left:0px;
  10800. top:0px;
  10801. width:0px;
  10802. height:0px;
  10803. }
  10804. #u20573_div {
  10805. border-width:0px;
  10806. position:absolute;
  10807. left:0px;
  10808. top:0px;
  10809. width:8px;
  10810. height:245px;
  10811. background:inherit;
  10812. background-color:rgba(0, 92, 249, 1);
  10813. border:none;
  10814. border-radius:0px;
  10815. -moz-box-shadow:none;
  10816. -webkit-box-shadow:none;
  10817. box-shadow:none;
  10818. }
  10819. #u20573 {
  10820. border-width:0px;
  10821. position:absolute;
  10822. left:2321px;
  10823. top:479px;
  10824. width:8px;
  10825. height:245px;
  10826. display:flex;
  10827. }
  10828. #u20573 .text {
  10829. position:absolute;
  10830. align-self:center;
  10831. padding:2px 2px 2px 2px;
  10832. box-sizing:border-box;
  10833. width:100%;
  10834. }
  10835. #u20573_text {
  10836. border-width:0px;
  10837. word-wrap:break-word;
  10838. text-transform:none;
  10839. visibility:hidden;
  10840. }
  10841. #u20574_div {
  10842. border-width:0px;
  10843. position:absolute;
  10844. left:0px;
  10845. top:0px;
  10846. width:8px;
  10847. height:47px;
  10848. background:inherit;
  10849. background-color:rgba(245, 154, 35, 1);
  10850. border:none;
  10851. border-radius:0px;
  10852. -moz-box-shadow:none;
  10853. -webkit-box-shadow:none;
  10854. box-shadow:none;
  10855. }
  10856. #u20574 {
  10857. border-width:0px;
  10858. position:absolute;
  10859. left:2329px;
  10860. top:677px;
  10861. width:8px;
  10862. height:47px;
  10863. display:flex;
  10864. }
  10865. #u20574 .text {
  10866. position:absolute;
  10867. align-self:center;
  10868. padding:2px 2px 2px 2px;
  10869. box-sizing:border-box;
  10870. width:100%;
  10871. }
  10872. #u20574_text {
  10873. border-width:0px;
  10874. word-wrap:break-word;
  10875. text-transform:none;
  10876. visibility:hidden;
  10877. }
  10878. #u20575_div {
  10879. border-width:0px;
  10880. position:absolute;
  10881. left:0px;
  10882. top:0px;
  10883. width:8px;
  10884. height:41px;
  10885. background:inherit;
  10886. background-color:rgba(236, 128, 141, 1);
  10887. border:none;
  10888. border-radius:0px;
  10889. -moz-box-shadow:none;
  10890. -webkit-box-shadow:none;
  10891. box-shadow:none;
  10892. }
  10893. #u20575 {
  10894. border-width:0px;
  10895. position:absolute;
  10896. left:2345px;
  10897. top:683px;
  10898. width:8px;
  10899. height:41px;
  10900. display:flex;
  10901. }
  10902. #u20575 .text {
  10903. position:absolute;
  10904. align-self:center;
  10905. padding:2px 2px 2px 2px;
  10906. box-sizing:border-box;
  10907. width:100%;
  10908. }
  10909. #u20575_text {
  10910. border-width:0px;
  10911. word-wrap:break-word;
  10912. text-transform:none;
  10913. visibility:hidden;
  10914. }
  10915. #u20576_div {
  10916. border-width:0px;
  10917. position:absolute;
  10918. left:0px;
  10919. top:0px;
  10920. width:8px;
  10921. height:157px;
  10922. background:inherit;
  10923. background-color:rgba(1, 215, 210, 1);
  10924. border:none;
  10925. border-radius:0px;
  10926. -moz-box-shadow:none;
  10927. -webkit-box-shadow:none;
  10928. box-shadow:none;
  10929. }
  10930. #u20576 {
  10931. border-width:0px;
  10932. position:absolute;
  10933. left:2353px;
  10934. top:567px;
  10935. width:8px;
  10936. height:157px;
  10937. display:flex;
  10938. }
  10939. #u20576 .text {
  10940. position:absolute;
  10941. align-self:center;
  10942. padding:2px 2px 2px 2px;
  10943. box-sizing:border-box;
  10944. width:100%;
  10945. }
  10946. #u20576_text {
  10947. border-width:0px;
  10948. word-wrap:break-word;
  10949. text-transform:none;
  10950. visibility:hidden;
  10951. }
  10952. #u20577_div {
  10953. border-width:0px;
  10954. position:absolute;
  10955. left:0px;
  10956. top:0px;
  10957. width:8px;
  10958. height:198px;
  10959. background:inherit;
  10960. background-color:rgba(0, 177, 255, 1);
  10961. border:none;
  10962. border-radius:0px;
  10963. -moz-box-shadow:none;
  10964. -webkit-box-shadow:none;
  10965. box-shadow:none;
  10966. }
  10967. #u20577 {
  10968. border-width:0px;
  10969. position:absolute;
  10970. left:2337px;
  10971. top:526px;
  10972. width:8px;
  10973. height:198px;
  10974. display:flex;
  10975. }
  10976. #u20577 .text {
  10977. position:absolute;
  10978. align-self:center;
  10979. padding:2px 2px 2px 2px;
  10980. box-sizing:border-box;
  10981. width:100%;
  10982. }
  10983. #u20577_text {
  10984. border-width:0px;
  10985. word-wrap:break-word;
  10986. text-transform:none;
  10987. visibility:hidden;
  10988. }
  10989. #u20578_div {
  10990. border-width:0px;
  10991. position:absolute;
  10992. left:0px;
  10993. top:0px;
  10994. width:45px;
  10995. height:17px;
  10996. background:inherit;
  10997. background-color:rgba(255, 255, 255, 0);
  10998. border:none;
  10999. border-radius:0px;
  11000. -moz-box-shadow:none;
  11001. -webkit-box-shadow:none;
  11002. box-shadow:none;
  11003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11004. font-weight:400;
  11005. font-style:normal;
  11006. font-size:12px;
  11007. text-align:center;
  11008. }
  11009. #u20578 {
  11010. border-width:0px;
  11011. position:absolute;
  11012. left:2320px;
  11013. top:735px;
  11014. width:45px;
  11015. height:17px;
  11016. display:flex;
  11017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11018. font-weight:400;
  11019. font-style:normal;
  11020. font-size:12px;
  11021. text-align:center;
  11022. }
  11023. #u20578 .text {
  11024. position:absolute;
  11025. align-self:flex-start;
  11026. padding:0px 0px 0px 0px;
  11027. box-sizing:border-box;
  11028. width:100%;
  11029. }
  11030. #u20578_text {
  11031. border-width:0px;
  11032. word-wrap:break-word;
  11033. text-transform:none;
  11034. }
  11035. #u20579 {
  11036. border-width:0px;
  11037. position:absolute;
  11038. left:0px;
  11039. top:0px;
  11040. width:0px;
  11041. height:0px;
  11042. }
  11043. #u20580_div {
  11044. border-width:0px;
  11045. position:absolute;
  11046. left:0px;
  11047. top:0px;
  11048. width:8px;
  11049. height:275px;
  11050. background:inherit;
  11051. background-color:rgba(0, 92, 249, 1);
  11052. border:none;
  11053. border-radius:0px;
  11054. -moz-box-shadow:none;
  11055. -webkit-box-shadow:none;
  11056. box-shadow:none;
  11057. }
  11058. #u20580 {
  11059. border-width:0px;
  11060. position:absolute;
  11061. left:2410px;
  11062. top:449px;
  11063. width:8px;
  11064. height:275px;
  11065. display:flex;
  11066. }
  11067. #u20580 .text {
  11068. position:absolute;
  11069. align-self:center;
  11070. padding:2px 2px 2px 2px;
  11071. box-sizing:border-box;
  11072. width:100%;
  11073. }
  11074. #u20580_text {
  11075. border-width:0px;
  11076. word-wrap:break-word;
  11077. text-transform:none;
  11078. visibility:hidden;
  11079. }
  11080. #u20581_div {
  11081. border-width:0px;
  11082. position:absolute;
  11083. left:0px;
  11084. top:0px;
  11085. width:8px;
  11086. height:53px;
  11087. background:inherit;
  11088. background-color:rgba(245, 154, 35, 1);
  11089. border:none;
  11090. border-radius:0px;
  11091. -moz-box-shadow:none;
  11092. -webkit-box-shadow:none;
  11093. box-shadow:none;
  11094. }
  11095. #u20581 {
  11096. border-width:0px;
  11097. position:absolute;
  11098. left:2418px;
  11099. top:671px;
  11100. width:8px;
  11101. height:53px;
  11102. display:flex;
  11103. }
  11104. #u20581 .text {
  11105. position:absolute;
  11106. align-self:center;
  11107. padding:2px 2px 2px 2px;
  11108. box-sizing:border-box;
  11109. width:100%;
  11110. }
  11111. #u20581_text {
  11112. border-width:0px;
  11113. word-wrap:break-word;
  11114. text-transform:none;
  11115. visibility:hidden;
  11116. }
  11117. #u20582_div {
  11118. border-width:0px;
  11119. position:absolute;
  11120. left:0px;
  11121. top:0px;
  11122. width:8px;
  11123. height:46px;
  11124. background:inherit;
  11125. background-color:rgba(236, 128, 141, 1);
  11126. border:none;
  11127. border-radius:0px;
  11128. -moz-box-shadow:none;
  11129. -webkit-box-shadow:none;
  11130. box-shadow:none;
  11131. }
  11132. #u20582 {
  11133. border-width:0px;
  11134. position:absolute;
  11135. left:2435px;
  11136. top:678px;
  11137. width:8px;
  11138. height:46px;
  11139. display:flex;
  11140. }
  11141. #u20582 .text {
  11142. position:absolute;
  11143. align-self:center;
  11144. padding:2px 2px 2px 2px;
  11145. box-sizing:border-box;
  11146. width:100%;
  11147. }
  11148. #u20582_text {
  11149. border-width:0px;
  11150. word-wrap:break-word;
  11151. text-transform:none;
  11152. visibility:hidden;
  11153. }
  11154. #u20583_div {
  11155. border-width:0px;
  11156. position:absolute;
  11157. left:0px;
  11158. top:0px;
  11159. width:8px;
  11160. height:177px;
  11161. background:inherit;
  11162. background-color:rgba(1, 215, 210, 1);
  11163. border:none;
  11164. border-radius:0px;
  11165. -moz-box-shadow:none;
  11166. -webkit-box-shadow:none;
  11167. box-shadow:none;
  11168. }
  11169. #u20583 {
  11170. border-width:0px;
  11171. position:absolute;
  11172. left:2443px;
  11173. top:547px;
  11174. width:8px;
  11175. height:177px;
  11176. display:flex;
  11177. }
  11178. #u20583 .text {
  11179. position:absolute;
  11180. align-self:center;
  11181. padding:2px 2px 2px 2px;
  11182. box-sizing:border-box;
  11183. width:100%;
  11184. }
  11185. #u20583_text {
  11186. border-width:0px;
  11187. word-wrap:break-word;
  11188. text-transform:none;
  11189. visibility:hidden;
  11190. }
  11191. #u20584_div {
  11192. border-width:0px;
  11193. position:absolute;
  11194. left:0px;
  11195. top:0px;
  11196. width:8px;
  11197. height:222px;
  11198. background:inherit;
  11199. background-color:rgba(0, 177, 255, 1);
  11200. border:none;
  11201. border-radius:0px;
  11202. -moz-box-shadow:none;
  11203. -webkit-box-shadow:none;
  11204. box-shadow:none;
  11205. }
  11206. #u20584 {
  11207. border-width:0px;
  11208. position:absolute;
  11209. left:2427px;
  11210. top:502px;
  11211. width:8px;
  11212. height:222px;
  11213. display:flex;
  11214. }
  11215. #u20584 .text {
  11216. position:absolute;
  11217. align-self:center;
  11218. padding:2px 2px 2px 2px;
  11219. box-sizing:border-box;
  11220. width:100%;
  11221. }
  11222. #u20584_text {
  11223. border-width:0px;
  11224. word-wrap:break-word;
  11225. text-transform:none;
  11226. visibility:hidden;
  11227. }
  11228. #u20585_div {
  11229. border-width:0px;
  11230. position:absolute;
  11231. left:0px;
  11232. top:0px;
  11233. width:45px;
  11234. height:17px;
  11235. background:inherit;
  11236. background-color:rgba(255, 255, 255, 0);
  11237. border:none;
  11238. border-radius:0px;
  11239. -moz-box-shadow:none;
  11240. -webkit-box-shadow:none;
  11241. box-shadow:none;
  11242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11243. font-weight:400;
  11244. font-style:normal;
  11245. font-size:12px;
  11246. text-align:center;
  11247. }
  11248. #u20585 {
  11249. border-width:0px;
  11250. position:absolute;
  11251. left:2409px;
  11252. top:735px;
  11253. width:45px;
  11254. height:17px;
  11255. display:flex;
  11256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11257. font-weight:400;
  11258. font-style:normal;
  11259. font-size:12px;
  11260. text-align:center;
  11261. }
  11262. #u20585 .text {
  11263. position:absolute;
  11264. align-self:flex-start;
  11265. padding:0px 0px 0px 0px;
  11266. box-sizing:border-box;
  11267. width:100%;
  11268. }
  11269. #u20585_text {
  11270. border-width:0px;
  11271. word-wrap:break-word;
  11272. text-transform:none;
  11273. }
  11274. #u20586 {
  11275. border-width:0px;
  11276. position:absolute;
  11277. left:0px;
  11278. top:0px;
  11279. width:0px;
  11280. height:0px;
  11281. }
  11282. #u20587_div {
  11283. border-width:0px;
  11284. position:absolute;
  11285. left:0px;
  11286. top:0px;
  11287. width:8px;
  11288. height:193px;
  11289. background:inherit;
  11290. background-color:rgba(0, 92, 249, 1);
  11291. border:none;
  11292. border-radius:0px;
  11293. -moz-box-shadow:none;
  11294. -webkit-box-shadow:none;
  11295. box-shadow:none;
  11296. }
  11297. #u20587 {
  11298. border-width:0px;
  11299. position:absolute;
  11300. left:2500px;
  11301. top:531px;
  11302. width:8px;
  11303. height:193px;
  11304. display:flex;
  11305. }
  11306. #u20587 .text {
  11307. position:absolute;
  11308. align-self:center;
  11309. padding:2px 2px 2px 2px;
  11310. box-sizing:border-box;
  11311. width:100%;
  11312. }
  11313. #u20587_text {
  11314. border-width:0px;
  11315. word-wrap:break-word;
  11316. text-transform:none;
  11317. visibility:hidden;
  11318. }
  11319. #u20588_div {
  11320. border-width:0px;
  11321. position:absolute;
  11322. left:0px;
  11323. top:0px;
  11324. width:8px;
  11325. height:37px;
  11326. background:inherit;
  11327. background-color:rgba(245, 154, 35, 1);
  11328. border:none;
  11329. border-radius:0px;
  11330. -moz-box-shadow:none;
  11331. -webkit-box-shadow:none;
  11332. box-shadow:none;
  11333. }
  11334. #u20588 {
  11335. border-width:0px;
  11336. position:absolute;
  11337. left:2508px;
  11338. top:687px;
  11339. width:8px;
  11340. height:37px;
  11341. display:flex;
  11342. }
  11343. #u20588 .text {
  11344. position:absolute;
  11345. align-self:center;
  11346. padding:2px 2px 2px 2px;
  11347. box-sizing:border-box;
  11348. width:100%;
  11349. }
  11350. #u20588_text {
  11351. border-width:0px;
  11352. word-wrap:break-word;
  11353. text-transform:none;
  11354. visibility:hidden;
  11355. }
  11356. #u20589_div {
  11357. border-width:0px;
  11358. position:absolute;
  11359. left:0px;
  11360. top:0px;
  11361. width:8px;
  11362. height:32px;
  11363. background:inherit;
  11364. background-color:rgba(236, 128, 141, 1);
  11365. border:none;
  11366. border-radius:0px;
  11367. -moz-box-shadow:none;
  11368. -webkit-box-shadow:none;
  11369. box-shadow:none;
  11370. }
  11371. #u20589 {
  11372. border-width:0px;
  11373. position:absolute;
  11374. left:2524px;
  11375. top:692px;
  11376. width:8px;
  11377. height:32px;
  11378. display:flex;
  11379. }
  11380. #u20589 .text {
  11381. position:absolute;
  11382. align-self:center;
  11383. padding:2px 2px 2px 2px;
  11384. box-sizing:border-box;
  11385. width:100%;
  11386. }
  11387. #u20589_text {
  11388. border-width:0px;
  11389. word-wrap:break-word;
  11390. text-transform:none;
  11391. visibility:hidden;
  11392. }
  11393. #u20590_div {
  11394. border-width:0px;
  11395. position:absolute;
  11396. left:0px;
  11397. top:0px;
  11398. width:8px;
  11399. height:124px;
  11400. background:inherit;
  11401. background-color:rgba(1, 215, 210, 1);
  11402. border:none;
  11403. border-radius:0px;
  11404. -moz-box-shadow:none;
  11405. -webkit-box-shadow:none;
  11406. box-shadow:none;
  11407. }
  11408. #u20590 {
  11409. border-width:0px;
  11410. position:absolute;
  11411. left:2532px;
  11412. top:600px;
  11413. width:8px;
  11414. height:124px;
  11415. display:flex;
  11416. }
  11417. #u20590 .text {
  11418. position:absolute;
  11419. align-self:center;
  11420. padding:2px 2px 2px 2px;
  11421. box-sizing:border-box;
  11422. width:100%;
  11423. }
  11424. #u20590_text {
  11425. border-width:0px;
  11426. word-wrap:break-word;
  11427. text-transform:none;
  11428. visibility:hidden;
  11429. }
  11430. #u20591_div {
  11431. border-width:0px;
  11432. position:absolute;
  11433. left:0px;
  11434. top:0px;
  11435. width:8px;
  11436. height:156px;
  11437. background:inherit;
  11438. background-color:rgba(0, 177, 255, 1);
  11439. border:none;
  11440. border-radius:0px;
  11441. -moz-box-shadow:none;
  11442. -webkit-box-shadow:none;
  11443. box-shadow:none;
  11444. }
  11445. #u20591 {
  11446. border-width:0px;
  11447. position:absolute;
  11448. left:2516px;
  11449. top:568px;
  11450. width:8px;
  11451. height:156px;
  11452. display:flex;
  11453. }
  11454. #u20591 .text {
  11455. position:absolute;
  11456. align-self:center;
  11457. padding:2px 2px 2px 2px;
  11458. box-sizing:border-box;
  11459. width:100%;
  11460. }
  11461. #u20591_text {
  11462. border-width:0px;
  11463. word-wrap:break-word;
  11464. text-transform:none;
  11465. visibility:hidden;
  11466. }
  11467. #u20592_div {
  11468. border-width:0px;
  11469. position:absolute;
  11470. left:0px;
  11471. top:0px;
  11472. width:42px;
  11473. height:17px;
  11474. background:inherit;
  11475. background-color:rgba(255, 255, 255, 0);
  11476. border:none;
  11477. border-radius:0px;
  11478. -moz-box-shadow:none;
  11479. -webkit-box-shadow:none;
  11480. box-shadow:none;
  11481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11482. font-weight:400;
  11483. font-style:normal;
  11484. font-size:12px;
  11485. text-align:center;
  11486. }
  11487. #u20592 {
  11488. border-width:0px;
  11489. position:absolute;
  11490. left:2500px;
  11491. top:735px;
  11492. width:42px;
  11493. height:17px;
  11494. display:flex;
  11495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11496. font-weight:400;
  11497. font-style:normal;
  11498. font-size:12px;
  11499. text-align:center;
  11500. }
  11501. #u20592 .text {
  11502. position:absolute;
  11503. align-self:flex-start;
  11504. padding:0px 0px 0px 0px;
  11505. box-sizing:border-box;
  11506. width:100%;
  11507. }
  11508. #u20592_text {
  11509. border-width:0px;
  11510. word-wrap:break-word;
  11511. text-transform:none;
  11512. }
  11513. #u20593 {
  11514. border-width:0px;
  11515. position:absolute;
  11516. left:0px;
  11517. top:0px;
  11518. width:0px;
  11519. height:0px;
  11520. }
  11521. #u20594_div {
  11522. border-width:0px;
  11523. position:absolute;
  11524. left:0px;
  11525. top:0px;
  11526. width:8px;
  11527. height:156px;
  11528. background:inherit;
  11529. background-color:rgba(0, 92, 249, 1);
  11530. border:none;
  11531. border-radius:0px;
  11532. -moz-box-shadow:none;
  11533. -webkit-box-shadow:none;
  11534. box-shadow:none;
  11535. }
  11536. #u20594 {
  11537. border-width:0px;
  11538. position:absolute;
  11539. left:2586px;
  11540. top:568px;
  11541. width:8px;
  11542. height:156px;
  11543. display:flex;
  11544. }
  11545. #u20594 .text {
  11546. position:absolute;
  11547. align-self:center;
  11548. padding:2px 2px 2px 2px;
  11549. box-sizing:border-box;
  11550. width:100%;
  11551. }
  11552. #u20594_text {
  11553. border-width:0px;
  11554. word-wrap:break-word;
  11555. text-transform:none;
  11556. visibility:hidden;
  11557. }
  11558. #u20595_div {
  11559. border-width:0px;
  11560. position:absolute;
  11561. left:0px;
  11562. top:0px;
  11563. width:8px;
  11564. height:30px;
  11565. background:inherit;
  11566. background-color:rgba(245, 154, 35, 1);
  11567. border:none;
  11568. border-radius:0px;
  11569. -moz-box-shadow:none;
  11570. -webkit-box-shadow:none;
  11571. box-shadow:none;
  11572. }
  11573. #u20595 {
  11574. border-width:0px;
  11575. position:absolute;
  11576. left:2595px;
  11577. top:694px;
  11578. width:8px;
  11579. height:30px;
  11580. display:flex;
  11581. }
  11582. #u20595 .text {
  11583. position:absolute;
  11584. align-self:center;
  11585. padding:2px 2px 2px 2px;
  11586. box-sizing:border-box;
  11587. width:100%;
  11588. }
  11589. #u20595_text {
  11590. border-width:0px;
  11591. word-wrap:break-word;
  11592. text-transform:none;
  11593. visibility:hidden;
  11594. }
  11595. #u20596_div {
  11596. border-width:0px;
  11597. position:absolute;
  11598. left:0px;
  11599. top:0px;
  11600. width:8px;
  11601. height:26px;
  11602. background:inherit;
  11603. background-color:rgba(236, 128, 141, 1);
  11604. border:none;
  11605. border-radius:0px;
  11606. -moz-box-shadow:none;
  11607. -webkit-box-shadow:none;
  11608. box-shadow:none;
  11609. }
  11610. #u20596 {
  11611. border-width:0px;
  11612. position:absolute;
  11613. left:2611px;
  11614. top:698px;
  11615. width:8px;
  11616. height:26px;
  11617. display:flex;
  11618. }
  11619. #u20596 .text {
  11620. position:absolute;
  11621. align-self:center;
  11622. padding:2px 2px 2px 2px;
  11623. box-sizing:border-box;
  11624. width:100%;
  11625. }
  11626. #u20596_text {
  11627. border-width:0px;
  11628. word-wrap:break-word;
  11629. text-transform:none;
  11630. visibility:hidden;
  11631. }
  11632. #u20597_div {
  11633. border-width:0px;
  11634. position:absolute;
  11635. left:0px;
  11636. top:0px;
  11637. width:8px;
  11638. height:100px;
  11639. background:inherit;
  11640. background-color:rgba(1, 215, 210, 1);
  11641. border:none;
  11642. border-radius:0px;
  11643. -moz-box-shadow:none;
  11644. -webkit-box-shadow:none;
  11645. box-shadow:none;
  11646. }
  11647. #u20597 {
  11648. border-width:0px;
  11649. position:absolute;
  11650. left:2619px;
  11651. top:624px;
  11652. width:8px;
  11653. height:100px;
  11654. display:flex;
  11655. }
  11656. #u20597 .text {
  11657. position:absolute;
  11658. align-self:center;
  11659. padding:2px 2px 2px 2px;
  11660. box-sizing:border-box;
  11661. width:100%;
  11662. }
  11663. #u20597_text {
  11664. border-width:0px;
  11665. word-wrap:break-word;
  11666. text-transform:none;
  11667. visibility:hidden;
  11668. }
  11669. #u20598_div {
  11670. border-width:0px;
  11671. position:absolute;
  11672. left:0px;
  11673. top:0px;
  11674. width:8px;
  11675. height:126px;
  11676. background:inherit;
  11677. background-color:rgba(0, 177, 255, 1);
  11678. border:none;
  11679. border-radius:0px;
  11680. -moz-box-shadow:none;
  11681. -webkit-box-shadow:none;
  11682. box-shadow:none;
  11683. }
  11684. #u20598 {
  11685. border-width:0px;
  11686. position:absolute;
  11687. left:2603px;
  11688. top:598px;
  11689. width:8px;
  11690. height:126px;
  11691. display:flex;
  11692. }
  11693. #u20598 .text {
  11694. position:absolute;
  11695. align-self:center;
  11696. padding:2px 2px 2px 2px;
  11697. box-sizing:border-box;
  11698. width:100%;
  11699. }
  11700. #u20598_text {
  11701. border-width:0px;
  11702. word-wrap:break-word;
  11703. text-transform:none;
  11704. visibility:hidden;
  11705. }
  11706. #u20599_div {
  11707. border-width:0px;
  11708. position:absolute;
  11709. left:0px;
  11710. top:0px;
  11711. width:39px;
  11712. height:17px;
  11713. background:inherit;
  11714. background-color:rgba(255, 255, 255, 0);
  11715. border:none;
  11716. border-radius:0px;
  11717. -moz-box-shadow:none;
  11718. -webkit-box-shadow:none;
  11719. box-shadow:none;
  11720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11721. font-weight:400;
  11722. font-style:normal;
  11723. font-size:12px;
  11724. text-align:center;
  11725. }
  11726. #u20599 {
  11727. border-width:0px;
  11728. position:absolute;
  11729. left:2588px;
  11730. top:735px;
  11731. width:39px;
  11732. height:17px;
  11733. display:flex;
  11734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11735. font-weight:400;
  11736. font-style:normal;
  11737. font-size:12px;
  11738. text-align:center;
  11739. }
  11740. #u20599 .text {
  11741. position:absolute;
  11742. align-self:flex-start;
  11743. padding:0px 0px 0px 0px;
  11744. box-sizing:border-box;
  11745. width:100%;
  11746. }
  11747. #u20599_text {
  11748. border-width:0px;
  11749. word-wrap:break-word;
  11750. text-transform:none;
  11751. }
  11752. #u20600 {
  11753. border-width:0px;
  11754. position:absolute;
  11755. left:0px;
  11756. top:0px;
  11757. width:0px;
  11758. height:0px;
  11759. }
  11760. #u20601_div {
  11761. border-width:0px;
  11762. position:absolute;
  11763. left:0px;
  11764. top:0px;
  11765. width:8px;
  11766. height:124px;
  11767. background:inherit;
  11768. background-color:rgba(0, 92, 249, 1);
  11769. border:none;
  11770. border-radius:0px;
  11771. -moz-box-shadow:none;
  11772. -webkit-box-shadow:none;
  11773. box-shadow:none;
  11774. }
  11775. #u20601 {
  11776. border-width:0px;
  11777. position:absolute;
  11778. left:2673px;
  11779. top:600px;
  11780. width:8px;
  11781. height:124px;
  11782. display:flex;
  11783. }
  11784. #u20601 .text {
  11785. position:absolute;
  11786. align-self:center;
  11787. padding:2px 2px 2px 2px;
  11788. box-sizing:border-box;
  11789. width:100%;
  11790. }
  11791. #u20601_text {
  11792. border-width:0px;
  11793. word-wrap:break-word;
  11794. text-transform:none;
  11795. visibility:hidden;
  11796. }
  11797. #u20602_div {
  11798. border-width:0px;
  11799. position:absolute;
  11800. left:0px;
  11801. top:0px;
  11802. width:8px;
  11803. height:24px;
  11804. background:inherit;
  11805. background-color:rgba(245, 154, 35, 1);
  11806. border:none;
  11807. border-radius:0px;
  11808. -moz-box-shadow:none;
  11809. -webkit-box-shadow:none;
  11810. box-shadow:none;
  11811. }
  11812. #u20602 {
  11813. border-width:0px;
  11814. position:absolute;
  11815. left:2681px;
  11816. top:700px;
  11817. width:8px;
  11818. height:24px;
  11819. display:flex;
  11820. }
  11821. #u20602 .text {
  11822. position:absolute;
  11823. align-self:center;
  11824. padding:2px 2px 2px 2px;
  11825. box-sizing:border-box;
  11826. width:100%;
  11827. }
  11828. #u20602_text {
  11829. border-width:0px;
  11830. word-wrap:break-word;
  11831. text-transform:none;
  11832. visibility:hidden;
  11833. }
  11834. #u20603_div {
  11835. border-width:0px;
  11836. position:absolute;
  11837. left:0px;
  11838. top:0px;
  11839. width:8px;
  11840. height:21px;
  11841. background:inherit;
  11842. background-color:rgba(236, 128, 141, 1);
  11843. border:none;
  11844. border-radius:0px;
  11845. -moz-box-shadow:none;
  11846. -webkit-box-shadow:none;
  11847. box-shadow:none;
  11848. }
  11849. #u20603 {
  11850. border-width:0px;
  11851. position:absolute;
  11852. left:2697px;
  11853. top:703px;
  11854. width:8px;
  11855. height:21px;
  11856. display:flex;
  11857. }
  11858. #u20603 .text {
  11859. position:absolute;
  11860. align-self:center;
  11861. padding:2px 2px 2px 2px;
  11862. box-sizing:border-box;
  11863. width:100%;
  11864. }
  11865. #u20603_text {
  11866. border-width:0px;
  11867. word-wrap:break-word;
  11868. text-transform:none;
  11869. visibility:hidden;
  11870. }
  11871. #u20604_div {
  11872. border-width:0px;
  11873. position:absolute;
  11874. left:0px;
  11875. top:0px;
  11876. width:8px;
  11877. height:80px;
  11878. background:inherit;
  11879. background-color:rgba(1, 215, 210, 1);
  11880. border:none;
  11881. border-radius:0px;
  11882. -moz-box-shadow:none;
  11883. -webkit-box-shadow:none;
  11884. box-shadow:none;
  11885. }
  11886. #u20604 {
  11887. border-width:0px;
  11888. position:absolute;
  11889. left:2706px;
  11890. top:644px;
  11891. width:8px;
  11892. height:80px;
  11893. display:flex;
  11894. }
  11895. #u20604 .text {
  11896. position:absolute;
  11897. align-self:center;
  11898. padding:2px 2px 2px 2px;
  11899. box-sizing:border-box;
  11900. width:100%;
  11901. }
  11902. #u20604_text {
  11903. border-width:0px;
  11904. word-wrap:break-word;
  11905. text-transform:none;
  11906. visibility:hidden;
  11907. }
  11908. #u20605_div {
  11909. border-width:0px;
  11910. position:absolute;
  11911. left:0px;
  11912. top:0px;
  11913. width:8px;
  11914. height:100px;
  11915. background:inherit;
  11916. background-color:rgba(0, 177, 255, 1);
  11917. border:none;
  11918. border-radius:0px;
  11919. -moz-box-shadow:none;
  11920. -webkit-box-shadow:none;
  11921. box-shadow:none;
  11922. }
  11923. #u20605 {
  11924. border-width:0px;
  11925. position:absolute;
  11926. left:2689px;
  11927. top:624px;
  11928. width:8px;
  11929. height:100px;
  11930. display:flex;
  11931. }
  11932. #u20605 .text {
  11933. position:absolute;
  11934. align-self:center;
  11935. padding:2px 2px 2px 2px;
  11936. box-sizing:border-box;
  11937. width:100%;
  11938. }
  11939. #u20605_text {
  11940. border-width:0px;
  11941. word-wrap:break-word;
  11942. text-transform:none;
  11943. visibility:hidden;
  11944. }
  11945. #u20606_div {
  11946. border-width:0px;
  11947. position:absolute;
  11948. left:0px;
  11949. top:0px;
  11950. width:42px;
  11951. height:17px;
  11952. background:inherit;
  11953. background-color:rgba(255, 255, 255, 0);
  11954. border:none;
  11955. border-radius:0px;
  11956. -moz-box-shadow:none;
  11957. -webkit-box-shadow:none;
  11958. box-shadow:none;
  11959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11960. font-weight:400;
  11961. font-style:normal;
  11962. font-size:12px;
  11963. text-align:center;
  11964. }
  11965. #u20606 {
  11966. border-width:0px;
  11967. position:absolute;
  11968. left:2673px;
  11969. top:735px;
  11970. width:42px;
  11971. height:17px;
  11972. display:flex;
  11973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11974. font-weight:400;
  11975. font-style:normal;
  11976. font-size:12px;
  11977. text-align:center;
  11978. }
  11979. #u20606 .text {
  11980. position:absolute;
  11981. align-self:flex-start;
  11982. padding:0px 0px 0px 0px;
  11983. box-sizing:border-box;
  11984. width:100%;
  11985. }
  11986. #u20606_text {
  11987. border-width:0px;
  11988. word-wrap:break-word;
  11989. text-transform:none;
  11990. }
  11991. #u20607 {
  11992. border-width:0px;
  11993. position:absolute;
  11994. left:0px;
  11995. top:0px;
  11996. width:0px;
  11997. height:0px;
  11998. }
  11999. #u20608_div {
  12000. border-width:0px;
  12001. position:absolute;
  12002. left:0px;
  12003. top:0px;
  12004. width:8px;
  12005. height:193px;
  12006. background:inherit;
  12007. background-color:rgba(0, 92, 249, 1);
  12008. border:none;
  12009. border-radius:0px;
  12010. -moz-box-shadow:none;
  12011. -webkit-box-shadow:none;
  12012. box-shadow:none;
  12013. }
  12014. #u20608 {
  12015. border-width:0px;
  12016. position:absolute;
  12017. left:2760px;
  12018. top:531px;
  12019. width:8px;
  12020. height:193px;
  12021. display:flex;
  12022. }
  12023. #u20608 .text {
  12024. position:absolute;
  12025. align-self:center;
  12026. padding:2px 2px 2px 2px;
  12027. box-sizing:border-box;
  12028. width:100%;
  12029. }
  12030. #u20608_text {
  12031. border-width:0px;
  12032. word-wrap:break-word;
  12033. text-transform:none;
  12034. visibility:hidden;
  12035. }
  12036. #u20609_div {
  12037. border-width:0px;
  12038. position:absolute;
  12039. left:0px;
  12040. top:0px;
  12041. width:8px;
  12042. height:37px;
  12043. background:inherit;
  12044. background-color:rgba(245, 154, 35, 1);
  12045. border:none;
  12046. border-radius:0px;
  12047. -moz-box-shadow:none;
  12048. -webkit-box-shadow:none;
  12049. box-shadow:none;
  12050. }
  12051. #u20609 {
  12052. border-width:0px;
  12053. position:absolute;
  12054. left:2768px;
  12055. top:687px;
  12056. width:8px;
  12057. height:37px;
  12058. display:flex;
  12059. }
  12060. #u20609 .text {
  12061. position:absolute;
  12062. align-self:center;
  12063. padding:2px 2px 2px 2px;
  12064. box-sizing:border-box;
  12065. width:100%;
  12066. }
  12067. #u20609_text {
  12068. border-width:0px;
  12069. word-wrap:break-word;
  12070. text-transform:none;
  12071. visibility:hidden;
  12072. }
  12073. #u20610_div {
  12074. border-width:0px;
  12075. position:absolute;
  12076. left:0px;
  12077. top:0px;
  12078. width:8px;
  12079. height:32px;
  12080. background:inherit;
  12081. background-color:rgba(236, 128, 141, 1);
  12082. border:none;
  12083. border-radius:0px;
  12084. -moz-box-shadow:none;
  12085. -webkit-box-shadow:none;
  12086. box-shadow:none;
  12087. }
  12088. #u20610 {
  12089. border-width:0px;
  12090. position:absolute;
  12091. left:2784px;
  12092. top:692px;
  12093. width:8px;
  12094. height:32px;
  12095. display:flex;
  12096. }
  12097. #u20610 .text {
  12098. position:absolute;
  12099. align-self:center;
  12100. padding:2px 2px 2px 2px;
  12101. box-sizing:border-box;
  12102. width:100%;
  12103. }
  12104. #u20610_text {
  12105. border-width:0px;
  12106. word-wrap:break-word;
  12107. text-transform:none;
  12108. visibility:hidden;
  12109. }
  12110. #u20611_div {
  12111. border-width:0px;
  12112. position:absolute;
  12113. left:0px;
  12114. top:0px;
  12115. width:8px;
  12116. height:124px;
  12117. background:inherit;
  12118. background-color:rgba(1, 215, 210, 1);
  12119. border:none;
  12120. border-radius:0px;
  12121. -moz-box-shadow:none;
  12122. -webkit-box-shadow:none;
  12123. box-shadow:none;
  12124. }
  12125. #u20611 {
  12126. border-width:0px;
  12127. position:absolute;
  12128. left:2792px;
  12129. top:600px;
  12130. width:8px;
  12131. height:124px;
  12132. display:flex;
  12133. }
  12134. #u20611 .text {
  12135. position:absolute;
  12136. align-self:center;
  12137. padding:2px 2px 2px 2px;
  12138. box-sizing:border-box;
  12139. width:100%;
  12140. }
  12141. #u20611_text {
  12142. border-width:0px;
  12143. word-wrap:break-word;
  12144. text-transform:none;
  12145. visibility:hidden;
  12146. }
  12147. #u20612_div {
  12148. border-width:0px;
  12149. position:absolute;
  12150. left:0px;
  12151. top:0px;
  12152. width:8px;
  12153. height:156px;
  12154. background:inherit;
  12155. background-color:rgba(0, 177, 255, 1);
  12156. border:none;
  12157. border-radius:0px;
  12158. -moz-box-shadow:none;
  12159. -webkit-box-shadow:none;
  12160. box-shadow:none;
  12161. }
  12162. #u20612 {
  12163. border-width:0px;
  12164. position:absolute;
  12165. left:2776px;
  12166. top:568px;
  12167. width:8px;
  12168. height:156px;
  12169. display:flex;
  12170. }
  12171. #u20612 .text {
  12172. position:absolute;
  12173. align-self:center;
  12174. padding:2px 2px 2px 2px;
  12175. box-sizing:border-box;
  12176. width:100%;
  12177. }
  12178. #u20612_text {
  12179. border-width:0px;
  12180. word-wrap:break-word;
  12181. text-transform:none;
  12182. visibility:hidden;
  12183. }
  12184. #u20613_div {
  12185. border-width:0px;
  12186. position:absolute;
  12187. left:0px;
  12188. top:0px;
  12189. width:42px;
  12190. height:17px;
  12191. background:inherit;
  12192. background-color:rgba(255, 255, 255, 0);
  12193. border:none;
  12194. border-radius:0px;
  12195. -moz-box-shadow:none;
  12196. -webkit-box-shadow:none;
  12197. box-shadow:none;
  12198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12199. font-weight:400;
  12200. font-style:normal;
  12201. font-size:12px;
  12202. text-align:center;
  12203. }
  12204. #u20613 {
  12205. border-width:0px;
  12206. position:absolute;
  12207. left:2760px;
  12208. top:735px;
  12209. width:42px;
  12210. height:17px;
  12211. display:flex;
  12212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12213. font-weight:400;
  12214. font-style:normal;
  12215. font-size:12px;
  12216. text-align:center;
  12217. }
  12218. #u20613 .text {
  12219. position:absolute;
  12220. align-self:flex-start;
  12221. padding:0px 0px 0px 0px;
  12222. box-sizing:border-box;
  12223. width:100%;
  12224. }
  12225. #u20613_text {
  12226. border-width:0px;
  12227. word-wrap:break-word;
  12228. text-transform:none;
  12229. }
  12230. #u20614 {
  12231. border-width:0px;
  12232. position:absolute;
  12233. left:0px;
  12234. top:0px;
  12235. width:0px;
  12236. height:0px;
  12237. }
  12238. #u20615_div {
  12239. border-width:0px;
  12240. position:absolute;
  12241. left:0px;
  12242. top:0px;
  12243. width:8px;
  12244. height:213px;
  12245. background:inherit;
  12246. background-color:rgba(0, 92, 249, 1);
  12247. border:none;
  12248. border-radius:0px;
  12249. -moz-box-shadow:none;
  12250. -webkit-box-shadow:none;
  12251. box-shadow:none;
  12252. }
  12253. #u20615 {
  12254. border-width:0px;
  12255. position:absolute;
  12256. left:2848px;
  12257. top:511px;
  12258. width:8px;
  12259. height:213px;
  12260. display:flex;
  12261. }
  12262. #u20615 .text {
  12263. position:absolute;
  12264. align-self:center;
  12265. padding:2px 2px 2px 2px;
  12266. box-sizing:border-box;
  12267. width:100%;
  12268. }
  12269. #u20615_text {
  12270. border-width:0px;
  12271. word-wrap:break-word;
  12272. text-transform:none;
  12273. visibility:hidden;
  12274. }
  12275. #u20616_div {
  12276. border-width:0px;
  12277. position:absolute;
  12278. left:0px;
  12279. top:0px;
  12280. width:8px;
  12281. height:41px;
  12282. background:inherit;
  12283. background-color:rgba(245, 154, 35, 1);
  12284. border:none;
  12285. border-radius:0px;
  12286. -moz-box-shadow:none;
  12287. -webkit-box-shadow:none;
  12288. box-shadow:none;
  12289. }
  12290. #u20616 {
  12291. border-width:0px;
  12292. position:absolute;
  12293. left:2856px;
  12294. top:683px;
  12295. width:8px;
  12296. height:41px;
  12297. display:flex;
  12298. }
  12299. #u20616 .text {
  12300. position:absolute;
  12301. align-self:center;
  12302. padding:2px 2px 2px 2px;
  12303. box-sizing:border-box;
  12304. width:100%;
  12305. }
  12306. #u20616_text {
  12307. border-width:0px;
  12308. word-wrap:break-word;
  12309. text-transform:none;
  12310. visibility:hidden;
  12311. }
  12312. #u20617_div {
  12313. border-width:0px;
  12314. position:absolute;
  12315. left:0px;
  12316. top:0px;
  12317. width:8px;
  12318. height:35px;
  12319. background:inherit;
  12320. background-color:rgba(236, 128, 141, 1);
  12321. border:none;
  12322. border-radius:0px;
  12323. -moz-box-shadow:none;
  12324. -webkit-box-shadow:none;
  12325. box-shadow:none;
  12326. }
  12327. #u20617 {
  12328. border-width:0px;
  12329. position:absolute;
  12330. left:2872px;
  12331. top:689px;
  12332. width:8px;
  12333. height:35px;
  12334. display:flex;
  12335. }
  12336. #u20617 .text {
  12337. position:absolute;
  12338. align-self:center;
  12339. padding:2px 2px 2px 2px;
  12340. box-sizing:border-box;
  12341. width:100%;
  12342. }
  12343. #u20617_text {
  12344. border-width:0px;
  12345. word-wrap:break-word;
  12346. text-transform:none;
  12347. visibility:hidden;
  12348. }
  12349. #u20618_div {
  12350. border-width:0px;
  12351. position:absolute;
  12352. left:0px;
  12353. top:0px;
  12354. width:8px;
  12355. height:137px;
  12356. background:inherit;
  12357. background-color:rgba(1, 215, 210, 1);
  12358. border:none;
  12359. border-radius:0px;
  12360. -moz-box-shadow:none;
  12361. -webkit-box-shadow:none;
  12362. box-shadow:none;
  12363. }
  12364. #u20618 {
  12365. border-width:0px;
  12366. position:absolute;
  12367. left:2880px;
  12368. top:587px;
  12369. width:8px;
  12370. height:137px;
  12371. display:flex;
  12372. }
  12373. #u20618 .text {
  12374. position:absolute;
  12375. align-self:center;
  12376. padding:2px 2px 2px 2px;
  12377. box-sizing:border-box;
  12378. width:100%;
  12379. }
  12380. #u20618_text {
  12381. border-width:0px;
  12382. word-wrap:break-word;
  12383. text-transform:none;
  12384. visibility:hidden;
  12385. }
  12386. #u20619_div {
  12387. border-width:0px;
  12388. position:absolute;
  12389. left:0px;
  12390. top:0px;
  12391. width:8px;
  12392. height:172px;
  12393. background:inherit;
  12394. background-color:rgba(0, 177, 255, 1);
  12395. border:none;
  12396. border-radius:0px;
  12397. -moz-box-shadow:none;
  12398. -webkit-box-shadow:none;
  12399. box-shadow:none;
  12400. }
  12401. #u20619 {
  12402. border-width:0px;
  12403. position:absolute;
  12404. left:2864px;
  12405. top:552px;
  12406. width:8px;
  12407. height:172px;
  12408. display:flex;
  12409. }
  12410. #u20619 .text {
  12411. position:absolute;
  12412. align-self:center;
  12413. padding:2px 2px 2px 2px;
  12414. box-sizing:border-box;
  12415. width:100%;
  12416. }
  12417. #u20619_text {
  12418. border-width:0px;
  12419. word-wrap:break-word;
  12420. text-transform:none;
  12421. visibility:hidden;
  12422. }
  12423. #u20620_div {
  12424. border-width:0px;
  12425. position:absolute;
  12426. left:0px;
  12427. top:0px;
  12428. width:42px;
  12429. height:17px;
  12430. background:inherit;
  12431. background-color:rgba(255, 255, 255, 0);
  12432. border:none;
  12433. border-radius:0px;
  12434. -moz-box-shadow:none;
  12435. -webkit-box-shadow:none;
  12436. box-shadow:none;
  12437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12438. font-weight:400;
  12439. font-style:normal;
  12440. font-size:12px;
  12441. text-align:center;
  12442. }
  12443. #u20620 {
  12444. border-width:0px;
  12445. position:absolute;
  12446. left:2848px;
  12447. top:735px;
  12448. width:42px;
  12449. height:17px;
  12450. display:flex;
  12451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12452. font-weight:400;
  12453. font-style:normal;
  12454. font-size:12px;
  12455. text-align:center;
  12456. }
  12457. #u20620 .text {
  12458. position:absolute;
  12459. align-self:flex-start;
  12460. padding:0px 0px 0px 0px;
  12461. box-sizing:border-box;
  12462. width:100%;
  12463. }
  12464. #u20620_text {
  12465. border-width:0px;
  12466. word-wrap:break-word;
  12467. text-transform:none;
  12468. }
  12469. #u20621_img {
  12470. border-width:0px;
  12471. position:absolute;
  12472. left:-1px;
  12473. top:-1px;
  12474. width:1280px;
  12475. height:135px;
  12476. }
  12477. #u20621p000 {
  12478. border-width:0px;
  12479. position:absolute;
  12480. left:-4px;
  12481. top:122px;
  12482. width:106px;
  12483. height:6px;
  12484. -webkit-transform:rotate(7deg);
  12485. -moz-transform:rotate(7deg);
  12486. -ms-transform:rotate(7deg);
  12487. transform:rotate(7deg);
  12488. }
  12489. #u20621p000_img {
  12490. border-width:0px;
  12491. position:absolute;
  12492. left:0px;
  12493. top:0px;
  12494. width:106px;
  12495. height:6px;
  12496. }
  12497. #u20621p001 {
  12498. border-width:0px;
  12499. position:absolute;
  12500. left:94px;
  12501. top:116px;
  12502. width:110px;
  12503. height:6px;
  12504. -webkit-transform:rotate(-13deg);
  12505. -moz-transform:rotate(-13deg);
  12506. -ms-transform:rotate(-13deg);
  12507. transform:rotate(-13deg);
  12508. }
  12509. #u20621p001_img {
  12510. border-width:0px;
  12511. position:absolute;
  12512. left:0px;
  12513. top:0px;
  12514. width:110px;
  12515. height:6px;
  12516. }
  12517. #u20621p002 {
  12518. border-width:0px;
  12519. position:absolute;
  12520. left:198px;
  12521. top:110px;
  12522. width:108px;
  12523. height:6px;
  12524. -webkit-transform:rotate(5deg);
  12525. -moz-transform:rotate(5deg);
  12526. -ms-transform:rotate(5deg);
  12527. transform:rotate(5deg);
  12528. }
  12529. #u20621p002_img {
  12530. border-width:0px;
  12531. position:absolute;
  12532. left:0px;
  12533. top:0px;
  12534. width:108px;
  12535. height:6px;
  12536. }
  12537. #u20621p003 {
  12538. border-width:0px;
  12539. position:absolute;
  12540. left:300px;
  12541. top:116px;
  12542. width:106px;
  12543. height:4px;
  12544. }
  12545. #u20621p003_img {
  12546. border-width:0px;
  12547. position:absolute;
  12548. left:0px;
  12549. top:0px;
  12550. width:106px;
  12551. height:4px;
  12552. }
  12553. #u20621p004 {
  12554. border-width:0px;
  12555. position:absolute;
  12556. left:400px;
  12557. top:116px;
  12558. width:88px;
  12559. height:6px;
  12560. }
  12561. #u20621p004_img {
  12562. border-width:0px;
  12563. position:absolute;
  12564. left:0px;
  12565. top:0px;
  12566. width:88px;
  12567. height:6px;
  12568. }
  12569. #u20621p005 {
  12570. border-width:0px;
  12571. position:absolute;
  12572. left:482px;
  12573. top:106px;
  12574. width:98px;
  12575. height:6px;
  12576. -webkit-transform:rotate(-12deg);
  12577. -moz-transform:rotate(-12deg);
  12578. -ms-transform:rotate(-12deg);
  12579. transform:rotate(-12deg);
  12580. }
  12581. #u20621p005_img {
  12582. border-width:0px;
  12583. position:absolute;
  12584. left:0px;
  12585. top:0px;
  12586. width:98px;
  12587. height:6px;
  12588. }
  12589. #u20621p006 {
  12590. border-width:0px;
  12591. position:absolute;
  12592. left:568px;
  12593. top:76px;
  12594. width:100px;
  12595. height:6px;
  12596. -webkit-transform:rotate(-26deg);
  12597. -moz-transform:rotate(-26deg);
  12598. -ms-transform:rotate(-26deg);
  12599. transform:rotate(-26deg);
  12600. }
  12601. #u20621p006_img {
  12602. border-width:0px;
  12603. position:absolute;
  12604. left:0px;
  12605. top:0px;
  12606. width:100px;
  12607. height:6px;
  12608. }
  12609. #u20621p007 {
  12610. border-width:0px;
  12611. position:absolute;
  12612. left:650px;
  12613. top:26px;
  12614. width:116px;
  12615. height:6px;
  12616. -webkit-transform:rotate(-32deg);
  12617. -moz-transform:rotate(-32deg);
  12618. -ms-transform:rotate(-32deg);
  12619. transform:rotate(-32deg);
  12620. }
  12621. #u20621p007_img {
  12622. border-width:0px;
  12623. position:absolute;
  12624. left:0px;
  12625. top:0px;
  12626. width:116px;
  12627. height:6px;
  12628. }
  12629. #u20621p008 {
  12630. border-width:0px;
  12631. position:absolute;
  12632. left:728px;
  12633. top:40px;
  12634. width:128px;
  12635. height:10px;
  12636. -webkit-transform:rotate(50deg);
  12637. -moz-transform:rotate(50deg);
  12638. -ms-transform:rotate(50deg);
  12639. transform:rotate(50deg);
  12640. }
  12641. #u20621p008_img {
  12642. border-width:0px;
  12643. position:absolute;
  12644. left:0px;
  12645. top:0px;
  12646. width:128px;
  12647. height:10px;
  12648. }
  12649. #u20621p009 {
  12650. border-width:0px;
  12651. position:absolute;
  12652. left:824px;
  12653. top:104px;
  12654. width:110px;
  12655. height:6px;
  12656. -webkit-transform:rotate(20deg);
  12657. -moz-transform:rotate(20deg);
  12658. -ms-transform:rotate(20deg);
  12659. transform:rotate(20deg);
  12660. }
  12661. #u20621p009_img {
  12662. border-width:0px;
  12663. position:absolute;
  12664. left:0px;
  12665. top:0px;
  12666. width:110px;
  12667. height:6px;
  12668. }
  12669. #u20621p010 {
  12670. border-width:0px;
  12671. position:absolute;
  12672. left:924px;
  12673. top:122px;
  12674. width:106px;
  12675. height:4px;
  12676. }
  12677. #u20621p010_img {
  12678. border-width:0px;
  12679. position:absolute;
  12680. left:0px;
  12681. top:0px;
  12682. width:106px;
  12683. height:4px;
  12684. }
  12685. #u20621p011 {
  12686. border-width:0px;
  12687. position:absolute;
  12688. left:1014px;
  12689. top:88px;
  12690. width:114px;
  12691. height:6px;
  12692. -webkit-transform:rotate(-37deg);
  12693. -moz-transform:rotate(-37deg);
  12694. -ms-transform:rotate(-37deg);
  12695. transform:rotate(-37deg);
  12696. }
  12697. #u20621p011_img {
  12698. border-width:0px;
  12699. position:absolute;
  12700. left:0px;
  12701. top:0px;
  12702. width:114px;
  12703. height:6px;
  12704. }
  12705. #u20621p012 {
  12706. border-width:0px;
  12707. position:absolute;
  12708. left:1110px;
  12709. top:62px;
  12710. width:76px;
  12711. height:6px;
  12712. -webkit-transform:rotate(13deg);
  12713. -moz-transform:rotate(13deg);
  12714. -ms-transform:rotate(13deg);
  12715. transform:rotate(13deg);
  12716. }
  12717. #u20621p012_img {
  12718. border-width:0px;
  12719. position:absolute;
  12720. left:0px;
  12721. top:0px;
  12722. width:76px;
  12723. height:6px;
  12724. }
  12725. #u20621p013 {
  12726. border-width:0px;
  12727. position:absolute;
  12728. left:1178px;
  12729. top:74px;
  12730. width:102px;
  12731. height:6px;
  12732. -webkit-transform:rotate(6deg);
  12733. -moz-transform:rotate(6deg);
  12734. -ms-transform:rotate(6deg);
  12735. transform:rotate(6deg);
  12736. }
  12737. #u20621p013_img {
  12738. border-width:0px;
  12739. position:absolute;
  12740. left:0px;
  12741. top:0px;
  12742. width:102px;
  12743. height:6px;
  12744. }
  12745. #u20621.compound {
  12746. width:0px;
  12747. height:0px;
  12748. }
  12749. #u20621 {
  12750. border-width:0px;
  12751. position:absolute;
  12752. left:1698px;
  12753. top:406px;
  12754. width:1277px;
  12755. height:132px;
  12756. display:flex;
  12757. }
  12758. #u20621 .text {
  12759. position:absolute;
  12760. align-self:center;
  12761. padding:2px 2px 2px 2px;
  12762. box-sizing:border-box;
  12763. width:100%;
  12764. }
  12765. #u20621_text {
  12766. border-width:0px;
  12767. word-wrap:break-word;
  12768. text-transform:none;
  12769. visibility:hidden;
  12770. }
  12771. #u20622 {
  12772. border-width:0px;
  12773. position:absolute;
  12774. left:0px;
  12775. top:0px;
  12776. width:0px;
  12777. height:0px;
  12778. }
  12779. #u20623_img {
  12780. border-width:0px;
  12781. position:absolute;
  12782. left:-5px;
  12783. top:-5px;
  12784. width:219px;
  12785. height:242px;
  12786. }
  12787. #u20623 {
  12788. border-width:0px;
  12789. position:absolute;
  12790. left:1899px;
  12791. top:313px;
  12792. width:209px;
  12793. height:232px;
  12794. display:flex;
  12795. color:#FFFFFF;
  12796. }
  12797. #u20623 .text {
  12798. position:absolute;
  12799. align-self:center;
  12800. padding:2px 2px 2px 2px;
  12801. box-sizing:border-box;
  12802. width:100%;
  12803. }
  12804. #u20623_text {
  12805. border-width:0px;
  12806. word-wrap:break-word;
  12807. text-transform:none;
  12808. visibility:hidden;
  12809. }
  12810. #u20624_div {
  12811. border-width:0px;
  12812. position:absolute;
  12813. left:0px;
  12814. top:0px;
  12815. width:189px;
  12816. height:22px;
  12817. background:inherit;
  12818. background-color:rgba(255, 255, 255, 0);
  12819. border:none;
  12820. border-radius:0px;
  12821. -moz-box-shadow:none;
  12822. -webkit-box-shadow:none;
  12823. box-shadow:none;
  12824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12825. font-weight:400;
  12826. font-style:normal;
  12827. font-size:14px;
  12828. color:#FFFFFF;
  12829. }
  12830. #u20624 {
  12831. border-width:0px;
  12832. position:absolute;
  12833. left:1909px;
  12834. top:326px;
  12835. width:189px;
  12836. height:22px;
  12837. display:flex;
  12838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12839. font-weight:400;
  12840. font-style:normal;
  12841. font-size:14px;
  12842. color:#FFFFFF;
  12843. }
  12844. #u20624 .text {
  12845. position:absolute;
  12846. align-self:flex-start;
  12847. padding:0px 5px 0px 5px;
  12848. box-sizing:border-box;
  12849. width:100%;
  12850. }
  12851. #u20624_text {
  12852. border-width:0px;
  12853. word-wrap:break-word;
  12854. text-transform:none;
  12855. }
  12856. #u20625_div {
  12857. border-width:0px;
  12858. position:absolute;
  12859. left:0px;
  12860. top:0px;
  12861. width:95px;
  12862. height:180px;
  12863. background:inherit;
  12864. background-color:rgba(255, 255, 255, 0);
  12865. border:none;
  12866. border-radius:0px;
  12867. -moz-box-shadow:none;
  12868. -webkit-box-shadow:none;
  12869. box-shadow:none;
  12870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12871. font-weight:400;
  12872. font-style:normal;
  12873. font-size:12px;
  12874. color:#FFFFFF;
  12875. line-height:30px;
  12876. }
  12877. #u20625 {
  12878. border-width:0px;
  12879. position:absolute;
  12880. left:1909px;
  12881. top:358px;
  12882. width:95px;
  12883. height:180px;
  12884. display:flex;
  12885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12886. font-weight:400;
  12887. font-style:normal;
  12888. font-size:12px;
  12889. color:#FFFFFF;
  12890. line-height:30px;
  12891. }
  12892. #u20625 .text {
  12893. position:absolute;
  12894. align-self:flex-start;
  12895. padding:0px 5px 0px 5px;
  12896. box-sizing:border-box;
  12897. width:100%;
  12898. }
  12899. #u20625_text {
  12900. border-width:0px;
  12901. white-space:nowrap;
  12902. text-transform:none;
  12903. }
  12904. #u20626_div {
  12905. border-width:0px;
  12906. position:absolute;
  12907. left:0px;
  12908. top:0px;
  12909. width:73px;
  12910. height:180px;
  12911. background:inherit;
  12912. background-color:rgba(255, 255, 255, 0);
  12913. border:none;
  12914. border-radius:0px;
  12915. -moz-box-shadow:none;
  12916. -webkit-box-shadow:none;
  12917. box-shadow:none;
  12918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12919. font-weight:400;
  12920. font-style:normal;
  12921. font-size:12px;
  12922. line-height:30px;
  12923. }
  12924. #u20626 {
  12925. border-width:0px;
  12926. position:absolute;
  12927. left:1992px;
  12928. top:358px;
  12929. width:73px;
  12930. height:180px;
  12931. display:flex;
  12932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12933. font-weight:400;
  12934. font-style:normal;
  12935. font-size:12px;
  12936. line-height:30px;
  12937. }
  12938. #u20626 .text {
  12939. position:absolute;
  12940. align-self:flex-start;
  12941. padding:0px 5px 0px 5px;
  12942. box-sizing:border-box;
  12943. width:100%;
  12944. }
  12945. #u20626_text {
  12946. border-width:0px;
  12947. white-space:nowrap;
  12948. text-transform:none;
  12949. }
  12950. #u20627 {
  12951. border-width:0px;
  12952. position:absolute;
  12953. left:0px;
  12954. top:0px;
  12955. width:0px;
  12956. height:0px;
  12957. }
  12958. #u20628_div {
  12959. border-width:0px;
  12960. position:absolute;
  12961. left:0px;
  12962. top:0px;
  12963. width:8px;
  12964. height:193px;
  12965. background:inherit;
  12966. background-color:rgba(0, 92, 249, 1);
  12967. border:none;
  12968. border-radius:0px;
  12969. -moz-box-shadow:none;
  12970. -webkit-box-shadow:none;
  12971. box-shadow:none;
  12972. }
  12973. #u20628 {
  12974. border-width:0px;
  12975. position:absolute;
  12976. left:2935px;
  12977. top:531px;
  12978. width:8px;
  12979. height:193px;
  12980. display:flex;
  12981. }
  12982. #u20628 .text {
  12983. position:absolute;
  12984. align-self:center;
  12985. padding:2px 2px 2px 2px;
  12986. box-sizing:border-box;
  12987. width:100%;
  12988. }
  12989. #u20628_text {
  12990. border-width:0px;
  12991. word-wrap:break-word;
  12992. text-transform:none;
  12993. visibility:hidden;
  12994. }
  12995. #u20629_div {
  12996. border-width:0px;
  12997. position:absolute;
  12998. left:0px;
  12999. top:0px;
  13000. width:8px;
  13001. height:37px;
  13002. background:inherit;
  13003. background-color:rgba(245, 154, 35, 1);
  13004. border:none;
  13005. border-radius:0px;
  13006. -moz-box-shadow:none;
  13007. -webkit-box-shadow:none;
  13008. box-shadow:none;
  13009. }
  13010. #u20629 {
  13011. border-width:0px;
  13012. position:absolute;
  13013. left:2943px;
  13014. top:687px;
  13015. width:8px;
  13016. height:37px;
  13017. display:flex;
  13018. }
  13019. #u20629 .text {
  13020. position:absolute;
  13021. align-self:center;
  13022. padding:2px 2px 2px 2px;
  13023. box-sizing:border-box;
  13024. width:100%;
  13025. }
  13026. #u20629_text {
  13027. border-width:0px;
  13028. word-wrap:break-word;
  13029. text-transform:none;
  13030. visibility:hidden;
  13031. }
  13032. #u20630_div {
  13033. border-width:0px;
  13034. position:absolute;
  13035. left:0px;
  13036. top:0px;
  13037. width:8px;
  13038. height:32px;
  13039. background:inherit;
  13040. background-color:rgba(236, 128, 141, 1);
  13041. border:none;
  13042. border-radius:0px;
  13043. -moz-box-shadow:none;
  13044. -webkit-box-shadow:none;
  13045. box-shadow:none;
  13046. }
  13047. #u20630 {
  13048. border-width:0px;
  13049. position:absolute;
  13050. left:2959px;
  13051. top:692px;
  13052. width:8px;
  13053. height:32px;
  13054. display:flex;
  13055. }
  13056. #u20630 .text {
  13057. position:absolute;
  13058. align-self:center;
  13059. padding:2px 2px 2px 2px;
  13060. box-sizing:border-box;
  13061. width:100%;
  13062. }
  13063. #u20630_text {
  13064. border-width:0px;
  13065. word-wrap:break-word;
  13066. text-transform:none;
  13067. visibility:hidden;
  13068. }
  13069. #u20631_div {
  13070. border-width:0px;
  13071. position:absolute;
  13072. left:0px;
  13073. top:0px;
  13074. width:8px;
  13075. height:124px;
  13076. background:inherit;
  13077. background-color:rgba(1, 215, 210, 1);
  13078. border:none;
  13079. border-radius:0px;
  13080. -moz-box-shadow:none;
  13081. -webkit-box-shadow:none;
  13082. box-shadow:none;
  13083. }
  13084. #u20631 {
  13085. border-width:0px;
  13086. position:absolute;
  13087. left:2967px;
  13088. top:600px;
  13089. width:8px;
  13090. height:124px;
  13091. display:flex;
  13092. }
  13093. #u20631 .text {
  13094. position:absolute;
  13095. align-self:center;
  13096. padding:2px 2px 2px 2px;
  13097. box-sizing:border-box;
  13098. width:100%;
  13099. }
  13100. #u20631_text {
  13101. border-width:0px;
  13102. word-wrap:break-word;
  13103. text-transform:none;
  13104. visibility:hidden;
  13105. }
  13106. #u20632_div {
  13107. border-width:0px;
  13108. position:absolute;
  13109. left:0px;
  13110. top:0px;
  13111. width:8px;
  13112. height:156px;
  13113. background:inherit;
  13114. background-color:rgba(0, 177, 255, 1);
  13115. border:none;
  13116. border-radius:0px;
  13117. -moz-box-shadow:none;
  13118. -webkit-box-shadow:none;
  13119. box-shadow:none;
  13120. }
  13121. #u20632 {
  13122. border-width:0px;
  13123. position:absolute;
  13124. left:2951px;
  13125. top:568px;
  13126. width:8px;
  13127. height:156px;
  13128. display:flex;
  13129. }
  13130. #u20632 .text {
  13131. position:absolute;
  13132. align-self:center;
  13133. padding:2px 2px 2px 2px;
  13134. box-sizing:border-box;
  13135. width:100%;
  13136. }
  13137. #u20632_text {
  13138. border-width:0px;
  13139. word-wrap:break-word;
  13140. text-transform:none;
  13141. visibility:hidden;
  13142. }
  13143. #u20633_div {
  13144. border-width:0px;
  13145. position:absolute;
  13146. left:0px;
  13147. top:0px;
  13148. width:42px;
  13149. height:17px;
  13150. background:inherit;
  13151. background-color:rgba(255, 255, 255, 0);
  13152. border:none;
  13153. border-radius:0px;
  13154. -moz-box-shadow:none;
  13155. -webkit-box-shadow:none;
  13156. box-shadow:none;
  13157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13158. font-weight:400;
  13159. font-style:normal;
  13160. font-size:12px;
  13161. text-align:center;
  13162. }
  13163. #u20633 {
  13164. border-width:0px;
  13165. position:absolute;
  13166. left:2935px;
  13167. top:735px;
  13168. width:42px;
  13169. height:17px;
  13170. display:flex;
  13171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13172. font-weight:400;
  13173. font-style:normal;
  13174. font-size:12px;
  13175. text-align:center;
  13176. }
  13177. #u20633 .text {
  13178. position:absolute;
  13179. align-self:flex-start;
  13180. padding:0px 0px 0px 0px;
  13181. box-sizing:border-box;
  13182. width:100%;
  13183. }
  13184. #u20633_text {
  13185. border-width:0px;
  13186. word-wrap:break-word;
  13187. text-transform:none;
  13188. }
  13189. #u20634 {
  13190. border-width:0px;
  13191. position:absolute;
  13192. left:0px;
  13193. top:0px;
  13194. width:0px;
  13195. height:0px;
  13196. }
  13197. #u20635_div {
  13198. border-width:0px;
  13199. position:absolute;
  13200. left:0px;
  13201. top:0px;
  13202. width:23px;
  13203. height:8px;
  13204. background:inherit;
  13205. background-color:rgba(245, 154, 35, 1);
  13206. border:none;
  13207. border-radius:0px;
  13208. -moz-box-shadow:none;
  13209. -webkit-box-shadow:none;
  13210. box-shadow:none;
  13211. }
  13212. #u20635 {
  13213. border-width:0px;
  13214. position:absolute;
  13215. left:2340px;
  13216. top:346px;
  13217. width:23px;
  13218. height:8px;
  13219. display:flex;
  13220. }
  13221. #u20635 .text {
  13222. position:absolute;
  13223. align-self:center;
  13224. padding:2px 2px 2px 2px;
  13225. box-sizing:border-box;
  13226. width:100%;
  13227. }
  13228. #u20635_text {
  13229. border-width:0px;
  13230. word-wrap:break-word;
  13231. text-transform:none;
  13232. visibility:hidden;
  13233. }
  13234. #u20636_div {
  13235. border-width:0px;
  13236. position:absolute;
  13237. left:0px;
  13238. top:0px;
  13239. width:83px;
  13240. height:27px;
  13241. background:inherit;
  13242. background-color:rgba(255, 255, 255, 0);
  13243. border:none;
  13244. border-radius:31px;
  13245. -moz-box-shadow:none;
  13246. -webkit-box-shadow:none;
  13247. box-shadow:none;
  13248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13249. font-weight:400;
  13250. font-style:normal;
  13251. font-size:12px;
  13252. }
  13253. #u20636 {
  13254. border-width:0px;
  13255. position:absolute;
  13256. left:2373px;
  13257. top:336px;
  13258. width:83px;
  13259. height:27px;
  13260. display:flex;
  13261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13262. font-weight:400;
  13263. font-style:normal;
  13264. font-size:12px;
  13265. }
  13266. #u20636 .text {
  13267. position:absolute;
  13268. align-self:center;
  13269. padding:5px 10px 5px 0px;
  13270. box-sizing:border-box;
  13271. width:100%;
  13272. }
  13273. #u20636_text {
  13274. border-width:0px;
  13275. white-space:nowrap;
  13276. text-transform:none;
  13277. }
  13278. #u20637 {
  13279. border-width:0px;
  13280. position:absolute;
  13281. left:0px;
  13282. top:0px;
  13283. width:0px;
  13284. height:0px;
  13285. }
  13286. #u20638_div {
  13287. border-width:0px;
  13288. position:absolute;
  13289. left:0px;
  13290. top:0px;
  13291. width:23px;
  13292. height:8px;
  13293. background:inherit;
  13294. background-color:rgba(0, 177, 255, 1);
  13295. border:none;
  13296. border-radius:0px;
  13297. -moz-box-shadow:none;
  13298. -webkit-box-shadow:none;
  13299. box-shadow:none;
  13300. }
  13301. #u20638 {
  13302. border-width:0px;
  13303. position:absolute;
  13304. left:2476px;
  13305. top:346px;
  13306. width:23px;
  13307. height:8px;
  13308. display:flex;
  13309. }
  13310. #u20638 .text {
  13311. position:absolute;
  13312. align-self:center;
  13313. padding:2px 2px 2px 2px;
  13314. box-sizing:border-box;
  13315. width:100%;
  13316. }
  13317. #u20638_text {
  13318. border-width:0px;
  13319. word-wrap:break-word;
  13320. text-transform:none;
  13321. visibility:hidden;
  13322. }
  13323. #u20639_div {
  13324. border-width:0px;
  13325. position:absolute;
  13326. left:0px;
  13327. top:0px;
  13328. width:83px;
  13329. height:27px;
  13330. background:inherit;
  13331. background-color:rgba(255, 255, 255, 0);
  13332. border:none;
  13333. border-radius:31px;
  13334. -moz-box-shadow:none;
  13335. -webkit-box-shadow:none;
  13336. box-shadow:none;
  13337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13338. font-weight:400;
  13339. font-style:normal;
  13340. font-size:12px;
  13341. }
  13342. #u20639 {
  13343. border-width:0px;
  13344. position:absolute;
  13345. left:2509px;
  13346. top:336px;
  13347. width:83px;
  13348. height:27px;
  13349. display:flex;
  13350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13351. font-weight:400;
  13352. font-style:normal;
  13353. font-size:12px;
  13354. }
  13355. #u20639 .text {
  13356. position:absolute;
  13357. align-self:center;
  13358. padding:5px 10px 5px 0px;
  13359. box-sizing:border-box;
  13360. width:100%;
  13361. }
  13362. #u20639_text {
  13363. border-width:0px;
  13364. white-space:nowrap;
  13365. text-transform:none;
  13366. }
  13367. #u20640 {
  13368. border-width:0px;
  13369. position:absolute;
  13370. left:0px;
  13371. top:0px;
  13372. width:0px;
  13373. height:0px;
  13374. }
  13375. #u20641_div {
  13376. border-width:0px;
  13377. position:absolute;
  13378. left:0px;
  13379. top:0px;
  13380. width:23px;
  13381. height:8px;
  13382. background:inherit;
  13383. background-color:rgba(236, 128, 141, 1);
  13384. border:none;
  13385. border-radius:0px;
  13386. -moz-box-shadow:none;
  13387. -webkit-box-shadow:none;
  13388. box-shadow:none;
  13389. }
  13390. #u20641 {
  13391. border-width:0px;
  13392. position:absolute;
  13393. left:2612px;
  13394. top:346px;
  13395. width:23px;
  13396. height:8px;
  13397. display:flex;
  13398. }
  13399. #u20641 .text {
  13400. position:absolute;
  13401. align-self:center;
  13402. padding:2px 2px 2px 2px;
  13403. box-sizing:border-box;
  13404. width:100%;
  13405. }
  13406. #u20641_text {
  13407. border-width:0px;
  13408. word-wrap:break-word;
  13409. text-transform:none;
  13410. visibility:hidden;
  13411. }
  13412. #u20642_div {
  13413. border-width:0px;
  13414. position:absolute;
  13415. left:0px;
  13416. top:0px;
  13417. width:83px;
  13418. height:27px;
  13419. background:inherit;
  13420. background-color:rgba(255, 255, 255, 0);
  13421. border:none;
  13422. border-radius:31px;
  13423. -moz-box-shadow:none;
  13424. -webkit-box-shadow:none;
  13425. box-shadow:none;
  13426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13427. font-weight:400;
  13428. font-style:normal;
  13429. font-size:12px;
  13430. }
  13431. #u20642 {
  13432. border-width:0px;
  13433. position:absolute;
  13434. left:2645px;
  13435. top:336px;
  13436. width:83px;
  13437. height:27px;
  13438. display:flex;
  13439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13440. font-weight:400;
  13441. font-style:normal;
  13442. font-size:12px;
  13443. }
  13444. #u20642 .text {
  13445. position:absolute;
  13446. align-self:center;
  13447. padding:5px 10px 5px 0px;
  13448. box-sizing:border-box;
  13449. width:100%;
  13450. }
  13451. #u20642_text {
  13452. border-width:0px;
  13453. white-space:nowrap;
  13454. text-transform:none;
  13455. }
  13456. #u20643 {
  13457. border-width:0px;
  13458. position:absolute;
  13459. left:0px;
  13460. top:0px;
  13461. width:0px;
  13462. height:0px;
  13463. }
  13464. #u20644_div {
  13465. border-width:0px;
  13466. position:absolute;
  13467. left:0px;
  13468. top:0px;
  13469. width:23px;
  13470. height:8px;
  13471. background:inherit;
  13472. background-color:rgba(1, 215, 210, 1);
  13473. border:none;
  13474. border-radius:0px;
  13475. -moz-box-shadow:none;
  13476. -webkit-box-shadow:none;
  13477. box-shadow:none;
  13478. }
  13479. #u20644 {
  13480. border-width:0px;
  13481. position:absolute;
  13482. left:2738px;
  13483. top:346px;
  13484. width:23px;
  13485. height:8px;
  13486. display:flex;
  13487. }
  13488. #u20644 .text {
  13489. position:absolute;
  13490. align-self:center;
  13491. padding:2px 2px 2px 2px;
  13492. box-sizing:border-box;
  13493. width:100%;
  13494. }
  13495. #u20644_text {
  13496. border-width:0px;
  13497. word-wrap:break-word;
  13498. text-transform:none;
  13499. visibility:hidden;
  13500. }
  13501. #u20645_div {
  13502. border-width:0px;
  13503. position:absolute;
  13504. left:0px;
  13505. top:0px;
  13506. width:83px;
  13507. height:27px;
  13508. background:inherit;
  13509. background-color:rgba(255, 255, 255, 0);
  13510. border:none;
  13511. border-radius:31px;
  13512. -moz-box-shadow:none;
  13513. -webkit-box-shadow:none;
  13514. box-shadow:none;
  13515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13516. font-weight:400;
  13517. font-style:normal;
  13518. font-size:12px;
  13519. }
  13520. #u20645 {
  13521. border-width:0px;
  13522. position:absolute;
  13523. left:2771px;
  13524. top:336px;
  13525. width:83px;
  13526. height:27px;
  13527. display:flex;
  13528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13529. font-weight:400;
  13530. font-style:normal;
  13531. font-size:12px;
  13532. }
  13533. #u20645 .text {
  13534. position:absolute;
  13535. align-self:center;
  13536. padding:5px 10px 5px 0px;
  13537. box-sizing:border-box;
  13538. width:100%;
  13539. }
  13540. #u20645_text {
  13541. border-width:0px;
  13542. white-space:nowrap;
  13543. text-transform:none;
  13544. }
  13545. #u20646_div {
  13546. border-width:0px;
  13547. position:absolute;
  13548. left:0px;
  13549. top:0px;
  13550. width:59px;
  13551. height:30px;
  13552. background:inherit;
  13553. background-color:rgba(0, 153, 255, 1);
  13554. box-sizing:border-box;
  13555. border-width:1px;
  13556. border-style:solid;
  13557. border-color:rgba(0, 153, 255, 1);
  13558. border-radius:4px;
  13559. -moz-box-shadow:none;
  13560. -webkit-box-shadow:none;
  13561. box-shadow:none;
  13562. font-family:'Microsoft YaHei', sans-serif;
  13563. font-weight:400;
  13564. font-style:normal;
  13565. font-size:14px;
  13566. color:#FFFFFF;
  13567. }
  13568. #u20646 {
  13569. border-width:0px;
  13570. position:absolute;
  13571. left:2880px;
  13572. top:100px;
  13573. width:59px;
  13574. height:30px;
  13575. display:flex;
  13576. font-family:'Microsoft YaHei', sans-serif;
  13577. font-weight:400;
  13578. font-style:normal;
  13579. font-size:14px;
  13580. color:#FFFFFF;
  13581. }
  13582. #u20646 .text {
  13583. position:absolute;
  13584. align-self:center;
  13585. padding:5px 15px 5px 15px;
  13586. box-sizing:border-box;
  13587. width:100%;
  13588. }
  13589. #u20646_text {
  13590. border-width:0px;
  13591. white-space:nowrap;
  13592. text-transform:none;
  13593. }
  13594. #u20647 {
  13595. border-width:0px;
  13596. position:absolute;
  13597. left:0px;
  13598. top:0px;
  13599. width:0px;
  13600. height:0px;
  13601. }
  13602. #u20648_div {
  13603. border-width:0px;
  13604. position:absolute;
  13605. left:0px;
  13606. top:0px;
  13607. width:80px;
  13608. height:30px;
  13609. background:inherit;
  13610. background-color:rgba(255, 255, 255, 1);
  13611. box-sizing:border-box;
  13612. border-width:1px;
  13613. border-style:solid;
  13614. border-color:rgba(215, 215, 215, 1);
  13615. border-radius:2px;
  13616. -moz-box-shadow:none;
  13617. -webkit-box-shadow:none;
  13618. box-shadow:none;
  13619. font-size:11px;
  13620. }
  13621. #u20648 {
  13622. border-width:0px;
  13623. position:absolute;
  13624. left:1651px;
  13625. top:100px;
  13626. width:80px;
  13627. height:30px;
  13628. display:flex;
  13629. font-size:11px;
  13630. }
  13631. #u20648 .text {
  13632. position:absolute;
  13633. align-self:center;
  13634. padding:2px 2px 2px 2px;
  13635. box-sizing:border-box;
  13636. width:100%;
  13637. }
  13638. #u20648_text {
  13639. border-width:0px;
  13640. word-wrap:break-word;
  13641. text-transform:none;
  13642. visibility:hidden;
  13643. }
  13644. #u20649_input {
  13645. position:absolute;
  13646. left:0px;
  13647. top:0px;
  13648. width:70px;
  13649. height:23px;
  13650. padding:2px 2px 2px 2px;
  13651. font-family:'ArialMT', 'Arial', sans-serif;
  13652. font-weight:400;
  13653. font-style:normal;
  13654. font-size:11px;
  13655. letter-spacing:normal;
  13656. color:#AAAAAA;
  13657. vertical-align:none;
  13658. text-align:left;
  13659. text-transform:none;
  13660. background-color:transparent;
  13661. border-color:transparent;
  13662. }
  13663. #u20649_input.disabled {
  13664. position:absolute;
  13665. left:0px;
  13666. top:0px;
  13667. width:70px;
  13668. height:23px;
  13669. padding:2px 2px 2px 2px;
  13670. font-family:'ArialMT', 'Arial', sans-serif;
  13671. font-weight:400;
  13672. font-style:normal;
  13673. font-size:11px;
  13674. letter-spacing:normal;
  13675. color:#AAAAAA;
  13676. vertical-align:none;
  13677. text-align:left;
  13678. text-transform:none;
  13679. background-color:transparent;
  13680. border-color:transparent;
  13681. }
  13682. #u20649_div {
  13683. border-width:0px;
  13684. position:absolute;
  13685. left:0px;
  13686. top:0px;
  13687. width:70px;
  13688. height:23px;
  13689. background:inherit;
  13690. background-color:rgba(255, 255, 255, 1);
  13691. border:none;
  13692. border-radius:0px;
  13693. -moz-box-shadow:none;
  13694. -webkit-box-shadow:none;
  13695. box-shadow:none;
  13696. font-size:11px;
  13697. color:#AAAAAA;
  13698. }
  13699. #u20649 {
  13700. border-width:0px;
  13701. position:absolute;
  13702. left:1655px;
  13703. top:102px;
  13704. width:70px;
  13705. height:23px;
  13706. display:flex;
  13707. font-size:11px;
  13708. color:#AAAAAA;
  13709. }
  13710. #u20649 .text {
  13711. position:absolute;
  13712. align-self:flex-start;
  13713. padding:2px 2px 2px 2px;
  13714. box-sizing:border-box;
  13715. width:100%;
  13716. }
  13717. #u20649_div.disabled {
  13718. border-width:0px;
  13719. position:absolute;
  13720. left:0px;
  13721. top:0px;
  13722. width:70px;
  13723. height:23px;
  13724. background:inherit;
  13725. background-color:rgba(240, 240, 240, 1);
  13726. border:none;
  13727. border-radius:0px;
  13728. -moz-box-shadow:none;
  13729. -webkit-box-shadow:none;
  13730. box-shadow:none;
  13731. font-size:11px;
  13732. color:#AAAAAA;
  13733. }
  13734. #u20649.disabled {
  13735. }
  13736. .u20649_input_option {
  13737. font-size:11px;
  13738. }
  13739. #u20650_div {
  13740. border-width:0px;
  13741. position:absolute;
  13742. left:0px;
  13743. top:0px;
  13744. width:55px;
  13745. height:30px;
  13746. background:inherit;
  13747. background-color:rgba(255, 255, 255, 1);
  13748. box-sizing:border-box;
  13749. border-width:1px;
  13750. border-style:solid;
  13751. border-color:rgba(170, 170, 170, 1);
  13752. border-radius:4px;
  13753. -moz-box-shadow:none;
  13754. -webkit-box-shadow:none;
  13755. box-shadow:none;
  13756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13757. font-weight:400;
  13758. font-style:normal;
  13759. font-size:12px;
  13760. color:#555555;
  13761. }
  13762. #u20650 {
  13763. border-width:0px;
  13764. position:absolute;
  13765. left:2949px;
  13766. top:100px;
  13767. width:55px;
  13768. height:30px;
  13769. display:flex;
  13770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13771. font-weight:400;
  13772. font-style:normal;
  13773. font-size:12px;
  13774. color:#555555;
  13775. }
  13776. #u20650 .text {
  13777. position:absolute;
  13778. align-self:center;
  13779. padding:5px 15px 5px 15px;
  13780. box-sizing:border-box;
  13781. width:100%;
  13782. }
  13783. #u20650_text {
  13784. border-width:0px;
  13785. white-space:nowrap;
  13786. text-transform:none;
  13787. }
  13788. #u20651 {
  13789. border-width:0px;
  13790. position:absolute;
  13791. left:0px;
  13792. top:0px;
  13793. width:0px;
  13794. height:0px;
  13795. }
  13796. #u20652_div {
  13797. border-width:0px;
  13798. position:absolute;
  13799. left:0px;
  13800. top:0px;
  13801. width:140px;
  13802. height:30px;
  13803. background:inherit;
  13804. background-color:rgba(255, 255, 255, 1);
  13805. box-sizing:border-box;
  13806. border-width:1px;
  13807. border-style:solid;
  13808. border-color:rgba(215, 215, 215, 1);
  13809. border-radius:2px;
  13810. -moz-box-shadow:none;
  13811. -webkit-box-shadow:none;
  13812. box-shadow:none;
  13813. font-size:11px;
  13814. }
  13815. #u20652 {
  13816. border-width:0px;
  13817. position:absolute;
  13818. left:1980px;
  13819. top:100px;
  13820. width:140px;
  13821. height:30px;
  13822. display:flex;
  13823. font-size:11px;
  13824. }
  13825. #u20652 .text {
  13826. position:absolute;
  13827. align-self:center;
  13828. padding:2px 2px 2px 2px;
  13829. box-sizing:border-box;
  13830. width:100%;
  13831. }
  13832. #u20652_text {
  13833. border-width:0px;
  13834. word-wrap:break-word;
  13835. text-transform:none;
  13836. visibility:hidden;
  13837. }
  13838. #u20653_input {
  13839. position:absolute;
  13840. left:0px;
  13841. top:0px;
  13842. width:126px;
  13843. height:23px;
  13844. padding:2px 2px 2px 2px;
  13845. font-family:'ArialMT', 'Arial', sans-serif;
  13846. font-weight:400;
  13847. font-style:normal;
  13848. font-size:11px;
  13849. letter-spacing:normal;
  13850. color:#AAAAAA;
  13851. vertical-align:none;
  13852. text-align:left;
  13853. text-transform:none;
  13854. background-color:transparent;
  13855. border-color:transparent;
  13856. }
  13857. #u20653_input.disabled {
  13858. position:absolute;
  13859. left:0px;
  13860. top:0px;
  13861. width:126px;
  13862. height:23px;
  13863. padding:2px 2px 2px 2px;
  13864. font-family:'ArialMT', 'Arial', sans-serif;
  13865. font-weight:400;
  13866. font-style:normal;
  13867. font-size:11px;
  13868. letter-spacing:normal;
  13869. color:#AAAAAA;
  13870. vertical-align:none;
  13871. text-align:left;
  13872. text-transform:none;
  13873. background-color:transparent;
  13874. border-color:transparent;
  13875. }
  13876. #u20653_div {
  13877. border-width:0px;
  13878. position:absolute;
  13879. left:0px;
  13880. top:0px;
  13881. width:126px;
  13882. height:23px;
  13883. background:inherit;
  13884. background-color:rgba(255, 255, 255, 1);
  13885. border:none;
  13886. border-radius:0px;
  13887. -moz-box-shadow:none;
  13888. -webkit-box-shadow:none;
  13889. box-shadow:none;
  13890. font-size:11px;
  13891. color:#AAAAAA;
  13892. }
  13893. #u20653 {
  13894. border-width:0px;
  13895. position:absolute;
  13896. left:1987px;
  13897. top:102px;
  13898. width:126px;
  13899. height:23px;
  13900. display:flex;
  13901. font-size:11px;
  13902. color:#AAAAAA;
  13903. }
  13904. #u20653 .text {
  13905. position:absolute;
  13906. align-self:flex-start;
  13907. padding:2px 2px 2px 2px;
  13908. box-sizing:border-box;
  13909. width:100%;
  13910. }
  13911. #u20653_div.disabled {
  13912. border-width:0px;
  13913. position:absolute;
  13914. left:0px;
  13915. top:0px;
  13916. width:126px;
  13917. height:23px;
  13918. background:inherit;
  13919. background-color:rgba(240, 240, 240, 1);
  13920. border:none;
  13921. border-radius:0px;
  13922. -moz-box-shadow:none;
  13923. -webkit-box-shadow:none;
  13924. box-shadow:none;
  13925. font-size:11px;
  13926. color:#AAAAAA;
  13927. }
  13928. #u20653.disabled {
  13929. }
  13930. .u20653_input_option {
  13931. font-size:11px;
  13932. }
  13933. #u20654 {
  13934. border-width:0px;
  13935. position:absolute;
  13936. left:0px;
  13937. top:0px;
  13938. width:0px;
  13939. height:0px;
  13940. }
  13941. #u20655_div {
  13942. border-width:0px;
  13943. position:absolute;
  13944. left:0px;
  13945. top:0px;
  13946. width:140px;
  13947. height:30px;
  13948. background:inherit;
  13949. background-color:rgba(255, 255, 255, 1);
  13950. box-sizing:border-box;
  13951. border-width:1px;
  13952. border-style:solid;
  13953. border-color:rgba(215, 215, 215, 1);
  13954. border-radius:2px;
  13955. -moz-box-shadow:none;
  13956. -webkit-box-shadow:none;
  13957. box-shadow:none;
  13958. font-size:11px;
  13959. }
  13960. #u20655 {
  13961. border-width:0px;
  13962. position:absolute;
  13963. left:2430px;
  13964. top:100px;
  13965. width:140px;
  13966. height:30px;
  13967. display:flex;
  13968. font-size:11px;
  13969. }
  13970. #u20655 .text {
  13971. position:absolute;
  13972. align-self:center;
  13973. padding:2px 2px 2px 2px;
  13974. box-sizing:border-box;
  13975. width:100%;
  13976. }
  13977. #u20655_text {
  13978. border-width:0px;
  13979. word-wrap:break-word;
  13980. text-transform:none;
  13981. visibility:hidden;
  13982. }
  13983. #u20656_input {
  13984. position:absolute;
  13985. left:0px;
  13986. top:0px;
  13987. width:126px;
  13988. height:23px;
  13989. padding:2px 2px 2px 2px;
  13990. font-family:'ArialMT', 'Arial', sans-serif;
  13991. font-weight:400;
  13992. font-style:normal;
  13993. font-size:11px;
  13994. letter-spacing:normal;
  13995. color:#AAAAAA;
  13996. vertical-align:none;
  13997. text-align:left;
  13998. text-transform:none;
  13999. background-color:transparent;
  14000. border-color:transparent;
  14001. }
  14002. #u20656_input.disabled {
  14003. position:absolute;
  14004. left:0px;
  14005. top:0px;
  14006. width:126px;
  14007. height:23px;
  14008. padding:2px 2px 2px 2px;
  14009. font-family:'ArialMT', 'Arial', sans-serif;
  14010. font-weight:400;
  14011. font-style:normal;
  14012. font-size:11px;
  14013. letter-spacing:normal;
  14014. color:#AAAAAA;
  14015. vertical-align:none;
  14016. text-align:left;
  14017. text-transform:none;
  14018. background-color:transparent;
  14019. border-color:transparent;
  14020. }
  14021. #u20656_div {
  14022. border-width:0px;
  14023. position:absolute;
  14024. left:0px;
  14025. top:0px;
  14026. width:126px;
  14027. height:23px;
  14028. background:inherit;
  14029. background-color:rgba(255, 255, 255, 1);
  14030. border:none;
  14031. border-radius:0px;
  14032. -moz-box-shadow:none;
  14033. -webkit-box-shadow:none;
  14034. box-shadow:none;
  14035. font-size:11px;
  14036. color:#AAAAAA;
  14037. }
  14038. #u20656 {
  14039. border-width:0px;
  14040. position:absolute;
  14041. left:2437px;
  14042. top:102px;
  14043. width:126px;
  14044. height:23px;
  14045. display:flex;
  14046. font-size:11px;
  14047. color:#AAAAAA;
  14048. }
  14049. #u20656 .text {
  14050. position:absolute;
  14051. align-self:flex-start;
  14052. padding:2px 2px 2px 2px;
  14053. box-sizing:border-box;
  14054. width:100%;
  14055. }
  14056. #u20656_div.disabled {
  14057. border-width:0px;
  14058. position:absolute;
  14059. left:0px;
  14060. top:0px;
  14061. width:126px;
  14062. height:23px;
  14063. background:inherit;
  14064. background-color:rgba(240, 240, 240, 1);
  14065. border:none;
  14066. border-radius:0px;
  14067. -moz-box-shadow:none;
  14068. -webkit-box-shadow:none;
  14069. box-shadow:none;
  14070. font-size:11px;
  14071. color:#AAAAAA;
  14072. }
  14073. #u20656.disabled {
  14074. }
  14075. .u20656_input_option {
  14076. font-size:11px;
  14077. }
  14078. #u20657 {
  14079. border-width:0px;
  14080. position:absolute;
  14081. left:0px;
  14082. top:0px;
  14083. width:0px;
  14084. height:0px;
  14085. }
  14086. #u20658_div {
  14087. border-width:0px;
  14088. position:absolute;
  14089. left:0px;
  14090. top:0px;
  14091. width:140px;
  14092. height:30px;
  14093. background:inherit;
  14094. background-color:rgba(255, 255, 255, 1);
  14095. box-sizing:border-box;
  14096. border-width:1px;
  14097. border-style:solid;
  14098. border-color:rgba(215, 215, 215, 1);
  14099. border-radius:2px;
  14100. -moz-box-shadow:none;
  14101. -webkit-box-shadow:none;
  14102. box-shadow:none;
  14103. font-size:11px;
  14104. }
  14105. #u20658 {
  14106. border-width:0px;
  14107. position:absolute;
  14108. left:2280px;
  14109. top:100px;
  14110. width:140px;
  14111. height:30px;
  14112. display:flex;
  14113. font-size:11px;
  14114. }
  14115. #u20658 .text {
  14116. position:absolute;
  14117. align-self:center;
  14118. padding:2px 2px 2px 2px;
  14119. box-sizing:border-box;
  14120. width:100%;
  14121. }
  14122. #u20658_text {
  14123. border-width:0px;
  14124. word-wrap:break-word;
  14125. text-transform:none;
  14126. visibility:hidden;
  14127. }
  14128. #u20659_input {
  14129. position:absolute;
  14130. left:0px;
  14131. top:0px;
  14132. width:126px;
  14133. height:23px;
  14134. padding:2px 2px 2px 2px;
  14135. font-family:'ArialMT', 'Arial', sans-serif;
  14136. font-weight:400;
  14137. font-style:normal;
  14138. font-size:11px;
  14139. letter-spacing:normal;
  14140. color:#AAAAAA;
  14141. vertical-align:none;
  14142. text-align:left;
  14143. text-transform:none;
  14144. background-color:transparent;
  14145. border-color:transparent;
  14146. }
  14147. #u20659_input.disabled {
  14148. position:absolute;
  14149. left:0px;
  14150. top:0px;
  14151. width:126px;
  14152. height:23px;
  14153. padding:2px 2px 2px 2px;
  14154. font-family:'ArialMT', 'Arial', sans-serif;
  14155. font-weight:400;
  14156. font-style:normal;
  14157. font-size:11px;
  14158. letter-spacing:normal;
  14159. color:#AAAAAA;
  14160. vertical-align:none;
  14161. text-align:left;
  14162. text-transform:none;
  14163. background-color:transparent;
  14164. border-color:transparent;
  14165. }
  14166. #u20659_div {
  14167. border-width:0px;
  14168. position:absolute;
  14169. left:0px;
  14170. top:0px;
  14171. width:126px;
  14172. height:23px;
  14173. background:inherit;
  14174. background-color:rgba(255, 255, 255, 1);
  14175. border:none;
  14176. border-radius:0px;
  14177. -moz-box-shadow:none;
  14178. -webkit-box-shadow:none;
  14179. box-shadow:none;
  14180. font-size:11px;
  14181. color:#AAAAAA;
  14182. }
  14183. #u20659 {
  14184. border-width:0px;
  14185. position:absolute;
  14186. left:2287px;
  14187. top:102px;
  14188. width:126px;
  14189. height:23px;
  14190. display:flex;
  14191. font-size:11px;
  14192. color:#AAAAAA;
  14193. }
  14194. #u20659 .text {
  14195. position:absolute;
  14196. align-self:flex-start;
  14197. padding:2px 2px 2px 2px;
  14198. box-sizing:border-box;
  14199. width:100%;
  14200. }
  14201. #u20659_div.disabled {
  14202. border-width:0px;
  14203. position:absolute;
  14204. left:0px;
  14205. top:0px;
  14206. width:126px;
  14207. height:23px;
  14208. background:inherit;
  14209. background-color:rgba(240, 240, 240, 1);
  14210. border:none;
  14211. border-radius:0px;
  14212. -moz-box-shadow:none;
  14213. -webkit-box-shadow:none;
  14214. box-shadow:none;
  14215. font-size:11px;
  14216. color:#AAAAAA;
  14217. }
  14218. #u20659.disabled {
  14219. }
  14220. .u20659_input_option {
  14221. font-size:11px;
  14222. }
  14223. #u20660 {
  14224. border-width:0px;
  14225. position:absolute;
  14226. left:0px;
  14227. top:0px;
  14228. width:0px;
  14229. height:0px;
  14230. }
  14231. #u20661_div {
  14232. border-width:0px;
  14233. position:absolute;
  14234. left:0px;
  14235. top:0px;
  14236. width:140px;
  14237. height:30px;
  14238. background:inherit;
  14239. background-color:rgba(255, 255, 255, 1);
  14240. box-sizing:border-box;
  14241. border-width:1px;
  14242. border-style:solid;
  14243. border-color:rgba(215, 215, 215, 1);
  14244. border-radius:2px;
  14245. -moz-box-shadow:none;
  14246. -webkit-box-shadow:none;
  14247. box-shadow:none;
  14248. font-size:11px;
  14249. }
  14250. #u20661 {
  14251. border-width:0px;
  14252. position:absolute;
  14253. left:2130px;
  14254. top:100px;
  14255. width:140px;
  14256. height:30px;
  14257. display:flex;
  14258. font-size:11px;
  14259. }
  14260. #u20661 .text {
  14261. position:absolute;
  14262. align-self:center;
  14263. padding:2px 2px 2px 2px;
  14264. box-sizing:border-box;
  14265. width:100%;
  14266. }
  14267. #u20661_text {
  14268. border-width:0px;
  14269. word-wrap:break-word;
  14270. text-transform:none;
  14271. visibility:hidden;
  14272. }
  14273. #u20662_input {
  14274. position:absolute;
  14275. left:0px;
  14276. top:0px;
  14277. width:126px;
  14278. height:23px;
  14279. padding:2px 2px 2px 2px;
  14280. font-family:'ArialMT', 'Arial', sans-serif;
  14281. font-weight:400;
  14282. font-style:normal;
  14283. font-size:11px;
  14284. letter-spacing:normal;
  14285. color:#AAAAAA;
  14286. vertical-align:none;
  14287. text-align:left;
  14288. text-transform:none;
  14289. background-color:transparent;
  14290. border-color:transparent;
  14291. }
  14292. #u20662_input.disabled {
  14293. position:absolute;
  14294. left:0px;
  14295. top:0px;
  14296. width:126px;
  14297. height:23px;
  14298. padding:2px 2px 2px 2px;
  14299. font-family:'ArialMT', 'Arial', sans-serif;
  14300. font-weight:400;
  14301. font-style:normal;
  14302. font-size:11px;
  14303. letter-spacing:normal;
  14304. color:#AAAAAA;
  14305. vertical-align:none;
  14306. text-align:left;
  14307. text-transform:none;
  14308. background-color:transparent;
  14309. border-color:transparent;
  14310. }
  14311. #u20662_div {
  14312. border-width:0px;
  14313. position:absolute;
  14314. left:0px;
  14315. top:0px;
  14316. width:126px;
  14317. height:23px;
  14318. background:inherit;
  14319. background-color:rgba(255, 255, 255, 1);
  14320. border:none;
  14321. border-radius:0px;
  14322. -moz-box-shadow:none;
  14323. -webkit-box-shadow:none;
  14324. box-shadow:none;
  14325. font-size:11px;
  14326. color:#AAAAAA;
  14327. }
  14328. #u20662 {
  14329. border-width:0px;
  14330. position:absolute;
  14331. left:2137px;
  14332. top:102px;
  14333. width:126px;
  14334. height:23px;
  14335. display:flex;
  14336. font-size:11px;
  14337. color:#AAAAAA;
  14338. }
  14339. #u20662 .text {
  14340. position:absolute;
  14341. align-self:flex-start;
  14342. padding:2px 2px 2px 2px;
  14343. box-sizing:border-box;
  14344. width:100%;
  14345. }
  14346. #u20662_div.disabled {
  14347. border-width:0px;
  14348. position:absolute;
  14349. left:0px;
  14350. top:0px;
  14351. width:126px;
  14352. height:23px;
  14353. background:inherit;
  14354. background-color:rgba(240, 240, 240, 1);
  14355. border:none;
  14356. border-radius:0px;
  14357. -moz-box-shadow:none;
  14358. -webkit-box-shadow:none;
  14359. box-shadow:none;
  14360. font-size:11px;
  14361. color:#AAAAAA;
  14362. }
  14363. #u20662.disabled {
  14364. }
  14365. .u20662_input_option {
  14366. font-size:11px;
  14367. }
  14368. #u20663 {
  14369. border-width:0px;
  14370. position:absolute;
  14371. left:0px;
  14372. top:0px;
  14373. width:0px;
  14374. height:0px;
  14375. }
  14376. #u20664_div {
  14377. border-width:0px;
  14378. position:absolute;
  14379. left:0px;
  14380. top:0px;
  14381. width:140px;
  14382. height:30px;
  14383. background:inherit;
  14384. background-color:rgba(255, 255, 255, 1);
  14385. box-sizing:border-box;
  14386. border-width:1px;
  14387. border-style:solid;
  14388. border-color:rgba(215, 215, 215, 1);
  14389. border-radius:2px;
  14390. -moz-box-shadow:none;
  14391. -webkit-box-shadow:none;
  14392. box-shadow:none;
  14393. font-size:11px;
  14394. }
  14395. #u20664 {
  14396. border-width:0px;
  14397. position:absolute;
  14398. left:2580px;
  14399. top:100px;
  14400. width:140px;
  14401. height:30px;
  14402. display:flex;
  14403. font-size:11px;
  14404. }
  14405. #u20664 .text {
  14406. position:absolute;
  14407. align-self:center;
  14408. padding:2px 2px 2px 2px;
  14409. box-sizing:border-box;
  14410. width:100%;
  14411. }
  14412. #u20664_text {
  14413. border-width:0px;
  14414. word-wrap:break-word;
  14415. text-transform:none;
  14416. visibility:hidden;
  14417. }
  14418. #u20665_input {
  14419. position:absolute;
  14420. left:0px;
  14421. top:0px;
  14422. width:126px;
  14423. height:23px;
  14424. padding:2px 2px 2px 2px;
  14425. font-family:'ArialMT', 'Arial', sans-serif;
  14426. font-weight:400;
  14427. font-style:normal;
  14428. font-size:11px;
  14429. letter-spacing:normal;
  14430. color:#AAAAAA;
  14431. vertical-align:none;
  14432. text-align:left;
  14433. text-transform:none;
  14434. background-color:transparent;
  14435. border-color:transparent;
  14436. }
  14437. #u20665_input.disabled {
  14438. position:absolute;
  14439. left:0px;
  14440. top:0px;
  14441. width:126px;
  14442. height:23px;
  14443. padding:2px 2px 2px 2px;
  14444. font-family:'ArialMT', 'Arial', sans-serif;
  14445. font-weight:400;
  14446. font-style:normal;
  14447. font-size:11px;
  14448. letter-spacing:normal;
  14449. color:#AAAAAA;
  14450. vertical-align:none;
  14451. text-align:left;
  14452. text-transform:none;
  14453. background-color:transparent;
  14454. border-color:transparent;
  14455. }
  14456. #u20665_div {
  14457. border-width:0px;
  14458. position:absolute;
  14459. left:0px;
  14460. top:0px;
  14461. width:126px;
  14462. height:23px;
  14463. background:inherit;
  14464. background-color:rgba(255, 255, 255, 1);
  14465. border:none;
  14466. border-radius:0px;
  14467. -moz-box-shadow:none;
  14468. -webkit-box-shadow:none;
  14469. box-shadow:none;
  14470. font-size:11px;
  14471. color:#AAAAAA;
  14472. }
  14473. #u20665 {
  14474. border-width:0px;
  14475. position:absolute;
  14476. left:2587px;
  14477. top:102px;
  14478. width:126px;
  14479. height:23px;
  14480. display:flex;
  14481. font-size:11px;
  14482. color:#AAAAAA;
  14483. }
  14484. #u20665 .text {
  14485. position:absolute;
  14486. align-self:flex-start;
  14487. padding:2px 2px 2px 2px;
  14488. box-sizing:border-box;
  14489. width:100%;
  14490. }
  14491. #u20665_div.disabled {
  14492. border-width:0px;
  14493. position:absolute;
  14494. left:0px;
  14495. top:0px;
  14496. width:126px;
  14497. height:23px;
  14498. background:inherit;
  14499. background-color:rgba(240, 240, 240, 1);
  14500. border:none;
  14501. border-radius:0px;
  14502. -moz-box-shadow:none;
  14503. -webkit-box-shadow:none;
  14504. box-shadow:none;
  14505. font-size:11px;
  14506. color:#AAAAAA;
  14507. }
  14508. #u20665.disabled {
  14509. }
  14510. .u20665_input_option {
  14511. font-size:11px;
  14512. }
  14513. #u20666 {
  14514. border-width:0px;
  14515. position:absolute;
  14516. left:0px;
  14517. top:0px;
  14518. width:0px;
  14519. height:0px;
  14520. }
  14521. #u20667_div {
  14522. border-width:0px;
  14523. position:absolute;
  14524. left:0px;
  14525. top:0px;
  14526. width:140px;
  14527. height:30px;
  14528. background:inherit;
  14529. background-color:rgba(255, 255, 255, 1);
  14530. box-sizing:border-box;
  14531. border-width:1px;
  14532. border-style:solid;
  14533. border-color:rgba(215, 215, 215, 1);
  14534. border-radius:2px;
  14535. -moz-box-shadow:none;
  14536. -webkit-box-shadow:none;
  14537. box-shadow:none;
  14538. font-size:11px;
  14539. }
  14540. #u20667 {
  14541. border-width:0px;
  14542. position:absolute;
  14543. left:2730px;
  14544. top:100px;
  14545. width:140px;
  14546. height:30px;
  14547. display:flex;
  14548. font-size:11px;
  14549. }
  14550. #u20667 .text {
  14551. position:absolute;
  14552. align-self:center;
  14553. padding:2px 2px 2px 2px;
  14554. box-sizing:border-box;
  14555. width:100%;
  14556. }
  14557. #u20667_text {
  14558. border-width:0px;
  14559. word-wrap:break-word;
  14560. text-transform:none;
  14561. visibility:hidden;
  14562. }
  14563. #u20668_input {
  14564. position:absolute;
  14565. left:0px;
  14566. top:0px;
  14567. width:126px;
  14568. height:23px;
  14569. padding:2px 2px 2px 2px;
  14570. font-family:'ArialMT', 'Arial', sans-serif;
  14571. font-weight:400;
  14572. font-style:normal;
  14573. font-size:11px;
  14574. letter-spacing:normal;
  14575. color:#AAAAAA;
  14576. vertical-align:none;
  14577. text-align:left;
  14578. text-transform:none;
  14579. background-color:transparent;
  14580. border-color:transparent;
  14581. }
  14582. #u20668_input.disabled {
  14583. position:absolute;
  14584. left:0px;
  14585. top:0px;
  14586. width:126px;
  14587. height:23px;
  14588. padding:2px 2px 2px 2px;
  14589. font-family:'ArialMT', 'Arial', sans-serif;
  14590. font-weight:400;
  14591. font-style:normal;
  14592. font-size:11px;
  14593. letter-spacing:normal;
  14594. color:#AAAAAA;
  14595. vertical-align:none;
  14596. text-align:left;
  14597. text-transform:none;
  14598. background-color:transparent;
  14599. border-color:transparent;
  14600. }
  14601. #u20668_div {
  14602. border-width:0px;
  14603. position:absolute;
  14604. left:0px;
  14605. top:0px;
  14606. width:126px;
  14607. height:23px;
  14608. background:inherit;
  14609. background-color:rgba(255, 255, 255, 1);
  14610. border:none;
  14611. border-radius:0px;
  14612. -moz-box-shadow:none;
  14613. -webkit-box-shadow:none;
  14614. box-shadow:none;
  14615. font-size:11px;
  14616. color:#AAAAAA;
  14617. }
  14618. #u20668 {
  14619. border-width:0px;
  14620. position:absolute;
  14621. left:2737px;
  14622. top:102px;
  14623. width:126px;
  14624. height:23px;
  14625. display:flex;
  14626. font-size:11px;
  14627. color:#AAAAAA;
  14628. }
  14629. #u20668 .text {
  14630. position:absolute;
  14631. align-self:flex-start;
  14632. padding:2px 2px 2px 2px;
  14633. box-sizing:border-box;
  14634. width:100%;
  14635. }
  14636. #u20668_div.disabled {
  14637. border-width:0px;
  14638. position:absolute;
  14639. left:0px;
  14640. top:0px;
  14641. width:126px;
  14642. height:23px;
  14643. background:inherit;
  14644. background-color:rgba(240, 240, 240, 1);
  14645. border:none;
  14646. border-radius:0px;
  14647. -moz-box-shadow:none;
  14648. -webkit-box-shadow:none;
  14649. box-shadow:none;
  14650. font-size:11px;
  14651. color:#AAAAAA;
  14652. }
  14653. #u20668.disabled {
  14654. }
  14655. .u20668_input_option {
  14656. font-size:11px;
  14657. }
  14658. #u20669 {
  14659. border-width:0px;
  14660. position:absolute;
  14661. left:0px;
  14662. top:0px;
  14663. width:0px;
  14664. height:0px;
  14665. }
  14666. #u20670_div {
  14667. border-width:0px;
  14668. position:absolute;
  14669. left:0px;
  14670. top:0px;
  14671. width:240px;
  14672. height:30px;
  14673. background:inherit;
  14674. background-color:rgba(255, 255, 255, 1);
  14675. box-sizing:border-box;
  14676. border-width:1px;
  14677. border-style:solid;
  14678. border-color:rgba(215, 215, 215, 1);
  14679. border-radius:2px;
  14680. -moz-box-shadow:none;
  14681. -webkit-box-shadow:none;
  14682. box-shadow:none;
  14683. font-size:11px;
  14684. }
  14685. #u20670 {
  14686. border-width:0px;
  14687. position:absolute;
  14688. left:1730px;
  14689. top:100px;
  14690. width:240px;
  14691. height:30px;
  14692. display:flex;
  14693. font-size:11px;
  14694. }
  14695. #u20670 .text {
  14696. position:absolute;
  14697. align-self:center;
  14698. padding:2px 2px 2px 2px;
  14699. box-sizing:border-box;
  14700. width:100%;
  14701. }
  14702. #u20670_text {
  14703. border-width:0px;
  14704. word-wrap:break-word;
  14705. text-transform:none;
  14706. visibility:hidden;
  14707. }
  14708. #u20671_input {
  14709. position:absolute;
  14710. left:0px;
  14711. top:0px;
  14712. width:100px;
  14713. height:23px;
  14714. padding:2px 2px 2px 2px;
  14715. font-family:'ArialMT', 'Arial', sans-serif;
  14716. font-weight:400;
  14717. font-style:normal;
  14718. font-size:11px;
  14719. letter-spacing:normal;
  14720. color:#AAAAAA;
  14721. vertical-align:none;
  14722. text-align:left;
  14723. text-transform:none;
  14724. background-color:transparent;
  14725. border-color:transparent;
  14726. }
  14727. #u20671_input.disabled {
  14728. position:absolute;
  14729. left:0px;
  14730. top:0px;
  14731. width:100px;
  14732. height:23px;
  14733. padding:2px 2px 2px 2px;
  14734. font-family:'ArialMT', 'Arial', sans-serif;
  14735. font-weight:400;
  14736. font-style:normal;
  14737. font-size:11px;
  14738. letter-spacing:normal;
  14739. color:#AAAAAA;
  14740. vertical-align:none;
  14741. text-align:left;
  14742. text-transform:none;
  14743. background-color:transparent;
  14744. border-color:transparent;
  14745. }
  14746. #u20671_div {
  14747. border-width:0px;
  14748. position:absolute;
  14749. left:0px;
  14750. top:0px;
  14751. width:100px;
  14752. height:23px;
  14753. background:inherit;
  14754. background-color:rgba(255, 255, 255, 1);
  14755. border:none;
  14756. border-radius:0px;
  14757. -moz-box-shadow:none;
  14758. -webkit-box-shadow:none;
  14759. box-shadow:none;
  14760. font-size:11px;
  14761. color:#AAAAAA;
  14762. }
  14763. #u20671 {
  14764. border-width:0px;
  14765. position:absolute;
  14766. left:1737px;
  14767. top:102px;
  14768. width:100px;
  14769. height:23px;
  14770. display:flex;
  14771. font-size:11px;
  14772. color:#AAAAAA;
  14773. }
  14774. #u20671 .text {
  14775. position:absolute;
  14776. align-self:flex-start;
  14777. padding:2px 2px 2px 2px;
  14778. box-sizing:border-box;
  14779. width:100%;
  14780. }
  14781. #u20671_div.disabled {
  14782. border-width:0px;
  14783. position:absolute;
  14784. left:0px;
  14785. top:0px;
  14786. width:100px;
  14787. height:23px;
  14788. background:inherit;
  14789. background-color:rgba(240, 240, 240, 1);
  14790. border:none;
  14791. border-radius:0px;
  14792. -moz-box-shadow:none;
  14793. -webkit-box-shadow:none;
  14794. box-shadow:none;
  14795. font-size:11px;
  14796. color:#AAAAAA;
  14797. }
  14798. #u20671.disabled {
  14799. }
  14800. .u20671_input_option {
  14801. font-size:11px;
  14802. }
  14803. #u20672_input {
  14804. position:absolute;
  14805. left:0px;
  14806. top:0px;
  14807. width:100px;
  14808. height:23px;
  14809. padding:2px 2px 2px 2px;
  14810. font-family:'ArialMT', 'Arial', sans-serif;
  14811. font-weight:400;
  14812. font-style:normal;
  14813. font-size:11px;
  14814. letter-spacing:normal;
  14815. color:#AAAAAA;
  14816. vertical-align:none;
  14817. text-align:left;
  14818. text-transform:none;
  14819. background-color:transparent;
  14820. border-color:transparent;
  14821. }
  14822. #u20672_input.disabled {
  14823. position:absolute;
  14824. left:0px;
  14825. top:0px;
  14826. width:100px;
  14827. height:23px;
  14828. padding:2px 2px 2px 2px;
  14829. font-family:'ArialMT', 'Arial', sans-serif;
  14830. font-weight:400;
  14831. font-style:normal;
  14832. font-size:11px;
  14833. letter-spacing:normal;
  14834. color:#AAAAAA;
  14835. vertical-align:none;
  14836. text-align:left;
  14837. text-transform:none;
  14838. background-color:transparent;
  14839. border-color:transparent;
  14840. }
  14841. #u20672_div {
  14842. border-width:0px;
  14843. position:absolute;
  14844. left:0px;
  14845. top:0px;
  14846. width:100px;
  14847. height:23px;
  14848. background:inherit;
  14849. background-color:rgba(255, 255, 255, 1);
  14850. border:none;
  14851. border-radius:0px;
  14852. -moz-box-shadow:none;
  14853. -webkit-box-shadow:none;
  14854. box-shadow:none;
  14855. font-size:11px;
  14856. color:#AAAAAA;
  14857. }
  14858. #u20672 {
  14859. border-width:0px;
  14860. position:absolute;
  14861. left:1858px;
  14862. top:102px;
  14863. width:100px;
  14864. height:23px;
  14865. display:flex;
  14866. font-size:11px;
  14867. color:#AAAAAA;
  14868. }
  14869. #u20672 .text {
  14870. position:absolute;
  14871. align-self:flex-start;
  14872. padding:2px 2px 2px 2px;
  14873. box-sizing:border-box;
  14874. width:100%;
  14875. }
  14876. #u20672_div.disabled {
  14877. border-width:0px;
  14878. position:absolute;
  14879. left:0px;
  14880. top:0px;
  14881. width:100px;
  14882. height:23px;
  14883. background:inherit;
  14884. background-color:rgba(240, 240, 240, 1);
  14885. border:none;
  14886. border-radius:0px;
  14887. -moz-box-shadow:none;
  14888. -webkit-box-shadow:none;
  14889. box-shadow:none;
  14890. font-size:11px;
  14891. color:#AAAAAA;
  14892. }
  14893. #u20672.disabled {
  14894. }
  14895. .u20672_input_option {
  14896. font-size:11px;
  14897. }
  14898. #u20673_div {
  14899. border-width:0px;
  14900. position:absolute;
  14901. left:0px;
  14902. top:0px;
  14903. width:73px;
  14904. height:50px;
  14905. background:inherit;
  14906. background-color:rgba(255, 255, 255, 0);
  14907. border:none;
  14908. border-left:0px;
  14909. border-top:0px;
  14910. border-right:0px;
  14911. border-radius:0px;
  14912. border-bottom-right-radius:0px;
  14913. border-bottom-left-radius:0px;
  14914. -moz-box-shadow:none;
  14915. -webkit-box-shadow:none;
  14916. box-shadow:none;
  14917. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14918. font-weight:500;
  14919. font-style:normal;
  14920. font-size:18px;
  14921. }
  14922. #u20673 {
  14923. border-width:0px;
  14924. position:absolute;
  14925. left:459px;
  14926. top:50px;
  14927. width:73px;
  14928. height:50px;
  14929. display:flex;
  14930. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14931. font-weight:500;
  14932. font-style:normal;
  14933. font-size:18px;
  14934. }
  14935. #u20673 .text {
  14936. position:absolute;
  14937. align-self:center;
  14938. padding:0px 0px 0px 0px;
  14939. box-sizing:border-box;
  14940. width:100%;
  14941. }
  14942. #u20673_text {
  14943. border-width:0px;
  14944. white-space:nowrap;
  14945. text-transform:none;
  14946. }
  14947. #u20674_div {
  14948. border-width:0px;
  14949. position:absolute;
  14950. left:0px;
  14951. top:0px;
  14952. width:73px;
  14953. height:50px;
  14954. background:inherit;
  14955. background-color:rgba(255, 255, 255, 0);
  14956. border:none;
  14957. border-left:0px;
  14958. border-top:0px;
  14959. border-right:0px;
  14960. border-radius:0px;
  14961. border-bottom-right-radius:0px;
  14962. border-bottom-left-radius:0px;
  14963. -moz-box-shadow:none;
  14964. -webkit-box-shadow:none;
  14965. box-shadow:none;
  14966. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14967. font-weight:500;
  14968. font-style:normal;
  14969. font-size:18px;
  14970. }
  14971. #u20674 {
  14972. border-width:0px;
  14973. position:absolute;
  14974. left:562px;
  14975. top:50px;
  14976. width:73px;
  14977. height:50px;
  14978. display:flex;
  14979. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  14980. font-weight:500;
  14981. font-style:normal;
  14982. font-size:18px;
  14983. }
  14984. #u20674 .text {
  14985. position:absolute;
  14986. align-self:center;
  14987. padding:0px 0px 0px 0px;
  14988. box-sizing:border-box;
  14989. width:100%;
  14990. }
  14991. #u20674_text {
  14992. border-width:0px;
  14993. white-space:nowrap;
  14994. text-transform:none;
  14995. }
  14996. #u20675 {
  14997. border-width:0px;
  14998. position:absolute;
  14999. left:0px;
  15000. top:0px;
  15001. width:0px;
  15002. height:0px;
  15003. }
  15004. #u20676_div {
  15005. border-width:0px;
  15006. position:absolute;
  15007. left:0px;
  15008. top:0px;
  15009. width:200px;
  15010. height:1180px;
  15011. background:inherit;
  15012. background-color:rgba(255, 255, 255, 1);
  15013. border:none;
  15014. border-radius:0px;
  15015. -moz-box-shadow:none;
  15016. -webkit-box-shadow:none;
  15017. box-shadow:none;
  15018. }
  15019. #u20676 {
  15020. border-width:0px;
  15021. position:absolute;
  15022. left:120px;
  15023. top:50px;
  15024. width:200px;
  15025. height:1180px;
  15026. display:flex;
  15027. }
  15028. #u20676 .text {
  15029. position:absolute;
  15030. align-self:center;
  15031. padding:2px 2px 2px 2px;
  15032. box-sizing:border-box;
  15033. width:100%;
  15034. }
  15035. #u20676_text {
  15036. border-width:0px;
  15037. word-wrap:break-word;
  15038. text-transform:none;
  15039. visibility:hidden;
  15040. }
  15041. #u20677_div {
  15042. border-width:0px;
  15043. position:absolute;
  15044. left:0px;
  15045. top:0px;
  15046. width:200px;
  15047. height:60px;
  15048. background:inherit;
  15049. background-color:rgba(224, 231, 247, 1);
  15050. border:none;
  15051. border-radius:0px;
  15052. -moz-box-shadow:none;
  15053. -webkit-box-shadow:none;
  15054. box-shadow:none;
  15055. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  15056. font-weight:500;
  15057. font-style:normal;
  15058. font-size:18px;
  15059. }
  15060. #u20677 {
  15061. border-width:0px;
  15062. position:absolute;
  15063. left:120px;
  15064. top:50px;
  15065. width:200px;
  15066. height:60px;
  15067. display:flex;
  15068. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  15069. font-weight:500;
  15070. font-style:normal;
  15071. font-size:18px;
  15072. }
  15073. #u20677 .text {
  15074. position:absolute;
  15075. align-self:center;
  15076. padding:0px 0px 0px 20px;
  15077. box-sizing:border-box;
  15078. width:100%;
  15079. }
  15080. #u20677_text {
  15081. border-width:0px;
  15082. word-wrap:break-word;
  15083. text-transform:none;
  15084. }
  15085. #u20678_div {
  15086. border-width:0px;
  15087. position:absolute;
  15088. left:0px;
  15089. top:0px;
  15090. width:65px;
  15091. height:22px;
  15092. background:inherit;
  15093. background-color:rgba(255, 255, 255, 0);
  15094. border:none;
  15095. border-radius:0px;
  15096. -moz-box-shadow:none;
  15097. -webkit-box-shadow:none;
  15098. box-shadow:none;
  15099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15100. font-weight:400;
  15101. font-style:normal;
  15102. font-size:16px;
  15103. }
  15104. #u20678 {
  15105. border-width:0px;
  15106. position:absolute;
  15107. left:147px;
  15108. top:130px;
  15109. width:65px;
  15110. height:22px;
  15111. display:flex;
  15112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15113. font-weight:400;
  15114. font-style:normal;
  15115. font-size:16px;
  15116. }
  15117. #u20678 .text {
  15118. position:absolute;
  15119. align-self:flex-start;
  15120. padding:0px 0px 0px 0px;
  15121. box-sizing:border-box;
  15122. width:100%;
  15123. }
  15124. #u20678_text {
  15125. border-width:0px;
  15126. white-space:nowrap;
  15127. text-transform:none;
  15128. }
  15129. #u20679_div {
  15130. border-width:0px;
  15131. position:absolute;
  15132. left:0px;
  15133. top:0px;
  15134. width:65px;
  15135. height:22px;
  15136. background:inherit;
  15137. background-color:rgba(255, 255, 255, 0);
  15138. border:none;
  15139. border-radius:0px;
  15140. -moz-box-shadow:none;
  15141. -webkit-box-shadow:none;
  15142. box-shadow:none;
  15143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15144. font-weight:400;
  15145. font-style:normal;
  15146. font-size:16px;
  15147. }
  15148. #u20679 {
  15149. border-width:0px;
  15150. position:absolute;
  15151. left:147px;
  15152. top:229px;
  15153. width:65px;
  15154. height:22px;
  15155. display:flex;
  15156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15157. font-weight:400;
  15158. font-style:normal;
  15159. font-size:16px;
  15160. }
  15161. #u20679 .text {
  15162. position:absolute;
  15163. align-self:flex-start;
  15164. padding:0px 0px 0px 0px;
  15165. box-sizing:border-box;
  15166. width:100%;
  15167. }
  15168. #u20679_text {
  15169. border-width:0px;
  15170. white-space:nowrap;
  15171. text-transform:none;
  15172. }
  15173. #u20680_div {
  15174. border-width:0px;
  15175. position:absolute;
  15176. left:0px;
  15177. top:0px;
  15178. width:65px;
  15179. height:22px;
  15180. background:inherit;
  15181. background-color:rgba(255, 255, 255, 0);
  15182. border:none;
  15183. border-radius:0px;
  15184. -moz-box-shadow:none;
  15185. -webkit-box-shadow:none;
  15186. box-shadow:none;
  15187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15188. font-weight:400;
  15189. font-style:normal;
  15190. font-size:16px;
  15191. }
  15192. #u20680 {
  15193. border-width:0px;
  15194. position:absolute;
  15195. left:147px;
  15196. top:271px;
  15197. width:65px;
  15198. height:22px;
  15199. display:flex;
  15200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15201. font-weight:400;
  15202. font-style:normal;
  15203. font-size:16px;
  15204. }
  15205. #u20680 .text {
  15206. position:absolute;
  15207. align-self:flex-start;
  15208. padding:0px 0px 0px 0px;
  15209. box-sizing:border-box;
  15210. width:100%;
  15211. }
  15212. #u20680_text {
  15213. border-width:0px;
  15214. white-space:nowrap;
  15215. text-transform:none;
  15216. }
  15217. #u20681_div {
  15218. border-width:0px;
  15219. position:absolute;
  15220. left:0px;
  15221. top:0px;
  15222. width:65px;
  15223. height:22px;
  15224. background:inherit;
  15225. background-color:rgba(255, 255, 255, 0);
  15226. border:none;
  15227. border-radius:0px;
  15228. -moz-box-shadow:none;
  15229. -webkit-box-shadow:none;
  15230. box-shadow:none;
  15231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15232. font-weight:400;
  15233. font-style:normal;
  15234. font-size:16px;
  15235. }
  15236. #u20681 {
  15237. border-width:0px;
  15238. position:absolute;
  15239. left:147px;
  15240. top:770px;
  15241. width:65px;
  15242. height:22px;
  15243. display:flex;
  15244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15245. font-weight:400;
  15246. font-style:normal;
  15247. font-size:16px;
  15248. }
  15249. #u20681 .text {
  15250. position:absolute;
  15251. align-self:flex-start;
  15252. padding:0px 0px 0px 0px;
  15253. box-sizing:border-box;
  15254. width:100%;
  15255. }
  15256. #u20681_text {
  15257. border-width:0px;
  15258. white-space:nowrap;
  15259. text-transform:none;
  15260. }
  15261. #u20682_div {
  15262. border-width:0px;
  15263. position:absolute;
  15264. left:0px;
  15265. top:0px;
  15266. width:65px;
  15267. height:22px;
  15268. background:inherit;
  15269. background-color:rgba(255, 255, 255, 0);
  15270. border:none;
  15271. border-radius:0px;
  15272. -moz-box-shadow:none;
  15273. -webkit-box-shadow:none;
  15274. box-shadow:none;
  15275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15276. font-weight:400;
  15277. font-style:normal;
  15278. font-size:16px;
  15279. }
  15280. #u20682 {
  15281. border-width:0px;
  15282. position:absolute;
  15283. left:147px;
  15284. top:812px;
  15285. width:65px;
  15286. height:22px;
  15287. display:flex;
  15288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15289. font-weight:400;
  15290. font-style:normal;
  15291. font-size:16px;
  15292. }
  15293. #u20682 .text {
  15294. position:absolute;
  15295. align-self:flex-start;
  15296. padding:0px 0px 0px 0px;
  15297. box-sizing:border-box;
  15298. width:100%;
  15299. }
  15300. #u20682_text {
  15301. border-width:0px;
  15302. white-space:nowrap;
  15303. text-transform:none;
  15304. }
  15305. #u20683_div {
  15306. border-width:0px;
  15307. position:absolute;
  15308. left:0px;
  15309. top:0px;
  15310. width:49px;
  15311. height:17px;
  15312. background:inherit;
  15313. background-color:rgba(255, 255, 255, 0);
  15314. border:none;
  15315. border-radius:0px;
  15316. -moz-box-shadow:none;
  15317. -webkit-box-shadow:none;
  15318. box-shadow:none;
  15319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15320. font-weight:400;
  15321. font-style:normal;
  15322. font-size:12px;
  15323. color:#AAAAAA;
  15324. }
  15325. #u20683 {
  15326. border-width:0px;
  15327. position:absolute;
  15328. left:147px;
  15329. top:192px;
  15330. width:49px;
  15331. height:17px;
  15332. display:flex;
  15333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15334. font-weight:400;
  15335. font-style:normal;
  15336. font-size:12px;
  15337. color:#AAAAAA;
  15338. }
  15339. #u20683 .text {
  15340. position:absolute;
  15341. align-self:flex-start;
  15342. padding:0px 0px 0px 0px;
  15343. box-sizing:border-box;
  15344. width:100%;
  15345. }
  15346. #u20683_text {
  15347. border-width:0px;
  15348. white-space:nowrap;
  15349. text-transform:none;
  15350. }
  15351. #u20684_img {
  15352. border-width:0px;
  15353. position:absolute;
  15354. left:0px;
  15355. top:0px;
  15356. width:201px;
  15357. height:2px;
  15358. }
  15359. #u20684 {
  15360. border-width:0px;
  15361. position:absolute;
  15362. left:121px;
  15363. top:712px;
  15364. width:200px;
  15365. height:1px;
  15366. display:flex;
  15367. }
  15368. #u20684 .text {
  15369. position:absolute;
  15370. align-self:center;
  15371. padding:2px 2px 2px 2px;
  15372. box-sizing:border-box;
  15373. width:100%;
  15374. }
  15375. #u20684_text {
  15376. border-width:0px;
  15377. word-wrap:break-word;
  15378. text-transform:none;
  15379. visibility:hidden;
  15380. }
  15381. #u20685_div {
  15382. border-width:0px;
  15383. position:absolute;
  15384. left:0px;
  15385. top:0px;
  15386. width:49px;
  15387. height:17px;
  15388. background:inherit;
  15389. background-color:rgba(255, 255, 255, 0);
  15390. border:none;
  15391. border-radius:0px;
  15392. -moz-box-shadow:none;
  15393. -webkit-box-shadow:none;
  15394. box-shadow:none;
  15395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15396. font-weight:400;
  15397. font-style:normal;
  15398. font-size:12px;
  15399. color:#AAAAAA;
  15400. }
  15401. #u20685 {
  15402. border-width:0px;
  15403. position:absolute;
  15404. left:147px;
  15405. top:733px;
  15406. width:49px;
  15407. height:17px;
  15408. display:flex;
  15409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15410. font-weight:400;
  15411. font-style:normal;
  15412. font-size:12px;
  15413. color:#AAAAAA;
  15414. }
  15415. #u20685 .text {
  15416. position:absolute;
  15417. align-self:flex-start;
  15418. padding:0px 0px 0px 0px;
  15419. box-sizing:border-box;
  15420. width:100%;
  15421. }
  15422. #u20685_text {
  15423. border-width:0px;
  15424. white-space:nowrap;
  15425. text-transform:none;
  15426. }
  15427. #u20686_img {
  15428. border-width:0px;
  15429. position:absolute;
  15430. left:0px;
  15431. top:0px;
  15432. width:201px;
  15433. height:2px;
  15434. }
  15435. #u20686 {
  15436. border-width:0px;
  15437. position:absolute;
  15438. left:121px;
  15439. top:171px;
  15440. width:200px;
  15441. height:1px;
  15442. display:flex;
  15443. }
  15444. #u20686 .text {
  15445. position:absolute;
  15446. align-self:center;
  15447. padding:2px 2px 2px 2px;
  15448. box-sizing:border-box;
  15449. width:100%;
  15450. }
  15451. #u20686_text {
  15452. border-width:0px;
  15453. word-wrap:break-word;
  15454. text-transform:none;
  15455. visibility:hidden;
  15456. }
  15457. #u20687_div {
  15458. border-width:0px;
  15459. position:absolute;
  15460. left:0px;
  15461. top:0px;
  15462. width:81px;
  15463. height:22px;
  15464. background:inherit;
  15465. background-color:rgba(255, 255, 255, 0);
  15466. border:none;
  15467. border-radius:0px;
  15468. -moz-box-shadow:none;
  15469. -webkit-box-shadow:none;
  15470. box-shadow:none;
  15471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15472. font-weight:400;
  15473. font-style:normal;
  15474. font-size:16px;
  15475. }
  15476. #u20687 {
  15477. border-width:0px;
  15478. position:absolute;
  15479. left:147px;
  15480. top:315px;
  15481. width:81px;
  15482. height:22px;
  15483. display:flex;
  15484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15485. font-weight:400;
  15486. font-style:normal;
  15487. font-size:16px;
  15488. }
  15489. #u20687 .text {
  15490. position:absolute;
  15491. align-self:flex-start;
  15492. padding:0px 0px 0px 0px;
  15493. box-sizing:border-box;
  15494. width:100%;
  15495. }
  15496. #u20687_text {
  15497. border-width:0px;
  15498. white-space:nowrap;
  15499. text-transform:none;
  15500. }
  15501. #u20688_div {
  15502. border-width:0px;
  15503. position:absolute;
  15504. left:0px;
  15505. top:0px;
  15506. width:81px;
  15507. height:22px;
  15508. background:inherit;
  15509. background-color:rgba(255, 255, 255, 0);
  15510. border:none;
  15511. border-radius:0px;
  15512. -moz-box-shadow:none;
  15513. -webkit-box-shadow:none;
  15514. box-shadow:none;
  15515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15516. font-weight:400;
  15517. font-style:normal;
  15518. font-size:16px;
  15519. }
  15520. #u20688 {
  15521. border-width:0px;
  15522. position:absolute;
  15523. left:147px;
  15524. top:357px;
  15525. width:81px;
  15526. height:22px;
  15527. display:flex;
  15528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15529. font-weight:400;
  15530. font-style:normal;
  15531. font-size:16px;
  15532. }
  15533. #u20688 .text {
  15534. position:absolute;
  15535. align-self:flex-start;
  15536. padding:0px 0px 0px 0px;
  15537. box-sizing:border-box;
  15538. width:100%;
  15539. }
  15540. #u20688_text {
  15541. border-width:0px;
  15542. white-space:nowrap;
  15543. text-transform:none;
  15544. }
  15545. #u20689_div {
  15546. border-width:0px;
  15547. position:absolute;
  15548. left:0px;
  15549. top:0px;
  15550. width:81px;
  15551. height:22px;
  15552. background:inherit;
  15553. background-color:rgba(255, 255, 255, 0);
  15554. border:none;
  15555. border-radius:0px;
  15556. -moz-box-shadow:none;
  15557. -webkit-box-shadow:none;
  15558. box-shadow:none;
  15559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15560. font-weight:400;
  15561. font-style:normal;
  15562. font-size:16px;
  15563. }
  15564. #u20689 {
  15565. border-width:0px;
  15566. position:absolute;
  15567. left:147px;
  15568. top:399px;
  15569. width:81px;
  15570. height:22px;
  15571. display:flex;
  15572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15573. font-weight:400;
  15574. font-style:normal;
  15575. font-size:16px;
  15576. }
  15577. #u20689 .text {
  15578. position:absolute;
  15579. align-self:flex-start;
  15580. padding:0px 0px 0px 0px;
  15581. box-sizing:border-box;
  15582. width:100%;
  15583. }
  15584. #u20689_text {
  15585. border-width:0px;
  15586. white-space:nowrap;
  15587. text-transform:none;
  15588. }
  15589. #u20690_div {
  15590. border-width:0px;
  15591. position:absolute;
  15592. left:0px;
  15593. top:0px;
  15594. width:97px;
  15595. height:22px;
  15596. background:inherit;
  15597. background-color:rgba(255, 255, 255, 0);
  15598. border:none;
  15599. border-radius:0px;
  15600. -moz-box-shadow:none;
  15601. -webkit-box-shadow:none;
  15602. box-shadow:none;
  15603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15604. font-weight:400;
  15605. font-style:normal;
  15606. font-size:16px;
  15607. }
  15608. #u20690 {
  15609. border-width:0px;
  15610. position:absolute;
  15611. left:146px;
  15612. top:499px;
  15613. width:97px;
  15614. height:22px;
  15615. display:flex;
  15616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15617. font-weight:400;
  15618. font-style:normal;
  15619. font-size:16px;
  15620. }
  15621. #u20690 .text {
  15622. position:absolute;
  15623. align-self:flex-start;
  15624. padding:0px 0px 0px 0px;
  15625. box-sizing:border-box;
  15626. width:100%;
  15627. }
  15628. #u20690_text {
  15629. border-width:0px;
  15630. white-space:nowrap;
  15631. text-transform:none;
  15632. }
  15633. #u20691_div {
  15634. border-width:0px;
  15635. position:absolute;
  15636. left:0px;
  15637. top:0px;
  15638. width:65px;
  15639. height:22px;
  15640. background:inherit;
  15641. background-color:rgba(255, 255, 255, 0);
  15642. border:none;
  15643. border-radius:0px;
  15644. -moz-box-shadow:none;
  15645. -webkit-box-shadow:none;
  15646. box-shadow:none;
  15647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15648. font-weight:400;
  15649. font-style:normal;
  15650. font-size:16px;
  15651. }
  15652. #u20691 {
  15653. border-width:0px;
  15654. position:absolute;
  15655. left:146px;
  15656. top:581px;
  15657. width:65px;
  15658. height:22px;
  15659. display:flex;
  15660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15661. font-weight:400;
  15662. font-style:normal;
  15663. font-size:16px;
  15664. }
  15665. #u20691 .text {
  15666. position:absolute;
  15667. align-self:flex-start;
  15668. padding:0px 0px 0px 0px;
  15669. box-sizing:border-box;
  15670. width:100%;
  15671. }
  15672. #u20691_text {
  15673. border-width:0px;
  15674. white-space:nowrap;
  15675. text-transform:none;
  15676. }
  15677. #u20692_div {
  15678. border-width:0px;
  15679. position:absolute;
  15680. left:0px;
  15681. top:0px;
  15682. width:65px;
  15683. height:22px;
  15684. background:inherit;
  15685. background-color:rgba(255, 255, 255, 0);
  15686. border:none;
  15687. border-radius:0px;
  15688. -moz-box-shadow:none;
  15689. -webkit-box-shadow:none;
  15690. box-shadow:none;
  15691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15692. font-weight:400;
  15693. font-style:normal;
  15694. font-size:16px;
  15695. }
  15696. #u20692 {
  15697. border-width:0px;
  15698. position:absolute;
  15699. left:146px;
  15700. top:623px;
  15701. width:65px;
  15702. height:22px;
  15703. display:flex;
  15704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15705. font-weight:400;
  15706. font-style:normal;
  15707. font-size:16px;
  15708. }
  15709. #u20692 .text {
  15710. position:absolute;
  15711. align-self:flex-start;
  15712. padding:0px 0px 0px 0px;
  15713. box-sizing:border-box;
  15714. width:100%;
  15715. }
  15716. #u20692_text {
  15717. border-width:0px;
  15718. white-space:nowrap;
  15719. text-transform:none;
  15720. }
  15721. #u20693_div {
  15722. border-width:0px;
  15723. position:absolute;
  15724. left:0px;
  15725. top:0px;
  15726. width:49px;
  15727. height:17px;
  15728. background:inherit;
  15729. background-color:rgba(255, 255, 255, 0);
  15730. border:none;
  15731. border-radius:0px;
  15732. -moz-box-shadow:none;
  15733. -webkit-box-shadow:none;
  15734. box-shadow:none;
  15735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15736. font-weight:400;
  15737. font-style:normal;
  15738. font-size:12px;
  15739. color:#AAAAAA;
  15740. }
  15741. #u20693 {
  15742. border-width:0px;
  15743. position:absolute;
  15744. left:146px;
  15745. top:462px;
  15746. width:49px;
  15747. height:17px;
  15748. display:flex;
  15749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15750. font-weight:400;
  15751. font-style:normal;
  15752. font-size:12px;
  15753. color:#AAAAAA;
  15754. }
  15755. #u20693 .text {
  15756. position:absolute;
  15757. align-self:flex-start;
  15758. padding:0px 0px 0px 0px;
  15759. box-sizing:border-box;
  15760. width:100%;
  15761. }
  15762. #u20693_text {
  15763. border-width:0px;
  15764. white-space:nowrap;
  15765. text-transform:none;
  15766. }
  15767. #u20694_img {
  15768. border-width:0px;
  15769. position:absolute;
  15770. left:0px;
  15771. top:0px;
  15772. width:201px;
  15773. height:2px;
  15774. }
  15775. #u20694 {
  15776. border-width:0px;
  15777. position:absolute;
  15778. left:120px;
  15779. top:441px;
  15780. width:200px;
  15781. height:1px;
  15782. display:flex;
  15783. }
  15784. #u20694 .text {
  15785. position:absolute;
  15786. align-self:center;
  15787. padding:2px 2px 2px 2px;
  15788. box-sizing:border-box;
  15789. width:100%;
  15790. }
  15791. #u20694_text {
  15792. border-width:0px;
  15793. word-wrap:break-word;
  15794. text-transform:none;
  15795. visibility:hidden;
  15796. }
  15797. #u20695_div {
  15798. border-width:0px;
  15799. position:absolute;
  15800. left:0px;
  15801. top:0px;
  15802. width:65px;
  15803. height:22px;
  15804. background:inherit;
  15805. background-color:rgba(255, 255, 255, 0);
  15806. border:none;
  15807. border-radius:0px;
  15808. -moz-box-shadow:none;
  15809. -webkit-box-shadow:none;
  15810. box-shadow:none;
  15811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15812. font-weight:400;
  15813. font-style:normal;
  15814. font-size:16px;
  15815. }
  15816. #u20695 {
  15817. border-width:0px;
  15818. position:absolute;
  15819. left:146px;
  15820. top:665px;
  15821. width:65px;
  15822. height:22px;
  15823. display:flex;
  15824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15825. font-weight:400;
  15826. font-style:normal;
  15827. font-size:16px;
  15828. }
  15829. #u20695 .text {
  15830. position:absolute;
  15831. align-self:flex-start;
  15832. padding:0px 0px 0px 0px;
  15833. box-sizing:border-box;
  15834. width:100%;
  15835. }
  15836. #u20695_text {
  15837. border-width:0px;
  15838. white-space:nowrap;
  15839. text-transform:none;
  15840. }
  15841. #u20696_div {
  15842. border-width:0px;
  15843. position:absolute;
  15844. left:0px;
  15845. top:0px;
  15846. width:97px;
  15847. height:22px;
  15848. background:inherit;
  15849. background-color:rgba(255, 255, 255, 0);
  15850. border:none;
  15851. border-radius:0px;
  15852. -moz-box-shadow:none;
  15853. -webkit-box-shadow:none;
  15854. box-shadow:none;
  15855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15856. font-weight:400;
  15857. font-style:normal;
  15858. font-size:16px;
  15859. }
  15860. #u20696 {
  15861. border-width:0px;
  15862. position:absolute;
  15863. left:146px;
  15864. top:541px;
  15865. width:97px;
  15866. height:22px;
  15867. display:flex;
  15868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  15869. font-weight:400;
  15870. font-style:normal;
  15871. font-size:16px;
  15872. }
  15873. #u20696 .text {
  15874. position:absolute;
  15875. align-self:flex-start;
  15876. padding:0px 0px 0px 0px;
  15877. box-sizing:border-box;
  15878. width:100%;
  15879. }
  15880. #u20696_text {
  15881. border-width:0px;
  15882. white-space:nowrap;
  15883. text-transform:none;
  15884. }