styles.css 238 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1831px;
  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. #u96190_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. #u96190 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u96190 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u96190_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u96191_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. #u96191 {
  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. #u96191 .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. #u96191_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u96192_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. #u96192 {
  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. #u96192 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u96192_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u96193 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u96194_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u96194 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u96194 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u96194_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u96195_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. #u96195 {
  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. #u96195 .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. #u96195_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u96196_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. #u96196 {
  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. #u96196 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u96196_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u96197 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u96198_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u96198_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u96198_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u96198 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u96198 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u96198_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u96198.disabled {
  356. }
  357. .u96198_input_option {
  358. font-size:14px;
  359. }
  360. #u96199_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u96199 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u96199 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u96199_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u96200_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u96200 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u96200 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u96200_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u96201_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u96201 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u96201 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u96201_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u96202 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u96203_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u96203 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u96203 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u96203_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u96204_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u96204 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u96204 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u96204_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u96205 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u96206_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u96206 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u96206 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u96206_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u96207_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u96207 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u96207 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u96207_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u96208 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u96209_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u96209 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u96209 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u96209_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u96210_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u96210 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u96210 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u96210_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u96211 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u96212_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u96212 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u96212 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u96212_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u96213_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u96213 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u96213 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u96213_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u96214 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u96215_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u96215 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u96215 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u96215_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u96216_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u96216 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u96216 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u96216_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u96217 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u96218_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u96218 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u96218 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u96218_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u96219_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u96219 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u96219 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u96219_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u96220 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u96221_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u96221 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u96221 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u96221_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u96222_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u96222 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u96222 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u96222_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u96223 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u96224_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u96224 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u96224 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u96224_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u96225_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u96225 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u96225 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u96225_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u96226 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u96227_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u96227 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u96227 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u96227_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u96228_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u96228 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u96228 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u96228_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u96229 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u96230_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u96230 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u96230 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u96230_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u96231_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u96231 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u96231 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u96231_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u96232_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u96232 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u96232 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u96232_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u96233_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u96233 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u96233 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u96233_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u96234_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u96234 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u96234 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u96234_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u96235_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u96235 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u96235 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u96235_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u96236 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u96237_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u96237 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u96237 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u96237_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u96238_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u96238 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u96238 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u96238_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u96239 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u96240_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u96240 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u96240 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u96240_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u96241_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u96241 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u96241 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u96241_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u96242_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1381px;
  1644. height:1522px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(215, 215, 215, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:12px;
  1659. color:#FFFFFF;
  1660. text-align:left;
  1661. }
  1662. #u96242 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:330px;
  1666. top:50px;
  1667. width:1381px;
  1668. height:1522px;
  1669. display:flex;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:12px;
  1674. color:#FFFFFF;
  1675. text-align:left;
  1676. }
  1677. #u96242 .text {
  1678. position:absolute;
  1679. align-self:center;
  1680. padding:2px 2px 2px 50px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u96242_text {
  1685. border-width:0px;
  1686. word-wrap:break-word;
  1687. text-transform:none;
  1688. visibility:hidden;
  1689. }
  1690. #u96243_div {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:127px;
  1696. height:50px;
  1697. background:inherit;
  1698. background-color:rgba(255, 255, 255, 0);
  1699. border:none;
  1700. border-left:0px;
  1701. border-top:0px;
  1702. border-right:0px;
  1703. border-radius:0px;
  1704. border-bottom-right-radius:0px;
  1705. border-bottom-left-radius:0px;
  1706. -moz-box-shadow:none;
  1707. -webkit-box-shadow:none;
  1708. box-shadow:none;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:18px;
  1713. }
  1714. #u96243 {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:350px;
  1718. top:50px;
  1719. width:127px;
  1720. height:50px;
  1721. display:flex;
  1722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1723. font-weight:400;
  1724. font-style:normal;
  1725. font-size:18px;
  1726. }
  1727. #u96243 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:0px 0px 0px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u96243_text {
  1735. border-width:0px;
  1736. white-space:nowrap;
  1737. text-transform:none;
  1738. }
  1739. #u96245 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:0px;
  1743. top:0px;
  1744. width:0px;
  1745. height:0px;
  1746. }
  1747. #u96246_div {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:30px;
  1753. height:30px;
  1754. background:inherit;
  1755. background-color:rgba(255, 255, 255, 1);
  1756. box-sizing:border-box;
  1757. border-width:1px;
  1758. border-style:solid;
  1759. border-color:rgba(228, 228, 228, 1);
  1760. border-radius:4px;
  1761. -moz-box-shadow:none;
  1762. -webkit-box-shadow:none;
  1763. box-shadow:none;
  1764. font-family:'Microsoft YaHei', sans-serif;
  1765. font-weight:400;
  1766. font-style:normal;
  1767. font-size:14px;
  1768. }
  1769. #u96246 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:1126px;
  1773. top:582px;
  1774. width:30px;
  1775. height:30px;
  1776. display:flex;
  1777. font-family:'Microsoft YaHei', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:14px;
  1781. }
  1782. #u96246 .text {
  1783. position:absolute;
  1784. align-self:center;
  1785. padding:2px 2px 2px 2px;
  1786. box-sizing:border-box;
  1787. width:100%;
  1788. }
  1789. #u96246_text {
  1790. border-width:0px;
  1791. word-wrap:break-word;
  1792. text-transform:none;
  1793. }
  1794. #u96247_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:49px;
  1800. height:30px;
  1801. background:inherit;
  1802. background-color:rgba(255, 255, 255, 0);
  1803. box-sizing:border-box;
  1804. border-width:1px;
  1805. border-style:solid;
  1806. border-color:rgba(188, 188, 188, 1);
  1807. border-radius:4px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-family:'Microsoft YaHei', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:14px;
  1815. color:#1E1E1E;
  1816. }
  1817. #u96247 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:1642px;
  1821. top:582px;
  1822. width:49px;
  1823. height:30px;
  1824. display:flex;
  1825. font-family:'Microsoft YaHei', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:14px;
  1829. color:#1E1E1E;
  1830. }
  1831. #u96247 .text {
  1832. position:absolute;
  1833. align-self:center;
  1834. padding:5px 10px 5px 10px;
  1835. box-sizing:border-box;
  1836. width:100%;
  1837. }
  1838. #u96247_text {
  1839. border-width:0px;
  1840. white-space:nowrap;
  1841. text-transform:none;
  1842. }
  1843. #u96248 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:0px;
  1849. height:0px;
  1850. }
  1851. #u96249_div {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:0px;
  1855. top:0px;
  1856. width:33px;
  1857. height:24px;
  1858. background:inherit;
  1859. background-color:rgba(255, 255, 255, 1);
  1860. border:none;
  1861. border-radius:0px;
  1862. -moz-box-shadow:none;
  1863. -webkit-box-shadow:none;
  1864. box-shadow:none;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:14px;
  1869. color:#BCBCBC;
  1870. text-align:left;
  1871. }
  1872. #u96249 {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:1410px;
  1876. top:585px;
  1877. width:33px;
  1878. height:24px;
  1879. display:flex;
  1880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:14px;
  1884. color:#BCBCBC;
  1885. text-align:left;
  1886. }
  1887. #u96249 .text {
  1888. position:absolute;
  1889. align-self:center;
  1890. padding:2px 2px 2px 2px;
  1891. box-sizing:border-box;
  1892. width:100%;
  1893. }
  1894. #u96249_text {
  1895. border-width:0px;
  1896. white-space:nowrap;
  1897. text-transform:none;
  1898. }
  1899. #u96250_div {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:40px;
  1905. height:30px;
  1906. background:inherit;
  1907. background-color:rgba(255, 255, 255, 1);
  1908. box-sizing:border-box;
  1909. border-width:1px;
  1910. border-style:solid;
  1911. border-color:rgba(228, 228, 228, 1);
  1912. border-radius:4px;
  1913. -moz-box-shadow:none;
  1914. -webkit-box-shadow:none;
  1915. box-shadow:none;
  1916. font-family:'Microsoft YaHei', sans-serif;
  1917. font-weight:400;
  1918. font-style:normal;
  1919. font-size:14px;
  1920. }
  1921. #u96250 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:1445px;
  1925. top:582px;
  1926. width:40px;
  1927. height:30px;
  1928. display:flex;
  1929. font-family:'Microsoft YaHei', sans-serif;
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:14px;
  1933. }
  1934. #u96250 .text {
  1935. position:absolute;
  1936. align-self:center;
  1937. padding:2px 2px 2px 2px;
  1938. box-sizing:border-box;
  1939. width:100%;
  1940. }
  1941. #u96250_text {
  1942. border-width:0px;
  1943. word-wrap:break-word;
  1944. text-transform:none;
  1945. visibility:hidden;
  1946. }
  1947. #u96251_div {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:19px;
  1953. height:24px;
  1954. background:inherit;
  1955. background-color:rgba(255, 255, 255, 1);
  1956. border:none;
  1957. border-radius:0px;
  1958. -moz-box-shadow:none;
  1959. -webkit-box-shadow:none;
  1960. box-shadow:none;
  1961. font-family:'Microsoft YaHei', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:14px;
  1965. color:#BCBCBC;
  1966. text-align:left;
  1967. }
  1968. #u96251 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:1487px;
  1972. top:586px;
  1973. width:19px;
  1974. height:24px;
  1975. display:flex;
  1976. font-family:'Microsoft YaHei', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:14px;
  1980. color:#BCBCBC;
  1981. text-align:left;
  1982. }
  1983. #u96251 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:2px 2px 2px 2px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u96251_text {
  1991. border-width:0px;
  1992. white-space:nowrap;
  1993. text-transform:none;
  1994. }
  1995. #u96252_input {
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:34px;
  2000. height:25px;
  2001. padding:2px 2px 2px 2px;
  2002. font-family:'Microsoft YaHei', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:13px;
  2006. letter-spacing:normal;
  2007. color:#000000;
  2008. vertical-align:none;
  2009. text-align:left;
  2010. text-transform:none;
  2011. background-color:transparent;
  2012. border-color:transparent;
  2013. }
  2014. #u96252_input.disabled {
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:34px;
  2019. height:25px;
  2020. padding:2px 2px 2px 2px;
  2021. font-family:'Microsoft YaHei', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:13px;
  2025. letter-spacing:normal;
  2026. color:#000000;
  2027. vertical-align:none;
  2028. text-align:left;
  2029. text-transform:none;
  2030. background-color:transparent;
  2031. border-color:transparent;
  2032. }
  2033. #u96252_div {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:34px;
  2039. height:25px;
  2040. background:inherit;
  2041. background-color:rgba(255, 255, 255, 1);
  2042. border:none;
  2043. border-radius:0px;
  2044. -moz-box-shadow:none;
  2045. -webkit-box-shadow:none;
  2046. box-shadow:none;
  2047. font-family:'Microsoft YaHei', sans-serif;
  2048. font-weight:400;
  2049. font-style:normal;
  2050. }
  2051. #u96252 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:1448px;
  2055. top:584px;
  2056. width:34px;
  2057. height:25px;
  2058. display:flex;
  2059. font-family:'Microsoft YaHei', sans-serif;
  2060. font-weight:400;
  2061. font-style:normal;
  2062. }
  2063. #u96252 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 2px 2px 2px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u96252_div.disabled {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:34px;
  2076. height:25px;
  2077. background:inherit;
  2078. background-color:rgba(240, 240, 240, 1);
  2079. border:none;
  2080. border-radius:0px;
  2081. -moz-box-shadow:none;
  2082. -webkit-box-shadow:none;
  2083. box-shadow:none;
  2084. font-family:'Microsoft YaHei', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. }
  2088. #u96252.disabled {
  2089. }
  2090. #u96253_div {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:30px;
  2096. height:30px;
  2097. background:inherit;
  2098. background-color:rgba(41, 143, 255, 1);
  2099. border:none;
  2100. border-radius:4px;
  2101. -moz-box-shadow:none;
  2102. -webkit-box-shadow:none;
  2103. box-shadow:none;
  2104. font-family:'Microsoft YaHei', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:14px;
  2108. color:#FFFFFF;
  2109. }
  2110. #u96253 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:1160px;
  2114. top:582px;
  2115. width:30px;
  2116. height:30px;
  2117. display:flex;
  2118. font-family:'Microsoft YaHei', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:14px;
  2122. color:#FFFFFF;
  2123. }
  2124. #u96253 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:2px 2px 2px 2px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u96253_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. }
  2136. #u96254_div {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:30px;
  2142. height:30px;
  2143. background:inherit;
  2144. background-color:rgba(255, 255, 255, 1);
  2145. box-sizing:border-box;
  2146. border-width:1px;
  2147. border-style:solid;
  2148. border-color:rgba(228, 228, 228, 1);
  2149. border-radius:4px;
  2150. -moz-box-shadow:none;
  2151. -webkit-box-shadow:none;
  2152. box-shadow:none;
  2153. font-family:'Microsoft YaHei', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:14px;
  2157. }
  2158. #u96254 {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:1194px;
  2162. top:582px;
  2163. width:30px;
  2164. height:30px;
  2165. display:flex;
  2166. font-family:'Microsoft YaHei', sans-serif;
  2167. font-weight:400;
  2168. font-style:normal;
  2169. font-size:14px;
  2170. }
  2171. #u96254 .text {
  2172. position:absolute;
  2173. align-self:center;
  2174. padding:2px 2px 2px 2px;
  2175. box-sizing:border-box;
  2176. width:100%;
  2177. }
  2178. #u96254_text {
  2179. border-width:0px;
  2180. word-wrap:break-word;
  2181. text-transform:none;
  2182. }
  2183. #u96255_div {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:30px;
  2189. height:30px;
  2190. background:inherit;
  2191. background-color:rgba(255, 255, 255, 1);
  2192. box-sizing:border-box;
  2193. border-width:1px;
  2194. border-style:solid;
  2195. border-color:rgba(228, 228, 228, 1);
  2196. border-radius:4px;
  2197. -moz-box-shadow:none;
  2198. -webkit-box-shadow:none;
  2199. box-shadow:none;
  2200. font-family:'Microsoft YaHei', sans-serif;
  2201. font-weight:400;
  2202. font-style:normal;
  2203. font-size:14px;
  2204. }
  2205. #u96255 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:1228px;
  2209. top:582px;
  2210. width:30px;
  2211. height:30px;
  2212. display:flex;
  2213. font-family:'Microsoft YaHei', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:14px;
  2217. }
  2218. #u96255 .text {
  2219. position:absolute;
  2220. align-self:center;
  2221. padding:2px 2px 2px 2px;
  2222. box-sizing:border-box;
  2223. width:100%;
  2224. }
  2225. #u96255_text {
  2226. border-width:0px;
  2227. word-wrap:break-word;
  2228. text-transform:none;
  2229. }
  2230. #u96256_div {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:30px;
  2236. height:30px;
  2237. background:inherit;
  2238. background-color:rgba(255, 255, 255, 1);
  2239. border:none;
  2240. border-radius:4px;
  2241. -moz-box-shadow:none;
  2242. -webkit-box-shadow:none;
  2243. box-shadow:none;
  2244. font-family:'Microsoft YaHei', sans-serif;
  2245. font-weight:400;
  2246. font-style:normal;
  2247. font-size:14px;
  2248. }
  2249. #u96256 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:1258px;
  2253. top:582px;
  2254. width:30px;
  2255. height:30px;
  2256. display:flex;
  2257. font-family:'Microsoft YaHei', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:14px;
  2261. }
  2262. #u96256 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:2px 2px 2px 2px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u96256_text {
  2270. border-width:0px;
  2271. word-wrap:break-word;
  2272. text-transform:none;
  2273. }
  2274. #u96257_div {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:30px;
  2280. height:30px;
  2281. background:inherit;
  2282. background-color:rgba(255, 255, 255, 1);
  2283. box-sizing:border-box;
  2284. border-width:1px;
  2285. border-style:solid;
  2286. border-color:rgba(228, 228, 228, 1);
  2287. border-radius:4px;
  2288. -moz-box-shadow:none;
  2289. -webkit-box-shadow:none;
  2290. box-shadow:none;
  2291. font-family:'Microsoft YaHei', sans-serif;
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:14px;
  2295. }
  2296. #u96257 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:1292px;
  2300. top:582px;
  2301. width:30px;
  2302. height:30px;
  2303. display:flex;
  2304. font-family:'Microsoft YaHei', sans-serif;
  2305. font-weight:400;
  2306. font-style:normal;
  2307. font-size:14px;
  2308. }
  2309. #u96257 .text {
  2310. position:absolute;
  2311. align-self:center;
  2312. padding:2px 2px 2px 2px;
  2313. box-sizing:border-box;
  2314. width:100%;
  2315. }
  2316. #u96257_text {
  2317. border-width:0px;
  2318. word-wrap:break-word;
  2319. text-transform:none;
  2320. }
  2321. #u96258_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:32px;
  2327. height:21px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 1);
  2330. border:none;
  2331. border-radius:15px;
  2332. -moz-box-shadow:none;
  2333. -webkit-box-shadow:none;
  2334. box-shadow:none;
  2335. font-family:'Microsoft YaHei', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:14px;
  2339. color:#1E1E1E;
  2340. }
  2341. #u96258 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:1366px;
  2345. top:587px;
  2346. width:32px;
  2347. height:21px;
  2348. display:flex;
  2349. font-family:'Microsoft YaHei', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:14px;
  2353. color:#1E1E1E;
  2354. }
  2355. #u96258 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 2px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u96258_text {
  2363. border-width:0px;
  2364. white-space:nowrap;
  2365. text-transform:none;
  2366. }
  2367. #u96259 {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:0px;
  2373. height:0px;
  2374. }
  2375. #u96260_div {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:31px;
  2381. height:30px;
  2382. background:inherit;
  2383. background-color:rgba(255, 255, 255, 1);
  2384. box-sizing:border-box;
  2385. border-width:1px;
  2386. border-style:solid;
  2387. border-color:rgba(228, 228, 228, 1);
  2388. border-radius:4px;
  2389. -moz-box-shadow:none;
  2390. -webkit-box-shadow:none;
  2391. box-shadow:none;
  2392. font-family:'Microsoft YaHei', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:12px;
  2396. }
  2397. #u96260 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:1091px;
  2401. top:582px;
  2402. width:31px;
  2403. height:30px;
  2404. display:flex;
  2405. font-family:'Microsoft YaHei', sans-serif;
  2406. font-weight:400;
  2407. font-style:normal;
  2408. font-size:12px;
  2409. }
  2410. #u96260 .text {
  2411. position:absolute;
  2412. align-self:center;
  2413. padding:2px 2px 2px 2px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u96260_text {
  2418. border-width:0px;
  2419. word-wrap:break-word;
  2420. text-transform:none;
  2421. visibility:hidden;
  2422. }
  2423. #u96261_img {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:8px;
  2429. height:14px;
  2430. }
  2431. #u96261 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:1103px;
  2435. top:590px;
  2436. width:8px;
  2437. height:14px;
  2438. display:flex;
  2439. font-family:'Microsoft YaHei', sans-serif;
  2440. font-weight:400;
  2441. font-style:normal;
  2442. font-size:12px;
  2443. }
  2444. #u96261 .text {
  2445. position:absolute;
  2446. align-self:center;
  2447. padding:2px 2px 2px 2px;
  2448. box-sizing:border-box;
  2449. width:100%;
  2450. }
  2451. #u96261_text {
  2452. border-width:0px;
  2453. word-wrap:break-word;
  2454. text-transform:none;
  2455. visibility:hidden;
  2456. }
  2457. #u96262 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:0px;
  2461. top:0px;
  2462. width:0px;
  2463. height:0px;
  2464. }
  2465. #u96263_div {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:31px;
  2471. height:30px;
  2472. background:inherit;
  2473. background-color:rgba(255, 255, 255, 1);
  2474. box-sizing:border-box;
  2475. border-width:1px;
  2476. border-style:solid;
  2477. border-color:rgba(228, 228, 228, 1);
  2478. border-radius:4px;
  2479. -moz-box-shadow:none;
  2480. -webkit-box-shadow:none;
  2481. box-shadow:none;
  2482. font-family:'Microsoft YaHei', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:12px;
  2486. }
  2487. #u96263 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:1325px;
  2491. top:582px;
  2492. width:31px;
  2493. height:30px;
  2494. display:flex;
  2495. font-family:'Microsoft YaHei', sans-serif;
  2496. font-weight:400;
  2497. font-style:normal;
  2498. font-size:12px;
  2499. }
  2500. #u96263 .text {
  2501. position:absolute;
  2502. align-self:center;
  2503. padding:2px 2px 2px 2px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u96263_text {
  2508. border-width:0px;
  2509. word-wrap:break-word;
  2510. text-transform:none;
  2511. visibility:hidden;
  2512. }
  2513. #u96264_img {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:0px;
  2517. top:0px;
  2518. width:8px;
  2519. height:14px;
  2520. }
  2521. #u96264 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:1338px;
  2525. top:590px;
  2526. width:8px;
  2527. height:14px;
  2528. display:flex;
  2529. font-family:'Microsoft YaHei', sans-serif;
  2530. font-weight:400;
  2531. font-style:normal;
  2532. font-size:12px;
  2533. }
  2534. #u96264 .text {
  2535. position:absolute;
  2536. align-self:center;
  2537. padding:2px 2px 2px 2px;
  2538. box-sizing:border-box;
  2539. width:100%;
  2540. }
  2541. #u96264_text {
  2542. border-width:0px;
  2543. word-wrap:break-word;
  2544. text-transform:none;
  2545. visibility:hidden;
  2546. }
  2547. #u96265 {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:0px;
  2553. height:0px;
  2554. }
  2555. #u96266_div {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:33px;
  2561. height:24px;
  2562. background:inherit;
  2563. background-color:rgba(255, 255, 255, 1);
  2564. border:none;
  2565. border-radius:0px;
  2566. -moz-box-shadow:none;
  2567. -webkit-box-shadow:none;
  2568. box-shadow:none;
  2569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2570. font-weight:400;
  2571. font-style:normal;
  2572. font-size:14px;
  2573. color:#BCBCBC;
  2574. text-align:left;
  2575. }
  2576. #u96266 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:1526px;
  2580. top:585px;
  2581. width:33px;
  2582. height:24px;
  2583. display:flex;
  2584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:14px;
  2588. color:#BCBCBC;
  2589. text-align:left;
  2590. }
  2591. #u96266 .text {
  2592. position:absolute;
  2593. align-self:center;
  2594. padding:2px 2px 2px 2px;
  2595. box-sizing:border-box;
  2596. width:100%;
  2597. }
  2598. #u96266_text {
  2599. border-width:0px;
  2600. white-space:nowrap;
  2601. text-transform:none;
  2602. }
  2603. #u96267_div {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:0px;
  2607. top:0px;
  2608. width:40px;
  2609. height:30px;
  2610. background:inherit;
  2611. background-color:rgba(255, 255, 255, 1);
  2612. box-sizing:border-box;
  2613. border-width:1px;
  2614. border-style:solid;
  2615. border-color:rgba(228, 228, 228, 1);
  2616. border-radius:4px;
  2617. -moz-box-shadow:none;
  2618. -webkit-box-shadow:none;
  2619. box-shadow:none;
  2620. font-family:'Microsoft YaHei', sans-serif;
  2621. font-weight:400;
  2622. font-style:normal;
  2623. font-size:14px;
  2624. }
  2625. #u96267 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:1561px;
  2629. top:582px;
  2630. width:40px;
  2631. height:30px;
  2632. display:flex;
  2633. font-family:'Microsoft YaHei', sans-serif;
  2634. font-weight:400;
  2635. font-style:normal;
  2636. font-size:14px;
  2637. }
  2638. #u96267 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 2px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u96267_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u96268_div {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:19px;
  2657. height:24px;
  2658. background:inherit;
  2659. background-color:rgba(255, 255, 255, 1);
  2660. border:none;
  2661. border-radius:0px;
  2662. -moz-box-shadow:none;
  2663. -webkit-box-shadow:none;
  2664. box-shadow:none;
  2665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2666. font-weight:400;
  2667. font-style:normal;
  2668. font-size:14px;
  2669. color:#BCBCBC;
  2670. text-align:left;
  2671. }
  2672. #u96268 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:1603px;
  2676. top:586px;
  2677. width:19px;
  2678. height:24px;
  2679. display:flex;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:14px;
  2684. color:#BCBCBC;
  2685. text-align:left;
  2686. }
  2687. #u96268 .text {
  2688. position:absolute;
  2689. align-self:center;
  2690. padding:2px 2px 2px 2px;
  2691. box-sizing:border-box;
  2692. width:100%;
  2693. }
  2694. #u96268_text {
  2695. border-width:0px;
  2696. white-space:nowrap;
  2697. text-transform:none;
  2698. }
  2699. #u96269_input {
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:34px;
  2704. height:25px;
  2705. padding:2px 2px 2px 2px;
  2706. font-family:'Microsoft YaHei', sans-serif;
  2707. font-weight:400;
  2708. font-style:normal;
  2709. font-size:13px;
  2710. letter-spacing:normal;
  2711. color:#000000;
  2712. vertical-align:none;
  2713. text-align:left;
  2714. text-transform:none;
  2715. background-color:transparent;
  2716. border-color:transparent;
  2717. }
  2718. #u96269_input.disabled {
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:34px;
  2723. height:25px;
  2724. padding:2px 2px 2px 2px;
  2725. font-family:'Microsoft YaHei', sans-serif;
  2726. font-weight:400;
  2727. font-style:normal;
  2728. font-size:13px;
  2729. letter-spacing:normal;
  2730. color:#000000;
  2731. vertical-align:none;
  2732. text-align:left;
  2733. text-transform:none;
  2734. background-color:transparent;
  2735. border-color:transparent;
  2736. }
  2737. #u96269_div {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:0px;
  2741. top:0px;
  2742. width:34px;
  2743. height:25px;
  2744. background:inherit;
  2745. background-color:rgba(255, 255, 255, 1);
  2746. border:none;
  2747. border-radius:0px;
  2748. -moz-box-shadow:none;
  2749. -webkit-box-shadow:none;
  2750. box-shadow:none;
  2751. font-family:'Microsoft YaHei', sans-serif;
  2752. font-weight:400;
  2753. font-style:normal;
  2754. }
  2755. #u96269 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:1564px;
  2759. top:584px;
  2760. width:34px;
  2761. height:25px;
  2762. display:flex;
  2763. font-family:'Microsoft YaHei', sans-serif;
  2764. font-weight:400;
  2765. font-style:normal;
  2766. }
  2767. #u96269 .text {
  2768. position:absolute;
  2769. align-self:center;
  2770. padding:2px 2px 2px 2px;
  2771. box-sizing:border-box;
  2772. width:100%;
  2773. }
  2774. #u96269_div.disabled {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:34px;
  2780. height:25px;
  2781. background:inherit;
  2782. background-color:rgba(240, 240, 240, 1);
  2783. border:none;
  2784. border-radius:0px;
  2785. -moz-box-shadow:none;
  2786. -webkit-box-shadow:none;
  2787. box-shadow:none;
  2788. font-family:'Microsoft YaHei', sans-serif;
  2789. font-weight:400;
  2790. font-style:normal;
  2791. }
  2792. #u96269.disabled {
  2793. }
  2794. #u96270_div {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:55px;
  2800. height:30px;
  2801. background:inherit;
  2802. background-color:rgba(255, 255, 255, 1);
  2803. box-sizing:border-box;
  2804. border-width:1px;
  2805. border-style:solid;
  2806. border-color:rgba(170, 170, 170, 1);
  2807. border-radius:4px;
  2808. -moz-box-shadow:none;
  2809. -webkit-box-shadow:none;
  2810. box-shadow:none;
  2811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2812. font-weight:400;
  2813. font-style:normal;
  2814. font-size:12px;
  2815. color:#555555;
  2816. }
  2817. #u96270 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:351px;
  2821. top:187px;
  2822. width:55px;
  2823. height:30px;
  2824. display:flex;
  2825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:12px;
  2829. color:#555555;
  2830. }
  2831. #u96270 .text {
  2832. position:absolute;
  2833. align-self:center;
  2834. padding:5px 15px 5px 15px;
  2835. box-sizing:border-box;
  2836. width:100%;
  2837. }
  2838. #u96270_text {
  2839. border-width:0px;
  2840. white-space:nowrap;
  2841. text-transform:none;
  2842. }
  2843. #u96271 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:0px;
  2849. height:0px;
  2850. }
  2851. #u96272_div {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:140px;
  2857. height:28px;
  2858. background:inherit;
  2859. background-color:rgba(255, 255, 255, 1);
  2860. box-sizing:border-box;
  2861. border-width:1px;
  2862. border-style:solid;
  2863. border-color:rgba(201, 201, 201, 1);
  2864. border-radius:4px;
  2865. -moz-box-shadow:none;
  2866. -webkit-box-shadow:none;
  2867. box-shadow:none;
  2868. font-family:'Microsoft YaHei', sans-serif;
  2869. font-weight:400;
  2870. font-style:normal;
  2871. font-size:14px;
  2872. color:#CCCCCC;
  2873. text-align:left;
  2874. }
  2875. #u96272 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:350px;
  2879. top:100px;
  2880. width:140px;
  2881. height:28px;
  2882. display:flex;
  2883. font-family:'Microsoft YaHei', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:14px;
  2887. color:#CCCCCC;
  2888. text-align:left;
  2889. }
  2890. #u96272 .text {
  2891. position:absolute;
  2892. align-self:center;
  2893. padding:2px 8px 2px 8px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u96272_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. visibility:hidden;
  2902. }
  2903. #u96273_input {
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:114px;
  2908. height:26px;
  2909. padding:2px 2px 2px 2px;
  2910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2911. font-weight:400;
  2912. font-style:normal;
  2913. font-size:14px;
  2914. letter-spacing:normal;
  2915. color:#000000;
  2916. vertical-align:none;
  2917. text-align:left;
  2918. text-transform:none;
  2919. background-color:transparent;
  2920. border-color:transparent;
  2921. }
  2922. #u96273_input.disabled {
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:114px;
  2927. height:26px;
  2928. padding:2px 2px 2px 2px;
  2929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2930. font-weight:400;
  2931. font-style:normal;
  2932. font-size:14px;
  2933. letter-spacing:normal;
  2934. color:#000000;
  2935. vertical-align:none;
  2936. text-align:left;
  2937. text-transform:none;
  2938. background-color:transparent;
  2939. border-color:transparent;
  2940. }
  2941. #u96273_div {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:114px;
  2947. height:26px;
  2948. background:inherit;
  2949. background-color:rgba(255, 255, 255, 1);
  2950. border:none;
  2951. border-radius:0px;
  2952. -moz-box-shadow:none;
  2953. -webkit-box-shadow:none;
  2954. box-shadow:none;
  2955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2956. font-weight:400;
  2957. font-style:normal;
  2958. font-size:14px;
  2959. }
  2960. #u96273 {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:356px;
  2964. top:101px;
  2965. width:114px;
  2966. height:26px;
  2967. display:flex;
  2968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2969. font-weight:400;
  2970. font-style:normal;
  2971. font-size:14px;
  2972. }
  2973. #u96273 .text {
  2974. position:absolute;
  2975. align-self:center;
  2976. padding:2px 2px 2px 2px;
  2977. box-sizing:border-box;
  2978. width:100%;
  2979. }
  2980. #u96273_div.disabled {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:114px;
  2986. height:26px;
  2987. background:inherit;
  2988. background-color:rgba(240, 240, 240, 1);
  2989. border:none;
  2990. border-radius:0px;
  2991. -moz-box-shadow:none;
  2992. -webkit-box-shadow:none;
  2993. box-shadow:none;
  2994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2995. font-weight:400;
  2996. font-style:normal;
  2997. font-size:14px;
  2998. }
  2999. #u96273.disabled {
  3000. }
  3001. #u96274_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:13px;
  3007. height:15px;
  3008. }
  3009. #u96274 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:470px;
  3013. top:107px;
  3014. width:13px;
  3015. height:15px;
  3016. display:flex;
  3017. }
  3018. #u96274 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 2px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u96274_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u96275 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:351px;
  3035. top:228px;
  3036. width:1480px;
  3037. height:322px;
  3038. }
  3039. #u96276_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:60px;
  3045. height:38px;
  3046. }
  3047. #u96276 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:60px;
  3053. height:38px;
  3054. display:flex;
  3055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3056. font-weight:400;
  3057. font-style:normal;
  3058. font-size:12px;
  3059. color:#FFFFFF;
  3060. }
  3061. #u96276 .text {
  3062. position:absolute;
  3063. align-self:center;
  3064. padding:2px 2px 2px 0px;
  3065. box-sizing:border-box;
  3066. width:100%;
  3067. }
  3068. #u96276_text {
  3069. border-width:0px;
  3070. word-wrap:break-word;
  3071. text-transform:none;
  3072. }
  3073. #u96277_img {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:60px;
  3079. height:38px;
  3080. }
  3081. #u96277 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:60px;
  3085. top:0px;
  3086. width:60px;
  3087. height:38px;
  3088. display:flex;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:12px;
  3093. color:#FFFFFF;
  3094. }
  3095. #u96277 .text {
  3096. position:absolute;
  3097. align-self:center;
  3098. padding:2px 2px 2px 0px;
  3099. box-sizing:border-box;
  3100. width:100%;
  3101. }
  3102. #u96277_text {
  3103. border-width:0px;
  3104. word-wrap:break-word;
  3105. text-transform:none;
  3106. }
  3107. #u96278_img {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:60px;
  3113. height:38px;
  3114. }
  3115. #u96278 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:120px;
  3119. top:0px;
  3120. width:60px;
  3121. height:38px;
  3122. display:flex;
  3123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:12px;
  3127. color:#FFFFFF;
  3128. }
  3129. #u96278 .text {
  3130. position:absolute;
  3131. align-self:center;
  3132. padding:2px 2px 2px 0px;
  3133. box-sizing:border-box;
  3134. width:100%;
  3135. }
  3136. #u96278_text {
  3137. border-width:0px;
  3138. word-wrap:break-word;
  3139. text-transform:none;
  3140. }
  3141. #u96279_img {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:60px;
  3147. height:38px;
  3148. }
  3149. #u96279 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:180px;
  3153. top:0px;
  3154. width:60px;
  3155. height:38px;
  3156. display:flex;
  3157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3158. font-weight:400;
  3159. font-style:normal;
  3160. font-size:12px;
  3161. color:#FFFFFF;
  3162. }
  3163. #u96279 .text {
  3164. position:absolute;
  3165. align-self:center;
  3166. padding:2px 2px 2px 0px;
  3167. box-sizing:border-box;
  3168. width:100%;
  3169. }
  3170. #u96279_text {
  3171. border-width:0px;
  3172. word-wrap:break-word;
  3173. text-transform:none;
  3174. }
  3175. #u96280_img {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:60px;
  3181. height:38px;
  3182. }
  3183. #u96280 {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:240px;
  3187. top:0px;
  3188. width:60px;
  3189. height:38px;
  3190. display:flex;
  3191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3192. font-weight:400;
  3193. font-style:normal;
  3194. font-size:12px;
  3195. color:#FFFFFF;
  3196. }
  3197. #u96280 .text {
  3198. position:absolute;
  3199. align-self:center;
  3200. padding:2px 2px 2px 0px;
  3201. box-sizing:border-box;
  3202. width:100%;
  3203. }
  3204. #u96280_text {
  3205. border-width:0px;
  3206. word-wrap:break-word;
  3207. text-transform:none;
  3208. }
  3209. #u96281_img {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:0px;
  3213. top:0px;
  3214. width:60px;
  3215. height:38px;
  3216. }
  3217. #u96281 {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:300px;
  3221. top:0px;
  3222. width:60px;
  3223. height:38px;
  3224. display:flex;
  3225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3226. font-weight:400;
  3227. font-style:normal;
  3228. font-size:12px;
  3229. color:#FFFFFF;
  3230. }
  3231. #u96281 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 0px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u96281_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. }
  3243. #u96282_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:60px;
  3249. height:38px;
  3250. }
  3251. #u96282 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:360px;
  3255. top:0px;
  3256. width:60px;
  3257. height:38px;
  3258. display:flex;
  3259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. font-size:12px;
  3263. color:#FFFFFF;
  3264. }
  3265. #u96282 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 2px 2px 0px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u96282_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. }
  3277. #u96283_img {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:60px;
  3283. height:38px;
  3284. }
  3285. #u96283 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:420px;
  3289. top:0px;
  3290. width:60px;
  3291. height:38px;
  3292. display:flex;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:12px;
  3297. color:#FFFFFF;
  3298. }
  3299. #u96283 .text {
  3300. position:absolute;
  3301. align-self:center;
  3302. padding:2px 2px 2px 0px;
  3303. box-sizing:border-box;
  3304. width:100%;
  3305. }
  3306. #u96283_text {
  3307. border-width:0px;
  3308. word-wrap:break-word;
  3309. text-transform:none;
  3310. }
  3311. #u96284_img {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:0px;
  3316. width:60px;
  3317. height:38px;
  3318. }
  3319. #u96284 {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:480px;
  3323. top:0px;
  3324. width:60px;
  3325. height:38px;
  3326. display:flex;
  3327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3328. font-weight:400;
  3329. font-style:normal;
  3330. font-size:12px;
  3331. color:#FFFFFF;
  3332. }
  3333. #u96284 .text {
  3334. position:absolute;
  3335. align-self:center;
  3336. padding:2px 2px 2px 0px;
  3337. box-sizing:border-box;
  3338. width:100%;
  3339. }
  3340. #u96284_text {
  3341. border-width:0px;
  3342. word-wrap:break-word;
  3343. text-transform:none;
  3344. }
  3345. #u96285_img {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:70px;
  3351. height:38px;
  3352. }
  3353. #u96285 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:540px;
  3357. top:0px;
  3358. width:70px;
  3359. height:38px;
  3360. display:flex;
  3361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3362. font-weight:400;
  3363. font-style:normal;
  3364. font-size:12px;
  3365. color:#FFFFFF;
  3366. }
  3367. #u96285 .text {
  3368. position:absolute;
  3369. align-self:center;
  3370. padding:2px 2px 2px 0px;
  3371. box-sizing:border-box;
  3372. width:100%;
  3373. }
  3374. #u96285_text {
  3375. border-width:0px;
  3376. word-wrap:break-word;
  3377. text-transform:none;
  3378. }
  3379. #u96286_img {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:50px;
  3385. height:38px;
  3386. }
  3387. #u96286 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:610px;
  3391. top:0px;
  3392. width:50px;
  3393. height:38px;
  3394. display:flex;
  3395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. font-size:12px;
  3399. color:#FFFFFF;
  3400. }
  3401. #u96286 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 0px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u96286_text {
  3409. border-width:0px;
  3410. word-wrap:break-word;
  3411. text-transform:none;
  3412. }
  3413. #u96287_img {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:50px;
  3419. height:38px;
  3420. }
  3421. #u96287 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:660px;
  3425. top:0px;
  3426. width:50px;
  3427. height:38px;
  3428. display:flex;
  3429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3430. font-weight:400;
  3431. font-style:normal;
  3432. font-size:12px;
  3433. color:#FFFFFF;
  3434. }
  3435. #u96287 .text {
  3436. position:absolute;
  3437. align-self:center;
  3438. padding:2px 2px 2px 0px;
  3439. box-sizing:border-box;
  3440. width:100%;
  3441. }
  3442. #u96287_text {
  3443. border-width:0px;
  3444. word-wrap:break-word;
  3445. text-transform:none;
  3446. }
  3447. #u96288_img {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:0px;
  3451. top:0px;
  3452. width:50px;
  3453. height:38px;
  3454. }
  3455. #u96288 {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:710px;
  3459. top:0px;
  3460. width:50px;
  3461. height:38px;
  3462. display:flex;
  3463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:12px;
  3467. color:#FFFFFF;
  3468. }
  3469. #u96288 .text {
  3470. position:absolute;
  3471. align-self:center;
  3472. padding:2px 2px 2px 0px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u96288_text {
  3477. border-width:0px;
  3478. word-wrap:break-word;
  3479. text-transform:none;
  3480. }
  3481. #u96289_img {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:60px;
  3487. height:38px;
  3488. }
  3489. #u96289 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:760px;
  3493. top:0px;
  3494. width:60px;
  3495. height:38px;
  3496. display:flex;
  3497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:12px;
  3501. color:#FFFFFF;
  3502. }
  3503. #u96289 .text {
  3504. position:absolute;
  3505. align-self:center;
  3506. padding:2px 2px 2px 0px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u96289_text {
  3511. border-width:0px;
  3512. word-wrap:break-word;
  3513. text-transform:none;
  3514. }
  3515. #u96290_img {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:60px;
  3521. height:38px;
  3522. }
  3523. #u96290 {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:820px;
  3527. top:0px;
  3528. width:60px;
  3529. height:38px;
  3530. display:flex;
  3531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:12px;
  3535. color:#FFFFFF;
  3536. }
  3537. #u96290 .text {
  3538. position:absolute;
  3539. align-self:center;
  3540. padding:2px 2px 2px 0px;
  3541. box-sizing:border-box;
  3542. width:100%;
  3543. }
  3544. #u96290_text {
  3545. border-width:0px;
  3546. word-wrap:break-word;
  3547. text-transform:none;
  3548. }
  3549. #u96291_img {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:70px;
  3555. height:38px;
  3556. }
  3557. #u96291 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:880px;
  3561. top:0px;
  3562. width:70px;
  3563. height:38px;
  3564. display:flex;
  3565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3566. font-weight:400;
  3567. font-style:normal;
  3568. font-size:12px;
  3569. color:#FFFFFF;
  3570. }
  3571. #u96291 .text {
  3572. position:absolute;
  3573. align-self:center;
  3574. padding:2px 2px 2px 0px;
  3575. box-sizing:border-box;
  3576. width:100%;
  3577. }
  3578. #u96291_text {
  3579. border-width:0px;
  3580. word-wrap:break-word;
  3581. text-transform:none;
  3582. }
  3583. #u96292_img {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:80px;
  3589. height:38px;
  3590. }
  3591. #u96292 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:950px;
  3595. top:0px;
  3596. width:80px;
  3597. height:38px;
  3598. display:flex;
  3599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3600. font-weight:400;
  3601. font-style:normal;
  3602. font-size:12px;
  3603. color:#FFFFFF;
  3604. }
  3605. #u96292 .text {
  3606. position:absolute;
  3607. align-self:center;
  3608. padding:2px 2px 2px 0px;
  3609. box-sizing:border-box;
  3610. width:100%;
  3611. }
  3612. #u96292_text {
  3613. border-width:0px;
  3614. word-wrap:break-word;
  3615. text-transform:none;
  3616. }
  3617. #u96293_img {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:80px;
  3623. height:38px;
  3624. }
  3625. #u96293 {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:1030px;
  3629. top:0px;
  3630. width:80px;
  3631. height:38px;
  3632. display:flex;
  3633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3634. font-weight:400;
  3635. font-style:normal;
  3636. font-size:12px;
  3637. color:#FFFFFF;
  3638. }
  3639. #u96293 .text {
  3640. position:absolute;
  3641. align-self:center;
  3642. padding:2px 2px 2px 0px;
  3643. box-sizing:border-box;
  3644. width:100%;
  3645. }
  3646. #u96293_text {
  3647. border-width:0px;
  3648. word-wrap:break-word;
  3649. text-transform:none;
  3650. }
  3651. #u96294_img {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:80px;
  3657. height:38px;
  3658. }
  3659. #u96294 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:1110px;
  3663. top:0px;
  3664. width:80px;
  3665. height:38px;
  3666. display:flex;
  3667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:12px;
  3671. color:#FFFFFF;
  3672. }
  3673. #u96294 .text {
  3674. position:absolute;
  3675. align-self:center;
  3676. padding:2px 2px 2px 0px;
  3677. box-sizing:border-box;
  3678. width:100%;
  3679. }
  3680. #u96294_text {
  3681. border-width:0px;
  3682. word-wrap:break-word;
  3683. text-transform:none;
  3684. }
  3685. #u96295_img {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:70px;
  3691. height:38px;
  3692. }
  3693. #u96295 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:1190px;
  3697. top:0px;
  3698. width:70px;
  3699. height:38px;
  3700. display:flex;
  3701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:12px;
  3705. color:#FFFFFF;
  3706. }
  3707. #u96295 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 2px 2px 0px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u96295_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. }
  3719. #u96296_img {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:80px;
  3725. height:38px;
  3726. }
  3727. #u96296 {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:1260px;
  3731. top:0px;
  3732. width:80px;
  3733. height:38px;
  3734. display:flex;
  3735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3736. font-weight:400;
  3737. font-style:normal;
  3738. font-size:12px;
  3739. color:#FFFFFF;
  3740. }
  3741. #u96296 .text {
  3742. position:absolute;
  3743. align-self:center;
  3744. padding:2px 2px 2px 0px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u96296_text {
  3749. border-width:0px;
  3750. word-wrap:break-word;
  3751. text-transform:none;
  3752. }
  3753. #u96297_img {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:70px;
  3759. height:38px;
  3760. }
  3761. #u96297 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:1340px;
  3765. top:0px;
  3766. width:70px;
  3767. height:38px;
  3768. display:flex;
  3769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3770. font-weight:400;
  3771. font-style:normal;
  3772. font-size:12px;
  3773. color:#FFFFFF;
  3774. }
  3775. #u96297 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u96297_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. }
  3787. #u96298_img {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:70px;
  3793. height:38px;
  3794. }
  3795. #u96298 {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:1410px;
  3799. top:0px;
  3800. width:70px;
  3801. height:38px;
  3802. display:flex;
  3803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3804. font-weight:400;
  3805. font-style:normal;
  3806. font-size:12px;
  3807. color:#FFFFFF;
  3808. }
  3809. #u96298 .text {
  3810. position:absolute;
  3811. align-self:center;
  3812. padding:2px 2px 2px 0px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u96298_text {
  3817. border-width:0px;
  3818. word-wrap:break-word;
  3819. text-transform:none;
  3820. }
  3821. #u96299_img {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:60px;
  3827. height:38px;
  3828. }
  3829. #u96299 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:38px;
  3834. width:60px;
  3835. height:38px;
  3836. display:flex;
  3837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3838. font-weight:400;
  3839. font-style:normal;
  3840. font-size:12px;
  3841. color:#333333;
  3842. }
  3843. #u96299 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:2px 2px 2px 0px;
  3847. box-sizing:border-box;
  3848. width:100%;
  3849. }
  3850. #u96299_text {
  3851. border-width:0px;
  3852. word-wrap:break-word;
  3853. text-transform:none;
  3854. visibility:hidden;
  3855. }
  3856. #u96300_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:60px;
  3862. height:38px;
  3863. }
  3864. #u96300 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:60px;
  3868. top:38px;
  3869. width:60px;
  3870. height:38px;
  3871. display:flex;
  3872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:12px;
  3876. color:#333333;
  3877. }
  3878. #u96300 .text {
  3879. position:absolute;
  3880. align-self:center;
  3881. padding:2px 2px 2px 0px;
  3882. box-sizing:border-box;
  3883. width:100%;
  3884. }
  3885. #u96300_text {
  3886. border-width:0px;
  3887. word-wrap:break-word;
  3888. text-transform:none;
  3889. visibility:hidden;
  3890. }
  3891. #u96301_img {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:60px;
  3897. height:38px;
  3898. }
  3899. #u96301 {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:120px;
  3903. top:38px;
  3904. width:60px;
  3905. height:38px;
  3906. display:flex;
  3907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3908. font-weight:400;
  3909. font-style:normal;
  3910. font-size:12px;
  3911. color:#333333;
  3912. }
  3913. #u96301 .text {
  3914. position:absolute;
  3915. align-self:center;
  3916. padding:2px 2px 2px 0px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u96301_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. visibility:hidden;
  3925. }
  3926. #u96302_img {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:60px;
  3932. height:38px;
  3933. }
  3934. #u96302 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:180px;
  3938. top:38px;
  3939. width:60px;
  3940. height:38px;
  3941. display:flex;
  3942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. font-size:12px;
  3946. color:#333333;
  3947. }
  3948. #u96302 .text {
  3949. position:absolute;
  3950. align-self:center;
  3951. padding:2px 2px 2px 0px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u96302_text {
  3956. border-width:0px;
  3957. word-wrap:break-word;
  3958. text-transform:none;
  3959. visibility:hidden;
  3960. }
  3961. #u96303_img {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:60px;
  3967. height:38px;
  3968. }
  3969. #u96303 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:240px;
  3973. top:38px;
  3974. width:60px;
  3975. height:38px;
  3976. display:flex;
  3977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:12px;
  3981. color:#333333;
  3982. }
  3983. #u96303 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 0px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u96303_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. visibility:hidden;
  3995. }
  3996. #u96304_img {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:60px;
  4002. height:38px;
  4003. }
  4004. #u96304 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:300px;
  4008. top:38px;
  4009. width:60px;
  4010. height:38px;
  4011. display:flex;
  4012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4013. font-weight:400;
  4014. font-style:normal;
  4015. font-size:12px;
  4016. color:#333333;
  4017. }
  4018. #u96304 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 0px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u96304_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u96305_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:60px;
  4037. height:38px;
  4038. }
  4039. #u96305 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:360px;
  4043. top:38px;
  4044. width:60px;
  4045. height:38px;
  4046. display:flex;
  4047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. font-size:12px;
  4051. color:#333333;
  4052. }
  4053. #u96305 .text {
  4054. position:absolute;
  4055. align-self:center;
  4056. padding:2px 2px 2px 0px;
  4057. box-sizing:border-box;
  4058. width:100%;
  4059. }
  4060. #u96305_text {
  4061. border-width:0px;
  4062. word-wrap:break-word;
  4063. text-transform:none;
  4064. visibility:hidden;
  4065. }
  4066. #u96306_img {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:60px;
  4072. height:38px;
  4073. }
  4074. #u96306 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:420px;
  4078. top:38px;
  4079. width:60px;
  4080. height:38px;
  4081. display:flex;
  4082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4083. font-weight:400;
  4084. font-style:normal;
  4085. font-size:12px;
  4086. color:#0089FE;
  4087. }
  4088. #u96306 .text {
  4089. position:absolute;
  4090. align-self:center;
  4091. padding:2px 2px 2px 0px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u96306_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. visibility:hidden;
  4100. }
  4101. #u96307_img {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:60px;
  4107. height:38px;
  4108. }
  4109. #u96307 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:480px;
  4113. top:38px;
  4114. width:60px;
  4115. height:38px;
  4116. display:flex;
  4117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. font-size:12px;
  4121. color:#0089FE;
  4122. }
  4123. #u96307 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:2px 2px 2px 0px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u96307_text {
  4131. border-width:0px;
  4132. word-wrap:break-word;
  4133. text-transform:none;
  4134. visibility:hidden;
  4135. }
  4136. #u96308_img {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:70px;
  4142. height:38px;
  4143. }
  4144. #u96308 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:540px;
  4148. top:38px;
  4149. width:70px;
  4150. height:38px;
  4151. display:flex;
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:12px;
  4156. color:#0089FE;
  4157. }
  4158. #u96308 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 0px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u96308_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. visibility:hidden;
  4170. }
  4171. #u96309_img {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:50px;
  4177. height:38px;
  4178. }
  4179. #u96309 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:610px;
  4183. top:38px;
  4184. width:50px;
  4185. height:38px;
  4186. display:flex;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:12px;
  4191. color:#0089FE;
  4192. }
  4193. #u96309 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 0px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u96309_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u96310_img {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:50px;
  4212. height:38px;
  4213. }
  4214. #u96310 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:660px;
  4218. top:38px;
  4219. width:50px;
  4220. height:38px;
  4221. display:flex;
  4222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4223. font-weight:400;
  4224. font-style:normal;
  4225. font-size:12px;
  4226. color:#0089FE;
  4227. }
  4228. #u96310 .text {
  4229. position:absolute;
  4230. align-self:center;
  4231. padding:2px 2px 2px 0px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u96310_text {
  4236. border-width:0px;
  4237. word-wrap:break-word;
  4238. text-transform:none;
  4239. visibility:hidden;
  4240. }
  4241. #u96311_img {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:50px;
  4247. height:38px;
  4248. }
  4249. #u96311 {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:710px;
  4253. top:38px;
  4254. width:50px;
  4255. height:38px;
  4256. display:flex;
  4257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. font-size:12px;
  4261. color:#0089FE;
  4262. }
  4263. #u96311 .text {
  4264. position:absolute;
  4265. align-self:center;
  4266. padding:2px 2px 2px 0px;
  4267. box-sizing:border-box;
  4268. width:100%;
  4269. }
  4270. #u96311_text {
  4271. border-width:0px;
  4272. word-wrap:break-word;
  4273. text-transform:none;
  4274. visibility:hidden;
  4275. }
  4276. #u96312_img {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:0px;
  4280. top:0px;
  4281. width:60px;
  4282. height:38px;
  4283. }
  4284. #u96312 {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:760px;
  4288. top:38px;
  4289. width:60px;
  4290. height:38px;
  4291. display:flex;
  4292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. font-size:12px;
  4296. color:#0089FE;
  4297. }
  4298. #u96312 .text {
  4299. position:absolute;
  4300. align-self:center;
  4301. padding:2px 2px 2px 0px;
  4302. box-sizing:border-box;
  4303. width:100%;
  4304. }
  4305. #u96312_text {
  4306. border-width:0px;
  4307. word-wrap:break-word;
  4308. text-transform:none;
  4309. visibility:hidden;
  4310. }
  4311. #u96313_img {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:0px;
  4315. top:0px;
  4316. width:60px;
  4317. height:38px;
  4318. }
  4319. #u96313 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:820px;
  4323. top:38px;
  4324. width:60px;
  4325. height:38px;
  4326. display:flex;
  4327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4328. font-weight:400;
  4329. font-style:normal;
  4330. font-size:12px;
  4331. color:#0089FE;
  4332. }
  4333. #u96313 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:2px 2px 2px 0px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u96313_text {
  4341. border-width:0px;
  4342. word-wrap:break-word;
  4343. text-transform:none;
  4344. visibility:hidden;
  4345. }
  4346. #u96314_img {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:70px;
  4352. height:38px;
  4353. }
  4354. #u96314 {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:880px;
  4358. top:38px;
  4359. width:70px;
  4360. height:38px;
  4361. display:flex;
  4362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4363. font-weight:400;
  4364. font-style:normal;
  4365. font-size:12px;
  4366. color:#0089FE;
  4367. }
  4368. #u96314 .text {
  4369. position:absolute;
  4370. align-self:center;
  4371. padding:2px 2px 2px 0px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u96314_text {
  4376. border-width:0px;
  4377. word-wrap:break-word;
  4378. text-transform:none;
  4379. visibility:hidden;
  4380. }
  4381. #u96315_img {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:80px;
  4387. height:38px;
  4388. }
  4389. #u96315 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:950px;
  4393. top:38px;
  4394. width:80px;
  4395. height:38px;
  4396. display:flex;
  4397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4398. font-weight:400;
  4399. font-style:normal;
  4400. font-size:12px;
  4401. color:#0089FE;
  4402. }
  4403. #u96315 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 2px 2px 0px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u96315_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. visibility:hidden;
  4415. }
  4416. #u96316_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:80px;
  4422. height:38px;
  4423. }
  4424. #u96316 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:1030px;
  4428. top:38px;
  4429. width:80px;
  4430. height:38px;
  4431. display:flex;
  4432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:12px;
  4436. color:#0089FE;
  4437. }
  4438. #u96316 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 0px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u96316_text {
  4446. border-width:0px;
  4447. word-wrap:break-word;
  4448. text-transform:none;
  4449. visibility:hidden;
  4450. }
  4451. #u96317_img {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:80px;
  4457. height:38px;
  4458. }
  4459. #u96317 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:1110px;
  4463. top:38px;
  4464. width:80px;
  4465. height:38px;
  4466. display:flex;
  4467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4468. font-weight:400;
  4469. font-style:normal;
  4470. font-size:12px;
  4471. color:#0089FE;
  4472. }
  4473. #u96317 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 0px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u96317_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. visibility:hidden;
  4485. }
  4486. #u96318_img {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:70px;
  4492. height:38px;
  4493. }
  4494. #u96318 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:1190px;
  4498. top:38px;
  4499. width:70px;
  4500. height:38px;
  4501. display:flex;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:12px;
  4506. color:#0089FE;
  4507. }
  4508. #u96318 .text {
  4509. position:absolute;
  4510. align-self:center;
  4511. padding:2px 2px 2px 0px;
  4512. box-sizing:border-box;
  4513. width:100%;
  4514. }
  4515. #u96318_text {
  4516. border-width:0px;
  4517. word-wrap:break-word;
  4518. text-transform:none;
  4519. visibility:hidden;
  4520. }
  4521. #u96319_img {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:80px;
  4527. height:38px;
  4528. }
  4529. #u96319 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:1260px;
  4533. top:38px;
  4534. width:80px;
  4535. height:38px;
  4536. display:flex;
  4537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:12px;
  4541. color:#0089FE;
  4542. }
  4543. #u96319 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 2px 2px 0px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u96319_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. visibility:hidden;
  4555. }
  4556. #u96320_img {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:70px;
  4562. height:38px;
  4563. }
  4564. #u96320 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:1340px;
  4568. top:38px;
  4569. width:70px;
  4570. height:38px;
  4571. display:flex;
  4572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:12px;
  4576. color:#0089FE;
  4577. }
  4578. #u96320 .text {
  4579. position:absolute;
  4580. align-self:center;
  4581. padding:2px 2px 2px 0px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u96320_text {
  4586. border-width:0px;
  4587. word-wrap:break-word;
  4588. text-transform:none;
  4589. visibility:hidden;
  4590. }
  4591. #u96321_img {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:70px;
  4597. height:38px;
  4598. }
  4599. #u96321 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:1410px;
  4603. top:38px;
  4604. width:70px;
  4605. height:38px;
  4606. display:flex;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:12px;
  4611. color:#0089FE;
  4612. }
  4613. #u96321 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:2px 2px 2px 0px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u96321_text {
  4621. border-width:0px;
  4622. word-wrap:break-word;
  4623. text-transform:none;
  4624. visibility:hidden;
  4625. }
  4626. #u96322_img {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:60px;
  4632. height:38px;
  4633. }
  4634. #u96322 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:76px;
  4639. width:60px;
  4640. height:38px;
  4641. display:flex;
  4642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4643. font-weight:400;
  4644. font-style:normal;
  4645. font-size:12px;
  4646. color:#333333;
  4647. }
  4648. #u96322 .text {
  4649. position:absolute;
  4650. align-self:center;
  4651. padding:2px 2px 2px 0px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u96322_text {
  4656. border-width:0px;
  4657. word-wrap:break-word;
  4658. text-transform:none;
  4659. visibility:hidden;
  4660. }
  4661. #u96323_img {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:60px;
  4667. height:38px;
  4668. }
  4669. #u96323 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:60px;
  4673. top:76px;
  4674. width:60px;
  4675. height:38px;
  4676. display:flex;
  4677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. font-size:12px;
  4681. color:#333333;
  4682. }
  4683. #u96323 .text {
  4684. position:absolute;
  4685. align-self:center;
  4686. padding:2px 2px 2px 0px;
  4687. box-sizing:border-box;
  4688. width:100%;
  4689. }
  4690. #u96323_text {
  4691. border-width:0px;
  4692. word-wrap:break-word;
  4693. text-transform:none;
  4694. visibility:hidden;
  4695. }
  4696. #u96324_img {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:60px;
  4702. height:38px;
  4703. }
  4704. #u96324 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:120px;
  4708. top:76px;
  4709. width:60px;
  4710. height:38px;
  4711. display:flex;
  4712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:12px;
  4716. color:#333333;
  4717. }
  4718. #u96324 .text {
  4719. position:absolute;
  4720. align-self:center;
  4721. padding:2px 2px 2px 0px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u96324_text {
  4726. border-width:0px;
  4727. word-wrap:break-word;
  4728. text-transform:none;
  4729. visibility:hidden;
  4730. }
  4731. #u96325_img {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:0px;
  4735. top:0px;
  4736. width:60px;
  4737. height:38px;
  4738. }
  4739. #u96325 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:180px;
  4743. top:76px;
  4744. width:60px;
  4745. height:38px;
  4746. display:flex;
  4747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4748. font-weight:400;
  4749. font-style:normal;
  4750. font-size:12px;
  4751. color:#333333;
  4752. }
  4753. #u96325 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:2px 2px 2px 0px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u96325_text {
  4761. border-width:0px;
  4762. word-wrap:break-word;
  4763. text-transform:none;
  4764. visibility:hidden;
  4765. }
  4766. #u96326_img {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:60px;
  4772. height:38px;
  4773. }
  4774. #u96326 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:240px;
  4778. top:76px;
  4779. width:60px;
  4780. height:38px;
  4781. display:flex;
  4782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4783. font-weight:400;
  4784. font-style:normal;
  4785. font-size:12px;
  4786. color:#333333;
  4787. }
  4788. #u96326 .text {
  4789. position:absolute;
  4790. align-self:center;
  4791. padding:2px 2px 2px 0px;
  4792. box-sizing:border-box;
  4793. width:100%;
  4794. }
  4795. #u96326_text {
  4796. border-width:0px;
  4797. word-wrap:break-word;
  4798. text-transform:none;
  4799. visibility:hidden;
  4800. }
  4801. #u96327_img {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:60px;
  4807. height:38px;
  4808. }
  4809. #u96327 {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:300px;
  4813. top:76px;
  4814. width:60px;
  4815. height:38px;
  4816. display:flex;
  4817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4818. font-weight:400;
  4819. font-style:normal;
  4820. font-size:12px;
  4821. color:#333333;
  4822. }
  4823. #u96327 .text {
  4824. position:absolute;
  4825. align-self:center;
  4826. padding:2px 2px 2px 0px;
  4827. box-sizing:border-box;
  4828. width:100%;
  4829. }
  4830. #u96327_text {
  4831. border-width:0px;
  4832. word-wrap:break-word;
  4833. text-transform:none;
  4834. visibility:hidden;
  4835. }
  4836. #u96328_img {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:0px;
  4840. top:0px;
  4841. width:60px;
  4842. height:38px;
  4843. }
  4844. #u96328 {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:360px;
  4848. top:76px;
  4849. width:60px;
  4850. height:38px;
  4851. display:flex;
  4852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4853. font-weight:400;
  4854. font-style:normal;
  4855. font-size:12px;
  4856. color:#333333;
  4857. }
  4858. #u96328 .text {
  4859. position:absolute;
  4860. align-self:center;
  4861. padding:2px 2px 2px 0px;
  4862. box-sizing:border-box;
  4863. width:100%;
  4864. }
  4865. #u96328_text {
  4866. border-width:0px;
  4867. word-wrap:break-word;
  4868. text-transform:none;
  4869. visibility:hidden;
  4870. }
  4871. #u96329_img {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:60px;
  4877. height:38px;
  4878. }
  4879. #u96329 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:420px;
  4883. top:76px;
  4884. width:60px;
  4885. height:38px;
  4886. display:flex;
  4887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4888. font-weight:400;
  4889. font-style:normal;
  4890. font-size:12px;
  4891. color:#0089FE;
  4892. }
  4893. #u96329 .text {
  4894. position:absolute;
  4895. align-self:center;
  4896. padding:2px 2px 2px 0px;
  4897. box-sizing:border-box;
  4898. width:100%;
  4899. }
  4900. #u96329_text {
  4901. border-width:0px;
  4902. word-wrap:break-word;
  4903. text-transform:none;
  4904. visibility:hidden;
  4905. }
  4906. #u96330_img {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:0px;
  4910. top:0px;
  4911. width:60px;
  4912. height:38px;
  4913. }
  4914. #u96330 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:480px;
  4918. top:76px;
  4919. width:60px;
  4920. height:38px;
  4921. display:flex;
  4922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4923. font-weight:400;
  4924. font-style:normal;
  4925. font-size:12px;
  4926. color:#0089FE;
  4927. }
  4928. #u96330 .text {
  4929. position:absolute;
  4930. align-self:center;
  4931. padding:2px 2px 2px 0px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u96330_text {
  4936. border-width:0px;
  4937. word-wrap:break-word;
  4938. text-transform:none;
  4939. visibility:hidden;
  4940. }
  4941. #u96331_img {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:70px;
  4947. height:38px;
  4948. }
  4949. #u96331 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:540px;
  4953. top:76px;
  4954. width:70px;
  4955. height:38px;
  4956. display:flex;
  4957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4958. font-weight:400;
  4959. font-style:normal;
  4960. font-size:12px;
  4961. color:#0089FE;
  4962. }
  4963. #u96331 .text {
  4964. position:absolute;
  4965. align-self:center;
  4966. padding:2px 2px 2px 0px;
  4967. box-sizing:border-box;
  4968. width:100%;
  4969. }
  4970. #u96331_text {
  4971. border-width:0px;
  4972. word-wrap:break-word;
  4973. text-transform:none;
  4974. visibility:hidden;
  4975. }
  4976. #u96332_img {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:50px;
  4982. height:38px;
  4983. }
  4984. #u96332 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:610px;
  4988. top:76px;
  4989. width:50px;
  4990. height:38px;
  4991. display:flex;
  4992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. font-size:12px;
  4996. color:#0089FE;
  4997. }
  4998. #u96332 .text {
  4999. position:absolute;
  5000. align-self:center;
  5001. padding:2px 2px 2px 0px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u96332_text {
  5006. border-width:0px;
  5007. word-wrap:break-word;
  5008. text-transform:none;
  5009. visibility:hidden;
  5010. }
  5011. #u96333_img {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:50px;
  5017. height:38px;
  5018. }
  5019. #u96333 {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:660px;
  5023. top:76px;
  5024. width:50px;
  5025. height:38px;
  5026. display:flex;
  5027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5028. font-weight:400;
  5029. font-style:normal;
  5030. font-size:12px;
  5031. color:#0089FE;
  5032. }
  5033. #u96333 .text {
  5034. position:absolute;
  5035. align-self:center;
  5036. padding:2px 2px 2px 0px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u96333_text {
  5041. border-width:0px;
  5042. word-wrap:break-word;
  5043. text-transform:none;
  5044. visibility:hidden;
  5045. }
  5046. #u96334_img {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:0px;
  5050. top:0px;
  5051. width:50px;
  5052. height:38px;
  5053. }
  5054. #u96334 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:710px;
  5058. top:76px;
  5059. width:50px;
  5060. height:38px;
  5061. display:flex;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:12px;
  5066. color:#0089FE;
  5067. }
  5068. #u96334 .text {
  5069. position:absolute;
  5070. align-self:center;
  5071. padding:2px 2px 2px 0px;
  5072. box-sizing:border-box;
  5073. width:100%;
  5074. }
  5075. #u96334_text {
  5076. border-width:0px;
  5077. word-wrap:break-word;
  5078. text-transform:none;
  5079. visibility:hidden;
  5080. }
  5081. #u96335_img {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:60px;
  5087. height:38px;
  5088. }
  5089. #u96335 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:760px;
  5093. top:76px;
  5094. width:60px;
  5095. height:38px;
  5096. display:flex;
  5097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:12px;
  5101. color:#0089FE;
  5102. }
  5103. #u96335 .text {
  5104. position:absolute;
  5105. align-self:center;
  5106. padding:2px 2px 2px 0px;
  5107. box-sizing:border-box;
  5108. width:100%;
  5109. }
  5110. #u96335_text {
  5111. border-width:0px;
  5112. word-wrap:break-word;
  5113. text-transform:none;
  5114. visibility:hidden;
  5115. }
  5116. #u96336_img {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:0px;
  5120. top:0px;
  5121. width:60px;
  5122. height:38px;
  5123. }
  5124. #u96336 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:820px;
  5128. top:76px;
  5129. width:60px;
  5130. height:38px;
  5131. display:flex;
  5132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5133. font-weight:400;
  5134. font-style:normal;
  5135. font-size:12px;
  5136. color:#0089FE;
  5137. }
  5138. #u96336 .text {
  5139. position:absolute;
  5140. align-self:center;
  5141. padding:2px 2px 2px 0px;
  5142. box-sizing:border-box;
  5143. width:100%;
  5144. }
  5145. #u96336_text {
  5146. border-width:0px;
  5147. word-wrap:break-word;
  5148. text-transform:none;
  5149. visibility:hidden;
  5150. }
  5151. #u96337_img {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:0px;
  5155. top:0px;
  5156. width:70px;
  5157. height:38px;
  5158. }
  5159. #u96337 {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:880px;
  5163. top:76px;
  5164. width:70px;
  5165. height:38px;
  5166. display:flex;
  5167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5168. font-weight:400;
  5169. font-style:normal;
  5170. font-size:12px;
  5171. color:#0089FE;
  5172. }
  5173. #u96337 .text {
  5174. position:absolute;
  5175. align-self:center;
  5176. padding:2px 2px 2px 0px;
  5177. box-sizing:border-box;
  5178. width:100%;
  5179. }
  5180. #u96337_text {
  5181. border-width:0px;
  5182. word-wrap:break-word;
  5183. text-transform:none;
  5184. visibility:hidden;
  5185. }
  5186. #u96338_img {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:80px;
  5192. height:38px;
  5193. }
  5194. #u96338 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:950px;
  5198. top:76px;
  5199. width:80px;
  5200. height:38px;
  5201. display:flex;
  5202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:12px;
  5206. color:#0089FE;
  5207. }
  5208. #u96338 .text {
  5209. position:absolute;
  5210. align-self:center;
  5211. padding:2px 2px 2px 0px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u96338_text {
  5216. border-width:0px;
  5217. word-wrap:break-word;
  5218. text-transform:none;
  5219. visibility:hidden;
  5220. }
  5221. #u96339_img {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:80px;
  5227. height:38px;
  5228. }
  5229. #u96339 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:1030px;
  5233. top:76px;
  5234. width:80px;
  5235. height:38px;
  5236. display:flex;
  5237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5238. font-weight:400;
  5239. font-style:normal;
  5240. font-size:12px;
  5241. color:#0089FE;
  5242. }
  5243. #u96339 .text {
  5244. position:absolute;
  5245. align-self:center;
  5246. padding:2px 2px 2px 0px;
  5247. box-sizing:border-box;
  5248. width:100%;
  5249. }
  5250. #u96339_text {
  5251. border-width:0px;
  5252. word-wrap:break-word;
  5253. text-transform:none;
  5254. visibility:hidden;
  5255. }
  5256. #u96340_img {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:80px;
  5262. height:38px;
  5263. }
  5264. #u96340 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:1110px;
  5268. top:76px;
  5269. width:80px;
  5270. height:38px;
  5271. display:flex;
  5272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:12px;
  5276. color:#0089FE;
  5277. }
  5278. #u96340 .text {
  5279. position:absolute;
  5280. align-self:center;
  5281. padding:2px 2px 2px 0px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u96340_text {
  5286. border-width:0px;
  5287. word-wrap:break-word;
  5288. text-transform:none;
  5289. visibility:hidden;
  5290. }
  5291. #u96341_img {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:70px;
  5297. height:38px;
  5298. }
  5299. #u96341 {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:1190px;
  5303. top:76px;
  5304. width:70px;
  5305. height:38px;
  5306. display:flex;
  5307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5308. font-weight:400;
  5309. font-style:normal;
  5310. font-size:12px;
  5311. color:#0089FE;
  5312. }
  5313. #u96341 .text {
  5314. position:absolute;
  5315. align-self:center;
  5316. padding:2px 2px 2px 0px;
  5317. box-sizing:border-box;
  5318. width:100%;
  5319. }
  5320. #u96341_text {
  5321. border-width:0px;
  5322. word-wrap:break-word;
  5323. text-transform:none;
  5324. visibility:hidden;
  5325. }
  5326. #u96342_img {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:0px;
  5330. top:0px;
  5331. width:80px;
  5332. height:38px;
  5333. }
  5334. #u96342 {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:1260px;
  5338. top:76px;
  5339. width:80px;
  5340. height:38px;
  5341. display:flex;
  5342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5343. font-weight:400;
  5344. font-style:normal;
  5345. font-size:12px;
  5346. color:#0089FE;
  5347. }
  5348. #u96342 .text {
  5349. position:absolute;
  5350. align-self:center;
  5351. padding:2px 2px 2px 0px;
  5352. box-sizing:border-box;
  5353. width:100%;
  5354. }
  5355. #u96342_text {
  5356. border-width:0px;
  5357. word-wrap:break-word;
  5358. text-transform:none;
  5359. visibility:hidden;
  5360. }
  5361. #u96343_img {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:70px;
  5367. height:38px;
  5368. }
  5369. #u96343 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:1340px;
  5373. top:76px;
  5374. width:70px;
  5375. height:38px;
  5376. display:flex;
  5377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5378. font-weight:400;
  5379. font-style:normal;
  5380. font-size:12px;
  5381. color:#0089FE;
  5382. }
  5383. #u96343 .text {
  5384. position:absolute;
  5385. align-self:center;
  5386. padding:2px 2px 2px 0px;
  5387. box-sizing:border-box;
  5388. width:100%;
  5389. }
  5390. #u96343_text {
  5391. border-width:0px;
  5392. word-wrap:break-word;
  5393. text-transform:none;
  5394. visibility:hidden;
  5395. }
  5396. #u96344_img {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:70px;
  5402. height:38px;
  5403. }
  5404. #u96344 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:1410px;
  5408. top:76px;
  5409. width:70px;
  5410. height:38px;
  5411. display:flex;
  5412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5413. font-weight:400;
  5414. font-style:normal;
  5415. font-size:12px;
  5416. color:#0089FE;
  5417. }
  5418. #u96344 .text {
  5419. position:absolute;
  5420. align-self:center;
  5421. padding:2px 2px 2px 0px;
  5422. box-sizing:border-box;
  5423. width:100%;
  5424. }
  5425. #u96344_text {
  5426. border-width:0px;
  5427. word-wrap:break-word;
  5428. text-transform:none;
  5429. visibility:hidden;
  5430. }
  5431. #u96345_img {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:60px;
  5437. height:38px;
  5438. }
  5439. #u96345 {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:0px;
  5443. top:114px;
  5444. width:60px;
  5445. height:38px;
  5446. display:flex;
  5447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5448. font-weight:400;
  5449. font-style:normal;
  5450. font-size:12px;
  5451. color:#333333;
  5452. }
  5453. #u96345 .text {
  5454. position:absolute;
  5455. align-self:center;
  5456. padding:2px 2px 2px 0px;
  5457. box-sizing:border-box;
  5458. width:100%;
  5459. }
  5460. #u96345_text {
  5461. border-width:0px;
  5462. word-wrap:break-word;
  5463. text-transform:none;
  5464. visibility:hidden;
  5465. }
  5466. #u96346_img {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:60px;
  5472. height:38px;
  5473. }
  5474. #u96346 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:60px;
  5478. top:114px;
  5479. width:60px;
  5480. height:38px;
  5481. display:flex;
  5482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5483. font-weight:400;
  5484. font-style:normal;
  5485. font-size:12px;
  5486. color:#333333;
  5487. }
  5488. #u96346 .text {
  5489. position:absolute;
  5490. align-self:center;
  5491. padding:2px 2px 2px 0px;
  5492. box-sizing:border-box;
  5493. width:100%;
  5494. }
  5495. #u96346_text {
  5496. border-width:0px;
  5497. word-wrap:break-word;
  5498. text-transform:none;
  5499. visibility:hidden;
  5500. }
  5501. #u96347_img {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:60px;
  5507. height:38px;
  5508. }
  5509. #u96347 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:120px;
  5513. top:114px;
  5514. width:60px;
  5515. height:38px;
  5516. display:flex;
  5517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5518. font-weight:400;
  5519. font-style:normal;
  5520. font-size:12px;
  5521. color:#333333;
  5522. }
  5523. #u96347 .text {
  5524. position:absolute;
  5525. align-self:center;
  5526. padding:2px 2px 2px 0px;
  5527. box-sizing:border-box;
  5528. width:100%;
  5529. }
  5530. #u96347_text {
  5531. border-width:0px;
  5532. word-wrap:break-word;
  5533. text-transform:none;
  5534. visibility:hidden;
  5535. }
  5536. #u96348_img {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:60px;
  5542. height:38px;
  5543. }
  5544. #u96348 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:180px;
  5548. top:114px;
  5549. width:60px;
  5550. height:38px;
  5551. display:flex;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:12px;
  5556. color:#333333;
  5557. }
  5558. #u96348 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:2px 2px 2px 0px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u96348_text {
  5566. border-width:0px;
  5567. word-wrap:break-word;
  5568. text-transform:none;
  5569. visibility:hidden;
  5570. }
  5571. #u96349_img {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:0px;
  5575. top:0px;
  5576. width:60px;
  5577. height:38px;
  5578. }
  5579. #u96349 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:240px;
  5583. top:114px;
  5584. width:60px;
  5585. height:38px;
  5586. display:flex;
  5587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5588. font-weight:400;
  5589. font-style:normal;
  5590. font-size:12px;
  5591. color:#333333;
  5592. }
  5593. #u96349 .text {
  5594. position:absolute;
  5595. align-self:center;
  5596. padding:2px 2px 2px 0px;
  5597. box-sizing:border-box;
  5598. width:100%;
  5599. }
  5600. #u96349_text {
  5601. border-width:0px;
  5602. word-wrap:break-word;
  5603. text-transform:none;
  5604. visibility:hidden;
  5605. }
  5606. #u96350_img {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:0px;
  5611. width:60px;
  5612. height:38px;
  5613. }
  5614. #u96350 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:300px;
  5618. top:114px;
  5619. width:60px;
  5620. height:38px;
  5621. display:flex;
  5622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5623. font-weight:400;
  5624. font-style:normal;
  5625. font-size:12px;
  5626. color:#333333;
  5627. }
  5628. #u96350 .text {
  5629. position:absolute;
  5630. align-self:center;
  5631. padding:2px 2px 2px 0px;
  5632. box-sizing:border-box;
  5633. width:100%;
  5634. }
  5635. #u96350_text {
  5636. border-width:0px;
  5637. word-wrap:break-word;
  5638. text-transform:none;
  5639. visibility:hidden;
  5640. }
  5641. #u96351_img {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:60px;
  5647. height:38px;
  5648. }
  5649. #u96351 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:360px;
  5653. top:114px;
  5654. width:60px;
  5655. height:38px;
  5656. display:flex;
  5657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5658. font-weight:400;
  5659. font-style:normal;
  5660. font-size:12px;
  5661. color:#333333;
  5662. }
  5663. #u96351 .text {
  5664. position:absolute;
  5665. align-self:center;
  5666. padding:2px 2px 2px 0px;
  5667. box-sizing:border-box;
  5668. width:100%;
  5669. }
  5670. #u96351_text {
  5671. border-width:0px;
  5672. word-wrap:break-word;
  5673. text-transform:none;
  5674. visibility:hidden;
  5675. }
  5676. #u96352_img {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:60px;
  5682. height:38px;
  5683. }
  5684. #u96352 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:420px;
  5688. top:114px;
  5689. width:60px;
  5690. height:38px;
  5691. display:flex;
  5692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5693. font-weight:400;
  5694. font-style:normal;
  5695. font-size:12px;
  5696. color:#0089FE;
  5697. }
  5698. #u96352 .text {
  5699. position:absolute;
  5700. align-self:center;
  5701. padding:2px 2px 2px 0px;
  5702. box-sizing:border-box;
  5703. width:100%;
  5704. }
  5705. #u96352_text {
  5706. border-width:0px;
  5707. word-wrap:break-word;
  5708. text-transform:none;
  5709. visibility:hidden;
  5710. }
  5711. #u96353_img {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:60px;
  5717. height:38px;
  5718. }
  5719. #u96353 {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:480px;
  5723. top:114px;
  5724. width:60px;
  5725. height:38px;
  5726. display:flex;
  5727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5728. font-weight:400;
  5729. font-style:normal;
  5730. font-size:12px;
  5731. color:#0089FE;
  5732. }
  5733. #u96353 .text {
  5734. position:absolute;
  5735. align-self:center;
  5736. padding:2px 2px 2px 0px;
  5737. box-sizing:border-box;
  5738. width:100%;
  5739. }
  5740. #u96353_text {
  5741. border-width:0px;
  5742. word-wrap:break-word;
  5743. text-transform:none;
  5744. visibility:hidden;
  5745. }
  5746. #u96354_img {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:0px;
  5750. top:0px;
  5751. width:70px;
  5752. height:38px;
  5753. }
  5754. #u96354 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:540px;
  5758. top:114px;
  5759. width:70px;
  5760. height:38px;
  5761. display:flex;
  5762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5763. font-weight:400;
  5764. font-style:normal;
  5765. font-size:12px;
  5766. color:#0089FE;
  5767. }
  5768. #u96354 .text {
  5769. position:absolute;
  5770. align-self:center;
  5771. padding:2px 2px 2px 0px;
  5772. box-sizing:border-box;
  5773. width:100%;
  5774. }
  5775. #u96354_text {
  5776. border-width:0px;
  5777. word-wrap:break-word;
  5778. text-transform:none;
  5779. visibility:hidden;
  5780. }
  5781. #u96355_img {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:0px;
  5785. top:0px;
  5786. width:50px;
  5787. height:38px;
  5788. }
  5789. #u96355 {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:610px;
  5793. top:114px;
  5794. width:50px;
  5795. height:38px;
  5796. display:flex;
  5797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5798. font-weight:400;
  5799. font-style:normal;
  5800. font-size:12px;
  5801. color:#0089FE;
  5802. }
  5803. #u96355 .text {
  5804. position:absolute;
  5805. align-self:center;
  5806. padding:2px 2px 2px 0px;
  5807. box-sizing:border-box;
  5808. width:100%;
  5809. }
  5810. #u96355_text {
  5811. border-width:0px;
  5812. word-wrap:break-word;
  5813. text-transform:none;
  5814. visibility:hidden;
  5815. }
  5816. #u96356_img {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:50px;
  5822. height:38px;
  5823. }
  5824. #u96356 {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:660px;
  5828. top:114px;
  5829. width:50px;
  5830. height:38px;
  5831. display:flex;
  5832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5833. font-weight:400;
  5834. font-style:normal;
  5835. font-size:12px;
  5836. color:#0089FE;
  5837. }
  5838. #u96356 .text {
  5839. position:absolute;
  5840. align-self:center;
  5841. padding:2px 2px 2px 0px;
  5842. box-sizing:border-box;
  5843. width:100%;
  5844. }
  5845. #u96356_text {
  5846. border-width:0px;
  5847. word-wrap:break-word;
  5848. text-transform:none;
  5849. visibility:hidden;
  5850. }
  5851. #u96357_img {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:0px;
  5855. top:0px;
  5856. width:50px;
  5857. height:38px;
  5858. }
  5859. #u96357 {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:710px;
  5863. top:114px;
  5864. width:50px;
  5865. height:38px;
  5866. display:flex;
  5867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5868. font-weight:400;
  5869. font-style:normal;
  5870. font-size:12px;
  5871. color:#0089FE;
  5872. }
  5873. #u96357 .text {
  5874. position:absolute;
  5875. align-self:center;
  5876. padding:2px 2px 2px 0px;
  5877. box-sizing:border-box;
  5878. width:100%;
  5879. }
  5880. #u96357_text {
  5881. border-width:0px;
  5882. word-wrap:break-word;
  5883. text-transform:none;
  5884. visibility:hidden;
  5885. }
  5886. #u96358_img {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:60px;
  5892. height:38px;
  5893. }
  5894. #u96358 {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:760px;
  5898. top:114px;
  5899. width:60px;
  5900. height:38px;
  5901. display:flex;
  5902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:12px;
  5906. color:#0089FE;
  5907. }
  5908. #u96358 .text {
  5909. position:absolute;
  5910. align-self:center;
  5911. padding:2px 2px 2px 0px;
  5912. box-sizing:border-box;
  5913. width:100%;
  5914. }
  5915. #u96358_text {
  5916. border-width:0px;
  5917. word-wrap:break-word;
  5918. text-transform:none;
  5919. visibility:hidden;
  5920. }
  5921. #u96359_img {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:0px;
  5925. top:0px;
  5926. width:60px;
  5927. height:38px;
  5928. }
  5929. #u96359 {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:820px;
  5933. top:114px;
  5934. width:60px;
  5935. height:38px;
  5936. display:flex;
  5937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5938. font-weight:400;
  5939. font-style:normal;
  5940. font-size:12px;
  5941. color:#0089FE;
  5942. }
  5943. #u96359 .text {
  5944. position:absolute;
  5945. align-self:center;
  5946. padding:2px 2px 2px 0px;
  5947. box-sizing:border-box;
  5948. width:100%;
  5949. }
  5950. #u96359_text {
  5951. border-width:0px;
  5952. word-wrap:break-word;
  5953. text-transform:none;
  5954. visibility:hidden;
  5955. }
  5956. #u96360_img {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:0px;
  5960. top:0px;
  5961. width:70px;
  5962. height:38px;
  5963. }
  5964. #u96360 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:880px;
  5968. top:114px;
  5969. width:70px;
  5970. height:38px;
  5971. display:flex;
  5972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:12px;
  5976. color:#0089FE;
  5977. }
  5978. #u96360 .text {
  5979. position:absolute;
  5980. align-self:center;
  5981. padding:2px 2px 2px 0px;
  5982. box-sizing:border-box;
  5983. width:100%;
  5984. }
  5985. #u96360_text {
  5986. border-width:0px;
  5987. word-wrap:break-word;
  5988. text-transform:none;
  5989. visibility:hidden;
  5990. }
  5991. #u96361_img {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:80px;
  5997. height:38px;
  5998. }
  5999. #u96361 {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:950px;
  6003. top:114px;
  6004. width:80px;
  6005. height:38px;
  6006. display:flex;
  6007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. font-size:12px;
  6011. color:#0089FE;
  6012. }
  6013. #u96361 .text {
  6014. position:absolute;
  6015. align-self:center;
  6016. padding:2px 2px 2px 0px;
  6017. box-sizing:border-box;
  6018. width:100%;
  6019. }
  6020. #u96361_text {
  6021. border-width:0px;
  6022. word-wrap:break-word;
  6023. text-transform:none;
  6024. visibility:hidden;
  6025. }
  6026. #u96362_img {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:0px;
  6030. top:0px;
  6031. width:80px;
  6032. height:38px;
  6033. }
  6034. #u96362 {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:1030px;
  6038. top:114px;
  6039. width:80px;
  6040. height:38px;
  6041. display:flex;
  6042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6043. font-weight:400;
  6044. font-style:normal;
  6045. font-size:12px;
  6046. color:#0089FE;
  6047. }
  6048. #u96362 .text {
  6049. position:absolute;
  6050. align-self:center;
  6051. padding:2px 2px 2px 0px;
  6052. box-sizing:border-box;
  6053. width:100%;
  6054. }
  6055. #u96362_text {
  6056. border-width:0px;
  6057. word-wrap:break-word;
  6058. text-transform:none;
  6059. visibility:hidden;
  6060. }
  6061. #u96363_img {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:0px;
  6065. top:0px;
  6066. width:80px;
  6067. height:38px;
  6068. }
  6069. #u96363 {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:1110px;
  6073. top:114px;
  6074. width:80px;
  6075. height:38px;
  6076. display:flex;
  6077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6078. font-weight:400;
  6079. font-style:normal;
  6080. font-size:12px;
  6081. color:#0089FE;
  6082. }
  6083. #u96363 .text {
  6084. position:absolute;
  6085. align-self:center;
  6086. padding:2px 2px 2px 0px;
  6087. box-sizing:border-box;
  6088. width:100%;
  6089. }
  6090. #u96363_text {
  6091. border-width:0px;
  6092. word-wrap:break-word;
  6093. text-transform:none;
  6094. visibility:hidden;
  6095. }
  6096. #u96364_img {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:70px;
  6102. height:38px;
  6103. }
  6104. #u96364 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:1190px;
  6108. top:114px;
  6109. width:70px;
  6110. height:38px;
  6111. display:flex;
  6112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6113. font-weight:400;
  6114. font-style:normal;
  6115. font-size:12px;
  6116. color:#0089FE;
  6117. }
  6118. #u96364 .text {
  6119. position:absolute;
  6120. align-self:center;
  6121. padding:2px 2px 2px 0px;
  6122. box-sizing:border-box;
  6123. width:100%;
  6124. }
  6125. #u96364_text {
  6126. border-width:0px;
  6127. word-wrap:break-word;
  6128. text-transform:none;
  6129. visibility:hidden;
  6130. }
  6131. #u96365_img {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:0px;
  6135. top:0px;
  6136. width:80px;
  6137. height:38px;
  6138. }
  6139. #u96365 {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:1260px;
  6143. top:114px;
  6144. width:80px;
  6145. height:38px;
  6146. display:flex;
  6147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:12px;
  6151. color:#0089FE;
  6152. }
  6153. #u96365 .text {
  6154. position:absolute;
  6155. align-self:center;
  6156. padding:2px 2px 2px 0px;
  6157. box-sizing:border-box;
  6158. width:100%;
  6159. }
  6160. #u96365_text {
  6161. border-width:0px;
  6162. word-wrap:break-word;
  6163. text-transform:none;
  6164. visibility:hidden;
  6165. }
  6166. #u96366_img {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:70px;
  6172. height:38px;
  6173. }
  6174. #u96366 {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:1340px;
  6178. top:114px;
  6179. width:70px;
  6180. height:38px;
  6181. display:flex;
  6182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6183. font-weight:400;
  6184. font-style:normal;
  6185. font-size:12px;
  6186. color:#0089FE;
  6187. }
  6188. #u96366 .text {
  6189. position:absolute;
  6190. align-self:center;
  6191. padding:2px 2px 2px 0px;
  6192. box-sizing:border-box;
  6193. width:100%;
  6194. }
  6195. #u96366_text {
  6196. border-width:0px;
  6197. word-wrap:break-word;
  6198. text-transform:none;
  6199. visibility:hidden;
  6200. }
  6201. #u96367_img {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:70px;
  6207. height:38px;
  6208. }
  6209. #u96367 {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:1410px;
  6213. top:114px;
  6214. width:70px;
  6215. height:38px;
  6216. display:flex;
  6217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6218. font-weight:400;
  6219. font-style:normal;
  6220. font-size:12px;
  6221. color:#0089FE;
  6222. }
  6223. #u96367 .text {
  6224. position:absolute;
  6225. align-self:center;
  6226. padding:2px 2px 2px 0px;
  6227. box-sizing:border-box;
  6228. width:100%;
  6229. }
  6230. #u96367_text {
  6231. border-width:0px;
  6232. word-wrap:break-word;
  6233. text-transform:none;
  6234. visibility:hidden;
  6235. }
  6236. #u96368_img {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:60px;
  6242. height:38px;
  6243. }
  6244. #u96368 {
  6245. border-width:0px;
  6246. position:absolute;
  6247. left:0px;
  6248. top:152px;
  6249. width:60px;
  6250. height:38px;
  6251. display:flex;
  6252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6253. font-weight:400;
  6254. font-style:normal;
  6255. font-size:12px;
  6256. color:#333333;
  6257. }
  6258. #u96368 .text {
  6259. position:absolute;
  6260. align-self:center;
  6261. padding:2px 2px 2px 0px;
  6262. box-sizing:border-box;
  6263. width:100%;
  6264. }
  6265. #u96368_text {
  6266. border-width:0px;
  6267. word-wrap:break-word;
  6268. text-transform:none;
  6269. visibility:hidden;
  6270. }
  6271. #u96369_img {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:0px;
  6275. top:0px;
  6276. width:60px;
  6277. height:38px;
  6278. }
  6279. #u96369 {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:60px;
  6283. top:152px;
  6284. width:60px;
  6285. height:38px;
  6286. display:flex;
  6287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6288. font-weight:400;
  6289. font-style:normal;
  6290. font-size:12px;
  6291. color:#333333;
  6292. }
  6293. #u96369 .text {
  6294. position:absolute;
  6295. align-self:center;
  6296. padding:2px 2px 2px 0px;
  6297. box-sizing:border-box;
  6298. width:100%;
  6299. }
  6300. #u96369_text {
  6301. border-width:0px;
  6302. word-wrap:break-word;
  6303. text-transform:none;
  6304. visibility:hidden;
  6305. }
  6306. #u96370_img {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:0px;
  6310. top:0px;
  6311. width:60px;
  6312. height:38px;
  6313. }
  6314. #u96370 {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:120px;
  6318. top:152px;
  6319. width:60px;
  6320. height:38px;
  6321. display:flex;
  6322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6323. font-weight:400;
  6324. font-style:normal;
  6325. font-size:12px;
  6326. color:#333333;
  6327. }
  6328. #u96370 .text {
  6329. position:absolute;
  6330. align-self:center;
  6331. padding:2px 2px 2px 0px;
  6332. box-sizing:border-box;
  6333. width:100%;
  6334. }
  6335. #u96370_text {
  6336. border-width:0px;
  6337. word-wrap:break-word;
  6338. text-transform:none;
  6339. visibility:hidden;
  6340. }
  6341. #u96371_img {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:60px;
  6347. height:38px;
  6348. }
  6349. #u96371 {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:180px;
  6353. top:152px;
  6354. width:60px;
  6355. height:38px;
  6356. display:flex;
  6357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6358. font-weight:400;
  6359. font-style:normal;
  6360. font-size:12px;
  6361. color:#333333;
  6362. }
  6363. #u96371 .text {
  6364. position:absolute;
  6365. align-self:center;
  6366. padding:2px 2px 2px 0px;
  6367. box-sizing:border-box;
  6368. width:100%;
  6369. }
  6370. #u96371_text {
  6371. border-width:0px;
  6372. word-wrap:break-word;
  6373. text-transform:none;
  6374. visibility:hidden;
  6375. }
  6376. #u96372_img {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:60px;
  6382. height:38px;
  6383. }
  6384. #u96372 {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:240px;
  6388. top:152px;
  6389. width:60px;
  6390. height:38px;
  6391. display:flex;
  6392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:12px;
  6396. color:#333333;
  6397. }
  6398. #u96372 .text {
  6399. position:absolute;
  6400. align-self:center;
  6401. padding:2px 2px 2px 0px;
  6402. box-sizing:border-box;
  6403. width:100%;
  6404. }
  6405. #u96372_text {
  6406. border-width:0px;
  6407. word-wrap:break-word;
  6408. text-transform:none;
  6409. visibility:hidden;
  6410. }
  6411. #u96373_img {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:0px;
  6415. top:0px;
  6416. width:60px;
  6417. height:38px;
  6418. }
  6419. #u96373 {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:300px;
  6423. top:152px;
  6424. width:60px;
  6425. height:38px;
  6426. display:flex;
  6427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6428. font-weight:400;
  6429. font-style:normal;
  6430. font-size:12px;
  6431. color:#333333;
  6432. }
  6433. #u96373 .text {
  6434. position:absolute;
  6435. align-self:center;
  6436. padding:2px 2px 2px 0px;
  6437. box-sizing:border-box;
  6438. width:100%;
  6439. }
  6440. #u96373_text {
  6441. border-width:0px;
  6442. word-wrap:break-word;
  6443. text-transform:none;
  6444. visibility:hidden;
  6445. }
  6446. #u96374_img {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:60px;
  6452. height:38px;
  6453. }
  6454. #u96374 {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:360px;
  6458. top:152px;
  6459. width:60px;
  6460. height:38px;
  6461. display:flex;
  6462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6463. font-weight:400;
  6464. font-style:normal;
  6465. font-size:12px;
  6466. color:#333333;
  6467. }
  6468. #u96374 .text {
  6469. position:absolute;
  6470. align-self:center;
  6471. padding:2px 2px 2px 0px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u96374_text {
  6476. border-width:0px;
  6477. word-wrap:break-word;
  6478. text-transform:none;
  6479. visibility:hidden;
  6480. }
  6481. #u96375_img {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:60px;
  6487. height:38px;
  6488. }
  6489. #u96375 {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:420px;
  6493. top:152px;
  6494. width:60px;
  6495. height:38px;
  6496. display:flex;
  6497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:12px;
  6501. color:#AAAAAA;
  6502. }
  6503. #u96375 .text {
  6504. position:absolute;
  6505. align-self:center;
  6506. padding:2px 2px 2px 0px;
  6507. box-sizing:border-box;
  6508. width:100%;
  6509. }
  6510. #u96375_text {
  6511. border-width:0px;
  6512. word-wrap:break-word;
  6513. text-transform:none;
  6514. visibility:hidden;
  6515. }
  6516. #u96376_img {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:60px;
  6522. height:38px;
  6523. }
  6524. #u96376 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:480px;
  6528. top:152px;
  6529. width:60px;
  6530. height:38px;
  6531. display:flex;
  6532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:12px;
  6536. color:#AAAAAA;
  6537. }
  6538. #u96376 .text {
  6539. position:absolute;
  6540. align-self:center;
  6541. padding:2px 2px 2px 0px;
  6542. box-sizing:border-box;
  6543. width:100%;
  6544. }
  6545. #u96376_text {
  6546. border-width:0px;
  6547. word-wrap:break-word;
  6548. text-transform:none;
  6549. visibility:hidden;
  6550. }
  6551. #u96377_img {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:70px;
  6557. height:38px;
  6558. }
  6559. #u96377 {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:540px;
  6563. top:152px;
  6564. width:70px;
  6565. height:38px;
  6566. display:flex;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:12px;
  6571. color:#AAAAAA;
  6572. }
  6573. #u96377 .text {
  6574. position:absolute;
  6575. align-self:center;
  6576. padding:2px 2px 2px 0px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u96377_text {
  6581. border-width:0px;
  6582. word-wrap:break-word;
  6583. text-transform:none;
  6584. visibility:hidden;
  6585. }
  6586. #u96378_img {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:50px;
  6592. height:38px;
  6593. }
  6594. #u96378 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:610px;
  6598. top:152px;
  6599. width:50px;
  6600. height:38px;
  6601. display:flex;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:12px;
  6606. color:#AAAAAA;
  6607. }
  6608. #u96378 .text {
  6609. position:absolute;
  6610. align-self:center;
  6611. padding:2px 2px 2px 0px;
  6612. box-sizing:border-box;
  6613. width:100%;
  6614. }
  6615. #u96378_text {
  6616. border-width:0px;
  6617. word-wrap:break-word;
  6618. text-transform:none;
  6619. visibility:hidden;
  6620. }
  6621. #u96379_img {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:0px;
  6625. top:0px;
  6626. width:50px;
  6627. height:38px;
  6628. }
  6629. #u96379 {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:660px;
  6633. top:152px;
  6634. width:50px;
  6635. height:38px;
  6636. display:flex;
  6637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6638. font-weight:400;
  6639. font-style:normal;
  6640. font-size:12px;
  6641. color:#AAAAAA;
  6642. }
  6643. #u96379 .text {
  6644. position:absolute;
  6645. align-self:center;
  6646. padding:2px 2px 2px 0px;
  6647. box-sizing:border-box;
  6648. width:100%;
  6649. }
  6650. #u96379_text {
  6651. border-width:0px;
  6652. word-wrap:break-word;
  6653. text-transform:none;
  6654. visibility:hidden;
  6655. }
  6656. #u96380_img {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:0px;
  6660. top:0px;
  6661. width:50px;
  6662. height:38px;
  6663. }
  6664. #u96380 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:710px;
  6668. top:152px;
  6669. width:50px;
  6670. height:38px;
  6671. display:flex;
  6672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6673. font-weight:400;
  6674. font-style:normal;
  6675. font-size:12px;
  6676. color:#AAAAAA;
  6677. }
  6678. #u96380 .text {
  6679. position:absolute;
  6680. align-self:center;
  6681. padding:2px 2px 2px 0px;
  6682. box-sizing:border-box;
  6683. width:100%;
  6684. }
  6685. #u96380_text {
  6686. border-width:0px;
  6687. word-wrap:break-word;
  6688. text-transform:none;
  6689. visibility:hidden;
  6690. }
  6691. #u96381_img {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:0px;
  6695. top:0px;
  6696. width:60px;
  6697. height:38px;
  6698. }
  6699. #u96381 {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:760px;
  6703. top:152px;
  6704. width:60px;
  6705. height:38px;
  6706. display:flex;
  6707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. font-size:12px;
  6711. color:#AAAAAA;
  6712. }
  6713. #u96381 .text {
  6714. position:absolute;
  6715. align-self:center;
  6716. padding:2px 2px 2px 0px;
  6717. box-sizing:border-box;
  6718. width:100%;
  6719. }
  6720. #u96381_text {
  6721. border-width:0px;
  6722. word-wrap:break-word;
  6723. text-transform:none;
  6724. visibility:hidden;
  6725. }
  6726. #u96382_img {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:0px;
  6731. width:60px;
  6732. height:38px;
  6733. }
  6734. #u96382 {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:820px;
  6738. top:152px;
  6739. width:60px;
  6740. height:38px;
  6741. display:flex;
  6742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6743. font-weight:400;
  6744. font-style:normal;
  6745. font-size:12px;
  6746. color:#AAAAAA;
  6747. }
  6748. #u96382 .text {
  6749. position:absolute;
  6750. align-self:center;
  6751. padding:2px 2px 2px 0px;
  6752. box-sizing:border-box;
  6753. width:100%;
  6754. }
  6755. #u96382_text {
  6756. border-width:0px;
  6757. word-wrap:break-word;
  6758. text-transform:none;
  6759. visibility:hidden;
  6760. }
  6761. #u96383_img {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:70px;
  6767. height:38px;
  6768. }
  6769. #u96383 {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:880px;
  6773. top:152px;
  6774. width:70px;
  6775. height:38px;
  6776. display:flex;
  6777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. font-size:12px;
  6781. color:#AAAAAA;
  6782. }
  6783. #u96383 .text {
  6784. position:absolute;
  6785. align-self:center;
  6786. padding:2px 2px 2px 0px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u96383_text {
  6791. border-width:0px;
  6792. word-wrap:break-word;
  6793. text-transform:none;
  6794. visibility:hidden;
  6795. }
  6796. #u96384_img {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:80px;
  6802. height:38px;
  6803. }
  6804. #u96384 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:950px;
  6808. top:152px;
  6809. width:80px;
  6810. height:38px;
  6811. display:flex;
  6812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:12px;
  6816. color:#AAAAAA;
  6817. }
  6818. #u96384 .text {
  6819. position:absolute;
  6820. align-self:center;
  6821. padding:2px 2px 2px 0px;
  6822. box-sizing:border-box;
  6823. width:100%;
  6824. }
  6825. #u96384_text {
  6826. border-width:0px;
  6827. word-wrap:break-word;
  6828. text-transform:none;
  6829. visibility:hidden;
  6830. }
  6831. #u96385_img {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:80px;
  6837. height:38px;
  6838. }
  6839. #u96385 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:1030px;
  6843. top:152px;
  6844. width:80px;
  6845. height:38px;
  6846. display:flex;
  6847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6848. font-weight:400;
  6849. font-style:normal;
  6850. font-size:12px;
  6851. color:#AAAAAA;
  6852. }
  6853. #u96385 .text {
  6854. position:absolute;
  6855. align-self:center;
  6856. padding:2px 2px 2px 0px;
  6857. box-sizing:border-box;
  6858. width:100%;
  6859. }
  6860. #u96385_text {
  6861. border-width:0px;
  6862. word-wrap:break-word;
  6863. text-transform:none;
  6864. visibility:hidden;
  6865. }
  6866. #u96386_img {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:0px;
  6870. top:0px;
  6871. width:80px;
  6872. height:38px;
  6873. }
  6874. #u96386 {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:1110px;
  6878. top:152px;
  6879. width:80px;
  6880. height:38px;
  6881. display:flex;
  6882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:12px;
  6886. color:#AAAAAA;
  6887. }
  6888. #u96386 .text {
  6889. position:absolute;
  6890. align-self:center;
  6891. padding:2px 2px 2px 0px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u96386_text {
  6896. border-width:0px;
  6897. word-wrap:break-word;
  6898. text-transform:none;
  6899. visibility:hidden;
  6900. }
  6901. #u96387_img {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:0px;
  6905. top:0px;
  6906. width:70px;
  6907. height:38px;
  6908. }
  6909. #u96387 {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:1190px;
  6913. top:152px;
  6914. width:70px;
  6915. height:38px;
  6916. display:flex;
  6917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:12px;
  6921. color:#AAAAAA;
  6922. }
  6923. #u96387 .text {
  6924. position:absolute;
  6925. align-self:center;
  6926. padding:2px 2px 2px 0px;
  6927. box-sizing:border-box;
  6928. width:100%;
  6929. }
  6930. #u96387_text {
  6931. border-width:0px;
  6932. word-wrap:break-word;
  6933. text-transform:none;
  6934. visibility:hidden;
  6935. }
  6936. #u96388_img {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:80px;
  6942. height:38px;
  6943. }
  6944. #u96388 {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:1260px;
  6948. top:152px;
  6949. width:80px;
  6950. height:38px;
  6951. display:flex;
  6952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6953. font-weight:400;
  6954. font-style:normal;
  6955. font-size:12px;
  6956. color:#AAAAAA;
  6957. }
  6958. #u96388 .text {
  6959. position:absolute;
  6960. align-self:center;
  6961. padding:2px 2px 2px 0px;
  6962. box-sizing:border-box;
  6963. width:100%;
  6964. }
  6965. #u96388_text {
  6966. border-width:0px;
  6967. word-wrap:break-word;
  6968. text-transform:none;
  6969. visibility:hidden;
  6970. }
  6971. #u96389_img {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:0px;
  6975. top:0px;
  6976. width:70px;
  6977. height:38px;
  6978. }
  6979. #u96389 {
  6980. border-width:0px;
  6981. position:absolute;
  6982. left:1340px;
  6983. top:152px;
  6984. width:70px;
  6985. height:38px;
  6986. display:flex;
  6987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6988. font-weight:400;
  6989. font-style:normal;
  6990. font-size:12px;
  6991. color:#AAAAAA;
  6992. }
  6993. #u96389 .text {
  6994. position:absolute;
  6995. align-self:center;
  6996. padding:2px 2px 2px 0px;
  6997. box-sizing:border-box;
  6998. width:100%;
  6999. }
  7000. #u96389_text {
  7001. border-width:0px;
  7002. word-wrap:break-word;
  7003. text-transform:none;
  7004. visibility:hidden;
  7005. }
  7006. #u96390_img {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:70px;
  7012. height:38px;
  7013. }
  7014. #u96390 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:1410px;
  7018. top:152px;
  7019. width:70px;
  7020. height:38px;
  7021. display:flex;
  7022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7023. font-weight:400;
  7024. font-style:normal;
  7025. font-size:12px;
  7026. color:#AAAAAA;
  7027. }
  7028. #u96390 .text {
  7029. position:absolute;
  7030. align-self:center;
  7031. padding:2px 2px 2px 0px;
  7032. box-sizing:border-box;
  7033. width:100%;
  7034. }
  7035. #u96390_text {
  7036. border-width:0px;
  7037. word-wrap:break-word;
  7038. text-transform:none;
  7039. visibility:hidden;
  7040. }
  7041. #u96391_img {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:0px;
  7045. top:0px;
  7046. width:60px;
  7047. height:35px;
  7048. }
  7049. #u96391 {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:0px;
  7053. top:190px;
  7054. width:60px;
  7055. height:35px;
  7056. display:flex;
  7057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7058. font-weight:400;
  7059. font-style:normal;
  7060. font-size:12px;
  7061. color:#333333;
  7062. }
  7063. #u96391 .text {
  7064. position:absolute;
  7065. align-self:center;
  7066. padding:2px 2px 2px 0px;
  7067. box-sizing:border-box;
  7068. width:100%;
  7069. }
  7070. #u96391_text {
  7071. border-width:0px;
  7072. word-wrap:break-word;
  7073. text-transform:none;
  7074. visibility:hidden;
  7075. }
  7076. #u96392_img {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:0px;
  7080. top:0px;
  7081. width:60px;
  7082. height:35px;
  7083. }
  7084. #u96392 {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:60px;
  7088. top:190px;
  7089. width:60px;
  7090. height:35px;
  7091. display:flex;
  7092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7093. font-weight:400;
  7094. font-style:normal;
  7095. font-size:12px;
  7096. color:#333333;
  7097. }
  7098. #u96392 .text {
  7099. position:absolute;
  7100. align-self:center;
  7101. padding:2px 2px 2px 0px;
  7102. box-sizing:border-box;
  7103. width:100%;
  7104. }
  7105. #u96392_text {
  7106. border-width:0px;
  7107. word-wrap:break-word;
  7108. text-transform:none;
  7109. visibility:hidden;
  7110. }
  7111. #u96393_img {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:0px;
  7115. top:0px;
  7116. width:60px;
  7117. height:35px;
  7118. }
  7119. #u96393 {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:120px;
  7123. top:190px;
  7124. width:60px;
  7125. height:35px;
  7126. display:flex;
  7127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7128. font-weight:400;
  7129. font-style:normal;
  7130. font-size:12px;
  7131. color:#333333;
  7132. }
  7133. #u96393 .text {
  7134. position:absolute;
  7135. align-self:center;
  7136. padding:2px 2px 2px 0px;
  7137. box-sizing:border-box;
  7138. width:100%;
  7139. }
  7140. #u96393_text {
  7141. border-width:0px;
  7142. word-wrap:break-word;
  7143. text-transform:none;
  7144. visibility:hidden;
  7145. }
  7146. #u96394_img {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:0px;
  7150. top:0px;
  7151. width:60px;
  7152. height:35px;
  7153. }
  7154. #u96394 {
  7155. border-width:0px;
  7156. position:absolute;
  7157. left:180px;
  7158. top:190px;
  7159. width:60px;
  7160. height:35px;
  7161. display:flex;
  7162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7163. font-weight:400;
  7164. font-style:normal;
  7165. font-size:12px;
  7166. color:#333333;
  7167. }
  7168. #u96394 .text {
  7169. position:absolute;
  7170. align-self:center;
  7171. padding:2px 2px 2px 0px;
  7172. box-sizing:border-box;
  7173. width:100%;
  7174. }
  7175. #u96394_text {
  7176. border-width:0px;
  7177. word-wrap:break-word;
  7178. text-transform:none;
  7179. visibility:hidden;
  7180. }
  7181. #u96395_img {
  7182. border-width:0px;
  7183. position:absolute;
  7184. left:0px;
  7185. top:0px;
  7186. width:60px;
  7187. height:35px;
  7188. }
  7189. #u96395 {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:240px;
  7193. top:190px;
  7194. width:60px;
  7195. height:35px;
  7196. display:flex;
  7197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7198. font-weight:400;
  7199. font-style:normal;
  7200. font-size:12px;
  7201. color:#333333;
  7202. }
  7203. #u96395 .text {
  7204. position:absolute;
  7205. align-self:center;
  7206. padding:2px 2px 2px 0px;
  7207. box-sizing:border-box;
  7208. width:100%;
  7209. }
  7210. #u96395_text {
  7211. border-width:0px;
  7212. word-wrap:break-word;
  7213. text-transform:none;
  7214. visibility:hidden;
  7215. }
  7216. #u96396_img {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:0px;
  7221. width:60px;
  7222. height:35px;
  7223. }
  7224. #u96396 {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:300px;
  7228. top:190px;
  7229. width:60px;
  7230. height:35px;
  7231. display:flex;
  7232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7233. font-weight:400;
  7234. font-style:normal;
  7235. font-size:12px;
  7236. color:#333333;
  7237. }
  7238. #u96396 .text {
  7239. position:absolute;
  7240. align-self:center;
  7241. padding:2px 2px 2px 0px;
  7242. box-sizing:border-box;
  7243. width:100%;
  7244. }
  7245. #u96396_text {
  7246. border-width:0px;
  7247. word-wrap:break-word;
  7248. text-transform:none;
  7249. visibility:hidden;
  7250. }
  7251. #u96397_img {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:0px;
  7255. top:0px;
  7256. width:60px;
  7257. height:35px;
  7258. }
  7259. #u96397 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:360px;
  7263. top:190px;
  7264. width:60px;
  7265. height:35px;
  7266. display:flex;
  7267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7268. font-weight:400;
  7269. font-style:normal;
  7270. font-size:12px;
  7271. color:#333333;
  7272. }
  7273. #u96397 .text {
  7274. position:absolute;
  7275. align-self:center;
  7276. padding:2px 2px 2px 0px;
  7277. box-sizing:border-box;
  7278. width:100%;
  7279. }
  7280. #u96397_text {
  7281. border-width:0px;
  7282. word-wrap:break-word;
  7283. text-transform:none;
  7284. visibility:hidden;
  7285. }
  7286. #u96398_img {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:60px;
  7292. height:35px;
  7293. }
  7294. #u96398 {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:420px;
  7298. top:190px;
  7299. width:60px;
  7300. height:35px;
  7301. display:flex;
  7302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7303. font-weight:400;
  7304. font-style:normal;
  7305. font-size:12px;
  7306. color:#AAAAAA;
  7307. }
  7308. #u96398 .text {
  7309. position:absolute;
  7310. align-self:center;
  7311. padding:2px 2px 2px 0px;
  7312. box-sizing:border-box;
  7313. width:100%;
  7314. }
  7315. #u96398_text {
  7316. border-width:0px;
  7317. word-wrap:break-word;
  7318. text-transform:none;
  7319. visibility:hidden;
  7320. }
  7321. #u96399_img {
  7322. border-width:0px;
  7323. position:absolute;
  7324. left:0px;
  7325. top:0px;
  7326. width:60px;
  7327. height:35px;
  7328. }
  7329. #u96399 {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:480px;
  7333. top:190px;
  7334. width:60px;
  7335. height:35px;
  7336. display:flex;
  7337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7338. font-weight:400;
  7339. font-style:normal;
  7340. font-size:12px;
  7341. color:#AAAAAA;
  7342. }
  7343. #u96399 .text {
  7344. position:absolute;
  7345. align-self:center;
  7346. padding:2px 2px 2px 0px;
  7347. box-sizing:border-box;
  7348. width:100%;
  7349. }
  7350. #u96399_text {
  7351. border-width:0px;
  7352. word-wrap:break-word;
  7353. text-transform:none;
  7354. visibility:hidden;
  7355. }
  7356. #u96400_img {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:0px;
  7360. top:0px;
  7361. width:70px;
  7362. height:35px;
  7363. }
  7364. #u96400 {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:540px;
  7368. top:190px;
  7369. width:70px;
  7370. height:35px;
  7371. display:flex;
  7372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7373. font-weight:400;
  7374. font-style:normal;
  7375. font-size:12px;
  7376. color:#AAAAAA;
  7377. }
  7378. #u96400 .text {
  7379. position:absolute;
  7380. align-self:center;
  7381. padding:2px 2px 2px 0px;
  7382. box-sizing:border-box;
  7383. width:100%;
  7384. }
  7385. #u96400_text {
  7386. border-width:0px;
  7387. word-wrap:break-word;
  7388. text-transform:none;
  7389. visibility:hidden;
  7390. }
  7391. #u96401_img {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:0px;
  7395. top:0px;
  7396. width:50px;
  7397. height:35px;
  7398. }
  7399. #u96401 {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:610px;
  7403. top:190px;
  7404. width:50px;
  7405. height:35px;
  7406. display:flex;
  7407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7408. font-weight:400;
  7409. font-style:normal;
  7410. font-size:12px;
  7411. color:#AAAAAA;
  7412. }
  7413. #u96401 .text {
  7414. position:absolute;
  7415. align-self:center;
  7416. padding:2px 2px 2px 0px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u96401_text {
  7421. border-width:0px;
  7422. word-wrap:break-word;
  7423. text-transform:none;
  7424. visibility:hidden;
  7425. }
  7426. #u96402_img {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:50px;
  7432. height:35px;
  7433. }
  7434. #u96402 {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:660px;
  7438. top:190px;
  7439. width:50px;
  7440. height:35px;
  7441. display:flex;
  7442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. font-size:12px;
  7446. color:#AAAAAA;
  7447. }
  7448. #u96402 .text {
  7449. position:absolute;
  7450. align-self:center;
  7451. padding:2px 2px 2px 0px;
  7452. box-sizing:border-box;
  7453. width:100%;
  7454. }
  7455. #u96402_text {
  7456. border-width:0px;
  7457. word-wrap:break-word;
  7458. text-transform:none;
  7459. visibility:hidden;
  7460. }
  7461. #u96403_img {
  7462. border-width:0px;
  7463. position:absolute;
  7464. left:0px;
  7465. top:0px;
  7466. width:50px;
  7467. height:35px;
  7468. }
  7469. #u96403 {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:710px;
  7473. top:190px;
  7474. width:50px;
  7475. height:35px;
  7476. display:flex;
  7477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7478. font-weight:400;
  7479. font-style:normal;
  7480. font-size:12px;
  7481. color:#AAAAAA;
  7482. }
  7483. #u96403 .text {
  7484. position:absolute;
  7485. align-self:center;
  7486. padding:2px 2px 2px 0px;
  7487. box-sizing:border-box;
  7488. width:100%;
  7489. }
  7490. #u96403_text {
  7491. border-width:0px;
  7492. word-wrap:break-word;
  7493. text-transform:none;
  7494. visibility:hidden;
  7495. }
  7496. #u96404_img {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:0px;
  7500. top:0px;
  7501. width:60px;
  7502. height:35px;
  7503. }
  7504. #u96404 {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:760px;
  7508. top:190px;
  7509. width:60px;
  7510. height:35px;
  7511. display:flex;
  7512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7513. font-weight:400;
  7514. font-style:normal;
  7515. font-size:12px;
  7516. color:#AAAAAA;
  7517. }
  7518. #u96404 .text {
  7519. position:absolute;
  7520. align-self:center;
  7521. padding:2px 2px 2px 0px;
  7522. box-sizing:border-box;
  7523. width:100%;
  7524. }
  7525. #u96404_text {
  7526. border-width:0px;
  7527. word-wrap:break-word;
  7528. text-transform:none;
  7529. visibility:hidden;
  7530. }
  7531. #u96405_img {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:0px;
  7535. top:0px;
  7536. width:60px;
  7537. height:35px;
  7538. }
  7539. #u96405 {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:820px;
  7543. top:190px;
  7544. width:60px;
  7545. height:35px;
  7546. display:flex;
  7547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:12px;
  7551. color:#AAAAAA;
  7552. }
  7553. #u96405 .text {
  7554. position:absolute;
  7555. align-self:center;
  7556. padding:2px 2px 2px 0px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u96405_text {
  7561. border-width:0px;
  7562. word-wrap:break-word;
  7563. text-transform:none;
  7564. visibility:hidden;
  7565. }
  7566. #u96406_img {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:70px;
  7572. height:35px;
  7573. }
  7574. #u96406 {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:880px;
  7578. top:190px;
  7579. width:70px;
  7580. height:35px;
  7581. display:flex;
  7582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7583. font-weight:400;
  7584. font-style:normal;
  7585. font-size:12px;
  7586. color:#AAAAAA;
  7587. }
  7588. #u96406 .text {
  7589. position:absolute;
  7590. align-self:center;
  7591. padding:2px 2px 2px 0px;
  7592. box-sizing:border-box;
  7593. width:100%;
  7594. }
  7595. #u96406_text {
  7596. border-width:0px;
  7597. word-wrap:break-word;
  7598. text-transform:none;
  7599. visibility:hidden;
  7600. }
  7601. #u96407_img {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:80px;
  7607. height:35px;
  7608. }
  7609. #u96407 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:950px;
  7613. top:190px;
  7614. width:80px;
  7615. height:35px;
  7616. display:flex;
  7617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7618. font-weight:400;
  7619. font-style:normal;
  7620. font-size:12px;
  7621. color:#AAAAAA;
  7622. }
  7623. #u96407 .text {
  7624. position:absolute;
  7625. align-self:center;
  7626. padding:2px 2px 2px 0px;
  7627. box-sizing:border-box;
  7628. width:100%;
  7629. }
  7630. #u96407_text {
  7631. border-width:0px;
  7632. word-wrap:break-word;
  7633. text-transform:none;
  7634. visibility:hidden;
  7635. }
  7636. #u96408_img {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:0px;
  7640. top:0px;
  7641. width:80px;
  7642. height:35px;
  7643. }
  7644. #u96408 {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:1030px;
  7648. top:190px;
  7649. width:80px;
  7650. height:35px;
  7651. display:flex;
  7652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7653. font-weight:400;
  7654. font-style:normal;
  7655. font-size:12px;
  7656. color:#AAAAAA;
  7657. }
  7658. #u96408 .text {
  7659. position:absolute;
  7660. align-self:center;
  7661. padding:2px 2px 2px 0px;
  7662. box-sizing:border-box;
  7663. width:100%;
  7664. }
  7665. #u96408_text {
  7666. border-width:0px;
  7667. word-wrap:break-word;
  7668. text-transform:none;
  7669. visibility:hidden;
  7670. }
  7671. #u96409_img {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:0px;
  7675. top:0px;
  7676. width:80px;
  7677. height:35px;
  7678. }
  7679. #u96409 {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:1110px;
  7683. top:190px;
  7684. width:80px;
  7685. height:35px;
  7686. display:flex;
  7687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:12px;
  7691. color:#AAAAAA;
  7692. }
  7693. #u96409 .text {
  7694. position:absolute;
  7695. align-self:center;
  7696. padding:2px 2px 2px 0px;
  7697. box-sizing:border-box;
  7698. width:100%;
  7699. }
  7700. #u96409_text {
  7701. border-width:0px;
  7702. word-wrap:break-word;
  7703. text-transform:none;
  7704. visibility:hidden;
  7705. }
  7706. #u96410_img {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:0px;
  7710. top:0px;
  7711. width:70px;
  7712. height:35px;
  7713. }
  7714. #u96410 {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:1190px;
  7718. top:190px;
  7719. width:70px;
  7720. height:35px;
  7721. display:flex;
  7722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7723. font-weight:400;
  7724. font-style:normal;
  7725. font-size:12px;
  7726. color:#AAAAAA;
  7727. }
  7728. #u96410 .text {
  7729. position:absolute;
  7730. align-self:center;
  7731. padding:2px 2px 2px 0px;
  7732. box-sizing:border-box;
  7733. width:100%;
  7734. }
  7735. #u96410_text {
  7736. border-width:0px;
  7737. word-wrap:break-word;
  7738. text-transform:none;
  7739. visibility:hidden;
  7740. }
  7741. #u96411_img {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:0px;
  7745. top:0px;
  7746. width:80px;
  7747. height:35px;
  7748. }
  7749. #u96411 {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:1260px;
  7753. top:190px;
  7754. width:80px;
  7755. height:35px;
  7756. display:flex;
  7757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7758. font-weight:400;
  7759. font-style:normal;
  7760. font-size:12px;
  7761. color:#AAAAAA;
  7762. }
  7763. #u96411 .text {
  7764. position:absolute;
  7765. align-self:center;
  7766. padding:2px 2px 2px 0px;
  7767. box-sizing:border-box;
  7768. width:100%;
  7769. }
  7770. #u96411_text {
  7771. border-width:0px;
  7772. word-wrap:break-word;
  7773. text-transform:none;
  7774. visibility:hidden;
  7775. }
  7776. #u96412_img {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:0px;
  7780. top:0px;
  7781. width:70px;
  7782. height:35px;
  7783. }
  7784. #u96412 {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:1340px;
  7788. top:190px;
  7789. width:70px;
  7790. height:35px;
  7791. display:flex;
  7792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7793. font-weight:400;
  7794. font-style:normal;
  7795. font-size:12px;
  7796. color:#AAAAAA;
  7797. }
  7798. #u96412 .text {
  7799. position:absolute;
  7800. align-self:center;
  7801. padding:2px 2px 2px 0px;
  7802. box-sizing:border-box;
  7803. width:100%;
  7804. }
  7805. #u96412_text {
  7806. border-width:0px;
  7807. word-wrap:break-word;
  7808. text-transform:none;
  7809. visibility:hidden;
  7810. }
  7811. #u96413_img {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:70px;
  7817. height:35px;
  7818. }
  7819. #u96413 {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:1410px;
  7823. top:190px;
  7824. width:70px;
  7825. height:35px;
  7826. display:flex;
  7827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7828. font-weight:400;
  7829. font-style:normal;
  7830. font-size:12px;
  7831. color:#AAAAAA;
  7832. }
  7833. #u96413 .text {
  7834. position:absolute;
  7835. align-self:center;
  7836. padding:2px 2px 2px 0px;
  7837. box-sizing:border-box;
  7838. width:100%;
  7839. }
  7840. #u96413_text {
  7841. border-width:0px;
  7842. word-wrap:break-word;
  7843. text-transform:none;
  7844. visibility:hidden;
  7845. }
  7846. #u96414_img {
  7847. border-width:0px;
  7848. position:absolute;
  7849. left:0px;
  7850. top:0px;
  7851. width:60px;
  7852. height:35px;
  7853. }
  7854. #u96414 {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:225px;
  7859. width:60px;
  7860. height:35px;
  7861. display:flex;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:12px;
  7866. color:#333333;
  7867. }
  7868. #u96414 .text {
  7869. position:absolute;
  7870. align-self:center;
  7871. padding:2px 2px 2px 0px;
  7872. box-sizing:border-box;
  7873. width:100%;
  7874. }
  7875. #u96414_text {
  7876. border-width:0px;
  7877. word-wrap:break-word;
  7878. text-transform:none;
  7879. visibility:hidden;
  7880. }
  7881. #u96415_img {
  7882. border-width:0px;
  7883. position:absolute;
  7884. left:0px;
  7885. top:0px;
  7886. width:60px;
  7887. height:35px;
  7888. }
  7889. #u96415 {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:60px;
  7893. top:225px;
  7894. width:60px;
  7895. height:35px;
  7896. display:flex;
  7897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7898. font-weight:400;
  7899. font-style:normal;
  7900. font-size:12px;
  7901. color:#333333;
  7902. }
  7903. #u96415 .text {
  7904. position:absolute;
  7905. align-self:center;
  7906. padding:2px 2px 2px 0px;
  7907. box-sizing:border-box;
  7908. width:100%;
  7909. }
  7910. #u96415_text {
  7911. border-width:0px;
  7912. word-wrap:break-word;
  7913. text-transform:none;
  7914. visibility:hidden;
  7915. }
  7916. #u96416_img {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:0px;
  7920. top:0px;
  7921. width:60px;
  7922. height:35px;
  7923. }
  7924. #u96416 {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:120px;
  7928. top:225px;
  7929. width:60px;
  7930. height:35px;
  7931. display:flex;
  7932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7933. font-weight:400;
  7934. font-style:normal;
  7935. font-size:12px;
  7936. color:#333333;
  7937. }
  7938. #u96416 .text {
  7939. position:absolute;
  7940. align-self:center;
  7941. padding:2px 2px 2px 0px;
  7942. box-sizing:border-box;
  7943. width:100%;
  7944. }
  7945. #u96416_text {
  7946. border-width:0px;
  7947. word-wrap:break-word;
  7948. text-transform:none;
  7949. visibility:hidden;
  7950. }
  7951. #u96417_img {
  7952. border-width:0px;
  7953. position:absolute;
  7954. left:0px;
  7955. top:0px;
  7956. width:60px;
  7957. height:35px;
  7958. }
  7959. #u96417 {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:180px;
  7963. top:225px;
  7964. width:60px;
  7965. height:35px;
  7966. display:flex;
  7967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7968. font-weight:400;
  7969. font-style:normal;
  7970. font-size:12px;
  7971. color:#333333;
  7972. }
  7973. #u96417 .text {
  7974. position:absolute;
  7975. align-self:center;
  7976. padding:2px 2px 2px 0px;
  7977. box-sizing:border-box;
  7978. width:100%;
  7979. }
  7980. #u96417_text {
  7981. border-width:0px;
  7982. word-wrap:break-word;
  7983. text-transform:none;
  7984. visibility:hidden;
  7985. }
  7986. #u96418_img {
  7987. border-width:0px;
  7988. position:absolute;
  7989. left:0px;
  7990. top:0px;
  7991. width:60px;
  7992. height:35px;
  7993. }
  7994. #u96418 {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:240px;
  7998. top:225px;
  7999. width:60px;
  8000. height:35px;
  8001. display:flex;
  8002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8003. font-weight:400;
  8004. font-style:normal;
  8005. font-size:12px;
  8006. color:#333333;
  8007. }
  8008. #u96418 .text {
  8009. position:absolute;
  8010. align-self:center;
  8011. padding:2px 2px 2px 0px;
  8012. box-sizing:border-box;
  8013. width:100%;
  8014. }
  8015. #u96418_text {
  8016. border-width:0px;
  8017. word-wrap:break-word;
  8018. text-transform:none;
  8019. visibility:hidden;
  8020. }
  8021. #u96419_img {
  8022. border-width:0px;
  8023. position:absolute;
  8024. left:0px;
  8025. top:0px;
  8026. width:60px;
  8027. height:35px;
  8028. }
  8029. #u96419 {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:300px;
  8033. top:225px;
  8034. width:60px;
  8035. height:35px;
  8036. display:flex;
  8037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8038. font-weight:400;
  8039. font-style:normal;
  8040. font-size:12px;
  8041. color:#333333;
  8042. }
  8043. #u96419 .text {
  8044. position:absolute;
  8045. align-self:center;
  8046. padding:2px 2px 2px 0px;
  8047. box-sizing:border-box;
  8048. width:100%;
  8049. }
  8050. #u96419_text {
  8051. border-width:0px;
  8052. word-wrap:break-word;
  8053. text-transform:none;
  8054. visibility:hidden;
  8055. }
  8056. #u96420_img {
  8057. border-width:0px;
  8058. position:absolute;
  8059. left:0px;
  8060. top:0px;
  8061. width:60px;
  8062. height:35px;
  8063. }
  8064. #u96420 {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:360px;
  8068. top:225px;
  8069. width:60px;
  8070. height:35px;
  8071. display:flex;
  8072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8073. font-weight:400;
  8074. font-style:normal;
  8075. font-size:12px;
  8076. color:#333333;
  8077. }
  8078. #u96420 .text {
  8079. position:absolute;
  8080. align-self:center;
  8081. padding:2px 2px 2px 0px;
  8082. box-sizing:border-box;
  8083. width:100%;
  8084. }
  8085. #u96420_text {
  8086. border-width:0px;
  8087. word-wrap:break-word;
  8088. text-transform:none;
  8089. visibility:hidden;
  8090. }
  8091. #u96421_img {
  8092. border-width:0px;
  8093. position:absolute;
  8094. left:0px;
  8095. top:0px;
  8096. width:60px;
  8097. height:35px;
  8098. }
  8099. #u96421 {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:420px;
  8103. top:225px;
  8104. width:60px;
  8105. height:35px;
  8106. display:flex;
  8107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8108. font-weight:400;
  8109. font-style:normal;
  8110. font-size:12px;
  8111. color:#333333;
  8112. }
  8113. #u96421 .text {
  8114. position:absolute;
  8115. align-self:center;
  8116. padding:2px 2px 2px 0px;
  8117. box-sizing:border-box;
  8118. width:100%;
  8119. }
  8120. #u96421_text {
  8121. border-width:0px;
  8122. word-wrap:break-word;
  8123. text-transform:none;
  8124. visibility:hidden;
  8125. }
  8126. #u96422_img {
  8127. border-width:0px;
  8128. position:absolute;
  8129. left:0px;
  8130. top:0px;
  8131. width:60px;
  8132. height:35px;
  8133. }
  8134. #u96422 {
  8135. border-width:0px;
  8136. position:absolute;
  8137. left:480px;
  8138. top:225px;
  8139. width:60px;
  8140. height:35px;
  8141. display:flex;
  8142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8143. font-weight:400;
  8144. font-style:normal;
  8145. font-size:12px;
  8146. color:#333333;
  8147. }
  8148. #u96422 .text {
  8149. position:absolute;
  8150. align-self:center;
  8151. padding:2px 2px 2px 0px;
  8152. box-sizing:border-box;
  8153. width:100%;
  8154. }
  8155. #u96422_text {
  8156. border-width:0px;
  8157. word-wrap:break-word;
  8158. text-transform:none;
  8159. visibility:hidden;
  8160. }
  8161. #u96423_img {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:0px;
  8165. top:0px;
  8166. width:70px;
  8167. height:35px;
  8168. }
  8169. #u96423 {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:540px;
  8173. top:225px;
  8174. width:70px;
  8175. height:35px;
  8176. display:flex;
  8177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8178. font-weight:400;
  8179. font-style:normal;
  8180. font-size:12px;
  8181. color:#333333;
  8182. }
  8183. #u96423 .text {
  8184. position:absolute;
  8185. align-self:center;
  8186. padding:2px 2px 2px 0px;
  8187. box-sizing:border-box;
  8188. width:100%;
  8189. }
  8190. #u96423_text {
  8191. border-width:0px;
  8192. word-wrap:break-word;
  8193. text-transform:none;
  8194. visibility:hidden;
  8195. }
  8196. #u96424_img {
  8197. border-width:0px;
  8198. position:absolute;
  8199. left:0px;
  8200. top:0px;
  8201. width:50px;
  8202. height:35px;
  8203. }
  8204. #u96424 {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:610px;
  8208. top:225px;
  8209. width:50px;
  8210. height:35px;
  8211. display:flex;
  8212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8213. font-weight:400;
  8214. font-style:normal;
  8215. font-size:12px;
  8216. color:#333333;
  8217. }
  8218. #u96424 .text {
  8219. position:absolute;
  8220. align-self:center;
  8221. padding:2px 2px 2px 0px;
  8222. box-sizing:border-box;
  8223. width:100%;
  8224. }
  8225. #u96424_text {
  8226. border-width:0px;
  8227. word-wrap:break-word;
  8228. text-transform:none;
  8229. visibility:hidden;
  8230. }
  8231. #u96425_img {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:0px;
  8235. top:0px;
  8236. width:50px;
  8237. height:35px;
  8238. }
  8239. #u96425 {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:660px;
  8243. top:225px;
  8244. width:50px;
  8245. height:35px;
  8246. display:flex;
  8247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8248. font-weight:400;
  8249. font-style:normal;
  8250. font-size:12px;
  8251. color:#333333;
  8252. }
  8253. #u96425 .text {
  8254. position:absolute;
  8255. align-self:center;
  8256. padding:2px 2px 2px 0px;
  8257. box-sizing:border-box;
  8258. width:100%;
  8259. }
  8260. #u96425_text {
  8261. border-width:0px;
  8262. word-wrap:break-word;
  8263. text-transform:none;
  8264. visibility:hidden;
  8265. }
  8266. #u96426_img {
  8267. border-width:0px;
  8268. position:absolute;
  8269. left:0px;
  8270. top:0px;
  8271. width:50px;
  8272. height:35px;
  8273. }
  8274. #u96426 {
  8275. border-width:0px;
  8276. position:absolute;
  8277. left:710px;
  8278. top:225px;
  8279. width:50px;
  8280. height:35px;
  8281. display:flex;
  8282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8283. font-weight:400;
  8284. font-style:normal;
  8285. font-size:12px;
  8286. color:#333333;
  8287. }
  8288. #u96426 .text {
  8289. position:absolute;
  8290. align-self:center;
  8291. padding:2px 2px 2px 0px;
  8292. box-sizing:border-box;
  8293. width:100%;
  8294. }
  8295. #u96426_text {
  8296. border-width:0px;
  8297. word-wrap:break-word;
  8298. text-transform:none;
  8299. visibility:hidden;
  8300. }
  8301. #u96427_img {
  8302. border-width:0px;
  8303. position:absolute;
  8304. left:0px;
  8305. top:0px;
  8306. width:60px;
  8307. height:35px;
  8308. }
  8309. #u96427 {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:760px;
  8313. top:225px;
  8314. width:60px;
  8315. height:35px;
  8316. display:flex;
  8317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8318. font-weight:400;
  8319. font-style:normal;
  8320. font-size:12px;
  8321. color:#333333;
  8322. }
  8323. #u96427 .text {
  8324. position:absolute;
  8325. align-self:center;
  8326. padding:2px 2px 2px 0px;
  8327. box-sizing:border-box;
  8328. width:100%;
  8329. }
  8330. #u96427_text {
  8331. border-width:0px;
  8332. word-wrap:break-word;
  8333. text-transform:none;
  8334. visibility:hidden;
  8335. }
  8336. #u96428_img {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:0px;
  8340. top:0px;
  8341. width:60px;
  8342. height:35px;
  8343. }
  8344. #u96428 {
  8345. border-width:0px;
  8346. position:absolute;
  8347. left:820px;
  8348. top:225px;
  8349. width:60px;
  8350. height:35px;
  8351. display:flex;
  8352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8353. font-weight:400;
  8354. font-style:normal;
  8355. font-size:12px;
  8356. color:#333333;
  8357. }
  8358. #u96428 .text {
  8359. position:absolute;
  8360. align-self:center;
  8361. padding:2px 2px 2px 0px;
  8362. box-sizing:border-box;
  8363. width:100%;
  8364. }
  8365. #u96428_text {
  8366. border-width:0px;
  8367. word-wrap:break-word;
  8368. text-transform:none;
  8369. visibility:hidden;
  8370. }
  8371. #u96429_img {
  8372. border-width:0px;
  8373. position:absolute;
  8374. left:0px;
  8375. top:0px;
  8376. width:70px;
  8377. height:35px;
  8378. }
  8379. #u96429 {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:880px;
  8383. top:225px;
  8384. width:70px;
  8385. height:35px;
  8386. display:flex;
  8387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8388. font-weight:400;
  8389. font-style:normal;
  8390. font-size:12px;
  8391. color:#333333;
  8392. }
  8393. #u96429 .text {
  8394. position:absolute;
  8395. align-self:center;
  8396. padding:2px 2px 2px 0px;
  8397. box-sizing:border-box;
  8398. width:100%;
  8399. }
  8400. #u96429_text {
  8401. border-width:0px;
  8402. word-wrap:break-word;
  8403. text-transform:none;
  8404. visibility:hidden;
  8405. }
  8406. #u96430_img {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:0px;
  8410. top:0px;
  8411. width:80px;
  8412. height:35px;
  8413. }
  8414. #u96430 {
  8415. border-width:0px;
  8416. position:absolute;
  8417. left:950px;
  8418. top:225px;
  8419. width:80px;
  8420. height:35px;
  8421. display:flex;
  8422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8423. font-weight:400;
  8424. font-style:normal;
  8425. font-size:12px;
  8426. color:#333333;
  8427. }
  8428. #u96430 .text {
  8429. position:absolute;
  8430. align-self:center;
  8431. padding:2px 2px 2px 0px;
  8432. box-sizing:border-box;
  8433. width:100%;
  8434. }
  8435. #u96430_text {
  8436. border-width:0px;
  8437. word-wrap:break-word;
  8438. text-transform:none;
  8439. visibility:hidden;
  8440. }
  8441. #u96431_img {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:0px;
  8445. top:0px;
  8446. width:80px;
  8447. height:35px;
  8448. }
  8449. #u96431 {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:1030px;
  8453. top:225px;
  8454. width:80px;
  8455. height:35px;
  8456. display:flex;
  8457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8458. font-weight:400;
  8459. font-style:normal;
  8460. font-size:12px;
  8461. color:#333333;
  8462. }
  8463. #u96431 .text {
  8464. position:absolute;
  8465. align-self:center;
  8466. padding:2px 2px 2px 0px;
  8467. box-sizing:border-box;
  8468. width:100%;
  8469. }
  8470. #u96431_text {
  8471. border-width:0px;
  8472. word-wrap:break-word;
  8473. text-transform:none;
  8474. visibility:hidden;
  8475. }
  8476. #u96432_img {
  8477. border-width:0px;
  8478. position:absolute;
  8479. left:0px;
  8480. top:0px;
  8481. width:80px;
  8482. height:35px;
  8483. }
  8484. #u96432 {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:1110px;
  8488. top:225px;
  8489. width:80px;
  8490. height:35px;
  8491. display:flex;
  8492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8493. font-weight:400;
  8494. font-style:normal;
  8495. font-size:12px;
  8496. color:#333333;
  8497. }
  8498. #u96432 .text {
  8499. position:absolute;
  8500. align-self:center;
  8501. padding:2px 2px 2px 0px;
  8502. box-sizing:border-box;
  8503. width:100%;
  8504. }
  8505. #u96432_text {
  8506. border-width:0px;
  8507. word-wrap:break-word;
  8508. text-transform:none;
  8509. visibility:hidden;
  8510. }
  8511. #u96433_img {
  8512. border-width:0px;
  8513. position:absolute;
  8514. left:0px;
  8515. top:0px;
  8516. width:70px;
  8517. height:35px;
  8518. }
  8519. #u96433 {
  8520. border-width:0px;
  8521. position:absolute;
  8522. left:1190px;
  8523. top:225px;
  8524. width:70px;
  8525. height:35px;
  8526. display:flex;
  8527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8528. font-weight:400;
  8529. font-style:normal;
  8530. font-size:12px;
  8531. color:#333333;
  8532. }
  8533. #u96433 .text {
  8534. position:absolute;
  8535. align-self:center;
  8536. padding:2px 2px 2px 0px;
  8537. box-sizing:border-box;
  8538. width:100%;
  8539. }
  8540. #u96433_text {
  8541. border-width:0px;
  8542. word-wrap:break-word;
  8543. text-transform:none;
  8544. visibility:hidden;
  8545. }
  8546. #u96434_img {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:0px;
  8550. top:0px;
  8551. width:80px;
  8552. height:35px;
  8553. }
  8554. #u96434 {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:1260px;
  8558. top:225px;
  8559. width:80px;
  8560. height:35px;
  8561. display:flex;
  8562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8563. font-weight:400;
  8564. font-style:normal;
  8565. font-size:12px;
  8566. color:#333333;
  8567. }
  8568. #u96434 .text {
  8569. position:absolute;
  8570. align-self:center;
  8571. padding:2px 2px 2px 0px;
  8572. box-sizing:border-box;
  8573. width:100%;
  8574. }
  8575. #u96434_text {
  8576. border-width:0px;
  8577. word-wrap:break-word;
  8578. text-transform:none;
  8579. visibility:hidden;
  8580. }
  8581. #u96435_img {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:0px;
  8585. top:0px;
  8586. width:70px;
  8587. height:35px;
  8588. }
  8589. #u96435 {
  8590. border-width:0px;
  8591. position:absolute;
  8592. left:1340px;
  8593. top:225px;
  8594. width:70px;
  8595. height:35px;
  8596. display:flex;
  8597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8598. font-weight:400;
  8599. font-style:normal;
  8600. font-size:12px;
  8601. color:#333333;
  8602. }
  8603. #u96435 .text {
  8604. position:absolute;
  8605. align-self:center;
  8606. padding:2px 2px 2px 0px;
  8607. box-sizing:border-box;
  8608. width:100%;
  8609. }
  8610. #u96435_text {
  8611. border-width:0px;
  8612. word-wrap:break-word;
  8613. text-transform:none;
  8614. visibility:hidden;
  8615. }
  8616. #u96436_img {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:70px;
  8622. height:35px;
  8623. }
  8624. #u96436 {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:1410px;
  8628. top:225px;
  8629. width:70px;
  8630. height:35px;
  8631. display:flex;
  8632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8633. font-weight:400;
  8634. font-style:normal;
  8635. font-size:12px;
  8636. color:#333333;
  8637. }
  8638. #u96436 .text {
  8639. position:absolute;
  8640. align-self:center;
  8641. padding:2px 2px 2px 0px;
  8642. box-sizing:border-box;
  8643. width:100%;
  8644. }
  8645. #u96436_text {
  8646. border-width:0px;
  8647. word-wrap:break-word;
  8648. text-transform:none;
  8649. visibility:hidden;
  8650. }
  8651. #u96437_img {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:60px;
  8657. height:32px;
  8658. }
  8659. #u96437 {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:0px;
  8663. top:260px;
  8664. width:60px;
  8665. height:32px;
  8666. display:flex;
  8667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8668. font-weight:400;
  8669. font-style:normal;
  8670. font-size:12px;
  8671. color:#333333;
  8672. }
  8673. #u96437 .text {
  8674. position:absolute;
  8675. align-self:center;
  8676. padding:2px 2px 2px 0px;
  8677. box-sizing:border-box;
  8678. width:100%;
  8679. }
  8680. #u96437_text {
  8681. border-width:0px;
  8682. word-wrap:break-word;
  8683. text-transform:none;
  8684. visibility:hidden;
  8685. }
  8686. #u96438_img {
  8687. border-width:0px;
  8688. position:absolute;
  8689. left:0px;
  8690. top:0px;
  8691. width:60px;
  8692. height:32px;
  8693. }
  8694. #u96438 {
  8695. border-width:0px;
  8696. position:absolute;
  8697. left:60px;
  8698. top:260px;
  8699. width:60px;
  8700. height:32px;
  8701. display:flex;
  8702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8703. font-weight:400;
  8704. font-style:normal;
  8705. font-size:12px;
  8706. color:#333333;
  8707. }
  8708. #u96438 .text {
  8709. position:absolute;
  8710. align-self:center;
  8711. padding:2px 2px 2px 0px;
  8712. box-sizing:border-box;
  8713. width:100%;
  8714. }
  8715. #u96438_text {
  8716. border-width:0px;
  8717. word-wrap:break-word;
  8718. text-transform:none;
  8719. visibility:hidden;
  8720. }
  8721. #u96439_img {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:0px;
  8725. top:0px;
  8726. width:60px;
  8727. height:32px;
  8728. }
  8729. #u96439 {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:120px;
  8733. top:260px;
  8734. width:60px;
  8735. height:32px;
  8736. display:flex;
  8737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8738. font-weight:400;
  8739. font-style:normal;
  8740. font-size:12px;
  8741. color:#333333;
  8742. }
  8743. #u96439 .text {
  8744. position:absolute;
  8745. align-self:center;
  8746. padding:2px 2px 2px 0px;
  8747. box-sizing:border-box;
  8748. width:100%;
  8749. }
  8750. #u96439_text {
  8751. border-width:0px;
  8752. word-wrap:break-word;
  8753. text-transform:none;
  8754. visibility:hidden;
  8755. }
  8756. #u96440_img {
  8757. border-width:0px;
  8758. position:absolute;
  8759. left:0px;
  8760. top:0px;
  8761. width:60px;
  8762. height:32px;
  8763. }
  8764. #u96440 {
  8765. border-width:0px;
  8766. position:absolute;
  8767. left:180px;
  8768. top:260px;
  8769. width:60px;
  8770. height:32px;
  8771. display:flex;
  8772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8773. font-weight:400;
  8774. font-style:normal;
  8775. font-size:12px;
  8776. color:#333333;
  8777. }
  8778. #u96440 .text {
  8779. position:absolute;
  8780. align-self:center;
  8781. padding:2px 2px 2px 0px;
  8782. box-sizing:border-box;
  8783. width:100%;
  8784. }
  8785. #u96440_text {
  8786. border-width:0px;
  8787. word-wrap:break-word;
  8788. text-transform:none;
  8789. visibility:hidden;
  8790. }
  8791. #u96441_img {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:0px;
  8795. top:0px;
  8796. width:60px;
  8797. height:32px;
  8798. }
  8799. #u96441 {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:240px;
  8803. top:260px;
  8804. width:60px;
  8805. height:32px;
  8806. display:flex;
  8807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8808. font-weight:400;
  8809. font-style:normal;
  8810. font-size:12px;
  8811. color:#333333;
  8812. }
  8813. #u96441 .text {
  8814. position:absolute;
  8815. align-self:center;
  8816. padding:2px 2px 2px 0px;
  8817. box-sizing:border-box;
  8818. width:100%;
  8819. }
  8820. #u96441_text {
  8821. border-width:0px;
  8822. word-wrap:break-word;
  8823. text-transform:none;
  8824. visibility:hidden;
  8825. }
  8826. #u96442_img {
  8827. border-width:0px;
  8828. position:absolute;
  8829. left:0px;
  8830. top:0px;
  8831. width:60px;
  8832. height:32px;
  8833. }
  8834. #u96442 {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:300px;
  8838. top:260px;
  8839. width:60px;
  8840. height:32px;
  8841. display:flex;
  8842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8843. font-weight:400;
  8844. font-style:normal;
  8845. font-size:12px;
  8846. color:#333333;
  8847. }
  8848. #u96442 .text {
  8849. position:absolute;
  8850. align-self:center;
  8851. padding:2px 2px 2px 0px;
  8852. box-sizing:border-box;
  8853. width:100%;
  8854. }
  8855. #u96442_text {
  8856. border-width:0px;
  8857. word-wrap:break-word;
  8858. text-transform:none;
  8859. visibility:hidden;
  8860. }
  8861. #u96443_img {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:60px;
  8867. height:32px;
  8868. }
  8869. #u96443 {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:360px;
  8873. top:260px;
  8874. width:60px;
  8875. height:32px;
  8876. display:flex;
  8877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:12px;
  8881. color:#333333;
  8882. }
  8883. #u96443 .text {
  8884. position:absolute;
  8885. align-self:center;
  8886. padding:2px 2px 2px 0px;
  8887. box-sizing:border-box;
  8888. width:100%;
  8889. }
  8890. #u96443_text {
  8891. border-width:0px;
  8892. word-wrap:break-word;
  8893. text-transform:none;
  8894. visibility:hidden;
  8895. }
  8896. #u96444_img {
  8897. border-width:0px;
  8898. position:absolute;
  8899. left:0px;
  8900. top:0px;
  8901. width:60px;
  8902. height:32px;
  8903. }
  8904. #u96444 {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:420px;
  8908. top:260px;
  8909. width:60px;
  8910. height:32px;
  8911. display:flex;
  8912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8913. font-weight:400;
  8914. font-style:normal;
  8915. font-size:12px;
  8916. color:#333333;
  8917. }
  8918. #u96444 .text {
  8919. position:absolute;
  8920. align-self:center;
  8921. padding:2px 2px 2px 0px;
  8922. box-sizing:border-box;
  8923. width:100%;
  8924. }
  8925. #u96444_text {
  8926. border-width:0px;
  8927. word-wrap:break-word;
  8928. text-transform:none;
  8929. visibility:hidden;
  8930. }
  8931. #u96445_img {
  8932. border-width:0px;
  8933. position:absolute;
  8934. left:0px;
  8935. top:0px;
  8936. width:60px;
  8937. height:32px;
  8938. }
  8939. #u96445 {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:480px;
  8943. top:260px;
  8944. width:60px;
  8945. height:32px;
  8946. display:flex;
  8947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8948. font-weight:400;
  8949. font-style:normal;
  8950. font-size:12px;
  8951. color:#333333;
  8952. }
  8953. #u96445 .text {
  8954. position:absolute;
  8955. align-self:center;
  8956. padding:2px 2px 2px 0px;
  8957. box-sizing:border-box;
  8958. width:100%;
  8959. }
  8960. #u96445_text {
  8961. border-width:0px;
  8962. word-wrap:break-word;
  8963. text-transform:none;
  8964. visibility:hidden;
  8965. }
  8966. #u96446_img {
  8967. border-width:0px;
  8968. position:absolute;
  8969. left:0px;
  8970. top:0px;
  8971. width:70px;
  8972. height:32px;
  8973. }
  8974. #u96446 {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:540px;
  8978. top:260px;
  8979. width:70px;
  8980. height:32px;
  8981. display:flex;
  8982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8983. font-weight:400;
  8984. font-style:normal;
  8985. font-size:12px;
  8986. color:#333333;
  8987. }
  8988. #u96446 .text {
  8989. position:absolute;
  8990. align-self:center;
  8991. padding:2px 2px 2px 0px;
  8992. box-sizing:border-box;
  8993. width:100%;
  8994. }
  8995. #u96446_text {
  8996. border-width:0px;
  8997. word-wrap:break-word;
  8998. text-transform:none;
  8999. visibility:hidden;
  9000. }
  9001. #u96447_img {
  9002. border-width:0px;
  9003. position:absolute;
  9004. left:0px;
  9005. top:0px;
  9006. width:50px;
  9007. height:32px;
  9008. }
  9009. #u96447 {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:610px;
  9013. top:260px;
  9014. width:50px;
  9015. height:32px;
  9016. display:flex;
  9017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9018. font-weight:400;
  9019. font-style:normal;
  9020. font-size:12px;
  9021. color:#333333;
  9022. }
  9023. #u96447 .text {
  9024. position:absolute;
  9025. align-self:center;
  9026. padding:2px 2px 2px 0px;
  9027. box-sizing:border-box;
  9028. width:100%;
  9029. }
  9030. #u96447_text {
  9031. border-width:0px;
  9032. word-wrap:break-word;
  9033. text-transform:none;
  9034. visibility:hidden;
  9035. }
  9036. #u96448_img {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:0px;
  9040. top:0px;
  9041. width:50px;
  9042. height:32px;
  9043. }
  9044. #u96448 {
  9045. border-width:0px;
  9046. position:absolute;
  9047. left:660px;
  9048. top:260px;
  9049. width:50px;
  9050. height:32px;
  9051. display:flex;
  9052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9053. font-weight:400;
  9054. font-style:normal;
  9055. font-size:12px;
  9056. color:#333333;
  9057. }
  9058. #u96448 .text {
  9059. position:absolute;
  9060. align-self:center;
  9061. padding:2px 2px 2px 0px;
  9062. box-sizing:border-box;
  9063. width:100%;
  9064. }
  9065. #u96448_text {
  9066. border-width:0px;
  9067. word-wrap:break-word;
  9068. text-transform:none;
  9069. visibility:hidden;
  9070. }
  9071. #u96449_img {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:0px;
  9075. top:0px;
  9076. width:50px;
  9077. height:32px;
  9078. }
  9079. #u96449 {
  9080. border-width:0px;
  9081. position:absolute;
  9082. left:710px;
  9083. top:260px;
  9084. width:50px;
  9085. height:32px;
  9086. display:flex;
  9087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9088. font-weight:400;
  9089. font-style:normal;
  9090. font-size:12px;
  9091. color:#333333;
  9092. }
  9093. #u96449 .text {
  9094. position:absolute;
  9095. align-self:center;
  9096. padding:2px 2px 2px 0px;
  9097. box-sizing:border-box;
  9098. width:100%;
  9099. }
  9100. #u96449_text {
  9101. border-width:0px;
  9102. word-wrap:break-word;
  9103. text-transform:none;
  9104. visibility:hidden;
  9105. }
  9106. #u96450_img {
  9107. border-width:0px;
  9108. position:absolute;
  9109. left:0px;
  9110. top:0px;
  9111. width:60px;
  9112. height:32px;
  9113. }
  9114. #u96450 {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:760px;
  9118. top:260px;
  9119. width:60px;
  9120. height:32px;
  9121. display:flex;
  9122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9123. font-weight:400;
  9124. font-style:normal;
  9125. font-size:12px;
  9126. color:#333333;
  9127. }
  9128. #u96450 .text {
  9129. position:absolute;
  9130. align-self:center;
  9131. padding:2px 2px 2px 0px;
  9132. box-sizing:border-box;
  9133. width:100%;
  9134. }
  9135. #u96450_text {
  9136. border-width:0px;
  9137. word-wrap:break-word;
  9138. text-transform:none;
  9139. visibility:hidden;
  9140. }
  9141. #u96451_img {
  9142. border-width:0px;
  9143. position:absolute;
  9144. left:0px;
  9145. top:0px;
  9146. width:60px;
  9147. height:32px;
  9148. }
  9149. #u96451 {
  9150. border-width:0px;
  9151. position:absolute;
  9152. left:820px;
  9153. top:260px;
  9154. width:60px;
  9155. height:32px;
  9156. display:flex;
  9157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9158. font-weight:400;
  9159. font-style:normal;
  9160. font-size:12px;
  9161. color:#333333;
  9162. }
  9163. #u96451 .text {
  9164. position:absolute;
  9165. align-self:center;
  9166. padding:2px 2px 2px 0px;
  9167. box-sizing:border-box;
  9168. width:100%;
  9169. }
  9170. #u96451_text {
  9171. border-width:0px;
  9172. word-wrap:break-word;
  9173. text-transform:none;
  9174. visibility:hidden;
  9175. }
  9176. #u96452_img {
  9177. border-width:0px;
  9178. position:absolute;
  9179. left:0px;
  9180. top:0px;
  9181. width:70px;
  9182. height:32px;
  9183. }
  9184. #u96452 {
  9185. border-width:0px;
  9186. position:absolute;
  9187. left:880px;
  9188. top:260px;
  9189. width:70px;
  9190. height:32px;
  9191. display:flex;
  9192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9193. font-weight:400;
  9194. font-style:normal;
  9195. font-size:12px;
  9196. color:#333333;
  9197. }
  9198. #u96452 .text {
  9199. position:absolute;
  9200. align-self:center;
  9201. padding:2px 2px 2px 0px;
  9202. box-sizing:border-box;
  9203. width:100%;
  9204. }
  9205. #u96452_text {
  9206. border-width:0px;
  9207. word-wrap:break-word;
  9208. text-transform:none;
  9209. visibility:hidden;
  9210. }
  9211. #u96453_img {
  9212. border-width:0px;
  9213. position:absolute;
  9214. left:0px;
  9215. top:0px;
  9216. width:80px;
  9217. height:32px;
  9218. }
  9219. #u96453 {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:950px;
  9223. top:260px;
  9224. width:80px;
  9225. height:32px;
  9226. display:flex;
  9227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9228. font-weight:400;
  9229. font-style:normal;
  9230. font-size:12px;
  9231. color:#333333;
  9232. }
  9233. #u96453 .text {
  9234. position:absolute;
  9235. align-self:center;
  9236. padding:2px 2px 2px 0px;
  9237. box-sizing:border-box;
  9238. width:100%;
  9239. }
  9240. #u96453_text {
  9241. border-width:0px;
  9242. word-wrap:break-word;
  9243. text-transform:none;
  9244. visibility:hidden;
  9245. }
  9246. #u96454_img {
  9247. border-width:0px;
  9248. position:absolute;
  9249. left:0px;
  9250. top:0px;
  9251. width:80px;
  9252. height:32px;
  9253. }
  9254. #u96454 {
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:1030px;
  9258. top:260px;
  9259. width:80px;
  9260. height:32px;
  9261. display:flex;
  9262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9263. font-weight:400;
  9264. font-style:normal;
  9265. font-size:12px;
  9266. color:#333333;
  9267. }
  9268. #u96454 .text {
  9269. position:absolute;
  9270. align-self:center;
  9271. padding:2px 2px 2px 0px;
  9272. box-sizing:border-box;
  9273. width:100%;
  9274. }
  9275. #u96454_text {
  9276. border-width:0px;
  9277. word-wrap:break-word;
  9278. text-transform:none;
  9279. visibility:hidden;
  9280. }
  9281. #u96455_img {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:0px;
  9285. top:0px;
  9286. width:80px;
  9287. height:32px;
  9288. }
  9289. #u96455 {
  9290. border-width:0px;
  9291. position:absolute;
  9292. left:1110px;
  9293. top:260px;
  9294. width:80px;
  9295. height:32px;
  9296. display:flex;
  9297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9298. font-weight:400;
  9299. font-style:normal;
  9300. font-size:12px;
  9301. color:#333333;
  9302. }
  9303. #u96455 .text {
  9304. position:absolute;
  9305. align-self:center;
  9306. padding:2px 2px 2px 0px;
  9307. box-sizing:border-box;
  9308. width:100%;
  9309. }
  9310. #u96455_text {
  9311. border-width:0px;
  9312. word-wrap:break-word;
  9313. text-transform:none;
  9314. visibility:hidden;
  9315. }
  9316. #u96456_img {
  9317. border-width:0px;
  9318. position:absolute;
  9319. left:0px;
  9320. top:0px;
  9321. width:70px;
  9322. height:32px;
  9323. }
  9324. #u96456 {
  9325. border-width:0px;
  9326. position:absolute;
  9327. left:1190px;
  9328. top:260px;
  9329. width:70px;
  9330. height:32px;
  9331. display:flex;
  9332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9333. font-weight:400;
  9334. font-style:normal;
  9335. font-size:12px;
  9336. color:#333333;
  9337. }
  9338. #u96456 .text {
  9339. position:absolute;
  9340. align-self:center;
  9341. padding:2px 2px 2px 0px;
  9342. box-sizing:border-box;
  9343. width:100%;
  9344. }
  9345. #u96456_text {
  9346. border-width:0px;
  9347. word-wrap:break-word;
  9348. text-transform:none;
  9349. visibility:hidden;
  9350. }
  9351. #u96457_img {
  9352. border-width:0px;
  9353. position:absolute;
  9354. left:0px;
  9355. top:0px;
  9356. width:80px;
  9357. height:32px;
  9358. }
  9359. #u96457 {
  9360. border-width:0px;
  9361. position:absolute;
  9362. left:1260px;
  9363. top:260px;
  9364. width:80px;
  9365. height:32px;
  9366. display:flex;
  9367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9368. font-weight:400;
  9369. font-style:normal;
  9370. font-size:12px;
  9371. color:#333333;
  9372. }
  9373. #u96457 .text {
  9374. position:absolute;
  9375. align-self:center;
  9376. padding:2px 2px 2px 0px;
  9377. box-sizing:border-box;
  9378. width:100%;
  9379. }
  9380. #u96457_text {
  9381. border-width:0px;
  9382. word-wrap:break-word;
  9383. text-transform:none;
  9384. visibility:hidden;
  9385. }
  9386. #u96458_img {
  9387. border-width:0px;
  9388. position:absolute;
  9389. left:0px;
  9390. top:0px;
  9391. width:70px;
  9392. height:32px;
  9393. }
  9394. #u96458 {
  9395. border-width:0px;
  9396. position:absolute;
  9397. left:1340px;
  9398. top:260px;
  9399. width:70px;
  9400. height:32px;
  9401. display:flex;
  9402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9403. font-weight:400;
  9404. font-style:normal;
  9405. font-size:12px;
  9406. color:#333333;
  9407. }
  9408. #u96458 .text {
  9409. position:absolute;
  9410. align-self:center;
  9411. padding:2px 2px 2px 0px;
  9412. box-sizing:border-box;
  9413. width:100%;
  9414. }
  9415. #u96458_text {
  9416. border-width:0px;
  9417. word-wrap:break-word;
  9418. text-transform:none;
  9419. visibility:hidden;
  9420. }
  9421. #u96459_img {
  9422. border-width:0px;
  9423. position:absolute;
  9424. left:0px;
  9425. top:0px;
  9426. width:70px;
  9427. height:32px;
  9428. }
  9429. #u96459 {
  9430. border-width:0px;
  9431. position:absolute;
  9432. left:1410px;
  9433. top:260px;
  9434. width:70px;
  9435. height:32px;
  9436. display:flex;
  9437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9438. font-weight:400;
  9439. font-style:normal;
  9440. font-size:12px;
  9441. color:#333333;
  9442. }
  9443. #u96459 .text {
  9444. position:absolute;
  9445. align-self:center;
  9446. padding:2px 2px 2px 0px;
  9447. box-sizing:border-box;
  9448. width:100%;
  9449. }
  9450. #u96459_text {
  9451. border-width:0px;
  9452. word-wrap:break-word;
  9453. text-transform:none;
  9454. visibility:hidden;
  9455. }
  9456. #u96460_img {
  9457. border-width:0px;
  9458. position:absolute;
  9459. left:0px;
  9460. top:0px;
  9461. width:60px;
  9462. height:30px;
  9463. }
  9464. #u96460 {
  9465. border-width:0px;
  9466. position:absolute;
  9467. left:0px;
  9468. top:292px;
  9469. width:60px;
  9470. height:30px;
  9471. display:flex;
  9472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9473. font-weight:400;
  9474. font-style:normal;
  9475. font-size:12px;
  9476. color:#333333;
  9477. }
  9478. #u96460 .text {
  9479. position:absolute;
  9480. align-self:center;
  9481. padding:2px 2px 2px 0px;
  9482. box-sizing:border-box;
  9483. width:100%;
  9484. }
  9485. #u96460_text {
  9486. border-width:0px;
  9487. word-wrap:break-word;
  9488. text-transform:none;
  9489. visibility:hidden;
  9490. }
  9491. #u96461_img {
  9492. border-width:0px;
  9493. position:absolute;
  9494. left:0px;
  9495. top:0px;
  9496. width:60px;
  9497. height:30px;
  9498. }
  9499. #u96461 {
  9500. border-width:0px;
  9501. position:absolute;
  9502. left:60px;
  9503. top:292px;
  9504. width:60px;
  9505. height:30px;
  9506. display:flex;
  9507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9508. font-weight:400;
  9509. font-style:normal;
  9510. font-size:12px;
  9511. color:#333333;
  9512. }
  9513. #u96461 .text {
  9514. position:absolute;
  9515. align-self:center;
  9516. padding:2px 2px 2px 0px;
  9517. box-sizing:border-box;
  9518. width:100%;
  9519. }
  9520. #u96461_text {
  9521. border-width:0px;
  9522. word-wrap:break-word;
  9523. text-transform:none;
  9524. visibility:hidden;
  9525. }
  9526. #u96462_img {
  9527. border-width:0px;
  9528. position:absolute;
  9529. left:0px;
  9530. top:0px;
  9531. width:60px;
  9532. height:30px;
  9533. }
  9534. #u96462 {
  9535. border-width:0px;
  9536. position:absolute;
  9537. left:120px;
  9538. top:292px;
  9539. width:60px;
  9540. height:30px;
  9541. display:flex;
  9542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9543. font-weight:400;
  9544. font-style:normal;
  9545. font-size:12px;
  9546. color:#333333;
  9547. }
  9548. #u96462 .text {
  9549. position:absolute;
  9550. align-self:center;
  9551. padding:2px 2px 2px 0px;
  9552. box-sizing:border-box;
  9553. width:100%;
  9554. }
  9555. #u96462_text {
  9556. border-width:0px;
  9557. word-wrap:break-word;
  9558. text-transform:none;
  9559. visibility:hidden;
  9560. }
  9561. #u96463_img {
  9562. border-width:0px;
  9563. position:absolute;
  9564. left:0px;
  9565. top:0px;
  9566. width:60px;
  9567. height:30px;
  9568. }
  9569. #u96463 {
  9570. border-width:0px;
  9571. position:absolute;
  9572. left:180px;
  9573. top:292px;
  9574. width:60px;
  9575. height:30px;
  9576. display:flex;
  9577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9578. font-weight:400;
  9579. font-style:normal;
  9580. font-size:12px;
  9581. color:#333333;
  9582. }
  9583. #u96463 .text {
  9584. position:absolute;
  9585. align-self:center;
  9586. padding:2px 2px 2px 0px;
  9587. box-sizing:border-box;
  9588. width:100%;
  9589. }
  9590. #u96463_text {
  9591. border-width:0px;
  9592. word-wrap:break-word;
  9593. text-transform:none;
  9594. visibility:hidden;
  9595. }
  9596. #u96464_img {
  9597. border-width:0px;
  9598. position:absolute;
  9599. left:0px;
  9600. top:0px;
  9601. width:60px;
  9602. height:30px;
  9603. }
  9604. #u96464 {
  9605. border-width:0px;
  9606. position:absolute;
  9607. left:240px;
  9608. top:292px;
  9609. width:60px;
  9610. height:30px;
  9611. display:flex;
  9612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9613. font-weight:400;
  9614. font-style:normal;
  9615. font-size:12px;
  9616. color:#333333;
  9617. }
  9618. #u96464 .text {
  9619. position:absolute;
  9620. align-self:center;
  9621. padding:2px 2px 2px 0px;
  9622. box-sizing:border-box;
  9623. width:100%;
  9624. }
  9625. #u96464_text {
  9626. border-width:0px;
  9627. word-wrap:break-word;
  9628. text-transform:none;
  9629. visibility:hidden;
  9630. }
  9631. #u96465_img {
  9632. border-width:0px;
  9633. position:absolute;
  9634. left:0px;
  9635. top:0px;
  9636. width:60px;
  9637. height:30px;
  9638. }
  9639. #u96465 {
  9640. border-width:0px;
  9641. position:absolute;
  9642. left:300px;
  9643. top:292px;
  9644. width:60px;
  9645. height:30px;
  9646. display:flex;
  9647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9648. font-weight:400;
  9649. font-style:normal;
  9650. font-size:12px;
  9651. color:#333333;
  9652. }
  9653. #u96465 .text {
  9654. position:absolute;
  9655. align-self:center;
  9656. padding:2px 2px 2px 0px;
  9657. box-sizing:border-box;
  9658. width:100%;
  9659. }
  9660. #u96465_text {
  9661. border-width:0px;
  9662. word-wrap:break-word;
  9663. text-transform:none;
  9664. visibility:hidden;
  9665. }
  9666. #u96466_img {
  9667. border-width:0px;
  9668. position:absolute;
  9669. left:0px;
  9670. top:0px;
  9671. width:60px;
  9672. height:30px;
  9673. }
  9674. #u96466 {
  9675. border-width:0px;
  9676. position:absolute;
  9677. left:360px;
  9678. top:292px;
  9679. width:60px;
  9680. height:30px;
  9681. display:flex;
  9682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9683. font-weight:400;
  9684. font-style:normal;
  9685. font-size:12px;
  9686. color:#333333;
  9687. }
  9688. #u96466 .text {
  9689. position:absolute;
  9690. align-self:center;
  9691. padding:2px 2px 2px 0px;
  9692. box-sizing:border-box;
  9693. width:100%;
  9694. }
  9695. #u96466_text {
  9696. border-width:0px;
  9697. word-wrap:break-word;
  9698. text-transform:none;
  9699. visibility:hidden;
  9700. }
  9701. #u96467_img {
  9702. border-width:0px;
  9703. position:absolute;
  9704. left:0px;
  9705. top:0px;
  9706. width:60px;
  9707. height:30px;
  9708. }
  9709. #u96467 {
  9710. border-width:0px;
  9711. position:absolute;
  9712. left:420px;
  9713. top:292px;
  9714. width:60px;
  9715. height:30px;
  9716. display:flex;
  9717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9718. font-weight:400;
  9719. font-style:normal;
  9720. font-size:12px;
  9721. color:#333333;
  9722. }
  9723. #u96467 .text {
  9724. position:absolute;
  9725. align-self:center;
  9726. padding:2px 2px 2px 0px;
  9727. box-sizing:border-box;
  9728. width:100%;
  9729. }
  9730. #u96467_text {
  9731. border-width:0px;
  9732. word-wrap:break-word;
  9733. text-transform:none;
  9734. visibility:hidden;
  9735. }
  9736. #u96468_img {
  9737. border-width:0px;
  9738. position:absolute;
  9739. left:0px;
  9740. top:0px;
  9741. width:60px;
  9742. height:30px;
  9743. }
  9744. #u96468 {
  9745. border-width:0px;
  9746. position:absolute;
  9747. left:480px;
  9748. top:292px;
  9749. width:60px;
  9750. height:30px;
  9751. display:flex;
  9752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9753. font-weight:400;
  9754. font-style:normal;
  9755. font-size:12px;
  9756. color:#333333;
  9757. }
  9758. #u96468 .text {
  9759. position:absolute;
  9760. align-self:center;
  9761. padding:2px 2px 2px 0px;
  9762. box-sizing:border-box;
  9763. width:100%;
  9764. }
  9765. #u96468_text {
  9766. border-width:0px;
  9767. word-wrap:break-word;
  9768. text-transform:none;
  9769. visibility:hidden;
  9770. }
  9771. #u96469_img {
  9772. border-width:0px;
  9773. position:absolute;
  9774. left:0px;
  9775. top:0px;
  9776. width:70px;
  9777. height:30px;
  9778. }
  9779. #u96469 {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:540px;
  9783. top:292px;
  9784. width:70px;
  9785. height:30px;
  9786. display:flex;
  9787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9788. font-weight:400;
  9789. font-style:normal;
  9790. font-size:12px;
  9791. color:#333333;
  9792. }
  9793. #u96469 .text {
  9794. position:absolute;
  9795. align-self:center;
  9796. padding:2px 2px 2px 0px;
  9797. box-sizing:border-box;
  9798. width:100%;
  9799. }
  9800. #u96469_text {
  9801. border-width:0px;
  9802. word-wrap:break-word;
  9803. text-transform:none;
  9804. visibility:hidden;
  9805. }
  9806. #u96470_img {
  9807. border-width:0px;
  9808. position:absolute;
  9809. left:0px;
  9810. top:0px;
  9811. width:50px;
  9812. height:30px;
  9813. }
  9814. #u96470 {
  9815. border-width:0px;
  9816. position:absolute;
  9817. left:610px;
  9818. top:292px;
  9819. width:50px;
  9820. height:30px;
  9821. display:flex;
  9822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9823. font-weight:400;
  9824. font-style:normal;
  9825. font-size:12px;
  9826. color:#333333;
  9827. }
  9828. #u96470 .text {
  9829. position:absolute;
  9830. align-self:center;
  9831. padding:2px 2px 2px 0px;
  9832. box-sizing:border-box;
  9833. width:100%;
  9834. }
  9835. #u96470_text {
  9836. border-width:0px;
  9837. word-wrap:break-word;
  9838. text-transform:none;
  9839. visibility:hidden;
  9840. }
  9841. #u96471_img {
  9842. border-width:0px;
  9843. position:absolute;
  9844. left:0px;
  9845. top:0px;
  9846. width:50px;
  9847. height:30px;
  9848. }
  9849. #u96471 {
  9850. border-width:0px;
  9851. position:absolute;
  9852. left:660px;
  9853. top:292px;
  9854. width:50px;
  9855. height:30px;
  9856. display:flex;
  9857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9858. font-weight:400;
  9859. font-style:normal;
  9860. font-size:12px;
  9861. color:#333333;
  9862. }
  9863. #u96471 .text {
  9864. position:absolute;
  9865. align-self:center;
  9866. padding:2px 2px 2px 0px;
  9867. box-sizing:border-box;
  9868. width:100%;
  9869. }
  9870. #u96471_text {
  9871. border-width:0px;
  9872. word-wrap:break-word;
  9873. text-transform:none;
  9874. visibility:hidden;
  9875. }
  9876. #u96472_img {
  9877. border-width:0px;
  9878. position:absolute;
  9879. left:0px;
  9880. top:0px;
  9881. width:50px;
  9882. height:30px;
  9883. }
  9884. #u96472 {
  9885. border-width:0px;
  9886. position:absolute;
  9887. left:710px;
  9888. top:292px;
  9889. width:50px;
  9890. height:30px;
  9891. display:flex;
  9892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9893. font-weight:400;
  9894. font-style:normal;
  9895. font-size:12px;
  9896. color:#333333;
  9897. }
  9898. #u96472 .text {
  9899. position:absolute;
  9900. align-self:center;
  9901. padding:2px 2px 2px 0px;
  9902. box-sizing:border-box;
  9903. width:100%;
  9904. }
  9905. #u96472_text {
  9906. border-width:0px;
  9907. word-wrap:break-word;
  9908. text-transform:none;
  9909. visibility:hidden;
  9910. }
  9911. #u96473_img {
  9912. border-width:0px;
  9913. position:absolute;
  9914. left:0px;
  9915. top:0px;
  9916. width:60px;
  9917. height:30px;
  9918. }
  9919. #u96473 {
  9920. border-width:0px;
  9921. position:absolute;
  9922. left:760px;
  9923. top:292px;
  9924. width:60px;
  9925. height:30px;
  9926. display:flex;
  9927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9928. font-weight:400;
  9929. font-style:normal;
  9930. font-size:12px;
  9931. color:#333333;
  9932. }
  9933. #u96473 .text {
  9934. position:absolute;
  9935. align-self:center;
  9936. padding:2px 2px 2px 0px;
  9937. box-sizing:border-box;
  9938. width:100%;
  9939. }
  9940. #u96473_text {
  9941. border-width:0px;
  9942. word-wrap:break-word;
  9943. text-transform:none;
  9944. visibility:hidden;
  9945. }
  9946. #u96474_img {
  9947. border-width:0px;
  9948. position:absolute;
  9949. left:0px;
  9950. top:0px;
  9951. width:60px;
  9952. height:30px;
  9953. }
  9954. #u96474 {
  9955. border-width:0px;
  9956. position:absolute;
  9957. left:820px;
  9958. top:292px;
  9959. width:60px;
  9960. height:30px;
  9961. display:flex;
  9962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9963. font-weight:400;
  9964. font-style:normal;
  9965. font-size:12px;
  9966. color:#333333;
  9967. }
  9968. #u96474 .text {
  9969. position:absolute;
  9970. align-self:center;
  9971. padding:2px 2px 2px 0px;
  9972. box-sizing:border-box;
  9973. width:100%;
  9974. }
  9975. #u96474_text {
  9976. border-width:0px;
  9977. word-wrap:break-word;
  9978. text-transform:none;
  9979. visibility:hidden;
  9980. }
  9981. #u96475_img {
  9982. border-width:0px;
  9983. position:absolute;
  9984. left:0px;
  9985. top:0px;
  9986. width:70px;
  9987. height:30px;
  9988. }
  9989. #u96475 {
  9990. border-width:0px;
  9991. position:absolute;
  9992. left:880px;
  9993. top:292px;
  9994. width:70px;
  9995. height:30px;
  9996. display:flex;
  9997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9998. font-weight:400;
  9999. font-style:normal;
  10000. font-size:12px;
  10001. color:#333333;
  10002. }
  10003. #u96475 .text {
  10004. position:absolute;
  10005. align-self:center;
  10006. padding:2px 2px 2px 0px;
  10007. box-sizing:border-box;
  10008. width:100%;
  10009. }
  10010. #u96475_text {
  10011. border-width:0px;
  10012. word-wrap:break-word;
  10013. text-transform:none;
  10014. visibility:hidden;
  10015. }
  10016. #u96476_img {
  10017. border-width:0px;
  10018. position:absolute;
  10019. left:0px;
  10020. top:0px;
  10021. width:80px;
  10022. height:30px;
  10023. }
  10024. #u96476 {
  10025. border-width:0px;
  10026. position:absolute;
  10027. left:950px;
  10028. top:292px;
  10029. width:80px;
  10030. height:30px;
  10031. display:flex;
  10032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10033. font-weight:400;
  10034. font-style:normal;
  10035. font-size:12px;
  10036. color:#333333;
  10037. }
  10038. #u96476 .text {
  10039. position:absolute;
  10040. align-self:center;
  10041. padding:2px 2px 2px 0px;
  10042. box-sizing:border-box;
  10043. width:100%;
  10044. }
  10045. #u96476_text {
  10046. border-width:0px;
  10047. word-wrap:break-word;
  10048. text-transform:none;
  10049. visibility:hidden;
  10050. }
  10051. #u96477_img {
  10052. border-width:0px;
  10053. position:absolute;
  10054. left:0px;
  10055. top:0px;
  10056. width:80px;
  10057. height:30px;
  10058. }
  10059. #u96477 {
  10060. border-width:0px;
  10061. position:absolute;
  10062. left:1030px;
  10063. top:292px;
  10064. width:80px;
  10065. height:30px;
  10066. display:flex;
  10067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10068. font-weight:400;
  10069. font-style:normal;
  10070. font-size:12px;
  10071. color:#333333;
  10072. }
  10073. #u96477 .text {
  10074. position:absolute;
  10075. align-self:center;
  10076. padding:2px 2px 2px 0px;
  10077. box-sizing:border-box;
  10078. width:100%;
  10079. }
  10080. #u96477_text {
  10081. border-width:0px;
  10082. word-wrap:break-word;
  10083. text-transform:none;
  10084. visibility:hidden;
  10085. }
  10086. #u96478_img {
  10087. border-width:0px;
  10088. position:absolute;
  10089. left:0px;
  10090. top:0px;
  10091. width:80px;
  10092. height:30px;
  10093. }
  10094. #u96478 {
  10095. border-width:0px;
  10096. position:absolute;
  10097. left:1110px;
  10098. top:292px;
  10099. width:80px;
  10100. height:30px;
  10101. display:flex;
  10102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10103. font-weight:400;
  10104. font-style:normal;
  10105. font-size:12px;
  10106. color:#333333;
  10107. }
  10108. #u96478 .text {
  10109. position:absolute;
  10110. align-self:center;
  10111. padding:2px 2px 2px 0px;
  10112. box-sizing:border-box;
  10113. width:100%;
  10114. }
  10115. #u96478_text {
  10116. border-width:0px;
  10117. word-wrap:break-word;
  10118. text-transform:none;
  10119. visibility:hidden;
  10120. }
  10121. #u96479_img {
  10122. border-width:0px;
  10123. position:absolute;
  10124. left:0px;
  10125. top:0px;
  10126. width:70px;
  10127. height:30px;
  10128. }
  10129. #u96479 {
  10130. border-width:0px;
  10131. position:absolute;
  10132. left:1190px;
  10133. top:292px;
  10134. width:70px;
  10135. height:30px;
  10136. display:flex;
  10137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10138. font-weight:400;
  10139. font-style:normal;
  10140. font-size:12px;
  10141. color:#333333;
  10142. }
  10143. #u96479 .text {
  10144. position:absolute;
  10145. align-self:center;
  10146. padding:2px 2px 2px 0px;
  10147. box-sizing:border-box;
  10148. width:100%;
  10149. }
  10150. #u96479_text {
  10151. border-width:0px;
  10152. word-wrap:break-word;
  10153. text-transform:none;
  10154. visibility:hidden;
  10155. }
  10156. #u96480_img {
  10157. border-width:0px;
  10158. position:absolute;
  10159. left:0px;
  10160. top:0px;
  10161. width:80px;
  10162. height:30px;
  10163. }
  10164. #u96480 {
  10165. border-width:0px;
  10166. position:absolute;
  10167. left:1260px;
  10168. top:292px;
  10169. width:80px;
  10170. height:30px;
  10171. display:flex;
  10172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10173. font-weight:400;
  10174. font-style:normal;
  10175. font-size:12px;
  10176. color:#333333;
  10177. }
  10178. #u96480 .text {
  10179. position:absolute;
  10180. align-self:center;
  10181. padding:2px 2px 2px 0px;
  10182. box-sizing:border-box;
  10183. width:100%;
  10184. }
  10185. #u96480_text {
  10186. border-width:0px;
  10187. word-wrap:break-word;
  10188. text-transform:none;
  10189. visibility:hidden;
  10190. }
  10191. #u96481_img {
  10192. border-width:0px;
  10193. position:absolute;
  10194. left:0px;
  10195. top:0px;
  10196. width:70px;
  10197. height:30px;
  10198. }
  10199. #u96481 {
  10200. border-width:0px;
  10201. position:absolute;
  10202. left:1340px;
  10203. top:292px;
  10204. width:70px;
  10205. height:30px;
  10206. display:flex;
  10207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10208. font-weight:400;
  10209. font-style:normal;
  10210. font-size:12px;
  10211. color:#333333;
  10212. }
  10213. #u96481 .text {
  10214. position:absolute;
  10215. align-self:center;
  10216. padding:2px 2px 2px 0px;
  10217. box-sizing:border-box;
  10218. width:100%;
  10219. }
  10220. #u96481_text {
  10221. border-width:0px;
  10222. word-wrap:break-word;
  10223. text-transform:none;
  10224. visibility:hidden;
  10225. }
  10226. #u96482_img {
  10227. border-width:0px;
  10228. position:absolute;
  10229. left:0px;
  10230. top:0px;
  10231. width:70px;
  10232. height:30px;
  10233. }
  10234. #u96482 {
  10235. border-width:0px;
  10236. position:absolute;
  10237. left:1410px;
  10238. top:292px;
  10239. width:70px;
  10240. height:30px;
  10241. display:flex;
  10242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10243. font-weight:400;
  10244. font-style:normal;
  10245. font-size:12px;
  10246. color:#333333;
  10247. }
  10248. #u96482 .text {
  10249. position:absolute;
  10250. align-self:center;
  10251. padding:2px 2px 2px 0px;
  10252. box-sizing:border-box;
  10253. width:100%;
  10254. }
  10255. #u96482_text {
  10256. border-width:0px;
  10257. word-wrap:break-word;
  10258. text-transform:none;
  10259. visibility:hidden;
  10260. }
  10261. #u96483 {
  10262. border-width:0px;
  10263. position:absolute;
  10264. left:0px;
  10265. top:0px;
  10266. width:0px;
  10267. height:0px;
  10268. }
  10269. #u96484_div {
  10270. border-width:0px;
  10271. position:absolute;
  10272. left:0px;
  10273. top:0px;
  10274. width:59px;
  10275. height:30px;
  10276. background:inherit;
  10277. background-color:rgba(24, 144, 255, 1);
  10278. box-sizing:border-box;
  10279. border-width:1px;
  10280. border-style:solid;
  10281. border-color:rgba(0, 153, 255, 1);
  10282. border-radius:4px;
  10283. -moz-box-shadow:none;
  10284. -webkit-box-shadow:none;
  10285. box-shadow:none;
  10286. font-family:'Microsoft YaHei', sans-serif;
  10287. font-weight:400;
  10288. font-style:normal;
  10289. font-size:14px;
  10290. color:#FFFFFF;
  10291. }
  10292. #u96484 {
  10293. border-width:0px;
  10294. position:absolute;
  10295. left:514px;
  10296. top:138px;
  10297. width:59px;
  10298. height:30px;
  10299. display:flex;
  10300. font-family:'Microsoft YaHei', sans-serif;
  10301. font-weight:400;
  10302. font-style:normal;
  10303. font-size:14px;
  10304. color:#FFFFFF;
  10305. }
  10306. #u96484 .text {
  10307. position:absolute;
  10308. align-self:center;
  10309. padding:5px 15px 5px 15px;
  10310. box-sizing:border-box;
  10311. width:100%;
  10312. }
  10313. #u96484_text {
  10314. border-width:0px;
  10315. white-space:nowrap;
  10316. text-transform:none;
  10317. }
  10318. #u96485_div {
  10319. border-width:0px;
  10320. position:absolute;
  10321. left:0px;
  10322. top:0px;
  10323. width:55px;
  10324. height:30px;
  10325. background:inherit;
  10326. background-color:rgba(255, 255, 255, 1);
  10327. box-sizing:border-box;
  10328. border-width:1px;
  10329. border-style:solid;
  10330. border-color:rgba(170, 170, 170, 1);
  10331. border-radius:4px;
  10332. -moz-box-shadow:none;
  10333. -webkit-box-shadow:none;
  10334. box-shadow:none;
  10335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10336. font-weight:400;
  10337. font-style:normal;
  10338. font-size:12px;
  10339. color:#555555;
  10340. }
  10341. #u96485 {
  10342. border-width:0px;
  10343. position:absolute;
  10344. left:583px;
  10345. top:138px;
  10346. width:55px;
  10347. height:30px;
  10348. display:flex;
  10349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10350. font-weight:400;
  10351. font-style:normal;
  10352. font-size:12px;
  10353. color:#555555;
  10354. }
  10355. #u96485 .text {
  10356. position:absolute;
  10357. align-self:center;
  10358. padding:5px 15px 5px 15px;
  10359. box-sizing:border-box;
  10360. width:100%;
  10361. }
  10362. #u96485_text {
  10363. border-width:0px;
  10364. white-space:nowrap;
  10365. text-transform:none;
  10366. }
  10367. #u96486 {
  10368. border-width:0px;
  10369. position:absolute;
  10370. left:0px;
  10371. top:0px;
  10372. width:0px;
  10373. height:0px;
  10374. }
  10375. #u96487_div {
  10376. border-width:0px;
  10377. position:absolute;
  10378. left:0px;
  10379. top:0px;
  10380. width:140px;
  10381. height:30px;
  10382. background:inherit;
  10383. background-color:rgba(255, 255, 255, 1);
  10384. box-sizing:border-box;
  10385. border-width:1px;
  10386. border-style:solid;
  10387. border-color:rgba(201, 201, 201, 1);
  10388. border-radius:4px;
  10389. -moz-box-shadow:none;
  10390. -webkit-box-shadow:none;
  10391. box-shadow:none;
  10392. font-family:'Microsoft YaHei', sans-serif;
  10393. font-weight:400;
  10394. font-style:normal;
  10395. font-size:14px;
  10396. color:#CCCCCC;
  10397. text-align:left;
  10398. }
  10399. #u96487 {
  10400. border-width:0px;
  10401. position:absolute;
  10402. left:500px;
  10403. top:98px;
  10404. width:140px;
  10405. height:30px;
  10406. display:flex;
  10407. font-family:'Microsoft YaHei', sans-serif;
  10408. font-weight:400;
  10409. font-style:normal;
  10410. font-size:14px;
  10411. color:#CCCCCC;
  10412. text-align:left;
  10413. }
  10414. #u96487 .text {
  10415. position:absolute;
  10416. align-self:center;
  10417. padding:2px 8px 2px 8px;
  10418. box-sizing:border-box;
  10419. width:100%;
  10420. }
  10421. #u96487_text {
  10422. border-width:0px;
  10423. word-wrap:break-word;
  10424. text-transform:none;
  10425. visibility:hidden;
  10426. }
  10427. #u96488_input {
  10428. position:absolute;
  10429. left:0px;
  10430. top:0px;
  10431. width:127px;
  10432. height:25px;
  10433. padding:2px 2px 2px 2px;
  10434. font-family:'Microsoft YaHei', sans-serif;
  10435. font-weight:400;
  10436. font-style:normal;
  10437. font-size:10px;
  10438. letter-spacing:normal;
  10439. color:#000000;
  10440. vertical-align:none;
  10441. text-align:left;
  10442. text-transform:none;
  10443. background-color:transparent;
  10444. border-color:transparent;
  10445. }
  10446. #u96488_input.disabled {
  10447. position:absolute;
  10448. left:0px;
  10449. top:0px;
  10450. width:127px;
  10451. height:25px;
  10452. padding:2px 2px 2px 2px;
  10453. font-family:'Microsoft YaHei', sans-serif;
  10454. font-weight:400;
  10455. font-style:normal;
  10456. font-size:10px;
  10457. letter-spacing:normal;
  10458. color:#000000;
  10459. vertical-align:none;
  10460. text-align:left;
  10461. text-transform:none;
  10462. background-color:transparent;
  10463. border-color:transparent;
  10464. }
  10465. #u96488_div {
  10466. border-width:0px;
  10467. position:absolute;
  10468. left:0px;
  10469. top:0px;
  10470. width:127px;
  10471. height:25px;
  10472. background:inherit;
  10473. background-color:rgba(255, 255, 255, 1);
  10474. border:none;
  10475. border-radius:0px;
  10476. -moz-box-shadow:none;
  10477. -webkit-box-shadow:none;
  10478. box-shadow:none;
  10479. font-family:'Microsoft YaHei', sans-serif;
  10480. font-weight:400;
  10481. font-style:normal;
  10482. font-size:10px;
  10483. }
  10484. #u96488 {
  10485. border-width:0px;
  10486. position:absolute;
  10487. left:508px;
  10488. top:99px;
  10489. width:127px;
  10490. height:25px;
  10491. display:flex;
  10492. font-family:'Microsoft YaHei', sans-serif;
  10493. font-weight:400;
  10494. font-style:normal;
  10495. font-size:10px;
  10496. }
  10497. #u96488 .text {
  10498. position:absolute;
  10499. align-self:center;
  10500. padding:2px 2px 2px 2px;
  10501. box-sizing:border-box;
  10502. width:100%;
  10503. }
  10504. #u96488_div.disabled {
  10505. border-width:0px;
  10506. position:absolute;
  10507. left:0px;
  10508. top:0px;
  10509. width:127px;
  10510. height:25px;
  10511. background:inherit;
  10512. background-color:rgba(240, 240, 240, 1);
  10513. border:none;
  10514. border-radius:0px;
  10515. -moz-box-shadow:none;
  10516. -webkit-box-shadow:none;
  10517. box-shadow:none;
  10518. font-family:'Microsoft YaHei', sans-serif;
  10519. font-weight:400;
  10520. font-style:normal;
  10521. font-size:10px;
  10522. }
  10523. #u96488.disabled {
  10524. }
  10525. #u96489 {
  10526. border-width:0px;
  10527. position:absolute;
  10528. left:0px;
  10529. top:0px;
  10530. width:0px;
  10531. height:0px;
  10532. }
  10533. #u96490_div {
  10534. border-width:0px;
  10535. position:absolute;
  10536. left:0px;
  10537. top:0px;
  10538. width:140px;
  10539. height:30px;
  10540. background:inherit;
  10541. background-color:rgba(255, 255, 255, 1);
  10542. box-sizing:border-box;
  10543. border-width:1px;
  10544. border-style:solid;
  10545. border-color:rgba(201, 201, 201, 1);
  10546. border-radius:4px;
  10547. -moz-box-shadow:none;
  10548. -webkit-box-shadow:none;
  10549. box-shadow:none;
  10550. font-family:'Microsoft YaHei', sans-serif;
  10551. font-weight:400;
  10552. font-style:normal;
  10553. font-size:14px;
  10554. color:#CCCCCC;
  10555. text-align:left;
  10556. }
  10557. #u96490 {
  10558. border-width:0px;
  10559. position:absolute;
  10560. left:1253px;
  10561. top:98px;
  10562. width:140px;
  10563. height:30px;
  10564. display:flex;
  10565. font-family:'Microsoft YaHei', sans-serif;
  10566. font-weight:400;
  10567. font-style:normal;
  10568. font-size:14px;
  10569. color:#CCCCCC;
  10570. text-align:left;
  10571. }
  10572. #u96490 .text {
  10573. position:absolute;
  10574. align-self:center;
  10575. padding:2px 8px 2px 8px;
  10576. box-sizing:border-box;
  10577. width:100%;
  10578. }
  10579. #u96490_text {
  10580. border-width:0px;
  10581. word-wrap:break-word;
  10582. text-transform:none;
  10583. visibility:hidden;
  10584. }
  10585. #u96491_input {
  10586. position:absolute;
  10587. left:0px;
  10588. top:0px;
  10589. width:127px;
  10590. height:25px;
  10591. padding:2px 2px 2px 2px;
  10592. font-family:'Microsoft YaHei', sans-serif;
  10593. font-weight:400;
  10594. font-style:normal;
  10595. font-size:10px;
  10596. letter-spacing:normal;
  10597. color:#000000;
  10598. vertical-align:none;
  10599. text-align:left;
  10600. text-transform:none;
  10601. background-color:transparent;
  10602. border-color:transparent;
  10603. }
  10604. #u96491_input.disabled {
  10605. position:absolute;
  10606. left:0px;
  10607. top:0px;
  10608. width:127px;
  10609. height:25px;
  10610. padding:2px 2px 2px 2px;
  10611. font-family:'Microsoft YaHei', sans-serif;
  10612. font-weight:400;
  10613. font-style:normal;
  10614. font-size:10px;
  10615. letter-spacing:normal;
  10616. color:#000000;
  10617. vertical-align:none;
  10618. text-align:left;
  10619. text-transform:none;
  10620. background-color:transparent;
  10621. border-color:transparent;
  10622. }
  10623. #u96491_div {
  10624. border-width:0px;
  10625. position:absolute;
  10626. left:0px;
  10627. top:0px;
  10628. width:127px;
  10629. height:25px;
  10630. background:inherit;
  10631. background-color:rgba(255, 255, 255, 1);
  10632. border:none;
  10633. border-radius:0px;
  10634. -moz-box-shadow:none;
  10635. -webkit-box-shadow:none;
  10636. box-shadow:none;
  10637. font-family:'Microsoft YaHei', sans-serif;
  10638. font-weight:400;
  10639. font-style:normal;
  10640. font-size:10px;
  10641. }
  10642. #u96491 {
  10643. border-width:0px;
  10644. position:absolute;
  10645. left:1261px;
  10646. top:99px;
  10647. width:127px;
  10648. height:25px;
  10649. display:flex;
  10650. font-family:'Microsoft YaHei', sans-serif;
  10651. font-weight:400;
  10652. font-style:normal;
  10653. font-size:10px;
  10654. }
  10655. #u96491 .text {
  10656. position:absolute;
  10657. align-self:center;
  10658. padding:2px 2px 2px 2px;
  10659. box-sizing:border-box;
  10660. width:100%;
  10661. }
  10662. #u96491_div.disabled {
  10663. border-width:0px;
  10664. position:absolute;
  10665. left:0px;
  10666. top:0px;
  10667. width:127px;
  10668. height:25px;
  10669. background:inherit;
  10670. background-color:rgba(240, 240, 240, 1);
  10671. border:none;
  10672. border-radius:0px;
  10673. -moz-box-shadow:none;
  10674. -webkit-box-shadow:none;
  10675. box-shadow:none;
  10676. font-family:'Microsoft YaHei', sans-serif;
  10677. font-weight:400;
  10678. font-style:normal;
  10679. font-size:10px;
  10680. }
  10681. #u96491.disabled {
  10682. }
  10683. #u96492 {
  10684. border-width:0px;
  10685. position:absolute;
  10686. left:0px;
  10687. top:0px;
  10688. width:0px;
  10689. height:0px;
  10690. }
  10691. #u96493_div {
  10692. border-width:0px;
  10693. position:absolute;
  10694. left:0px;
  10695. top:0px;
  10696. width:140px;
  10697. height:30px;
  10698. background:inherit;
  10699. background-color:rgba(255, 255, 255, 1);
  10700. box-sizing:border-box;
  10701. border-width:1px;
  10702. border-style:solid;
  10703. border-color:rgba(201, 201, 201, 1);
  10704. border-radius:4px;
  10705. -moz-box-shadow:none;
  10706. -webkit-box-shadow:none;
  10707. box-shadow:none;
  10708. font-family:'Microsoft YaHei', sans-serif;
  10709. font-weight:400;
  10710. font-style:normal;
  10711. font-size:14px;
  10712. color:#CCCCCC;
  10713. text-align:left;
  10714. }
  10715. #u96493 {
  10716. border-width:0px;
  10717. position:absolute;
  10718. left:1403px;
  10719. top:98px;
  10720. width:140px;
  10721. height:30px;
  10722. display:flex;
  10723. font-family:'Microsoft YaHei', sans-serif;
  10724. font-weight:400;
  10725. font-style:normal;
  10726. font-size:14px;
  10727. color:#CCCCCC;
  10728. text-align:left;
  10729. }
  10730. #u96493 .text {
  10731. position:absolute;
  10732. align-self:center;
  10733. padding:2px 8px 2px 8px;
  10734. box-sizing:border-box;
  10735. width:100%;
  10736. }
  10737. #u96493_text {
  10738. border-width:0px;
  10739. word-wrap:break-word;
  10740. text-transform:none;
  10741. visibility:hidden;
  10742. }
  10743. #u96494_input {
  10744. position:absolute;
  10745. left:0px;
  10746. top:0px;
  10747. width:127px;
  10748. height:25px;
  10749. padding:2px 2px 2px 2px;
  10750. font-family:'Microsoft YaHei', sans-serif;
  10751. font-weight:400;
  10752. font-style:normal;
  10753. font-size:10px;
  10754. letter-spacing:normal;
  10755. color:#000000;
  10756. vertical-align:none;
  10757. text-align:left;
  10758. text-transform:none;
  10759. background-color:transparent;
  10760. border-color:transparent;
  10761. }
  10762. #u96494_input.disabled {
  10763. position:absolute;
  10764. left:0px;
  10765. top:0px;
  10766. width:127px;
  10767. height:25px;
  10768. padding:2px 2px 2px 2px;
  10769. font-family:'Microsoft YaHei', sans-serif;
  10770. font-weight:400;
  10771. font-style:normal;
  10772. font-size:10px;
  10773. letter-spacing:normal;
  10774. color:#000000;
  10775. vertical-align:none;
  10776. text-align:left;
  10777. text-transform:none;
  10778. background-color:transparent;
  10779. border-color:transparent;
  10780. }
  10781. #u96494_div {
  10782. border-width:0px;
  10783. position:absolute;
  10784. left:0px;
  10785. top:0px;
  10786. width:127px;
  10787. height:25px;
  10788. background:inherit;
  10789. background-color:rgba(255, 255, 255, 1);
  10790. border:none;
  10791. border-radius:0px;
  10792. -moz-box-shadow:none;
  10793. -webkit-box-shadow:none;
  10794. box-shadow:none;
  10795. font-family:'Microsoft YaHei', sans-serif;
  10796. font-weight:400;
  10797. font-style:normal;
  10798. font-size:10px;
  10799. }
  10800. #u96494 {
  10801. border-width:0px;
  10802. position:absolute;
  10803. left:1411px;
  10804. top:99px;
  10805. width:127px;
  10806. height:25px;
  10807. display:flex;
  10808. font-family:'Microsoft YaHei', sans-serif;
  10809. font-weight:400;
  10810. font-style:normal;
  10811. font-size:10px;
  10812. }
  10813. #u96494 .text {
  10814. position:absolute;
  10815. align-self:center;
  10816. padding:2px 2px 2px 2px;
  10817. box-sizing:border-box;
  10818. width:100%;
  10819. }
  10820. #u96494_div.disabled {
  10821. border-width:0px;
  10822. position:absolute;
  10823. left:0px;
  10824. top:0px;
  10825. width:127px;
  10826. height:25px;
  10827. background:inherit;
  10828. background-color:rgba(240, 240, 240, 1);
  10829. border:none;
  10830. border-radius:0px;
  10831. -moz-box-shadow:none;
  10832. -webkit-box-shadow:none;
  10833. box-shadow:none;
  10834. font-family:'Microsoft YaHei', sans-serif;
  10835. font-weight:400;
  10836. font-style:normal;
  10837. font-size:10px;
  10838. }
  10839. #u96494.disabled {
  10840. }
  10841. #u96495 {
  10842. border-width:0px;
  10843. position:absolute;
  10844. left:0px;
  10845. top:0px;
  10846. width:0px;
  10847. height:0px;
  10848. }
  10849. #u96496_div {
  10850. border-width:0px;
  10851. position:absolute;
  10852. left:0px;
  10853. top:0px;
  10854. width:140px;
  10855. height:30px;
  10856. background:inherit;
  10857. background-color:rgba(255, 255, 255, 1);
  10858. box-sizing:border-box;
  10859. border-width:1px;
  10860. border-style:solid;
  10861. border-color:rgba(215, 215, 215, 1);
  10862. border-radius:4px;
  10863. -moz-box-shadow:none;
  10864. -webkit-box-shadow:none;
  10865. box-shadow:none;
  10866. font-size:11px;
  10867. }
  10868. #u96496 {
  10869. border-width:0px;
  10870. position:absolute;
  10871. left:1550px;
  10872. top:98px;
  10873. width:140px;
  10874. height:30px;
  10875. display:flex;
  10876. font-size:11px;
  10877. }
  10878. #u96496 .text {
  10879. position:absolute;
  10880. align-self:center;
  10881. padding:2px 2px 2px 2px;
  10882. box-sizing:border-box;
  10883. width:100%;
  10884. }
  10885. #u96496_text {
  10886. border-width:0px;
  10887. word-wrap:break-word;
  10888. text-transform:none;
  10889. visibility:hidden;
  10890. }
  10891. #u96497_input {
  10892. position:absolute;
  10893. left:0px;
  10894. top:0px;
  10895. width:126px;
  10896. height:23px;
  10897. padding:2px 2px 2px 2px;
  10898. font-family:'ArialMT', 'Arial', sans-serif;
  10899. font-weight:400;
  10900. font-style:normal;
  10901. font-size:11px;
  10902. letter-spacing:normal;
  10903. color:#AAAAAA;
  10904. vertical-align:none;
  10905. text-align:left;
  10906. text-transform:none;
  10907. background-color:transparent;
  10908. border-color:transparent;
  10909. }
  10910. #u96497_input.disabled {
  10911. position:absolute;
  10912. left:0px;
  10913. top:0px;
  10914. width:126px;
  10915. height:23px;
  10916. padding:2px 2px 2px 2px;
  10917. font-family:'ArialMT', 'Arial', sans-serif;
  10918. font-weight:400;
  10919. font-style:normal;
  10920. font-size:11px;
  10921. letter-spacing:normal;
  10922. color:#AAAAAA;
  10923. vertical-align:none;
  10924. text-align:left;
  10925. text-transform:none;
  10926. background-color:transparent;
  10927. border-color:transparent;
  10928. }
  10929. #u96497_div {
  10930. border-width:0px;
  10931. position:absolute;
  10932. left:0px;
  10933. top:0px;
  10934. width:126px;
  10935. height:23px;
  10936. background:inherit;
  10937. background-color:rgba(255, 255, 255, 1);
  10938. border:none;
  10939. border-radius:0px;
  10940. -moz-box-shadow:none;
  10941. -webkit-box-shadow:none;
  10942. box-shadow:none;
  10943. font-size:11px;
  10944. color:#AAAAAA;
  10945. }
  10946. #u96497 {
  10947. border-width:0px;
  10948. position:absolute;
  10949. left:1557px;
  10950. top:100px;
  10951. width:126px;
  10952. height:23px;
  10953. display:flex;
  10954. font-size:11px;
  10955. color:#AAAAAA;
  10956. }
  10957. #u96497 .text {
  10958. position:absolute;
  10959. align-self:flex-start;
  10960. padding:2px 2px 2px 2px;
  10961. box-sizing:border-box;
  10962. width:100%;
  10963. }
  10964. #u96497_div.disabled {
  10965. border-width:0px;
  10966. position:absolute;
  10967. left:0px;
  10968. top:0px;
  10969. width:126px;
  10970. height:23px;
  10971. background:inherit;
  10972. background-color:rgba(240, 240, 240, 1);
  10973. border:none;
  10974. border-radius:0px;
  10975. -moz-box-shadow:none;
  10976. -webkit-box-shadow:none;
  10977. box-shadow:none;
  10978. font-size:11px;
  10979. color:#AAAAAA;
  10980. }
  10981. #u96497.disabled {
  10982. }
  10983. .u96497_input_option {
  10984. font-size:11px;
  10985. }
  10986. #u96498 {
  10987. border-width:0px;
  10988. position:absolute;
  10989. left:0px;
  10990. top:0px;
  10991. width:0px;
  10992. height:0px;
  10993. }
  10994. #u96499_div {
  10995. border-width:0px;
  10996. position:absolute;
  10997. left:0px;
  10998. top:0px;
  10999. width:140px;
  11000. height:30px;
  11001. background:inherit;
  11002. background-color:rgba(255, 255, 255, 1);
  11003. box-sizing:border-box;
  11004. border-width:1px;
  11005. border-style:solid;
  11006. border-color:rgba(215, 215, 215, 1);
  11007. border-radius:4px;
  11008. -moz-box-shadow:none;
  11009. -webkit-box-shadow:none;
  11010. box-shadow:none;
  11011. font-size:11px;
  11012. }
  11013. #u96499 {
  11014. border-width:0px;
  11015. position:absolute;
  11016. left:800px;
  11017. top:98px;
  11018. width:140px;
  11019. height:30px;
  11020. display:flex;
  11021. font-size:11px;
  11022. }
  11023. #u96499 .text {
  11024. position:absolute;
  11025. align-self:center;
  11026. padding:2px 2px 2px 2px;
  11027. box-sizing:border-box;
  11028. width:100%;
  11029. }
  11030. #u96499_text {
  11031. border-width:0px;
  11032. word-wrap:break-word;
  11033. text-transform:none;
  11034. visibility:hidden;
  11035. }
  11036. #u96500_input {
  11037. position:absolute;
  11038. left:0px;
  11039. top:0px;
  11040. width:126px;
  11041. height:23px;
  11042. padding:2px 2px 2px 2px;
  11043. font-family:'ArialMT', 'Arial', sans-serif;
  11044. font-weight:400;
  11045. font-style:normal;
  11046. font-size:11px;
  11047. letter-spacing:normal;
  11048. color:#AAAAAA;
  11049. vertical-align:none;
  11050. text-align:left;
  11051. text-transform:none;
  11052. background-color:transparent;
  11053. border-color:transparent;
  11054. }
  11055. #u96500_input.disabled {
  11056. position:absolute;
  11057. left:0px;
  11058. top:0px;
  11059. width:126px;
  11060. height:23px;
  11061. padding:2px 2px 2px 2px;
  11062. font-family:'ArialMT', 'Arial', sans-serif;
  11063. font-weight:400;
  11064. font-style:normal;
  11065. font-size:11px;
  11066. letter-spacing:normal;
  11067. color:#AAAAAA;
  11068. vertical-align:none;
  11069. text-align:left;
  11070. text-transform:none;
  11071. background-color:transparent;
  11072. border-color:transparent;
  11073. }
  11074. #u96500_div {
  11075. border-width:0px;
  11076. position:absolute;
  11077. left:0px;
  11078. top:0px;
  11079. width:126px;
  11080. height:23px;
  11081. background:inherit;
  11082. background-color:rgba(255, 255, 255, 1);
  11083. border:none;
  11084. border-radius:0px;
  11085. -moz-box-shadow:none;
  11086. -webkit-box-shadow:none;
  11087. box-shadow:none;
  11088. font-size:11px;
  11089. color:#AAAAAA;
  11090. }
  11091. #u96500 {
  11092. border-width:0px;
  11093. position:absolute;
  11094. left:807px;
  11095. top:100px;
  11096. width:126px;
  11097. height:23px;
  11098. display:flex;
  11099. font-size:11px;
  11100. color:#AAAAAA;
  11101. }
  11102. #u96500 .text {
  11103. position:absolute;
  11104. align-self:flex-start;
  11105. padding:2px 2px 2px 2px;
  11106. box-sizing:border-box;
  11107. width:100%;
  11108. }
  11109. #u96500_div.disabled {
  11110. border-width:0px;
  11111. position:absolute;
  11112. left:0px;
  11113. top:0px;
  11114. width:126px;
  11115. height:23px;
  11116. background:inherit;
  11117. background-color:rgba(240, 240, 240, 1);
  11118. border:none;
  11119. border-radius:0px;
  11120. -moz-box-shadow:none;
  11121. -webkit-box-shadow:none;
  11122. box-shadow:none;
  11123. font-size:11px;
  11124. color:#AAAAAA;
  11125. }
  11126. #u96500.disabled {
  11127. }
  11128. .u96500_input_option {
  11129. font-size:11px;
  11130. }
  11131. #u96501 {
  11132. border-width:0px;
  11133. position:absolute;
  11134. left:0px;
  11135. top:0px;
  11136. width:0px;
  11137. height:0px;
  11138. }
  11139. #u96502_div {
  11140. border-width:0px;
  11141. position:absolute;
  11142. left:0px;
  11143. top:0px;
  11144. width:140px;
  11145. height:30px;
  11146. background:inherit;
  11147. background-color:rgba(255, 255, 255, 1);
  11148. box-sizing:border-box;
  11149. border-width:1px;
  11150. border-style:solid;
  11151. border-color:rgba(215, 215, 215, 1);
  11152. border-radius:4px;
  11153. -moz-box-shadow:none;
  11154. -webkit-box-shadow:none;
  11155. box-shadow:none;
  11156. font-size:11px;
  11157. }
  11158. #u96502 {
  11159. border-width:0px;
  11160. position:absolute;
  11161. left:950px;
  11162. top:98px;
  11163. width:140px;
  11164. height:30px;
  11165. display:flex;
  11166. font-size:11px;
  11167. }
  11168. #u96502 .text {
  11169. position:absolute;
  11170. align-self:center;
  11171. padding:2px 2px 2px 2px;
  11172. box-sizing:border-box;
  11173. width:100%;
  11174. }
  11175. #u96502_text {
  11176. border-width:0px;
  11177. word-wrap:break-word;
  11178. text-transform:none;
  11179. visibility:hidden;
  11180. }
  11181. #u96503_input {
  11182. position:absolute;
  11183. left:0px;
  11184. top:0px;
  11185. width:126px;
  11186. height:23px;
  11187. padding:2px 2px 2px 2px;
  11188. font-family:'ArialMT', 'Arial', sans-serif;
  11189. font-weight:400;
  11190. font-style:normal;
  11191. font-size:11px;
  11192. letter-spacing:normal;
  11193. color:#AAAAAA;
  11194. vertical-align:none;
  11195. text-align:left;
  11196. text-transform:none;
  11197. background-color:transparent;
  11198. border-color:transparent;
  11199. }
  11200. #u96503_input.disabled {
  11201. position:absolute;
  11202. left:0px;
  11203. top:0px;
  11204. width:126px;
  11205. height:23px;
  11206. padding:2px 2px 2px 2px;
  11207. font-family:'ArialMT', 'Arial', sans-serif;
  11208. font-weight:400;
  11209. font-style:normal;
  11210. font-size:11px;
  11211. letter-spacing:normal;
  11212. color:#AAAAAA;
  11213. vertical-align:none;
  11214. text-align:left;
  11215. text-transform:none;
  11216. background-color:transparent;
  11217. border-color:transparent;
  11218. }
  11219. #u96503_div {
  11220. border-width:0px;
  11221. position:absolute;
  11222. left:0px;
  11223. top:0px;
  11224. width:126px;
  11225. height:23px;
  11226. background:inherit;
  11227. background-color:rgba(255, 255, 255, 1);
  11228. border:none;
  11229. border-radius:0px;
  11230. -moz-box-shadow:none;
  11231. -webkit-box-shadow:none;
  11232. box-shadow:none;
  11233. font-size:11px;
  11234. color:#AAAAAA;
  11235. }
  11236. #u96503 {
  11237. border-width:0px;
  11238. position:absolute;
  11239. left:957px;
  11240. top:100px;
  11241. width:126px;
  11242. height:23px;
  11243. display:flex;
  11244. font-size:11px;
  11245. color:#AAAAAA;
  11246. }
  11247. #u96503 .text {
  11248. position:absolute;
  11249. align-self:flex-start;
  11250. padding:2px 2px 2px 2px;
  11251. box-sizing:border-box;
  11252. width:100%;
  11253. }
  11254. #u96503_div.disabled {
  11255. border-width:0px;
  11256. position:absolute;
  11257. left:0px;
  11258. top:0px;
  11259. width:126px;
  11260. height:23px;
  11261. background:inherit;
  11262. background-color:rgba(240, 240, 240, 1);
  11263. border:none;
  11264. border-radius:0px;
  11265. -moz-box-shadow:none;
  11266. -webkit-box-shadow:none;
  11267. box-shadow:none;
  11268. font-size:11px;
  11269. color:#AAAAAA;
  11270. }
  11271. #u96503.disabled {
  11272. }
  11273. .u96503_input_option {
  11274. font-size:11px;
  11275. }
  11276. #u96504 {
  11277. border-width:0px;
  11278. position:absolute;
  11279. left:0px;
  11280. top:0px;
  11281. width:0px;
  11282. height:0px;
  11283. }
  11284. #u96505_div {
  11285. border-width:0px;
  11286. position:absolute;
  11287. left:0px;
  11288. top:0px;
  11289. width:140px;
  11290. height:30px;
  11291. background:inherit;
  11292. background-color:rgba(255, 255, 255, 1);
  11293. box-sizing:border-box;
  11294. border-width:1px;
  11295. border-style:solid;
  11296. border-color:rgba(215, 215, 215, 1);
  11297. border-radius:4px;
  11298. -moz-box-shadow:none;
  11299. -webkit-box-shadow:none;
  11300. box-shadow:none;
  11301. font-size:11px;
  11302. }
  11303. #u96505 {
  11304. border-width:0px;
  11305. position:absolute;
  11306. left:1100px;
  11307. top:98px;
  11308. width:140px;
  11309. height:30px;
  11310. display:flex;
  11311. font-size:11px;
  11312. }
  11313. #u96505 .text {
  11314. position:absolute;
  11315. align-self:center;
  11316. padding:2px 2px 2px 2px;
  11317. box-sizing:border-box;
  11318. width:100%;
  11319. }
  11320. #u96505_text {
  11321. border-width:0px;
  11322. word-wrap:break-word;
  11323. text-transform:none;
  11324. visibility:hidden;
  11325. }
  11326. #u96506_input {
  11327. position:absolute;
  11328. left:0px;
  11329. top:0px;
  11330. width:126px;
  11331. height:23px;
  11332. padding:2px 2px 2px 2px;
  11333. font-family:'ArialMT', 'Arial', sans-serif;
  11334. font-weight:400;
  11335. font-style:normal;
  11336. font-size:11px;
  11337. letter-spacing:normal;
  11338. color:#AAAAAA;
  11339. vertical-align:none;
  11340. text-align:left;
  11341. text-transform:none;
  11342. background-color:transparent;
  11343. border-color:transparent;
  11344. }
  11345. #u96506_input.disabled {
  11346. position:absolute;
  11347. left:0px;
  11348. top:0px;
  11349. width:126px;
  11350. height:23px;
  11351. padding:2px 2px 2px 2px;
  11352. font-family:'ArialMT', 'Arial', sans-serif;
  11353. font-weight:400;
  11354. font-style:normal;
  11355. font-size:11px;
  11356. letter-spacing:normal;
  11357. color:#AAAAAA;
  11358. vertical-align:none;
  11359. text-align:left;
  11360. text-transform:none;
  11361. background-color:transparent;
  11362. border-color:transparent;
  11363. }
  11364. #u96506_div {
  11365. border-width:0px;
  11366. position:absolute;
  11367. left:0px;
  11368. top:0px;
  11369. width:126px;
  11370. height:23px;
  11371. background:inherit;
  11372. background-color:rgba(255, 255, 255, 1);
  11373. border:none;
  11374. border-radius:0px;
  11375. -moz-box-shadow:none;
  11376. -webkit-box-shadow:none;
  11377. box-shadow:none;
  11378. font-size:11px;
  11379. color:#AAAAAA;
  11380. }
  11381. #u96506 {
  11382. border-width:0px;
  11383. position:absolute;
  11384. left:1107px;
  11385. top:100px;
  11386. width:126px;
  11387. height:23px;
  11388. display:flex;
  11389. font-size:11px;
  11390. color:#AAAAAA;
  11391. }
  11392. #u96506 .text {
  11393. position:absolute;
  11394. align-self:flex-start;
  11395. padding:2px 2px 2px 2px;
  11396. box-sizing:border-box;
  11397. width:100%;
  11398. }
  11399. #u96506_div.disabled {
  11400. border-width:0px;
  11401. position:absolute;
  11402. left:0px;
  11403. top:0px;
  11404. width:126px;
  11405. height:23px;
  11406. background:inherit;
  11407. background-color:rgba(240, 240, 240, 1);
  11408. border:none;
  11409. border-radius:0px;
  11410. -moz-box-shadow:none;
  11411. -webkit-box-shadow:none;
  11412. box-shadow:none;
  11413. font-size:11px;
  11414. color:#AAAAAA;
  11415. }
  11416. #u96506.disabled {
  11417. }
  11418. .u96506_input_option {
  11419. font-size:11px;
  11420. }
  11421. #u96507 {
  11422. border-width:0px;
  11423. position:absolute;
  11424. left:0px;
  11425. top:0px;
  11426. width:0px;
  11427. height:0px;
  11428. }
  11429. #u96508_div {
  11430. border-width:0px;
  11431. position:absolute;
  11432. left:0px;
  11433. top:0px;
  11434. width:140px;
  11435. height:30px;
  11436. background:inherit;
  11437. background-color:rgba(255, 255, 255, 1);
  11438. box-sizing:border-box;
  11439. border-width:1px;
  11440. border-style:solid;
  11441. border-color:rgba(215, 215, 215, 1);
  11442. border-radius:4px;
  11443. -moz-box-shadow:none;
  11444. -webkit-box-shadow:none;
  11445. box-shadow:none;
  11446. font-size:11px;
  11447. }
  11448. #u96508 {
  11449. border-width:0px;
  11450. position:absolute;
  11451. left:350px;
  11452. top:138px;
  11453. width:140px;
  11454. height:30px;
  11455. display:flex;
  11456. font-size:11px;
  11457. }
  11458. #u96508 .text {
  11459. position:absolute;
  11460. align-self:center;
  11461. padding:2px 2px 2px 2px;
  11462. box-sizing:border-box;
  11463. width:100%;
  11464. }
  11465. #u96508_text {
  11466. border-width:0px;
  11467. word-wrap:break-word;
  11468. text-transform:none;
  11469. visibility:hidden;
  11470. }
  11471. #u96509_input {
  11472. position:absolute;
  11473. left:0px;
  11474. top:0px;
  11475. width:126px;
  11476. height:23px;
  11477. padding:2px 2px 2px 2px;
  11478. font-family:'ArialMT', 'Arial', sans-serif;
  11479. font-weight:400;
  11480. font-style:normal;
  11481. font-size:11px;
  11482. letter-spacing:normal;
  11483. color:#AAAAAA;
  11484. vertical-align:none;
  11485. text-align:left;
  11486. text-transform:none;
  11487. background-color:transparent;
  11488. border-color:transparent;
  11489. }
  11490. #u96509_input.disabled {
  11491. position:absolute;
  11492. left:0px;
  11493. top:0px;
  11494. width:126px;
  11495. height:23px;
  11496. padding:2px 2px 2px 2px;
  11497. font-family:'ArialMT', 'Arial', sans-serif;
  11498. font-weight:400;
  11499. font-style:normal;
  11500. font-size:11px;
  11501. letter-spacing:normal;
  11502. color:#AAAAAA;
  11503. vertical-align:none;
  11504. text-align:left;
  11505. text-transform:none;
  11506. background-color:transparent;
  11507. border-color:transparent;
  11508. }
  11509. #u96509_div {
  11510. border-width:0px;
  11511. position:absolute;
  11512. left:0px;
  11513. top:0px;
  11514. width:126px;
  11515. height:23px;
  11516. background:inherit;
  11517. background-color:rgba(255, 255, 255, 1);
  11518. border:none;
  11519. border-radius:0px;
  11520. -moz-box-shadow:none;
  11521. -webkit-box-shadow:none;
  11522. box-shadow:none;
  11523. font-size:11px;
  11524. color:#AAAAAA;
  11525. }
  11526. #u96509 {
  11527. border-width:0px;
  11528. position:absolute;
  11529. left:357px;
  11530. top:140px;
  11531. width:126px;
  11532. height:23px;
  11533. display:flex;
  11534. font-size:11px;
  11535. color:#AAAAAA;
  11536. }
  11537. #u96509 .text {
  11538. position:absolute;
  11539. align-self:flex-start;
  11540. padding:2px 2px 2px 2px;
  11541. box-sizing:border-box;
  11542. width:100%;
  11543. }
  11544. #u96509_div.disabled {
  11545. border-width:0px;
  11546. position:absolute;
  11547. left:0px;
  11548. top:0px;
  11549. width:126px;
  11550. height:23px;
  11551. background:inherit;
  11552. background-color:rgba(240, 240, 240, 1);
  11553. border:none;
  11554. border-radius:0px;
  11555. -moz-box-shadow:none;
  11556. -webkit-box-shadow:none;
  11557. box-shadow:none;
  11558. font-size:11px;
  11559. color:#AAAAAA;
  11560. }
  11561. #u96509.disabled {
  11562. }
  11563. .u96509_input_option {
  11564. font-size:11px;
  11565. }
  11566. #u96510 {
  11567. border-width:0px;
  11568. position:absolute;
  11569. left:0px;
  11570. top:0px;
  11571. width:0px;
  11572. height:0px;
  11573. }
  11574. #u96511_div {
  11575. border-width:0px;
  11576. position:absolute;
  11577. left:0px;
  11578. top:0px;
  11579. width:140px;
  11580. height:30px;
  11581. background:inherit;
  11582. background-color:rgba(255, 255, 255, 1);
  11583. box-sizing:border-box;
  11584. border-width:1px;
  11585. border-style:solid;
  11586. border-color:rgba(201, 201, 201, 1);
  11587. border-radius:4px;
  11588. -moz-box-shadow:none;
  11589. -webkit-box-shadow:none;
  11590. box-shadow:none;
  11591. font-family:'Microsoft YaHei', sans-serif;
  11592. font-weight:400;
  11593. font-style:normal;
  11594. font-size:14px;
  11595. color:#CCCCCC;
  11596. text-align:left;
  11597. }
  11598. #u96511 {
  11599. border-width:0px;
  11600. position:absolute;
  11601. left:650px;
  11602. top:98px;
  11603. width:140px;
  11604. height:30px;
  11605. display:flex;
  11606. font-family:'Microsoft YaHei', sans-serif;
  11607. font-weight:400;
  11608. font-style:normal;
  11609. font-size:14px;
  11610. color:#CCCCCC;
  11611. text-align:left;
  11612. }
  11613. #u96511 .text {
  11614. position:absolute;
  11615. align-self:center;
  11616. padding:2px 8px 2px 8px;
  11617. box-sizing:border-box;
  11618. width:100%;
  11619. }
  11620. #u96511_text {
  11621. border-width:0px;
  11622. word-wrap:break-word;
  11623. text-transform:none;
  11624. visibility:hidden;
  11625. }
  11626. #u96512_input {
  11627. position:absolute;
  11628. left:0px;
  11629. top:0px;
  11630. width:127px;
  11631. height:25px;
  11632. padding:2px 2px 2px 2px;
  11633. font-family:'Microsoft YaHei', sans-serif;
  11634. font-weight:400;
  11635. font-style:normal;
  11636. font-size:10px;
  11637. letter-spacing:normal;
  11638. color:#000000;
  11639. vertical-align:none;
  11640. text-align:left;
  11641. text-transform:none;
  11642. background-color:transparent;
  11643. border-color:transparent;
  11644. }
  11645. #u96512_input.disabled {
  11646. position:absolute;
  11647. left:0px;
  11648. top:0px;
  11649. width:127px;
  11650. height:25px;
  11651. padding:2px 2px 2px 2px;
  11652. font-family:'Microsoft YaHei', sans-serif;
  11653. font-weight:400;
  11654. font-style:normal;
  11655. font-size:10px;
  11656. letter-spacing:normal;
  11657. color:#000000;
  11658. vertical-align:none;
  11659. text-align:left;
  11660. text-transform:none;
  11661. background-color:transparent;
  11662. border-color:transparent;
  11663. }
  11664. #u96512_div {
  11665. border-width:0px;
  11666. position:absolute;
  11667. left:0px;
  11668. top:0px;
  11669. width:127px;
  11670. height:25px;
  11671. background:inherit;
  11672. background-color:rgba(255, 255, 255, 1);
  11673. border:none;
  11674. border-radius:0px;
  11675. -moz-box-shadow:none;
  11676. -webkit-box-shadow:none;
  11677. box-shadow:none;
  11678. font-family:'Microsoft YaHei', sans-serif;
  11679. font-weight:400;
  11680. font-style:normal;
  11681. font-size:10px;
  11682. }
  11683. #u96512 {
  11684. border-width:0px;
  11685. position:absolute;
  11686. left:658px;
  11687. top:99px;
  11688. width:127px;
  11689. height:25px;
  11690. display:flex;
  11691. font-family:'Microsoft YaHei', sans-serif;
  11692. font-weight:400;
  11693. font-style:normal;
  11694. font-size:10px;
  11695. }
  11696. #u96512 .text {
  11697. position:absolute;
  11698. align-self:center;
  11699. padding:2px 2px 2px 2px;
  11700. box-sizing:border-box;
  11701. width:100%;
  11702. }
  11703. #u96512_div.disabled {
  11704. border-width:0px;
  11705. position:absolute;
  11706. left:0px;
  11707. top:0px;
  11708. width:127px;
  11709. height:25px;
  11710. background:inherit;
  11711. background-color:rgba(240, 240, 240, 1);
  11712. border:none;
  11713. border-radius:0px;
  11714. -moz-box-shadow:none;
  11715. -webkit-box-shadow:none;
  11716. box-shadow:none;
  11717. font-family:'Microsoft YaHei', sans-serif;
  11718. font-weight:400;
  11719. font-style:normal;
  11720. font-size:10px;
  11721. }
  11722. #u96512.disabled {
  11723. }
  11724. #u96513 {
  11725. border-width:0px;
  11726. position:absolute;
  11727. left:0px;
  11728. top:0px;
  11729. width:0px;
  11730. height:0px;
  11731. }
  11732. #u96514_div {
  11733. border-width:0px;
  11734. position:absolute;
  11735. left:0px;
  11736. top:0px;
  11737. width:200px;
  11738. height:1702px;
  11739. background:inherit;
  11740. background-color:rgba(255, 255, 255, 1);
  11741. box-sizing:border-box;
  11742. border-width:1px;
  11743. border-style:solid;
  11744. border-color:rgba(215, 215, 215, 1);
  11745. border-radius:0px;
  11746. -moz-box-shadow:none;
  11747. -webkit-box-shadow:none;
  11748. box-shadow:none;
  11749. }
  11750. #u96514 {
  11751. border-width:0px;
  11752. position:absolute;
  11753. left:120px;
  11754. top:50px;
  11755. width:200px;
  11756. height:1702px;
  11757. display:flex;
  11758. }
  11759. #u96514 .text {
  11760. position:absolute;
  11761. align-self:center;
  11762. padding:2px 2px 2px 2px;
  11763. box-sizing:border-box;
  11764. width:100%;
  11765. }
  11766. #u96514_text {
  11767. border-width:0px;
  11768. word-wrap:break-word;
  11769. text-transform:none;
  11770. visibility:hidden;
  11771. }
  11772. #u96515_div {
  11773. border-width:0px;
  11774. position:absolute;
  11775. left:0px;
  11776. top:0px;
  11777. width:200px;
  11778. height:60px;
  11779. background:inherit;
  11780. background-color:rgba(224, 231, 247, 1);
  11781. border:none;
  11782. border-radius:0px;
  11783. -moz-box-shadow:none;
  11784. -webkit-box-shadow:none;
  11785. box-shadow:none;
  11786. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11787. font-weight:500;
  11788. font-style:normal;
  11789. font-size:18px;
  11790. }
  11791. #u96515 {
  11792. border-width:0px;
  11793. position:absolute;
  11794. left:120px;
  11795. top:50px;
  11796. width:200px;
  11797. height:60px;
  11798. display:flex;
  11799. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11800. font-weight:500;
  11801. font-style:normal;
  11802. font-size:18px;
  11803. }
  11804. #u96515 .text {
  11805. position:absolute;
  11806. align-self:center;
  11807. padding:0px 0px 0px 20px;
  11808. box-sizing:border-box;
  11809. width:100%;
  11810. }
  11811. #u96515_text {
  11812. border-width:0px;
  11813. word-wrap:break-word;
  11814. text-transform:none;
  11815. }
  11816. #u96516_img {
  11817. border-width:0px;
  11818. position:absolute;
  11819. left:0px;
  11820. top:0px;
  11821. width:201px;
  11822. height:2px;
  11823. }
  11824. #u96516 {
  11825. border-width:0px;
  11826. position:absolute;
  11827. left:120px;
  11828. top:1180px;
  11829. width:200px;
  11830. height:1px;
  11831. display:flex;
  11832. }
  11833. #u96516 .text {
  11834. position:absolute;
  11835. align-self:center;
  11836. padding:2px 2px 2px 2px;
  11837. box-sizing:border-box;
  11838. width:100%;
  11839. }
  11840. #u96516_text {
  11841. border-width:0px;
  11842. word-wrap:break-word;
  11843. text-transform:none;
  11844. visibility:hidden;
  11845. }
  11846. #u96517_div {
  11847. border-width:0px;
  11848. position:absolute;
  11849. left:0px;
  11850. top:0px;
  11851. width:97px;
  11852. height:22px;
  11853. background:inherit;
  11854. background-color:rgba(255, 255, 255, 0);
  11855. border:none;
  11856. border-radius:0px;
  11857. -moz-box-shadow:none;
  11858. -webkit-box-shadow:none;
  11859. box-shadow:none;
  11860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11861. font-weight:400;
  11862. font-style:normal;
  11863. font-size:16px;
  11864. }
  11865. #u96517 {
  11866. border-width:0px;
  11867. position:absolute;
  11868. left:147px;
  11869. top:1459px;
  11870. width:97px;
  11871. height:22px;
  11872. display:flex;
  11873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11874. font-weight:400;
  11875. font-style:normal;
  11876. font-size:16px;
  11877. }
  11878. #u96517 .text {
  11879. position:absolute;
  11880. align-self:flex-start;
  11881. padding:0px 0px 0px 0px;
  11882. box-sizing:border-box;
  11883. width:100%;
  11884. }
  11885. #u96517_text {
  11886. border-width:0px;
  11887. word-wrap:break-word;
  11888. text-transform:none;
  11889. }
  11890. #u96518_div {
  11891. border-width:0px;
  11892. position:absolute;
  11893. left:0px;
  11894. top:0px;
  11895. width:49px;
  11896. height:17px;
  11897. background:inherit;
  11898. background-color:rgba(255, 255, 255, 0);
  11899. border:none;
  11900. border-radius:0px;
  11901. -moz-box-shadow:none;
  11902. -webkit-box-shadow:none;
  11903. box-shadow:none;
  11904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11905. font-weight:400;
  11906. font-style:normal;
  11907. font-size:12px;
  11908. color:#AAAAAA;
  11909. }
  11910. #u96518 {
  11911. border-width:0px;
  11912. position:absolute;
  11913. left:147px;
  11914. top:1423px;
  11915. width:49px;
  11916. height:17px;
  11917. display:flex;
  11918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11919. font-weight:400;
  11920. font-style:normal;
  11921. font-size:12px;
  11922. color:#AAAAAA;
  11923. }
  11924. #u96518 .text {
  11925. position:absolute;
  11926. align-self:flex-start;
  11927. padding:0px 0px 0px 0px;
  11928. box-sizing:border-box;
  11929. width:100%;
  11930. }
  11931. #u96518_text {
  11932. border-width:0px;
  11933. white-space:nowrap;
  11934. text-transform:none;
  11935. }
  11936. #u96519_div {
  11937. border-width:0px;
  11938. position:absolute;
  11939. left:0px;
  11940. top:0px;
  11941. width:97px;
  11942. height:22px;
  11943. background:inherit;
  11944. background-color:rgba(255, 255, 255, 0);
  11945. border:none;
  11946. border-radius:0px;
  11947. -moz-box-shadow:none;
  11948. -webkit-box-shadow:none;
  11949. box-shadow:none;
  11950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11951. font-weight:400;
  11952. font-style:normal;
  11953. font-size:16px;
  11954. }
  11955. #u96519 {
  11956. border-width:0px;
  11957. position:absolute;
  11958. left:147px;
  11959. top:340px;
  11960. width:97px;
  11961. height:22px;
  11962. display:flex;
  11963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11964. font-weight:400;
  11965. font-style:normal;
  11966. font-size:16px;
  11967. }
  11968. #u96519 .text {
  11969. position:absolute;
  11970. align-self:flex-start;
  11971. padding:0px 0px 0px 0px;
  11972. box-sizing:border-box;
  11973. width:100%;
  11974. }
  11975. #u96519_text {
  11976. border-width:0px;
  11977. word-wrap:break-word;
  11978. text-transform:none;
  11979. }
  11980. #u96520_div {
  11981. border-width:0px;
  11982. position:absolute;
  11983. left:0px;
  11984. top:0px;
  11985. width:97px;
  11986. height:22px;
  11987. background:inherit;
  11988. background-color:rgba(255, 255, 255, 0);
  11989. border:none;
  11990. border-radius:0px;
  11991. -moz-box-shadow:none;
  11992. -webkit-box-shadow:none;
  11993. box-shadow:none;
  11994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11995. font-weight:400;
  11996. font-style:normal;
  11997. font-size:16px;
  11998. }
  11999. #u96520 {
  12000. border-width:0px;
  12001. position:absolute;
  12002. left:147px;
  12003. top:424px;
  12004. width:97px;
  12005. height:22px;
  12006. display:flex;
  12007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12008. font-weight:400;
  12009. font-style:normal;
  12010. font-size:16px;
  12011. }
  12012. #u96520 .text {
  12013. position:absolute;
  12014. align-self:flex-start;
  12015. padding:0px 0px 0px 0px;
  12016. box-sizing:border-box;
  12017. width:100%;
  12018. }
  12019. #u96520_text {
  12020. border-width:0px;
  12021. word-wrap:break-word;
  12022. text-transform:none;
  12023. }
  12024. #u96521_div {
  12025. border-width:0px;
  12026. position:absolute;
  12027. left:0px;
  12028. top:0px;
  12029. width:97px;
  12030. height:22px;
  12031. background:inherit;
  12032. background-color:rgba(255, 255, 255, 0);
  12033. border:none;
  12034. border-radius:0px;
  12035. -moz-box-shadow:none;
  12036. -webkit-box-shadow:none;
  12037. box-shadow:none;
  12038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12039. font-weight:400;
  12040. font-style:normal;
  12041. font-size:16px;
  12042. }
  12043. #u96521 {
  12044. border-width:0px;
  12045. position:absolute;
  12046. left:147px;
  12047. top:1501px;
  12048. width:97px;
  12049. height:22px;
  12050. display:flex;
  12051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12052. font-weight:400;
  12053. font-style:normal;
  12054. font-size:16px;
  12055. }
  12056. #u96521 .text {
  12057. position:absolute;
  12058. align-self:flex-start;
  12059. padding:0px 0px 0px 0px;
  12060. box-sizing:border-box;
  12061. width:100%;
  12062. }
  12063. #u96521_text {
  12064. border-width:0px;
  12065. word-wrap:break-word;
  12066. text-transform:none;
  12067. }
  12068. #u96522_div {
  12069. border-width:0px;
  12070. position:absolute;
  12071. left:0px;
  12072. top:0px;
  12073. width:129px;
  12074. height:22px;
  12075. background:inherit;
  12076. background-color:rgba(255, 255, 255, 0);
  12077. border:none;
  12078. border-radius:0px;
  12079. -moz-box-shadow:none;
  12080. -webkit-box-shadow:none;
  12081. box-shadow:none;
  12082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12083. font-weight:400;
  12084. font-style:normal;
  12085. font-size:16px;
  12086. }
  12087. #u96522 {
  12088. border-width:0px;
  12089. position:absolute;
  12090. left:147px;
  12091. top:1543px;
  12092. width:129px;
  12093. height:22px;
  12094. display:flex;
  12095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12096. font-weight:400;
  12097. font-style:normal;
  12098. font-size:16px;
  12099. }
  12100. #u96522 .text {
  12101. position:absolute;
  12102. align-self:flex-start;
  12103. padding:0px 0px 0px 0px;
  12104. box-sizing:border-box;
  12105. width:100%;
  12106. }
  12107. #u96522_text {
  12108. border-width:0px;
  12109. white-space:nowrap;
  12110. text-transform:none;
  12111. }
  12112. #u96523_div {
  12113. border-width:0px;
  12114. position:absolute;
  12115. left:0px;
  12116. top:0px;
  12117. width:49px;
  12118. height:17px;
  12119. background:inherit;
  12120. background-color:rgba(255, 255, 255, 0);
  12121. border:none;
  12122. border-radius:0px;
  12123. -moz-box-shadow:none;
  12124. -webkit-box-shadow:none;
  12125. box-shadow:none;
  12126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12127. font-weight:400;
  12128. font-style:normal;
  12129. font-size:12px;
  12130. color:#AAAAAA;
  12131. }
  12132. #u96523 {
  12133. border-width:0px;
  12134. position:absolute;
  12135. left:147px;
  12136. top:120px;
  12137. width:49px;
  12138. height:17px;
  12139. display:flex;
  12140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12141. font-weight:400;
  12142. font-style:normal;
  12143. font-size:12px;
  12144. color:#AAAAAA;
  12145. }
  12146. #u96523 .text {
  12147. position:absolute;
  12148. align-self:flex-start;
  12149. padding:0px 0px 0px 0px;
  12150. box-sizing:border-box;
  12151. width:100%;
  12152. }
  12153. #u96523_text {
  12154. border-width:0px;
  12155. white-space:nowrap;
  12156. text-transform:none;
  12157. }
  12158. #u96524_div {
  12159. border-width:0px;
  12160. position:absolute;
  12161. left:0px;
  12162. top:0px;
  12163. width:97px;
  12164. height:22px;
  12165. background:inherit;
  12166. background-color:rgba(255, 255, 255, 0);
  12167. border:none;
  12168. border-radius:0px;
  12169. -moz-box-shadow:none;
  12170. -webkit-box-shadow:none;
  12171. box-shadow:none;
  12172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12173. font-weight:400;
  12174. font-style:normal;
  12175. font-size:16px;
  12176. }
  12177. #u96524 {
  12178. border-width:0px;
  12179. position:absolute;
  12180. left:147px;
  12181. top:157px;
  12182. width:97px;
  12183. height:22px;
  12184. display:flex;
  12185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12186. font-weight:400;
  12187. font-style:normal;
  12188. font-size:16px;
  12189. }
  12190. #u96524 .text {
  12191. position:absolute;
  12192. align-self:flex-start;
  12193. padding:0px 0px 0px 0px;
  12194. box-sizing:border-box;
  12195. width:100%;
  12196. }
  12197. #u96524_text {
  12198. border-width:0px;
  12199. word-wrap:break-word;
  12200. text-transform:none;
  12201. }
  12202. #u96525_img {
  12203. border-width:0px;
  12204. position:absolute;
  12205. left:0px;
  12206. top:0px;
  12207. width:201px;
  12208. height:2px;
  12209. }
  12210. #u96525 {
  12211. border-width:0px;
  12212. position:absolute;
  12213. left:120px;
  12214. top:241px;
  12215. width:200px;
  12216. height:1px;
  12217. display:flex;
  12218. }
  12219. #u96525 .text {
  12220. position:absolute;
  12221. align-self:center;
  12222. padding:2px 2px 2px 2px;
  12223. box-sizing:border-box;
  12224. width:100%;
  12225. }
  12226. #u96525_text {
  12227. border-width:0px;
  12228. word-wrap:break-word;
  12229. text-transform:none;
  12230. visibility:hidden;
  12231. }
  12232. #u96526_div {
  12233. border-width:0px;
  12234. position:absolute;
  12235. left:0px;
  12236. top:0px;
  12237. width:49px;
  12238. height:17px;
  12239. background:inherit;
  12240. background-color:rgba(255, 255, 255, 0);
  12241. border:none;
  12242. border-radius:0px;
  12243. -moz-box-shadow:none;
  12244. -webkit-box-shadow:none;
  12245. box-shadow:none;
  12246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12247. font-weight:400;
  12248. font-style:normal;
  12249. font-size:12px;
  12250. color:#AAAAAA;
  12251. }
  12252. #u96526 {
  12253. border-width:0px;
  12254. position:absolute;
  12255. left:147px;
  12256. top:261px;
  12257. width:49px;
  12258. height:17px;
  12259. display:flex;
  12260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12261. font-weight:400;
  12262. font-style:normal;
  12263. font-size:12px;
  12264. color:#AAAAAA;
  12265. }
  12266. #u96526 .text {
  12267. position:absolute;
  12268. align-self:flex-start;
  12269. padding:0px 0px 0px 0px;
  12270. box-sizing:border-box;
  12271. width:100%;
  12272. }
  12273. #u96526_text {
  12274. border-width:0px;
  12275. white-space:nowrap;
  12276. text-transform:none;
  12277. }
  12278. #u96527_div {
  12279. border-width:0px;
  12280. position:absolute;
  12281. left:0px;
  12282. top:0px;
  12283. width:97px;
  12284. height:22px;
  12285. background:inherit;
  12286. background-color:rgba(255, 255, 255, 0);
  12287. border:none;
  12288. border-radius:0px;
  12289. -moz-box-shadow:none;
  12290. -webkit-box-shadow:none;
  12291. box-shadow:none;
  12292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12293. font-weight:400;
  12294. font-style:normal;
  12295. font-size:16px;
  12296. }
  12297. #u96527 {
  12298. border-width:0px;
  12299. position:absolute;
  12300. left:147px;
  12301. top:298px;
  12302. width:97px;
  12303. height:22px;
  12304. display:flex;
  12305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12306. font-weight:400;
  12307. font-style:normal;
  12308. font-size:16px;
  12309. }
  12310. #u96527 .text {
  12311. position:absolute;
  12312. align-self:flex-start;
  12313. padding:0px 0px 0px 0px;
  12314. box-sizing:border-box;
  12315. width:100%;
  12316. }
  12317. #u96527_text {
  12318. border-width:0px;
  12319. word-wrap:break-word;
  12320. text-transform:none;
  12321. }
  12322. #u96528_div {
  12323. border-width:0px;
  12324. position:absolute;
  12325. left:0px;
  12326. top:0px;
  12327. width:97px;
  12328. height:22px;
  12329. background:inherit;
  12330. background-color:rgba(255, 255, 255, 0);
  12331. border:none;
  12332. border-radius:0px;
  12333. -moz-box-shadow:none;
  12334. -webkit-box-shadow:none;
  12335. box-shadow:none;
  12336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12337. font-weight:400;
  12338. font-style:normal;
  12339. font-size:16px;
  12340. }
  12341. #u96528 {
  12342. border-width:0px;
  12343. position:absolute;
  12344. left:147px;
  12345. top:199px;
  12346. width:97px;
  12347. height:22px;
  12348. display:flex;
  12349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12350. font-weight:400;
  12351. font-style:normal;
  12352. font-size:16px;
  12353. }
  12354. #u96528 .text {
  12355. position:absolute;
  12356. align-self:flex-start;
  12357. padding:0px 0px 0px 0px;
  12358. box-sizing:border-box;
  12359. width:100%;
  12360. }
  12361. #u96528_text {
  12362. border-width:0px;
  12363. word-wrap:break-word;
  12364. text-transform:none;
  12365. }
  12366. #u96529_div {
  12367. border-width:0px;
  12368. position:absolute;
  12369. left:0px;
  12370. top:0px;
  12371. width:97px;
  12372. height:22px;
  12373. background:inherit;
  12374. background-color:rgba(255, 255, 255, 0);
  12375. border:none;
  12376. border-radius:0px;
  12377. -moz-box-shadow:none;
  12378. -webkit-box-shadow:none;
  12379. box-shadow:none;
  12380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12381. font-weight:400;
  12382. font-style:normal;
  12383. font-size:16px;
  12384. }
  12385. #u96529 {
  12386. border-width:0px;
  12387. position:absolute;
  12388. left:147px;
  12389. top:382px;
  12390. width:97px;
  12391. height:22px;
  12392. display:flex;
  12393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12394. font-weight:400;
  12395. font-style:normal;
  12396. font-size:16px;
  12397. }
  12398. #u96529 .text {
  12399. position:absolute;
  12400. align-self:flex-start;
  12401. padding:0px 0px 0px 0px;
  12402. box-sizing:border-box;
  12403. width:100%;
  12404. }
  12405. #u96529_text {
  12406. border-width:0px;
  12407. word-wrap:break-word;
  12408. text-transform:none;
  12409. }
  12410. #u96530_div {
  12411. border-width:0px;
  12412. position:absolute;
  12413. left:0px;
  12414. top:0px;
  12415. width:97px;
  12416. height:22px;
  12417. background:inherit;
  12418. background-color:rgba(255, 255, 255, 0);
  12419. border:none;
  12420. border-radius:0px;
  12421. -moz-box-shadow:none;
  12422. -webkit-box-shadow:none;
  12423. box-shadow:none;
  12424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12425. font-weight:400;
  12426. font-style:normal;
  12427. font-size:16px;
  12428. }
  12429. #u96530 {
  12430. border-width:0px;
  12431. position:absolute;
  12432. left:147px;
  12433. top:466px;
  12434. width:97px;
  12435. height:22px;
  12436. display:flex;
  12437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12438. font-weight:400;
  12439. font-style:normal;
  12440. font-size:16px;
  12441. }
  12442. #u96530 .text {
  12443. position:absolute;
  12444. align-self:flex-start;
  12445. padding:0px 0px 0px 0px;
  12446. box-sizing:border-box;
  12447. width:100%;
  12448. }
  12449. #u96530_text {
  12450. border-width:0px;
  12451. word-wrap:break-word;
  12452. text-transform:none;
  12453. }
  12454. #u96531_div {
  12455. border-width:0px;
  12456. position:absolute;
  12457. left:0px;
  12458. top:0px;
  12459. width:97px;
  12460. height:22px;
  12461. background:inherit;
  12462. background-color:rgba(255, 255, 255, 0);
  12463. border:none;
  12464. border-radius:0px;
  12465. -moz-box-shadow:none;
  12466. -webkit-box-shadow:none;
  12467. box-shadow:none;
  12468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12469. font-weight:400;
  12470. font-style:normal;
  12471. font-size:16px;
  12472. }
  12473. #u96531 {
  12474. border-width:0px;
  12475. position:absolute;
  12476. left:147px;
  12477. top:508px;
  12478. width:97px;
  12479. height:22px;
  12480. display:flex;
  12481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12482. font-weight:400;
  12483. font-style:normal;
  12484. font-size:16px;
  12485. }
  12486. #u96531 .text {
  12487. position:absolute;
  12488. align-self:flex-start;
  12489. padding:0px 0px 0px 0px;
  12490. box-sizing:border-box;
  12491. width:100%;
  12492. }
  12493. #u96531_text {
  12494. border-width:0px;
  12495. word-wrap:break-word;
  12496. text-transform:none;
  12497. }
  12498. #u96532_div {
  12499. border-width:0px;
  12500. position:absolute;
  12501. left:0px;
  12502. top:0px;
  12503. width:97px;
  12504. height:22px;
  12505. background:inherit;
  12506. background-color:rgba(255, 255, 255, 0);
  12507. border:none;
  12508. border-radius:0px;
  12509. -moz-box-shadow:none;
  12510. -webkit-box-shadow:none;
  12511. box-shadow:none;
  12512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12513. font-weight:400;
  12514. font-style:normal;
  12515. font-size:16px;
  12516. }
  12517. #u96532 {
  12518. border-width:0px;
  12519. position:absolute;
  12520. left:147px;
  12521. top:550px;
  12522. width:97px;
  12523. height:22px;
  12524. display:flex;
  12525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12526. font-weight:400;
  12527. font-style:normal;
  12528. font-size:16px;
  12529. }
  12530. #u96532 .text {
  12531. position:absolute;
  12532. align-self:flex-start;
  12533. padding:0px 0px 0px 0px;
  12534. box-sizing:border-box;
  12535. width:100%;
  12536. }
  12537. #u96532_text {
  12538. border-width:0px;
  12539. word-wrap:break-word;
  12540. text-transform:none;
  12541. }
  12542. #u96533_div {
  12543. border-width:0px;
  12544. position:absolute;
  12545. left:0px;
  12546. top:0px;
  12547. width:97px;
  12548. height:22px;
  12549. background:inherit;
  12550. background-color:rgba(255, 255, 255, 0);
  12551. border:none;
  12552. border-radius:0px;
  12553. -moz-box-shadow:none;
  12554. -webkit-box-shadow:none;
  12555. box-shadow:none;
  12556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12557. font-weight:400;
  12558. font-style:normal;
  12559. font-size:16px;
  12560. }
  12561. #u96533 {
  12562. border-width:0px;
  12563. position:absolute;
  12564. left:147px;
  12565. top:592px;
  12566. width:97px;
  12567. height:22px;
  12568. display:flex;
  12569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12570. font-weight:400;
  12571. font-style:normal;
  12572. font-size:16px;
  12573. }
  12574. #u96533 .text {
  12575. position:absolute;
  12576. align-self:flex-start;
  12577. padding:0px 0px 0px 0px;
  12578. box-sizing:border-box;
  12579. width:100%;
  12580. }
  12581. #u96533_text {
  12582. border-width:0px;
  12583. word-wrap:break-word;
  12584. text-transform:none;
  12585. }
  12586. #u96534_div {
  12587. border-width:0px;
  12588. position:absolute;
  12589. left:0px;
  12590. top:0px;
  12591. width:97px;
  12592. height:22px;
  12593. background:inherit;
  12594. background-color:rgba(255, 255, 255, 0);
  12595. border:none;
  12596. border-radius:0px;
  12597. -moz-box-shadow:none;
  12598. -webkit-box-shadow:none;
  12599. box-shadow:none;
  12600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12601. font-weight:400;
  12602. font-style:normal;
  12603. font-size:16px;
  12604. }
  12605. #u96534 {
  12606. border-width:0px;
  12607. position:absolute;
  12608. left:147px;
  12609. top:634px;
  12610. width:97px;
  12611. height:22px;
  12612. display:flex;
  12613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12614. font-weight:400;
  12615. font-style:normal;
  12616. font-size:16px;
  12617. }
  12618. #u96534 .text {
  12619. position:absolute;
  12620. align-self:flex-start;
  12621. padding:0px 0px 0px 0px;
  12622. box-sizing:border-box;
  12623. width:100%;
  12624. }
  12625. #u96534_text {
  12626. border-width:0px;
  12627. word-wrap:break-word;
  12628. text-transform:none;
  12629. }
  12630. #u96535_img {
  12631. border-width:0px;
  12632. position:absolute;
  12633. left:0px;
  12634. top:0px;
  12635. width:201px;
  12636. height:2px;
  12637. }
  12638. #u96535 {
  12639. border-width:0px;
  12640. position:absolute;
  12641. left:120px;
  12642. top:680px;
  12643. width:200px;
  12644. height:1px;
  12645. display:flex;
  12646. }
  12647. #u96535 .text {
  12648. position:absolute;
  12649. align-self:center;
  12650. padding:2px 2px 2px 2px;
  12651. box-sizing:border-box;
  12652. width:100%;
  12653. }
  12654. #u96535_text {
  12655. border-width:0px;
  12656. word-wrap:break-word;
  12657. text-transform:none;
  12658. visibility:hidden;
  12659. }
  12660. #u96536_div {
  12661. border-width:0px;
  12662. position:absolute;
  12663. left:0px;
  12664. top:0px;
  12665. width:49px;
  12666. height:17px;
  12667. background:inherit;
  12668. background-color:rgba(255, 255, 255, 0);
  12669. border:none;
  12670. border-radius:0px;
  12671. -moz-box-shadow:none;
  12672. -webkit-box-shadow:none;
  12673. box-shadow:none;
  12674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12675. font-weight:400;
  12676. font-style:normal;
  12677. font-size:12px;
  12678. color:#AAAAAA;
  12679. }
  12680. #u96536 {
  12681. border-width:0px;
  12682. position:absolute;
  12683. left:147px;
  12684. top:886px;
  12685. width:49px;
  12686. height:17px;
  12687. display:flex;
  12688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12689. font-weight:400;
  12690. font-style:normal;
  12691. font-size:12px;
  12692. color:#AAAAAA;
  12693. }
  12694. #u96536 .text {
  12695. position:absolute;
  12696. align-self:flex-start;
  12697. padding:0px 0px 0px 0px;
  12698. box-sizing:border-box;
  12699. width:100%;
  12700. }
  12701. #u96536_text {
  12702. border-width:0px;
  12703. white-space:nowrap;
  12704. text-transform:none;
  12705. }
  12706. #u96537_div {
  12707. border-width:0px;
  12708. position:absolute;
  12709. left:0px;
  12710. top:0px;
  12711. width:113px;
  12712. height:22px;
  12713. background:inherit;
  12714. background-color:rgba(255, 255, 255, 0);
  12715. border:none;
  12716. border-radius:0px;
  12717. -moz-box-shadow:none;
  12718. -webkit-box-shadow:none;
  12719. box-shadow:none;
  12720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12721. font-weight:400;
  12722. font-style:normal;
  12723. font-size:16px;
  12724. }
  12725. #u96537 {
  12726. border-width:0px;
  12727. position:absolute;
  12728. left:147px;
  12729. top:923px;
  12730. width:113px;
  12731. height:22px;
  12732. display:flex;
  12733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12734. font-weight:400;
  12735. font-style:normal;
  12736. font-size:16px;
  12737. }
  12738. #u96537 .text {
  12739. position:absolute;
  12740. align-self:flex-start;
  12741. padding:0px 0px 0px 0px;
  12742. box-sizing:border-box;
  12743. width:100%;
  12744. }
  12745. #u96537_text {
  12746. border-width:0px;
  12747. white-space:nowrap;
  12748. text-transform:none;
  12749. }
  12750. #u96538_div {
  12751. border-width:0px;
  12752. position:absolute;
  12753. left:0px;
  12754. top:0px;
  12755. width:145px;
  12756. height:22px;
  12757. background:inherit;
  12758. background-color:rgba(255, 255, 255, 0);
  12759. border:none;
  12760. border-radius:0px;
  12761. -moz-box-shadow:none;
  12762. -webkit-box-shadow:none;
  12763. box-shadow:none;
  12764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12765. font-weight:400;
  12766. font-style:normal;
  12767. font-size:16px;
  12768. }
  12769. #u96538 {
  12770. border-width:0px;
  12771. position:absolute;
  12772. left:147px;
  12773. top:965px;
  12774. width:145px;
  12775. height:22px;
  12776. display:flex;
  12777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12778. font-weight:400;
  12779. font-style:normal;
  12780. font-size:16px;
  12781. }
  12782. #u96538 .text {
  12783. position:absolute;
  12784. align-self:flex-start;
  12785. padding:0px 0px 0px 0px;
  12786. box-sizing:border-box;
  12787. width:100%;
  12788. }
  12789. #u96538_text {
  12790. border-width:0px;
  12791. white-space:nowrap;
  12792. text-transform:none;
  12793. }
  12794. #u96539_div {
  12795. border-width:0px;
  12796. position:absolute;
  12797. left:0px;
  12798. top:0px;
  12799. width:145px;
  12800. height:22px;
  12801. background:inherit;
  12802. background-color:rgba(255, 255, 255, 0);
  12803. border:none;
  12804. border-radius:0px;
  12805. -moz-box-shadow:none;
  12806. -webkit-box-shadow:none;
  12807. box-shadow:none;
  12808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12809. font-weight:400;
  12810. font-style:normal;
  12811. font-size:16px;
  12812. }
  12813. #u96539 {
  12814. border-width:0px;
  12815. position:absolute;
  12816. left:147px;
  12817. top:1007px;
  12818. width:145px;
  12819. height:22px;
  12820. display:flex;
  12821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12822. font-weight:400;
  12823. font-style:normal;
  12824. font-size:16px;
  12825. }
  12826. #u96539 .text {
  12827. position:absolute;
  12828. align-self:flex-start;
  12829. padding:0px 0px 0px 0px;
  12830. box-sizing:border-box;
  12831. width:100%;
  12832. }
  12833. #u96539_text {
  12834. border-width:0px;
  12835. white-space:nowrap;
  12836. text-transform:none;
  12837. }
  12838. #u96540_div {
  12839. border-width:0px;
  12840. position:absolute;
  12841. left:0px;
  12842. top:0px;
  12843. width:145px;
  12844. height:22px;
  12845. background:inherit;
  12846. background-color:rgba(255, 255, 255, 0);
  12847. border:none;
  12848. border-radius:0px;
  12849. -moz-box-shadow:none;
  12850. -webkit-box-shadow:none;
  12851. box-shadow:none;
  12852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12853. font-weight:400;
  12854. font-style:normal;
  12855. font-size:16px;
  12856. }
  12857. #u96540 {
  12858. border-width:0px;
  12859. position:absolute;
  12860. left:147px;
  12861. top:1049px;
  12862. width:145px;
  12863. height:22px;
  12864. display:flex;
  12865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12866. font-weight:400;
  12867. font-style:normal;
  12868. font-size:16px;
  12869. }
  12870. #u96540 .text {
  12871. position:absolute;
  12872. align-self:flex-start;
  12873. padding:0px 0px 0px 0px;
  12874. box-sizing:border-box;
  12875. width:100%;
  12876. }
  12877. #u96540_text {
  12878. border-width:0px;
  12879. white-space:nowrap;
  12880. text-transform:none;
  12881. }
  12882. #u96541_div {
  12883. border-width:0px;
  12884. position:absolute;
  12885. left:0px;
  12886. top:0px;
  12887. width:145px;
  12888. height:22px;
  12889. background:inherit;
  12890. background-color:rgba(255, 255, 255, 0);
  12891. border:none;
  12892. border-radius:0px;
  12893. -moz-box-shadow:none;
  12894. -webkit-box-shadow:none;
  12895. box-shadow:none;
  12896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12897. font-weight:400;
  12898. font-style:normal;
  12899. font-size:16px;
  12900. }
  12901. #u96541 {
  12902. border-width:0px;
  12903. position:absolute;
  12904. left:147px;
  12905. top:1091px;
  12906. width:145px;
  12907. height:22px;
  12908. display:flex;
  12909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12910. font-weight:400;
  12911. font-style:normal;
  12912. font-size:16px;
  12913. }
  12914. #u96541 .text {
  12915. position:absolute;
  12916. align-self:flex-start;
  12917. padding:0px 0px 0px 0px;
  12918. box-sizing:border-box;
  12919. width:100%;
  12920. }
  12921. #u96541_text {
  12922. border-width:0px;
  12923. white-space:nowrap;
  12924. text-transform:none;
  12925. }
  12926. #u96542_div {
  12927. border-width:0px;
  12928. position:absolute;
  12929. left:0px;
  12930. top:0px;
  12931. width:113px;
  12932. height:22px;
  12933. background:inherit;
  12934. background-color:rgba(255, 255, 255, 0);
  12935. border:none;
  12936. border-radius:0px;
  12937. -moz-box-shadow:none;
  12938. -webkit-box-shadow:none;
  12939. box-shadow:none;
  12940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12941. font-weight:400;
  12942. font-style:normal;
  12943. font-size:16px;
  12944. }
  12945. #u96542 {
  12946. border-width:0px;
  12947. position:absolute;
  12948. left:147px;
  12949. top:1133px;
  12950. width:113px;
  12951. height:22px;
  12952. display:flex;
  12953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12954. font-weight:400;
  12955. font-style:normal;
  12956. font-size:16px;
  12957. }
  12958. #u96542 .text {
  12959. position:absolute;
  12960. align-self:flex-start;
  12961. padding:0px 0px 0px 0px;
  12962. box-sizing:border-box;
  12963. width:100%;
  12964. }
  12965. #u96542_text {
  12966. border-width:0px;
  12967. white-space:nowrap;
  12968. text-transform:none;
  12969. }
  12970. #u96543_div {
  12971. border-width:0px;
  12972. position:absolute;
  12973. left:0px;
  12974. top:0px;
  12975. width:97px;
  12976. height:22px;
  12977. background:inherit;
  12978. background-color:rgba(255, 255, 255, 0);
  12979. border:none;
  12980. border-radius:0px;
  12981. -moz-box-shadow:none;
  12982. -webkit-box-shadow:none;
  12983. box-shadow:none;
  12984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12985. font-weight:400;
  12986. font-style:normal;
  12987. font-size:16px;
  12988. }
  12989. #u96543 {
  12990. border-width:0px;
  12991. position:absolute;
  12992. left:147px;
  12993. top:1585px;
  12994. width:97px;
  12995. height:22px;
  12996. display:flex;
  12997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12998. font-weight:400;
  12999. font-style:normal;
  13000. font-size:16px;
  13001. }
  13002. #u96543 .text {
  13003. position:absolute;
  13004. align-self:flex-start;
  13005. padding:0px 0px 0px 0px;
  13006. box-sizing:border-box;
  13007. width:100%;
  13008. }
  13009. #u96543_text {
  13010. border-width:0px;
  13011. white-space:nowrap;
  13012. text-transform:none;
  13013. }
  13014. #u96544_div {
  13015. border-width:0px;
  13016. position:absolute;
  13017. left:0px;
  13018. top:0px;
  13019. width:97px;
  13020. height:22px;
  13021. background:inherit;
  13022. background-color:rgba(255, 255, 255, 0);
  13023. border:none;
  13024. border-radius:0px;
  13025. -moz-box-shadow:none;
  13026. -webkit-box-shadow:none;
  13027. box-shadow:none;
  13028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13029. font-weight:400;
  13030. font-style:normal;
  13031. font-size:16px;
  13032. }
  13033. #u96544 {
  13034. border-width:0px;
  13035. position:absolute;
  13036. left:147px;
  13037. top:1627px;
  13038. width:97px;
  13039. height:22px;
  13040. display:flex;
  13041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13042. font-weight:400;
  13043. font-style:normal;
  13044. font-size:16px;
  13045. }
  13046. #u96544 .text {
  13047. position:absolute;
  13048. align-self:flex-start;
  13049. padding:0px 0px 0px 0px;
  13050. box-sizing:border-box;
  13051. width:100%;
  13052. }
  13053. #u96544_text {
  13054. border-width:0px;
  13055. white-space:nowrap;
  13056. text-transform:none;
  13057. }
  13058. #u96545_div {
  13059. border-width:0px;
  13060. position:absolute;
  13061. left:0px;
  13062. top:0px;
  13063. width:97px;
  13064. height:22px;
  13065. background:inherit;
  13066. background-color:rgba(255, 255, 255, 0);
  13067. border:none;
  13068. border-radius:0px;
  13069. -moz-box-shadow:none;
  13070. -webkit-box-shadow:none;
  13071. box-shadow:none;
  13072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13073. font-weight:400;
  13074. font-style:normal;
  13075. font-size:16px;
  13076. }
  13077. #u96545 {
  13078. border-width:0px;
  13079. position:absolute;
  13080. left:147px;
  13081. top:1669px;
  13082. width:97px;
  13083. height:22px;
  13084. display:flex;
  13085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13086. font-weight:400;
  13087. font-style:normal;
  13088. font-size:16px;
  13089. }
  13090. #u96545 .text {
  13091. position:absolute;
  13092. align-self:flex-start;
  13093. padding:0px 0px 0px 0px;
  13094. box-sizing:border-box;
  13095. width:100%;
  13096. }
  13097. #u96545_text {
  13098. border-width:0px;
  13099. white-space:nowrap;
  13100. text-transform:none;
  13101. }
  13102. #u96546_div {
  13103. border-width:0px;
  13104. position:absolute;
  13105. left:0px;
  13106. top:0px;
  13107. width:97px;
  13108. height:22px;
  13109. background:inherit;
  13110. background-color:rgba(255, 255, 255, 0);
  13111. border:none;
  13112. border-radius:0px;
  13113. -moz-box-shadow:none;
  13114. -webkit-box-shadow:none;
  13115. box-shadow:none;
  13116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13117. font-weight:400;
  13118. font-style:normal;
  13119. font-size:16px;
  13120. }
  13121. #u96546 {
  13122. border-width:0px;
  13123. position:absolute;
  13124. left:147px;
  13125. top:1711px;
  13126. width:97px;
  13127. height:22px;
  13128. display:flex;
  13129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13130. font-weight:400;
  13131. font-style:normal;
  13132. font-size:16px;
  13133. }
  13134. #u96546 .text {
  13135. position:absolute;
  13136. align-self:flex-start;
  13137. padding:0px 0px 0px 0px;
  13138. box-sizing:border-box;
  13139. width:100%;
  13140. }
  13141. #u96546_text {
  13142. border-width:0px;
  13143. white-space:nowrap;
  13144. text-transform:none;
  13145. }
  13146. #u96547_div {
  13147. border-width:0px;
  13148. position:absolute;
  13149. left:0px;
  13150. top:0px;
  13151. width:97px;
  13152. height:22px;
  13153. background:inherit;
  13154. background-color:rgba(255, 255, 255, 0);
  13155. border:none;
  13156. border-radius:0px;
  13157. -moz-box-shadow:none;
  13158. -webkit-box-shadow:none;
  13159. box-shadow:none;
  13160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13161. font-weight:400;
  13162. font-style:normal;
  13163. font-size:16px;
  13164. }
  13165. #u96547 {
  13166. border-width:0px;
  13167. position:absolute;
  13168. left:147px;
  13169. top:824px;
  13170. width:97px;
  13171. height:22px;
  13172. display:flex;
  13173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13174. font-weight:400;
  13175. font-style:normal;
  13176. font-size:16px;
  13177. }
  13178. #u96547 .text {
  13179. position:absolute;
  13180. align-self:flex-start;
  13181. padding:0px 0px 0px 0px;
  13182. box-sizing:border-box;
  13183. width:100%;
  13184. }
  13185. #u96547_text {
  13186. border-width:0px;
  13187. word-wrap:break-word;
  13188. text-transform:none;
  13189. }
  13190. #u96548_div {
  13191. border-width:0px;
  13192. position:absolute;
  13193. left:0px;
  13194. top:0px;
  13195. width:97px;
  13196. height:22px;
  13197. background:inherit;
  13198. background-color:rgba(255, 255, 255, 0);
  13199. border:none;
  13200. border-radius:0px;
  13201. -moz-box-shadow:none;
  13202. -webkit-box-shadow:none;
  13203. box-shadow:none;
  13204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13205. font-weight:400;
  13206. font-style:normal;
  13207. font-size:16px;
  13208. }
  13209. #u96548 {
  13210. border-width:0px;
  13211. position:absolute;
  13212. left:147px;
  13213. top:738px;
  13214. width:97px;
  13215. height:22px;
  13216. display:flex;
  13217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13218. font-weight:400;
  13219. font-style:normal;
  13220. font-size:16px;
  13221. }
  13222. #u96548 .text {
  13223. position:absolute;
  13224. align-self:flex-start;
  13225. padding:0px 0px 0px 0px;
  13226. box-sizing:border-box;
  13227. width:100%;
  13228. }
  13229. #u96548_text {
  13230. border-width:0px;
  13231. word-wrap:break-word;
  13232. text-transform:none;
  13233. }
  13234. #u96549_div {
  13235. border-width:0px;
  13236. position:absolute;
  13237. left:0px;
  13238. top:0px;
  13239. width:49px;
  13240. height:17px;
  13241. background:inherit;
  13242. background-color:rgba(255, 255, 255, 0);
  13243. border:none;
  13244. border-radius:0px;
  13245. -moz-box-shadow:none;
  13246. -webkit-box-shadow:none;
  13247. box-shadow:none;
  13248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13249. font-weight:400;
  13250. font-style:normal;
  13251. font-size:12px;
  13252. color:#AAAAAA;
  13253. }
  13254. #u96549 {
  13255. border-width:0px;
  13256. position:absolute;
  13257. left:147px;
  13258. top:701px;
  13259. width:49px;
  13260. height:17px;
  13261. display:flex;
  13262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13263. font-weight:400;
  13264. font-style:normal;
  13265. font-size:12px;
  13266. color:#AAAAAA;
  13267. }
  13268. #u96549 .text {
  13269. position:absolute;
  13270. align-self:flex-start;
  13271. padding:0px 0px 0px 0px;
  13272. box-sizing:border-box;
  13273. width:100%;
  13274. }
  13275. #u96549_text {
  13276. border-width:0px;
  13277. white-space:nowrap;
  13278. text-transform:none;
  13279. }
  13280. #u96550_div {
  13281. border-width:0px;
  13282. position:absolute;
  13283. left:0px;
  13284. top:0px;
  13285. width:97px;
  13286. height:22px;
  13287. background:inherit;
  13288. background-color:rgba(255, 255, 255, 0);
  13289. border:none;
  13290. border-radius:0px;
  13291. -moz-box-shadow:none;
  13292. -webkit-box-shadow:none;
  13293. box-shadow:none;
  13294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13295. font-weight:400;
  13296. font-style:normal;
  13297. font-size:16px;
  13298. }
  13299. #u96550 {
  13300. border-width:0px;
  13301. position:absolute;
  13302. left:147px;
  13303. top:780px;
  13304. width:97px;
  13305. height:22px;
  13306. display:flex;
  13307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13308. font-weight:400;
  13309. font-style:normal;
  13310. font-size:16px;
  13311. }
  13312. #u96550 .text {
  13313. position:absolute;
  13314. align-self:flex-start;
  13315. padding:0px 0px 0px 0px;
  13316. box-sizing:border-box;
  13317. width:100%;
  13318. }
  13319. #u96550_text {
  13320. border-width:0px;
  13321. word-wrap:break-word;
  13322. text-transform:none;
  13323. }
  13324. #u96551_img {
  13325. border-width:0px;
  13326. position:absolute;
  13327. left:0px;
  13328. top:0px;
  13329. width:201px;
  13330. height:2px;
  13331. }
  13332. #u96551 {
  13333. border-width:0px;
  13334. position:absolute;
  13335. left:120px;
  13336. top:866px;
  13337. width:200px;
  13338. height:1px;
  13339. display:flex;
  13340. }
  13341. #u96551 .text {
  13342. position:absolute;
  13343. align-self:center;
  13344. padding:2px 2px 2px 2px;
  13345. box-sizing:border-box;
  13346. width:100%;
  13347. }
  13348. #u96551_text {
  13349. border-width:0px;
  13350. word-wrap:break-word;
  13351. text-transform:none;
  13352. visibility:hidden;
  13353. }
  13354. #u96552_div {
  13355. border-width:0px;
  13356. position:absolute;
  13357. left:0px;
  13358. top:0px;
  13359. width:97px;
  13360. height:22px;
  13361. background:inherit;
  13362. background-color:rgba(255, 255, 255, 0);
  13363. border:none;
  13364. border-radius:0px;
  13365. -moz-box-shadow:none;
  13366. -webkit-box-shadow:none;
  13367. box-shadow:none;
  13368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13369. font-weight:400;
  13370. font-style:normal;
  13371. font-size:16px;
  13372. }
  13373. #u96552 {
  13374. border-width:0px;
  13375. position:absolute;
  13376. left:147px;
  13377. top:1237px;
  13378. width:97px;
  13379. height:22px;
  13380. display:flex;
  13381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13382. font-weight:400;
  13383. font-style:normal;
  13384. font-size:16px;
  13385. }
  13386. #u96552 .text {
  13387. position:absolute;
  13388. align-self:flex-start;
  13389. padding:0px 0px 0px 0px;
  13390. box-sizing:border-box;
  13391. width:100%;
  13392. }
  13393. #u96552_text {
  13394. border-width:0px;
  13395. word-wrap:break-word;
  13396. text-transform:none;
  13397. }
  13398. #u96553_div {
  13399. border-width:0px;
  13400. position:absolute;
  13401. left:0px;
  13402. top:0px;
  13403. width:49px;
  13404. height:17px;
  13405. background:inherit;
  13406. background-color:rgba(255, 255, 255, 0);
  13407. border:none;
  13408. border-radius:0px;
  13409. -moz-box-shadow:none;
  13410. -webkit-box-shadow:none;
  13411. box-shadow:none;
  13412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13413. font-weight:400;
  13414. font-style:normal;
  13415. font-size:12px;
  13416. color:#AAAAAA;
  13417. }
  13418. #u96553 {
  13419. border-width:0px;
  13420. position:absolute;
  13421. left:147px;
  13422. top:1201px;
  13423. width:49px;
  13424. height:17px;
  13425. display:flex;
  13426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13427. font-weight:400;
  13428. font-style:normal;
  13429. font-size:12px;
  13430. color:#AAAAAA;
  13431. }
  13432. #u96553 .text {
  13433. position:absolute;
  13434. align-self:flex-start;
  13435. padding:0px 0px 0px 0px;
  13436. box-sizing:border-box;
  13437. width:100%;
  13438. }
  13439. #u96553_text {
  13440. border-width:0px;
  13441. white-space:nowrap;
  13442. text-transform:none;
  13443. }
  13444. #u96554_div {
  13445. border-width:0px;
  13446. position:absolute;
  13447. left:0px;
  13448. top:0px;
  13449. width:97px;
  13450. height:22px;
  13451. background:inherit;
  13452. background-color:rgba(255, 255, 255, 0);
  13453. border:none;
  13454. border-radius:0px;
  13455. -moz-box-shadow:none;
  13456. -webkit-box-shadow:none;
  13457. box-shadow:none;
  13458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13459. font-weight:400;
  13460. font-style:normal;
  13461. font-size:16px;
  13462. }
  13463. #u96554 {
  13464. border-width:0px;
  13465. position:absolute;
  13466. left:147px;
  13467. top:1279px;
  13468. width:97px;
  13469. height:22px;
  13470. display:flex;
  13471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13472. font-weight:400;
  13473. font-style:normal;
  13474. font-size:16px;
  13475. }
  13476. #u96554 .text {
  13477. position:absolute;
  13478. align-self:flex-start;
  13479. padding:0px 0px 0px 0px;
  13480. box-sizing:border-box;
  13481. width:100%;
  13482. }
  13483. #u96554_text {
  13484. border-width:0px;
  13485. word-wrap:break-word;
  13486. text-transform:none;
  13487. }
  13488. #u96555_div {
  13489. border-width:0px;
  13490. position:absolute;
  13491. left:0px;
  13492. top:0px;
  13493. width:97px;
  13494. height:22px;
  13495. background:inherit;
  13496. background-color:rgba(255, 255, 255, 0);
  13497. border:none;
  13498. border-radius:0px;
  13499. -moz-box-shadow:none;
  13500. -webkit-box-shadow:none;
  13501. box-shadow:none;
  13502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13503. font-weight:400;
  13504. font-style:normal;
  13505. font-size:16px;
  13506. }
  13507. #u96555 {
  13508. border-width:0px;
  13509. position:absolute;
  13510. left:147px;
  13511. top:1321px;
  13512. width:97px;
  13513. height:22px;
  13514. display:flex;
  13515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13516. font-weight:400;
  13517. font-style:normal;
  13518. font-size:16px;
  13519. }
  13520. #u96555 .text {
  13521. position:absolute;
  13522. align-self:flex-start;
  13523. padding:0px 0px 0px 0px;
  13524. box-sizing:border-box;
  13525. width:100%;
  13526. }
  13527. #u96555_text {
  13528. border-width:0px;
  13529. word-wrap:break-word;
  13530. text-transform:none;
  13531. }
  13532. #u96556_div {
  13533. border-width:0px;
  13534. position:absolute;
  13535. left:0px;
  13536. top:0px;
  13537. width:97px;
  13538. height:22px;
  13539. background:inherit;
  13540. background-color:rgba(255, 255, 255, 0);
  13541. border:none;
  13542. border-radius:0px;
  13543. -moz-box-shadow:none;
  13544. -webkit-box-shadow:none;
  13545. box-shadow:none;
  13546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13547. font-weight:400;
  13548. font-style:normal;
  13549. font-size:16px;
  13550. }
  13551. #u96556 {
  13552. border-width:0px;
  13553. position:absolute;
  13554. left:147px;
  13555. top:1363px;
  13556. width:97px;
  13557. height:22px;
  13558. display:flex;
  13559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13560. font-weight:400;
  13561. font-style:normal;
  13562. font-size:16px;
  13563. }
  13564. #u96556 .text {
  13565. position:absolute;
  13566. align-self:flex-start;
  13567. padding:0px 0px 0px 0px;
  13568. box-sizing:border-box;
  13569. width:100%;
  13570. }
  13571. #u96556_text {
  13572. border-width:0px;
  13573. word-wrap:break-word;
  13574. text-transform:none;
  13575. }
  13576. #u96557_img {
  13577. border-width:0px;
  13578. position:absolute;
  13579. left:0px;
  13580. top:0px;
  13581. width:201px;
  13582. height:2px;
  13583. }
  13584. #u96557 {
  13585. border-width:0px;
  13586. position:absolute;
  13587. left:120px;
  13588. top:1403px;
  13589. width:200px;
  13590. height:1px;
  13591. display:flex;
  13592. }
  13593. #u96557 .text {
  13594. position:absolute;
  13595. align-self:center;
  13596. padding:2px 2px 2px 2px;
  13597. box-sizing:border-box;
  13598. width:100%;
  13599. }
  13600. #u96557_text {
  13601. border-width:0px;
  13602. word-wrap:break-word;
  13603. text-transform:none;
  13604. visibility:hidden;
  13605. }