styles.css 132 KB

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