styles.css 163 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u1883_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1197px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u1883 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1197px;
  41. display:flex;
  42. }
  43. #u1883 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u1883_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u1884_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u1884 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u1884 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u1884_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u1885_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u1885 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u1885 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u1885_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u1886 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u1887_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u1887 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u1887 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u1887_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u1888_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u1888 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u1888 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u1888_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u1889_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u1889 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u1889 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u1889_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u1890 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u1891_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u1891_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u1891_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u1891 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u1891 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u1891_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u1891.disabled {
  356. }
  357. .u1891_input_option {
  358. font-size:14px;
  359. }
  360. #u1892_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u1892 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u1892 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u1892_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u1893_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u1893 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u1893 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u1893_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u1894_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u1894 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u1894 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u1894_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u1895 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u1896_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u1896 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u1896 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u1896_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u1897_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u1897 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u1897 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u1897_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u1898 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u1899_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u1899 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u1899 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u1899_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u1900_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u1900 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u1900 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u1900_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u1901 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u1902_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u1902 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:397px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u1902 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u1902_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u1903_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u1903 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:401px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u1903 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u1903_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u1904 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u1905_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u1905 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u1905 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u1905_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u1906_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u1906 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u1906 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u1906_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u1907 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u1908_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u1908 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:439px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u1908 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u1908_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u1909_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u1909 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:443px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u1909 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u1909_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u1910 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u1911_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u1911 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:313px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u1911 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u1911_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u1912_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u1912 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:317px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u1912 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u1912_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u1913 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u1914_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u1914 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u1914 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u1914_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u1915_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u1915 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u1915 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u1915_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u1916 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u1917_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u1917 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:355px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u1917 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u1917_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u1918_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u1918 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:359px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u1918 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u1918_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u1919 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u1920_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u1920 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:481px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u1920 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u1920_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u1921_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u1921 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:485px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u1921 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u1921_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u1922 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u1923_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u1923 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:523px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u1923 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u1923_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u1924_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u1924 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:527px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u1924 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u1924_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u1925_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u1925 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u1925 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u1925_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u1926_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u1926 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u1926 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u1926_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u1927_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u1927 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u1927 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u1927_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u1928_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u1928 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u1928 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u1928_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u1929 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u1930_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. #u1930 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  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. #u1930 .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. #u1930_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u1931_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u1931 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u1931 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u1931_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u1932 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u1933_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. #u1933 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  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. #u1933 .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. #u1933_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u1934_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u1934 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u1934 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u1934_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u1935 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u1936_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. #u1936 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:273px;
  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. #u1936 .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. #u1936_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u1937_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u1937 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:277px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u1937 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u1937_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u1938_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1260px;
  1728. height:100px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. }
  1737. #u1938 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:329px;
  1741. top:50px;
  1742. width:1260px;
  1743. height:100px;
  1744. display:flex;
  1745. }
  1746. #u1938 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u1938_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u1939_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-Regular', 'PingFang SC', sans-serif;
  1779. font-weight:400;
  1780. font-style:normal;
  1781. font-size:18px;
  1782. color:#298FFF;
  1783. line-height:40px;
  1784. }
  1785. #u1939 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:352px;
  1789. top:50px;
  1790. width:73px;
  1791. height:50px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:18px;
  1797. color:#298FFF;
  1798. line-height:40px;
  1799. }
  1800. #u1939 .text {
  1801. position:absolute;
  1802. align-self:center;
  1803. padding:0px 0px 0px 0px;
  1804. box-sizing:border-box;
  1805. width:100%;
  1806. }
  1807. #u1939_text {
  1808. border-width:0px;
  1809. white-space:nowrap;
  1810. text-transform:none;
  1811. }
  1812. #u1940_div {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:1260px;
  1818. height:1077px;
  1819. background:inherit;
  1820. background-color:rgba(255, 255, 255, 1);
  1821. border:none;
  1822. border-radius:0px;
  1823. -moz-box-shadow:none;
  1824. -webkit-box-shadow:none;
  1825. box-shadow:none;
  1826. }
  1827. #u1940 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:329px;
  1831. top:160px;
  1832. width:1260px;
  1833. height:1077px;
  1834. display:flex;
  1835. }
  1836. #u1940 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:2px 2px 2px 2px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u1940_text {
  1844. border-width:0px;
  1845. word-wrap:break-word;
  1846. text-transform:none;
  1847. visibility:hidden;
  1848. }
  1849. #u1941 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:352px;
  1853. top:269px;
  1854. width:1220px;
  1855. height:321px;
  1856. }
  1857. #u1942_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:73px;
  1863. height:38px;
  1864. }
  1865. #u1942 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:73px;
  1871. height:38px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:12px;
  1877. color:#FFFFFF;
  1878. }
  1879. #u1942 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u1942_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u1943_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:73px;
  1897. height:38px;
  1898. }
  1899. #u1943 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:73px;
  1903. top:0px;
  1904. width:73px;
  1905. height:38px;
  1906. display:flex;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:12px;
  1911. color:#FFFFFF;
  1912. }
  1913. #u1943 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u1943_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. }
  1925. #u1944_img {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:73px;
  1931. height:38px;
  1932. }
  1933. #u1944 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:146px;
  1937. top:0px;
  1938. width:73px;
  1939. height:38px;
  1940. display:flex;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:12px;
  1945. color:#FFFFFF;
  1946. }
  1947. #u1944 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u1944_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. }
  1959. #u1945_img {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:73px;
  1965. height:38px;
  1966. }
  1967. #u1945 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:219px;
  1971. top:0px;
  1972. width:73px;
  1973. height:38px;
  1974. display:flex;
  1975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. font-size:12px;
  1979. color:#FFFFFF;
  1980. }
  1981. #u1945 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u1945_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. }
  1993. #u1946_img {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:73px;
  1999. height:38px;
  2000. }
  2001. #u1946 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:292px;
  2005. top:0px;
  2006. width:73px;
  2007. height:38px;
  2008. display:flex;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. color:#FFFFFF;
  2014. }
  2015. #u1946 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u1946_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u1947_img {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:73px;
  2033. height:38px;
  2034. }
  2035. #u1947 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:365px;
  2039. top:0px;
  2040. width:73px;
  2041. height:38px;
  2042. display:flex;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:12px;
  2047. color:#FFFFFF;
  2048. }
  2049. #u1947 .text {
  2050. position:absolute;
  2051. align-self:center;
  2052. padding:2px 2px 2px 0px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u1947_text {
  2057. border-width:0px;
  2058. word-wrap:break-word;
  2059. text-transform:none;
  2060. }
  2061. #u1948_img {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:73px;
  2067. height:38px;
  2068. }
  2069. #u1948 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:438px;
  2073. top:0px;
  2074. width:73px;
  2075. height:38px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. color:#FFFFFF;
  2082. }
  2083. #u1948 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u1948_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. }
  2095. #u1949_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:73px;
  2101. height:38px;
  2102. }
  2103. #u1949 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:511px;
  2107. top:0px;
  2108. width:73px;
  2109. height:38px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:12px;
  2115. color:#FFFFFF;
  2116. }
  2117. #u1949 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 0px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u1949_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. }
  2129. #u1950_img {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:73px;
  2135. height:38px;
  2136. }
  2137. #u1950 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:584px;
  2141. top:0px;
  2142. width:73px;
  2143. height:38px;
  2144. display:flex;
  2145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2146. font-weight:400;
  2147. font-style:normal;
  2148. font-size:12px;
  2149. color:#FFFFFF;
  2150. }
  2151. #u1950 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 0px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u1950_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. }
  2163. #u1951_img {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:73px;
  2169. height:38px;
  2170. }
  2171. #u1951 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:657px;
  2175. top:0px;
  2176. width:73px;
  2177. height:38px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:12px;
  2183. color:#FFFFFF;
  2184. }
  2185. #u1951 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 0px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u1951_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. }
  2197. #u1952_img {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:73px;
  2203. height:38px;
  2204. }
  2205. #u1952 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:730px;
  2209. top:0px;
  2210. width:73px;
  2211. height:38px;
  2212. display:flex;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:12px;
  2217. color:#FFFFFF;
  2218. }
  2219. #u1952 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u1952_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. }
  2231. #u1953_img {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:85px;
  2237. height:38px;
  2238. }
  2239. #u1953 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:803px;
  2243. top:0px;
  2244. width:85px;
  2245. height:38px;
  2246. display:flex;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. color:#FFFFFF;
  2252. }
  2253. #u1953 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 0px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u1953_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. }
  2265. #u1954_img {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:98px;
  2271. height:38px;
  2272. }
  2273. #u1954 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:888px;
  2277. top:0px;
  2278. width:98px;
  2279. height:38px;
  2280. display:flex;
  2281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:12px;
  2285. color:#FFFFFF;
  2286. }
  2287. #u1954 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:2px 2px 2px 0px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u1954_text {
  2295. border-width:0px;
  2296. word-wrap:break-word;
  2297. text-transform:none;
  2298. }
  2299. #u1955_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:73px;
  2305. height:38px;
  2306. }
  2307. #u1955 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:986px;
  2311. top:0px;
  2312. width:73px;
  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. #u1955 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:2px 2px 2px 0px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u1955_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. }
  2333. #u1956_img {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:73px;
  2339. height:38px;
  2340. }
  2341. #u1956 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:1059px;
  2345. top:0px;
  2346. width:73px;
  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. #u1956 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u1956_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. }
  2367. #u1957_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:88px;
  2373. height:38px;
  2374. }
  2375. #u1957 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:1132px;
  2379. top:0px;
  2380. width:88px;
  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. #u1957 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:2px 2px 2px 0px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u1957_text {
  2397. border-width:0px;
  2398. word-wrap:break-word;
  2399. text-transform:none;
  2400. }
  2401. #u1958_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:73px;
  2407. height:38px;
  2408. }
  2409. #u1958 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:38px;
  2414. width:73px;
  2415. height:38px;
  2416. display:flex;
  2417. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:12px;
  2421. }
  2422. #u1958 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 0px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u1958_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. visibility:hidden;
  2434. }
  2435. #u1959_img {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:73px;
  2441. height:38px;
  2442. }
  2443. #u1959 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:73px;
  2447. top:38px;
  2448. width:73px;
  2449. height:38px;
  2450. display:flex;
  2451. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:12px;
  2455. }
  2456. #u1959 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:2px 2px 2px 0px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u1959_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. visibility:hidden;
  2468. }
  2469. #u1960_img {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:73px;
  2475. height:38px;
  2476. }
  2477. #u1960 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:146px;
  2481. top:38px;
  2482. width:73px;
  2483. height:38px;
  2484. display:flex;
  2485. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:12px;
  2489. }
  2490. #u1960 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 0px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u1960_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. visibility:hidden;
  2502. }
  2503. #u1961_img {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:73px;
  2509. height:38px;
  2510. }
  2511. #u1961 {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:219px;
  2515. top:38px;
  2516. width:73px;
  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. }
  2524. #u1961 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:2px 2px 2px 0px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u1961_text {
  2532. border-width:0px;
  2533. word-wrap:break-word;
  2534. text-transform:none;
  2535. visibility:hidden;
  2536. }
  2537. #u1962_img {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:73px;
  2543. height:38px;
  2544. }
  2545. #u1962 {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:292px;
  2549. top:38px;
  2550. width:73px;
  2551. height:38px;
  2552. display:flex;
  2553. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2554. font-weight:400;
  2555. font-style:normal;
  2556. font-size:12px;
  2557. }
  2558. #u1962 .text {
  2559. position:absolute;
  2560. align-self:center;
  2561. padding:2px 2px 2px 0px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u1962_text {
  2566. border-width:0px;
  2567. word-wrap:break-word;
  2568. text-transform:none;
  2569. }
  2570. #u1963_img {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:73px;
  2576. height:38px;
  2577. }
  2578. #u1963 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:365px;
  2582. top:38px;
  2583. width:73px;
  2584. height:38px;
  2585. display:flex;
  2586. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:12px;
  2590. }
  2591. #u1963 .text {
  2592. position:absolute;
  2593. align-self:center;
  2594. padding:2px 2px 2px 0px;
  2595. box-sizing:border-box;
  2596. width:100%;
  2597. }
  2598. #u1963_text {
  2599. border-width:0px;
  2600. word-wrap:break-word;
  2601. text-transform:none;
  2602. visibility:hidden;
  2603. }
  2604. #u1964_img {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:0px;
  2608. top:0px;
  2609. width:73px;
  2610. height:38px;
  2611. }
  2612. #u1964 {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:438px;
  2616. top:38px;
  2617. width:73px;
  2618. height:38px;
  2619. display:flex;
  2620. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2621. font-weight:400;
  2622. font-style:normal;
  2623. font-size:12px;
  2624. }
  2625. #u1964 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:2px 2px 2px 0px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u1964_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. visibility:hidden;
  2637. }
  2638. #u1965_img {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:73px;
  2644. height:38px;
  2645. }
  2646. #u1965 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:511px;
  2650. top:38px;
  2651. width:73px;
  2652. height:38px;
  2653. display:flex;
  2654. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2655. font-weight:400;
  2656. font-style:normal;
  2657. font-size:12px;
  2658. }
  2659. #u1965 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 2px 2px 0px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u1965_text {
  2667. border-width:0px;
  2668. word-wrap:break-word;
  2669. text-transform:none;
  2670. visibility:hidden;
  2671. }
  2672. #u1966_img {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:73px;
  2678. height:38px;
  2679. }
  2680. #u1966 {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:584px;
  2684. top:38px;
  2685. width:73px;
  2686. height:38px;
  2687. display:flex;
  2688. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2689. font-weight:400;
  2690. font-style:normal;
  2691. font-size:12px;
  2692. }
  2693. #u1966 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 0px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u1966_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u1967_img {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:73px;
  2712. height:38px;
  2713. }
  2714. #u1967 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:657px;
  2718. top:38px;
  2719. width:73px;
  2720. height:38px;
  2721. display:flex;
  2722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:12px;
  2726. }
  2727. #u1967 .text {
  2728. position:absolute;
  2729. align-self:center;
  2730. padding:2px 2px 2px 0px;
  2731. box-sizing:border-box;
  2732. width:100%;
  2733. }
  2734. #u1967_text {
  2735. border-width:0px;
  2736. word-wrap:break-word;
  2737. text-transform:none;
  2738. visibility:hidden;
  2739. }
  2740. #u1968_img {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:73px;
  2746. height:38px;
  2747. }
  2748. #u1968 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:730px;
  2752. top:38px;
  2753. width:73px;
  2754. height:38px;
  2755. display:flex;
  2756. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2757. font-weight:400;
  2758. font-style:normal;
  2759. font-size:12px;
  2760. }
  2761. #u1968 .text {
  2762. position:absolute;
  2763. align-self:center;
  2764. padding:2px 2px 2px 0px;
  2765. box-sizing:border-box;
  2766. width:100%;
  2767. }
  2768. #u1968_text {
  2769. border-width:0px;
  2770. word-wrap:break-word;
  2771. text-transform:none;
  2772. visibility:hidden;
  2773. }
  2774. #u1969_img {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:85px;
  2780. height:38px;
  2781. }
  2782. #u1969 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:803px;
  2786. top:38px;
  2787. width:85px;
  2788. height:38px;
  2789. display:flex;
  2790. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. font-size:12px;
  2794. }
  2795. #u1969 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:2px 2px 2px 0px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u1969_text {
  2803. border-width:0px;
  2804. word-wrap:break-word;
  2805. text-transform:none;
  2806. visibility:hidden;
  2807. }
  2808. #u1970_img {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:98px;
  2814. height:38px;
  2815. }
  2816. #u1970 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:888px;
  2820. top:38px;
  2821. width:98px;
  2822. height:38px;
  2823. display:flex;
  2824. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2825. font-weight:400;
  2826. font-style:normal;
  2827. font-size:12px;
  2828. }
  2829. #u1970 .text {
  2830. position:absolute;
  2831. align-self:center;
  2832. padding:2px 2px 2px 0px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u1970_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. visibility:hidden;
  2841. }
  2842. #u1971_img {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:73px;
  2848. height:38px;
  2849. }
  2850. #u1971 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:986px;
  2854. top:38px;
  2855. width:73px;
  2856. height:38px;
  2857. display:flex;
  2858. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2859. font-weight:400;
  2860. font-style:normal;
  2861. font-size:12px;
  2862. }
  2863. #u1971 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:2px 2px 2px 0px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u1971_text {
  2871. border-width:0px;
  2872. word-wrap:break-word;
  2873. text-transform:none;
  2874. visibility:hidden;
  2875. }
  2876. #u1972_img {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:73px;
  2882. height:38px;
  2883. }
  2884. #u1972 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:1059px;
  2888. top:38px;
  2889. width:73px;
  2890. height:38px;
  2891. display:flex;
  2892. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:12px;
  2896. }
  2897. #u1972 .text {
  2898. position:absolute;
  2899. align-self:center;
  2900. padding:2px 2px 2px 0px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u1972_text {
  2905. border-width:0px;
  2906. word-wrap:break-word;
  2907. text-transform:none;
  2908. }
  2909. #u1973_img {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:88px;
  2915. height:38px;
  2916. }
  2917. #u1973 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:1132px;
  2921. top:38px;
  2922. width:88px;
  2923. height:38px;
  2924. display:flex;
  2925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2926. font-weight:400;
  2927. font-style:normal;
  2928. font-size:12px;
  2929. color:#1890FF;
  2930. }
  2931. #u1973 .text {
  2932. position:absolute;
  2933. align-self:center;
  2934. padding:2px 2px 2px 0px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u1973_text {
  2939. border-width:0px;
  2940. word-wrap:break-word;
  2941. text-transform:none;
  2942. }
  2943. #u1974_img {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:73px;
  2949. height:38px;
  2950. }
  2951. #u1974 {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:76px;
  2956. width:73px;
  2957. height:38px;
  2958. display:flex;
  2959. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2960. font-weight:400;
  2961. font-style:normal;
  2962. font-size:12px;
  2963. color:#606266;
  2964. }
  2965. #u1974 .text {
  2966. position:absolute;
  2967. align-self:center;
  2968. padding:2px 2px 2px 0px;
  2969. box-sizing:border-box;
  2970. width:100%;
  2971. }
  2972. #u1974_text {
  2973. border-width:0px;
  2974. word-wrap:break-word;
  2975. text-transform:none;
  2976. visibility:hidden;
  2977. }
  2978. #u1975_img {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:0px;
  2982. top:0px;
  2983. width:73px;
  2984. height:38px;
  2985. }
  2986. #u1975 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:73px;
  2990. top:76px;
  2991. width:73px;
  2992. height:38px;
  2993. display:flex;
  2994. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2995. font-weight:400;
  2996. font-style:normal;
  2997. font-size:12px;
  2998. color:#606266;
  2999. }
  3000. #u1975 .text {
  3001. position:absolute;
  3002. align-self:center;
  3003. padding:2px 2px 2px 0px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u1975_text {
  3008. border-width:0px;
  3009. word-wrap:break-word;
  3010. text-transform:none;
  3011. visibility:hidden;
  3012. }
  3013. #u1976_img {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:73px;
  3019. height:38px;
  3020. }
  3021. #u1976 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:146px;
  3025. top:76px;
  3026. width:73px;
  3027. height:38px;
  3028. display:flex;
  3029. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3030. font-weight:400;
  3031. font-style:normal;
  3032. font-size:12px;
  3033. color:#606266;
  3034. }
  3035. #u1976 .text {
  3036. position:absolute;
  3037. align-self:center;
  3038. padding:2px 2px 2px 0px;
  3039. box-sizing:border-box;
  3040. width:100%;
  3041. }
  3042. #u1976_text {
  3043. border-width:0px;
  3044. word-wrap:break-word;
  3045. text-transform:none;
  3046. visibility:hidden;
  3047. }
  3048. #u1977_img {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:73px;
  3054. height:38px;
  3055. }
  3056. #u1977 {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:219px;
  3060. top:76px;
  3061. width:73px;
  3062. height:38px;
  3063. display:flex;
  3064. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3065. font-weight:400;
  3066. font-style:normal;
  3067. font-size:12px;
  3068. color:#606266;
  3069. }
  3070. #u1977 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 2px 2px 0px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u1977_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. visibility:hidden;
  3082. }
  3083. #u1978_img {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:73px;
  3089. height:38px;
  3090. }
  3091. #u1978 {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:292px;
  3095. top:76px;
  3096. width:73px;
  3097. height:38px;
  3098. display:flex;
  3099. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3100. font-weight:400;
  3101. font-style:normal;
  3102. font-size:12px;
  3103. color:#606266;
  3104. }
  3105. #u1978 .text {
  3106. position:absolute;
  3107. align-self:center;
  3108. padding:2px 2px 2px 0px;
  3109. box-sizing:border-box;
  3110. width:100%;
  3111. }
  3112. #u1978_text {
  3113. border-width:0px;
  3114. word-wrap:break-word;
  3115. text-transform:none;
  3116. visibility:hidden;
  3117. }
  3118. #u1979_img {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:73px;
  3124. height:38px;
  3125. }
  3126. #u1979 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:365px;
  3130. top:76px;
  3131. width:73px;
  3132. height:38px;
  3133. display:flex;
  3134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:12px;
  3138. color:#606266;
  3139. }
  3140. #u1979 .text {
  3141. position:absolute;
  3142. align-self:center;
  3143. padding:2px 2px 2px 0px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u1979_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. visibility:hidden;
  3152. }
  3153. #u1980_img {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:73px;
  3159. height:38px;
  3160. }
  3161. #u1980 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:438px;
  3165. top:76px;
  3166. width:73px;
  3167. height:38px;
  3168. display:flex;
  3169. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3170. font-weight:400;
  3171. font-style:normal;
  3172. font-size:12px;
  3173. color:#606266;
  3174. }
  3175. #u1980 .text {
  3176. position:absolute;
  3177. align-self:center;
  3178. padding:2px 2px 2px 0px;
  3179. box-sizing:border-box;
  3180. width:100%;
  3181. }
  3182. #u1980_text {
  3183. border-width:0px;
  3184. word-wrap:break-word;
  3185. text-transform:none;
  3186. visibility:hidden;
  3187. }
  3188. #u1981_img {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:0px;
  3192. top:0px;
  3193. width:73px;
  3194. height:38px;
  3195. }
  3196. #u1981 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:511px;
  3200. top:76px;
  3201. width:73px;
  3202. height:38px;
  3203. display:flex;
  3204. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:12px;
  3208. color:#606266;
  3209. }
  3210. #u1981 .text {
  3211. position:absolute;
  3212. align-self:center;
  3213. padding:2px 2px 2px 0px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u1981_text {
  3218. border-width:0px;
  3219. word-wrap:break-word;
  3220. text-transform:none;
  3221. visibility:hidden;
  3222. }
  3223. #u1982_img {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:73px;
  3229. height:38px;
  3230. }
  3231. #u1982 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:584px;
  3235. top:76px;
  3236. width:73px;
  3237. height:38px;
  3238. display:flex;
  3239. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3240. font-weight:400;
  3241. font-style:normal;
  3242. font-size:12px;
  3243. color:#606266;
  3244. }
  3245. #u1982 .text {
  3246. position:absolute;
  3247. align-self:center;
  3248. padding:2px 2px 2px 0px;
  3249. box-sizing:border-box;
  3250. width:100%;
  3251. }
  3252. #u1982_text {
  3253. border-width:0px;
  3254. word-wrap:break-word;
  3255. text-transform:none;
  3256. visibility:hidden;
  3257. }
  3258. #u1983_img {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:73px;
  3264. height:38px;
  3265. }
  3266. #u1983 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:657px;
  3270. top:76px;
  3271. width:73px;
  3272. height:38px;
  3273. display:flex;
  3274. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:12px;
  3278. color:#606266;
  3279. }
  3280. #u1983 .text {
  3281. position:absolute;
  3282. align-self:center;
  3283. padding:2px 2px 2px 0px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u1983_text {
  3288. border-width:0px;
  3289. word-wrap:break-word;
  3290. text-transform:none;
  3291. visibility:hidden;
  3292. }
  3293. #u1984_img {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:0px;
  3297. top:0px;
  3298. width:73px;
  3299. height:38px;
  3300. }
  3301. #u1984 {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:730px;
  3305. top:76px;
  3306. width:73px;
  3307. height:38px;
  3308. display:flex;
  3309. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3310. font-weight:400;
  3311. font-style:normal;
  3312. font-size:12px;
  3313. color:#606266;
  3314. }
  3315. #u1984 .text {
  3316. position:absolute;
  3317. align-self:center;
  3318. padding:2px 2px 2px 0px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u1984_text {
  3323. border-width:0px;
  3324. word-wrap:break-word;
  3325. text-transform:none;
  3326. visibility:hidden;
  3327. }
  3328. #u1985_img {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:85px;
  3334. height:38px;
  3335. }
  3336. #u1985 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:803px;
  3340. top:76px;
  3341. width:85px;
  3342. height:38px;
  3343. display:flex;
  3344. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3345. font-weight:400;
  3346. font-style:normal;
  3347. font-size:12px;
  3348. color:#606266;
  3349. }
  3350. #u1985 .text {
  3351. position:absolute;
  3352. align-self:center;
  3353. padding:2px 2px 2px 0px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u1985_text {
  3358. border-width:0px;
  3359. word-wrap:break-word;
  3360. text-transform:none;
  3361. visibility:hidden;
  3362. }
  3363. #u1986_img {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:98px;
  3369. height:38px;
  3370. }
  3371. #u1986 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:888px;
  3375. top:76px;
  3376. width:98px;
  3377. height:38px;
  3378. display:flex;
  3379. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:12px;
  3383. color:#606266;
  3384. }
  3385. #u1986 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 2px 2px 0px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u1986_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. visibility:hidden;
  3397. }
  3398. #u1987_img {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:73px;
  3404. height:38px;
  3405. }
  3406. #u1987 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:986px;
  3410. top:76px;
  3411. width:73px;
  3412. height:38px;
  3413. display:flex;
  3414. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. font-size:12px;
  3418. color:#606266;
  3419. }
  3420. #u1987 .text {
  3421. position:absolute;
  3422. align-self:center;
  3423. padding:2px 2px 2px 0px;
  3424. box-sizing:border-box;
  3425. width:100%;
  3426. }
  3427. #u1987_text {
  3428. border-width:0px;
  3429. word-wrap:break-word;
  3430. text-transform:none;
  3431. visibility:hidden;
  3432. }
  3433. #u1988_img {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:73px;
  3439. height:38px;
  3440. }
  3441. #u1988 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:1059px;
  3445. top:76px;
  3446. width:73px;
  3447. height:38px;
  3448. display:flex;
  3449. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:12px;
  3453. color:#606266;
  3454. }
  3455. #u1988 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u1988_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. visibility:hidden;
  3467. }
  3468. #u1989_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:88px;
  3474. height:38px;
  3475. }
  3476. #u1989 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:1132px;
  3480. top:76px;
  3481. width:88px;
  3482. height:38px;
  3483. display:flex;
  3484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:12px;
  3488. color:#1890FF;
  3489. }
  3490. #u1989 .text {
  3491. position:absolute;
  3492. align-self:center;
  3493. padding:2px 2px 2px 0px;
  3494. box-sizing:border-box;
  3495. width:100%;
  3496. }
  3497. #u1989_text {
  3498. border-width:0px;
  3499. word-wrap:break-word;
  3500. text-transform:none;
  3501. visibility:hidden;
  3502. }
  3503. #u1990_img {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:73px;
  3509. height:38px;
  3510. }
  3511. #u1990 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:114px;
  3516. width:73px;
  3517. height:38px;
  3518. display:flex;
  3519. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:12px;
  3523. color:#606266;
  3524. }
  3525. #u1990 .text {
  3526. position:absolute;
  3527. align-self:center;
  3528. padding:2px 2px 2px 0px;
  3529. box-sizing:border-box;
  3530. width:100%;
  3531. }
  3532. #u1990_text {
  3533. border-width:0px;
  3534. word-wrap:break-word;
  3535. text-transform:none;
  3536. visibility:hidden;
  3537. }
  3538. #u1991_img {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:73px;
  3544. height:38px;
  3545. }
  3546. #u1991 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:73px;
  3550. top:114px;
  3551. width:73px;
  3552. height:38px;
  3553. display:flex;
  3554. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3555. font-weight:400;
  3556. font-style:normal;
  3557. font-size:12px;
  3558. color:#606266;
  3559. }
  3560. #u1991 .text {
  3561. position:absolute;
  3562. align-self:center;
  3563. padding:2px 2px 2px 0px;
  3564. box-sizing:border-box;
  3565. width:100%;
  3566. }
  3567. #u1991_text {
  3568. border-width:0px;
  3569. word-wrap:break-word;
  3570. text-transform:none;
  3571. visibility:hidden;
  3572. }
  3573. #u1992_img {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:73px;
  3579. height:38px;
  3580. }
  3581. #u1992 {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:146px;
  3585. top:114px;
  3586. width:73px;
  3587. height:38px;
  3588. display:flex;
  3589. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:12px;
  3593. color:#606266;
  3594. }
  3595. #u1992 .text {
  3596. position:absolute;
  3597. align-self:center;
  3598. padding:2px 2px 2px 0px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u1992_text {
  3603. border-width:0px;
  3604. word-wrap:break-word;
  3605. text-transform:none;
  3606. visibility:hidden;
  3607. }
  3608. #u1993_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:73px;
  3614. height:38px;
  3615. }
  3616. #u1993 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:219px;
  3620. top:114px;
  3621. width:73px;
  3622. height:38px;
  3623. display:flex;
  3624. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. font-size:12px;
  3628. color:#606266;
  3629. }
  3630. #u1993 .text {
  3631. position:absolute;
  3632. align-self:center;
  3633. padding:2px 2px 2px 0px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u1993_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. visibility:hidden;
  3642. }
  3643. #u1994_img {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:73px;
  3649. height:38px;
  3650. }
  3651. #u1994 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:292px;
  3655. top:114px;
  3656. width:73px;
  3657. height:38px;
  3658. display:flex;
  3659. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:12px;
  3663. color:#606266;
  3664. }
  3665. #u1994 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:2px 2px 2px 0px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u1994_text {
  3673. border-width:0px;
  3674. word-wrap:break-word;
  3675. text-transform:none;
  3676. visibility:hidden;
  3677. }
  3678. #u1995_img {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:73px;
  3684. height:38px;
  3685. }
  3686. #u1995 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:365px;
  3690. top:114px;
  3691. width:73px;
  3692. height:38px;
  3693. display:flex;
  3694. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3695. font-weight:400;
  3696. font-style:normal;
  3697. font-size:12px;
  3698. color:#606266;
  3699. }
  3700. #u1995 .text {
  3701. position:absolute;
  3702. align-self:center;
  3703. padding:2px 2px 2px 0px;
  3704. box-sizing:border-box;
  3705. width:100%;
  3706. }
  3707. #u1995_text {
  3708. border-width:0px;
  3709. word-wrap:break-word;
  3710. text-transform:none;
  3711. visibility:hidden;
  3712. }
  3713. #u1996_img {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:73px;
  3719. height:38px;
  3720. }
  3721. #u1996 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:438px;
  3725. top:114px;
  3726. width:73px;
  3727. height:38px;
  3728. display:flex;
  3729. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:12px;
  3733. color:#606266;
  3734. }
  3735. #u1996 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 2px 2px 0px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u1996_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u1997_img {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:73px;
  3754. height:38px;
  3755. }
  3756. #u1997 {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:511px;
  3760. top:114px;
  3761. width:73px;
  3762. height:38px;
  3763. display:flex;
  3764. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3765. font-weight:400;
  3766. font-style:normal;
  3767. font-size:12px;
  3768. color:#606266;
  3769. }
  3770. #u1997 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 2px 2px 0px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u1997_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. visibility:hidden;
  3782. }
  3783. #u1998_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:73px;
  3789. height:38px;
  3790. }
  3791. #u1998 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:584px;
  3795. top:114px;
  3796. width:73px;
  3797. height:38px;
  3798. display:flex;
  3799. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:12px;
  3803. color:#606266;
  3804. }
  3805. #u1998 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u1998_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u1999_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:73px;
  3824. height:38px;
  3825. }
  3826. #u1999 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:657px;
  3830. top:114px;
  3831. width:73px;
  3832. height:38px;
  3833. display:flex;
  3834. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:12px;
  3838. color:#606266;
  3839. }
  3840. #u1999 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:2px 2px 2px 0px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u1999_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. visibility:hidden;
  3852. }
  3853. #u2000_img {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:0px;
  3858. width:73px;
  3859. height:38px;
  3860. }
  3861. #u2000 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:730px;
  3865. top:114px;
  3866. width:73px;
  3867. height:38px;
  3868. display:flex;
  3869. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:12px;
  3873. color:#606266;
  3874. }
  3875. #u2000 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 0px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u2000_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u2001_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:85px;
  3894. height:38px;
  3895. }
  3896. #u2001 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:803px;
  3900. top:114px;
  3901. width:85px;
  3902. height:38px;
  3903. display:flex;
  3904. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:12px;
  3908. color:#606266;
  3909. }
  3910. #u2001 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 2px 2px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u2001_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u2002_img {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:98px;
  3929. height:38px;
  3930. }
  3931. #u2002 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:888px;
  3935. top:114px;
  3936. width:98px;
  3937. height:38px;
  3938. display:flex;
  3939. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:12px;
  3943. color:#606266;
  3944. }
  3945. #u2002 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 0px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u2002_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u2003_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:73px;
  3964. height:38px;
  3965. }
  3966. #u2003 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:986px;
  3970. top:114px;
  3971. width:73px;
  3972. height:38px;
  3973. display:flex;
  3974. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:12px;
  3978. color:#606266;
  3979. }
  3980. #u2003 .text {
  3981. position:absolute;
  3982. align-self:center;
  3983. padding:2px 2px 2px 0px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u2003_text {
  3988. border-width:0px;
  3989. word-wrap:break-word;
  3990. text-transform:none;
  3991. visibility:hidden;
  3992. }
  3993. #u2004_img {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:73px;
  3999. height:38px;
  4000. }
  4001. #u2004 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:1059px;
  4005. top:114px;
  4006. width:73px;
  4007. height:38px;
  4008. display:flex;
  4009. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:12px;
  4013. color:#606266;
  4014. }
  4015. #u2004 .text {
  4016. position:absolute;
  4017. align-self:center;
  4018. padding:2px 2px 2px 0px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u2004_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. visibility:hidden;
  4027. }
  4028. #u2005_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:88px;
  4034. height:38px;
  4035. }
  4036. #u2005 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:1132px;
  4040. top:114px;
  4041. width:88px;
  4042. height:38px;
  4043. display:flex;
  4044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:12px;
  4048. color:#02A7F0;
  4049. }
  4050. #u2005 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 0px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u2005_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u2006_img {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:73px;
  4069. height:38px;
  4070. }
  4071. #u2006 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:152px;
  4076. width:73px;
  4077. height:38px;
  4078. display:flex;
  4079. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4080. font-weight:400;
  4081. font-style:normal;
  4082. font-size:12px;
  4083. color:#606266;
  4084. }
  4085. #u2006 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 0px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u2006_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u2007_img {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:73px;
  4104. height:38px;
  4105. }
  4106. #u2007 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:73px;
  4110. top:152px;
  4111. width:73px;
  4112. height:38px;
  4113. display:flex;
  4114. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:12px;
  4118. color:#606266;
  4119. }
  4120. #u2007 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u2007_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u2008_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:73px;
  4139. height:38px;
  4140. }
  4141. #u2008 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:146px;
  4145. top:152px;
  4146. width:73px;
  4147. height:38px;
  4148. display:flex;
  4149. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. color:#606266;
  4154. }
  4155. #u2008 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 0px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u2008_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. visibility:hidden;
  4167. }
  4168. #u2009_img {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:73px;
  4174. height:38px;
  4175. }
  4176. #u2009 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:219px;
  4180. top:152px;
  4181. width:73px;
  4182. height:38px;
  4183. display:flex;
  4184. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4185. font-weight:400;
  4186. font-style:normal;
  4187. font-size:12px;
  4188. color:#606266;
  4189. }
  4190. #u2009 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 0px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u2009_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. visibility:hidden;
  4202. }
  4203. #u2010_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:73px;
  4209. height:38px;
  4210. }
  4211. #u2010 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:292px;
  4215. top:152px;
  4216. width:73px;
  4217. height:38px;
  4218. display:flex;
  4219. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. font-size:12px;
  4223. color:#606266;
  4224. }
  4225. #u2010 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:2px 2px 2px 0px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u2010_text {
  4233. border-width:0px;
  4234. word-wrap:break-word;
  4235. text-transform:none;
  4236. visibility:hidden;
  4237. }
  4238. #u2011_img {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:73px;
  4244. height:38px;
  4245. }
  4246. #u2011 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:365px;
  4250. top:152px;
  4251. width:73px;
  4252. height:38px;
  4253. display:flex;
  4254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:12px;
  4258. color:#606266;
  4259. }
  4260. #u2011 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 2px 2px 0px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u2011_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. visibility:hidden;
  4272. }
  4273. #u2012_img {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:73px;
  4279. height:38px;
  4280. }
  4281. #u2012 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:438px;
  4285. top:152px;
  4286. width:73px;
  4287. height:38px;
  4288. display:flex;
  4289. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:12px;
  4293. color:#606266;
  4294. }
  4295. #u2012 .text {
  4296. position:absolute;
  4297. align-self:center;
  4298. padding:2px 2px 2px 0px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u2012_text {
  4303. border-width:0px;
  4304. word-wrap:break-word;
  4305. text-transform:none;
  4306. visibility:hidden;
  4307. }
  4308. #u2013_img {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:73px;
  4314. height:38px;
  4315. }
  4316. #u2013 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:511px;
  4320. top:152px;
  4321. width:73px;
  4322. height:38px;
  4323. display:flex;
  4324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:12px;
  4328. color:#606266;
  4329. }
  4330. #u2013 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u2013_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. visibility:hidden;
  4342. }
  4343. #u2014_img {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:73px;
  4349. height:38px;
  4350. }
  4351. #u2014 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:584px;
  4355. top:152px;
  4356. width:73px;
  4357. height:38px;
  4358. display:flex;
  4359. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:12px;
  4363. color:#606266;
  4364. }
  4365. #u2014 .text {
  4366. position:absolute;
  4367. align-self:center;
  4368. padding:2px 2px 2px 0px;
  4369. box-sizing:border-box;
  4370. width:100%;
  4371. }
  4372. #u2014_text {
  4373. border-width:0px;
  4374. word-wrap:break-word;
  4375. text-transform:none;
  4376. visibility:hidden;
  4377. }
  4378. #u2015_img {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:73px;
  4384. height:38px;
  4385. }
  4386. #u2015 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:657px;
  4390. top:152px;
  4391. width:73px;
  4392. height:38px;
  4393. display:flex;
  4394. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:12px;
  4398. color:#606266;
  4399. }
  4400. #u2015 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:2px 2px 2px 0px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u2015_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. visibility:hidden;
  4412. }
  4413. #u2016_img {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:73px;
  4419. height:38px;
  4420. }
  4421. #u2016 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:730px;
  4425. top:152px;
  4426. width:73px;
  4427. height:38px;
  4428. display:flex;
  4429. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:12px;
  4433. color:#606266;
  4434. }
  4435. #u2016 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 2px 2px 0px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u2016_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. visibility:hidden;
  4447. }
  4448. #u2017_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:85px;
  4454. height:38px;
  4455. }
  4456. #u2017 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:803px;
  4460. top:152px;
  4461. width:85px;
  4462. height:38px;
  4463. display:flex;
  4464. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:12px;
  4468. color:#606266;
  4469. }
  4470. #u2017 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 2px 2px 0px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u2017_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. visibility:hidden;
  4482. }
  4483. #u2018_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:98px;
  4489. height:38px;
  4490. }
  4491. #u2018 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:888px;
  4495. top:152px;
  4496. width:98px;
  4497. height:38px;
  4498. display:flex;
  4499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:12px;
  4503. color:#606266;
  4504. }
  4505. #u2018 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 0px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u2018_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u2019_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:73px;
  4524. height:38px;
  4525. }
  4526. #u2019 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:986px;
  4530. top:152px;
  4531. width:73px;
  4532. height:38px;
  4533. display:flex;
  4534. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:12px;
  4538. color:#606266;
  4539. }
  4540. #u2019 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 2px 2px 0px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u2019_text {
  4548. border-width:0px;
  4549. word-wrap:break-word;
  4550. text-transform:none;
  4551. visibility:hidden;
  4552. }
  4553. #u2020_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:73px;
  4559. height:38px;
  4560. }
  4561. #u2020 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:1059px;
  4565. top:152px;
  4566. width:73px;
  4567. height:38px;
  4568. display:flex;
  4569. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:12px;
  4573. color:#606266;
  4574. }
  4575. #u2020 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u2020_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u2021_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:88px;
  4594. height:38px;
  4595. }
  4596. #u2021 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:1132px;
  4600. top:152px;
  4601. width:88px;
  4602. height:38px;
  4603. display:flex;
  4604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:12px;
  4608. color:#02A7F0;
  4609. }
  4610. #u2021 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:2px 2px 2px 0px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u2021_text {
  4618. border-width:0px;
  4619. word-wrap:break-word;
  4620. text-transform:none;
  4621. visibility:hidden;
  4622. }
  4623. #u2022_img {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:73px;
  4629. height:35px;
  4630. }
  4631. #u2022 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:190px;
  4636. width:73px;
  4637. height:35px;
  4638. display:flex;
  4639. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:12px;
  4643. color:#606266;
  4644. }
  4645. #u2022 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 0px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u2022_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. visibility:hidden;
  4657. }
  4658. #u2023_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:73px;
  4664. height:35px;
  4665. }
  4666. #u2023 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:73px;
  4670. top:190px;
  4671. width:73px;
  4672. height:35px;
  4673. display:flex;
  4674. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:12px;
  4678. color:#606266;
  4679. }
  4680. #u2023 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 2px 2px 0px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u2023_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. visibility:hidden;
  4692. }
  4693. #u2024_img {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:73px;
  4699. height:35px;
  4700. }
  4701. #u2024 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:146px;
  4705. top:190px;
  4706. width:73px;
  4707. height:35px;
  4708. display:flex;
  4709. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:12px;
  4713. color:#606266;
  4714. }
  4715. #u2024 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:2px 2px 2px 0px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u2024_text {
  4723. border-width:0px;
  4724. word-wrap:break-word;
  4725. text-transform:none;
  4726. visibility:hidden;
  4727. }
  4728. #u2025_img {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:73px;
  4734. height:35px;
  4735. }
  4736. #u2025 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:219px;
  4740. top:190px;
  4741. width:73px;
  4742. height:35px;
  4743. display:flex;
  4744. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:12px;
  4748. color:#606266;
  4749. }
  4750. #u2025 .text {
  4751. position:absolute;
  4752. align-self:center;
  4753. padding:2px 2px 2px 0px;
  4754. box-sizing:border-box;
  4755. width:100%;
  4756. }
  4757. #u2025_text {
  4758. border-width:0px;
  4759. word-wrap:break-word;
  4760. text-transform:none;
  4761. visibility:hidden;
  4762. }
  4763. #u2026_img {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:73px;
  4769. height:35px;
  4770. }
  4771. #u2026 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:292px;
  4775. top:190px;
  4776. width:73px;
  4777. height:35px;
  4778. display:flex;
  4779. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:12px;
  4783. color:#606266;
  4784. }
  4785. #u2026 .text {
  4786. position:absolute;
  4787. align-self:center;
  4788. padding:2px 2px 2px 0px;
  4789. box-sizing:border-box;
  4790. width:100%;
  4791. }
  4792. #u2026_text {
  4793. border-width:0px;
  4794. word-wrap:break-word;
  4795. text-transform:none;
  4796. visibility:hidden;
  4797. }
  4798. #u2027_img {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:73px;
  4804. height:35px;
  4805. }
  4806. #u2027 {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:365px;
  4810. top:190px;
  4811. width:73px;
  4812. height:35px;
  4813. display:flex;
  4814. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:12px;
  4818. color:#606266;
  4819. }
  4820. #u2027 .text {
  4821. position:absolute;
  4822. align-self:center;
  4823. padding:2px 2px 2px 0px;
  4824. box-sizing:border-box;
  4825. width:100%;
  4826. }
  4827. #u2027_text {
  4828. border-width:0px;
  4829. word-wrap:break-word;
  4830. text-transform:none;
  4831. visibility:hidden;
  4832. }
  4833. #u2028_img {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:73px;
  4839. height:35px;
  4840. }
  4841. #u2028 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:438px;
  4845. top:190px;
  4846. width:73px;
  4847. height:35px;
  4848. display:flex;
  4849. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:12px;
  4853. color:#606266;
  4854. }
  4855. #u2028 .text {
  4856. position:absolute;
  4857. align-self:center;
  4858. padding:2px 2px 2px 0px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u2028_text {
  4863. border-width:0px;
  4864. word-wrap:break-word;
  4865. text-transform:none;
  4866. visibility:hidden;
  4867. }
  4868. #u2029_img {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:73px;
  4874. height:35px;
  4875. }
  4876. #u2029 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:511px;
  4880. top:190px;
  4881. width:73px;
  4882. height:35px;
  4883. display:flex;
  4884. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:12px;
  4888. color:#606266;
  4889. }
  4890. #u2029 .text {
  4891. position:absolute;
  4892. align-self:center;
  4893. padding:2px 2px 2px 0px;
  4894. box-sizing:border-box;
  4895. width:100%;
  4896. }
  4897. #u2029_text {
  4898. border-width:0px;
  4899. word-wrap:break-word;
  4900. text-transform:none;
  4901. visibility:hidden;
  4902. }
  4903. #u2030_img {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:73px;
  4909. height:35px;
  4910. }
  4911. #u2030 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:584px;
  4915. top:190px;
  4916. width:73px;
  4917. height:35px;
  4918. display:flex;
  4919. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4920. font-weight:400;
  4921. font-style:normal;
  4922. font-size:12px;
  4923. color:#606266;
  4924. }
  4925. #u2030 .text {
  4926. position:absolute;
  4927. align-self:center;
  4928. padding:2px 2px 2px 0px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u2030_text {
  4933. border-width:0px;
  4934. word-wrap:break-word;
  4935. text-transform:none;
  4936. visibility:hidden;
  4937. }
  4938. #u2031_img {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:73px;
  4944. height:35px;
  4945. }
  4946. #u2031 {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:657px;
  4950. top:190px;
  4951. width:73px;
  4952. height:35px;
  4953. display:flex;
  4954. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4955. font-weight:400;
  4956. font-style:normal;
  4957. font-size:12px;
  4958. color:#606266;
  4959. }
  4960. #u2031 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:2px 2px 2px 0px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u2031_text {
  4968. border-width:0px;
  4969. word-wrap:break-word;
  4970. text-transform:none;
  4971. visibility:hidden;
  4972. }
  4973. #u2032_img {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:73px;
  4979. height:35px;
  4980. }
  4981. #u2032 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:730px;
  4985. top:190px;
  4986. width:73px;
  4987. height:35px;
  4988. display:flex;
  4989. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:12px;
  4993. color:#606266;
  4994. }
  4995. #u2032 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 0px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u2032_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. visibility:hidden;
  5007. }
  5008. #u2033_img {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:85px;
  5014. height:35px;
  5015. }
  5016. #u2033 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:803px;
  5020. top:190px;
  5021. width:85px;
  5022. height:35px;
  5023. display:flex;
  5024. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:12px;
  5028. color:#606266;
  5029. }
  5030. #u2033 .text {
  5031. position:absolute;
  5032. align-self:center;
  5033. padding:2px 2px 2px 0px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u2033_text {
  5038. border-width:0px;
  5039. word-wrap:break-word;
  5040. text-transform:none;
  5041. visibility:hidden;
  5042. }
  5043. #u2034_img {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:98px;
  5049. height:35px;
  5050. }
  5051. #u2034 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:888px;
  5055. top:190px;
  5056. width:98px;
  5057. height:35px;
  5058. display:flex;
  5059. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5060. font-weight:400;
  5061. font-style:normal;
  5062. font-size:12px;
  5063. color:#606266;
  5064. }
  5065. #u2034 .text {
  5066. position:absolute;
  5067. align-self:center;
  5068. padding:2px 2px 2px 0px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u2034_text {
  5073. border-width:0px;
  5074. word-wrap:break-word;
  5075. text-transform:none;
  5076. visibility:hidden;
  5077. }
  5078. #u2035_img {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:73px;
  5084. height:35px;
  5085. }
  5086. #u2035 {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:986px;
  5090. top:190px;
  5091. width:73px;
  5092. height:35px;
  5093. display:flex;
  5094. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5095. font-weight:400;
  5096. font-style:normal;
  5097. font-size:12px;
  5098. color:#606266;
  5099. }
  5100. #u2035 .text {
  5101. position:absolute;
  5102. align-self:center;
  5103. padding:2px 2px 2px 0px;
  5104. box-sizing:border-box;
  5105. width:100%;
  5106. }
  5107. #u2035_text {
  5108. border-width:0px;
  5109. word-wrap:break-word;
  5110. text-transform:none;
  5111. visibility:hidden;
  5112. }
  5113. #u2036_img {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:73px;
  5119. height:35px;
  5120. }
  5121. #u2036 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:1059px;
  5125. top:190px;
  5126. width:73px;
  5127. height:35px;
  5128. display:flex;
  5129. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:12px;
  5133. color:#606266;
  5134. }
  5135. #u2036 .text {
  5136. position:absolute;
  5137. align-self:center;
  5138. padding:2px 2px 2px 0px;
  5139. box-sizing:border-box;
  5140. width:100%;
  5141. }
  5142. #u2036_text {
  5143. border-width:0px;
  5144. word-wrap:break-word;
  5145. text-transform:none;
  5146. visibility:hidden;
  5147. }
  5148. #u2037_img {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:88px;
  5154. height:35px;
  5155. }
  5156. #u2037 {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:1132px;
  5160. top:190px;
  5161. width:88px;
  5162. height:35px;
  5163. display:flex;
  5164. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5165. font-weight:400;
  5166. font-style:normal;
  5167. font-size:12px;
  5168. color:#606266;
  5169. }
  5170. #u2037 .text {
  5171. position:absolute;
  5172. align-self:center;
  5173. padding:2px 2px 2px 0px;
  5174. box-sizing:border-box;
  5175. width:100%;
  5176. }
  5177. #u2037_text {
  5178. border-width:0px;
  5179. word-wrap:break-word;
  5180. text-transform:none;
  5181. visibility:hidden;
  5182. }
  5183. #u2038_img {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:73px;
  5189. height:34px;
  5190. }
  5191. #u2038 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:225px;
  5196. width:73px;
  5197. height:34px;
  5198. display:flex;
  5199. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:12px;
  5203. color:#606266;
  5204. }
  5205. #u2038 .text {
  5206. position:absolute;
  5207. align-self:center;
  5208. padding:2px 2px 2px 0px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u2038_text {
  5213. border-width:0px;
  5214. word-wrap:break-word;
  5215. text-transform:none;
  5216. visibility:hidden;
  5217. }
  5218. #u2039_img {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:0px;
  5222. top:0px;
  5223. width:73px;
  5224. height:34px;
  5225. }
  5226. #u2039 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:73px;
  5230. top:225px;
  5231. width:73px;
  5232. height:34px;
  5233. display:flex;
  5234. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5235. font-weight:400;
  5236. font-style:normal;
  5237. font-size:12px;
  5238. color:#606266;
  5239. }
  5240. #u2039 .text {
  5241. position:absolute;
  5242. align-self:center;
  5243. padding:2px 2px 2px 0px;
  5244. box-sizing:border-box;
  5245. width:100%;
  5246. }
  5247. #u2039_text {
  5248. border-width:0px;
  5249. word-wrap:break-word;
  5250. text-transform:none;
  5251. visibility:hidden;
  5252. }
  5253. #u2040_img {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:73px;
  5259. height:34px;
  5260. }
  5261. #u2040 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:146px;
  5265. top:225px;
  5266. width:73px;
  5267. height:34px;
  5268. display:flex;
  5269. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. font-size:12px;
  5273. color:#606266;
  5274. }
  5275. #u2040 .text {
  5276. position:absolute;
  5277. align-self:center;
  5278. padding:2px 2px 2px 0px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u2040_text {
  5283. border-width:0px;
  5284. word-wrap:break-word;
  5285. text-transform:none;
  5286. visibility:hidden;
  5287. }
  5288. #u2041_img {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:73px;
  5294. height:34px;
  5295. }
  5296. #u2041 {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:219px;
  5300. top:225px;
  5301. width:73px;
  5302. height:34px;
  5303. display:flex;
  5304. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5305. font-weight:400;
  5306. font-style:normal;
  5307. font-size:12px;
  5308. color:#606266;
  5309. }
  5310. #u2041 .text {
  5311. position:absolute;
  5312. align-self:center;
  5313. padding:2px 2px 2px 0px;
  5314. box-sizing:border-box;
  5315. width:100%;
  5316. }
  5317. #u2041_text {
  5318. border-width:0px;
  5319. word-wrap:break-word;
  5320. text-transform:none;
  5321. visibility:hidden;
  5322. }
  5323. #u2042_img {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:73px;
  5329. height:34px;
  5330. }
  5331. #u2042 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:292px;
  5335. top:225px;
  5336. width:73px;
  5337. height:34px;
  5338. display:flex;
  5339. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. font-size:12px;
  5343. color:#606266;
  5344. }
  5345. #u2042 .text {
  5346. position:absolute;
  5347. align-self:center;
  5348. padding:2px 2px 2px 0px;
  5349. box-sizing:border-box;
  5350. width:100%;
  5351. }
  5352. #u2042_text {
  5353. border-width:0px;
  5354. word-wrap:break-word;
  5355. text-transform:none;
  5356. visibility:hidden;
  5357. }
  5358. #u2043_img {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:73px;
  5364. height:34px;
  5365. }
  5366. #u2043 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:365px;
  5370. top:225px;
  5371. width:73px;
  5372. height:34px;
  5373. display:flex;
  5374. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:12px;
  5378. color:#606266;
  5379. }
  5380. #u2043 .text {
  5381. position:absolute;
  5382. align-self:center;
  5383. padding:2px 2px 2px 0px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u2043_text {
  5388. border-width:0px;
  5389. word-wrap:break-word;
  5390. text-transform:none;
  5391. visibility:hidden;
  5392. }
  5393. #u2044_img {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:73px;
  5399. height:34px;
  5400. }
  5401. #u2044 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:438px;
  5405. top:225px;
  5406. width:73px;
  5407. height:34px;
  5408. display:flex;
  5409. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:12px;
  5413. color:#606266;
  5414. }
  5415. #u2044 .text {
  5416. position:absolute;
  5417. align-self:center;
  5418. padding:2px 2px 2px 0px;
  5419. box-sizing:border-box;
  5420. width:100%;
  5421. }
  5422. #u2044_text {
  5423. border-width:0px;
  5424. word-wrap:break-word;
  5425. text-transform:none;
  5426. visibility:hidden;
  5427. }
  5428. #u2045_img {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:73px;
  5434. height:34px;
  5435. }
  5436. #u2045 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:511px;
  5440. top:225px;
  5441. width:73px;
  5442. height:34px;
  5443. display:flex;
  5444. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:12px;
  5448. color:#606266;
  5449. }
  5450. #u2045 .text {
  5451. position:absolute;
  5452. align-self:center;
  5453. padding:2px 2px 2px 0px;
  5454. box-sizing:border-box;
  5455. width:100%;
  5456. }
  5457. #u2045_text {
  5458. border-width:0px;
  5459. word-wrap:break-word;
  5460. text-transform:none;
  5461. visibility:hidden;
  5462. }
  5463. #u2046_img {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:73px;
  5469. height:34px;
  5470. }
  5471. #u2046 {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:584px;
  5475. top:225px;
  5476. width:73px;
  5477. height:34px;
  5478. display:flex;
  5479. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5480. font-weight:400;
  5481. font-style:normal;
  5482. font-size:12px;
  5483. color:#606266;
  5484. }
  5485. #u2046 .text {
  5486. position:absolute;
  5487. align-self:center;
  5488. padding:2px 2px 2px 0px;
  5489. box-sizing:border-box;
  5490. width:100%;
  5491. }
  5492. #u2046_text {
  5493. border-width:0px;
  5494. word-wrap:break-word;
  5495. text-transform:none;
  5496. visibility:hidden;
  5497. }
  5498. #u2047_img {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:73px;
  5504. height:34px;
  5505. }
  5506. #u2047 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:657px;
  5510. top:225px;
  5511. width:73px;
  5512. height:34px;
  5513. display:flex;
  5514. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:12px;
  5518. color:#606266;
  5519. }
  5520. #u2047 .text {
  5521. position:absolute;
  5522. align-self:center;
  5523. padding:2px 2px 2px 0px;
  5524. box-sizing:border-box;
  5525. width:100%;
  5526. }
  5527. #u2047_text {
  5528. border-width:0px;
  5529. word-wrap:break-word;
  5530. text-transform:none;
  5531. visibility:hidden;
  5532. }
  5533. #u2048_img {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:73px;
  5539. height:34px;
  5540. }
  5541. #u2048 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:730px;
  5545. top:225px;
  5546. width:73px;
  5547. height:34px;
  5548. display:flex;
  5549. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5550. font-weight:400;
  5551. font-style:normal;
  5552. font-size:12px;
  5553. color:#606266;
  5554. }
  5555. #u2048 .text {
  5556. position:absolute;
  5557. align-self:center;
  5558. padding:2px 2px 2px 0px;
  5559. box-sizing:border-box;
  5560. width:100%;
  5561. }
  5562. #u2048_text {
  5563. border-width:0px;
  5564. word-wrap:break-word;
  5565. text-transform:none;
  5566. visibility:hidden;
  5567. }
  5568. #u2049_img {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:85px;
  5574. height:34px;
  5575. }
  5576. #u2049 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:803px;
  5580. top:225px;
  5581. width:85px;
  5582. height:34px;
  5583. display:flex;
  5584. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:12px;
  5588. color:#606266;
  5589. }
  5590. #u2049 .text {
  5591. position:absolute;
  5592. align-self:center;
  5593. padding:2px 2px 2px 0px;
  5594. box-sizing:border-box;
  5595. width:100%;
  5596. }
  5597. #u2049_text {
  5598. border-width:0px;
  5599. word-wrap:break-word;
  5600. text-transform:none;
  5601. visibility:hidden;
  5602. }
  5603. #u2050_img {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:98px;
  5609. height:34px;
  5610. }
  5611. #u2050 {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:888px;
  5615. top:225px;
  5616. width:98px;
  5617. height:34px;
  5618. display:flex;
  5619. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:12px;
  5623. color:#606266;
  5624. }
  5625. #u2050 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:2px 2px 2px 0px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u2050_text {
  5633. border-width:0px;
  5634. word-wrap:break-word;
  5635. text-transform:none;
  5636. visibility:hidden;
  5637. }
  5638. #u2051_img {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:73px;
  5644. height:34px;
  5645. }
  5646. #u2051 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:986px;
  5650. top:225px;
  5651. width:73px;
  5652. height:34px;
  5653. display:flex;
  5654. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:12px;
  5658. color:#606266;
  5659. }
  5660. #u2051 .text {
  5661. position:absolute;
  5662. align-self:center;
  5663. padding:2px 2px 2px 0px;
  5664. box-sizing:border-box;
  5665. width:100%;
  5666. }
  5667. #u2051_text {
  5668. border-width:0px;
  5669. word-wrap:break-word;
  5670. text-transform:none;
  5671. visibility:hidden;
  5672. }
  5673. #u2052_img {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:73px;
  5679. height:34px;
  5680. }
  5681. #u2052 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:1059px;
  5685. top:225px;
  5686. width:73px;
  5687. height:34px;
  5688. display:flex;
  5689. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5690. font-weight:400;
  5691. font-style:normal;
  5692. font-size:12px;
  5693. color:#606266;
  5694. }
  5695. #u2052 .text {
  5696. position:absolute;
  5697. align-self:center;
  5698. padding:2px 2px 2px 0px;
  5699. box-sizing:border-box;
  5700. width:100%;
  5701. }
  5702. #u2052_text {
  5703. border-width:0px;
  5704. word-wrap:break-word;
  5705. text-transform:none;
  5706. visibility:hidden;
  5707. }
  5708. #u2053_img {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:88px;
  5714. height:34px;
  5715. }
  5716. #u2053 {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:1132px;
  5720. top:225px;
  5721. width:88px;
  5722. height:34px;
  5723. display:flex;
  5724. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:12px;
  5728. color:#606266;
  5729. }
  5730. #u2053 .text {
  5731. position:absolute;
  5732. align-self:center;
  5733. padding:2px 2px 2px 0px;
  5734. box-sizing:border-box;
  5735. width:100%;
  5736. }
  5737. #u2053_text {
  5738. border-width:0px;
  5739. word-wrap:break-word;
  5740. text-transform:none;
  5741. visibility:hidden;
  5742. }
  5743. #u2054_img {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:73px;
  5749. height:32px;
  5750. }
  5751. #u2054 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:259px;
  5756. width:73px;
  5757. height:32px;
  5758. display:flex;
  5759. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:12px;
  5763. color:#606266;
  5764. }
  5765. #u2054 .text {
  5766. position:absolute;
  5767. align-self:center;
  5768. padding:2px 2px 2px 0px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u2054_text {
  5773. border-width:0px;
  5774. word-wrap:break-word;
  5775. text-transform:none;
  5776. visibility:hidden;
  5777. }
  5778. #u2055_img {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:73px;
  5784. height:32px;
  5785. }
  5786. #u2055 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:73px;
  5790. top:259px;
  5791. width:73px;
  5792. height:32px;
  5793. display:flex;
  5794. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:12px;
  5798. color:#606266;
  5799. }
  5800. #u2055 .text {
  5801. position:absolute;
  5802. align-self:center;
  5803. padding:2px 2px 2px 0px;
  5804. box-sizing:border-box;
  5805. width:100%;
  5806. }
  5807. #u2055_text {
  5808. border-width:0px;
  5809. word-wrap:break-word;
  5810. text-transform:none;
  5811. visibility:hidden;
  5812. }
  5813. #u2056_img {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:73px;
  5819. height:32px;
  5820. }
  5821. #u2056 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:146px;
  5825. top:259px;
  5826. width:73px;
  5827. height:32px;
  5828. display:flex;
  5829. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:12px;
  5833. color:#606266;
  5834. }
  5835. #u2056 .text {
  5836. position:absolute;
  5837. align-self:center;
  5838. padding:2px 2px 2px 0px;
  5839. box-sizing:border-box;
  5840. width:100%;
  5841. }
  5842. #u2056_text {
  5843. border-width:0px;
  5844. word-wrap:break-word;
  5845. text-transform:none;
  5846. visibility:hidden;
  5847. }
  5848. #u2057_img {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:73px;
  5854. height:32px;
  5855. }
  5856. #u2057 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:219px;
  5860. top:259px;
  5861. width:73px;
  5862. height:32px;
  5863. display:flex;
  5864. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:12px;
  5868. color:#606266;
  5869. }
  5870. #u2057 .text {
  5871. position:absolute;
  5872. align-self:center;
  5873. padding:2px 2px 2px 0px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u2057_text {
  5878. border-width:0px;
  5879. word-wrap:break-word;
  5880. text-transform:none;
  5881. visibility:hidden;
  5882. }
  5883. #u2058_img {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:73px;
  5889. height:32px;
  5890. }
  5891. #u2058 {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:292px;
  5895. top:259px;
  5896. width:73px;
  5897. height:32px;
  5898. display:flex;
  5899. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:12px;
  5903. color:#606266;
  5904. }
  5905. #u2058 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:2px 2px 2px 0px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u2058_text {
  5913. border-width:0px;
  5914. word-wrap:break-word;
  5915. text-transform:none;
  5916. visibility:hidden;
  5917. }
  5918. #u2059_img {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:73px;
  5924. height:32px;
  5925. }
  5926. #u2059 {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:365px;
  5930. top:259px;
  5931. width:73px;
  5932. height:32px;
  5933. display:flex;
  5934. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5935. font-weight:400;
  5936. font-style:normal;
  5937. font-size:12px;
  5938. color:#606266;
  5939. }
  5940. #u2059 .text {
  5941. position:absolute;
  5942. align-self:center;
  5943. padding:2px 2px 2px 0px;
  5944. box-sizing:border-box;
  5945. width:100%;
  5946. }
  5947. #u2059_text {
  5948. border-width:0px;
  5949. word-wrap:break-word;
  5950. text-transform:none;
  5951. visibility:hidden;
  5952. }
  5953. #u2060_img {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:73px;
  5959. height:32px;
  5960. }
  5961. #u2060 {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:438px;
  5965. top:259px;
  5966. width:73px;
  5967. height:32px;
  5968. display:flex;
  5969. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:12px;
  5973. color:#606266;
  5974. }
  5975. #u2060 .text {
  5976. position:absolute;
  5977. align-self:center;
  5978. padding:2px 2px 2px 0px;
  5979. box-sizing:border-box;
  5980. width:100%;
  5981. }
  5982. #u2060_text {
  5983. border-width:0px;
  5984. word-wrap:break-word;
  5985. text-transform:none;
  5986. visibility:hidden;
  5987. }
  5988. #u2061_img {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:73px;
  5994. height:32px;
  5995. }
  5996. #u2061 {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:511px;
  6000. top:259px;
  6001. width:73px;
  6002. height:32px;
  6003. display:flex;
  6004. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:12px;
  6008. color:#606266;
  6009. }
  6010. #u2061 .text {
  6011. position:absolute;
  6012. align-self:center;
  6013. padding:2px 2px 2px 0px;
  6014. box-sizing:border-box;
  6015. width:100%;
  6016. }
  6017. #u2061_text {
  6018. border-width:0px;
  6019. word-wrap:break-word;
  6020. text-transform:none;
  6021. visibility:hidden;
  6022. }
  6023. #u2062_img {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:73px;
  6029. height:32px;
  6030. }
  6031. #u2062 {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:584px;
  6035. top:259px;
  6036. width:73px;
  6037. height:32px;
  6038. display:flex;
  6039. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:12px;
  6043. color:#606266;
  6044. }
  6045. #u2062 .text {
  6046. position:absolute;
  6047. align-self:center;
  6048. padding:2px 2px 2px 0px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u2062_text {
  6053. border-width:0px;
  6054. word-wrap:break-word;
  6055. text-transform:none;
  6056. visibility:hidden;
  6057. }
  6058. #u2063_img {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:0px;
  6062. top:0px;
  6063. width:73px;
  6064. height:32px;
  6065. }
  6066. #u2063 {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:657px;
  6070. top:259px;
  6071. width:73px;
  6072. height:32px;
  6073. display:flex;
  6074. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:12px;
  6078. color:#606266;
  6079. }
  6080. #u2063 .text {
  6081. position:absolute;
  6082. align-self:center;
  6083. padding:2px 2px 2px 0px;
  6084. box-sizing:border-box;
  6085. width:100%;
  6086. }
  6087. #u2063_text {
  6088. border-width:0px;
  6089. word-wrap:break-word;
  6090. text-transform:none;
  6091. visibility:hidden;
  6092. }
  6093. #u2064_img {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:0px;
  6097. top:0px;
  6098. width:73px;
  6099. height:32px;
  6100. }
  6101. #u2064 {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:730px;
  6105. top:259px;
  6106. width:73px;
  6107. height:32px;
  6108. display:flex;
  6109. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6110. font-weight:400;
  6111. font-style:normal;
  6112. font-size:12px;
  6113. color:#606266;
  6114. }
  6115. #u2064 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:2px 2px 2px 0px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u2064_text {
  6123. border-width:0px;
  6124. word-wrap:break-word;
  6125. text-transform:none;
  6126. visibility:hidden;
  6127. }
  6128. #u2065_img {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:85px;
  6134. height:32px;
  6135. }
  6136. #u2065 {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:803px;
  6140. top:259px;
  6141. width:85px;
  6142. height:32px;
  6143. display:flex;
  6144. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:12px;
  6148. color:#606266;
  6149. }
  6150. #u2065 .text {
  6151. position:absolute;
  6152. align-self:center;
  6153. padding:2px 2px 2px 0px;
  6154. box-sizing:border-box;
  6155. width:100%;
  6156. }
  6157. #u2065_text {
  6158. border-width:0px;
  6159. word-wrap:break-word;
  6160. text-transform:none;
  6161. visibility:hidden;
  6162. }
  6163. #u2066_img {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:98px;
  6169. height:32px;
  6170. }
  6171. #u2066 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:888px;
  6175. top:259px;
  6176. width:98px;
  6177. height:32px;
  6178. display:flex;
  6179. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:12px;
  6183. color:#606266;
  6184. }
  6185. #u2066 .text {
  6186. position:absolute;
  6187. align-self:center;
  6188. padding:2px 2px 2px 0px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u2066_text {
  6193. border-width:0px;
  6194. word-wrap:break-word;
  6195. text-transform:none;
  6196. visibility:hidden;
  6197. }
  6198. #u2067_img {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:73px;
  6204. height:32px;
  6205. }
  6206. #u2067 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:986px;
  6210. top:259px;
  6211. width:73px;
  6212. height:32px;
  6213. display:flex;
  6214. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:12px;
  6218. color:#606266;
  6219. }
  6220. #u2067 .text {
  6221. position:absolute;
  6222. align-self:center;
  6223. padding:2px 2px 2px 0px;
  6224. box-sizing:border-box;
  6225. width:100%;
  6226. }
  6227. #u2067_text {
  6228. border-width:0px;
  6229. word-wrap:break-word;
  6230. text-transform:none;
  6231. visibility:hidden;
  6232. }
  6233. #u2068_img {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:73px;
  6239. height:32px;
  6240. }
  6241. #u2068 {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:1059px;
  6245. top:259px;
  6246. width:73px;
  6247. height:32px;
  6248. display:flex;
  6249. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:12px;
  6253. color:#606266;
  6254. }
  6255. #u2068 .text {
  6256. position:absolute;
  6257. align-self:center;
  6258. padding:2px 2px 2px 0px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u2068_text {
  6263. border-width:0px;
  6264. word-wrap:break-word;
  6265. text-transform:none;
  6266. visibility:hidden;
  6267. }
  6268. #u2069_img {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:88px;
  6274. height:32px;
  6275. }
  6276. #u2069 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:1132px;
  6280. top:259px;
  6281. width:88px;
  6282. height:32px;
  6283. display:flex;
  6284. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:12px;
  6288. color:#606266;
  6289. }
  6290. #u2069 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:2px 2px 2px 0px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u2069_text {
  6298. border-width:0px;
  6299. word-wrap:break-word;
  6300. text-transform:none;
  6301. visibility:hidden;
  6302. }
  6303. #u2070_img {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:73px;
  6309. height:30px;
  6310. }
  6311. #u2070 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:0px;
  6315. top:291px;
  6316. width:73px;
  6317. height:30px;
  6318. display:flex;
  6319. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6320. font-weight:400;
  6321. font-style:normal;
  6322. font-size:12px;
  6323. color:#606266;
  6324. }
  6325. #u2070 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 0px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u2070_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u2071_img {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:73px;
  6344. height:30px;
  6345. }
  6346. #u2071 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:73px;
  6350. top:291px;
  6351. width:73px;
  6352. height:30px;
  6353. display:flex;
  6354. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:12px;
  6358. color:#606266;
  6359. }
  6360. #u2071 .text {
  6361. position:absolute;
  6362. align-self:center;
  6363. padding:2px 2px 2px 0px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u2071_text {
  6368. border-width:0px;
  6369. word-wrap:break-word;
  6370. text-transform:none;
  6371. visibility:hidden;
  6372. }
  6373. #u2072_img {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:73px;
  6379. height:30px;
  6380. }
  6381. #u2072 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:146px;
  6385. top:291px;
  6386. width:73px;
  6387. height:30px;
  6388. display:flex;
  6389. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6390. font-weight:400;
  6391. font-style:normal;
  6392. font-size:12px;
  6393. color:#606266;
  6394. }
  6395. #u2072 .text {
  6396. position:absolute;
  6397. align-self:center;
  6398. padding:2px 2px 2px 0px;
  6399. box-sizing:border-box;
  6400. width:100%;
  6401. }
  6402. #u2072_text {
  6403. border-width:0px;
  6404. word-wrap:break-word;
  6405. text-transform:none;
  6406. visibility:hidden;
  6407. }
  6408. #u2073_img {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:73px;
  6414. height:30px;
  6415. }
  6416. #u2073 {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:219px;
  6420. top:291px;
  6421. width:73px;
  6422. height:30px;
  6423. display:flex;
  6424. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:12px;
  6428. color:#606266;
  6429. }
  6430. #u2073 .text {
  6431. position:absolute;
  6432. align-self:center;
  6433. padding:2px 2px 2px 0px;
  6434. box-sizing:border-box;
  6435. width:100%;
  6436. }
  6437. #u2073_text {
  6438. border-width:0px;
  6439. word-wrap:break-word;
  6440. text-transform:none;
  6441. visibility:hidden;
  6442. }
  6443. #u2074_img {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:73px;
  6449. height:30px;
  6450. }
  6451. #u2074 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:292px;
  6455. top:291px;
  6456. width:73px;
  6457. height:30px;
  6458. display:flex;
  6459. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:12px;
  6463. color:#606266;
  6464. }
  6465. #u2074 .text {
  6466. position:absolute;
  6467. align-self:center;
  6468. padding:2px 2px 2px 0px;
  6469. box-sizing:border-box;
  6470. width:100%;
  6471. }
  6472. #u2074_text {
  6473. border-width:0px;
  6474. word-wrap:break-word;
  6475. text-transform:none;
  6476. visibility:hidden;
  6477. }
  6478. #u2075_img {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:0px;
  6482. top:0px;
  6483. width:73px;
  6484. height:30px;
  6485. }
  6486. #u2075 {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:365px;
  6490. top:291px;
  6491. width:73px;
  6492. height:30px;
  6493. display:flex;
  6494. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6495. font-weight:400;
  6496. font-style:normal;
  6497. font-size:12px;
  6498. color:#606266;
  6499. }
  6500. #u2075 .text {
  6501. position:absolute;
  6502. align-self:center;
  6503. padding:2px 2px 2px 0px;
  6504. box-sizing:border-box;
  6505. width:100%;
  6506. }
  6507. #u2075_text {
  6508. border-width:0px;
  6509. word-wrap:break-word;
  6510. text-transform:none;
  6511. visibility:hidden;
  6512. }
  6513. #u2076_img {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:73px;
  6519. height:30px;
  6520. }
  6521. #u2076 {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:438px;
  6525. top:291px;
  6526. width:73px;
  6527. height:30px;
  6528. display:flex;
  6529. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6530. font-weight:400;
  6531. font-style:normal;
  6532. font-size:12px;
  6533. color:#606266;
  6534. }
  6535. #u2076 .text {
  6536. position:absolute;
  6537. align-self:center;
  6538. padding:2px 2px 2px 0px;
  6539. box-sizing:border-box;
  6540. width:100%;
  6541. }
  6542. #u2076_text {
  6543. border-width:0px;
  6544. word-wrap:break-word;
  6545. text-transform:none;
  6546. visibility:hidden;
  6547. }
  6548. #u2077_img {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:73px;
  6554. height:30px;
  6555. }
  6556. #u2077 {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:511px;
  6560. top:291px;
  6561. width:73px;
  6562. height:30px;
  6563. display:flex;
  6564. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6565. font-weight:400;
  6566. font-style:normal;
  6567. font-size:12px;
  6568. color:#606266;
  6569. }
  6570. #u2077 .text {
  6571. position:absolute;
  6572. align-self:center;
  6573. padding:2px 2px 2px 0px;
  6574. box-sizing:border-box;
  6575. width:100%;
  6576. }
  6577. #u2077_text {
  6578. border-width:0px;
  6579. word-wrap:break-word;
  6580. text-transform:none;
  6581. visibility:hidden;
  6582. }
  6583. #u2078_img {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:73px;
  6589. height:30px;
  6590. }
  6591. #u2078 {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:584px;
  6595. top:291px;
  6596. width:73px;
  6597. height:30px;
  6598. display:flex;
  6599. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:12px;
  6603. color:#606266;
  6604. }
  6605. #u2078 .text {
  6606. position:absolute;
  6607. align-self:center;
  6608. padding:2px 2px 2px 0px;
  6609. box-sizing:border-box;
  6610. width:100%;
  6611. }
  6612. #u2078_text {
  6613. border-width:0px;
  6614. word-wrap:break-word;
  6615. text-transform:none;
  6616. visibility:hidden;
  6617. }
  6618. #u2079_img {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:73px;
  6624. height:30px;
  6625. }
  6626. #u2079 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:657px;
  6630. top:291px;
  6631. width:73px;
  6632. height:30px;
  6633. display:flex;
  6634. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:12px;
  6638. color:#606266;
  6639. }
  6640. #u2079 .text {
  6641. position:absolute;
  6642. align-self:center;
  6643. padding:2px 2px 2px 0px;
  6644. box-sizing:border-box;
  6645. width:100%;
  6646. }
  6647. #u2079_text {
  6648. border-width:0px;
  6649. word-wrap:break-word;
  6650. text-transform:none;
  6651. visibility:hidden;
  6652. }
  6653. #u2080_img {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:73px;
  6659. height:30px;
  6660. }
  6661. #u2080 {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:730px;
  6665. top:291px;
  6666. width:73px;
  6667. height:30px;
  6668. display:flex;
  6669. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. font-size:12px;
  6673. color:#606266;
  6674. }
  6675. #u2080 .text {
  6676. position:absolute;
  6677. align-self:center;
  6678. padding:2px 2px 2px 0px;
  6679. box-sizing:border-box;
  6680. width:100%;
  6681. }
  6682. #u2080_text {
  6683. border-width:0px;
  6684. word-wrap:break-word;
  6685. text-transform:none;
  6686. visibility:hidden;
  6687. }
  6688. #u2081_img {
  6689. border-width:0px;
  6690. position:absolute;
  6691. left:0px;
  6692. top:0px;
  6693. width:85px;
  6694. height:30px;
  6695. }
  6696. #u2081 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:803px;
  6700. top:291px;
  6701. width:85px;
  6702. height:30px;
  6703. display:flex;
  6704. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:12px;
  6708. color:#606266;
  6709. }
  6710. #u2081 .text {
  6711. position:absolute;
  6712. align-self:center;
  6713. padding:2px 2px 2px 0px;
  6714. box-sizing:border-box;
  6715. width:100%;
  6716. }
  6717. #u2081_text {
  6718. border-width:0px;
  6719. word-wrap:break-word;
  6720. text-transform:none;
  6721. visibility:hidden;
  6722. }
  6723. #u2082_img {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:0px;
  6727. top:0px;
  6728. width:98px;
  6729. height:30px;
  6730. }
  6731. #u2082 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:888px;
  6735. top:291px;
  6736. width:98px;
  6737. height:30px;
  6738. display:flex;
  6739. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:12px;
  6743. color:#606266;
  6744. }
  6745. #u2082 .text {
  6746. position:absolute;
  6747. align-self:center;
  6748. padding:2px 2px 2px 0px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u2082_text {
  6753. border-width:0px;
  6754. word-wrap:break-word;
  6755. text-transform:none;
  6756. visibility:hidden;
  6757. }
  6758. #u2083_img {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:0px;
  6762. top:0px;
  6763. width:73px;
  6764. height:30px;
  6765. }
  6766. #u2083 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:986px;
  6770. top:291px;
  6771. width:73px;
  6772. height:30px;
  6773. display:flex;
  6774. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:12px;
  6778. color:#606266;
  6779. }
  6780. #u2083 .text {
  6781. position:absolute;
  6782. align-self:center;
  6783. padding:2px 2px 2px 0px;
  6784. box-sizing:border-box;
  6785. width:100%;
  6786. }
  6787. #u2083_text {
  6788. border-width:0px;
  6789. word-wrap:break-word;
  6790. text-transform:none;
  6791. visibility:hidden;
  6792. }
  6793. #u2084_img {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:73px;
  6799. height:30px;
  6800. }
  6801. #u2084 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:1059px;
  6805. top:291px;
  6806. width:73px;
  6807. height:30px;
  6808. display:flex;
  6809. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:12px;
  6813. color:#606266;
  6814. }
  6815. #u2084 .text {
  6816. position:absolute;
  6817. align-self:center;
  6818. padding:2px 2px 2px 0px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u2084_text {
  6823. border-width:0px;
  6824. word-wrap:break-word;
  6825. text-transform:none;
  6826. visibility:hidden;
  6827. }
  6828. #u2085_img {
  6829. border-width:0px;
  6830. position:absolute;
  6831. left:0px;
  6832. top:0px;
  6833. width:88px;
  6834. height:30px;
  6835. }
  6836. #u2085 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:1132px;
  6840. top:291px;
  6841. width:88px;
  6842. height:30px;
  6843. display:flex;
  6844. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:12px;
  6848. color:#606266;
  6849. }
  6850. #u2085 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:2px 2px 2px 0px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u2085_text {
  6858. border-width:0px;
  6859. word-wrap:break-word;
  6860. text-transform:none;
  6861. visibility:hidden;
  6862. }
  6863. #u2086_div {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:0px;
  6867. top:0px;
  6868. width:55px;
  6869. height:30px;
  6870. background:inherit;
  6871. background-color:rgba(255, 255, 255, 1);
  6872. box-sizing:border-box;
  6873. border-width:1px;
  6874. border-style:solid;
  6875. border-color:rgba(170, 170, 170, 1);
  6876. border-radius:4px;
  6877. -moz-box-shadow:none;
  6878. -webkit-box-shadow:none;
  6879. box-shadow:none;
  6880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6881. font-weight:400;
  6882. font-style:normal;
  6883. font-size:12px;
  6884. color:#555555;
  6885. }
  6886. #u2086 {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:352px;
  6890. top:229px;
  6891. width:55px;
  6892. height:30px;
  6893. display:flex;
  6894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6895. font-weight:400;
  6896. font-style:normal;
  6897. font-size:12px;
  6898. color:#555555;
  6899. }
  6900. #u2086 .text {
  6901. position:absolute;
  6902. align-self:center;
  6903. padding:5px 15px 5px 15px;
  6904. box-sizing:border-box;
  6905. width:100%;
  6906. }
  6907. #u2086_text {
  6908. border-width:0px;
  6909. white-space:nowrap;
  6910. text-transform:none;
  6911. }
  6912. #u2087_div {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:73px;
  6918. height:50px;
  6919. background:inherit;
  6920. background-color:rgba(255, 255, 255, 0);
  6921. border:none;
  6922. border-left:0px;
  6923. border-top:0px;
  6924. border-right:0px;
  6925. border-radius:0px;
  6926. border-bottom-right-radius:0px;
  6927. border-bottom-left-radius:0px;
  6928. -moz-box-shadow:none;
  6929. -webkit-box-shadow:none;
  6930. box-shadow:none;
  6931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. font-size:18px;
  6935. color:#000000;
  6936. line-height:40px;
  6937. }
  6938. #u2087 {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:455px;
  6942. top:50px;
  6943. width:73px;
  6944. height:50px;
  6945. display:flex;
  6946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6947. font-weight:400;
  6948. font-style:normal;
  6949. font-size:18px;
  6950. color:#000000;
  6951. line-height:40px;
  6952. }
  6953. #u2087 .text {
  6954. position:absolute;
  6955. align-self:center;
  6956. padding:0px 0px 0px 0px;
  6957. box-sizing:border-box;
  6958. width:100%;
  6959. }
  6960. #u2087_text {
  6961. border-width:0px;
  6962. white-space:nowrap;
  6963. text-transform:none;
  6964. }
  6965. #u2088_div {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:43px;
  6971. height:50px;
  6972. background:inherit;
  6973. background-color:rgba(255, 255, 255, 0);
  6974. box-sizing:border-box;
  6975. border-width:2px;
  6976. border-style:solid;
  6977. border-color:rgba(41, 143, 255, 1);
  6978. border-left:0px;
  6979. border-top:0px;
  6980. border-right:0px;
  6981. border-radius:0px;
  6982. border-bottom-right-radius:0px;
  6983. border-bottom-left-radius:0px;
  6984. -moz-box-shadow:none;
  6985. -webkit-box-shadow:none;
  6986. box-shadow:none;
  6987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6988. font-weight:400;
  6989. font-style:normal;
  6990. font-size:14px;
  6991. color:#000000;
  6992. line-height:40px;
  6993. }
  6994. #u2088 {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:352px;
  6998. top:100px;
  6999. width:43px;
  7000. height:50px;
  7001. display:flex;
  7002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7003. font-weight:400;
  7004. font-style:normal;
  7005. font-size:14px;
  7006. color:#000000;
  7007. line-height:40px;
  7008. }
  7009. #u2088 .text {
  7010. position:absolute;
  7011. align-self:center;
  7012. padding:0px 0px 0px 0px;
  7013. box-sizing:border-box;
  7014. width:100%;
  7015. }
  7016. #u2088_text {
  7017. border-width:0px;
  7018. white-space:nowrap;
  7019. text-transform:none;
  7020. }
  7021. #u2089_div {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:0px;
  7025. top:0px;
  7026. width:43px;
  7027. height:50px;
  7028. background:inherit;
  7029. background-color:rgba(255, 255, 255, 0);
  7030. border:none;
  7031. border-left:0px;
  7032. border-top:0px;
  7033. border-right:0px;
  7034. border-radius:0px;
  7035. border-bottom-right-radius:0px;
  7036. border-bottom-left-radius:0px;
  7037. -moz-box-shadow:none;
  7038. -webkit-box-shadow:none;
  7039. box-shadow:none;
  7040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7041. font-weight:400;
  7042. font-style:normal;
  7043. font-size:14px;
  7044. color:#000000;
  7045. line-height:40px;
  7046. }
  7047. #u2089 {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:425px;
  7051. top:100px;
  7052. width:43px;
  7053. height:50px;
  7054. display:flex;
  7055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7056. font-weight:400;
  7057. font-style:normal;
  7058. font-size:14px;
  7059. color:#000000;
  7060. line-height:40px;
  7061. }
  7062. #u2089 .text {
  7063. position:absolute;
  7064. align-self:center;
  7065. padding:0px 0px 0px 0px;
  7066. box-sizing:border-box;
  7067. width:100%;
  7068. }
  7069. #u2089_text {
  7070. border-width:0px;
  7071. white-space:nowrap;
  7072. text-transform:none;
  7073. }
  7074. #u2090_div {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:0px;
  7078. top:0px;
  7079. width:43px;
  7080. height:50px;
  7081. background:inherit;
  7082. background-color:rgba(255, 255, 255, 0);
  7083. border:none;
  7084. border-left:0px;
  7085. border-top:0px;
  7086. border-right:0px;
  7087. border-radius:0px;
  7088. border-bottom-right-radius:0px;
  7089. border-bottom-left-radius:0px;
  7090. -moz-box-shadow:none;
  7091. -webkit-box-shadow:none;
  7092. box-shadow:none;
  7093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7094. font-weight:400;
  7095. font-style:normal;
  7096. font-size:14px;
  7097. color:#000000;
  7098. line-height:40px;
  7099. }
  7100. #u2090 {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:498px;
  7104. top:100px;
  7105. width:43px;
  7106. height:50px;
  7107. display:flex;
  7108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:14px;
  7112. color:#000000;
  7113. line-height:40px;
  7114. }
  7115. #u2090 .text {
  7116. position:absolute;
  7117. align-self:center;
  7118. padding:0px 0px 0px 0px;
  7119. box-sizing:border-box;
  7120. width:100%;
  7121. }
  7122. #u2090_text {
  7123. border-width:0px;
  7124. white-space:nowrap;
  7125. text-transform:none;
  7126. }
  7127. #u2091_div {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:0px;
  7131. top:0px;
  7132. width:43px;
  7133. height:50px;
  7134. background:inherit;
  7135. background-color:rgba(255, 255, 255, 0);
  7136. border:none;
  7137. border-left:0px;
  7138. border-top:0px;
  7139. border-right:0px;
  7140. border-radius:0px;
  7141. border-bottom-right-radius:0px;
  7142. border-bottom-left-radius:0px;
  7143. -moz-box-shadow:none;
  7144. -webkit-box-shadow:none;
  7145. box-shadow:none;
  7146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7147. font-weight:400;
  7148. font-style:normal;
  7149. font-size:14px;
  7150. color:#000000;
  7151. line-height:40px;
  7152. }
  7153. #u2091 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:571px;
  7157. top:100px;
  7158. width:43px;
  7159. height:50px;
  7160. display:flex;
  7161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:14px;
  7165. color:#000000;
  7166. line-height:40px;
  7167. }
  7168. #u2091 .text {
  7169. position:absolute;
  7170. align-self:center;
  7171. padding:0px 0px 0px 0px;
  7172. box-sizing:border-box;
  7173. width:100%;
  7174. }
  7175. #u2091_text {
  7176. border-width:0px;
  7177. white-space:nowrap;
  7178. text-transform:none;
  7179. }
  7180. #u2092 {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:0px;
  7186. height:0px;
  7187. }
  7188. #u2093_div {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:0px;
  7192. top:0px;
  7193. width:55px;
  7194. height:30px;
  7195. background:inherit;
  7196. background-color:rgba(255, 255, 255, 1);
  7197. box-sizing:border-box;
  7198. border-width:1px;
  7199. border-style:solid;
  7200. border-color:rgba(170, 170, 170, 1);
  7201. border-radius:4px;
  7202. -moz-box-shadow:none;
  7203. -webkit-box-shadow:none;
  7204. box-shadow:none;
  7205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7206. font-weight:400;
  7207. font-style:normal;
  7208. font-size:12px;
  7209. color:#555555;
  7210. }
  7211. #u2093 {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:1471px;
  7215. top:179px;
  7216. width:55px;
  7217. height:30px;
  7218. display:flex;
  7219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7220. font-weight:400;
  7221. font-style:normal;
  7222. font-size:12px;
  7223. color:#555555;
  7224. }
  7225. #u2093 .text {
  7226. position:absolute;
  7227. align-self:center;
  7228. padding:5px 15px 5px 15px;
  7229. box-sizing:border-box;
  7230. width:100%;
  7231. }
  7232. #u2093_text {
  7233. border-width:0px;
  7234. white-space:nowrap;
  7235. text-transform:none;
  7236. }
  7237. #u2094_div {
  7238. border-width:0px;
  7239. position:absolute;
  7240. left:0px;
  7241. top:0px;
  7242. width:59px;
  7243. height:30px;
  7244. background:inherit;
  7245. background-color:rgba(24, 144, 255, 1);
  7246. box-sizing:border-box;
  7247. border-width:1px;
  7248. border-style:solid;
  7249. border-color:rgba(0, 153, 255, 1);
  7250. border-radius:4px;
  7251. -moz-box-shadow:none;
  7252. -webkit-box-shadow:none;
  7253. box-shadow:none;
  7254. font-family:'Microsoft YaHei', sans-serif;
  7255. font-weight:400;
  7256. font-style:normal;
  7257. font-size:14px;
  7258. color:#FFFFFF;
  7259. }
  7260. #u2094 {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:1402px;
  7264. top:179px;
  7265. width:59px;
  7266. height:30px;
  7267. display:flex;
  7268. font-family:'Microsoft YaHei', sans-serif;
  7269. font-weight:400;
  7270. font-style:normal;
  7271. font-size:14px;
  7272. color:#FFFFFF;
  7273. }
  7274. #u2094 .text {
  7275. position:absolute;
  7276. align-self:center;
  7277. padding:5px 15px 5px 15px;
  7278. box-sizing:border-box;
  7279. width:100%;
  7280. }
  7281. #u2094_text {
  7282. border-width:0px;
  7283. white-space:nowrap;
  7284. text-transform:none;
  7285. }
  7286. #u2095 {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:0px;
  7292. height:0px;
  7293. }
  7294. #u2096_div {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:0px;
  7298. top:0px;
  7299. width:140px;
  7300. height:30px;
  7301. background:inherit;
  7302. background-color:rgba(255, 255, 255, 1);
  7303. box-sizing:border-box;
  7304. border-width:1px;
  7305. border-style:solid;
  7306. border-color:rgba(201, 201, 201, 1);
  7307. border-radius:4px;
  7308. -moz-box-shadow:none;
  7309. -webkit-box-shadow:none;
  7310. box-shadow:none;
  7311. font-family:'Microsoft YaHei', sans-serif;
  7312. font-weight:400;
  7313. font-style:normal;
  7314. font-size:14px;
  7315. color:#CCCCCC;
  7316. text-align:left;
  7317. }
  7318. #u2096 {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:502px;
  7322. top:179px;
  7323. width:140px;
  7324. height:30px;
  7325. display:flex;
  7326. font-family:'Microsoft YaHei', sans-serif;
  7327. font-weight:400;
  7328. font-style:normal;
  7329. font-size:14px;
  7330. color:#CCCCCC;
  7331. text-align:left;
  7332. }
  7333. #u2096 .text {
  7334. position:absolute;
  7335. align-self:center;
  7336. padding:2px 8px 2px 8px;
  7337. box-sizing:border-box;
  7338. width:100%;
  7339. }
  7340. #u2096_text {
  7341. border-width:0px;
  7342. word-wrap:break-word;
  7343. text-transform:none;
  7344. visibility:hidden;
  7345. }
  7346. #u2097_input {
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:126px;
  7351. height:25px;
  7352. padding:2px 2px 2px 2px;
  7353. font-family:'Microsoft YaHei', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:10px;
  7357. letter-spacing:normal;
  7358. color:#000000;
  7359. vertical-align:none;
  7360. text-align:left;
  7361. text-transform:none;
  7362. background-color:transparent;
  7363. border-color:transparent;
  7364. }
  7365. #u2097_input.disabled {
  7366. position:absolute;
  7367. left:0px;
  7368. top:0px;
  7369. width:126px;
  7370. height:25px;
  7371. padding:2px 2px 2px 2px;
  7372. font-family:'Microsoft YaHei', sans-serif;
  7373. font-weight:400;
  7374. font-style:normal;
  7375. font-size:10px;
  7376. letter-spacing:normal;
  7377. color:#000000;
  7378. vertical-align:none;
  7379. text-align:left;
  7380. text-transform:none;
  7381. background-color:transparent;
  7382. border-color:transparent;
  7383. }
  7384. #u2097_div {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:0px;
  7388. top:0px;
  7389. width:126px;
  7390. height:25px;
  7391. background:inherit;
  7392. background-color:rgba(255, 255, 255, 1);
  7393. border:none;
  7394. border-radius:0px;
  7395. -moz-box-shadow:none;
  7396. -webkit-box-shadow:none;
  7397. box-shadow:none;
  7398. font-family:'Microsoft YaHei', sans-serif;
  7399. font-weight:400;
  7400. font-style:normal;
  7401. font-size:10px;
  7402. }
  7403. #u2097 {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:510px;
  7407. top:180px;
  7408. width:126px;
  7409. height:25px;
  7410. display:flex;
  7411. font-family:'Microsoft YaHei', sans-serif;
  7412. font-weight:400;
  7413. font-style:normal;
  7414. font-size:10px;
  7415. }
  7416. #u2097 .text {
  7417. position:absolute;
  7418. align-self:center;
  7419. padding:2px 2px 2px 2px;
  7420. box-sizing:border-box;
  7421. width:100%;
  7422. }
  7423. #u2097_div.disabled {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:126px;
  7429. height:25px;
  7430. background:inherit;
  7431. background-color:rgba(240, 240, 240, 1);
  7432. border:none;
  7433. border-radius:0px;
  7434. -moz-box-shadow:none;
  7435. -webkit-box-shadow:none;
  7436. box-shadow:none;
  7437. font-family:'Microsoft YaHei', sans-serif;
  7438. font-weight:400;
  7439. font-style:normal;
  7440. font-size:10px;
  7441. }
  7442. #u2097.disabled {
  7443. }
  7444. #u2098 {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:0px;
  7448. top:0px;
  7449. width:0px;
  7450. height:0px;
  7451. }
  7452. #u2099_div {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:0px;
  7456. top:0px;
  7457. width:140px;
  7458. height:28px;
  7459. background:inherit;
  7460. background-color:rgba(255, 255, 255, 1);
  7461. box-sizing:border-box;
  7462. border-width:1px;
  7463. border-style:solid;
  7464. border-color:rgba(201, 201, 201, 1);
  7465. border-radius:4px;
  7466. -moz-box-shadow:none;
  7467. -webkit-box-shadow:none;
  7468. box-shadow:none;
  7469. font-family:'Microsoft YaHei', sans-serif;
  7470. font-weight:400;
  7471. font-style:normal;
  7472. font-size:14px;
  7473. color:#CCCCCC;
  7474. text-align:left;
  7475. }
  7476. #u2099 {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:1252px;
  7480. top:180px;
  7481. width:140px;
  7482. height:28px;
  7483. display:flex;
  7484. font-family:'Microsoft YaHei', sans-serif;
  7485. font-weight:400;
  7486. font-style:normal;
  7487. font-size:14px;
  7488. color:#CCCCCC;
  7489. text-align:left;
  7490. }
  7491. #u2099 .text {
  7492. position:absolute;
  7493. align-self:center;
  7494. padding:2px 8px 2px 8px;
  7495. box-sizing:border-box;
  7496. width:100%;
  7497. }
  7498. #u2099_text {
  7499. border-width:0px;
  7500. word-wrap:break-word;
  7501. text-transform:none;
  7502. visibility:hidden;
  7503. }
  7504. #u2100_input {
  7505. position:absolute;
  7506. left:0px;
  7507. top:0px;
  7508. width:113px;
  7509. height:26px;
  7510. padding:2px 2px 2px 2px;
  7511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:14px;
  7515. letter-spacing:normal;
  7516. color:#000000;
  7517. vertical-align:none;
  7518. text-align:left;
  7519. text-transform:none;
  7520. background-color:transparent;
  7521. border-color:transparent;
  7522. }
  7523. #u2100_input.disabled {
  7524. position:absolute;
  7525. left:0px;
  7526. top:0px;
  7527. width:113px;
  7528. height:26px;
  7529. padding:2px 2px 2px 2px;
  7530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7531. font-weight:400;
  7532. font-style:normal;
  7533. font-size:14px;
  7534. letter-spacing:normal;
  7535. color:#000000;
  7536. vertical-align:none;
  7537. text-align:left;
  7538. text-transform:none;
  7539. background-color:transparent;
  7540. border-color:transparent;
  7541. }
  7542. #u2100_div {
  7543. border-width:0px;
  7544. position:absolute;
  7545. left:0px;
  7546. top:0px;
  7547. width:113px;
  7548. height:26px;
  7549. background:inherit;
  7550. background-color:rgba(255, 255, 255, 1);
  7551. border:none;
  7552. border-radius:0px;
  7553. -moz-box-shadow:none;
  7554. -webkit-box-shadow:none;
  7555. box-shadow:none;
  7556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7557. font-weight:400;
  7558. font-style:normal;
  7559. font-size:14px;
  7560. }
  7561. #u2100 {
  7562. border-width:0px;
  7563. position:absolute;
  7564. left:1258px;
  7565. top:181px;
  7566. width:113px;
  7567. height:26px;
  7568. display:flex;
  7569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7570. font-weight:400;
  7571. font-style:normal;
  7572. font-size:14px;
  7573. }
  7574. #u2100 .text {
  7575. position:absolute;
  7576. align-self:center;
  7577. padding:2px 2px 2px 2px;
  7578. box-sizing:border-box;
  7579. width:100%;
  7580. }
  7581. #u2100_div.disabled {
  7582. border-width:0px;
  7583. position:absolute;
  7584. left:0px;
  7585. top:0px;
  7586. width:113px;
  7587. height:26px;
  7588. background:inherit;
  7589. background-color:rgba(240, 240, 240, 1);
  7590. border:none;
  7591. border-radius:0px;
  7592. -moz-box-shadow:none;
  7593. -webkit-box-shadow:none;
  7594. box-shadow:none;
  7595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7596. font-weight:400;
  7597. font-style:normal;
  7598. font-size:14px;
  7599. }
  7600. #u2100.disabled {
  7601. }
  7602. #u2101_img {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:0px;
  7606. top:0px;
  7607. width:12px;
  7608. height:15px;
  7609. }
  7610. #u2101 {
  7611. border-width:0px;
  7612. position:absolute;
  7613. left:1371px;
  7614. top:187px;
  7615. width:12px;
  7616. height:15px;
  7617. display:flex;
  7618. }
  7619. #u2101 .text {
  7620. position:absolute;
  7621. align-self:center;
  7622. padding:2px 2px 2px 2px;
  7623. box-sizing:border-box;
  7624. width:100%;
  7625. }
  7626. #u2101_text {
  7627. border-width:0px;
  7628. word-wrap:break-word;
  7629. text-transform:none;
  7630. visibility:hidden;
  7631. }
  7632. #u2102 {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:0px;
  7636. top:0px;
  7637. width:0px;
  7638. height:0px;
  7639. }
  7640. #u2103_div {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:0px;
  7644. top:0px;
  7645. width:140px;
  7646. height:30px;
  7647. background:inherit;
  7648. background-color:rgba(255, 255, 255, 1);
  7649. box-sizing:border-box;
  7650. border-width:1px;
  7651. border-style:solid;
  7652. border-color:rgba(201, 201, 201, 1);
  7653. border-radius:4px;
  7654. -moz-box-shadow:none;
  7655. -webkit-box-shadow:none;
  7656. box-shadow:none;
  7657. font-family:'Microsoft YaHei', sans-serif;
  7658. font-weight:400;
  7659. font-style:normal;
  7660. font-size:14px;
  7661. color:#CCCCCC;
  7662. text-align:left;
  7663. }
  7664. #u2103 {
  7665. border-width:0px;
  7666. position:absolute;
  7667. left:952px;
  7668. top:179px;
  7669. width:140px;
  7670. height:30px;
  7671. display:flex;
  7672. font-family:'Microsoft YaHei', sans-serif;
  7673. font-weight:400;
  7674. font-style:normal;
  7675. font-size:14px;
  7676. color:#CCCCCC;
  7677. text-align:left;
  7678. }
  7679. #u2103 .text {
  7680. position:absolute;
  7681. align-self:center;
  7682. padding:2px 8px 2px 8px;
  7683. box-sizing:border-box;
  7684. width:100%;
  7685. }
  7686. #u2103_text {
  7687. border-width:0px;
  7688. word-wrap:break-word;
  7689. text-transform:none;
  7690. visibility:hidden;
  7691. }
  7692. #u2104_input {
  7693. position:absolute;
  7694. left:0px;
  7695. top:0px;
  7696. width:126px;
  7697. height:25px;
  7698. padding:2px 2px 2px 2px;
  7699. font-family:'Microsoft YaHei', sans-serif;
  7700. font-weight:400;
  7701. font-style:normal;
  7702. font-size:10px;
  7703. letter-spacing:normal;
  7704. color:#000000;
  7705. vertical-align:none;
  7706. text-align:left;
  7707. text-transform:none;
  7708. background-color:transparent;
  7709. border-color:transparent;
  7710. }
  7711. #u2104_input.disabled {
  7712. position:absolute;
  7713. left:0px;
  7714. top:0px;
  7715. width:126px;
  7716. height:25px;
  7717. padding:2px 2px 2px 2px;
  7718. font-family:'Microsoft YaHei', sans-serif;
  7719. font-weight:400;
  7720. font-style:normal;
  7721. font-size:10px;
  7722. letter-spacing:normal;
  7723. color:#000000;
  7724. vertical-align:none;
  7725. text-align:left;
  7726. text-transform:none;
  7727. background-color:transparent;
  7728. border-color:transparent;
  7729. }
  7730. #u2104_div {
  7731. border-width:0px;
  7732. position:absolute;
  7733. left:0px;
  7734. top:0px;
  7735. width:126px;
  7736. height:25px;
  7737. background:inherit;
  7738. background-color:rgba(255, 255, 255, 1);
  7739. border:none;
  7740. border-radius:0px;
  7741. -moz-box-shadow:none;
  7742. -webkit-box-shadow:none;
  7743. box-shadow:none;
  7744. font-family:'Microsoft YaHei', sans-serif;
  7745. font-weight:400;
  7746. font-style:normal;
  7747. font-size:10px;
  7748. }
  7749. #u2104 {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:961px;
  7753. top:180px;
  7754. width:126px;
  7755. height:25px;
  7756. display:flex;
  7757. font-family:'Microsoft YaHei', sans-serif;
  7758. font-weight:400;
  7759. font-style:normal;
  7760. font-size:10px;
  7761. }
  7762. #u2104 .text {
  7763. position:absolute;
  7764. align-self:center;
  7765. padding:2px 2px 2px 2px;
  7766. box-sizing:border-box;
  7767. width:100%;
  7768. }
  7769. #u2104_div.disabled {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:0px;
  7773. top:0px;
  7774. width:126px;
  7775. height:25px;
  7776. background:inherit;
  7777. background-color:rgba(240, 240, 240, 1);
  7778. border:none;
  7779. border-radius:0px;
  7780. -moz-box-shadow:none;
  7781. -webkit-box-shadow:none;
  7782. box-shadow:none;
  7783. font-family:'Microsoft YaHei', sans-serif;
  7784. font-weight:400;
  7785. font-style:normal;
  7786. font-size:10px;
  7787. }
  7788. #u2104.disabled {
  7789. }
  7790. #u2105 {
  7791. border-width:0px;
  7792. position:absolute;
  7793. left:0px;
  7794. top:0px;
  7795. width:0px;
  7796. height:0px;
  7797. }
  7798. #u2106_div {
  7799. border-width:0px;
  7800. position:absolute;
  7801. left:0px;
  7802. top:0px;
  7803. width:140px;
  7804. height:30px;
  7805. background:inherit;
  7806. background-color:rgba(255, 255, 255, 1);
  7807. box-sizing:border-box;
  7808. border-width:1px;
  7809. border-style:solid;
  7810. border-color:rgba(215, 215, 215, 1);
  7811. border-radius:4px;
  7812. -moz-box-shadow:none;
  7813. -webkit-box-shadow:none;
  7814. box-shadow:none;
  7815. font-size:11px;
  7816. }
  7817. #u2106 {
  7818. border-width:0px;
  7819. position:absolute;
  7820. left:652px;
  7821. top:179px;
  7822. width:140px;
  7823. height:30px;
  7824. display:flex;
  7825. font-size:11px;
  7826. }
  7827. #u2106 .text {
  7828. position:absolute;
  7829. align-self:center;
  7830. padding:2px 2px 2px 2px;
  7831. box-sizing:border-box;
  7832. width:100%;
  7833. }
  7834. #u2106_text {
  7835. border-width:0px;
  7836. word-wrap:break-word;
  7837. text-transform:none;
  7838. visibility:hidden;
  7839. }
  7840. #u2107_input {
  7841. position:absolute;
  7842. left:0px;
  7843. top:0px;
  7844. width:125px;
  7845. height:23px;
  7846. padding:2px 2px 2px 2px;
  7847. font-family:'ArialMT', 'Arial', sans-serif;
  7848. font-weight:400;
  7849. font-style:normal;
  7850. font-size:11px;
  7851. letter-spacing:normal;
  7852. color:#AAAAAA;
  7853. vertical-align:none;
  7854. text-align:left;
  7855. text-transform:none;
  7856. background-color:transparent;
  7857. border-color:transparent;
  7858. }
  7859. #u2107_input.disabled {
  7860. position:absolute;
  7861. left:0px;
  7862. top:0px;
  7863. width:125px;
  7864. height:23px;
  7865. padding:2px 2px 2px 2px;
  7866. font-family:'ArialMT', 'Arial', sans-serif;
  7867. font-weight:400;
  7868. font-style:normal;
  7869. font-size:11px;
  7870. letter-spacing:normal;
  7871. color:#AAAAAA;
  7872. vertical-align:none;
  7873. text-align:left;
  7874. text-transform:none;
  7875. background-color:transparent;
  7876. border-color:transparent;
  7877. }
  7878. #u2107_div {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:0px;
  7882. top:0px;
  7883. width:125px;
  7884. height:23px;
  7885. background:inherit;
  7886. background-color:rgba(255, 255, 255, 1);
  7887. border:none;
  7888. border-radius:0px;
  7889. -moz-box-shadow:none;
  7890. -webkit-box-shadow:none;
  7891. box-shadow:none;
  7892. font-size:11px;
  7893. color:#AAAAAA;
  7894. }
  7895. #u2107 {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:658px;
  7899. top:181px;
  7900. width:125px;
  7901. height:23px;
  7902. display:flex;
  7903. font-size:11px;
  7904. color:#AAAAAA;
  7905. }
  7906. #u2107 .text {
  7907. position:absolute;
  7908. align-self:flex-start;
  7909. padding:2px 2px 2px 2px;
  7910. box-sizing:border-box;
  7911. width:100%;
  7912. }
  7913. #u2107_div.disabled {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:0px;
  7917. top:0px;
  7918. width:125px;
  7919. height:23px;
  7920. background:inherit;
  7921. background-color:rgba(240, 240, 240, 1);
  7922. border:none;
  7923. border-radius:0px;
  7924. -moz-box-shadow:none;
  7925. -webkit-box-shadow:none;
  7926. box-shadow:none;
  7927. font-size:11px;
  7928. color:#AAAAAA;
  7929. }
  7930. #u2107.disabled {
  7931. }
  7932. .u2107_input_option {
  7933. font-size:11px;
  7934. }
  7935. #u2108 {
  7936. border-width:0px;
  7937. position:absolute;
  7938. left:0px;
  7939. top:0px;
  7940. width:0px;
  7941. height:0px;
  7942. }
  7943. #u2109_div {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:0px;
  7947. top:0px;
  7948. width:140px;
  7949. height:30px;
  7950. background:inherit;
  7951. background-color:rgba(255, 255, 255, 1);
  7952. box-sizing:border-box;
  7953. border-width:1px;
  7954. border-style:solid;
  7955. border-color:rgba(215, 215, 215, 1);
  7956. border-radius:4px;
  7957. -moz-box-shadow:none;
  7958. -webkit-box-shadow:none;
  7959. box-shadow:none;
  7960. font-size:11px;
  7961. }
  7962. #u2109 {
  7963. border-width:0px;
  7964. position:absolute;
  7965. left:802px;
  7966. top:179px;
  7967. width:140px;
  7968. height:30px;
  7969. display:flex;
  7970. font-size:11px;
  7971. }
  7972. #u2109 .text {
  7973. position:absolute;
  7974. align-self:center;
  7975. padding:2px 2px 2px 2px;
  7976. box-sizing:border-box;
  7977. width:100%;
  7978. }
  7979. #u2109_text {
  7980. border-width:0px;
  7981. word-wrap:break-word;
  7982. text-transform:none;
  7983. visibility:hidden;
  7984. }
  7985. #u2110_input {
  7986. position:absolute;
  7987. left:0px;
  7988. top:0px;
  7989. width:125px;
  7990. height:23px;
  7991. padding:2px 2px 2px 2px;
  7992. font-family:'ArialMT', 'Arial', sans-serif;
  7993. font-weight:400;
  7994. font-style:normal;
  7995. font-size:11px;
  7996. letter-spacing:normal;
  7997. color:#AAAAAA;
  7998. vertical-align:none;
  7999. text-align:left;
  8000. text-transform:none;
  8001. background-color:transparent;
  8002. border-color:transparent;
  8003. }
  8004. #u2110_input.disabled {
  8005. position:absolute;
  8006. left:0px;
  8007. top:0px;
  8008. width:125px;
  8009. height:23px;
  8010. padding:2px 2px 2px 2px;
  8011. font-family:'ArialMT', 'Arial', sans-serif;
  8012. font-weight:400;
  8013. font-style:normal;
  8014. font-size:11px;
  8015. letter-spacing:normal;
  8016. color:#AAAAAA;
  8017. vertical-align:none;
  8018. text-align:left;
  8019. text-transform:none;
  8020. background-color:transparent;
  8021. border-color:transparent;
  8022. }
  8023. #u2110_div {
  8024. border-width:0px;
  8025. position:absolute;
  8026. left:0px;
  8027. top:0px;
  8028. width:125px;
  8029. height:23px;
  8030. background:inherit;
  8031. background-color:rgba(255, 255, 255, 1);
  8032. border:none;
  8033. border-radius:0px;
  8034. -moz-box-shadow:none;
  8035. -webkit-box-shadow:none;
  8036. box-shadow:none;
  8037. font-size:11px;
  8038. color:#AAAAAA;
  8039. }
  8040. #u2110 {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:808px;
  8044. top:181px;
  8045. width:125px;
  8046. height:23px;
  8047. display:flex;
  8048. font-size:11px;
  8049. color:#AAAAAA;
  8050. }
  8051. #u2110 .text {
  8052. position:absolute;
  8053. align-self:flex-start;
  8054. padding:2px 2px 2px 2px;
  8055. box-sizing:border-box;
  8056. width:100%;
  8057. }
  8058. #u2110_div.disabled {
  8059. border-width:0px;
  8060. position:absolute;
  8061. left:0px;
  8062. top:0px;
  8063. width:125px;
  8064. height:23px;
  8065. background:inherit;
  8066. background-color:rgba(240, 240, 240, 1);
  8067. border:none;
  8068. border-radius:0px;
  8069. -moz-box-shadow:none;
  8070. -webkit-box-shadow:none;
  8071. box-shadow:none;
  8072. font-size:11px;
  8073. color:#AAAAAA;
  8074. }
  8075. #u2110.disabled {
  8076. }
  8077. .u2110_input_option {
  8078. font-size:11px;
  8079. }
  8080. #u2111 {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:0px;
  8084. top:0px;
  8085. width:0px;
  8086. height:0px;
  8087. }
  8088. #u2112_div {
  8089. border-width:0px;
  8090. position:absolute;
  8091. left:0px;
  8092. top:0px;
  8093. width:140px;
  8094. height:30px;
  8095. background:inherit;
  8096. background-color:rgba(255, 255, 255, 1);
  8097. box-sizing:border-box;
  8098. border-width:1px;
  8099. border-style:solid;
  8100. border-color:rgba(215, 215, 215, 1);
  8101. border-radius:4px;
  8102. -moz-box-shadow:none;
  8103. -webkit-box-shadow:none;
  8104. box-shadow:none;
  8105. font-size:11px;
  8106. }
  8107. #u2112 {
  8108. border-width:0px;
  8109. position:absolute;
  8110. left:1102px;
  8111. top:179px;
  8112. width:140px;
  8113. height:30px;
  8114. display:flex;
  8115. font-size:11px;
  8116. }
  8117. #u2112 .text {
  8118. position:absolute;
  8119. align-self:center;
  8120. padding:2px 2px 2px 2px;
  8121. box-sizing:border-box;
  8122. width:100%;
  8123. }
  8124. #u2112_text {
  8125. border-width:0px;
  8126. word-wrap:break-word;
  8127. text-transform:none;
  8128. visibility:hidden;
  8129. }
  8130. #u2113_input {
  8131. position:absolute;
  8132. left:0px;
  8133. top:0px;
  8134. width:123px;
  8135. height:23px;
  8136. padding:2px 2px 2px 2px;
  8137. font-family:'ArialMT', 'Arial', sans-serif;
  8138. font-weight:400;
  8139. font-style:normal;
  8140. font-size:11px;
  8141. letter-spacing:normal;
  8142. color:#AAAAAA;
  8143. vertical-align:none;
  8144. text-align:left;
  8145. text-transform:none;
  8146. background-color:transparent;
  8147. border-color:transparent;
  8148. }
  8149. #u2113_input.disabled {
  8150. position:absolute;
  8151. left:0px;
  8152. top:0px;
  8153. width:123px;
  8154. height:23px;
  8155. padding:2px 2px 2px 2px;
  8156. font-family:'ArialMT', 'Arial', sans-serif;
  8157. font-weight:400;
  8158. font-style:normal;
  8159. font-size:11px;
  8160. letter-spacing:normal;
  8161. color:#AAAAAA;
  8162. vertical-align:none;
  8163. text-align:left;
  8164. text-transform:none;
  8165. background-color:transparent;
  8166. border-color:transparent;
  8167. }
  8168. #u2113_div {
  8169. border-width:0px;
  8170. position:absolute;
  8171. left:0px;
  8172. top:0px;
  8173. width:123px;
  8174. height:23px;
  8175. background:inherit;
  8176. background-color:rgba(255, 255, 255, 1);
  8177. border:none;
  8178. border-radius:0px;
  8179. -moz-box-shadow:none;
  8180. -webkit-box-shadow:none;
  8181. box-shadow:none;
  8182. font-size:11px;
  8183. color:#AAAAAA;
  8184. }
  8185. #u2113 {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:1108px;
  8189. top:181px;
  8190. width:123px;
  8191. height:23px;
  8192. display:flex;
  8193. font-size:11px;
  8194. color:#AAAAAA;
  8195. }
  8196. #u2113 .text {
  8197. position:absolute;
  8198. align-self:flex-start;
  8199. padding:2px 2px 2px 2px;
  8200. box-sizing:border-box;
  8201. width:100%;
  8202. }
  8203. #u2113_div.disabled {
  8204. border-width:0px;
  8205. position:absolute;
  8206. left:0px;
  8207. top:0px;
  8208. width:123px;
  8209. height:23px;
  8210. background:inherit;
  8211. background-color:rgba(240, 240, 240, 1);
  8212. border:none;
  8213. border-radius:0px;
  8214. -moz-box-shadow:none;
  8215. -webkit-box-shadow:none;
  8216. box-shadow:none;
  8217. font-size:11px;
  8218. color:#AAAAAA;
  8219. }
  8220. #u2113.disabled {
  8221. }
  8222. .u2113_input_option {
  8223. font-size:11px;
  8224. }
  8225. #u2114 {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:0px;
  8229. top:0px;
  8230. width:0px;
  8231. height:0px;
  8232. }
  8233. #u2115_div {
  8234. border-width:0px;
  8235. position:absolute;
  8236. left:0px;
  8237. top:0px;
  8238. width:140px;
  8239. height:30px;
  8240. background:inherit;
  8241. background-color:rgba(255, 255, 255, 1);
  8242. box-sizing:border-box;
  8243. border-width:1px;
  8244. border-style:solid;
  8245. border-color:rgba(201, 201, 201, 1);
  8246. border-radius:4px;
  8247. -moz-box-shadow:none;
  8248. -webkit-box-shadow:none;
  8249. box-shadow:none;
  8250. font-family:'Microsoft YaHei', sans-serif;
  8251. font-weight:400;
  8252. font-style:normal;
  8253. font-size:14px;
  8254. color:#CCCCCC;
  8255. text-align:left;
  8256. }
  8257. #u2115 {
  8258. border-width:0px;
  8259. position:absolute;
  8260. left:352px;
  8261. top:179px;
  8262. width:140px;
  8263. height:30px;
  8264. display:flex;
  8265. font-family:'Microsoft YaHei', sans-serif;
  8266. font-weight:400;
  8267. font-style:normal;
  8268. font-size:14px;
  8269. color:#CCCCCC;
  8270. text-align:left;
  8271. }
  8272. #u2115 .text {
  8273. position:absolute;
  8274. align-self:center;
  8275. padding:2px 8px 2px 8px;
  8276. box-sizing:border-box;
  8277. width:100%;
  8278. }
  8279. #u2115_text {
  8280. border-width:0px;
  8281. word-wrap:break-word;
  8282. text-transform:none;
  8283. visibility:hidden;
  8284. }
  8285. #u2116_input {
  8286. position:absolute;
  8287. left:0px;
  8288. top:0px;
  8289. width:127px;
  8290. height:25px;
  8291. padding:2px 2px 2px 2px;
  8292. font-family:'Microsoft YaHei', sans-serif;
  8293. font-weight:400;
  8294. font-style:normal;
  8295. font-size:10px;
  8296. letter-spacing:normal;
  8297. color:#000000;
  8298. vertical-align:none;
  8299. text-align:left;
  8300. text-transform:none;
  8301. background-color:transparent;
  8302. border-color:transparent;
  8303. }
  8304. #u2116_input.disabled {
  8305. position:absolute;
  8306. left:0px;
  8307. top:0px;
  8308. width:127px;
  8309. height:25px;
  8310. padding:2px 2px 2px 2px;
  8311. font-family:'Microsoft YaHei', sans-serif;
  8312. font-weight:400;
  8313. font-style:normal;
  8314. font-size:10px;
  8315. letter-spacing:normal;
  8316. color:#000000;
  8317. vertical-align:none;
  8318. text-align:left;
  8319. text-transform:none;
  8320. background-color:transparent;
  8321. border-color:transparent;
  8322. }
  8323. #u2116_div {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:0px;
  8327. top:0px;
  8328. width:127px;
  8329. height:25px;
  8330. background:inherit;
  8331. background-color:rgba(255, 255, 255, 1);
  8332. border:none;
  8333. border-radius:0px;
  8334. -moz-box-shadow:none;
  8335. -webkit-box-shadow:none;
  8336. box-shadow:none;
  8337. font-family:'Microsoft YaHei', sans-serif;
  8338. font-weight:400;
  8339. font-style:normal;
  8340. font-size:10px;
  8341. }
  8342. #u2116 {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:360px;
  8346. top:180px;
  8347. width:127px;
  8348. height:25px;
  8349. display:flex;
  8350. font-family:'Microsoft YaHei', sans-serif;
  8351. font-weight:400;
  8352. font-style:normal;
  8353. font-size:10px;
  8354. }
  8355. #u2116 .text {
  8356. position:absolute;
  8357. align-self:center;
  8358. padding:2px 2px 2px 2px;
  8359. box-sizing:border-box;
  8360. width:100%;
  8361. }
  8362. #u2116_div.disabled {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:0px;
  8366. top:0px;
  8367. width:127px;
  8368. height:25px;
  8369. background:inherit;
  8370. background-color:rgba(240, 240, 240, 1);
  8371. border:none;
  8372. border-radius:0px;
  8373. -moz-box-shadow:none;
  8374. -webkit-box-shadow:none;
  8375. box-shadow:none;
  8376. font-family:'Microsoft YaHei', sans-serif;
  8377. font-weight:400;
  8378. font-style:normal;
  8379. font-size:10px;
  8380. }
  8381. #u2116.disabled {
  8382. }
  8383. #u2117_div {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:0px;
  8387. top:0px;
  8388. width:43px;
  8389. height:50px;
  8390. background:inherit;
  8391. background-color:rgba(255, 255, 255, 0);
  8392. border:none;
  8393. border-left:0px;
  8394. border-top:0px;
  8395. border-right:0px;
  8396. border-radius:0px;
  8397. border-bottom-right-radius:0px;
  8398. border-bottom-left-radius:0px;
  8399. -moz-box-shadow:none;
  8400. -webkit-box-shadow:none;
  8401. box-shadow:none;
  8402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8403. font-weight:400;
  8404. font-style:normal;
  8405. font-size:14px;
  8406. color:#000000;
  8407. line-height:40px;
  8408. }
  8409. #u2117 {
  8410. border-width:0px;
  8411. position:absolute;
  8412. left:644px;
  8413. top:100px;
  8414. width:43px;
  8415. height:50px;
  8416. display:flex;
  8417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8418. font-weight:400;
  8419. font-style:normal;
  8420. font-size:14px;
  8421. color:#000000;
  8422. line-height:40px;
  8423. }
  8424. #u2117 .text {
  8425. position:absolute;
  8426. align-self:center;
  8427. padding:0px 0px 0px 0px;
  8428. box-sizing:border-box;
  8429. width:100%;
  8430. }
  8431. #u2117_text {
  8432. border-width:0px;
  8433. white-space:nowrap;
  8434. text-transform:none;
  8435. }
  8436. #u2118 {
  8437. border-width:0px;
  8438. position:absolute;
  8439. left:0px;
  8440. top:0px;
  8441. width:0px;
  8442. height:0px;
  8443. }
  8444. #u2119_div {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:0px;
  8448. top:0px;
  8449. width:200px;
  8450. height:1187px;
  8451. background:inherit;
  8452. background-color:rgba(255, 255, 255, 1);
  8453. border:none;
  8454. border-radius:0px;
  8455. -moz-box-shadow:none;
  8456. -webkit-box-shadow:none;
  8457. box-shadow:none;
  8458. }
  8459. #u2119 {
  8460. border-width:0px;
  8461. position:absolute;
  8462. left:120px;
  8463. top:50px;
  8464. width:200px;
  8465. height:1187px;
  8466. display:flex;
  8467. }
  8468. #u2119 .text {
  8469. position:absolute;
  8470. align-self:center;
  8471. padding:2px 2px 2px 2px;
  8472. box-sizing:border-box;
  8473. width:100%;
  8474. }
  8475. #u2119_text {
  8476. border-width:0px;
  8477. word-wrap:break-word;
  8478. text-transform:none;
  8479. visibility:hidden;
  8480. }
  8481. #u2120_div {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:0px;
  8485. top:0px;
  8486. width:200px;
  8487. height:60px;
  8488. background:inherit;
  8489. background-color:rgba(224, 231, 247, 1);
  8490. border:none;
  8491. border-radius:0px;
  8492. -moz-box-shadow:none;
  8493. -webkit-box-shadow:none;
  8494. box-shadow:none;
  8495. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8496. font-weight:500;
  8497. font-style:normal;
  8498. font-size:18px;
  8499. }
  8500. #u2120 {
  8501. border-width:0px;
  8502. position:absolute;
  8503. left:120px;
  8504. top:50px;
  8505. width:200px;
  8506. height:60px;
  8507. display:flex;
  8508. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8509. font-weight:500;
  8510. font-style:normal;
  8511. font-size:18px;
  8512. }
  8513. #u2120 .text {
  8514. position:absolute;
  8515. align-self:center;
  8516. padding:0px 0px 0px 20px;
  8517. box-sizing:border-box;
  8518. width:100%;
  8519. }
  8520. #u2120_text {
  8521. border-width:0px;
  8522. word-wrap:break-word;
  8523. text-transform:none;
  8524. }
  8525. #u2121_div {
  8526. border-width:0px;
  8527. position:absolute;
  8528. left:0px;
  8529. top:0px;
  8530. width:97px;
  8531. height:22px;
  8532. background:inherit;
  8533. background-color:rgba(255, 255, 255, 0);
  8534. border:none;
  8535. border-radius:0px;
  8536. -moz-box-shadow:none;
  8537. -webkit-box-shadow:none;
  8538. box-shadow:none;
  8539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8540. font-weight:400;
  8541. font-style:normal;
  8542. font-size:16px;
  8543. }
  8544. #u2121 {
  8545. border-width:0px;
  8546. position:absolute;
  8547. left:147px;
  8548. top:167px;
  8549. width:97px;
  8550. height:22px;
  8551. display:flex;
  8552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8553. font-weight:400;
  8554. font-style:normal;
  8555. font-size:16px;
  8556. }
  8557. #u2121 .text {
  8558. position:absolute;
  8559. align-self:flex-start;
  8560. padding:0px 0px 0px 0px;
  8561. box-sizing:border-box;
  8562. width:100%;
  8563. }
  8564. #u2121_text {
  8565. border-width:0px;
  8566. word-wrap:break-word;
  8567. text-transform:none;
  8568. }
  8569. #u2122_img {
  8570. border-width:0px;
  8571. position:absolute;
  8572. left:0px;
  8573. top:0px;
  8574. width:201px;
  8575. height:2px;
  8576. }
  8577. #u2122 {
  8578. border-width:0px;
  8579. position:absolute;
  8580. left:120px;
  8581. top:255px;
  8582. width:200px;
  8583. height:1px;
  8584. display:flex;
  8585. }
  8586. #u2122 .text {
  8587. position:absolute;
  8588. align-self:center;
  8589. padding:2px 2px 2px 2px;
  8590. box-sizing:border-box;
  8591. width:100%;
  8592. }
  8593. #u2122_text {
  8594. border-width:0px;
  8595. word-wrap:break-word;
  8596. text-transform:none;
  8597. visibility:hidden;
  8598. }
  8599. #u2123_div {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:0px;
  8603. top:0px;
  8604. width:65px;
  8605. height:22px;
  8606. background:inherit;
  8607. background-color:rgba(255, 255, 255, 0);
  8608. border:none;
  8609. border-radius:0px;
  8610. -moz-box-shadow:none;
  8611. -webkit-box-shadow:none;
  8612. box-shadow:none;
  8613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8614. font-weight:400;
  8615. font-style:normal;
  8616. font-size:16px;
  8617. }
  8618. #u2123 {
  8619. border-width:0px;
  8620. position:absolute;
  8621. left:147px;
  8622. top:208px;
  8623. width:65px;
  8624. height:22px;
  8625. display:flex;
  8626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8627. font-weight:400;
  8628. font-style:normal;
  8629. font-size:16px;
  8630. }
  8631. #u2123 .text {
  8632. position:absolute;
  8633. align-self:flex-start;
  8634. padding:0px 0px 0px 0px;
  8635. box-sizing:border-box;
  8636. width:100%;
  8637. }
  8638. #u2123_text {
  8639. border-width:0px;
  8640. white-space:nowrap;
  8641. text-transform:none;
  8642. }
  8643. #u2124_img {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:0px;
  8647. top:0px;
  8648. width:201px;
  8649. height:2px;
  8650. }
  8651. #u2124 {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:120px;
  8655. top:543px;
  8656. width:200px;
  8657. height:1px;
  8658. display:flex;
  8659. }
  8660. #u2124 .text {
  8661. position:absolute;
  8662. align-self:center;
  8663. padding:2px 2px 2px 2px;
  8664. box-sizing:border-box;
  8665. width:100%;
  8666. }
  8667. #u2124_text {
  8668. border-width:0px;
  8669. word-wrap:break-word;
  8670. text-transform:none;
  8671. visibility:hidden;
  8672. }
  8673. #u2125_div {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:0px;
  8677. top:0px;
  8678. width:65px;
  8679. height:22px;
  8680. background:inherit;
  8681. background-color:rgba(255, 255, 255, 0);
  8682. border:none;
  8683. border-radius:0px;
  8684. -moz-box-shadow:none;
  8685. -webkit-box-shadow:none;
  8686. box-shadow:none;
  8687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8688. font-weight:400;
  8689. font-style:normal;
  8690. font-size:16px;
  8691. }
  8692. #u2125 {
  8693. border-width:0px;
  8694. position:absolute;
  8695. left:147px;
  8696. top:600px;
  8697. width:65px;
  8698. height:22px;
  8699. display:flex;
  8700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8701. font-weight:400;
  8702. font-style:normal;
  8703. font-size:16px;
  8704. }
  8705. #u2125 .text {
  8706. position:absolute;
  8707. align-self:flex-start;
  8708. padding:0px 0px 0px 0px;
  8709. box-sizing:border-box;
  8710. width:100%;
  8711. }
  8712. #u2125_text {
  8713. border-width:0px;
  8714. white-space:nowrap;
  8715. text-transform:none;
  8716. }
  8717. #u2126_div {
  8718. border-width:0px;
  8719. position:absolute;
  8720. left:0px;
  8721. top:0px;
  8722. width:49px;
  8723. height:17px;
  8724. background:inherit;
  8725. background-color:rgba(255, 255, 255, 0);
  8726. border:none;
  8727. border-radius:0px;
  8728. -moz-box-shadow:none;
  8729. -webkit-box-shadow:none;
  8730. box-shadow:none;
  8731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8732. font-weight:400;
  8733. font-style:normal;
  8734. font-size:12px;
  8735. color:#AAAAAA;
  8736. }
  8737. #u2126 {
  8738. border-width:0px;
  8739. position:absolute;
  8740. left:147px;
  8741. top:563px;
  8742. width:49px;
  8743. height:17px;
  8744. display:flex;
  8745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8746. font-weight:400;
  8747. font-style:normal;
  8748. font-size:12px;
  8749. color:#AAAAAA;
  8750. }
  8751. #u2126 .text {
  8752. position:absolute;
  8753. align-self:flex-start;
  8754. padding:0px 0px 0px 0px;
  8755. box-sizing:border-box;
  8756. width:100%;
  8757. }
  8758. #u2126_text {
  8759. border-width:0px;
  8760. white-space:nowrap;
  8761. text-transform:none;
  8762. }
  8763. #u2127_div {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:0px;
  8767. top:0px;
  8768. width:65px;
  8769. height:22px;
  8770. background:inherit;
  8771. background-color:rgba(255, 255, 255, 0);
  8772. border:none;
  8773. border-radius:0px;
  8774. -moz-box-shadow:none;
  8775. -webkit-box-shadow:none;
  8776. box-shadow:none;
  8777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. font-size:16px;
  8781. }
  8782. #u2127 {
  8783. border-width:0px;
  8784. position:absolute;
  8785. left:147px;
  8786. top:312px;
  8787. width:65px;
  8788. height:22px;
  8789. display:flex;
  8790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8791. font-weight:400;
  8792. font-style:normal;
  8793. font-size:16px;
  8794. }
  8795. #u2127 .text {
  8796. position:absolute;
  8797. align-self:flex-start;
  8798. padding:0px 0px 0px 0px;
  8799. box-sizing:border-box;
  8800. width:100%;
  8801. }
  8802. #u2127_text {
  8803. border-width:0px;
  8804. white-space:nowrap;
  8805. text-transform:none;
  8806. }
  8807. #u2128_div {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:0px;
  8811. top:0px;
  8812. width:49px;
  8813. height:17px;
  8814. background:inherit;
  8815. background-color:rgba(255, 255, 255, 0);
  8816. border:none;
  8817. border-radius:0px;
  8818. -moz-box-shadow:none;
  8819. -webkit-box-shadow:none;
  8820. box-shadow:none;
  8821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8822. font-weight:400;
  8823. font-style:normal;
  8824. font-size:12px;
  8825. color:#AAAAAA;
  8826. }
  8827. #u2128 {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:147px;
  8831. top:275px;
  8832. width:49px;
  8833. height:17px;
  8834. display:flex;
  8835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8836. font-weight:400;
  8837. font-style:normal;
  8838. font-size:12px;
  8839. color:#AAAAAA;
  8840. }
  8841. #u2128 .text {
  8842. position:absolute;
  8843. align-self:flex-start;
  8844. padding:0px 0px 0px 0px;
  8845. box-sizing:border-box;
  8846. width:100%;
  8847. }
  8848. #u2128_text {
  8849. border-width:0px;
  8850. white-space:nowrap;
  8851. text-transform:none;
  8852. }
  8853. #u2129_div {
  8854. border-width:0px;
  8855. position:absolute;
  8856. left:0px;
  8857. top:0px;
  8858. width:65px;
  8859. height:22px;
  8860. background:inherit;
  8861. background-color:rgba(255, 255, 255, 0);
  8862. border:none;
  8863. border-radius:0px;
  8864. -moz-box-shadow:none;
  8865. -webkit-box-shadow:none;
  8866. box-shadow:none;
  8867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8868. font-weight:400;
  8869. font-style:normal;
  8870. font-size:16px;
  8871. }
  8872. #u2129 {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:147px;
  8876. top:684px;
  8877. width:65px;
  8878. height:22px;
  8879. display:flex;
  8880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8881. font-weight:400;
  8882. font-style:normal;
  8883. font-size:16px;
  8884. }
  8885. #u2129 .text {
  8886. position:absolute;
  8887. align-self:flex-start;
  8888. padding:0px 0px 0px 0px;
  8889. box-sizing:border-box;
  8890. width:100%;
  8891. }
  8892. #u2129_text {
  8893. border-width:0px;
  8894. white-space:nowrap;
  8895. text-transform:none;
  8896. }
  8897. #u2130_div {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:0px;
  8901. top:0px;
  8902. width:49px;
  8903. height:17px;
  8904. background:inherit;
  8905. background-color:rgba(255, 255, 255, 0);
  8906. border:none;
  8907. border-radius:0px;
  8908. -moz-box-shadow:none;
  8909. -webkit-box-shadow:none;
  8910. box-shadow:none;
  8911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8912. font-weight:400;
  8913. font-style:normal;
  8914. font-size:12px;
  8915. color:#AAAAAA;
  8916. }
  8917. #u2130 {
  8918. border-width:0px;
  8919. position:absolute;
  8920. left:147px;
  8921. top:130px;
  8922. width:49px;
  8923. height:17px;
  8924. display:flex;
  8925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8926. font-weight:400;
  8927. font-style:normal;
  8928. font-size:12px;
  8929. color:#AAAAAA;
  8930. }
  8931. #u2130 .text {
  8932. position:absolute;
  8933. align-self:flex-start;
  8934. padding:0px 0px 0px 0px;
  8935. box-sizing:border-box;
  8936. width:100%;
  8937. }
  8938. #u2130_text {
  8939. border-width:0px;
  8940. white-space:nowrap;
  8941. text-transform:none;
  8942. }
  8943. #u2131_img {
  8944. border-width:0px;
  8945. position:absolute;
  8946. left:0px;
  8947. top:0px;
  8948. width:201px;
  8949. height:2px;
  8950. }
  8951. #u2131 {
  8952. border-width:0px;
  8953. position:absolute;
  8954. left:120px;
  8955. top:817px;
  8956. width:200px;
  8957. height:1px;
  8958. display:flex;
  8959. }
  8960. #u2131 .text {
  8961. position:absolute;
  8962. align-self:center;
  8963. padding:2px 2px 2px 2px;
  8964. box-sizing:border-box;
  8965. width:100%;
  8966. }
  8967. #u2131_text {
  8968. border-width:0px;
  8969. word-wrap:break-word;
  8970. text-transform:none;
  8971. visibility:hidden;
  8972. }
  8973. #u2132_div {
  8974. border-width:0px;
  8975. position:absolute;
  8976. left:0px;
  8977. top:0px;
  8978. width:65px;
  8979. height:22px;
  8980. background:inherit;
  8981. background-color:rgba(255, 255, 255, 0);
  8982. border:none;
  8983. border-radius:0px;
  8984. -moz-box-shadow:none;
  8985. -webkit-box-shadow:none;
  8986. box-shadow:none;
  8987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8988. font-weight:400;
  8989. font-style:normal;
  8990. font-size:16px;
  8991. }
  8992. #u2132 {
  8993. border-width:0px;
  8994. position:absolute;
  8995. left:147px;
  8996. top:874px;
  8997. width:65px;
  8998. height:22px;
  8999. display:flex;
  9000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9001. font-weight:400;
  9002. font-style:normal;
  9003. font-size:16px;
  9004. }
  9005. #u2132 .text {
  9006. position:absolute;
  9007. align-self:flex-start;
  9008. padding:0px 0px 0px 0px;
  9009. box-sizing:border-box;
  9010. width:100%;
  9011. }
  9012. #u2132_text {
  9013. border-width:0px;
  9014. white-space:nowrap;
  9015. text-transform:none;
  9016. }
  9017. #u2133_div {
  9018. border-width:0px;
  9019. position:absolute;
  9020. left:0px;
  9021. top:0px;
  9022. width:49px;
  9023. height:17px;
  9024. background:inherit;
  9025. background-color:rgba(255, 255, 255, 0);
  9026. border:none;
  9027. border-radius:0px;
  9028. -moz-box-shadow:none;
  9029. -webkit-box-shadow:none;
  9030. box-shadow:none;
  9031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9032. font-weight:400;
  9033. font-style:normal;
  9034. font-size:12px;
  9035. color:#AAAAAA;
  9036. }
  9037. #u2133 {
  9038. border-width:0px;
  9039. position:absolute;
  9040. left:147px;
  9041. top:837px;
  9042. width:49px;
  9043. height:17px;
  9044. display:flex;
  9045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9046. font-weight:400;
  9047. font-style:normal;
  9048. font-size:12px;
  9049. color:#AAAAAA;
  9050. }
  9051. #u2133 .text {
  9052. position:absolute;
  9053. align-self:flex-start;
  9054. padding:0px 0px 0px 0px;
  9055. box-sizing:border-box;
  9056. width:100%;
  9057. }
  9058. #u2133_text {
  9059. border-width:0px;
  9060. white-space:nowrap;
  9061. text-transform:none;
  9062. }
  9063. #u2134_div {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:0px;
  9067. top:0px;
  9068. width:65px;
  9069. height:22px;
  9070. background:inherit;
  9071. background-color:rgba(255, 255, 255, 0);
  9072. border:none;
  9073. border-radius:0px;
  9074. -moz-box-shadow:none;
  9075. -webkit-box-shadow:none;
  9076. box-shadow:none;
  9077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9078. font-weight:400;
  9079. font-style:normal;
  9080. font-size:16px;
  9081. }
  9082. #u2134 {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:147px;
  9086. top:766px;
  9087. width:65px;
  9088. height:22px;
  9089. display:flex;
  9090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9091. font-weight:400;
  9092. font-style:normal;
  9093. font-size:16px;
  9094. }
  9095. #u2134 .text {
  9096. position:absolute;
  9097. align-self:flex-start;
  9098. padding:0px 0px 0px 0px;
  9099. box-sizing:border-box;
  9100. width:100%;
  9101. }
  9102. #u2134_text {
  9103. border-width:0px;
  9104. white-space:nowrap;
  9105. text-transform:none;
  9106. }
  9107. #u2135_img {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:0px;
  9111. top:0px;
  9112. width:201px;
  9113. height:2px;
  9114. }
  9115. #u2135 {
  9116. border-width:0px;
  9117. position:absolute;
  9118. left:120px;
  9119. top:395px;
  9120. width:200px;
  9121. height:1px;
  9122. display:flex;
  9123. }
  9124. #u2135 .text {
  9125. position:absolute;
  9126. align-self:center;
  9127. padding:2px 2px 2px 2px;
  9128. box-sizing:border-box;
  9129. width:100%;
  9130. }
  9131. #u2135_text {
  9132. border-width:0px;
  9133. word-wrap:break-word;
  9134. text-transform:none;
  9135. visibility:hidden;
  9136. }
  9137. #u2136_div {
  9138. border-width:0px;
  9139. position:absolute;
  9140. left:0px;
  9141. top:0px;
  9142. width:65px;
  9143. height:22px;
  9144. background:inherit;
  9145. background-color:rgba(255, 255, 255, 0);
  9146. border:none;
  9147. border-radius:0px;
  9148. -moz-box-shadow:none;
  9149. -webkit-box-shadow:none;
  9150. box-shadow:none;
  9151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9152. font-weight:400;
  9153. font-style:normal;
  9154. font-size:16px;
  9155. }
  9156. #u2136 {
  9157. border-width:0px;
  9158. position:absolute;
  9159. left:147px;
  9160. top:452px;
  9161. width:65px;
  9162. height:22px;
  9163. display:flex;
  9164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9165. font-weight:400;
  9166. font-style:normal;
  9167. font-size:16px;
  9168. }
  9169. #u2136 .text {
  9170. position:absolute;
  9171. align-self:flex-start;
  9172. padding:0px 0px 0px 0px;
  9173. box-sizing:border-box;
  9174. width:100%;
  9175. }
  9176. #u2136_text {
  9177. border-width:0px;
  9178. white-space:nowrap;
  9179. text-transform:none;
  9180. }
  9181. #u2137_div {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:0px;
  9185. top:0px;
  9186. width:49px;
  9187. height:17px;
  9188. background:inherit;
  9189. background-color:rgba(255, 255, 255, 0);
  9190. border:none;
  9191. border-radius:0px;
  9192. -moz-box-shadow:none;
  9193. -webkit-box-shadow:none;
  9194. box-shadow:none;
  9195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9196. font-weight:400;
  9197. font-style:normal;
  9198. font-size:12px;
  9199. color:#AAAAAA;
  9200. }
  9201. #u2137 {
  9202. border-width:0px;
  9203. position:absolute;
  9204. left:147px;
  9205. top:415px;
  9206. width:49px;
  9207. height:17px;
  9208. display:flex;
  9209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9210. font-weight:400;
  9211. font-style:normal;
  9212. font-size:12px;
  9213. color:#AAAAAA;
  9214. }
  9215. #u2137 .text {
  9216. position:absolute;
  9217. align-self:flex-start;
  9218. padding:0px 0px 0px 0px;
  9219. box-sizing:border-box;
  9220. width:100%;
  9221. }
  9222. #u2137_text {
  9223. border-width:0px;
  9224. white-space:nowrap;
  9225. text-transform:none;
  9226. }
  9227. #u2138_div {
  9228. border-width:0px;
  9229. position:absolute;
  9230. left:0px;
  9231. top:0px;
  9232. width:97px;
  9233. height:22px;
  9234. background:inherit;
  9235. background-color:rgba(255, 255, 255, 0);
  9236. border:none;
  9237. border-radius:0px;
  9238. -moz-box-shadow:none;
  9239. -webkit-box-shadow:none;
  9240. box-shadow:none;
  9241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9242. font-weight:400;
  9243. font-style:normal;
  9244. font-size:16px;
  9245. }
  9246. #u2138 {
  9247. border-width:0px;
  9248. position:absolute;
  9249. left:147px;
  9250. top:493px;
  9251. width:97px;
  9252. height:22px;
  9253. display:flex;
  9254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9255. font-weight:400;
  9256. font-style:normal;
  9257. font-size:16px;
  9258. }
  9259. #u2138 .text {
  9260. position:absolute;
  9261. align-self:flex-start;
  9262. padding:0px 0px 0px 0px;
  9263. box-sizing:border-box;
  9264. width:100%;
  9265. }
  9266. #u2138_text {
  9267. border-width:0px;
  9268. word-wrap:break-word;
  9269. text-transform:none;
  9270. }
  9271. #u2139_div {
  9272. border-width:0px;
  9273. position:absolute;
  9274. left:0px;
  9275. top:0px;
  9276. width:65px;
  9277. height:22px;
  9278. background:inherit;
  9279. background-color:rgba(255, 255, 255, 0);
  9280. border:none;
  9281. border-radius:0px;
  9282. -moz-box-shadow:none;
  9283. -webkit-box-shadow:none;
  9284. box-shadow:none;
  9285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9286. font-weight:400;
  9287. font-style:normal;
  9288. font-size:16px;
  9289. }
  9290. #u2139 {
  9291. border-width:0px;
  9292. position:absolute;
  9293. left:147px;
  9294. top:354px;
  9295. width:65px;
  9296. height:22px;
  9297. display:flex;
  9298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9299. font-weight:400;
  9300. font-style:normal;
  9301. font-size:16px;
  9302. }
  9303. #u2139 .text {
  9304. position:absolute;
  9305. align-self:flex-start;
  9306. padding:0px 0px 0px 0px;
  9307. box-sizing:border-box;
  9308. width:100%;
  9309. }
  9310. #u2139_text {
  9311. border-width:0px;
  9312. white-space:nowrap;
  9313. text-transform:none;
  9314. }
  9315. #u2140_div {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:0px;
  9319. top:0px;
  9320. width:65px;
  9321. height:22px;
  9322. background:inherit;
  9323. background-color:rgba(255, 255, 255, 0);
  9324. border:none;
  9325. border-radius:0px;
  9326. -moz-box-shadow:none;
  9327. -webkit-box-shadow:none;
  9328. box-shadow:none;
  9329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9330. font-weight:400;
  9331. font-style:normal;
  9332. font-size:16px;
  9333. }
  9334. #u2140 {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:147px;
  9338. top:642px;
  9339. width:65px;
  9340. height:22px;
  9341. display:flex;
  9342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9343. font-weight:400;
  9344. font-style:normal;
  9345. font-size:16px;
  9346. }
  9347. #u2140 .text {
  9348. position:absolute;
  9349. align-self:flex-start;
  9350. padding:0px 0px 0px 0px;
  9351. box-sizing:border-box;
  9352. width:100%;
  9353. }
  9354. #u2140_text {
  9355. border-width:0px;
  9356. white-space:nowrap;
  9357. text-transform:none;
  9358. }
  9359. #u2141_div {
  9360. border-width:0px;
  9361. position:absolute;
  9362. left:0px;
  9363. top:0px;
  9364. width:65px;
  9365. height:22px;
  9366. background:inherit;
  9367. background-color:rgba(255, 255, 255, 0);
  9368. border:none;
  9369. border-radius:0px;
  9370. -moz-box-shadow:none;
  9371. -webkit-box-shadow:none;
  9372. box-shadow:none;
  9373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9374. font-weight:400;
  9375. font-style:normal;
  9376. font-size:16px;
  9377. }
  9378. #u2141 {
  9379. border-width:0px;
  9380. position:absolute;
  9381. left:147px;
  9382. top:725px;
  9383. width:65px;
  9384. height:22px;
  9385. display:flex;
  9386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9387. font-weight:400;
  9388. font-style:normal;
  9389. font-size:16px;
  9390. }
  9391. #u2141 .text {
  9392. position:absolute;
  9393. align-self:flex-start;
  9394. padding:0px 0px 0px 0px;
  9395. box-sizing:border-box;
  9396. width:100%;
  9397. }
  9398. #u2141_text {
  9399. border-width:0px;
  9400. white-space:nowrap;
  9401. text-transform:none;
  9402. }