styles.css 119 KB

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