styles.css 124 KB

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