styles.css 120 KB

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