styles.css 144 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u95857_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. #u95857 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u95857 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u95857_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u95858_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. #u95858 {
  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. #u95858 .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. #u95858_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u95859_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. #u95859 {
  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. #u95859 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u95859_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u95860 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u95861_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u95861 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u95861 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u95861_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u95862_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. #u95862 {
  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. #u95862 .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. #u95862_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u95863_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. #u95863 {
  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. #u95863 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u95863_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u95864 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u95865_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u95865 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u95865 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u95865_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u95866_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u95866 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u95866 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u95866_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u95867 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u95868_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u95868 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u95868 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u95868_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u95869_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u95869 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u95869 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u95869_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u95870 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u95871_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u95871 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u95871 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u95871_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u95872_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u95872 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u95872 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u95872_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u95873 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u95874_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u95874 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u95874 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u95874_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u95875_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u95875 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u95875 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u95875_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u95876 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u95877_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u95877 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u95877 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u95877_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u95878_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u95878 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u95878 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u95878_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u95879 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u95880_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u95880 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u95880 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u95880_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u95881_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u95881 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u95881 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u95881_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u95882 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u95883_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u95883 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u95883 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u95883_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u95884_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u95884 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u95884 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u95884_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u95885 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u95886_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u95886 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u95886 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u95886_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u95887_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u95887 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u95887 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u95887_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u95888 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u95889_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u95889 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u95889 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u95889_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u95890_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u95890 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u95890 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u95890_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u95891_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u95891 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u95891 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u95891_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u95892_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u95892 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u95892 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u95892_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u95893_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u95893 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u95893 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u95893_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u95894_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u95894 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u95894 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u95894_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u95895 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u95896_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u95896 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u95896 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u95896_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u95897_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u95897 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u95897 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u95897_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u95898 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u95899_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u95899 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u95899 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u95899_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u95900_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u95900 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u95900 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u95900_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u95901 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u95902_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u95902_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u95902_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u95902 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u95902 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u95902_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u95902.disabled {
  1428. }
  1429. .u95902_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u95903_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u95903 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u95903 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u95903_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u95904_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u95904 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u95904 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u95904_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u95905_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u95905 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u95905 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u95905_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u95906_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1258px;
  1544. height:1180px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u95906 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:333px;
  1557. top:50px;
  1558. width:1258px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u95906 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u95906_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u95907_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:73px;
  1581. height:50px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border:none;
  1585. border-left:0px;
  1586. border-top:0px;
  1587. border-right:0px;
  1588. border-radius:0px;
  1589. border-bottom-right-radius:0px;
  1590. border-bottom-left-radius:0px;
  1591. -moz-box-shadow:none;
  1592. -webkit-box-shadow:none;
  1593. box-shadow:none;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:18px;
  1598. line-height:40px;
  1599. }
  1600. #u95907 {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:361px;
  1604. top:53px;
  1605. width:73px;
  1606. height:50px;
  1607. display:flex;
  1608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1609. font-weight:400;
  1610. font-style:normal;
  1611. font-size:18px;
  1612. line-height:40px;
  1613. }
  1614. #u95907 .text {
  1615. position:absolute;
  1616. align-self:center;
  1617. padding:0px 0px 0px 0px;
  1618. box-sizing:border-box;
  1619. width:100%;
  1620. }
  1621. #u95907_text {
  1622. border-width:0px;
  1623. white-space:nowrap;
  1624. text-transform:none;
  1625. }
  1626. #u95908 {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:353px;
  1630. top:221px;
  1631. width:1218px;
  1632. height:461px;
  1633. }
  1634. #u95909_img {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:0px;
  1638. top:0px;
  1639. width:94px;
  1640. height:31px;
  1641. }
  1642. #u95909 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:94px;
  1648. height:31px;
  1649. display:flex;
  1650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1651. font-weight:400;
  1652. font-style:normal;
  1653. font-size:14px;
  1654. color:#FFFFFF;
  1655. }
  1656. #u95909 .text {
  1657. position:absolute;
  1658. align-self:center;
  1659. padding:2px 2px 2px 2px;
  1660. box-sizing:border-box;
  1661. width:100%;
  1662. }
  1663. #u95909_text {
  1664. border-width:0px;
  1665. word-wrap:break-word;
  1666. text-transform:none;
  1667. }
  1668. #u95910_img {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:96px;
  1674. height:31px;
  1675. }
  1676. #u95910 {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:94px;
  1680. top:0px;
  1681. width:96px;
  1682. height:31px;
  1683. display:flex;
  1684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1685. font-weight:400;
  1686. font-style:normal;
  1687. font-size:14px;
  1688. color:#FFFFFF;
  1689. }
  1690. #u95910 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 2px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u95910_text {
  1698. border-width:0px;
  1699. word-wrap:break-word;
  1700. text-transform:none;
  1701. }
  1702. #u95911_img {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:0px;
  1706. top:0px;
  1707. width:94px;
  1708. height:31px;
  1709. }
  1710. #u95911 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:190px;
  1714. top:0px;
  1715. width:94px;
  1716. height:31px;
  1717. display:flex;
  1718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1719. font-weight:400;
  1720. font-style:normal;
  1721. font-size:14px;
  1722. color:#FFFFFF;
  1723. }
  1724. #u95911 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:2px 2px 2px 2px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u95911_text {
  1732. border-width:0px;
  1733. word-wrap:break-word;
  1734. text-transform:none;
  1735. }
  1736. #u95912_img {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:114px;
  1742. height:31px;
  1743. }
  1744. #u95912 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:284px;
  1748. top:0px;
  1749. width:114px;
  1750. height:31px;
  1751. display:flex;
  1752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1753. font-weight:400;
  1754. font-style:normal;
  1755. font-size:14px;
  1756. color:#FFFFFF;
  1757. }
  1758. #u95912 .text {
  1759. position:absolute;
  1760. align-self:center;
  1761. padding:2px 2px 2px 2px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u95912_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. }
  1770. #u95913_img {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:114px;
  1776. height:31px;
  1777. }
  1778. #u95913 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:398px;
  1782. top:0px;
  1783. width:114px;
  1784. height:31px;
  1785. display:flex;
  1786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1787. font-weight:400;
  1788. font-style:normal;
  1789. font-size:14px;
  1790. color:#FFFFFF;
  1791. }
  1792. #u95913 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:2px 2px 2px 2px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u95913_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. }
  1804. #u95914_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:102px;
  1810. height:31px;
  1811. }
  1812. #u95914 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:512px;
  1816. top:0px;
  1817. width:102px;
  1818. height:31px;
  1819. display:flex;
  1820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:14px;
  1824. color:#FFFFFF;
  1825. }
  1826. #u95914 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:2px 2px 2px 2px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u95914_text {
  1834. border-width:0px;
  1835. word-wrap:break-word;
  1836. text-transform:none;
  1837. }
  1838. #u95915_img {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:101px;
  1844. height:31px;
  1845. }
  1846. #u95915 {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:614px;
  1850. top:0px;
  1851. width:101px;
  1852. height:31px;
  1853. display:flex;
  1854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:14px;
  1858. color:#FFFFFF;
  1859. }
  1860. #u95915 .text {
  1861. position:absolute;
  1862. align-self:center;
  1863. padding:2px 2px 2px 2px;
  1864. box-sizing:border-box;
  1865. width:100%;
  1866. }
  1867. #u95915_text {
  1868. border-width:0px;
  1869. word-wrap:break-word;
  1870. text-transform:none;
  1871. }
  1872. #u95916_img {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:101px;
  1878. height:31px;
  1879. }
  1880. #u95916 {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:715px;
  1884. top:0px;
  1885. width:101px;
  1886. height:31px;
  1887. display:flex;
  1888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1889. font-weight:400;
  1890. font-style:normal;
  1891. font-size:14px;
  1892. color:#FFFFFF;
  1893. }
  1894. #u95916 .text {
  1895. position:absolute;
  1896. align-self:center;
  1897. padding:2px 2px 2px 2px;
  1898. box-sizing:border-box;
  1899. width:100%;
  1900. }
  1901. #u95916_text {
  1902. border-width:0px;
  1903. word-wrap:break-word;
  1904. text-transform:none;
  1905. }
  1906. #u95917_img {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:95px;
  1912. height:31px;
  1913. }
  1914. #u95917 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:816px;
  1918. top:0px;
  1919. width:95px;
  1920. height:31px;
  1921. display:flex;
  1922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1923. font-weight:400;
  1924. font-style:normal;
  1925. font-size:14px;
  1926. color:#FFFFFF;
  1927. }
  1928. #u95917 .text {
  1929. position:absolute;
  1930. align-self:center;
  1931. padding:2px 2px 2px 2px;
  1932. box-sizing:border-box;
  1933. width:100%;
  1934. }
  1935. #u95917_text {
  1936. border-width:0px;
  1937. word-wrap:break-word;
  1938. text-transform:none;
  1939. }
  1940. #u95918_img {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:102px;
  1946. height:31px;
  1947. }
  1948. #u95918 {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:911px;
  1952. top:0px;
  1953. width:102px;
  1954. height:31px;
  1955. display:flex;
  1956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1957. font-weight:400;
  1958. font-style:normal;
  1959. font-size:14px;
  1960. color:#FFFFFF;
  1961. }
  1962. #u95918 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 2px 2px 2px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u95918_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. }
  1974. #u95919_img {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:101px;
  1980. height:31px;
  1981. }
  1982. #u95919 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:1013px;
  1986. top:0px;
  1987. width:101px;
  1988. height:31px;
  1989. display:flex;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:14px;
  1994. color:#FFFFFF;
  1995. }
  1996. #u95919 .text {
  1997. position:absolute;
  1998. align-self:center;
  1999. padding:2px 2px 2px 2px;
  2000. box-sizing:border-box;
  2001. width:100%;
  2002. }
  2003. #u95919_text {
  2004. border-width:0px;
  2005. word-wrap:break-word;
  2006. text-transform:none;
  2007. }
  2008. #u95920_img {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:104px;
  2014. height:31px;
  2015. }
  2016. #u95920 {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:1114px;
  2020. top:0px;
  2021. width:104px;
  2022. height:31px;
  2023. display:flex;
  2024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2025. font-weight:400;
  2026. font-style:normal;
  2027. font-size:14px;
  2028. color:#FFFFFF;
  2029. }
  2030. #u95920 .text {
  2031. position:absolute;
  2032. align-self:center;
  2033. padding:2px 2px 2px 2px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u95920_text {
  2038. border-width:0px;
  2039. word-wrap:break-word;
  2040. text-transform:none;
  2041. }
  2042. #u95921_img {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:94px;
  2048. height:35px;
  2049. }
  2050. #u95921 {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:31px;
  2055. width:94px;
  2056. height:35px;
  2057. display:flex;
  2058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2059. font-weight:400;
  2060. font-style:normal;
  2061. font-size:14px;
  2062. }
  2063. #u95921 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 2px 2px 2px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u95921_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. visibility:hidden;
  2075. }
  2076. #u95922_img {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:96px;
  2082. height:35px;
  2083. }
  2084. #u95922 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:94px;
  2088. top:31px;
  2089. width:96px;
  2090. height:35px;
  2091. display:flex;
  2092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:14px;
  2096. }
  2097. #u95922 .text {
  2098. position:absolute;
  2099. align-self:center;
  2100. padding:2px 2px 2px 2px;
  2101. box-sizing:border-box;
  2102. width:100%;
  2103. }
  2104. #u95922_text {
  2105. border-width:0px;
  2106. word-wrap:break-word;
  2107. text-transform:none;
  2108. }
  2109. #u95923_img {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:0px;
  2113. top:0px;
  2114. width:94px;
  2115. height:35px;
  2116. }
  2117. #u95923 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:190px;
  2121. top:31px;
  2122. width:94px;
  2123. height:35px;
  2124. display:flex;
  2125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2126. font-weight:400;
  2127. font-style:normal;
  2128. font-size:14px;
  2129. }
  2130. #u95923 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:2px 2px 2px 2px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u95923_text {
  2138. border-width:0px;
  2139. word-wrap:break-word;
  2140. text-transform:none;
  2141. visibility:hidden;
  2142. }
  2143. #u95924_img {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:114px;
  2149. height:35px;
  2150. }
  2151. #u95924 {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:284px;
  2155. top:31px;
  2156. width:114px;
  2157. height:35px;
  2158. display:flex;
  2159. font-size:14px;
  2160. }
  2161. #u95924 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:2px 2px 2px 2px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u95924_text {
  2169. border-width:0px;
  2170. word-wrap:break-word;
  2171. text-transform:none;
  2172. }
  2173. #u95925_img {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:114px;
  2179. height:35px;
  2180. }
  2181. #u95925 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:398px;
  2185. top:31px;
  2186. width:114px;
  2187. height:35px;
  2188. display:flex;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:14px;
  2193. }
  2194. #u95925 .text {
  2195. position:absolute;
  2196. align-self:center;
  2197. padding:2px 2px 2px 2px;
  2198. box-sizing:border-box;
  2199. width:100%;
  2200. }
  2201. #u95925_text {
  2202. border-width:0px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. visibility:hidden;
  2206. }
  2207. #u95926_img {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:102px;
  2213. height:35px;
  2214. }
  2215. #u95926 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:512px;
  2219. top:31px;
  2220. width:102px;
  2221. height:35px;
  2222. display:flex;
  2223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:14px;
  2227. }
  2228. #u95926 .text {
  2229. position:absolute;
  2230. align-self:center;
  2231. padding:2px 2px 2px 2px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u95926_text {
  2236. border-width:0px;
  2237. word-wrap:break-word;
  2238. text-transform:none;
  2239. visibility:hidden;
  2240. }
  2241. #u95927_img {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:101px;
  2247. height:35px;
  2248. }
  2249. #u95927 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:614px;
  2253. top:31px;
  2254. width:101px;
  2255. height:35px;
  2256. display:flex;
  2257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:14px;
  2261. }
  2262. #u95927 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:2px 2px 2px 2px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u95927_text {
  2270. border-width:0px;
  2271. word-wrap:break-word;
  2272. text-transform:none;
  2273. visibility:hidden;
  2274. }
  2275. #u95928_img {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:101px;
  2281. height:35px;
  2282. }
  2283. #u95928 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:715px;
  2287. top:31px;
  2288. width:101px;
  2289. height:35px;
  2290. display:flex;
  2291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:14px;
  2295. }
  2296. #u95928 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:2px 2px 2px 2px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u95928_text {
  2304. border-width:0px;
  2305. word-wrap:break-word;
  2306. text-transform:none;
  2307. visibility:hidden;
  2308. }
  2309. #u95929_img {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:95px;
  2315. height:35px;
  2316. }
  2317. #u95929 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:816px;
  2321. top:31px;
  2322. width:95px;
  2323. height:35px;
  2324. display:flex;
  2325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2326. font-weight:400;
  2327. font-style:normal;
  2328. font-size:14px;
  2329. }
  2330. #u95929 .text {
  2331. position:absolute;
  2332. align-self:center;
  2333. padding:2px 2px 2px 2px;
  2334. box-sizing:border-box;
  2335. width:100%;
  2336. }
  2337. #u95929_text {
  2338. border-width:0px;
  2339. word-wrap:break-word;
  2340. text-transform:none;
  2341. }
  2342. #u95930_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:102px;
  2348. height:35px;
  2349. }
  2350. #u95930 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:911px;
  2354. top:31px;
  2355. width:102px;
  2356. height:35px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:14px;
  2362. }
  2363. #u95930 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 2px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u95930_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u95931_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:101px;
  2382. height:35px;
  2383. }
  2384. #u95931 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:1013px;
  2388. top:31px;
  2389. width:101px;
  2390. height:35px;
  2391. display:flex;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:14px;
  2396. }
  2397. #u95931 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u95931_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. }
  2409. #u95932_img {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:104px;
  2415. height:35px;
  2416. }
  2417. #u95932 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:1114px;
  2421. top:31px;
  2422. width:104px;
  2423. height:35px;
  2424. display:flex;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:14px;
  2429. color:#1890FF;
  2430. }
  2431. #u95932 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 2px 2px 2px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u95932_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. }
  2443. #u95933_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:94px;
  2449. height:35px;
  2450. }
  2451. #u95933 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:66px;
  2456. width:94px;
  2457. height:35px;
  2458. display:flex;
  2459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2460. font-weight:400;
  2461. font-style:normal;
  2462. font-size:14px;
  2463. }
  2464. #u95933 .text {
  2465. position:absolute;
  2466. align-self:center;
  2467. padding:2px 2px 2px 2px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u95933_text {
  2472. border-width:0px;
  2473. word-wrap:break-word;
  2474. text-transform:none;
  2475. visibility:hidden;
  2476. }
  2477. #u95934_img {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:96px;
  2483. height:35px;
  2484. }
  2485. #u95934 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:94px;
  2489. top:66px;
  2490. width:96px;
  2491. height:35px;
  2492. display:flex;
  2493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. font-size:14px;
  2497. }
  2498. #u95934 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 2px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u95934_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. visibility:hidden;
  2510. }
  2511. #u95935_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:94px;
  2517. height:35px;
  2518. }
  2519. #u95935 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:190px;
  2523. top:66px;
  2524. width:94px;
  2525. height:35px;
  2526. display:flex;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:14px;
  2531. }
  2532. #u95935 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 2px 2px 2px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u95935_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. visibility:hidden;
  2544. }
  2545. #u95936_img {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:114px;
  2551. height:35px;
  2552. }
  2553. #u95936 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:284px;
  2557. top:66px;
  2558. width:114px;
  2559. height:35px;
  2560. display:flex;
  2561. font-size:14px;
  2562. }
  2563. #u95936 .text {
  2564. position:absolute;
  2565. align-self:center;
  2566. padding:2px 2px 2px 2px;
  2567. box-sizing:border-box;
  2568. width:100%;
  2569. }
  2570. #u95936_text {
  2571. border-width:0px;
  2572. word-wrap:break-word;
  2573. text-transform:none;
  2574. visibility:hidden;
  2575. }
  2576. #u95937_img {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:114px;
  2582. height:35px;
  2583. }
  2584. #u95937 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:398px;
  2588. top:66px;
  2589. width:114px;
  2590. height:35px;
  2591. display:flex;
  2592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2593. font-weight:400;
  2594. font-style:normal;
  2595. font-size:14px;
  2596. }
  2597. #u95937 .text {
  2598. position:absolute;
  2599. align-self:center;
  2600. padding:2px 2px 2px 2px;
  2601. box-sizing:border-box;
  2602. width:100%;
  2603. }
  2604. #u95937_text {
  2605. border-width:0px;
  2606. word-wrap:break-word;
  2607. text-transform:none;
  2608. visibility:hidden;
  2609. }
  2610. #u95938_img {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:102px;
  2616. height:35px;
  2617. }
  2618. #u95938 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:512px;
  2622. top:66px;
  2623. width:102px;
  2624. height:35px;
  2625. display:flex;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:14px;
  2630. }
  2631. #u95938 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:2px 2px 2px 2px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u95938_text {
  2639. border-width:0px;
  2640. word-wrap:break-word;
  2641. text-transform:none;
  2642. visibility:hidden;
  2643. }
  2644. #u95939_img {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:0px;
  2648. top:0px;
  2649. width:101px;
  2650. height:35px;
  2651. }
  2652. #u95939 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:614px;
  2656. top:66px;
  2657. width:101px;
  2658. height:35px;
  2659. display:flex;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:14px;
  2664. }
  2665. #u95939 .text {
  2666. position:absolute;
  2667. align-self:center;
  2668. padding:2px 2px 2px 2px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u95939_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. visibility:hidden;
  2677. }
  2678. #u95940_img {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:101px;
  2684. height:35px;
  2685. }
  2686. #u95940 {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:715px;
  2690. top:66px;
  2691. width:101px;
  2692. height:35px;
  2693. display:flex;
  2694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2695. font-weight:400;
  2696. font-style:normal;
  2697. font-size:14px;
  2698. }
  2699. #u95940 .text {
  2700. position:absolute;
  2701. align-self:center;
  2702. padding:2px 2px 2px 2px;
  2703. box-sizing:border-box;
  2704. width:100%;
  2705. }
  2706. #u95940_text {
  2707. border-width:0px;
  2708. word-wrap:break-word;
  2709. text-transform:none;
  2710. visibility:hidden;
  2711. }
  2712. #u95941_img {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:95px;
  2718. height:35px;
  2719. }
  2720. #u95941 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:816px;
  2724. top:66px;
  2725. width:95px;
  2726. height:35px;
  2727. display:flex;
  2728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2729. font-weight:400;
  2730. font-style:normal;
  2731. font-size:14px;
  2732. }
  2733. #u95941 .text {
  2734. position:absolute;
  2735. align-self:center;
  2736. padding:2px 2px 2px 2px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u95941_text {
  2741. border-width:0px;
  2742. word-wrap:break-word;
  2743. text-transform:none;
  2744. }
  2745. #u95942_img {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:102px;
  2751. height:35px;
  2752. }
  2753. #u95942 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:911px;
  2757. top:66px;
  2758. width:102px;
  2759. height:35px;
  2760. display:flex;
  2761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2762. font-weight:400;
  2763. font-style:normal;
  2764. font-size:14px;
  2765. }
  2766. #u95942 .text {
  2767. position:absolute;
  2768. align-self:center;
  2769. padding:2px 2px 2px 2px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u95942_text {
  2774. border-width:0px;
  2775. word-wrap:break-word;
  2776. text-transform:none;
  2777. visibility:hidden;
  2778. }
  2779. #u95943_img {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:101px;
  2785. height:35px;
  2786. }
  2787. #u95943 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:1013px;
  2791. top:66px;
  2792. width:101px;
  2793. height:35px;
  2794. display:flex;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:14px;
  2799. }
  2800. #u95943 .text {
  2801. position:absolute;
  2802. align-self:center;
  2803. padding:2px 2px 2px 2px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u95943_text {
  2808. border-width:0px;
  2809. word-wrap:break-word;
  2810. text-transform:none;
  2811. }
  2812. #u95944_img {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:104px;
  2818. height:35px;
  2819. }
  2820. #u95944 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:1114px;
  2824. top:66px;
  2825. width:104px;
  2826. height:35px;
  2827. display:flex;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:14px;
  2832. color:#1890FF;
  2833. }
  2834. #u95944 .text {
  2835. position:absolute;
  2836. align-self:center;
  2837. padding:2px 2px 2px 2px;
  2838. box-sizing:border-box;
  2839. width:100%;
  2840. }
  2841. #u95944_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. }
  2846. #u95945_img {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:0px;
  2850. top:0px;
  2851. width:94px;
  2852. height:30px;
  2853. }
  2854. #u95945 {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:101px;
  2859. width:94px;
  2860. height:30px;
  2861. display:flex;
  2862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2863. font-weight:400;
  2864. font-style:normal;
  2865. font-size:14px;
  2866. }
  2867. #u95945 .text {
  2868. position:absolute;
  2869. align-self:center;
  2870. padding:2px 2px 2px 2px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u95945_text {
  2875. border-width:0px;
  2876. word-wrap:break-word;
  2877. text-transform:none;
  2878. visibility:hidden;
  2879. }
  2880. #u95946_img {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:96px;
  2886. height:30px;
  2887. }
  2888. #u95946 {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:94px;
  2892. top:101px;
  2893. width:96px;
  2894. height:30px;
  2895. display:flex;
  2896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2897. font-weight:400;
  2898. font-style:normal;
  2899. font-size:14px;
  2900. }
  2901. #u95946 .text {
  2902. position:absolute;
  2903. align-self:center;
  2904. padding:2px 2px 2px 2px;
  2905. box-sizing:border-box;
  2906. width:100%;
  2907. }
  2908. #u95946_text {
  2909. border-width:0px;
  2910. word-wrap:break-word;
  2911. text-transform:none;
  2912. visibility:hidden;
  2913. }
  2914. #u95947_img {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:94px;
  2920. height:30px;
  2921. }
  2922. #u95947 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:190px;
  2926. top:101px;
  2927. width:94px;
  2928. height:30px;
  2929. display:flex;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:14px;
  2934. }
  2935. #u95947 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 2px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u95947_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. visibility:hidden;
  2947. }
  2948. #u95948_img {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:114px;
  2954. height:30px;
  2955. }
  2956. #u95948 {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:284px;
  2960. top:101px;
  2961. width:114px;
  2962. height:30px;
  2963. display:flex;
  2964. font-size:14px;
  2965. }
  2966. #u95948 .text {
  2967. position:absolute;
  2968. align-self:center;
  2969. padding:2px 2px 2px 2px;
  2970. box-sizing:border-box;
  2971. width:100%;
  2972. }
  2973. #u95948_text {
  2974. border-width:0px;
  2975. word-wrap:break-word;
  2976. text-transform:none;
  2977. visibility:hidden;
  2978. }
  2979. #u95949_img {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:0px;
  2983. top:0px;
  2984. width:114px;
  2985. height:30px;
  2986. }
  2987. #u95949 {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:398px;
  2991. top:101px;
  2992. width:114px;
  2993. height:30px;
  2994. display:flex;
  2995. font-size:14px;
  2996. }
  2997. #u95949 .text {
  2998. position:absolute;
  2999. align-self:center;
  3000. padding:2px 2px 2px 2px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u95949_text {
  3005. border-width:0px;
  3006. word-wrap:break-word;
  3007. text-transform:none;
  3008. visibility:hidden;
  3009. }
  3010. #u95950_img {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:102px;
  3016. height:30px;
  3017. }
  3018. #u95950 {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:512px;
  3022. top:101px;
  3023. width:102px;
  3024. height:30px;
  3025. display:flex;
  3026. font-size:14px;
  3027. }
  3028. #u95950 .text {
  3029. position:absolute;
  3030. align-self:center;
  3031. padding:2px 2px 2px 2px;
  3032. box-sizing:border-box;
  3033. width:100%;
  3034. }
  3035. #u95950_text {
  3036. border-width:0px;
  3037. word-wrap:break-word;
  3038. text-transform:none;
  3039. visibility:hidden;
  3040. }
  3041. #u95951_img {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:0px;
  3045. top:0px;
  3046. width:101px;
  3047. height:30px;
  3048. }
  3049. #u95951 {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:614px;
  3053. top:101px;
  3054. width:101px;
  3055. height:30px;
  3056. display:flex;
  3057. font-size:14px;
  3058. }
  3059. #u95951 .text {
  3060. position:absolute;
  3061. align-self:center;
  3062. padding:2px 2px 2px 2px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u95951_text {
  3067. border-width:0px;
  3068. word-wrap:break-word;
  3069. text-transform:none;
  3070. visibility:hidden;
  3071. }
  3072. #u95952_img {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:101px;
  3078. height:30px;
  3079. }
  3080. #u95952 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:715px;
  3084. top:101px;
  3085. width:101px;
  3086. height:30px;
  3087. display:flex;
  3088. font-size:14px;
  3089. }
  3090. #u95952 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 2px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u95952_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u95953_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:95px;
  3109. height:30px;
  3110. }
  3111. #u95953 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:816px;
  3115. top:101px;
  3116. width:95px;
  3117. height:30px;
  3118. display:flex;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:14px;
  3123. }
  3124. #u95953 .text {
  3125. position:absolute;
  3126. align-self:center;
  3127. padding:2px 2px 2px 2px;
  3128. box-sizing:border-box;
  3129. width:100%;
  3130. }
  3131. #u95953_text {
  3132. border-width:0px;
  3133. word-wrap:break-word;
  3134. text-transform:none;
  3135. }
  3136. #u95954_img {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:102px;
  3142. height:30px;
  3143. }
  3144. #u95954 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:911px;
  3148. top:101px;
  3149. width:102px;
  3150. height:30px;
  3151. display:flex;
  3152. font-size:14px;
  3153. }
  3154. #u95954 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 2px 2px 2px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u95954_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. visibility:hidden;
  3166. }
  3167. #u95955_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:101px;
  3173. height:30px;
  3174. }
  3175. #u95955 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:1013px;
  3179. top:101px;
  3180. width:101px;
  3181. height:30px;
  3182. display:flex;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:14px;
  3187. }
  3188. #u95955 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 2px 2px 2px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u95955_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. }
  3200. #u95956_img {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:104px;
  3206. height:30px;
  3207. }
  3208. #u95956 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:1114px;
  3212. top:101px;
  3213. width:104px;
  3214. height:30px;
  3215. display:flex;
  3216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. font-size:14px;
  3220. color:#1890FF;
  3221. }
  3222. #u95956 .text {
  3223. position:absolute;
  3224. align-self:center;
  3225. padding:2px 2px 2px 2px;
  3226. box-sizing:border-box;
  3227. width:100%;
  3228. }
  3229. #u95956_text {
  3230. border-width:0px;
  3231. word-wrap:break-word;
  3232. text-transform:none;
  3233. }
  3234. #u95957_img {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:94px;
  3240. height:30px;
  3241. }
  3242. #u95957 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:131px;
  3247. width:94px;
  3248. height:30px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:14px;
  3254. }
  3255. #u95957 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 2px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u95957_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. visibility:hidden;
  3267. }
  3268. #u95958_img {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:96px;
  3274. height:30px;
  3275. }
  3276. #u95958 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:94px;
  3280. top:131px;
  3281. width:96px;
  3282. height:30px;
  3283. display:flex;
  3284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:14px;
  3288. }
  3289. #u95958 .text {
  3290. position:absolute;
  3291. align-self:center;
  3292. padding:2px 2px 2px 2px;
  3293. box-sizing:border-box;
  3294. width:100%;
  3295. }
  3296. #u95958_text {
  3297. border-width:0px;
  3298. word-wrap:break-word;
  3299. text-transform:none;
  3300. visibility:hidden;
  3301. }
  3302. #u95959_img {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:0px;
  3306. top:0px;
  3307. width:94px;
  3308. height:30px;
  3309. }
  3310. #u95959 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:190px;
  3314. top:131px;
  3315. width:94px;
  3316. height:30px;
  3317. display:flex;
  3318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:14px;
  3322. }
  3323. #u95959 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 2px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u95959_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. visibility:hidden;
  3335. }
  3336. #u95960_img {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:114px;
  3342. height:30px;
  3343. }
  3344. #u95960 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:284px;
  3348. top:131px;
  3349. width:114px;
  3350. height:30px;
  3351. display:flex;
  3352. font-size:14px;
  3353. }
  3354. #u95960 .text {
  3355. position:absolute;
  3356. align-self:center;
  3357. padding:2px 2px 2px 2px;
  3358. box-sizing:border-box;
  3359. width:100%;
  3360. }
  3361. #u95960_text {
  3362. border-width:0px;
  3363. word-wrap:break-word;
  3364. text-transform:none;
  3365. visibility:hidden;
  3366. }
  3367. #u95961_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:114px;
  3373. height:30px;
  3374. }
  3375. #u95961 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:398px;
  3379. top:131px;
  3380. width:114px;
  3381. height:30px;
  3382. display:flex;
  3383. font-size:14px;
  3384. }
  3385. #u95961 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 2px 2px 2px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u95961_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. visibility:hidden;
  3397. }
  3398. #u95962_img {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:102px;
  3404. height:30px;
  3405. }
  3406. #u95962 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:512px;
  3410. top:131px;
  3411. width:102px;
  3412. height:30px;
  3413. display:flex;
  3414. font-size:14px;
  3415. }
  3416. #u95962 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 2px 2px 2px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u95962_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. visibility:hidden;
  3428. }
  3429. #u95963_img {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:0px;
  3434. width:101px;
  3435. height:30px;
  3436. }
  3437. #u95963 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:614px;
  3441. top:131px;
  3442. width:101px;
  3443. height:30px;
  3444. display:flex;
  3445. font-size:14px;
  3446. }
  3447. #u95963 .text {
  3448. position:absolute;
  3449. align-self:center;
  3450. padding:2px 2px 2px 2px;
  3451. box-sizing:border-box;
  3452. width:100%;
  3453. }
  3454. #u95963_text {
  3455. border-width:0px;
  3456. word-wrap:break-word;
  3457. text-transform:none;
  3458. visibility:hidden;
  3459. }
  3460. #u95964_img {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:0px;
  3464. top:0px;
  3465. width:101px;
  3466. height:30px;
  3467. }
  3468. #u95964 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:715px;
  3472. top:131px;
  3473. width:101px;
  3474. height:30px;
  3475. display:flex;
  3476. font-size:14px;
  3477. }
  3478. #u95964 .text {
  3479. position:absolute;
  3480. align-self:center;
  3481. padding:2px 2px 2px 2px;
  3482. box-sizing:border-box;
  3483. width:100%;
  3484. }
  3485. #u95964_text {
  3486. border-width:0px;
  3487. word-wrap:break-word;
  3488. text-transform:none;
  3489. visibility:hidden;
  3490. }
  3491. #u95965_img {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:95px;
  3497. height:30px;
  3498. }
  3499. #u95965 {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:816px;
  3503. top:131px;
  3504. width:95px;
  3505. height:30px;
  3506. display:flex;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:14px;
  3511. }
  3512. #u95965 .text {
  3513. position:absolute;
  3514. align-self:center;
  3515. padding:2px 2px 2px 2px;
  3516. box-sizing:border-box;
  3517. width:100%;
  3518. }
  3519. #u95965_text {
  3520. border-width:0px;
  3521. word-wrap:break-word;
  3522. text-transform:none;
  3523. }
  3524. #u95966_img {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:102px;
  3530. height:30px;
  3531. }
  3532. #u95966 {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:911px;
  3536. top:131px;
  3537. width:102px;
  3538. height:30px;
  3539. display:flex;
  3540. font-size:14px;
  3541. }
  3542. #u95966 .text {
  3543. position:absolute;
  3544. align-self:center;
  3545. padding:2px 2px 2px 2px;
  3546. box-sizing:border-box;
  3547. width:100%;
  3548. }
  3549. #u95966_text {
  3550. border-width:0px;
  3551. word-wrap:break-word;
  3552. text-transform:none;
  3553. visibility:hidden;
  3554. }
  3555. #u95967_img {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:101px;
  3561. height:30px;
  3562. }
  3563. #u95967 {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:1013px;
  3567. top:131px;
  3568. width:101px;
  3569. height:30px;
  3570. display:flex;
  3571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3572. font-weight:400;
  3573. font-style:normal;
  3574. font-size:14px;
  3575. }
  3576. #u95967 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 2px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u95967_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. }
  3588. #u95968_img {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:104px;
  3594. height:30px;
  3595. }
  3596. #u95968 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:1114px;
  3600. top:131px;
  3601. width:104px;
  3602. height:30px;
  3603. display:flex;
  3604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:14px;
  3608. color:#1890FF;
  3609. }
  3610. #u95968 .text {
  3611. position:absolute;
  3612. align-self:center;
  3613. padding:2px 2px 2px 2px;
  3614. box-sizing:border-box;
  3615. width:100%;
  3616. }
  3617. #u95968_text {
  3618. border-width:0px;
  3619. word-wrap:break-word;
  3620. text-transform:none;
  3621. }
  3622. #u95969_img {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:94px;
  3628. height:30px;
  3629. }
  3630. #u95969 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:0px;
  3634. top:161px;
  3635. width:94px;
  3636. height:30px;
  3637. display:flex;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:14px;
  3642. }
  3643. #u95969 .text {
  3644. position:absolute;
  3645. align-self:center;
  3646. padding:2px 2px 2px 2px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u95969_text {
  3651. border-width:0px;
  3652. word-wrap:break-word;
  3653. text-transform:none;
  3654. visibility:hidden;
  3655. }
  3656. #u95970_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:96px;
  3662. height:30px;
  3663. }
  3664. #u95970 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:94px;
  3668. top:161px;
  3669. width:96px;
  3670. height:30px;
  3671. display:flex;
  3672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. font-size:14px;
  3676. }
  3677. #u95970 .text {
  3678. position:absolute;
  3679. align-self:center;
  3680. padding:2px 2px 2px 2px;
  3681. box-sizing:border-box;
  3682. width:100%;
  3683. }
  3684. #u95970_text {
  3685. border-width:0px;
  3686. word-wrap:break-word;
  3687. text-transform:none;
  3688. visibility:hidden;
  3689. }
  3690. #u95971_img {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:94px;
  3696. height:30px;
  3697. }
  3698. #u95971 {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:190px;
  3702. top:161px;
  3703. width:94px;
  3704. height:30px;
  3705. display:flex;
  3706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3707. font-weight:400;
  3708. font-style:normal;
  3709. font-size:14px;
  3710. }
  3711. #u95971 .text {
  3712. position:absolute;
  3713. align-self:center;
  3714. padding:2px 2px 2px 2px;
  3715. box-sizing:border-box;
  3716. width:100%;
  3717. }
  3718. #u95971_text {
  3719. border-width:0px;
  3720. word-wrap:break-word;
  3721. text-transform:none;
  3722. visibility:hidden;
  3723. }
  3724. #u95972_img {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:114px;
  3730. height:30px;
  3731. }
  3732. #u95972 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:284px;
  3736. top:161px;
  3737. width:114px;
  3738. height:30px;
  3739. display:flex;
  3740. font-size:14px;
  3741. }
  3742. #u95972 .text {
  3743. position:absolute;
  3744. align-self:center;
  3745. padding:2px 2px 2px 2px;
  3746. box-sizing:border-box;
  3747. width:100%;
  3748. }
  3749. #u95972_text {
  3750. border-width:0px;
  3751. word-wrap:break-word;
  3752. text-transform:none;
  3753. visibility:hidden;
  3754. }
  3755. #u95973_img {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:114px;
  3761. height:30px;
  3762. }
  3763. #u95973 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:398px;
  3767. top:161px;
  3768. width:114px;
  3769. height:30px;
  3770. display:flex;
  3771. font-size:14px;
  3772. }
  3773. #u95973 .text {
  3774. position:absolute;
  3775. align-self:center;
  3776. padding:2px 2px 2px 2px;
  3777. box-sizing:border-box;
  3778. width:100%;
  3779. }
  3780. #u95973_text {
  3781. border-width:0px;
  3782. word-wrap:break-word;
  3783. text-transform:none;
  3784. visibility:hidden;
  3785. }
  3786. #u95974_img {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:102px;
  3792. height:30px;
  3793. }
  3794. #u95974 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:512px;
  3798. top:161px;
  3799. width:102px;
  3800. height:30px;
  3801. display:flex;
  3802. font-size:14px;
  3803. }
  3804. #u95974 .text {
  3805. position:absolute;
  3806. align-self:center;
  3807. padding:2px 2px 2px 2px;
  3808. box-sizing:border-box;
  3809. width:100%;
  3810. }
  3811. #u95974_text {
  3812. border-width:0px;
  3813. word-wrap:break-word;
  3814. text-transform:none;
  3815. visibility:hidden;
  3816. }
  3817. #u95975_img {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:101px;
  3823. height:30px;
  3824. }
  3825. #u95975 {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:614px;
  3829. top:161px;
  3830. width:101px;
  3831. height:30px;
  3832. display:flex;
  3833. font-size:14px;
  3834. }
  3835. #u95975 .text {
  3836. position:absolute;
  3837. align-self:center;
  3838. padding:2px 2px 2px 2px;
  3839. box-sizing:border-box;
  3840. width:100%;
  3841. }
  3842. #u95975_text {
  3843. border-width:0px;
  3844. word-wrap:break-word;
  3845. text-transform:none;
  3846. visibility:hidden;
  3847. }
  3848. #u95976_img {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:101px;
  3854. height:30px;
  3855. }
  3856. #u95976 {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:715px;
  3860. top:161px;
  3861. width:101px;
  3862. height:30px;
  3863. display:flex;
  3864. font-size:14px;
  3865. }
  3866. #u95976 .text {
  3867. position:absolute;
  3868. align-self:center;
  3869. padding:2px 2px 2px 2px;
  3870. box-sizing:border-box;
  3871. width:100%;
  3872. }
  3873. #u95976_text {
  3874. border-width:0px;
  3875. word-wrap:break-word;
  3876. text-transform:none;
  3877. visibility:hidden;
  3878. }
  3879. #u95977_img {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:95px;
  3885. height:30px;
  3886. }
  3887. #u95977 {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:816px;
  3891. top:161px;
  3892. width:95px;
  3893. height:30px;
  3894. display:flex;
  3895. font-size:14px;
  3896. }
  3897. #u95977 .text {
  3898. position:absolute;
  3899. align-self:center;
  3900. padding:2px 2px 2px 2px;
  3901. box-sizing:border-box;
  3902. width:100%;
  3903. }
  3904. #u95977_text {
  3905. border-width:0px;
  3906. word-wrap:break-word;
  3907. text-transform:none;
  3908. visibility:hidden;
  3909. }
  3910. #u95978_img {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:102px;
  3916. height:30px;
  3917. }
  3918. #u95978 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:911px;
  3922. top:161px;
  3923. width:102px;
  3924. height:30px;
  3925. display:flex;
  3926. font-size:14px;
  3927. }
  3928. #u95978 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:2px 2px 2px 2px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u95978_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. visibility:hidden;
  3940. }
  3941. #u95979_img {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:101px;
  3947. height:30px;
  3948. }
  3949. #u95979 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:1013px;
  3953. top:161px;
  3954. width:101px;
  3955. height:30px;
  3956. display:flex;
  3957. font-size:14px;
  3958. }
  3959. #u95979 .text {
  3960. position:absolute;
  3961. align-self:center;
  3962. padding:2px 2px 2px 2px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u95979_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. visibility:hidden;
  3971. }
  3972. #u95980_img {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:104px;
  3978. height:30px;
  3979. }
  3980. #u95980 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:1114px;
  3984. top:161px;
  3985. width:104px;
  3986. height:30px;
  3987. display:flex;
  3988. font-size:14px;
  3989. }
  3990. #u95980 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:2px 2px 2px 2px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u95980_text {
  3998. border-width:0px;
  3999. word-wrap:break-word;
  4000. text-transform:none;
  4001. visibility:hidden;
  4002. }
  4003. #u95981_img {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:94px;
  4009. height:30px;
  4010. }
  4011. #u95981 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:191px;
  4016. width:94px;
  4017. height:30px;
  4018. display:flex;
  4019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4020. font-weight:400;
  4021. font-style:normal;
  4022. font-size:14px;
  4023. }
  4024. #u95981 .text {
  4025. position:absolute;
  4026. align-self:center;
  4027. padding:2px 2px 2px 2px;
  4028. box-sizing:border-box;
  4029. width:100%;
  4030. }
  4031. #u95981_text {
  4032. border-width:0px;
  4033. word-wrap:break-word;
  4034. text-transform:none;
  4035. visibility:hidden;
  4036. }
  4037. #u95982_img {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:0px;
  4041. top:0px;
  4042. width:96px;
  4043. height:30px;
  4044. }
  4045. #u95982 {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:94px;
  4049. top:191px;
  4050. width:96px;
  4051. height:30px;
  4052. display:flex;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:14px;
  4057. }
  4058. #u95982 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 2px 2px 2px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u95982_text {
  4066. border-width:0px;
  4067. word-wrap:break-word;
  4068. text-transform:none;
  4069. visibility:hidden;
  4070. }
  4071. #u95983_img {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:94px;
  4077. height:30px;
  4078. }
  4079. #u95983 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:190px;
  4083. top:191px;
  4084. width:94px;
  4085. height:30px;
  4086. display:flex;
  4087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4088. font-weight:400;
  4089. font-style:normal;
  4090. font-size:14px;
  4091. }
  4092. #u95983 .text {
  4093. position:absolute;
  4094. align-self:center;
  4095. padding:2px 2px 2px 2px;
  4096. box-sizing:border-box;
  4097. width:100%;
  4098. }
  4099. #u95983_text {
  4100. border-width:0px;
  4101. word-wrap:break-word;
  4102. text-transform:none;
  4103. visibility:hidden;
  4104. }
  4105. #u95984_img {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:0px;
  4109. top:0px;
  4110. width:114px;
  4111. height:30px;
  4112. }
  4113. #u95984 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:284px;
  4117. top:191px;
  4118. width:114px;
  4119. height:30px;
  4120. display:flex;
  4121. font-size:14px;
  4122. }
  4123. #u95984 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:2px 2px 2px 2px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u95984_text {
  4131. border-width:0px;
  4132. word-wrap:break-word;
  4133. text-transform:none;
  4134. visibility:hidden;
  4135. }
  4136. #u95985_img {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:114px;
  4142. height:30px;
  4143. }
  4144. #u95985 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:398px;
  4148. top:191px;
  4149. width:114px;
  4150. height:30px;
  4151. display:flex;
  4152. font-size:14px;
  4153. }
  4154. #u95985 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:2px 2px 2px 2px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u95985_text {
  4162. border-width:0px;
  4163. word-wrap:break-word;
  4164. text-transform:none;
  4165. visibility:hidden;
  4166. }
  4167. #u95986_img {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:102px;
  4173. height:30px;
  4174. }
  4175. #u95986 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:512px;
  4179. top:191px;
  4180. width:102px;
  4181. height:30px;
  4182. display:flex;
  4183. font-size:14px;
  4184. }
  4185. #u95986 .text {
  4186. position:absolute;
  4187. align-self:center;
  4188. padding:2px 2px 2px 2px;
  4189. box-sizing:border-box;
  4190. width:100%;
  4191. }
  4192. #u95986_text {
  4193. border-width:0px;
  4194. word-wrap:break-word;
  4195. text-transform:none;
  4196. visibility:hidden;
  4197. }
  4198. #u95987_img {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:101px;
  4204. height:30px;
  4205. }
  4206. #u95987 {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:614px;
  4210. top:191px;
  4211. width:101px;
  4212. height:30px;
  4213. display:flex;
  4214. font-size:14px;
  4215. }
  4216. #u95987 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:2px 2px 2px 2px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u95987_text {
  4224. border-width:0px;
  4225. word-wrap:break-word;
  4226. text-transform:none;
  4227. visibility:hidden;
  4228. }
  4229. #u95988_img {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:101px;
  4235. height:30px;
  4236. }
  4237. #u95988 {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:715px;
  4241. top:191px;
  4242. width:101px;
  4243. height:30px;
  4244. display:flex;
  4245. font-size:14px;
  4246. }
  4247. #u95988 .text {
  4248. position:absolute;
  4249. align-self:center;
  4250. padding:2px 2px 2px 2px;
  4251. box-sizing:border-box;
  4252. width:100%;
  4253. }
  4254. #u95988_text {
  4255. border-width:0px;
  4256. word-wrap:break-word;
  4257. text-transform:none;
  4258. visibility:hidden;
  4259. }
  4260. #u95989_img {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:95px;
  4266. height:30px;
  4267. }
  4268. #u95989 {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:816px;
  4272. top:191px;
  4273. width:95px;
  4274. height:30px;
  4275. display:flex;
  4276. font-size:14px;
  4277. }
  4278. #u95989 .text {
  4279. position:absolute;
  4280. align-self:center;
  4281. padding:2px 2px 2px 2px;
  4282. box-sizing:border-box;
  4283. width:100%;
  4284. }
  4285. #u95989_text {
  4286. border-width:0px;
  4287. word-wrap:break-word;
  4288. text-transform:none;
  4289. visibility:hidden;
  4290. }
  4291. #u95990_img {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:102px;
  4297. height:30px;
  4298. }
  4299. #u95990 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:911px;
  4303. top:191px;
  4304. width:102px;
  4305. height:30px;
  4306. display:flex;
  4307. font-size:14px;
  4308. }
  4309. #u95990 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 2px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u95990_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. visibility:hidden;
  4321. }
  4322. #u95991_img {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:101px;
  4328. height:30px;
  4329. }
  4330. #u95991 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:1013px;
  4334. top:191px;
  4335. width:101px;
  4336. height:30px;
  4337. display:flex;
  4338. font-size:14px;
  4339. }
  4340. #u95991 .text {
  4341. position:absolute;
  4342. align-self:center;
  4343. padding:2px 2px 2px 2px;
  4344. box-sizing:border-box;
  4345. width:100%;
  4346. }
  4347. #u95991_text {
  4348. border-width:0px;
  4349. word-wrap:break-word;
  4350. text-transform:none;
  4351. visibility:hidden;
  4352. }
  4353. #u95992_img {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:104px;
  4359. height:30px;
  4360. }
  4361. #u95992 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:1114px;
  4365. top:191px;
  4366. width:104px;
  4367. height:30px;
  4368. display:flex;
  4369. font-size:14px;
  4370. }
  4371. #u95992 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 2px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u95992_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. visibility:hidden;
  4383. }
  4384. #u95993_img {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:94px;
  4390. height:30px;
  4391. }
  4392. #u95993 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:0px;
  4396. top:221px;
  4397. width:94px;
  4398. height:30px;
  4399. display:flex;
  4400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:14px;
  4404. }
  4405. #u95993 .text {
  4406. position:absolute;
  4407. align-self:center;
  4408. padding:2px 2px 2px 2px;
  4409. box-sizing:border-box;
  4410. width:100%;
  4411. }
  4412. #u95993_text {
  4413. border-width:0px;
  4414. word-wrap:break-word;
  4415. text-transform:none;
  4416. visibility:hidden;
  4417. }
  4418. #u95994_img {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:96px;
  4424. height:30px;
  4425. }
  4426. #u95994 {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:94px;
  4430. top:221px;
  4431. width:96px;
  4432. height:30px;
  4433. display:flex;
  4434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:14px;
  4438. }
  4439. #u95994 .text {
  4440. position:absolute;
  4441. align-self:center;
  4442. padding:2px 2px 2px 2px;
  4443. box-sizing:border-box;
  4444. width:100%;
  4445. }
  4446. #u95994_text {
  4447. border-width:0px;
  4448. word-wrap:break-word;
  4449. text-transform:none;
  4450. visibility:hidden;
  4451. }
  4452. #u95995_img {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:94px;
  4458. height:30px;
  4459. }
  4460. #u95995 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:190px;
  4464. top:221px;
  4465. width:94px;
  4466. height:30px;
  4467. display:flex;
  4468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4469. font-weight:400;
  4470. font-style:normal;
  4471. font-size:14px;
  4472. }
  4473. #u95995 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 2px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u95995_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. visibility:hidden;
  4485. }
  4486. #u95996_img {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:114px;
  4492. height:30px;
  4493. }
  4494. #u95996 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:284px;
  4498. top:221px;
  4499. width:114px;
  4500. height:30px;
  4501. display:flex;
  4502. font-size:14px;
  4503. }
  4504. #u95996 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 2px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u95996_text {
  4512. border-width:0px;
  4513. word-wrap:break-word;
  4514. text-transform:none;
  4515. visibility:hidden;
  4516. }
  4517. #u95997_img {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:114px;
  4523. height:30px;
  4524. }
  4525. #u95997 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:398px;
  4529. top:221px;
  4530. width:114px;
  4531. height:30px;
  4532. display:flex;
  4533. font-size:14px;
  4534. }
  4535. #u95997 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:2px 2px 2px 2px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u95997_text {
  4543. border-width:0px;
  4544. word-wrap:break-word;
  4545. text-transform:none;
  4546. visibility:hidden;
  4547. }
  4548. #u95998_img {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:102px;
  4554. height:30px;
  4555. }
  4556. #u95998 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:512px;
  4560. top:221px;
  4561. width:102px;
  4562. height:30px;
  4563. display:flex;
  4564. font-size:14px;
  4565. }
  4566. #u95998 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 2px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u95998_text {
  4574. border-width:0px;
  4575. word-wrap:break-word;
  4576. text-transform:none;
  4577. visibility:hidden;
  4578. }
  4579. #u95999_img {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:101px;
  4585. height:30px;
  4586. }
  4587. #u95999 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:614px;
  4591. top:221px;
  4592. width:101px;
  4593. height:30px;
  4594. display:flex;
  4595. font-size:14px;
  4596. }
  4597. #u95999 .text {
  4598. position:absolute;
  4599. align-self:center;
  4600. padding:2px 2px 2px 2px;
  4601. box-sizing:border-box;
  4602. width:100%;
  4603. }
  4604. #u95999_text {
  4605. border-width:0px;
  4606. word-wrap:break-word;
  4607. text-transform:none;
  4608. visibility:hidden;
  4609. }
  4610. #u96000_img {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:101px;
  4616. height:30px;
  4617. }
  4618. #u96000 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:715px;
  4622. top:221px;
  4623. width:101px;
  4624. height:30px;
  4625. display:flex;
  4626. font-size:14px;
  4627. }
  4628. #u96000 .text {
  4629. position:absolute;
  4630. align-self:center;
  4631. padding:2px 2px 2px 2px;
  4632. box-sizing:border-box;
  4633. width:100%;
  4634. }
  4635. #u96000_text {
  4636. border-width:0px;
  4637. word-wrap:break-word;
  4638. text-transform:none;
  4639. visibility:hidden;
  4640. }
  4641. #u96001_img {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:95px;
  4647. height:30px;
  4648. }
  4649. #u96001 {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:816px;
  4653. top:221px;
  4654. width:95px;
  4655. height:30px;
  4656. display:flex;
  4657. font-size:14px;
  4658. }
  4659. #u96001 .text {
  4660. position:absolute;
  4661. align-self:center;
  4662. padding:2px 2px 2px 2px;
  4663. box-sizing:border-box;
  4664. width:100%;
  4665. }
  4666. #u96001_text {
  4667. border-width:0px;
  4668. word-wrap:break-word;
  4669. text-transform:none;
  4670. visibility:hidden;
  4671. }
  4672. #u96002_img {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:102px;
  4678. height:30px;
  4679. }
  4680. #u96002 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:911px;
  4684. top:221px;
  4685. width:102px;
  4686. height:30px;
  4687. display:flex;
  4688. font-size:14px;
  4689. }
  4690. #u96002 .text {
  4691. position:absolute;
  4692. align-self:center;
  4693. padding:2px 2px 2px 2px;
  4694. box-sizing:border-box;
  4695. width:100%;
  4696. }
  4697. #u96002_text {
  4698. border-width:0px;
  4699. word-wrap:break-word;
  4700. text-transform:none;
  4701. visibility:hidden;
  4702. }
  4703. #u96003_img {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:0px;
  4707. top:0px;
  4708. width:101px;
  4709. height:30px;
  4710. }
  4711. #u96003 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:1013px;
  4715. top:221px;
  4716. width:101px;
  4717. height:30px;
  4718. display:flex;
  4719. font-size:14px;
  4720. }
  4721. #u96003 .text {
  4722. position:absolute;
  4723. align-self:center;
  4724. padding:2px 2px 2px 2px;
  4725. box-sizing:border-box;
  4726. width:100%;
  4727. }
  4728. #u96003_text {
  4729. border-width:0px;
  4730. word-wrap:break-word;
  4731. text-transform:none;
  4732. visibility:hidden;
  4733. }
  4734. #u96004_img {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:104px;
  4740. height:30px;
  4741. }
  4742. #u96004 {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:1114px;
  4746. top:221px;
  4747. width:104px;
  4748. height:30px;
  4749. display:flex;
  4750. font-size:14px;
  4751. }
  4752. #u96004 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:2px 2px 2px 2px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u96004_text {
  4760. border-width:0px;
  4761. word-wrap:break-word;
  4762. text-transform:none;
  4763. visibility:hidden;
  4764. }
  4765. #u96005_img {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:94px;
  4771. height:30px;
  4772. }
  4773. #u96005 {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:251px;
  4778. width:94px;
  4779. height:30px;
  4780. display:flex;
  4781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. font-size:14px;
  4785. }
  4786. #u96005 .text {
  4787. position:absolute;
  4788. align-self:center;
  4789. padding:2px 2px 2px 2px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u96005_text {
  4794. border-width:0px;
  4795. word-wrap:break-word;
  4796. text-transform:none;
  4797. visibility:hidden;
  4798. }
  4799. #u96006_img {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:0px;
  4803. top:0px;
  4804. width:96px;
  4805. height:30px;
  4806. }
  4807. #u96006 {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:94px;
  4811. top:251px;
  4812. width:96px;
  4813. height:30px;
  4814. display:flex;
  4815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4816. font-weight:400;
  4817. font-style:normal;
  4818. font-size:14px;
  4819. }
  4820. #u96006 .text {
  4821. position:absolute;
  4822. align-self:center;
  4823. padding:2px 2px 2px 2px;
  4824. box-sizing:border-box;
  4825. width:100%;
  4826. }
  4827. #u96006_text {
  4828. border-width:0px;
  4829. word-wrap:break-word;
  4830. text-transform:none;
  4831. visibility:hidden;
  4832. }
  4833. #u96007_img {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:94px;
  4839. height:30px;
  4840. }
  4841. #u96007 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:190px;
  4845. top:251px;
  4846. width:94px;
  4847. height:30px;
  4848. display:flex;
  4849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:14px;
  4853. }
  4854. #u96007 .text {
  4855. position:absolute;
  4856. align-self:center;
  4857. padding:2px 2px 2px 2px;
  4858. box-sizing:border-box;
  4859. width:100%;
  4860. }
  4861. #u96007_text {
  4862. border-width:0px;
  4863. word-wrap:break-word;
  4864. text-transform:none;
  4865. visibility:hidden;
  4866. }
  4867. #u96008_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:114px;
  4873. height:30px;
  4874. }
  4875. #u96008 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:284px;
  4879. top:251px;
  4880. width:114px;
  4881. height:30px;
  4882. display:flex;
  4883. font-size:14px;
  4884. }
  4885. #u96008 .text {
  4886. position:absolute;
  4887. align-self:center;
  4888. padding:2px 2px 2px 2px;
  4889. box-sizing:border-box;
  4890. width:100%;
  4891. }
  4892. #u96008_text {
  4893. border-width:0px;
  4894. word-wrap:break-word;
  4895. text-transform:none;
  4896. visibility:hidden;
  4897. }
  4898. #u96009_img {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:114px;
  4904. height:30px;
  4905. }
  4906. #u96009 {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:398px;
  4910. top:251px;
  4911. width:114px;
  4912. height:30px;
  4913. display:flex;
  4914. font-size:14px;
  4915. }
  4916. #u96009 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:2px 2px 2px 2px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u96009_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. visibility:hidden;
  4928. }
  4929. #u96010_img {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:102px;
  4935. height:30px;
  4936. }
  4937. #u96010 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:512px;
  4941. top:251px;
  4942. width:102px;
  4943. height:30px;
  4944. display:flex;
  4945. font-size:14px;
  4946. }
  4947. #u96010 .text {
  4948. position:absolute;
  4949. align-self:center;
  4950. padding:2px 2px 2px 2px;
  4951. box-sizing:border-box;
  4952. width:100%;
  4953. }
  4954. #u96010_text {
  4955. border-width:0px;
  4956. word-wrap:break-word;
  4957. text-transform:none;
  4958. visibility:hidden;
  4959. }
  4960. #u96011_img {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:101px;
  4966. height:30px;
  4967. }
  4968. #u96011 {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:614px;
  4972. top:251px;
  4973. width:101px;
  4974. height:30px;
  4975. display:flex;
  4976. font-size:14px;
  4977. }
  4978. #u96011 .text {
  4979. position:absolute;
  4980. align-self:center;
  4981. padding:2px 2px 2px 2px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u96011_text {
  4986. border-width:0px;
  4987. word-wrap:break-word;
  4988. text-transform:none;
  4989. visibility:hidden;
  4990. }
  4991. #u96012_img {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:0px;
  4995. top:0px;
  4996. width:101px;
  4997. height:30px;
  4998. }
  4999. #u96012 {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:715px;
  5003. top:251px;
  5004. width:101px;
  5005. height:30px;
  5006. display:flex;
  5007. font-size:14px;
  5008. }
  5009. #u96012 .text {
  5010. position:absolute;
  5011. align-self:center;
  5012. padding:2px 2px 2px 2px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u96012_text {
  5017. border-width:0px;
  5018. word-wrap:break-word;
  5019. text-transform:none;
  5020. visibility:hidden;
  5021. }
  5022. #u96013_img {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:95px;
  5028. height:30px;
  5029. }
  5030. #u96013 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:816px;
  5034. top:251px;
  5035. width:95px;
  5036. height:30px;
  5037. display:flex;
  5038. font-size:14px;
  5039. }
  5040. #u96013 .text {
  5041. position:absolute;
  5042. align-self:center;
  5043. padding:2px 2px 2px 2px;
  5044. box-sizing:border-box;
  5045. width:100%;
  5046. }
  5047. #u96013_text {
  5048. border-width:0px;
  5049. word-wrap:break-word;
  5050. text-transform:none;
  5051. visibility:hidden;
  5052. }
  5053. #u96014_img {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:0px;
  5057. top:0px;
  5058. width:102px;
  5059. height:30px;
  5060. }
  5061. #u96014 {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:911px;
  5065. top:251px;
  5066. width:102px;
  5067. height:30px;
  5068. display:flex;
  5069. font-size:14px;
  5070. }
  5071. #u96014 .text {
  5072. position:absolute;
  5073. align-self:center;
  5074. padding:2px 2px 2px 2px;
  5075. box-sizing:border-box;
  5076. width:100%;
  5077. }
  5078. #u96014_text {
  5079. border-width:0px;
  5080. word-wrap:break-word;
  5081. text-transform:none;
  5082. visibility:hidden;
  5083. }
  5084. #u96015_img {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:0px;
  5088. top:0px;
  5089. width:101px;
  5090. height:30px;
  5091. }
  5092. #u96015 {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:1013px;
  5096. top:251px;
  5097. width:101px;
  5098. height:30px;
  5099. display:flex;
  5100. font-size:14px;
  5101. }
  5102. #u96015 .text {
  5103. position:absolute;
  5104. align-self:center;
  5105. padding:2px 2px 2px 2px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u96015_text {
  5110. border-width:0px;
  5111. word-wrap:break-word;
  5112. text-transform:none;
  5113. visibility:hidden;
  5114. }
  5115. #u96016_img {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:104px;
  5121. height:30px;
  5122. }
  5123. #u96016 {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:1114px;
  5127. top:251px;
  5128. width:104px;
  5129. height:30px;
  5130. display:flex;
  5131. font-size:14px;
  5132. }
  5133. #u96016 .text {
  5134. position:absolute;
  5135. align-self:center;
  5136. padding:2px 2px 2px 2px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u96016_text {
  5141. border-width:0px;
  5142. word-wrap:break-word;
  5143. text-transform:none;
  5144. visibility:hidden;
  5145. }
  5146. #u96017_img {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:94px;
  5152. height:30px;
  5153. }
  5154. #u96017 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:0px;
  5158. top:281px;
  5159. width:94px;
  5160. height:30px;
  5161. display:flex;
  5162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:14px;
  5166. }
  5167. #u96017 .text {
  5168. position:absolute;
  5169. align-self:center;
  5170. padding:2px 2px 2px 2px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u96017_text {
  5175. border-width:0px;
  5176. word-wrap:break-word;
  5177. text-transform:none;
  5178. visibility:hidden;
  5179. }
  5180. #u96018_img {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:0px;
  5184. top:0px;
  5185. width:96px;
  5186. height:30px;
  5187. }
  5188. #u96018 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:94px;
  5192. top:281px;
  5193. width:96px;
  5194. height:30px;
  5195. display:flex;
  5196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5197. font-weight:400;
  5198. font-style:normal;
  5199. font-size:14px;
  5200. }
  5201. #u96018 .text {
  5202. position:absolute;
  5203. align-self:center;
  5204. padding:2px 2px 2px 2px;
  5205. box-sizing:border-box;
  5206. width:100%;
  5207. }
  5208. #u96018_text {
  5209. border-width:0px;
  5210. word-wrap:break-word;
  5211. text-transform:none;
  5212. visibility:hidden;
  5213. }
  5214. #u96019_img {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:94px;
  5220. height:30px;
  5221. }
  5222. #u96019 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:190px;
  5226. top:281px;
  5227. width:94px;
  5228. height:30px;
  5229. display:flex;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:14px;
  5234. }
  5235. #u96019 .text {
  5236. position:absolute;
  5237. align-self:center;
  5238. padding:2px 2px 2px 2px;
  5239. box-sizing:border-box;
  5240. width:100%;
  5241. }
  5242. #u96019_text {
  5243. border-width:0px;
  5244. word-wrap:break-word;
  5245. text-transform:none;
  5246. visibility:hidden;
  5247. }
  5248. #u96020_img {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:114px;
  5254. height:30px;
  5255. }
  5256. #u96020 {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:284px;
  5260. top:281px;
  5261. width:114px;
  5262. height:30px;
  5263. display:flex;
  5264. font-size:14px;
  5265. }
  5266. #u96020 .text {
  5267. position:absolute;
  5268. align-self:center;
  5269. padding:2px 2px 2px 2px;
  5270. box-sizing:border-box;
  5271. width:100%;
  5272. }
  5273. #u96020_text {
  5274. border-width:0px;
  5275. word-wrap:break-word;
  5276. text-transform:none;
  5277. visibility:hidden;
  5278. }
  5279. #u96021_img {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:114px;
  5285. height:30px;
  5286. }
  5287. #u96021 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:398px;
  5291. top:281px;
  5292. width:114px;
  5293. height:30px;
  5294. display:flex;
  5295. font-size:14px;
  5296. }
  5297. #u96021 .text {
  5298. position:absolute;
  5299. align-self:center;
  5300. padding:2px 2px 2px 2px;
  5301. box-sizing:border-box;
  5302. width:100%;
  5303. }
  5304. #u96021_text {
  5305. border-width:0px;
  5306. word-wrap:break-word;
  5307. text-transform:none;
  5308. visibility:hidden;
  5309. }
  5310. #u96022_img {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:102px;
  5316. height:30px;
  5317. }
  5318. #u96022 {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:512px;
  5322. top:281px;
  5323. width:102px;
  5324. height:30px;
  5325. display:flex;
  5326. font-size:14px;
  5327. }
  5328. #u96022 .text {
  5329. position:absolute;
  5330. align-self:center;
  5331. padding:2px 2px 2px 2px;
  5332. box-sizing:border-box;
  5333. width:100%;
  5334. }
  5335. #u96022_text {
  5336. border-width:0px;
  5337. word-wrap:break-word;
  5338. text-transform:none;
  5339. visibility:hidden;
  5340. }
  5341. #u96023_img {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:101px;
  5347. height:30px;
  5348. }
  5349. #u96023 {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:614px;
  5353. top:281px;
  5354. width:101px;
  5355. height:30px;
  5356. display:flex;
  5357. font-size:14px;
  5358. }
  5359. #u96023 .text {
  5360. position:absolute;
  5361. align-self:center;
  5362. padding:2px 2px 2px 2px;
  5363. box-sizing:border-box;
  5364. width:100%;
  5365. }
  5366. #u96023_text {
  5367. border-width:0px;
  5368. word-wrap:break-word;
  5369. text-transform:none;
  5370. visibility:hidden;
  5371. }
  5372. #u96024_img {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:0px;
  5376. top:0px;
  5377. width:101px;
  5378. height:30px;
  5379. }
  5380. #u96024 {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:715px;
  5384. top:281px;
  5385. width:101px;
  5386. height:30px;
  5387. display:flex;
  5388. font-size:14px;
  5389. }
  5390. #u96024 .text {
  5391. position:absolute;
  5392. align-self:center;
  5393. padding:2px 2px 2px 2px;
  5394. box-sizing:border-box;
  5395. width:100%;
  5396. }
  5397. #u96024_text {
  5398. border-width:0px;
  5399. word-wrap:break-word;
  5400. text-transform:none;
  5401. visibility:hidden;
  5402. }
  5403. #u96025_img {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:0px;
  5408. width:95px;
  5409. height:30px;
  5410. }
  5411. #u96025 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:816px;
  5415. top:281px;
  5416. width:95px;
  5417. height:30px;
  5418. display:flex;
  5419. font-size:14px;
  5420. }
  5421. #u96025 .text {
  5422. position:absolute;
  5423. align-self:center;
  5424. padding:2px 2px 2px 2px;
  5425. box-sizing:border-box;
  5426. width:100%;
  5427. }
  5428. #u96025_text {
  5429. border-width:0px;
  5430. word-wrap:break-word;
  5431. text-transform:none;
  5432. visibility:hidden;
  5433. }
  5434. #u96026_img {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:0px;
  5438. top:0px;
  5439. width:102px;
  5440. height:30px;
  5441. }
  5442. #u96026 {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:911px;
  5446. top:281px;
  5447. width:102px;
  5448. height:30px;
  5449. display:flex;
  5450. font-size:14px;
  5451. }
  5452. #u96026 .text {
  5453. position:absolute;
  5454. align-self:center;
  5455. padding:2px 2px 2px 2px;
  5456. box-sizing:border-box;
  5457. width:100%;
  5458. }
  5459. #u96026_text {
  5460. border-width:0px;
  5461. word-wrap:break-word;
  5462. text-transform:none;
  5463. visibility:hidden;
  5464. }
  5465. #u96027_img {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:101px;
  5471. height:30px;
  5472. }
  5473. #u96027 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:1013px;
  5477. top:281px;
  5478. width:101px;
  5479. height:30px;
  5480. display:flex;
  5481. font-size:14px;
  5482. }
  5483. #u96027 .text {
  5484. position:absolute;
  5485. align-self:center;
  5486. padding:2px 2px 2px 2px;
  5487. box-sizing:border-box;
  5488. width:100%;
  5489. }
  5490. #u96027_text {
  5491. border-width:0px;
  5492. word-wrap:break-word;
  5493. text-transform:none;
  5494. visibility:hidden;
  5495. }
  5496. #u96028_img {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:104px;
  5502. height:30px;
  5503. }
  5504. #u96028 {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:1114px;
  5508. top:281px;
  5509. width:104px;
  5510. height:30px;
  5511. display:flex;
  5512. font-size:14px;
  5513. }
  5514. #u96028 .text {
  5515. position:absolute;
  5516. align-self:center;
  5517. padding:2px 2px 2px 2px;
  5518. box-sizing:border-box;
  5519. width:100%;
  5520. }
  5521. #u96028_text {
  5522. border-width:0px;
  5523. word-wrap:break-word;
  5524. text-transform:none;
  5525. visibility:hidden;
  5526. }
  5527. #u96029_img {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:0px;
  5531. top:0px;
  5532. width:94px;
  5533. height:30px;
  5534. }
  5535. #u96029 {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:0px;
  5539. top:311px;
  5540. width:94px;
  5541. height:30px;
  5542. display:flex;
  5543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. font-size:14px;
  5547. }
  5548. #u96029 .text {
  5549. position:absolute;
  5550. align-self:center;
  5551. padding:2px 2px 2px 2px;
  5552. box-sizing:border-box;
  5553. width:100%;
  5554. }
  5555. #u96029_text {
  5556. border-width:0px;
  5557. word-wrap:break-word;
  5558. text-transform:none;
  5559. visibility:hidden;
  5560. }
  5561. #u96030_img {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:96px;
  5567. height:30px;
  5568. }
  5569. #u96030 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:94px;
  5573. top:311px;
  5574. width:96px;
  5575. height:30px;
  5576. display:flex;
  5577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:14px;
  5581. }
  5582. #u96030 .text {
  5583. position:absolute;
  5584. align-self:center;
  5585. padding:2px 2px 2px 2px;
  5586. box-sizing:border-box;
  5587. width:100%;
  5588. }
  5589. #u96030_text {
  5590. border-width:0px;
  5591. word-wrap:break-word;
  5592. text-transform:none;
  5593. visibility:hidden;
  5594. }
  5595. #u96031_img {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:0px;
  5599. top:0px;
  5600. width:94px;
  5601. height:30px;
  5602. }
  5603. #u96031 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:190px;
  5607. top:311px;
  5608. width:94px;
  5609. height:30px;
  5610. display:flex;
  5611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5612. font-weight:400;
  5613. font-style:normal;
  5614. font-size:14px;
  5615. }
  5616. #u96031 .text {
  5617. position:absolute;
  5618. align-self:center;
  5619. padding:2px 2px 2px 2px;
  5620. box-sizing:border-box;
  5621. width:100%;
  5622. }
  5623. #u96031_text {
  5624. border-width:0px;
  5625. word-wrap:break-word;
  5626. text-transform:none;
  5627. visibility:hidden;
  5628. }
  5629. #u96032_img {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:0px;
  5633. top:0px;
  5634. width:114px;
  5635. height:30px;
  5636. }
  5637. #u96032 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:284px;
  5641. top:311px;
  5642. width:114px;
  5643. height:30px;
  5644. display:flex;
  5645. font-size:14px;
  5646. }
  5647. #u96032 .text {
  5648. position:absolute;
  5649. align-self:center;
  5650. padding:2px 2px 2px 2px;
  5651. box-sizing:border-box;
  5652. width:100%;
  5653. }
  5654. #u96032_text {
  5655. border-width:0px;
  5656. word-wrap:break-word;
  5657. text-transform:none;
  5658. visibility:hidden;
  5659. }
  5660. #u96033_img {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:0px;
  5664. top:0px;
  5665. width:114px;
  5666. height:30px;
  5667. }
  5668. #u96033 {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:398px;
  5672. top:311px;
  5673. width:114px;
  5674. height:30px;
  5675. display:flex;
  5676. font-size:14px;
  5677. }
  5678. #u96033 .text {
  5679. position:absolute;
  5680. align-self:center;
  5681. padding:2px 2px 2px 2px;
  5682. box-sizing:border-box;
  5683. width:100%;
  5684. }
  5685. #u96033_text {
  5686. border-width:0px;
  5687. word-wrap:break-word;
  5688. text-transform:none;
  5689. visibility:hidden;
  5690. }
  5691. #u96034_img {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:0px;
  5695. top:0px;
  5696. width:102px;
  5697. height:30px;
  5698. }
  5699. #u96034 {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:512px;
  5703. top:311px;
  5704. width:102px;
  5705. height:30px;
  5706. display:flex;
  5707. font-size:14px;
  5708. }
  5709. #u96034 .text {
  5710. position:absolute;
  5711. align-self:center;
  5712. padding:2px 2px 2px 2px;
  5713. box-sizing:border-box;
  5714. width:100%;
  5715. }
  5716. #u96034_text {
  5717. border-width:0px;
  5718. word-wrap:break-word;
  5719. text-transform:none;
  5720. visibility:hidden;
  5721. }
  5722. #u96035_img {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:101px;
  5728. height:30px;
  5729. }
  5730. #u96035 {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:614px;
  5734. top:311px;
  5735. width:101px;
  5736. height:30px;
  5737. display:flex;
  5738. font-size:14px;
  5739. }
  5740. #u96035 .text {
  5741. position:absolute;
  5742. align-self:center;
  5743. padding:2px 2px 2px 2px;
  5744. box-sizing:border-box;
  5745. width:100%;
  5746. }
  5747. #u96035_text {
  5748. border-width:0px;
  5749. word-wrap:break-word;
  5750. text-transform:none;
  5751. visibility:hidden;
  5752. }
  5753. #u96036_img {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:101px;
  5759. height:30px;
  5760. }
  5761. #u96036 {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:715px;
  5765. top:311px;
  5766. width:101px;
  5767. height:30px;
  5768. display:flex;
  5769. font-size:14px;
  5770. }
  5771. #u96036 .text {
  5772. position:absolute;
  5773. align-self:center;
  5774. padding:2px 2px 2px 2px;
  5775. box-sizing:border-box;
  5776. width:100%;
  5777. }
  5778. #u96036_text {
  5779. border-width:0px;
  5780. word-wrap:break-word;
  5781. text-transform:none;
  5782. visibility:hidden;
  5783. }
  5784. #u96037_img {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:0px;
  5788. top:0px;
  5789. width:95px;
  5790. height:30px;
  5791. }
  5792. #u96037 {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:816px;
  5796. top:311px;
  5797. width:95px;
  5798. height:30px;
  5799. display:flex;
  5800. font-size:14px;
  5801. }
  5802. #u96037 .text {
  5803. position:absolute;
  5804. align-self:center;
  5805. padding:2px 2px 2px 2px;
  5806. box-sizing:border-box;
  5807. width:100%;
  5808. }
  5809. #u96037_text {
  5810. border-width:0px;
  5811. word-wrap:break-word;
  5812. text-transform:none;
  5813. visibility:hidden;
  5814. }
  5815. #u96038_img {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:102px;
  5821. height:30px;
  5822. }
  5823. #u96038 {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:911px;
  5827. top:311px;
  5828. width:102px;
  5829. height:30px;
  5830. display:flex;
  5831. font-size:14px;
  5832. }
  5833. #u96038 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:2px 2px 2px 2px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u96038_text {
  5841. border-width:0px;
  5842. word-wrap:break-word;
  5843. text-transform:none;
  5844. visibility:hidden;
  5845. }
  5846. #u96039_img {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:101px;
  5852. height:30px;
  5853. }
  5854. #u96039 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:1013px;
  5858. top:311px;
  5859. width:101px;
  5860. height:30px;
  5861. display:flex;
  5862. font-size:14px;
  5863. }
  5864. #u96039 .text {
  5865. position:absolute;
  5866. align-self:center;
  5867. padding:2px 2px 2px 2px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u96039_text {
  5872. border-width:0px;
  5873. word-wrap:break-word;
  5874. text-transform:none;
  5875. visibility:hidden;
  5876. }
  5877. #u96040_img {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:104px;
  5883. height:30px;
  5884. }
  5885. #u96040 {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:1114px;
  5889. top:311px;
  5890. width:104px;
  5891. height:30px;
  5892. display:flex;
  5893. font-size:14px;
  5894. }
  5895. #u96040 .text {
  5896. position:absolute;
  5897. align-self:center;
  5898. padding:2px 2px 2px 2px;
  5899. box-sizing:border-box;
  5900. width:100%;
  5901. }
  5902. #u96040_text {
  5903. border-width:0px;
  5904. word-wrap:break-word;
  5905. text-transform:none;
  5906. visibility:hidden;
  5907. }
  5908. #u96041_img {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:94px;
  5914. height:30px;
  5915. }
  5916. #u96041 {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:0px;
  5920. top:341px;
  5921. width:94px;
  5922. height:30px;
  5923. display:flex;
  5924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5925. font-weight:400;
  5926. font-style:normal;
  5927. font-size:14px;
  5928. }
  5929. #u96041 .text {
  5930. position:absolute;
  5931. align-self:center;
  5932. padding:2px 2px 2px 2px;
  5933. box-sizing:border-box;
  5934. width:100%;
  5935. }
  5936. #u96041_text {
  5937. border-width:0px;
  5938. word-wrap:break-word;
  5939. text-transform:none;
  5940. visibility:hidden;
  5941. }
  5942. #u96042_img {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:96px;
  5948. height:30px;
  5949. }
  5950. #u96042 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:94px;
  5954. top:341px;
  5955. width:96px;
  5956. height:30px;
  5957. display:flex;
  5958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. font-size:14px;
  5962. }
  5963. #u96042 .text {
  5964. position:absolute;
  5965. align-self:center;
  5966. padding:2px 2px 2px 2px;
  5967. box-sizing:border-box;
  5968. width:100%;
  5969. }
  5970. #u96042_text {
  5971. border-width:0px;
  5972. word-wrap:break-word;
  5973. text-transform:none;
  5974. visibility:hidden;
  5975. }
  5976. #u96043_img {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:94px;
  5982. height:30px;
  5983. }
  5984. #u96043 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:190px;
  5988. top:341px;
  5989. width:94px;
  5990. height:30px;
  5991. display:flex;
  5992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5993. font-weight:400;
  5994. font-style:normal;
  5995. font-size:14px;
  5996. }
  5997. #u96043 .text {
  5998. position:absolute;
  5999. align-self:center;
  6000. padding:2px 2px 2px 2px;
  6001. box-sizing:border-box;
  6002. width:100%;
  6003. }
  6004. #u96043_text {
  6005. border-width:0px;
  6006. word-wrap:break-word;
  6007. text-transform:none;
  6008. visibility:hidden;
  6009. }
  6010. #u96044_img {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:114px;
  6016. height:30px;
  6017. }
  6018. #u96044 {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:284px;
  6022. top:341px;
  6023. width:114px;
  6024. height:30px;
  6025. display:flex;
  6026. font-size:14px;
  6027. }
  6028. #u96044 .text {
  6029. position:absolute;
  6030. align-self:center;
  6031. padding:2px 2px 2px 2px;
  6032. box-sizing:border-box;
  6033. width:100%;
  6034. }
  6035. #u96044_text {
  6036. border-width:0px;
  6037. word-wrap:break-word;
  6038. text-transform:none;
  6039. visibility:hidden;
  6040. }
  6041. #u96045_img {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:114px;
  6047. height:30px;
  6048. }
  6049. #u96045 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:398px;
  6053. top:341px;
  6054. width:114px;
  6055. height:30px;
  6056. display:flex;
  6057. font-size:14px;
  6058. }
  6059. #u96045 .text {
  6060. position:absolute;
  6061. align-self:center;
  6062. padding:2px 2px 2px 2px;
  6063. box-sizing:border-box;
  6064. width:100%;
  6065. }
  6066. #u96045_text {
  6067. border-width:0px;
  6068. word-wrap:break-word;
  6069. text-transform:none;
  6070. visibility:hidden;
  6071. }
  6072. #u96046_img {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:102px;
  6078. height:30px;
  6079. }
  6080. #u96046 {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:512px;
  6084. top:341px;
  6085. width:102px;
  6086. height:30px;
  6087. display:flex;
  6088. font-size:14px;
  6089. }
  6090. #u96046 .text {
  6091. position:absolute;
  6092. align-self:center;
  6093. padding:2px 2px 2px 2px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u96046_text {
  6098. border-width:0px;
  6099. word-wrap:break-word;
  6100. text-transform:none;
  6101. visibility:hidden;
  6102. }
  6103. #u96047_img {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:101px;
  6109. height:30px;
  6110. }
  6111. #u96047 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:614px;
  6115. top:341px;
  6116. width:101px;
  6117. height:30px;
  6118. display:flex;
  6119. font-size:14px;
  6120. }
  6121. #u96047 .text {
  6122. position:absolute;
  6123. align-self:center;
  6124. padding:2px 2px 2px 2px;
  6125. box-sizing:border-box;
  6126. width:100%;
  6127. }
  6128. #u96047_text {
  6129. border-width:0px;
  6130. word-wrap:break-word;
  6131. text-transform:none;
  6132. visibility:hidden;
  6133. }
  6134. #u96048_img {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:0px;
  6138. top:0px;
  6139. width:101px;
  6140. height:30px;
  6141. }
  6142. #u96048 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:715px;
  6146. top:341px;
  6147. width:101px;
  6148. height:30px;
  6149. display:flex;
  6150. font-size:14px;
  6151. }
  6152. #u96048 .text {
  6153. position:absolute;
  6154. align-self:center;
  6155. padding:2px 2px 2px 2px;
  6156. box-sizing:border-box;
  6157. width:100%;
  6158. }
  6159. #u96048_text {
  6160. border-width:0px;
  6161. word-wrap:break-word;
  6162. text-transform:none;
  6163. visibility:hidden;
  6164. }
  6165. #u96049_img {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:95px;
  6171. height:30px;
  6172. }
  6173. #u96049 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:816px;
  6177. top:341px;
  6178. width:95px;
  6179. height:30px;
  6180. display:flex;
  6181. font-size:14px;
  6182. }
  6183. #u96049 .text {
  6184. position:absolute;
  6185. align-self:center;
  6186. padding:2px 2px 2px 2px;
  6187. box-sizing:border-box;
  6188. width:100%;
  6189. }
  6190. #u96049_text {
  6191. border-width:0px;
  6192. word-wrap:break-word;
  6193. text-transform:none;
  6194. visibility:hidden;
  6195. }
  6196. #u96050_img {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:102px;
  6202. height:30px;
  6203. }
  6204. #u96050 {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:911px;
  6208. top:341px;
  6209. width:102px;
  6210. height:30px;
  6211. display:flex;
  6212. font-size:14px;
  6213. }
  6214. #u96050 .text {
  6215. position:absolute;
  6216. align-self:center;
  6217. padding:2px 2px 2px 2px;
  6218. box-sizing:border-box;
  6219. width:100%;
  6220. }
  6221. #u96050_text {
  6222. border-width:0px;
  6223. word-wrap:break-word;
  6224. text-transform:none;
  6225. visibility:hidden;
  6226. }
  6227. #u96051_img {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:101px;
  6233. height:30px;
  6234. }
  6235. #u96051 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:1013px;
  6239. top:341px;
  6240. width:101px;
  6241. height:30px;
  6242. display:flex;
  6243. font-size:14px;
  6244. }
  6245. #u96051 .text {
  6246. position:absolute;
  6247. align-self:center;
  6248. padding:2px 2px 2px 2px;
  6249. box-sizing:border-box;
  6250. width:100%;
  6251. }
  6252. #u96051_text {
  6253. border-width:0px;
  6254. word-wrap:break-word;
  6255. text-transform:none;
  6256. visibility:hidden;
  6257. }
  6258. #u96052_img {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:104px;
  6264. height:30px;
  6265. }
  6266. #u96052 {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:1114px;
  6270. top:341px;
  6271. width:104px;
  6272. height:30px;
  6273. display:flex;
  6274. font-size:14px;
  6275. }
  6276. #u96052 .text {
  6277. position:absolute;
  6278. align-self:center;
  6279. padding:2px 2px 2px 2px;
  6280. box-sizing:border-box;
  6281. width:100%;
  6282. }
  6283. #u96052_text {
  6284. border-width:0px;
  6285. word-wrap:break-word;
  6286. text-transform:none;
  6287. visibility:hidden;
  6288. }
  6289. #u96053_img {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:94px;
  6295. height:30px;
  6296. }
  6297. #u96053 {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:371px;
  6302. width:94px;
  6303. height:30px;
  6304. display:flex;
  6305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6306. font-weight:400;
  6307. font-style:normal;
  6308. font-size:14px;
  6309. }
  6310. #u96053 .text {
  6311. position:absolute;
  6312. align-self:center;
  6313. padding:2px 2px 2px 2px;
  6314. box-sizing:border-box;
  6315. width:100%;
  6316. }
  6317. #u96053_text {
  6318. border-width:0px;
  6319. word-wrap:break-word;
  6320. text-transform:none;
  6321. visibility:hidden;
  6322. }
  6323. #u96054_img {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:96px;
  6329. height:30px;
  6330. }
  6331. #u96054 {
  6332. border-width:0px;
  6333. position:absolute;
  6334. left:94px;
  6335. top:371px;
  6336. width:96px;
  6337. height:30px;
  6338. display:flex;
  6339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6340. font-weight:400;
  6341. font-style:normal;
  6342. font-size:14px;
  6343. }
  6344. #u96054 .text {
  6345. position:absolute;
  6346. align-self:center;
  6347. padding:2px 2px 2px 2px;
  6348. box-sizing:border-box;
  6349. width:100%;
  6350. }
  6351. #u96054_text {
  6352. border-width:0px;
  6353. word-wrap:break-word;
  6354. text-transform:none;
  6355. visibility:hidden;
  6356. }
  6357. #u96055_img {
  6358. border-width:0px;
  6359. position:absolute;
  6360. left:0px;
  6361. top:0px;
  6362. width:94px;
  6363. height:30px;
  6364. }
  6365. #u96055 {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:190px;
  6369. top:371px;
  6370. width:94px;
  6371. height:30px;
  6372. display:flex;
  6373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6374. font-weight:400;
  6375. font-style:normal;
  6376. font-size:14px;
  6377. }
  6378. #u96055 .text {
  6379. position:absolute;
  6380. align-self:center;
  6381. padding:2px 2px 2px 2px;
  6382. box-sizing:border-box;
  6383. width:100%;
  6384. }
  6385. #u96055_text {
  6386. border-width:0px;
  6387. word-wrap:break-word;
  6388. text-transform:none;
  6389. visibility:hidden;
  6390. }
  6391. #u96056_img {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:0px;
  6395. top:0px;
  6396. width:114px;
  6397. height:30px;
  6398. }
  6399. #u96056 {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:284px;
  6403. top:371px;
  6404. width:114px;
  6405. height:30px;
  6406. display:flex;
  6407. font-size:14px;
  6408. }
  6409. #u96056 .text {
  6410. position:absolute;
  6411. align-self:center;
  6412. padding:2px 2px 2px 2px;
  6413. box-sizing:border-box;
  6414. width:100%;
  6415. }
  6416. #u96056_text {
  6417. border-width:0px;
  6418. word-wrap:break-word;
  6419. text-transform:none;
  6420. visibility:hidden;
  6421. }
  6422. #u96057_img {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:114px;
  6428. height:30px;
  6429. }
  6430. #u96057 {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:398px;
  6434. top:371px;
  6435. width:114px;
  6436. height:30px;
  6437. display:flex;
  6438. font-size:14px;
  6439. }
  6440. #u96057 .text {
  6441. position:absolute;
  6442. align-self:center;
  6443. padding:2px 2px 2px 2px;
  6444. box-sizing:border-box;
  6445. width:100%;
  6446. }
  6447. #u96057_text {
  6448. border-width:0px;
  6449. word-wrap:break-word;
  6450. text-transform:none;
  6451. visibility:hidden;
  6452. }
  6453. #u96058_img {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:0px;
  6457. top:0px;
  6458. width:102px;
  6459. height:30px;
  6460. }
  6461. #u96058 {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:512px;
  6465. top:371px;
  6466. width:102px;
  6467. height:30px;
  6468. display:flex;
  6469. font-size:14px;
  6470. }
  6471. #u96058 .text {
  6472. position:absolute;
  6473. align-self:center;
  6474. padding:2px 2px 2px 2px;
  6475. box-sizing:border-box;
  6476. width:100%;
  6477. }
  6478. #u96058_text {
  6479. border-width:0px;
  6480. word-wrap:break-word;
  6481. text-transform:none;
  6482. visibility:hidden;
  6483. }
  6484. #u96059_img {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:101px;
  6490. height:30px;
  6491. }
  6492. #u96059 {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:614px;
  6496. top:371px;
  6497. width:101px;
  6498. height:30px;
  6499. display:flex;
  6500. font-size:14px;
  6501. }
  6502. #u96059 .text {
  6503. position:absolute;
  6504. align-self:center;
  6505. padding:2px 2px 2px 2px;
  6506. box-sizing:border-box;
  6507. width:100%;
  6508. }
  6509. #u96059_text {
  6510. border-width:0px;
  6511. word-wrap:break-word;
  6512. text-transform:none;
  6513. visibility:hidden;
  6514. }
  6515. #u96060_img {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:0px;
  6519. top:0px;
  6520. width:101px;
  6521. height:30px;
  6522. }
  6523. #u96060 {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:715px;
  6527. top:371px;
  6528. width:101px;
  6529. height:30px;
  6530. display:flex;
  6531. font-size:14px;
  6532. }
  6533. #u96060 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:2px 2px 2px 2px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u96060_text {
  6541. border-width:0px;
  6542. word-wrap:break-word;
  6543. text-transform:none;
  6544. visibility:hidden;
  6545. }
  6546. #u96061_img {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:95px;
  6552. height:30px;
  6553. }
  6554. #u96061 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:816px;
  6558. top:371px;
  6559. width:95px;
  6560. height:30px;
  6561. display:flex;
  6562. font-size:14px;
  6563. }
  6564. #u96061 .text {
  6565. position:absolute;
  6566. align-self:center;
  6567. padding:2px 2px 2px 2px;
  6568. box-sizing:border-box;
  6569. width:100%;
  6570. }
  6571. #u96061_text {
  6572. border-width:0px;
  6573. word-wrap:break-word;
  6574. text-transform:none;
  6575. visibility:hidden;
  6576. }
  6577. #u96062_img {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:0px;
  6581. top:0px;
  6582. width:102px;
  6583. height:30px;
  6584. }
  6585. #u96062 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:911px;
  6589. top:371px;
  6590. width:102px;
  6591. height:30px;
  6592. display:flex;
  6593. font-size:14px;
  6594. }
  6595. #u96062 .text {
  6596. position:absolute;
  6597. align-self:center;
  6598. padding:2px 2px 2px 2px;
  6599. box-sizing:border-box;
  6600. width:100%;
  6601. }
  6602. #u96062_text {
  6603. border-width:0px;
  6604. word-wrap:break-word;
  6605. text-transform:none;
  6606. visibility:hidden;
  6607. }
  6608. #u96063_img {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:0px;
  6612. top:0px;
  6613. width:101px;
  6614. height:30px;
  6615. }
  6616. #u96063 {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:1013px;
  6620. top:371px;
  6621. width:101px;
  6622. height:30px;
  6623. display:flex;
  6624. font-size:14px;
  6625. }
  6626. #u96063 .text {
  6627. position:absolute;
  6628. align-self:center;
  6629. padding:2px 2px 2px 2px;
  6630. box-sizing:border-box;
  6631. width:100%;
  6632. }
  6633. #u96063_text {
  6634. border-width:0px;
  6635. word-wrap:break-word;
  6636. text-transform:none;
  6637. visibility:hidden;
  6638. }
  6639. #u96064_img {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:0px;
  6643. top:0px;
  6644. width:104px;
  6645. height:30px;
  6646. }
  6647. #u96064 {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:1114px;
  6651. top:371px;
  6652. width:104px;
  6653. height:30px;
  6654. display:flex;
  6655. font-size:14px;
  6656. }
  6657. #u96064 .text {
  6658. position:absolute;
  6659. align-self:center;
  6660. padding:2px 2px 2px 2px;
  6661. box-sizing:border-box;
  6662. width:100%;
  6663. }
  6664. #u96064_text {
  6665. border-width:0px;
  6666. word-wrap:break-word;
  6667. text-transform:none;
  6668. visibility:hidden;
  6669. }
  6670. #u96065_img {
  6671. border-width:0px;
  6672. position:absolute;
  6673. left:0px;
  6674. top:0px;
  6675. width:94px;
  6676. height:30px;
  6677. }
  6678. #u96065 {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:0px;
  6682. top:401px;
  6683. width:94px;
  6684. height:30px;
  6685. display:flex;
  6686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6687. font-weight:400;
  6688. font-style:normal;
  6689. font-size:14px;
  6690. }
  6691. #u96065 .text {
  6692. position:absolute;
  6693. align-self:center;
  6694. padding:2px 2px 2px 2px;
  6695. box-sizing:border-box;
  6696. width:100%;
  6697. }
  6698. #u96065_text {
  6699. border-width:0px;
  6700. word-wrap:break-word;
  6701. text-transform:none;
  6702. visibility:hidden;
  6703. }
  6704. #u96066_img {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:0px;
  6708. top:0px;
  6709. width:96px;
  6710. height:30px;
  6711. }
  6712. #u96066 {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:94px;
  6716. top:401px;
  6717. width:96px;
  6718. height:30px;
  6719. display:flex;
  6720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6721. font-weight:400;
  6722. font-style:normal;
  6723. font-size:14px;
  6724. }
  6725. #u96066 .text {
  6726. position:absolute;
  6727. align-self:center;
  6728. padding:2px 2px 2px 2px;
  6729. box-sizing:border-box;
  6730. width:100%;
  6731. }
  6732. #u96066_text {
  6733. border-width:0px;
  6734. word-wrap:break-word;
  6735. text-transform:none;
  6736. visibility:hidden;
  6737. }
  6738. #u96067_img {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:0px;
  6742. top:0px;
  6743. width:94px;
  6744. height:30px;
  6745. }
  6746. #u96067 {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:190px;
  6750. top:401px;
  6751. width:94px;
  6752. height:30px;
  6753. display:flex;
  6754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6755. font-weight:400;
  6756. font-style:normal;
  6757. font-size:14px;
  6758. }
  6759. #u96067 .text {
  6760. position:absolute;
  6761. align-self:center;
  6762. padding:2px 2px 2px 2px;
  6763. box-sizing:border-box;
  6764. width:100%;
  6765. }
  6766. #u96067_text {
  6767. border-width:0px;
  6768. word-wrap:break-word;
  6769. text-transform:none;
  6770. visibility:hidden;
  6771. }
  6772. #u96068_img {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:114px;
  6778. height:30px;
  6779. }
  6780. #u96068 {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:284px;
  6784. top:401px;
  6785. width:114px;
  6786. height:30px;
  6787. display:flex;
  6788. font-size:14px;
  6789. }
  6790. #u96068 .text {
  6791. position:absolute;
  6792. align-self:center;
  6793. padding:2px 2px 2px 2px;
  6794. box-sizing:border-box;
  6795. width:100%;
  6796. }
  6797. #u96068_text {
  6798. border-width:0px;
  6799. word-wrap:break-word;
  6800. text-transform:none;
  6801. visibility:hidden;
  6802. }
  6803. #u96069_img {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:0px;
  6807. top:0px;
  6808. width:114px;
  6809. height:30px;
  6810. }
  6811. #u96069 {
  6812. border-width:0px;
  6813. position:absolute;
  6814. left:398px;
  6815. top:401px;
  6816. width:114px;
  6817. height:30px;
  6818. display:flex;
  6819. font-size:14px;
  6820. }
  6821. #u96069 .text {
  6822. position:absolute;
  6823. align-self:center;
  6824. padding:2px 2px 2px 2px;
  6825. box-sizing:border-box;
  6826. width:100%;
  6827. }
  6828. #u96069_text {
  6829. border-width:0px;
  6830. word-wrap:break-word;
  6831. text-transform:none;
  6832. visibility:hidden;
  6833. }
  6834. #u96070_img {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:102px;
  6840. height:30px;
  6841. }
  6842. #u96070 {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:512px;
  6846. top:401px;
  6847. width:102px;
  6848. height:30px;
  6849. display:flex;
  6850. font-size:14px;
  6851. }
  6852. #u96070 .text {
  6853. position:absolute;
  6854. align-self:center;
  6855. padding:2px 2px 2px 2px;
  6856. box-sizing:border-box;
  6857. width:100%;
  6858. }
  6859. #u96070_text {
  6860. border-width:0px;
  6861. word-wrap:break-word;
  6862. text-transform:none;
  6863. visibility:hidden;
  6864. }
  6865. #u96071_img {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:101px;
  6871. height:30px;
  6872. }
  6873. #u96071 {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:614px;
  6877. top:401px;
  6878. width:101px;
  6879. height:30px;
  6880. display:flex;
  6881. font-size:14px;
  6882. }
  6883. #u96071 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:2px 2px 2px 2px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u96071_text {
  6891. border-width:0px;
  6892. word-wrap:break-word;
  6893. text-transform:none;
  6894. visibility:hidden;
  6895. }
  6896. #u96072_img {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:0px;
  6900. top:0px;
  6901. width:101px;
  6902. height:30px;
  6903. }
  6904. #u96072 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:715px;
  6908. top:401px;
  6909. width:101px;
  6910. height:30px;
  6911. display:flex;
  6912. font-size:14px;
  6913. }
  6914. #u96072 .text {
  6915. position:absolute;
  6916. align-self:center;
  6917. padding:2px 2px 2px 2px;
  6918. box-sizing:border-box;
  6919. width:100%;
  6920. }
  6921. #u96072_text {
  6922. border-width:0px;
  6923. word-wrap:break-word;
  6924. text-transform:none;
  6925. visibility:hidden;
  6926. }
  6927. #u96073_img {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:95px;
  6933. height:30px;
  6934. }
  6935. #u96073 {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:816px;
  6939. top:401px;
  6940. width:95px;
  6941. height:30px;
  6942. display:flex;
  6943. font-size:14px;
  6944. }
  6945. #u96073 .text {
  6946. position:absolute;
  6947. align-self:center;
  6948. padding:2px 2px 2px 2px;
  6949. box-sizing:border-box;
  6950. width:100%;
  6951. }
  6952. #u96073_text {
  6953. border-width:0px;
  6954. word-wrap:break-word;
  6955. text-transform:none;
  6956. visibility:hidden;
  6957. }
  6958. #u96074_img {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:0px;
  6962. top:0px;
  6963. width:102px;
  6964. height:30px;
  6965. }
  6966. #u96074 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:911px;
  6970. top:401px;
  6971. width:102px;
  6972. height:30px;
  6973. display:flex;
  6974. font-size:14px;
  6975. }
  6976. #u96074 .text {
  6977. position:absolute;
  6978. align-self:center;
  6979. padding:2px 2px 2px 2px;
  6980. box-sizing:border-box;
  6981. width:100%;
  6982. }
  6983. #u96074_text {
  6984. border-width:0px;
  6985. word-wrap:break-word;
  6986. text-transform:none;
  6987. visibility:hidden;
  6988. }
  6989. #u96075_img {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:0px;
  6993. top:0px;
  6994. width:101px;
  6995. height:30px;
  6996. }
  6997. #u96075 {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:1013px;
  7001. top:401px;
  7002. width:101px;
  7003. height:30px;
  7004. display:flex;
  7005. font-size:14px;
  7006. }
  7007. #u96075 .text {
  7008. position:absolute;
  7009. align-self:center;
  7010. padding:2px 2px 2px 2px;
  7011. box-sizing:border-box;
  7012. width:100%;
  7013. }
  7014. #u96075_text {
  7015. border-width:0px;
  7016. word-wrap:break-word;
  7017. text-transform:none;
  7018. visibility:hidden;
  7019. }
  7020. #u96076_img {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:0px;
  7024. top:0px;
  7025. width:104px;
  7026. height:30px;
  7027. }
  7028. #u96076 {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:1114px;
  7032. top:401px;
  7033. width:104px;
  7034. height:30px;
  7035. display:flex;
  7036. font-size:14px;
  7037. }
  7038. #u96076 .text {
  7039. position:absolute;
  7040. align-self:center;
  7041. padding:2px 2px 2px 2px;
  7042. box-sizing:border-box;
  7043. width:100%;
  7044. }
  7045. #u96076_text {
  7046. border-width:0px;
  7047. word-wrap:break-word;
  7048. text-transform:none;
  7049. visibility:hidden;
  7050. }
  7051. #u96077_img {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:94px;
  7057. height:30px;
  7058. }
  7059. #u96077 {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:0px;
  7063. top:431px;
  7064. width:94px;
  7065. height:30px;
  7066. display:flex;
  7067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:14px;
  7071. }
  7072. #u96077 .text {
  7073. position:absolute;
  7074. align-self:center;
  7075. padding:2px 2px 2px 2px;
  7076. box-sizing:border-box;
  7077. width:100%;
  7078. }
  7079. #u96077_text {
  7080. border-width:0px;
  7081. word-wrap:break-word;
  7082. text-transform:none;
  7083. visibility:hidden;
  7084. }
  7085. #u96078_img {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:96px;
  7091. height:30px;
  7092. }
  7093. #u96078 {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:94px;
  7097. top:431px;
  7098. width:96px;
  7099. height:30px;
  7100. display:flex;
  7101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7102. font-weight:400;
  7103. font-style:normal;
  7104. font-size:14px;
  7105. }
  7106. #u96078 .text {
  7107. position:absolute;
  7108. align-self:center;
  7109. padding:2px 2px 2px 2px;
  7110. box-sizing:border-box;
  7111. width:100%;
  7112. }
  7113. #u96078_text {
  7114. border-width:0px;
  7115. word-wrap:break-word;
  7116. text-transform:none;
  7117. visibility:hidden;
  7118. }
  7119. #u96079_img {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:0px;
  7123. top:0px;
  7124. width:94px;
  7125. height:30px;
  7126. }
  7127. #u96079 {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:190px;
  7131. top:431px;
  7132. width:94px;
  7133. height:30px;
  7134. display:flex;
  7135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7136. font-weight:400;
  7137. font-style:normal;
  7138. font-size:14px;
  7139. }
  7140. #u96079 .text {
  7141. position:absolute;
  7142. align-self:center;
  7143. padding:2px 2px 2px 2px;
  7144. box-sizing:border-box;
  7145. width:100%;
  7146. }
  7147. #u96079_text {
  7148. border-width:0px;
  7149. word-wrap:break-word;
  7150. text-transform:none;
  7151. visibility:hidden;
  7152. }
  7153. #u96080_img {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:0px;
  7157. top:0px;
  7158. width:114px;
  7159. height:30px;
  7160. }
  7161. #u96080 {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:284px;
  7165. top:431px;
  7166. width:114px;
  7167. height:30px;
  7168. display:flex;
  7169. font-size:14px;
  7170. }
  7171. #u96080 .text {
  7172. position:absolute;
  7173. align-self:center;
  7174. padding:2px 2px 2px 2px;
  7175. box-sizing:border-box;
  7176. width:100%;
  7177. }
  7178. #u96080_text {
  7179. border-width:0px;
  7180. word-wrap:break-word;
  7181. text-transform:none;
  7182. visibility:hidden;
  7183. }
  7184. #u96081_img {
  7185. border-width:0px;
  7186. position:absolute;
  7187. left:0px;
  7188. top:0px;
  7189. width:114px;
  7190. height:30px;
  7191. }
  7192. #u96081 {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:398px;
  7196. top:431px;
  7197. width:114px;
  7198. height:30px;
  7199. display:flex;
  7200. font-size:14px;
  7201. }
  7202. #u96081 .text {
  7203. position:absolute;
  7204. align-self:center;
  7205. padding:2px 2px 2px 2px;
  7206. box-sizing:border-box;
  7207. width:100%;
  7208. }
  7209. #u96081_text {
  7210. border-width:0px;
  7211. word-wrap:break-word;
  7212. text-transform:none;
  7213. visibility:hidden;
  7214. }
  7215. #u96082_img {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:102px;
  7221. height:30px;
  7222. }
  7223. #u96082 {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:512px;
  7227. top:431px;
  7228. width:102px;
  7229. height:30px;
  7230. display:flex;
  7231. font-size:14px;
  7232. }
  7233. #u96082 .text {
  7234. position:absolute;
  7235. align-self:center;
  7236. padding:2px 2px 2px 2px;
  7237. box-sizing:border-box;
  7238. width:100%;
  7239. }
  7240. #u96082_text {
  7241. border-width:0px;
  7242. word-wrap:break-word;
  7243. text-transform:none;
  7244. visibility:hidden;
  7245. }
  7246. #u96083_img {
  7247. border-width:0px;
  7248. position:absolute;
  7249. left:0px;
  7250. top:0px;
  7251. width:101px;
  7252. height:30px;
  7253. }
  7254. #u96083 {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:614px;
  7258. top:431px;
  7259. width:101px;
  7260. height:30px;
  7261. display:flex;
  7262. font-size:14px;
  7263. }
  7264. #u96083 .text {
  7265. position:absolute;
  7266. align-self:center;
  7267. padding:2px 2px 2px 2px;
  7268. box-sizing:border-box;
  7269. width:100%;
  7270. }
  7271. #u96083_text {
  7272. border-width:0px;
  7273. word-wrap:break-word;
  7274. text-transform:none;
  7275. visibility:hidden;
  7276. }
  7277. #u96084_img {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:101px;
  7283. height:30px;
  7284. }
  7285. #u96084 {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:715px;
  7289. top:431px;
  7290. width:101px;
  7291. height:30px;
  7292. display:flex;
  7293. font-size:14px;
  7294. }
  7295. #u96084 .text {
  7296. position:absolute;
  7297. align-self:center;
  7298. padding:2px 2px 2px 2px;
  7299. box-sizing:border-box;
  7300. width:100%;
  7301. }
  7302. #u96084_text {
  7303. border-width:0px;
  7304. word-wrap:break-word;
  7305. text-transform:none;
  7306. visibility:hidden;
  7307. }
  7308. #u96085_img {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:95px;
  7314. height:30px;
  7315. }
  7316. #u96085 {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:816px;
  7320. top:431px;
  7321. width:95px;
  7322. height:30px;
  7323. display:flex;
  7324. font-size:14px;
  7325. }
  7326. #u96085 .text {
  7327. position:absolute;
  7328. align-self:center;
  7329. padding:2px 2px 2px 2px;
  7330. box-sizing:border-box;
  7331. width:100%;
  7332. }
  7333. #u96085_text {
  7334. border-width:0px;
  7335. word-wrap:break-word;
  7336. text-transform:none;
  7337. visibility:hidden;
  7338. }
  7339. #u96086_img {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:0px;
  7343. top:0px;
  7344. width:102px;
  7345. height:30px;
  7346. }
  7347. #u96086 {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:911px;
  7351. top:431px;
  7352. width:102px;
  7353. height:30px;
  7354. display:flex;
  7355. font-size:14px;
  7356. }
  7357. #u96086 .text {
  7358. position:absolute;
  7359. align-self:center;
  7360. padding:2px 2px 2px 2px;
  7361. box-sizing:border-box;
  7362. width:100%;
  7363. }
  7364. #u96086_text {
  7365. border-width:0px;
  7366. word-wrap:break-word;
  7367. text-transform:none;
  7368. visibility:hidden;
  7369. }
  7370. #u96087_img {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:101px;
  7376. height:30px;
  7377. }
  7378. #u96087 {
  7379. border-width:0px;
  7380. position:absolute;
  7381. left:1013px;
  7382. top:431px;
  7383. width:101px;
  7384. height:30px;
  7385. display:flex;
  7386. font-size:14px;
  7387. }
  7388. #u96087 .text {
  7389. position:absolute;
  7390. align-self:center;
  7391. padding:2px 2px 2px 2px;
  7392. box-sizing:border-box;
  7393. width:100%;
  7394. }
  7395. #u96087_text {
  7396. border-width:0px;
  7397. word-wrap:break-word;
  7398. text-transform:none;
  7399. visibility:hidden;
  7400. }
  7401. #u96088_img {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:0px;
  7405. top:0px;
  7406. width:104px;
  7407. height:30px;
  7408. }
  7409. #u96088 {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:1114px;
  7413. top:431px;
  7414. width:104px;
  7415. height:30px;
  7416. display:flex;
  7417. font-size:14px;
  7418. }
  7419. #u96088 .text {
  7420. position:absolute;
  7421. align-self:center;
  7422. padding:2px 2px 2px 2px;
  7423. box-sizing:border-box;
  7424. width:100%;
  7425. }
  7426. #u96088_text {
  7427. border-width:0px;
  7428. word-wrap:break-word;
  7429. text-transform:none;
  7430. visibility:hidden;
  7431. }
  7432. #u96089_div {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:0px;
  7436. top:0px;
  7437. width:80px;
  7438. height:30px;
  7439. background:inherit;
  7440. background-color:rgba(24, 144, 255, 1);
  7441. border:none;
  7442. border-radius:4px;
  7443. -moz-box-shadow:none;
  7444. -webkit-box-shadow:none;
  7445. box-shadow:none;
  7446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7447. font-weight:400;
  7448. font-style:normal;
  7449. font-size:14px;
  7450. color:#FFFFFF;
  7451. }
  7452. #u96089 {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:353px;
  7456. top:173px;
  7457. width:80px;
  7458. height:30px;
  7459. display:flex;
  7460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7461. font-weight:400;
  7462. font-style:normal;
  7463. font-size:14px;
  7464. color:#FFFFFF;
  7465. }
  7466. #u96089 .text {
  7467. position:absolute;
  7468. align-self:center;
  7469. padding:2px 2px 2px 2px;
  7470. box-sizing:border-box;
  7471. width:100%;
  7472. }
  7473. #u96089_text {
  7474. border-width:0px;
  7475. word-wrap:break-word;
  7476. text-transform:none;
  7477. }
  7478. #u96090 {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:0px;
  7482. top:0px;
  7483. width:0px;
  7484. height:0px;
  7485. }
  7486. #u96091_div {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:140px;
  7492. height:30px;
  7493. background:inherit;
  7494. background-color:rgba(255, 255, 255, 1);
  7495. box-sizing:border-box;
  7496. border-width:1px;
  7497. border-style:solid;
  7498. border-color:rgba(215, 215, 215, 1);
  7499. border-radius:4px;
  7500. -moz-box-shadow:none;
  7501. -webkit-box-shadow:none;
  7502. box-shadow:none;
  7503. font-size:14px;
  7504. }
  7505. #u96091 {
  7506. border-width:0px;
  7507. position:absolute;
  7508. left:511px;
  7509. top:124px;
  7510. width:140px;
  7511. height:30px;
  7512. display:flex;
  7513. font-size:14px;
  7514. }
  7515. #u96091 .text {
  7516. position:absolute;
  7517. align-self:center;
  7518. padding:2px 2px 2px 2px;
  7519. box-sizing:border-box;
  7520. width:100%;
  7521. }
  7522. #u96091_text {
  7523. border-width:0px;
  7524. word-wrap:break-word;
  7525. text-transform:none;
  7526. visibility:hidden;
  7527. }
  7528. #u96092_input {
  7529. position:absolute;
  7530. left:0px;
  7531. top:0px;
  7532. width:134px;
  7533. height:23px;
  7534. padding:2px 2px 2px 2px;
  7535. font-family:'ArialMT', 'Arial', sans-serif;
  7536. font-weight:400;
  7537. font-style:normal;
  7538. font-size:14px;
  7539. letter-spacing:normal;
  7540. color:#AAAAAA;
  7541. vertical-align:none;
  7542. text-align:left;
  7543. text-transform:none;
  7544. background-color:transparent;
  7545. border-color:transparent;
  7546. }
  7547. #u96092_input.disabled {
  7548. position:absolute;
  7549. left:0px;
  7550. top:0px;
  7551. width:134px;
  7552. height:23px;
  7553. padding:2px 2px 2px 2px;
  7554. font-family:'ArialMT', 'Arial', sans-serif;
  7555. font-weight:400;
  7556. font-style:normal;
  7557. font-size:14px;
  7558. letter-spacing:normal;
  7559. color:#AAAAAA;
  7560. vertical-align:none;
  7561. text-align:left;
  7562. text-transform:none;
  7563. background-color:transparent;
  7564. border-color:transparent;
  7565. }
  7566. #u96092_div {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:134px;
  7572. height:23px;
  7573. background:inherit;
  7574. background-color:rgba(255, 255, 255, 1);
  7575. border:none;
  7576. border-radius:0px;
  7577. -moz-box-shadow:none;
  7578. -webkit-box-shadow:none;
  7579. box-shadow:none;
  7580. font-size:14px;
  7581. color:#AAAAAA;
  7582. }
  7583. #u96092 {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:515px;
  7587. top:126px;
  7588. width:134px;
  7589. height:23px;
  7590. display:flex;
  7591. font-size:14px;
  7592. color:#AAAAAA;
  7593. }
  7594. #u96092 .text {
  7595. position:absolute;
  7596. align-self:flex-start;
  7597. padding:2px 2px 2px 2px;
  7598. box-sizing:border-box;
  7599. width:100%;
  7600. }
  7601. #u96092_div.disabled {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:134px;
  7607. height:23px;
  7608. background:inherit;
  7609. background-color:rgba(240, 240, 240, 1);
  7610. border:none;
  7611. border-radius:0px;
  7612. -moz-box-shadow:none;
  7613. -webkit-box-shadow:none;
  7614. box-shadow:none;
  7615. font-size:14px;
  7616. color:#AAAAAA;
  7617. }
  7618. #u96092.disabled {
  7619. }
  7620. .u96092_input_option {
  7621. font-size:14px;
  7622. }
  7623. #u96093 {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:0px;
  7627. top:0px;
  7628. width:0px;
  7629. height:0px;
  7630. }
  7631. #u96094_div {
  7632. border-width:0px;
  7633. position:absolute;
  7634. left:0px;
  7635. top:0px;
  7636. width:140px;
  7637. height:30px;
  7638. background:inherit;
  7639. background-color:rgba(255, 255, 255, 1);
  7640. box-sizing:border-box;
  7641. border-width:1px;
  7642. border-style:solid;
  7643. border-color:rgba(215, 215, 215, 1);
  7644. border-radius:4px;
  7645. -moz-box-shadow:none;
  7646. -webkit-box-shadow:none;
  7647. box-shadow:none;
  7648. font-size:14px;
  7649. }
  7650. #u96094 {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:811px;
  7654. top:124px;
  7655. width:140px;
  7656. height:30px;
  7657. display:flex;
  7658. font-size:14px;
  7659. }
  7660. #u96094 .text {
  7661. position:absolute;
  7662. align-self:center;
  7663. padding:2px 2px 2px 2px;
  7664. box-sizing:border-box;
  7665. width:100%;
  7666. }
  7667. #u96094_text {
  7668. border-width:0px;
  7669. word-wrap:break-word;
  7670. text-transform:none;
  7671. visibility:hidden;
  7672. }
  7673. #u96095_input {
  7674. position:absolute;
  7675. left:0px;
  7676. top:0px;
  7677. width:134px;
  7678. height:23px;
  7679. padding:2px 2px 2px 2px;
  7680. font-family:'ArialMT', 'Arial', sans-serif;
  7681. font-weight:400;
  7682. font-style:normal;
  7683. font-size:14px;
  7684. letter-spacing:normal;
  7685. color:#AAAAAA;
  7686. vertical-align:none;
  7687. text-align:left;
  7688. text-transform:none;
  7689. background-color:transparent;
  7690. border-color:transparent;
  7691. }
  7692. #u96095_input.disabled {
  7693. position:absolute;
  7694. left:0px;
  7695. top:0px;
  7696. width:134px;
  7697. height:23px;
  7698. padding:2px 2px 2px 2px;
  7699. font-family:'ArialMT', 'Arial', sans-serif;
  7700. font-weight:400;
  7701. font-style:normal;
  7702. font-size:14px;
  7703. letter-spacing:normal;
  7704. color:#AAAAAA;
  7705. vertical-align:none;
  7706. text-align:left;
  7707. text-transform:none;
  7708. background-color:transparent;
  7709. border-color:transparent;
  7710. }
  7711. #u96095_div {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:0px;
  7715. top:0px;
  7716. width:134px;
  7717. height:23px;
  7718. background:inherit;
  7719. background-color:rgba(255, 255, 255, 1);
  7720. border:none;
  7721. border-radius:0px;
  7722. -moz-box-shadow:none;
  7723. -webkit-box-shadow:none;
  7724. box-shadow:none;
  7725. font-size:14px;
  7726. color:#AAAAAA;
  7727. }
  7728. #u96095 {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:815px;
  7732. top:126px;
  7733. width:134px;
  7734. height:23px;
  7735. display:flex;
  7736. font-size:14px;
  7737. color:#AAAAAA;
  7738. }
  7739. #u96095 .text {
  7740. position:absolute;
  7741. align-self:flex-start;
  7742. padding:2px 2px 2px 2px;
  7743. box-sizing:border-box;
  7744. width:100%;
  7745. }
  7746. #u96095_div.disabled {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:134px;
  7752. height:23px;
  7753. background:inherit;
  7754. background-color:rgba(240, 240, 240, 1);
  7755. border:none;
  7756. border-radius:0px;
  7757. -moz-box-shadow:none;
  7758. -webkit-box-shadow:none;
  7759. box-shadow:none;
  7760. font-size:14px;
  7761. color:#AAAAAA;
  7762. }
  7763. #u96095.disabled {
  7764. }
  7765. .u96095_input_option {
  7766. font-size:14px;
  7767. }
  7768. #u96096 {
  7769. border-width:0px;
  7770. position:absolute;
  7771. left:0px;
  7772. top:0px;
  7773. width:0px;
  7774. height:0px;
  7775. }
  7776. #u96097_div {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:0px;
  7780. top:0px;
  7781. width:60px;
  7782. height:30px;
  7783. background:inherit;
  7784. background-color:rgba(24, 144, 255, 1);
  7785. border:none;
  7786. border-radius:4px;
  7787. -moz-box-shadow:none;
  7788. -webkit-box-shadow:none;
  7789. box-shadow:none;
  7790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7791. font-weight:400;
  7792. font-style:normal;
  7793. font-size:14px;
  7794. color:#FFFFFF;
  7795. }
  7796. #u96097 {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:961px;
  7800. top:124px;
  7801. width:60px;
  7802. height:30px;
  7803. display:flex;
  7804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7805. font-weight:400;
  7806. font-style:normal;
  7807. font-size:14px;
  7808. color:#FFFFFF;
  7809. }
  7810. #u96097 .text {
  7811. position:absolute;
  7812. align-self:center;
  7813. padding:2px 2px 2px 2px;
  7814. box-sizing:border-box;
  7815. width:100%;
  7816. }
  7817. #u96097_text {
  7818. border-width:0px;
  7819. word-wrap:break-word;
  7820. text-transform:none;
  7821. }
  7822. #u96098_div {
  7823. border-width:0px;
  7824. position:absolute;
  7825. left:0px;
  7826. top:0px;
  7827. width:60px;
  7828. height:30px;
  7829. background:inherit;
  7830. background-color:rgba(255, 255, 255, 1);
  7831. box-sizing:border-box;
  7832. border-width:1px;
  7833. border-style:solid;
  7834. border-color:rgba(170, 170, 170, 1);
  7835. border-radius:4px;
  7836. -moz-box-shadow:none;
  7837. -webkit-box-shadow:none;
  7838. box-shadow:none;
  7839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7840. font-weight:400;
  7841. font-style:normal;
  7842. font-size:14px;
  7843. }
  7844. #u96098 {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:1031px;
  7848. top:124px;
  7849. width:60px;
  7850. height:30px;
  7851. display:flex;
  7852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7853. font-weight:400;
  7854. font-style:normal;
  7855. font-size:14px;
  7856. }
  7857. #u96098 .text {
  7858. position:absolute;
  7859. align-self:center;
  7860. padding:2px 2px 2px 2px;
  7861. box-sizing:border-box;
  7862. width:100%;
  7863. }
  7864. #u96098_text {
  7865. border-width:0px;
  7866. word-wrap:break-word;
  7867. text-transform:none;
  7868. }
  7869. #u96099 {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:0px;
  7873. top:0px;
  7874. width:0px;
  7875. height:0px;
  7876. }
  7877. #u96100_div {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:0px;
  7881. top:0px;
  7882. width:140px;
  7883. height:30px;
  7884. background:inherit;
  7885. background-color:rgba(255, 255, 255, 1);
  7886. box-sizing:border-box;
  7887. border-width:1px;
  7888. border-style:solid;
  7889. border-color:rgba(201, 201, 201, 1);
  7890. border-radius:4px;
  7891. -moz-box-shadow:none;
  7892. -webkit-box-shadow:none;
  7893. box-shadow:none;
  7894. font-family:'Microsoft YaHei', sans-serif;
  7895. font-weight:400;
  7896. font-style:normal;
  7897. font-size:14px;
  7898. color:#CCCCCC;
  7899. text-align:left;
  7900. }
  7901. #u96100 {
  7902. border-width:0px;
  7903. position:absolute;
  7904. left:661px;
  7905. top:124px;
  7906. width:140px;
  7907. height:30px;
  7908. display:flex;
  7909. font-family:'Microsoft YaHei', sans-serif;
  7910. font-weight:400;
  7911. font-style:normal;
  7912. font-size:14px;
  7913. color:#CCCCCC;
  7914. text-align:left;
  7915. }
  7916. #u96100 .text {
  7917. position:absolute;
  7918. align-self:center;
  7919. padding:2px 8px 2px 8px;
  7920. box-sizing:border-box;
  7921. width:100%;
  7922. }
  7923. #u96100_text {
  7924. border-width:0px;
  7925. word-wrap:break-word;
  7926. text-transform:none;
  7927. visibility:hidden;
  7928. }
  7929. #u96101_input {
  7930. position:absolute;
  7931. left:0px;
  7932. top:0px;
  7933. width:127px;
  7934. height:25px;
  7935. padding:2px 2px 2px 2px;
  7936. font-family:'Microsoft YaHei', sans-serif;
  7937. font-weight:400;
  7938. font-style:normal;
  7939. font-size:10px;
  7940. letter-spacing:normal;
  7941. color:#000000;
  7942. vertical-align:none;
  7943. text-align:left;
  7944. text-transform:none;
  7945. background-color:transparent;
  7946. border-color:transparent;
  7947. }
  7948. #u96101_input.disabled {
  7949. position:absolute;
  7950. left:0px;
  7951. top:0px;
  7952. width:127px;
  7953. height:25px;
  7954. padding:2px 2px 2px 2px;
  7955. font-family:'Microsoft YaHei', sans-serif;
  7956. font-weight:400;
  7957. font-style:normal;
  7958. font-size:10px;
  7959. letter-spacing:normal;
  7960. color:#000000;
  7961. vertical-align:none;
  7962. text-align:left;
  7963. text-transform:none;
  7964. background-color:transparent;
  7965. border-color:transparent;
  7966. }
  7967. #u96101_div {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:0px;
  7971. top:0px;
  7972. width:127px;
  7973. height:25px;
  7974. background:inherit;
  7975. background-color:rgba(255, 255, 255, 1);
  7976. border:none;
  7977. border-radius:0px;
  7978. -moz-box-shadow:none;
  7979. -webkit-box-shadow:none;
  7980. box-shadow:none;
  7981. font-family:'Microsoft YaHei', sans-serif;
  7982. font-weight:400;
  7983. font-style:normal;
  7984. font-size:10px;
  7985. }
  7986. #u96101 {
  7987. border-width:0px;
  7988. position:absolute;
  7989. left:669px;
  7990. top:125px;
  7991. width:127px;
  7992. height:25px;
  7993. display:flex;
  7994. font-family:'Microsoft YaHei', sans-serif;
  7995. font-weight:400;
  7996. font-style:normal;
  7997. font-size:10px;
  7998. }
  7999. #u96101 .text {
  8000. position:absolute;
  8001. align-self:center;
  8002. padding:2px 2px 2px 2px;
  8003. box-sizing:border-box;
  8004. width:100%;
  8005. }
  8006. #u96101_div.disabled {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:0px;
  8010. top:0px;
  8011. width:127px;
  8012. height:25px;
  8013. background:inherit;
  8014. background-color:rgba(240, 240, 240, 1);
  8015. border:none;
  8016. border-radius:0px;
  8017. -moz-box-shadow:none;
  8018. -webkit-box-shadow:none;
  8019. box-shadow:none;
  8020. font-family:'Microsoft YaHei', sans-serif;
  8021. font-weight:400;
  8022. font-style:normal;
  8023. font-size:10px;
  8024. }
  8025. #u96101.disabled {
  8026. }
  8027. #u96102 {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:0px;
  8033. height:0px;
  8034. }
  8035. #u96103_div {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:0px;
  8039. top:0px;
  8040. width:140px;
  8041. height:30px;
  8042. background:inherit;
  8043. background-color:rgba(255, 255, 255, 1);
  8044. box-sizing:border-box;
  8045. border-width:1px;
  8046. border-style:solid;
  8047. border-color:rgba(215, 215, 215, 1);
  8048. border-radius:4px;
  8049. -moz-box-shadow:none;
  8050. -webkit-box-shadow:none;
  8051. box-shadow:none;
  8052. font-size:14px;
  8053. }
  8054. #u96103 {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:353px;
  8058. top:120px;
  8059. width:140px;
  8060. height:30px;
  8061. display:flex;
  8062. font-size:14px;
  8063. }
  8064. #u96103 .text {
  8065. position:absolute;
  8066. align-self:center;
  8067. padding:2px 2px 2px 2px;
  8068. box-sizing:border-box;
  8069. width:100%;
  8070. }
  8071. #u96103_text {
  8072. border-width:0px;
  8073. word-wrap:break-word;
  8074. text-transform:none;
  8075. visibility:hidden;
  8076. }
  8077. #u96104_input {
  8078. position:absolute;
  8079. left:0px;
  8080. top:0px;
  8081. width:134px;
  8082. height:23px;
  8083. padding:2px 2px 2px 2px;
  8084. font-family:'ArialMT', 'Arial', sans-serif;
  8085. font-weight:400;
  8086. font-style:normal;
  8087. font-size:14px;
  8088. letter-spacing:normal;
  8089. color:#AAAAAA;
  8090. vertical-align:none;
  8091. text-align:left;
  8092. text-transform:none;
  8093. background-color:transparent;
  8094. border-color:transparent;
  8095. }
  8096. #u96104_input.disabled {
  8097. position:absolute;
  8098. left:0px;
  8099. top:0px;
  8100. width:134px;
  8101. height:23px;
  8102. padding:2px 2px 2px 2px;
  8103. font-family:'ArialMT', 'Arial', sans-serif;
  8104. font-weight:400;
  8105. font-style:normal;
  8106. font-size:14px;
  8107. letter-spacing:normal;
  8108. color:#AAAAAA;
  8109. vertical-align:none;
  8110. text-align:left;
  8111. text-transform:none;
  8112. background-color:transparent;
  8113. border-color:transparent;
  8114. }
  8115. #u96104_div {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:0px;
  8119. top:0px;
  8120. width:134px;
  8121. height:23px;
  8122. background:inherit;
  8123. background-color:rgba(255, 255, 255, 1);
  8124. border:none;
  8125. border-radius:0px;
  8126. -moz-box-shadow:none;
  8127. -webkit-box-shadow:none;
  8128. box-shadow:none;
  8129. font-size:14px;
  8130. color:#AAAAAA;
  8131. }
  8132. #u96104 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:357px;
  8136. top:122px;
  8137. width:134px;
  8138. height:23px;
  8139. display:flex;
  8140. font-size:14px;
  8141. color:#AAAAAA;
  8142. }
  8143. #u96104 .text {
  8144. position:absolute;
  8145. align-self:flex-start;
  8146. padding:2px 2px 2px 2px;
  8147. box-sizing:border-box;
  8148. width:100%;
  8149. }
  8150. #u96104_div.disabled {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:0px;
  8154. top:0px;
  8155. width:134px;
  8156. height:23px;
  8157. background:inherit;
  8158. background-color:rgba(240, 240, 240, 1);
  8159. border:none;
  8160. border-radius:0px;
  8161. -moz-box-shadow:none;
  8162. -webkit-box-shadow:none;
  8163. box-shadow:none;
  8164. font-size:14px;
  8165. color:#AAAAAA;
  8166. }
  8167. #u96104.disabled {
  8168. }
  8169. .u96104_input_option {
  8170. font-size:14px;
  8171. }
  8172. #u96105_div {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:0px;
  8176. top:0px;
  8177. width:1178px;
  8178. height:200px;
  8179. background:inherit;
  8180. background-color:rgba(255, 255, 255, 0);
  8181. border:none;
  8182. border-radius:0px;
  8183. -moz-box-shadow:none;
  8184. -webkit-box-shadow:none;
  8185. box-shadow:none;
  8186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8187. font-weight:400;
  8188. font-style:normal;
  8189. font-size:18px;
  8190. color:#D9001B;
  8191. line-height:40px;
  8192. }
  8193. #u96105 {
  8194. border-width:0px;
  8195. position:absolute;
  8196. left:373px;
  8197. top:712px;
  8198. width:1178px;
  8199. height:200px;
  8200. display:flex;
  8201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8202. font-weight:400;
  8203. font-style:normal;
  8204. font-size:18px;
  8205. color:#D9001B;
  8206. line-height:40px;
  8207. }
  8208. #u96105 .text {
  8209. position:absolute;
  8210. align-self:flex-start;
  8211. padding:0px 0px 0px 0px;
  8212. box-sizing:border-box;
  8213. width:100%;
  8214. }
  8215. #u96105_text {
  8216. border-width:0px;
  8217. white-space:nowrap;
  8218. text-transform:none;
  8219. }
  8220. #u96106 {
  8221. border-width:0px;
  8222. position:absolute;
  8223. left:0px;
  8224. top:0px;
  8225. width:0px;
  8226. height:0px;
  8227. }
  8228. #u96107_div {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:0px;
  8232. top:0px;
  8233. width:200px;
  8234. height:1180px;
  8235. background:inherit;
  8236. background-color:rgba(255, 255, 255, 1);
  8237. border:none;
  8238. border-radius:0px;
  8239. -moz-box-shadow:none;
  8240. -webkit-box-shadow:none;
  8241. box-shadow:none;
  8242. }
  8243. #u96107 {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:120px;
  8247. top:50px;
  8248. width:200px;
  8249. height:1180px;
  8250. display:flex;
  8251. }
  8252. #u96107 .text {
  8253. position:absolute;
  8254. align-self:center;
  8255. padding:2px 2px 2px 2px;
  8256. box-sizing:border-box;
  8257. width:100%;
  8258. }
  8259. #u96107_text {
  8260. border-width:0px;
  8261. word-wrap:break-word;
  8262. text-transform:none;
  8263. visibility:hidden;
  8264. }
  8265. #u96108_div {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:0px;
  8269. top:0px;
  8270. width:200px;
  8271. height:60px;
  8272. background:inherit;
  8273. background-color:rgba(224, 231, 247, 1);
  8274. border:none;
  8275. border-radius:0px;
  8276. -moz-box-shadow:none;
  8277. -webkit-box-shadow:none;
  8278. box-shadow:none;
  8279. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8280. font-weight:500;
  8281. font-style:normal;
  8282. font-size:18px;
  8283. }
  8284. #u96108 {
  8285. border-width:0px;
  8286. position:absolute;
  8287. left:120px;
  8288. top:50px;
  8289. width:200px;
  8290. height:60px;
  8291. display:flex;
  8292. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8293. font-weight:500;
  8294. font-style:normal;
  8295. font-size:18px;
  8296. }
  8297. #u96108 .text {
  8298. position:absolute;
  8299. align-self:center;
  8300. padding:0px 0px 0px 20px;
  8301. box-sizing:border-box;
  8302. width:100%;
  8303. }
  8304. #u96108_text {
  8305. border-width:0px;
  8306. word-wrap:break-word;
  8307. text-transform:none;
  8308. }
  8309. #u96109_div {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:65px;
  8315. height:22px;
  8316. background:inherit;
  8317. background-color:rgba(255, 255, 255, 0);
  8318. border:none;
  8319. border-radius:0px;
  8320. -moz-box-shadow:none;
  8321. -webkit-box-shadow:none;
  8322. box-shadow:none;
  8323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8324. font-weight:400;
  8325. font-style:normal;
  8326. font-size:16px;
  8327. }
  8328. #u96109 {
  8329. border-width:0px;
  8330. position:absolute;
  8331. left:143px;
  8332. top:163px;
  8333. width:65px;
  8334. height:22px;
  8335. display:flex;
  8336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8337. font-weight:400;
  8338. font-style:normal;
  8339. font-size:16px;
  8340. }
  8341. #u96109 .text {
  8342. position:absolute;
  8343. align-self:flex-start;
  8344. padding:0px 0px 0px 0px;
  8345. box-sizing:border-box;
  8346. width:100%;
  8347. }
  8348. #u96109_text {
  8349. border-width:0px;
  8350. white-space:nowrap;
  8351. text-transform:none;
  8352. }
  8353. #u96110_div {
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:0px;
  8357. top:0px;
  8358. width:49px;
  8359. height:17px;
  8360. background:inherit;
  8361. background-color:rgba(255, 255, 255, 0);
  8362. border:none;
  8363. border-radius:0px;
  8364. -moz-box-shadow:none;
  8365. -webkit-box-shadow:none;
  8366. box-shadow:none;
  8367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8368. font-weight:400;
  8369. font-style:normal;
  8370. font-size:12px;
  8371. color:#AAAAAA;
  8372. }
  8373. #u96110 {
  8374. border-width:0px;
  8375. position:absolute;
  8376. left:143px;
  8377. top:130px;
  8378. width:49px;
  8379. height:17px;
  8380. display:flex;
  8381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8382. font-weight:400;
  8383. font-style:normal;
  8384. font-size:12px;
  8385. color:#AAAAAA;
  8386. }
  8387. #u96110 .text {
  8388. position:absolute;
  8389. align-self:flex-start;
  8390. padding:0px 0px 0px 0px;
  8391. box-sizing:border-box;
  8392. width:100%;
  8393. }
  8394. #u96110_text {
  8395. border-width:0px;
  8396. white-space:nowrap;
  8397. text-transform:none;
  8398. }
  8399. #u96111_div {
  8400. border-width:0px;
  8401. position:absolute;
  8402. left:0px;
  8403. top:0px;
  8404. width:65px;
  8405. height:22px;
  8406. background:inherit;
  8407. background-color:rgba(255, 255, 255, 0);
  8408. border:none;
  8409. border-radius:0px;
  8410. -moz-box-shadow:none;
  8411. -webkit-box-shadow:none;
  8412. box-shadow:none;
  8413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8414. font-weight:400;
  8415. font-style:normal;
  8416. font-size:16px;
  8417. }
  8418. #u96111 {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:143px;
  8422. top:205px;
  8423. width:65px;
  8424. height:22px;
  8425. display:flex;
  8426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8427. font-weight:400;
  8428. font-style:normal;
  8429. font-size:16px;
  8430. }
  8431. #u96111 .text {
  8432. position:absolute;
  8433. align-self:flex-start;
  8434. padding:0px 0px 0px 0px;
  8435. box-sizing:border-box;
  8436. width:100%;
  8437. }
  8438. #u96111_text {
  8439. border-width:0px;
  8440. white-space:nowrap;
  8441. text-transform:none;
  8442. }
  8443. #u96112_div {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:0px;
  8447. top:0px;
  8448. width:65px;
  8449. height:22px;
  8450. background:inherit;
  8451. background-color:rgba(255, 255, 255, 0);
  8452. border:none;
  8453. border-radius:0px;
  8454. -moz-box-shadow:none;
  8455. -webkit-box-shadow:none;
  8456. box-shadow:none;
  8457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8458. font-weight:400;
  8459. font-style:normal;
  8460. font-size:16px;
  8461. }
  8462. #u96112 {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:143px;
  8466. top:247px;
  8467. width:65px;
  8468. height:22px;
  8469. display:flex;
  8470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8471. font-weight:400;
  8472. font-style:normal;
  8473. font-size:16px;
  8474. }
  8475. #u96112 .text {
  8476. position:absolute;
  8477. align-self:flex-start;
  8478. padding:0px 0px 0px 0px;
  8479. box-sizing:border-box;
  8480. width:100%;
  8481. }
  8482. #u96112_text {
  8483. border-width:0px;
  8484. white-space:nowrap;
  8485. text-transform:none;
  8486. }
  8487. #u96113_div {
  8488. border-width:0px;
  8489. position:absolute;
  8490. left:0px;
  8491. top:0px;
  8492. width:65px;
  8493. height:22px;
  8494. background:inherit;
  8495. background-color:rgba(255, 255, 255, 0);
  8496. border:none;
  8497. border-radius:0px;
  8498. -moz-box-shadow:none;
  8499. -webkit-box-shadow:none;
  8500. box-shadow:none;
  8501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8502. font-weight:400;
  8503. font-style:normal;
  8504. font-size:16px;
  8505. }
  8506. #u96113 {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:143px;
  8510. top:342px;
  8511. width:65px;
  8512. height:22px;
  8513. display:flex;
  8514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. font-size:16px;
  8518. }
  8519. #u96113 .text {
  8520. position:absolute;
  8521. align-self:flex-start;
  8522. padding:0px 0px 0px 0px;
  8523. box-sizing:border-box;
  8524. width:100%;
  8525. }
  8526. #u96113_text {
  8527. border-width:0px;
  8528. white-space:nowrap;
  8529. text-transform:none;
  8530. }
  8531. #u96114_img {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:0px;
  8535. top:0px;
  8536. width:201px;
  8537. height:2px;
  8538. }
  8539. #u96114 {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:120px;
  8543. top:289px;
  8544. width:200px;
  8545. height:1px;
  8546. display:flex;
  8547. }
  8548. #u96114 .text {
  8549. position:absolute;
  8550. align-self:center;
  8551. padding:2px 2px 2px 2px;
  8552. box-sizing:border-box;
  8553. width:100%;
  8554. }
  8555. #u96114_text {
  8556. border-width:0px;
  8557. word-wrap:break-word;
  8558. text-transform:none;
  8559. visibility:hidden;
  8560. }
  8561. #u96115_div {
  8562. border-width:0px;
  8563. position:absolute;
  8564. left:0px;
  8565. top:0px;
  8566. width:49px;
  8567. height:17px;
  8568. background:inherit;
  8569. background-color:rgba(255, 255, 255, 0);
  8570. border:none;
  8571. border-radius:0px;
  8572. -moz-box-shadow:none;
  8573. -webkit-box-shadow:none;
  8574. box-shadow:none;
  8575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8576. font-weight:400;
  8577. font-style:normal;
  8578. font-size:12px;
  8579. color:#AAAAAA;
  8580. }
  8581. #u96115 {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:143px;
  8585. top:309px;
  8586. width:49px;
  8587. height:17px;
  8588. display:flex;
  8589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8590. font-weight:400;
  8591. font-style:normal;
  8592. font-size:12px;
  8593. color:#AAAAAA;
  8594. }
  8595. #u96115 .text {
  8596. position:absolute;
  8597. align-self:flex-start;
  8598. padding:0px 0px 0px 0px;
  8599. box-sizing:border-box;
  8600. width:100%;
  8601. }
  8602. #u96115_text {
  8603. border-width:0px;
  8604. white-space:nowrap;
  8605. text-transform:none;
  8606. }
  8607. #u96116_div {
  8608. border-width:0px;
  8609. position:absolute;
  8610. left:0px;
  8611. top:0px;
  8612. width:65px;
  8613. height:22px;
  8614. background:inherit;
  8615. background-color:rgba(255, 255, 255, 0);
  8616. border:none;
  8617. border-radius:0px;
  8618. -moz-box-shadow:none;
  8619. -webkit-box-shadow:none;
  8620. box-shadow:none;
  8621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8622. font-weight:400;
  8623. font-style:normal;
  8624. font-size:16px;
  8625. }
  8626. #u96116 {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:143px;
  8630. top:384px;
  8631. width:65px;
  8632. height:22px;
  8633. display:flex;
  8634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8635. font-weight:400;
  8636. font-style:normal;
  8637. font-size:16px;
  8638. }
  8639. #u96116 .text {
  8640. position:absolute;
  8641. align-self:flex-start;
  8642. padding:0px 0px 0px 0px;
  8643. box-sizing:border-box;
  8644. width:100%;
  8645. }
  8646. #u96116_text {
  8647. border-width:0px;
  8648. white-space:nowrap;
  8649. text-transform:none;
  8650. }
  8651. #u96117_div {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:60px;
  8657. height:30px;
  8658. background:inherit;
  8659. background-color:rgba(255, 255, 255, 1);
  8660. box-sizing:border-box;
  8661. border-width:1px;
  8662. border-style:solid;
  8663. border-color:rgba(170, 170, 170, 1);
  8664. border-radius:4px;
  8665. -moz-box-shadow:none;
  8666. -webkit-box-shadow:none;
  8667. box-shadow:none;
  8668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8669. font-weight:400;
  8670. font-style:normal;
  8671. font-size:14px;
  8672. }
  8673. #u96117 {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:443px;
  8677. top:173px;
  8678. width:60px;
  8679. height:30px;
  8680. display:flex;
  8681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8682. font-weight:400;
  8683. font-style:normal;
  8684. font-size:14px;
  8685. }
  8686. #u96117 .text {
  8687. position:absolute;
  8688. align-self:center;
  8689. padding:2px 2px 2px 2px;
  8690. box-sizing:border-box;
  8691. width:100%;
  8692. }
  8693. #u96117_text {
  8694. border-width:0px;
  8695. word-wrap:break-word;
  8696. text-transform:none;
  8697. }