styles.css 120 KB

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