styles.css 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722
  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. #u92885_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. #u92885 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u92885 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u92885_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u92886_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. #u92886 {
  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. #u92886 .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. #u92886_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u92887_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. #u92887 {
  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. #u92887 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u92887_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u92888 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u92889_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u92889 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u92889 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u92889_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u92890_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. #u92890 {
  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. #u92890 .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. #u92890_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u92891_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. #u92891 {
  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. #u92891 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u92891_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u92892 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u92893_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. #u92893 {
  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. #u92893 .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. #u92893_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u92894_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u92894 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u92894 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u92894_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u92895 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u92896_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. #u92896 {
  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. #u92896 .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. #u92896_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u92897_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u92897 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u92897 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u92897_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u92898 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u92899_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. #u92899 {
  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. #u92899 .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. #u92899_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u92900_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u92900 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u92900 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u92900_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u92901 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u92902_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. #u92902 {
  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. #u92902 .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. #u92902_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u92903_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u92903 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u92903 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u92903_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u92904 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u92905_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. #u92905 {
  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. #u92905 .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. #u92905_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u92906_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u92906 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u92906 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u92906_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u92907 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u92908_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. #u92908 {
  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. #u92908 .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. #u92908_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u92909_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u92909 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u92909 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u92909_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u92910 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u92911_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. #u92911 {
  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. #u92911 .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. #u92911_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u92912_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u92912 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u92912 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u92912_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u92913 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u92914_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. #u92914 {
  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. #u92914 .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. #u92914_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u92915_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u92915 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u92915 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u92915_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u92916 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u92917_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. #u92917 {
  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. #u92917 .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. #u92917_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u92918_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u92918 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u92918 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u92918_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u92919_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. #u92919 {
  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. #u92919 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u92919_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u92920_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u92920 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u92920 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u92920_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u92921_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. #u92921 {
  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. #u92921 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u92921_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u92922_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u92922 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u92922 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u92922_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u92923 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u92924_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. #u92924 {
  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. #u92924 .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. #u92924_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u92925_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u92925 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u92925 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u92925_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u92926 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u92927_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. #u92927 {
  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. #u92927 .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. #u92927_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u92928_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u92928 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u92928 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u92928_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u92929 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u92930_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. #u92930_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. #u92930_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. #u92930 {
  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. #u92930 .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. #u92930_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. #u92930.disabled {
  1428. }
  1429. .u92930_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u92931_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u92931 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u92931 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u92931_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u92932_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. #u92932 {
  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. #u92932 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u92932_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u92933_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u92933 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u92933 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u92933_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u92934_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. #u92934 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1259px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u92934 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u92934_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u92935 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:350px;
  1579. top:232px;
  1580. width:1219px;
  1581. height:313px;
  1582. }
  1583. #u92936_img {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:194px;
  1589. height:35px;
  1590. }
  1591. #u92936 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:194px;
  1597. height:35px;
  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. #u92936 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:2px 2px 2px 0px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u92936_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. }
  1617. #u92937_img {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:119px;
  1623. height:35px;
  1624. }
  1625. #u92937 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:194px;
  1629. top:0px;
  1630. width:119px;
  1631. height:35px;
  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. #u92937 .text {
  1640. position:absolute;
  1641. align-self:center;
  1642. padding:2px 2px 2px 0px;
  1643. box-sizing:border-box;
  1644. width:100%;
  1645. }
  1646. #u92937_text {
  1647. border-width:0px;
  1648. word-wrap:break-word;
  1649. text-transform:none;
  1650. }
  1651. #u92938_img {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:113px;
  1657. height:35px;
  1658. }
  1659. #u92938 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:313px;
  1663. top:0px;
  1664. width:113px;
  1665. height:35px;
  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. #u92938 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 0px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u92938_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. }
  1685. #u92939_img {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:113px;
  1691. height:35px;
  1692. }
  1693. #u92939 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:426px;
  1697. top:0px;
  1698. width:113px;
  1699. height:35px;
  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. #u92939 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u92939_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. }
  1719. #u92940_img {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:113px;
  1725. height:35px;
  1726. }
  1727. #u92940 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:539px;
  1731. top:0px;
  1732. width:113px;
  1733. height:35px;
  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. #u92940 .text {
  1742. position:absolute;
  1743. align-self:center;
  1744. padding:2px 2px 2px 0px;
  1745. box-sizing:border-box;
  1746. width:100%;
  1747. }
  1748. #u92940_text {
  1749. border-width:0px;
  1750. word-wrap:break-word;
  1751. text-transform:none;
  1752. }
  1753. #u92941_img {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:113px;
  1759. height:35px;
  1760. }
  1761. #u92941 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:652px;
  1765. top:0px;
  1766. width:113px;
  1767. height:35px;
  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. #u92941 .text {
  1776. position:absolute;
  1777. align-self:center;
  1778. padding:2px 2px 2px 0px;
  1779. box-sizing:border-box;
  1780. width:100%;
  1781. }
  1782. #u92941_text {
  1783. border-width:0px;
  1784. word-wrap:break-word;
  1785. text-transform:none;
  1786. }
  1787. #u92942_img {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:113px;
  1793. height:35px;
  1794. }
  1795. #u92942 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:765px;
  1799. top:0px;
  1800. width:113px;
  1801. height:35px;
  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. #u92942 .text {
  1810. position:absolute;
  1811. align-self:center;
  1812. padding:2px 2px 2px 0px;
  1813. box-sizing:border-box;
  1814. width:100%;
  1815. }
  1816. #u92942_text {
  1817. border-width:0px;
  1818. word-wrap:break-word;
  1819. text-transform:none;
  1820. }
  1821. #u92943_img {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:0px;
  1825. top:0px;
  1826. width:113px;
  1827. height:35px;
  1828. }
  1829. #u92943 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:878px;
  1833. top:0px;
  1834. width:113px;
  1835. height:35px;
  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. #u92943 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u92943_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. }
  1855. #u92944_img {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:122px;
  1861. height:35px;
  1862. }
  1863. #u92944 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:991px;
  1867. top:0px;
  1868. width:122px;
  1869. height:35px;
  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. #u92944 .text {
  1878. position:absolute;
  1879. align-self:center;
  1880. padding:2px 2px 2px 0px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u92944_text {
  1885. border-width:0px;
  1886. word-wrap:break-word;
  1887. text-transform:none;
  1888. }
  1889. #u92945_img {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:106px;
  1895. height:35px;
  1896. }
  1897. #u92945 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:1113px;
  1901. top:0px;
  1902. width:106px;
  1903. height:35px;
  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. #u92945 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 0px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u92945_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. }
  1923. #u92946_img {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:194px;
  1929. height:44px;
  1930. }
  1931. #u92946 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:35px;
  1936. width:194px;
  1937. height:44px;
  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:#333333;
  1944. line-height:40px;
  1945. }
  1946. #u92946 .text {
  1947. position:absolute;
  1948. align-self:center;
  1949. padding:2px 2px 2px 0px;
  1950. box-sizing:border-box;
  1951. width:100%;
  1952. }
  1953. #u92946_text {
  1954. border-width:0px;
  1955. word-wrap:break-word;
  1956. text-transform:none;
  1957. }
  1958. #u92947_img {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:119px;
  1964. height:44px;
  1965. }
  1966. #u92947 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:194px;
  1970. top:35px;
  1971. width:119px;
  1972. height:44px;
  1973. display:flex;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:12px;
  1978. color:#333333;
  1979. line-height:40px;
  1980. }
  1981. #u92947 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u92947_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. visibility:hidden;
  1993. }
  1994. #u92948_img {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:113px;
  2000. height:44px;
  2001. }
  2002. #u92948 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:313px;
  2006. top:35px;
  2007. width:113px;
  2008. height:44px;
  2009. display:flex;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:12px;
  2014. }
  2015. #u92948 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u92948_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. visibility:hidden;
  2027. }
  2028. #u92949_img {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:113px;
  2034. height:44px;
  2035. }
  2036. #u92949 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:426px;
  2040. top:35px;
  2041. width:113px;
  2042. height:44px;
  2043. display:flex;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:12px;
  2048. color:#606266;
  2049. }
  2050. #u92949 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:2px 2px 2px 0px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u92949_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. visibility:hidden;
  2062. }
  2063. #u92950_img {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:113px;
  2069. height:44px;
  2070. }
  2071. #u92950 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:539px;
  2075. top:35px;
  2076. width:113px;
  2077. height:44px;
  2078. display:flex;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:12px;
  2083. color:#333333;
  2084. }
  2085. #u92950 .text {
  2086. position:absolute;
  2087. align-self:center;
  2088. padding:2px 2px 2px 0px;
  2089. box-sizing:border-box;
  2090. width:100%;
  2091. }
  2092. #u92950_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. visibility:hidden;
  2097. }
  2098. #u92951_img {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:0px;
  2102. top:0px;
  2103. width:113px;
  2104. height:44px;
  2105. }
  2106. #u92951 {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:652px;
  2110. top:35px;
  2111. width:113px;
  2112. height:44px;
  2113. display:flex;
  2114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2115. font-weight:400;
  2116. font-style:normal;
  2117. font-size:12px;
  2118. color:#333333;
  2119. }
  2120. #u92951 .text {
  2121. position:absolute;
  2122. align-self:center;
  2123. padding:2px 2px 2px 0px;
  2124. box-sizing:border-box;
  2125. width:100%;
  2126. }
  2127. #u92951_text {
  2128. border-width:0px;
  2129. word-wrap:break-word;
  2130. text-transform:none;
  2131. visibility:hidden;
  2132. }
  2133. #u92952_img {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:113px;
  2139. height:44px;
  2140. }
  2141. #u92952 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:765px;
  2145. top:35px;
  2146. width:113px;
  2147. height:44px;
  2148. display:flex;
  2149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2150. font-weight:400;
  2151. font-style:normal;
  2152. font-size:12px;
  2153. color:#333333;
  2154. }
  2155. #u92952 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:2px 2px 2px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u92952_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. visibility:hidden;
  2167. }
  2168. #u92953_img {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:113px;
  2174. height:44px;
  2175. }
  2176. #u92953 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:878px;
  2180. top:35px;
  2181. width:113px;
  2182. height:44px;
  2183. display:flex;
  2184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. font-size:12px;
  2188. color:#333333;
  2189. }
  2190. #u92953 .text {
  2191. position:absolute;
  2192. align-self:center;
  2193. padding:2px 2px 2px 0px;
  2194. box-sizing:border-box;
  2195. width:100%;
  2196. }
  2197. #u92953_text {
  2198. border-width:0px;
  2199. word-wrap:break-word;
  2200. text-transform:none;
  2201. visibility:hidden;
  2202. }
  2203. #u92954_img {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:122px;
  2209. height:44px;
  2210. }
  2211. #u92954 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:991px;
  2215. top:35px;
  2216. width:122px;
  2217. height:44px;
  2218. display:flex;
  2219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. font-size:12px;
  2223. color:#333333;
  2224. }
  2225. #u92954 .text {
  2226. position:absolute;
  2227. align-self:center;
  2228. padding:2px 2px 2px 0px;
  2229. box-sizing:border-box;
  2230. width:100%;
  2231. }
  2232. #u92954_text {
  2233. border-width:0px;
  2234. word-wrap:break-word;
  2235. text-transform:none;
  2236. visibility:hidden;
  2237. }
  2238. #u92955_img {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:106px;
  2244. height:44px;
  2245. }
  2246. #u92955 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:1113px;
  2250. top:35px;
  2251. width:106px;
  2252. height:44px;
  2253. display:flex;
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:12px;
  2258. color:#298FFF;
  2259. line-height:35px;
  2260. }
  2261. #u92955 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u92955_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. }
  2273. #u92956_img {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:194px;
  2279. height:44px;
  2280. }
  2281. #u92956 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:79px;
  2286. width:194px;
  2287. height:44px;
  2288. display:flex;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:12px;
  2293. color:#333333;
  2294. line-height:40px;
  2295. }
  2296. #u92956 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:2px 2px 2px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u92956_text {
  2304. border-width:0px;
  2305. word-wrap:break-word;
  2306. text-transform:none;
  2307. }
  2308. #u92957_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:119px;
  2314. height:44px;
  2315. }
  2316. #u92957 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:194px;
  2320. top:79px;
  2321. width:119px;
  2322. height:44px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:12px;
  2328. color:#333333;
  2329. line-height:40px;
  2330. }
  2331. #u92957 .text {
  2332. position:absolute;
  2333. align-self:center;
  2334. padding:2px 2px 2px 0px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u92957_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. visibility:hidden;
  2343. }
  2344. #u92958_img {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:113px;
  2350. height:44px;
  2351. }
  2352. #u92958 {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:313px;
  2356. top:79px;
  2357. width:113px;
  2358. height:44px;
  2359. display:flex;
  2360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. font-size:12px;
  2364. }
  2365. #u92958 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:2px 2px 2px 0px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u92958_text {
  2373. border-width:0px;
  2374. word-wrap:break-word;
  2375. text-transform:none;
  2376. visibility:hidden;
  2377. }
  2378. #u92959_img {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:113px;
  2384. height:44px;
  2385. }
  2386. #u92959 {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:426px;
  2390. top:79px;
  2391. width:113px;
  2392. height:44px;
  2393. display:flex;
  2394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:12px;
  2398. color:#606266;
  2399. }
  2400. #u92959 .text {
  2401. position:absolute;
  2402. align-self:center;
  2403. padding:2px 2px 2px 0px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u92959_text {
  2408. border-width:0px;
  2409. word-wrap:break-word;
  2410. text-transform:none;
  2411. visibility:hidden;
  2412. }
  2413. #u92960_img {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:113px;
  2419. height:44px;
  2420. }
  2421. #u92960 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:539px;
  2425. top:79px;
  2426. width:113px;
  2427. height:44px;
  2428. display:flex;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:12px;
  2433. color:#333333;
  2434. }
  2435. #u92960 .text {
  2436. position:absolute;
  2437. align-self:center;
  2438. padding:2px 2px 2px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u92960_text {
  2443. border-width:0px;
  2444. word-wrap:break-word;
  2445. text-transform:none;
  2446. visibility:hidden;
  2447. }
  2448. #u92961_img {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:0px;
  2452. top:0px;
  2453. width:113px;
  2454. height:44px;
  2455. }
  2456. #u92961 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:652px;
  2460. top:79px;
  2461. width:113px;
  2462. height:44px;
  2463. display:flex;
  2464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2465. font-weight:400;
  2466. font-style:normal;
  2467. font-size:12px;
  2468. color:#333333;
  2469. }
  2470. #u92961 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:2px 2px 2px 0px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u92961_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. visibility:hidden;
  2482. }
  2483. #u92962_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:113px;
  2489. height:44px;
  2490. }
  2491. #u92962 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:765px;
  2495. top:79px;
  2496. width:113px;
  2497. height:44px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. color:#333333;
  2504. }
  2505. #u92962 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 0px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u92962_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. visibility:hidden;
  2517. }
  2518. #u92963_img {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:0px;
  2522. top:0px;
  2523. width:113px;
  2524. height:44px;
  2525. }
  2526. #u92963 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:878px;
  2530. top:79px;
  2531. width:113px;
  2532. height:44px;
  2533. display:flex;
  2534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. font-size:12px;
  2538. color:#333333;
  2539. }
  2540. #u92963 .text {
  2541. position:absolute;
  2542. align-self:center;
  2543. padding:2px 2px 2px 0px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u92963_text {
  2548. border-width:0px;
  2549. word-wrap:break-word;
  2550. text-transform:none;
  2551. visibility:hidden;
  2552. }
  2553. #u92964_img {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:122px;
  2559. height:44px;
  2560. }
  2561. #u92964 {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:991px;
  2565. top:79px;
  2566. width:122px;
  2567. height:44px;
  2568. display:flex;
  2569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2570. font-weight:400;
  2571. font-style:normal;
  2572. font-size:12px;
  2573. color:#333333;
  2574. }
  2575. #u92964 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:2px 2px 2px 0px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u92964_text {
  2583. border-width:0px;
  2584. word-wrap:break-word;
  2585. text-transform:none;
  2586. visibility:hidden;
  2587. }
  2588. #u92965_img {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:106px;
  2594. height:44px;
  2595. }
  2596. #u92965 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:1113px;
  2600. top:79px;
  2601. width:106px;
  2602. height:44px;
  2603. display:flex;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:12px;
  2608. color:#1890FF;
  2609. }
  2610. #u92965 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 2px 2px 0px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u92965_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. visibility:hidden;
  2622. }
  2623. #u92966_img {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:194px;
  2629. height:38px;
  2630. }
  2631. #u92966 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:123px;
  2636. width:194px;
  2637. height:38px;
  2638. display:flex;
  2639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2640. font-weight:400;
  2641. font-style:normal;
  2642. font-size:12px;
  2643. color:#333333;
  2644. line-height:40px;
  2645. }
  2646. #u92966 .text {
  2647. position:absolute;
  2648. align-self:center;
  2649. padding:2px 2px 2px 0px;
  2650. box-sizing:border-box;
  2651. width:100%;
  2652. }
  2653. #u92966_text {
  2654. border-width:0px;
  2655. word-wrap:break-word;
  2656. text-transform:none;
  2657. visibility:hidden;
  2658. }
  2659. #u92967_img {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:0px;
  2663. top:0px;
  2664. width:119px;
  2665. height:38px;
  2666. }
  2667. #u92967 {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:194px;
  2671. top:123px;
  2672. width:119px;
  2673. height:38px;
  2674. display:flex;
  2675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2676. font-weight:400;
  2677. font-style:normal;
  2678. font-size:12px;
  2679. color:#333333;
  2680. line-height:40px;
  2681. }
  2682. #u92967 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:2px 2px 2px 0px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u92967_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. visibility:hidden;
  2694. }
  2695. #u92968_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:113px;
  2701. height:38px;
  2702. }
  2703. #u92968 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:313px;
  2707. top:123px;
  2708. width:113px;
  2709. height:38px;
  2710. display:flex;
  2711. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:12px;
  2715. color:#606266;
  2716. }
  2717. #u92968 .text {
  2718. position:absolute;
  2719. align-self:center;
  2720. padding:2px 2px 2px 0px;
  2721. box-sizing:border-box;
  2722. width:100%;
  2723. }
  2724. #u92968_text {
  2725. border-width:0px;
  2726. word-wrap:break-word;
  2727. text-transform:none;
  2728. visibility:hidden;
  2729. }
  2730. #u92969_img {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:113px;
  2736. height:38px;
  2737. }
  2738. #u92969 {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:426px;
  2742. top:123px;
  2743. width:113px;
  2744. height:38px;
  2745. display:flex;
  2746. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2747. font-weight:400;
  2748. font-style:normal;
  2749. font-size:12px;
  2750. color:#606266;
  2751. }
  2752. #u92969 .text {
  2753. position:absolute;
  2754. align-self:center;
  2755. padding:2px 2px 2px 0px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u92969_text {
  2760. border-width:0px;
  2761. word-wrap:break-word;
  2762. text-transform:none;
  2763. visibility:hidden;
  2764. }
  2765. #u92970_img {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:113px;
  2771. height:38px;
  2772. }
  2773. #u92970 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:539px;
  2777. top:123px;
  2778. width:113px;
  2779. height:38px;
  2780. display:flex;
  2781. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. color:#606266;
  2786. }
  2787. #u92970 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 2px 2px 0px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u92970_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. visibility:hidden;
  2799. }
  2800. #u92971_img {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:113px;
  2806. height:38px;
  2807. }
  2808. #u92971 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:652px;
  2812. top:123px;
  2813. width:113px;
  2814. height:38px;
  2815. display:flex;
  2816. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2817. font-weight:400;
  2818. font-style:normal;
  2819. font-size:12px;
  2820. color:#606266;
  2821. }
  2822. #u92971 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 0px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u92971_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. visibility:hidden;
  2834. }
  2835. #u92972_img {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:113px;
  2841. height:38px;
  2842. }
  2843. #u92972 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:765px;
  2847. top:123px;
  2848. width:113px;
  2849. height:38px;
  2850. display:flex;
  2851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:12px;
  2855. color:#606266;
  2856. }
  2857. #u92972 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:2px 2px 2px 0px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u92972_text {
  2865. border-width:0px;
  2866. word-wrap:break-word;
  2867. text-transform:none;
  2868. visibility:hidden;
  2869. }
  2870. #u92973_img {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:113px;
  2876. height:38px;
  2877. }
  2878. #u92973 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:878px;
  2882. top:123px;
  2883. width:113px;
  2884. height:38px;
  2885. display:flex;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:12px;
  2890. color:#606266;
  2891. }
  2892. #u92973 .text {
  2893. position:absolute;
  2894. align-self:center;
  2895. padding:2px 2px 2px 0px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u92973_text {
  2900. border-width:0px;
  2901. word-wrap:break-word;
  2902. text-transform:none;
  2903. visibility:hidden;
  2904. }
  2905. #u92974_img {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:122px;
  2911. height:38px;
  2912. }
  2913. #u92974 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:991px;
  2917. top:123px;
  2918. width:122px;
  2919. height:38px;
  2920. display:flex;
  2921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2922. font-weight:400;
  2923. font-style:normal;
  2924. font-size:12px;
  2925. color:#606266;
  2926. }
  2927. #u92974 .text {
  2928. position:absolute;
  2929. align-self:center;
  2930. padding:2px 2px 2px 0px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u92974_text {
  2935. border-width:0px;
  2936. word-wrap:break-word;
  2937. text-transform:none;
  2938. visibility:hidden;
  2939. }
  2940. #u92975_img {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:106px;
  2946. height:38px;
  2947. }
  2948. #u92975 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:1113px;
  2952. top:123px;
  2953. width:106px;
  2954. height:38px;
  2955. display:flex;
  2956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2957. font-weight:400;
  2958. font-style:normal;
  2959. font-size:12px;
  2960. color:#1890FF;
  2961. }
  2962. #u92975 .text {
  2963. position:absolute;
  2964. align-self:center;
  2965. padding:2px 2px 2px 0px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u92975_text {
  2970. border-width:0px;
  2971. word-wrap:break-word;
  2972. text-transform:none;
  2973. visibility:hidden;
  2974. }
  2975. #u92976_img {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:0px;
  2979. top:0px;
  2980. width:194px;
  2981. height:38px;
  2982. }
  2983. #u92976 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:161px;
  2988. width:194px;
  2989. height:38px;
  2990. display:flex;
  2991. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2992. font-weight:400;
  2993. font-style:normal;
  2994. font-size:12px;
  2995. color:#606266;
  2996. }
  2997. #u92976 .text {
  2998. position:absolute;
  2999. align-self:center;
  3000. padding:2px 2px 2px 0px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u92976_text {
  3005. border-width:0px;
  3006. word-wrap:break-word;
  3007. text-transform:none;
  3008. visibility:hidden;
  3009. }
  3010. #u92977_img {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:119px;
  3016. height:38px;
  3017. }
  3018. #u92977 {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:194px;
  3022. top:161px;
  3023. width:119px;
  3024. height:38px;
  3025. display:flex;
  3026. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3027. font-weight:400;
  3028. font-style:normal;
  3029. font-size:12px;
  3030. color:#606266;
  3031. }
  3032. #u92977 .text {
  3033. position:absolute;
  3034. align-self:center;
  3035. padding:2px 2px 2px 0px;
  3036. box-sizing:border-box;
  3037. width:100%;
  3038. }
  3039. #u92977_text {
  3040. border-width:0px;
  3041. word-wrap:break-word;
  3042. text-transform:none;
  3043. visibility:hidden;
  3044. }
  3045. #u92978_img {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:0px;
  3049. top:0px;
  3050. width:113px;
  3051. height:38px;
  3052. }
  3053. #u92978 {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:313px;
  3057. top:161px;
  3058. width:113px;
  3059. height:38px;
  3060. display:flex;
  3061. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3062. font-weight:400;
  3063. font-style:normal;
  3064. font-size:12px;
  3065. color:#606266;
  3066. }
  3067. #u92978 .text {
  3068. position:absolute;
  3069. align-self:center;
  3070. padding:2px 2px 2px 0px;
  3071. box-sizing:border-box;
  3072. width:100%;
  3073. }
  3074. #u92978_text {
  3075. border-width:0px;
  3076. word-wrap:break-word;
  3077. text-transform:none;
  3078. visibility:hidden;
  3079. }
  3080. #u92979_img {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:0px;
  3084. top:0px;
  3085. width:113px;
  3086. height:38px;
  3087. }
  3088. #u92979 {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:426px;
  3092. top:161px;
  3093. width:113px;
  3094. height:38px;
  3095. display:flex;
  3096. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3097. font-weight:400;
  3098. font-style:normal;
  3099. font-size:12px;
  3100. color:#606266;
  3101. }
  3102. #u92979 .text {
  3103. position:absolute;
  3104. align-self:center;
  3105. padding:2px 2px 2px 0px;
  3106. box-sizing:border-box;
  3107. width:100%;
  3108. }
  3109. #u92979_text {
  3110. border-width:0px;
  3111. word-wrap:break-word;
  3112. text-transform:none;
  3113. visibility:hidden;
  3114. }
  3115. #u92980_img {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:113px;
  3121. height:38px;
  3122. }
  3123. #u92980 {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:539px;
  3127. top:161px;
  3128. width:113px;
  3129. height:38px;
  3130. display:flex;
  3131. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3132. font-weight:400;
  3133. font-style:normal;
  3134. font-size:12px;
  3135. color:#606266;
  3136. }
  3137. #u92980 .text {
  3138. position:absolute;
  3139. align-self:center;
  3140. padding:2px 2px 2px 0px;
  3141. box-sizing:border-box;
  3142. width:100%;
  3143. }
  3144. #u92980_text {
  3145. border-width:0px;
  3146. word-wrap:break-word;
  3147. text-transform:none;
  3148. visibility:hidden;
  3149. }
  3150. #u92981_img {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:113px;
  3156. height:38px;
  3157. }
  3158. #u92981 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:652px;
  3162. top:161px;
  3163. width:113px;
  3164. height:38px;
  3165. display:flex;
  3166. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3167. font-weight:400;
  3168. font-style:normal;
  3169. font-size:12px;
  3170. color:#606266;
  3171. }
  3172. #u92981 .text {
  3173. position:absolute;
  3174. align-self:center;
  3175. padding:2px 2px 2px 0px;
  3176. box-sizing:border-box;
  3177. width:100%;
  3178. }
  3179. #u92981_text {
  3180. border-width:0px;
  3181. word-wrap:break-word;
  3182. text-transform:none;
  3183. visibility:hidden;
  3184. }
  3185. #u92982_img {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:113px;
  3191. height:38px;
  3192. }
  3193. #u92982 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:765px;
  3197. top:161px;
  3198. width:113px;
  3199. height:38px;
  3200. display:flex;
  3201. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. font-size:12px;
  3205. color:#606266;
  3206. }
  3207. #u92982 .text {
  3208. position:absolute;
  3209. align-self:center;
  3210. padding:2px 2px 2px 0px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u92982_text {
  3215. border-width:0px;
  3216. word-wrap:break-word;
  3217. text-transform:none;
  3218. visibility:hidden;
  3219. }
  3220. #u92983_img {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:113px;
  3226. height:38px;
  3227. }
  3228. #u92983 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:878px;
  3232. top:161px;
  3233. width:113px;
  3234. height:38px;
  3235. display:flex;
  3236. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:12px;
  3240. color:#606266;
  3241. }
  3242. #u92983 .text {
  3243. position:absolute;
  3244. align-self:center;
  3245. padding:2px 2px 2px 0px;
  3246. box-sizing:border-box;
  3247. width:100%;
  3248. }
  3249. #u92983_text {
  3250. border-width:0px;
  3251. word-wrap:break-word;
  3252. text-transform:none;
  3253. visibility:hidden;
  3254. }
  3255. #u92984_img {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:122px;
  3261. height:38px;
  3262. }
  3263. #u92984 {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:991px;
  3267. top:161px;
  3268. width:122px;
  3269. height:38px;
  3270. display:flex;
  3271. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3272. font-weight:400;
  3273. font-style:normal;
  3274. font-size:12px;
  3275. color:#606266;
  3276. }
  3277. #u92984 .text {
  3278. position:absolute;
  3279. align-self:center;
  3280. padding:2px 2px 2px 0px;
  3281. box-sizing:border-box;
  3282. width:100%;
  3283. }
  3284. #u92984_text {
  3285. border-width:0px;
  3286. word-wrap:break-word;
  3287. text-transform:none;
  3288. visibility:hidden;
  3289. }
  3290. #u92985_img {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:106px;
  3296. height:38px;
  3297. }
  3298. #u92985 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:1113px;
  3302. top:161px;
  3303. width:106px;
  3304. height:38px;
  3305. display:flex;
  3306. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. font-size:12px;
  3310. color:#606266;
  3311. }
  3312. #u92985 .text {
  3313. position:absolute;
  3314. align-self:center;
  3315. padding:2px 2px 2px 0px;
  3316. box-sizing:border-box;
  3317. width:100%;
  3318. }
  3319. #u92985_text {
  3320. border-width:0px;
  3321. word-wrap:break-word;
  3322. text-transform:none;
  3323. visibility:hidden;
  3324. }
  3325. #u92986_img {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:194px;
  3331. height:38px;
  3332. }
  3333. #u92986 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:199px;
  3338. width:194px;
  3339. height:38px;
  3340. display:flex;
  3341. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:12px;
  3345. color:#606266;
  3346. }
  3347. #u92986 .text {
  3348. position:absolute;
  3349. align-self:center;
  3350. padding:2px 2px 2px 0px;
  3351. box-sizing:border-box;
  3352. width:100%;
  3353. }
  3354. #u92986_text {
  3355. border-width:0px;
  3356. word-wrap:break-word;
  3357. text-transform:none;
  3358. visibility:hidden;
  3359. }
  3360. #u92987_img {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:119px;
  3366. height:38px;
  3367. }
  3368. #u92987 {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:194px;
  3372. top:199px;
  3373. width:119px;
  3374. height:38px;
  3375. display:flex;
  3376. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3377. font-weight:400;
  3378. font-style:normal;
  3379. font-size:12px;
  3380. color:#606266;
  3381. }
  3382. #u92987 .text {
  3383. position:absolute;
  3384. align-self:center;
  3385. padding:2px 2px 2px 0px;
  3386. box-sizing:border-box;
  3387. width:100%;
  3388. }
  3389. #u92987_text {
  3390. border-width:0px;
  3391. word-wrap:break-word;
  3392. text-transform:none;
  3393. visibility:hidden;
  3394. }
  3395. #u92988_img {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:0px;
  3399. top:0px;
  3400. width:113px;
  3401. height:38px;
  3402. }
  3403. #u92988 {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:313px;
  3407. top:199px;
  3408. width:113px;
  3409. height:38px;
  3410. display:flex;
  3411. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3412. font-weight:400;
  3413. font-style:normal;
  3414. font-size:12px;
  3415. color:#606266;
  3416. }
  3417. #u92988 .text {
  3418. position:absolute;
  3419. align-self:center;
  3420. padding:2px 2px 2px 0px;
  3421. box-sizing:border-box;
  3422. width:100%;
  3423. }
  3424. #u92988_text {
  3425. border-width:0px;
  3426. word-wrap:break-word;
  3427. text-transform:none;
  3428. visibility:hidden;
  3429. }
  3430. #u92989_img {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:0px;
  3434. top:0px;
  3435. width:113px;
  3436. height:38px;
  3437. }
  3438. #u92989 {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:426px;
  3442. top:199px;
  3443. width:113px;
  3444. height:38px;
  3445. display:flex;
  3446. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3447. font-weight:400;
  3448. font-style:normal;
  3449. font-size:12px;
  3450. color:#606266;
  3451. }
  3452. #u92989 .text {
  3453. position:absolute;
  3454. align-self:center;
  3455. padding:2px 2px 2px 0px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u92989_text {
  3460. border-width:0px;
  3461. word-wrap:break-word;
  3462. text-transform:none;
  3463. visibility:hidden;
  3464. }
  3465. #u92990_img {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:113px;
  3471. height:38px;
  3472. }
  3473. #u92990 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:539px;
  3477. top:199px;
  3478. width:113px;
  3479. height:38px;
  3480. display:flex;
  3481. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. font-size:12px;
  3485. color:#606266;
  3486. }
  3487. #u92990 .text {
  3488. position:absolute;
  3489. align-self:center;
  3490. padding:2px 2px 2px 0px;
  3491. box-sizing:border-box;
  3492. width:100%;
  3493. }
  3494. #u92990_text {
  3495. border-width:0px;
  3496. word-wrap:break-word;
  3497. text-transform:none;
  3498. visibility:hidden;
  3499. }
  3500. #u92991_img {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:113px;
  3506. height:38px;
  3507. }
  3508. #u92991 {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:652px;
  3512. top:199px;
  3513. width:113px;
  3514. height:38px;
  3515. display:flex;
  3516. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:12px;
  3520. color:#606266;
  3521. }
  3522. #u92991 .text {
  3523. position:absolute;
  3524. align-self:center;
  3525. padding:2px 2px 2px 0px;
  3526. box-sizing:border-box;
  3527. width:100%;
  3528. }
  3529. #u92991_text {
  3530. border-width:0px;
  3531. word-wrap:break-word;
  3532. text-transform:none;
  3533. visibility:hidden;
  3534. }
  3535. #u92992_img {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:113px;
  3541. height:38px;
  3542. }
  3543. #u92992 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:765px;
  3547. top:199px;
  3548. width:113px;
  3549. height:38px;
  3550. display:flex;
  3551. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:12px;
  3555. color:#606266;
  3556. }
  3557. #u92992 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:2px 2px 2px 0px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u92992_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. visibility:hidden;
  3569. }
  3570. #u92993_img {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:113px;
  3576. height:38px;
  3577. }
  3578. #u92993 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:878px;
  3582. top:199px;
  3583. width:113px;
  3584. height:38px;
  3585. display:flex;
  3586. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:12px;
  3590. color:#606266;
  3591. }
  3592. #u92993 .text {
  3593. position:absolute;
  3594. align-self:center;
  3595. padding:2px 2px 2px 0px;
  3596. box-sizing:border-box;
  3597. width:100%;
  3598. }
  3599. #u92993_text {
  3600. border-width:0px;
  3601. word-wrap:break-word;
  3602. text-transform:none;
  3603. visibility:hidden;
  3604. }
  3605. #u92994_img {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:122px;
  3611. height:38px;
  3612. }
  3613. #u92994 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:991px;
  3617. top:199px;
  3618. width:122px;
  3619. height:38px;
  3620. display:flex;
  3621. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3622. font-weight:400;
  3623. font-style:normal;
  3624. font-size:12px;
  3625. color:#606266;
  3626. }
  3627. #u92994 .text {
  3628. position:absolute;
  3629. align-self:center;
  3630. padding:2px 2px 2px 0px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u92994_text {
  3635. border-width:0px;
  3636. word-wrap:break-word;
  3637. text-transform:none;
  3638. visibility:hidden;
  3639. }
  3640. #u92995_img {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:106px;
  3646. height:38px;
  3647. }
  3648. #u92995 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:1113px;
  3652. top:199px;
  3653. width:106px;
  3654. height:38px;
  3655. display:flex;
  3656. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3657. font-weight:400;
  3658. font-style:normal;
  3659. font-size:12px;
  3660. color:#606266;
  3661. }
  3662. #u92995 .text {
  3663. position:absolute;
  3664. align-self:center;
  3665. padding:2px 2px 2px 0px;
  3666. box-sizing:border-box;
  3667. width:100%;
  3668. }
  3669. #u92995_text {
  3670. border-width:0px;
  3671. word-wrap:break-word;
  3672. text-transform:none;
  3673. visibility:hidden;
  3674. }
  3675. #u92996_img {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:194px;
  3681. height:38px;
  3682. }
  3683. #u92996 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:0px;
  3687. top:237px;
  3688. width:194px;
  3689. height:38px;
  3690. display:flex;
  3691. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3692. font-weight:400;
  3693. font-style:normal;
  3694. font-size:12px;
  3695. color:#606266;
  3696. }
  3697. #u92996 .text {
  3698. position:absolute;
  3699. align-self:center;
  3700. padding:2px 2px 2px 0px;
  3701. box-sizing:border-box;
  3702. width:100%;
  3703. }
  3704. #u92996_text {
  3705. border-width:0px;
  3706. word-wrap:break-word;
  3707. text-transform:none;
  3708. visibility:hidden;
  3709. }
  3710. #u92997_img {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:0px;
  3714. top:0px;
  3715. width:119px;
  3716. height:38px;
  3717. }
  3718. #u92997 {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:194px;
  3722. top:237px;
  3723. width:119px;
  3724. height:38px;
  3725. display:flex;
  3726. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3727. font-weight:400;
  3728. font-style:normal;
  3729. font-size:12px;
  3730. color:#606266;
  3731. }
  3732. #u92997 .text {
  3733. position:absolute;
  3734. align-self:center;
  3735. padding:2px 2px 2px 0px;
  3736. box-sizing:border-box;
  3737. width:100%;
  3738. }
  3739. #u92997_text {
  3740. border-width:0px;
  3741. word-wrap:break-word;
  3742. text-transform:none;
  3743. visibility:hidden;
  3744. }
  3745. #u92998_img {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:0px;
  3749. top:0px;
  3750. width:113px;
  3751. height:38px;
  3752. }
  3753. #u92998 {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:313px;
  3757. top:237px;
  3758. width:113px;
  3759. height:38px;
  3760. display:flex;
  3761. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3762. font-weight:400;
  3763. font-style:normal;
  3764. font-size:12px;
  3765. color:#606266;
  3766. }
  3767. #u92998 .text {
  3768. position:absolute;
  3769. align-self:center;
  3770. padding:2px 2px 2px 0px;
  3771. box-sizing:border-box;
  3772. width:100%;
  3773. }
  3774. #u92998_text {
  3775. border-width:0px;
  3776. word-wrap:break-word;
  3777. text-transform:none;
  3778. visibility:hidden;
  3779. }
  3780. #u92999_img {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:0px;
  3784. top:0px;
  3785. width:113px;
  3786. height:38px;
  3787. }
  3788. #u92999 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:426px;
  3792. top:237px;
  3793. width:113px;
  3794. height:38px;
  3795. display:flex;
  3796. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3797. font-weight:400;
  3798. font-style:normal;
  3799. font-size:12px;
  3800. color:#606266;
  3801. }
  3802. #u92999 .text {
  3803. position:absolute;
  3804. align-self:center;
  3805. padding:2px 2px 2px 0px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u92999_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. visibility:hidden;
  3814. }
  3815. #u93000_img {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:113px;
  3821. height:38px;
  3822. }
  3823. #u93000 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:539px;
  3827. top:237px;
  3828. width:113px;
  3829. height:38px;
  3830. display:flex;
  3831. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. font-size:12px;
  3835. color:#606266;
  3836. }
  3837. #u93000 .text {
  3838. position:absolute;
  3839. align-self:center;
  3840. padding:2px 2px 2px 0px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u93000_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. visibility:hidden;
  3849. }
  3850. #u93001_img {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:113px;
  3856. height:38px;
  3857. }
  3858. #u93001 {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:652px;
  3862. top:237px;
  3863. width:113px;
  3864. height:38px;
  3865. display:flex;
  3866. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3867. font-weight:400;
  3868. font-style:normal;
  3869. font-size:12px;
  3870. color:#606266;
  3871. }
  3872. #u93001 .text {
  3873. position:absolute;
  3874. align-self:center;
  3875. padding:2px 2px 2px 0px;
  3876. box-sizing:border-box;
  3877. width:100%;
  3878. }
  3879. #u93001_text {
  3880. border-width:0px;
  3881. word-wrap:break-word;
  3882. text-transform:none;
  3883. visibility:hidden;
  3884. }
  3885. #u93002_img {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:0px;
  3890. width:113px;
  3891. height:38px;
  3892. }
  3893. #u93002 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:765px;
  3897. top:237px;
  3898. width:113px;
  3899. height:38px;
  3900. display:flex;
  3901. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3902. font-weight:400;
  3903. font-style:normal;
  3904. font-size:12px;
  3905. color:#606266;
  3906. }
  3907. #u93002 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u93002_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u93003_img {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:113px;
  3926. height:38px;
  3927. }
  3928. #u93003 {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:878px;
  3932. top:237px;
  3933. width:113px;
  3934. height:38px;
  3935. display:flex;
  3936. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:12px;
  3940. color:#606266;
  3941. }
  3942. #u93003 .text {
  3943. position:absolute;
  3944. align-self:center;
  3945. padding:2px 2px 2px 0px;
  3946. box-sizing:border-box;
  3947. width:100%;
  3948. }
  3949. #u93003_text {
  3950. border-width:0px;
  3951. word-wrap:break-word;
  3952. text-transform:none;
  3953. visibility:hidden;
  3954. }
  3955. #u93004_img {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:122px;
  3961. height:38px;
  3962. }
  3963. #u93004 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:991px;
  3967. top:237px;
  3968. width:122px;
  3969. height:38px;
  3970. display:flex;
  3971. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:12px;
  3975. color:#606266;
  3976. }
  3977. #u93004 .text {
  3978. position:absolute;
  3979. align-self:center;
  3980. padding:2px 2px 2px 0px;
  3981. box-sizing:border-box;
  3982. width:100%;
  3983. }
  3984. #u93004_text {
  3985. border-width:0px;
  3986. word-wrap:break-word;
  3987. text-transform:none;
  3988. visibility:hidden;
  3989. }
  3990. #u93005_img {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:0px;
  3994. top:0px;
  3995. width:106px;
  3996. height:38px;
  3997. }
  3998. #u93005 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:1113px;
  4002. top:237px;
  4003. width:106px;
  4004. height:38px;
  4005. display:flex;
  4006. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4007. font-weight:400;
  4008. font-style:normal;
  4009. font-size:12px;
  4010. color:#606266;
  4011. }
  4012. #u93005 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:2px 2px 2px 0px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u93005_text {
  4020. border-width:0px;
  4021. word-wrap:break-word;
  4022. text-transform:none;
  4023. visibility:hidden;
  4024. }
  4025. #u93006_img {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:0px;
  4030. width:194px;
  4031. height:38px;
  4032. }
  4033. #u93006 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:275px;
  4038. width:194px;
  4039. height:38px;
  4040. display:flex;
  4041. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. font-size:12px;
  4045. color:#606266;
  4046. }
  4047. #u93006 .text {
  4048. position:absolute;
  4049. align-self:center;
  4050. padding:2px 2px 2px 0px;
  4051. box-sizing:border-box;
  4052. width:100%;
  4053. }
  4054. #u93006_text {
  4055. border-width:0px;
  4056. word-wrap:break-word;
  4057. text-transform:none;
  4058. visibility:hidden;
  4059. }
  4060. #u93007_img {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:119px;
  4066. height:38px;
  4067. }
  4068. #u93007 {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:194px;
  4072. top:275px;
  4073. width:119px;
  4074. height:38px;
  4075. display:flex;
  4076. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4077. font-weight:400;
  4078. font-style:normal;
  4079. font-size:12px;
  4080. color:#606266;
  4081. }
  4082. #u93007 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:2px 2px 2px 0px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u93007_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. visibility:hidden;
  4094. }
  4095. #u93008_img {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:113px;
  4101. height:38px;
  4102. }
  4103. #u93008 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:313px;
  4107. top:275px;
  4108. width:113px;
  4109. height:38px;
  4110. display:flex;
  4111. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4112. font-weight:400;
  4113. font-style:normal;
  4114. font-size:12px;
  4115. color:#606266;
  4116. }
  4117. #u93008 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 2px 2px 0px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u93008_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. visibility:hidden;
  4129. }
  4130. #u93009_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:113px;
  4136. height:38px;
  4137. }
  4138. #u93009 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:426px;
  4142. top:275px;
  4143. width:113px;
  4144. height:38px;
  4145. display:flex;
  4146. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:12px;
  4150. color:#606266;
  4151. }
  4152. #u93009 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:2px 2px 2px 0px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u93009_text {
  4160. border-width:0px;
  4161. word-wrap:break-word;
  4162. text-transform:none;
  4163. visibility:hidden;
  4164. }
  4165. #u93010_img {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:113px;
  4171. height:38px;
  4172. }
  4173. #u93010 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:539px;
  4177. top:275px;
  4178. width:113px;
  4179. height:38px;
  4180. display:flex;
  4181. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4182. font-weight:400;
  4183. font-style:normal;
  4184. font-size:12px;
  4185. color:#606266;
  4186. }
  4187. #u93010 .text {
  4188. position:absolute;
  4189. align-self:center;
  4190. padding:2px 2px 2px 0px;
  4191. box-sizing:border-box;
  4192. width:100%;
  4193. }
  4194. #u93010_text {
  4195. border-width:0px;
  4196. word-wrap:break-word;
  4197. text-transform:none;
  4198. visibility:hidden;
  4199. }
  4200. #u93011_img {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:113px;
  4206. height:38px;
  4207. }
  4208. #u93011 {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:652px;
  4212. top:275px;
  4213. width:113px;
  4214. height:38px;
  4215. display:flex;
  4216. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4217. font-weight:400;
  4218. font-style:normal;
  4219. font-size:12px;
  4220. color:#606266;
  4221. }
  4222. #u93011 .text {
  4223. position:absolute;
  4224. align-self:center;
  4225. padding:2px 2px 2px 0px;
  4226. box-sizing:border-box;
  4227. width:100%;
  4228. }
  4229. #u93011_text {
  4230. border-width:0px;
  4231. word-wrap:break-word;
  4232. text-transform:none;
  4233. visibility:hidden;
  4234. }
  4235. #u93012_img {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:113px;
  4241. height:38px;
  4242. }
  4243. #u93012 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:765px;
  4247. top:275px;
  4248. width:113px;
  4249. height:38px;
  4250. display:flex;
  4251. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. font-size:12px;
  4255. color:#606266;
  4256. }
  4257. #u93012 .text {
  4258. position:absolute;
  4259. align-self:center;
  4260. padding:2px 2px 2px 0px;
  4261. box-sizing:border-box;
  4262. width:100%;
  4263. }
  4264. #u93012_text {
  4265. border-width:0px;
  4266. word-wrap:break-word;
  4267. text-transform:none;
  4268. visibility:hidden;
  4269. }
  4270. #u93013_img {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:113px;
  4276. height:38px;
  4277. }
  4278. #u93013 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:878px;
  4282. top:275px;
  4283. width:113px;
  4284. height:38px;
  4285. display:flex;
  4286. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4287. font-weight:400;
  4288. font-style:normal;
  4289. font-size:12px;
  4290. color:#606266;
  4291. }
  4292. #u93013 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:2px 2px 2px 0px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u93013_text {
  4300. border-width:0px;
  4301. word-wrap:break-word;
  4302. text-transform:none;
  4303. visibility:hidden;
  4304. }
  4305. #u93014_img {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:122px;
  4311. height:38px;
  4312. }
  4313. #u93014 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:991px;
  4317. top:275px;
  4318. width:122px;
  4319. height:38px;
  4320. display:flex;
  4321. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4322. font-weight:400;
  4323. font-style:normal;
  4324. font-size:12px;
  4325. color:#606266;
  4326. }
  4327. #u93014 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 0px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u93014_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u93015_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:106px;
  4346. height:38px;
  4347. }
  4348. #u93015 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:1113px;
  4352. top:275px;
  4353. width:106px;
  4354. height:38px;
  4355. display:flex;
  4356. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4357. font-weight:400;
  4358. font-style:normal;
  4359. font-size:12px;
  4360. color:#606266;
  4361. }
  4362. #u93015 .text {
  4363. position:absolute;
  4364. align-self:center;
  4365. padding:2px 2px 2px 0px;
  4366. box-sizing:border-box;
  4367. width:100%;
  4368. }
  4369. #u93015_text {
  4370. border-width:0px;
  4371. word-wrap:break-word;
  4372. text-transform:none;
  4373. visibility:hidden;
  4374. }
  4375. #u93016_div {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:73px;
  4381. height:50px;
  4382. background:inherit;
  4383. background-color:rgba(255, 255, 255, 0);
  4384. border:none;
  4385. border-left:0px;
  4386. border-top:0px;
  4387. border-right:0px;
  4388. border-radius:0px;
  4389. border-bottom-right-radius:0px;
  4390. border-bottom-left-radius:0px;
  4391. -moz-box-shadow:none;
  4392. -webkit-box-shadow:none;
  4393. box-shadow:none;
  4394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:18px;
  4398. }
  4399. #u93016 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:349px;
  4403. top:52px;
  4404. width:73px;
  4405. height:50px;
  4406. display:flex;
  4407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4408. font-weight:400;
  4409. font-style:normal;
  4410. font-size:18px;
  4411. }
  4412. #u93016 .text {
  4413. position:absolute;
  4414. align-self:center;
  4415. padding:0px 0px 0px 0px;
  4416. box-sizing:border-box;
  4417. width:100%;
  4418. }
  4419. #u93016_text {
  4420. border-width:0px;
  4421. white-space:nowrap;
  4422. text-transform:none;
  4423. }
  4424. #u93017 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:0px;
  4430. height:0px;
  4431. }
  4432. #u93018_div {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:100px;
  4438. height:100px;
  4439. background:inherit;
  4440. background-color:rgba(255, 255, 255, 1);
  4441. box-sizing:border-box;
  4442. border-width:1px;
  4443. border-style:solid;
  4444. border-color:rgba(242, 242, 242, 1);
  4445. border-radius:4px;
  4446. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4447. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4448. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4450. font-weight:400;
  4451. font-style:normal;
  4452. font-size:14px;
  4453. text-align:left;
  4454. }
  4455. #u93018 {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:1461px;
  4459. top:298px;
  4460. width:100px;
  4461. height:100px;
  4462. display:flex;
  4463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4464. font-weight:400;
  4465. font-style:normal;
  4466. font-size:14px;
  4467. text-align:left;
  4468. }
  4469. #u93018 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 2px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u93018_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u93019_div {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:83px;
  4488. height:40px;
  4489. background:inherit;
  4490. background-color:rgba(255, 255, 255, 1);
  4491. box-sizing:border-box;
  4492. border-width:1px;
  4493. border-style:solid;
  4494. border-color:rgba(215, 215, 215, 1);
  4495. border-left:0px;
  4496. border-top:0px;
  4497. border-right:0px;
  4498. border-radius:0px;
  4499. border-bottom-right-radius:0px;
  4500. border-bottom-left-radius:0px;
  4501. -moz-box-shadow:none;
  4502. -webkit-box-shadow:none;
  4503. box-shadow:none;
  4504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:14px;
  4508. }
  4509. #u93019 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:1469px;
  4513. top:308px;
  4514. width:83px;
  4515. height:40px;
  4516. display:flex;
  4517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4518. font-weight:400;
  4519. font-style:normal;
  4520. font-size:14px;
  4521. }
  4522. #u93019 .text {
  4523. position:absolute;
  4524. align-self:center;
  4525. padding:2px 2px 2px 2px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u93019_text {
  4530. border-width:0px;
  4531. word-wrap:break-word;
  4532. text-transform:none;
  4533. }
  4534. #u93020_div {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:83px;
  4540. height:40px;
  4541. background:inherit;
  4542. background-color:rgba(255, 255, 255, 1);
  4543. border:none;
  4544. border-left:0px;
  4545. border-top:0px;
  4546. border-right:0px;
  4547. border-radius:0px;
  4548. border-bottom-right-radius:0px;
  4549. border-bottom-left-radius:0px;
  4550. -moz-box-shadow:none;
  4551. -webkit-box-shadow:none;
  4552. box-shadow:none;
  4553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4554. font-weight:400;
  4555. font-style:normal;
  4556. font-size:14px;
  4557. }
  4558. #u93020 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:1469px;
  4562. top:348px;
  4563. width:83px;
  4564. height:40px;
  4565. display:flex;
  4566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:14px;
  4570. }
  4571. #u93020 .text {
  4572. position:absolute;
  4573. align-self:center;
  4574. padding:2px 2px 2px 2px;
  4575. box-sizing:border-box;
  4576. width:100%;
  4577. }
  4578. #u93020_text {
  4579. border-width:0px;
  4580. word-wrap:break-word;
  4581. text-transform:none;
  4582. }
  4583. #u93021_div {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:60px;
  4589. height:30px;
  4590. background:inherit;
  4591. background-color:rgba(255, 255, 255, 1);
  4592. box-sizing:border-box;
  4593. border-width:1px;
  4594. border-style:solid;
  4595. border-color:rgba(170, 170, 170, 1);
  4596. border-radius:4px;
  4597. -moz-box-shadow:none;
  4598. -webkit-box-shadow:none;
  4599. box-shadow:none;
  4600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4601. font-weight:400;
  4602. font-style:normal;
  4603. font-size:14px;
  4604. }
  4605. #u93021 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:490px;
  4609. top:192px;
  4610. width:60px;
  4611. height:30px;
  4612. display:flex;
  4613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4614. font-weight:400;
  4615. font-style:normal;
  4616. font-size:14px;
  4617. }
  4618. #u93021 .text {
  4619. position:absolute;
  4620. align-self:center;
  4621. padding:2px 2px 2px 2px;
  4622. box-sizing:border-box;
  4623. width:100%;
  4624. }
  4625. #u93021_text {
  4626. border-width:0px;
  4627. word-wrap:break-word;
  4628. text-transform:none;
  4629. }
  4630. #u93022_div {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:60px;
  4636. height:30px;
  4637. background:inherit;
  4638. background-color:rgba(255, 255, 255, 1);
  4639. box-sizing:border-box;
  4640. border-width:1px;
  4641. border-style:solid;
  4642. border-color:rgba(170, 170, 170, 1);
  4643. border-radius:4px;
  4644. -moz-box-shadow:none;
  4645. -webkit-box-shadow:none;
  4646. box-shadow:none;
  4647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4648. font-weight:400;
  4649. font-style:normal;
  4650. font-size:14px;
  4651. }
  4652. #u93022 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:420px;
  4656. top:192px;
  4657. width:60px;
  4658. height:30px;
  4659. display:flex;
  4660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4661. font-weight:400;
  4662. font-style:normal;
  4663. font-size:14px;
  4664. }
  4665. #u93022 .text {
  4666. position:absolute;
  4667. align-self:center;
  4668. padding:2px 2px 2px 2px;
  4669. box-sizing:border-box;
  4670. width:100%;
  4671. }
  4672. #u93022_text {
  4673. border-width:0px;
  4674. word-wrap:break-word;
  4675. text-transform:none;
  4676. }
  4677. #u93023_div {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:0px;
  4681. top:0px;
  4682. width:60px;
  4683. height:30px;
  4684. background:inherit;
  4685. background-color:rgba(24, 144, 255, 1);
  4686. border:none;
  4687. border-radius:4px;
  4688. -moz-box-shadow:none;
  4689. -webkit-box-shadow:none;
  4690. box-shadow:none;
  4691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:14px;
  4695. color:#FFFFFF;
  4696. }
  4697. #u93023 {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:350px;
  4701. top:192px;
  4702. width:60px;
  4703. height:30px;
  4704. display:flex;
  4705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4706. font-weight:400;
  4707. font-style:normal;
  4708. font-size:14px;
  4709. color:#FFFFFF;
  4710. }
  4711. #u93023 .text {
  4712. position:absolute;
  4713. align-self:center;
  4714. padding:2px 2px 2px 2px;
  4715. box-sizing:border-box;
  4716. width:100%;
  4717. }
  4718. #u93023_text {
  4719. border-width:0px;
  4720. word-wrap:break-word;
  4721. text-transform:none;
  4722. }
  4723. #u93024_div {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:60px;
  4729. height:30px;
  4730. background:inherit;
  4731. background-color:rgba(24, 144, 255, 1);
  4732. border:none;
  4733. border-radius:4px;
  4734. -moz-box-shadow:none;
  4735. -webkit-box-shadow:none;
  4736. box-shadow:none;
  4737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4738. font-weight:400;
  4739. font-style:normal;
  4740. font-size:14px;
  4741. color:#FFFFFF;
  4742. }
  4743. #u93024 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:950px;
  4747. top:143px;
  4748. width:60px;
  4749. height:30px;
  4750. display:flex;
  4751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4752. font-weight:400;
  4753. font-style:normal;
  4754. font-size:14px;
  4755. color:#FFFFFF;
  4756. }
  4757. #u93024 .text {
  4758. position:absolute;
  4759. align-self:center;
  4760. padding:2px 2px 2px 2px;
  4761. box-sizing:border-box;
  4762. width:100%;
  4763. }
  4764. #u93024_text {
  4765. border-width:0px;
  4766. word-wrap:break-word;
  4767. text-transform:none;
  4768. }
  4769. #u93025_div {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:60px;
  4775. height:30px;
  4776. background:inherit;
  4777. background-color:rgba(255, 255, 255, 1);
  4778. box-sizing:border-box;
  4779. border-width:1px;
  4780. border-style:solid;
  4781. border-color:rgba(170, 170, 170, 1);
  4782. border-radius:4px;
  4783. -moz-box-shadow:none;
  4784. -webkit-box-shadow:none;
  4785. box-shadow:none;
  4786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. font-size:14px;
  4790. }
  4791. #u93025 {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:1020px;
  4795. top:143px;
  4796. width:60px;
  4797. height:30px;
  4798. display:flex;
  4799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4800. font-weight:400;
  4801. font-style:normal;
  4802. font-size:14px;
  4803. }
  4804. #u93025 .text {
  4805. position:absolute;
  4806. align-self:center;
  4807. padding:2px 2px 2px 2px;
  4808. box-sizing:border-box;
  4809. width:100%;
  4810. }
  4811. #u93025_text {
  4812. border-width:0px;
  4813. word-wrap:break-word;
  4814. text-transform:none;
  4815. }
  4816. #u93026 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:0px;
  4820. top:0px;
  4821. width:0px;
  4822. height:0px;
  4823. }
  4824. #u93027_div {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:140px;
  4830. height:30px;
  4831. background:inherit;
  4832. background-color:rgba(255, 255, 255, 1);
  4833. box-sizing:border-box;
  4834. border-width:1px;
  4835. border-style:solid;
  4836. border-color:rgba(215, 215, 215, 1);
  4837. border-radius:4px;
  4838. -moz-box-shadow:none;
  4839. -webkit-box-shadow:none;
  4840. box-shadow:none;
  4841. font-size:14px;
  4842. }
  4843. #u93027 {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:500px;
  4847. top:103px;
  4848. width:140px;
  4849. height:30px;
  4850. display:flex;
  4851. font-size:14px;
  4852. }
  4853. #u93027 .text {
  4854. position:absolute;
  4855. align-self:center;
  4856. padding:2px 2px 2px 2px;
  4857. box-sizing:border-box;
  4858. width:100%;
  4859. }
  4860. #u93027_text {
  4861. border-width:0px;
  4862. word-wrap:break-word;
  4863. text-transform:none;
  4864. visibility:hidden;
  4865. }
  4866. #u93028_input {
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:134px;
  4871. height:23px;
  4872. padding:2px 2px 2px 2px;
  4873. font-family:'ArialMT', 'Arial', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:14px;
  4877. letter-spacing:normal;
  4878. color:#AAAAAA;
  4879. vertical-align:none;
  4880. text-align:left;
  4881. text-transform:none;
  4882. background-color:transparent;
  4883. border-color:transparent;
  4884. }
  4885. #u93028_input.disabled {
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:134px;
  4890. height:23px;
  4891. padding:2px 2px 2px 2px;
  4892. font-family:'ArialMT', 'Arial', sans-serif;
  4893. font-weight:400;
  4894. font-style:normal;
  4895. font-size:14px;
  4896. letter-spacing:normal;
  4897. color:#AAAAAA;
  4898. vertical-align:none;
  4899. text-align:left;
  4900. text-transform:none;
  4901. background-color:transparent;
  4902. border-color:transparent;
  4903. }
  4904. #u93028_div {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:0px;
  4908. top:0px;
  4909. width:134px;
  4910. height:23px;
  4911. background:inherit;
  4912. background-color:rgba(255, 255, 255, 1);
  4913. border:none;
  4914. border-radius:0px;
  4915. -moz-box-shadow:none;
  4916. -webkit-box-shadow:none;
  4917. box-shadow:none;
  4918. font-size:14px;
  4919. color:#AAAAAA;
  4920. }
  4921. #u93028 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:504px;
  4925. top:105px;
  4926. width:134px;
  4927. height:23px;
  4928. display:flex;
  4929. font-size:14px;
  4930. color:#AAAAAA;
  4931. }
  4932. #u93028 .text {
  4933. position:absolute;
  4934. align-self:flex-start;
  4935. padding:2px 2px 2px 2px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u93028_div.disabled {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:134px;
  4945. height:23px;
  4946. background:inherit;
  4947. background-color:rgba(240, 240, 240, 1);
  4948. border:none;
  4949. border-radius:0px;
  4950. -moz-box-shadow:none;
  4951. -webkit-box-shadow:none;
  4952. box-shadow:none;
  4953. font-size:14px;
  4954. color:#AAAAAA;
  4955. }
  4956. #u93028.disabled {
  4957. }
  4958. .u93028_input_option {
  4959. font-size:14px;
  4960. }
  4961. #u93029 {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:0px;
  4967. height:0px;
  4968. }
  4969. #u93030_div {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:140px;
  4975. height:30px;
  4976. background:inherit;
  4977. background-color:rgba(255, 255, 255, 1);
  4978. box-sizing:border-box;
  4979. border-width:1px;
  4980. border-style:solid;
  4981. border-color:rgba(215, 215, 215, 1);
  4982. border-radius:4px;
  4983. -moz-box-shadow:none;
  4984. -webkit-box-shadow:none;
  4985. box-shadow:none;
  4986. font-size:14px;
  4987. }
  4988. #u93030 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:650px;
  4992. top:103px;
  4993. width:140px;
  4994. height:30px;
  4995. display:flex;
  4996. font-size:14px;
  4997. }
  4998. #u93030 .text {
  4999. position:absolute;
  5000. align-self:center;
  5001. padding:2px 2px 2px 2px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u93030_text {
  5006. border-width:0px;
  5007. word-wrap:break-word;
  5008. text-transform:none;
  5009. visibility:hidden;
  5010. }
  5011. #u93031_input {
  5012. position:absolute;
  5013. left:0px;
  5014. top:0px;
  5015. width:134px;
  5016. height:23px;
  5017. padding:2px 2px 2px 2px;
  5018. font-family:'ArialMT', 'Arial', sans-serif;
  5019. font-weight:400;
  5020. font-style:normal;
  5021. font-size:14px;
  5022. letter-spacing:normal;
  5023. color:#AAAAAA;
  5024. vertical-align:none;
  5025. text-align:left;
  5026. text-transform:none;
  5027. background-color:transparent;
  5028. border-color:transparent;
  5029. }
  5030. #u93031_input.disabled {
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:134px;
  5035. height:23px;
  5036. padding:2px 2px 2px 2px;
  5037. font-family:'ArialMT', 'Arial', sans-serif;
  5038. font-weight:400;
  5039. font-style:normal;
  5040. font-size:14px;
  5041. letter-spacing:normal;
  5042. color:#AAAAAA;
  5043. vertical-align:none;
  5044. text-align:left;
  5045. text-transform:none;
  5046. background-color:transparent;
  5047. border-color:transparent;
  5048. }
  5049. #u93031_div {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:134px;
  5055. height:23px;
  5056. background:inherit;
  5057. background-color:rgba(255, 255, 255, 1);
  5058. border:none;
  5059. border-radius:0px;
  5060. -moz-box-shadow:none;
  5061. -webkit-box-shadow:none;
  5062. box-shadow:none;
  5063. font-size:14px;
  5064. color:#AAAAAA;
  5065. }
  5066. #u93031 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:654px;
  5070. top:105px;
  5071. width:134px;
  5072. height:23px;
  5073. display:flex;
  5074. font-size:14px;
  5075. color:#AAAAAA;
  5076. }
  5077. #u93031 .text {
  5078. position:absolute;
  5079. align-self:flex-start;
  5080. padding:2px 2px 2px 2px;
  5081. box-sizing:border-box;
  5082. width:100%;
  5083. }
  5084. #u93031_div.disabled {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:0px;
  5088. top:0px;
  5089. width:134px;
  5090. height:23px;
  5091. background:inherit;
  5092. background-color:rgba(240, 240, 240, 1);
  5093. border:none;
  5094. border-radius:0px;
  5095. -moz-box-shadow:none;
  5096. -webkit-box-shadow:none;
  5097. box-shadow:none;
  5098. font-size:14px;
  5099. color:#AAAAAA;
  5100. }
  5101. #u93031.disabled {
  5102. }
  5103. .u93031_input_option {
  5104. font-size:14px;
  5105. }
  5106. #u93032 {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:0px;
  5112. height:0px;
  5113. }
  5114. #u93033_div {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:0px;
  5119. width:140px;
  5120. height:30px;
  5121. background:inherit;
  5122. background-color:rgba(255, 255, 255, 1);
  5123. box-sizing:border-box;
  5124. border-width:1px;
  5125. border-style:solid;
  5126. border-color:rgba(215, 215, 215, 1);
  5127. border-radius:4px;
  5128. -moz-box-shadow:none;
  5129. -webkit-box-shadow:none;
  5130. box-shadow:none;
  5131. font-size:14px;
  5132. }
  5133. #u93033 {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:800px;
  5137. top:103px;
  5138. width:140px;
  5139. height:30px;
  5140. display:flex;
  5141. font-size:14px;
  5142. }
  5143. #u93033 .text {
  5144. position:absolute;
  5145. align-self:center;
  5146. padding:2px 2px 2px 2px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u93033_text {
  5151. border-width:0px;
  5152. word-wrap:break-word;
  5153. text-transform:none;
  5154. visibility:hidden;
  5155. }
  5156. #u93034_input {
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:134px;
  5161. height:23px;
  5162. padding:2px 2px 2px 2px;
  5163. font-family:'ArialMT', 'Arial', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:14px;
  5167. letter-spacing:normal;
  5168. color:#AAAAAA;
  5169. vertical-align:none;
  5170. text-align:left;
  5171. text-transform:none;
  5172. background-color:transparent;
  5173. border-color:transparent;
  5174. }
  5175. #u93034_input.disabled {
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:134px;
  5180. height:23px;
  5181. padding:2px 2px 2px 2px;
  5182. font-family:'ArialMT', 'Arial', sans-serif;
  5183. font-weight:400;
  5184. font-style:normal;
  5185. font-size:14px;
  5186. letter-spacing:normal;
  5187. color:#AAAAAA;
  5188. vertical-align:none;
  5189. text-align:left;
  5190. text-transform:none;
  5191. background-color:transparent;
  5192. border-color:transparent;
  5193. }
  5194. #u93034_div {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:0px;
  5198. top:0px;
  5199. width:134px;
  5200. height:23px;
  5201. background:inherit;
  5202. background-color:rgba(255, 255, 255, 1);
  5203. border:none;
  5204. border-radius:0px;
  5205. -moz-box-shadow:none;
  5206. -webkit-box-shadow:none;
  5207. box-shadow:none;
  5208. font-size:14px;
  5209. color:#AAAAAA;
  5210. }
  5211. #u93034 {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:804px;
  5215. top:105px;
  5216. width:134px;
  5217. height:23px;
  5218. display:flex;
  5219. font-size:14px;
  5220. color:#AAAAAA;
  5221. }
  5222. #u93034 .text {
  5223. position:absolute;
  5224. align-self:flex-start;
  5225. padding:2px 2px 2px 2px;
  5226. box-sizing:border-box;
  5227. width:100%;
  5228. }
  5229. #u93034_div.disabled {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:134px;
  5235. height:23px;
  5236. background:inherit;
  5237. background-color:rgba(240, 240, 240, 1);
  5238. border:none;
  5239. border-radius:0px;
  5240. -moz-box-shadow:none;
  5241. -webkit-box-shadow:none;
  5242. box-shadow:none;
  5243. font-size:14px;
  5244. color:#AAAAAA;
  5245. }
  5246. #u93034.disabled {
  5247. }
  5248. .u93034_input_option {
  5249. font-size:14px;
  5250. }
  5251. #u93035 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:0px;
  5257. height:0px;
  5258. }
  5259. #u93036_div {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:140px;
  5265. height:30px;
  5266. background:inherit;
  5267. background-color:rgba(255, 255, 255, 1);
  5268. box-sizing:border-box;
  5269. border-width:1px;
  5270. border-style:solid;
  5271. border-color:rgba(215, 215, 215, 1);
  5272. border-radius:4px;
  5273. -moz-box-shadow:none;
  5274. -webkit-box-shadow:none;
  5275. box-shadow:none;
  5276. font-size:14px;
  5277. }
  5278. #u93036 {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:950px;
  5282. top:103px;
  5283. width:140px;
  5284. height:30px;
  5285. display:flex;
  5286. font-size:14px;
  5287. }
  5288. #u93036 .text {
  5289. position:absolute;
  5290. align-self:center;
  5291. padding:2px 2px 2px 2px;
  5292. box-sizing:border-box;
  5293. width:100%;
  5294. }
  5295. #u93036_text {
  5296. border-width:0px;
  5297. word-wrap:break-word;
  5298. text-transform:none;
  5299. visibility:hidden;
  5300. }
  5301. #u93037_input {
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:134px;
  5306. height:23px;
  5307. padding:2px 2px 2px 2px;
  5308. font-family:'ArialMT', 'Arial', sans-serif;
  5309. font-weight:400;
  5310. font-style:normal;
  5311. font-size:14px;
  5312. letter-spacing:normal;
  5313. color:#AAAAAA;
  5314. vertical-align:none;
  5315. text-align:left;
  5316. text-transform:none;
  5317. background-color:transparent;
  5318. border-color:transparent;
  5319. }
  5320. #u93037_input.disabled {
  5321. position:absolute;
  5322. left:0px;
  5323. top:0px;
  5324. width:134px;
  5325. height:23px;
  5326. padding:2px 2px 2px 2px;
  5327. font-family:'ArialMT', 'Arial', sans-serif;
  5328. font-weight:400;
  5329. font-style:normal;
  5330. font-size:14px;
  5331. letter-spacing:normal;
  5332. color:#AAAAAA;
  5333. vertical-align:none;
  5334. text-align:left;
  5335. text-transform:none;
  5336. background-color:transparent;
  5337. border-color:transparent;
  5338. }
  5339. #u93037_div {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:0px;
  5343. top:0px;
  5344. width:134px;
  5345. height:23px;
  5346. background:inherit;
  5347. background-color:rgba(255, 255, 255, 1);
  5348. border:none;
  5349. border-radius:0px;
  5350. -moz-box-shadow:none;
  5351. -webkit-box-shadow:none;
  5352. box-shadow:none;
  5353. font-size:14px;
  5354. color:#AAAAAA;
  5355. }
  5356. #u93037 {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:954px;
  5360. top:105px;
  5361. width:134px;
  5362. height:23px;
  5363. display:flex;
  5364. font-size:14px;
  5365. color:#AAAAAA;
  5366. }
  5367. #u93037 .text {
  5368. position:absolute;
  5369. align-self:flex-start;
  5370. padding:2px 2px 2px 2px;
  5371. box-sizing:border-box;
  5372. width:100%;
  5373. }
  5374. #u93037_div.disabled {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:134px;
  5380. height:23px;
  5381. background:inherit;
  5382. background-color:rgba(240, 240, 240, 1);
  5383. border:none;
  5384. border-radius:0px;
  5385. -moz-box-shadow:none;
  5386. -webkit-box-shadow:none;
  5387. box-shadow:none;
  5388. font-size:14px;
  5389. color:#AAAAAA;
  5390. }
  5391. #u93037.disabled {
  5392. }
  5393. .u93037_input_option {
  5394. font-size:14px;
  5395. }
  5396. #u93038 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:0px;
  5402. height:0px;
  5403. }
  5404. #u93039_div {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:140px;
  5410. height:30px;
  5411. background:inherit;
  5412. background-color:rgba(255, 255, 255, 1);
  5413. box-sizing:border-box;
  5414. border-width:1px;
  5415. border-style:solid;
  5416. border-color:rgba(201, 201, 201, 1);
  5417. border-radius:4px;
  5418. -moz-box-shadow:none;
  5419. -webkit-box-shadow:none;
  5420. box-shadow:none;
  5421. font-family:'Microsoft YaHei', sans-serif;
  5422. font-weight:400;
  5423. font-style:normal;
  5424. font-size:14px;
  5425. color:#CCCCCC;
  5426. text-align:left;
  5427. }
  5428. #u93039 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:1100px;
  5432. top:103px;
  5433. width:140px;
  5434. height:30px;
  5435. display:flex;
  5436. font-family:'Microsoft YaHei', sans-serif;
  5437. font-weight:400;
  5438. font-style:normal;
  5439. font-size:14px;
  5440. color:#CCCCCC;
  5441. text-align:left;
  5442. }
  5443. #u93039 .text {
  5444. position:absolute;
  5445. align-self:center;
  5446. padding:2px 8px 2px 8px;
  5447. box-sizing:border-box;
  5448. width:100%;
  5449. }
  5450. #u93039_text {
  5451. border-width:0px;
  5452. word-wrap:break-word;
  5453. text-transform:none;
  5454. visibility:hidden;
  5455. }
  5456. #u93040_input {
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:127px;
  5461. height:25px;
  5462. padding:2px 2px 2px 2px;
  5463. font-family:'Microsoft YaHei', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:10px;
  5467. letter-spacing:normal;
  5468. color:#000000;
  5469. vertical-align:none;
  5470. text-align:left;
  5471. text-transform:none;
  5472. background-color:transparent;
  5473. border-color:transparent;
  5474. }
  5475. #u93040_input.disabled {
  5476. position:absolute;
  5477. left:0px;
  5478. top:0px;
  5479. width:127px;
  5480. height:25px;
  5481. padding:2px 2px 2px 2px;
  5482. font-family:'Microsoft YaHei', sans-serif;
  5483. font-weight:400;
  5484. font-style:normal;
  5485. font-size:10px;
  5486. letter-spacing:normal;
  5487. color:#000000;
  5488. vertical-align:none;
  5489. text-align:left;
  5490. text-transform:none;
  5491. background-color:transparent;
  5492. border-color:transparent;
  5493. }
  5494. #u93040_div {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:127px;
  5500. height:25px;
  5501. background:inherit;
  5502. background-color:rgba(255, 255, 255, 1);
  5503. border:none;
  5504. border-radius:0px;
  5505. -moz-box-shadow:none;
  5506. -webkit-box-shadow:none;
  5507. box-shadow:none;
  5508. font-family:'Microsoft YaHei', sans-serif;
  5509. font-weight:400;
  5510. font-style:normal;
  5511. font-size:10px;
  5512. }
  5513. #u93040 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:1108px;
  5517. top:104px;
  5518. width:127px;
  5519. height:25px;
  5520. display:flex;
  5521. font-family:'Microsoft YaHei', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:10px;
  5525. }
  5526. #u93040 .text {
  5527. position:absolute;
  5528. align-self:center;
  5529. padding:2px 2px 2px 2px;
  5530. box-sizing:border-box;
  5531. width:100%;
  5532. }
  5533. #u93040_div.disabled {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:127px;
  5539. height:25px;
  5540. background:inherit;
  5541. background-color:rgba(240, 240, 240, 1);
  5542. border:none;
  5543. border-radius:0px;
  5544. -moz-box-shadow:none;
  5545. -webkit-box-shadow:none;
  5546. box-shadow:none;
  5547. font-family:'Microsoft YaHei', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:10px;
  5551. }
  5552. #u93040.disabled {
  5553. }
  5554. #u93041 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:0px;
  5560. height:0px;
  5561. }
  5562. #u93042_div {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:140px;
  5568. height:30px;
  5569. background:inherit;
  5570. background-color:rgba(255, 255, 255, 1);
  5571. box-sizing:border-box;
  5572. border-width:1px;
  5573. border-style:solid;
  5574. border-color:rgba(201, 201, 201, 1);
  5575. border-radius:4px;
  5576. -moz-box-shadow:none;
  5577. -webkit-box-shadow:none;
  5578. box-shadow:none;
  5579. font-family:'Microsoft YaHei', sans-serif;
  5580. font-weight:400;
  5581. font-style:normal;
  5582. font-size:14px;
  5583. color:#CCCCCC;
  5584. text-align:left;
  5585. }
  5586. #u93042 {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:500px;
  5590. top:143px;
  5591. width:140px;
  5592. height:30px;
  5593. display:flex;
  5594. font-family:'Microsoft YaHei', sans-serif;
  5595. font-weight:400;
  5596. font-style:normal;
  5597. font-size:14px;
  5598. color:#CCCCCC;
  5599. text-align:left;
  5600. }
  5601. #u93042 .text {
  5602. position:absolute;
  5603. align-self:center;
  5604. padding:2px 8px 2px 8px;
  5605. box-sizing:border-box;
  5606. width:100%;
  5607. }
  5608. #u93042_text {
  5609. border-width:0px;
  5610. word-wrap:break-word;
  5611. text-transform:none;
  5612. visibility:hidden;
  5613. }
  5614. #u93043_input {
  5615. position:absolute;
  5616. left:0px;
  5617. top:0px;
  5618. width:127px;
  5619. height:25px;
  5620. padding:2px 2px 2px 2px;
  5621. font-family:'Microsoft YaHei', sans-serif;
  5622. font-weight:400;
  5623. font-style:normal;
  5624. font-size:10px;
  5625. letter-spacing:normal;
  5626. color:#000000;
  5627. vertical-align:none;
  5628. text-align:left;
  5629. text-transform:none;
  5630. background-color:transparent;
  5631. border-color:transparent;
  5632. }
  5633. #u93043_input.disabled {
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:127px;
  5638. height:25px;
  5639. padding:2px 2px 2px 2px;
  5640. font-family:'Microsoft YaHei', sans-serif;
  5641. font-weight:400;
  5642. font-style:normal;
  5643. font-size:10px;
  5644. letter-spacing:normal;
  5645. color:#000000;
  5646. vertical-align:none;
  5647. text-align:left;
  5648. text-transform:none;
  5649. background-color:transparent;
  5650. border-color:transparent;
  5651. }
  5652. #u93043_div {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:127px;
  5658. height:25px;
  5659. background:inherit;
  5660. background-color:rgba(255, 255, 255, 1);
  5661. border:none;
  5662. border-radius:0px;
  5663. -moz-box-shadow:none;
  5664. -webkit-box-shadow:none;
  5665. box-shadow:none;
  5666. font-family:'Microsoft YaHei', sans-serif;
  5667. font-weight:400;
  5668. font-style:normal;
  5669. font-size:10px;
  5670. }
  5671. #u93043 {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:508px;
  5675. top:144px;
  5676. width:127px;
  5677. height:25px;
  5678. display:flex;
  5679. font-family:'Microsoft YaHei', sans-serif;
  5680. font-weight:400;
  5681. font-style:normal;
  5682. font-size:10px;
  5683. }
  5684. #u93043 .text {
  5685. position:absolute;
  5686. align-self:center;
  5687. padding:2px 2px 2px 2px;
  5688. box-sizing:border-box;
  5689. width:100%;
  5690. }
  5691. #u93043_div.disabled {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:0px;
  5695. top:0px;
  5696. width:127px;
  5697. height:25px;
  5698. background:inherit;
  5699. background-color:rgba(240, 240, 240, 1);
  5700. border:none;
  5701. border-radius:0px;
  5702. -moz-box-shadow:none;
  5703. -webkit-box-shadow:none;
  5704. box-shadow:none;
  5705. font-family:'Microsoft YaHei', sans-serif;
  5706. font-weight:400;
  5707. font-style:normal;
  5708. font-size:10px;
  5709. }
  5710. #u93043.disabled {
  5711. }
  5712. #u93044 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:0px;
  5718. height:0px;
  5719. }
  5720. #u93045_div {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:0px;
  5724. top:0px;
  5725. width:140px;
  5726. height:30px;
  5727. background:inherit;
  5728. background-color:rgba(255, 255, 255, 1);
  5729. box-sizing:border-box;
  5730. border-width:1px;
  5731. border-style:solid;
  5732. border-color:rgba(215, 215, 215, 1);
  5733. border-radius:4px;
  5734. -moz-box-shadow:none;
  5735. -webkit-box-shadow:none;
  5736. box-shadow:none;
  5737. font-size:14px;
  5738. }
  5739. #u93045 {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:650px;
  5743. top:143px;
  5744. width:140px;
  5745. height:30px;
  5746. display:flex;
  5747. font-size:14px;
  5748. }
  5749. #u93045 .text {
  5750. position:absolute;
  5751. align-self:center;
  5752. padding:2px 2px 2px 2px;
  5753. box-sizing:border-box;
  5754. width:100%;
  5755. }
  5756. #u93045_text {
  5757. border-width:0px;
  5758. word-wrap:break-word;
  5759. text-transform:none;
  5760. visibility:hidden;
  5761. }
  5762. #u93046_input {
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:134px;
  5767. height:23px;
  5768. padding:2px 2px 2px 2px;
  5769. font-family:'ArialMT', 'Arial', sans-serif;
  5770. font-weight:400;
  5771. font-style:normal;
  5772. font-size:14px;
  5773. letter-spacing:normal;
  5774. color:#AAAAAA;
  5775. vertical-align:none;
  5776. text-align:left;
  5777. text-transform:none;
  5778. background-color:transparent;
  5779. border-color:transparent;
  5780. }
  5781. #u93046_input.disabled {
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:134px;
  5786. height:23px;
  5787. padding:2px 2px 2px 2px;
  5788. font-family:'ArialMT', 'Arial', sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. font-size:14px;
  5792. letter-spacing:normal;
  5793. color:#AAAAAA;
  5794. vertical-align:none;
  5795. text-align:left;
  5796. text-transform:none;
  5797. background-color:transparent;
  5798. border-color:transparent;
  5799. }
  5800. #u93046_div {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:0px;
  5804. top:0px;
  5805. width:134px;
  5806. height:23px;
  5807. background:inherit;
  5808. background-color:rgba(255, 255, 255, 1);
  5809. border:none;
  5810. border-radius:0px;
  5811. -moz-box-shadow:none;
  5812. -webkit-box-shadow:none;
  5813. box-shadow:none;
  5814. font-size:14px;
  5815. color:#AAAAAA;
  5816. }
  5817. #u93046 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:654px;
  5821. top:145px;
  5822. width:134px;
  5823. height:23px;
  5824. display:flex;
  5825. font-size:14px;
  5826. color:#AAAAAA;
  5827. }
  5828. #u93046 .text {
  5829. position:absolute;
  5830. align-self:flex-start;
  5831. padding:2px 2px 2px 2px;
  5832. box-sizing:border-box;
  5833. width:100%;
  5834. }
  5835. #u93046_div.disabled {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:0px;
  5839. top:0px;
  5840. width:134px;
  5841. height:23px;
  5842. background:inherit;
  5843. background-color:rgba(240, 240, 240, 1);
  5844. border:none;
  5845. border-radius:0px;
  5846. -moz-box-shadow:none;
  5847. -webkit-box-shadow:none;
  5848. box-shadow:none;
  5849. font-size:14px;
  5850. color:#AAAAAA;
  5851. }
  5852. #u93046.disabled {
  5853. }
  5854. .u93046_input_option {
  5855. font-size:14px;
  5856. }
  5857. #u93047 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:0px;
  5861. top:0px;
  5862. width:0px;
  5863. height:0px;
  5864. }
  5865. #u93048_div {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:140px;
  5871. height:30px;
  5872. background:inherit;
  5873. background-color:rgba(255, 255, 255, 1);
  5874. box-sizing:border-box;
  5875. border-width:1px;
  5876. border-style:solid;
  5877. border-color:rgba(201, 201, 201, 1);
  5878. border-radius:4px;
  5879. -moz-box-shadow:none;
  5880. -webkit-box-shadow:none;
  5881. box-shadow:none;
  5882. font-family:'Microsoft YaHei', sans-serif;
  5883. font-weight:400;
  5884. font-style:normal;
  5885. font-size:14px;
  5886. color:#CCCCCC;
  5887. text-align:left;
  5888. }
  5889. #u93048 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:1400px;
  5893. top:105px;
  5894. width:140px;
  5895. height:30px;
  5896. display:flex;
  5897. font-family:'Microsoft YaHei', sans-serif;
  5898. font-weight:400;
  5899. font-style:normal;
  5900. font-size:14px;
  5901. color:#CCCCCC;
  5902. text-align:left;
  5903. }
  5904. #u93048 .text {
  5905. position:absolute;
  5906. align-self:center;
  5907. padding:2px 8px 2px 8px;
  5908. box-sizing:border-box;
  5909. width:100%;
  5910. }
  5911. #u93048_text {
  5912. border-width:0px;
  5913. word-wrap:break-word;
  5914. text-transform:none;
  5915. visibility:hidden;
  5916. }
  5917. #u93049_input {
  5918. position:absolute;
  5919. left:0px;
  5920. top:0px;
  5921. width:127px;
  5922. height:25px;
  5923. padding:2px 2px 2px 2px;
  5924. font-family:'Microsoft YaHei', sans-serif;
  5925. font-weight:400;
  5926. font-style:normal;
  5927. font-size:10px;
  5928. letter-spacing:normal;
  5929. color:#000000;
  5930. vertical-align:none;
  5931. text-align:left;
  5932. text-transform:none;
  5933. background-color:transparent;
  5934. border-color:transparent;
  5935. }
  5936. #u93049_input.disabled {
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:127px;
  5941. height:25px;
  5942. padding:2px 2px 2px 2px;
  5943. font-family:'Microsoft YaHei', sans-serif;
  5944. font-weight:400;
  5945. font-style:normal;
  5946. font-size:10px;
  5947. letter-spacing:normal;
  5948. color:#000000;
  5949. vertical-align:none;
  5950. text-align:left;
  5951. text-transform:none;
  5952. background-color:transparent;
  5953. border-color:transparent;
  5954. }
  5955. #u93049_div {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:127px;
  5961. height:25px;
  5962. background:inherit;
  5963. background-color:rgba(255, 255, 255, 1);
  5964. border:none;
  5965. border-radius:0px;
  5966. -moz-box-shadow:none;
  5967. -webkit-box-shadow:none;
  5968. box-shadow:none;
  5969. font-family:'Microsoft YaHei', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:10px;
  5973. }
  5974. #u93049 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:1408px;
  5978. top:106px;
  5979. width:127px;
  5980. height:25px;
  5981. display:flex;
  5982. font-family:'Microsoft YaHei', sans-serif;
  5983. font-weight:400;
  5984. font-style:normal;
  5985. font-size:10px;
  5986. }
  5987. #u93049 .text {
  5988. position:absolute;
  5989. align-self:center;
  5990. padding:2px 2px 2px 2px;
  5991. box-sizing:border-box;
  5992. width:100%;
  5993. }
  5994. #u93049_div.disabled {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:0px;
  5998. top:0px;
  5999. width:127px;
  6000. height:25px;
  6001. background:inherit;
  6002. background-color:rgba(240, 240, 240, 1);
  6003. border:none;
  6004. border-radius:0px;
  6005. -moz-box-shadow:none;
  6006. -webkit-box-shadow:none;
  6007. box-shadow:none;
  6008. font-family:'Microsoft YaHei', sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:10px;
  6012. }
  6013. #u93049.disabled {
  6014. }
  6015. #u93050 {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:0px;
  6019. top:0px;
  6020. width:0px;
  6021. height:0px;
  6022. }
  6023. #u93051_div {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:140px;
  6029. height:30px;
  6030. background:inherit;
  6031. background-color:rgba(255, 255, 255, 1);
  6032. box-sizing:border-box;
  6033. border-width:1px;
  6034. border-style:solid;
  6035. border-color:rgba(215, 215, 215, 1);
  6036. border-radius:4px;
  6037. -moz-box-shadow:none;
  6038. -webkit-box-shadow:none;
  6039. box-shadow:none;
  6040. font-size:14px;
  6041. }
  6042. #u93051 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:1250px;
  6046. top:105px;
  6047. width:140px;
  6048. height:30px;
  6049. display:flex;
  6050. font-size:14px;
  6051. }
  6052. #u93051 .text {
  6053. position:absolute;
  6054. align-self:center;
  6055. padding:2px 2px 2px 2px;
  6056. box-sizing:border-box;
  6057. width:100%;
  6058. }
  6059. #u93051_text {
  6060. border-width:0px;
  6061. word-wrap:break-word;
  6062. text-transform:none;
  6063. visibility:hidden;
  6064. }
  6065. #u93052_input {
  6066. position:absolute;
  6067. left:0px;
  6068. top:0px;
  6069. width:134px;
  6070. height:23px;
  6071. padding:2px 2px 2px 2px;
  6072. font-family:'ArialMT', 'Arial', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:14px;
  6076. letter-spacing:normal;
  6077. color:#AAAAAA;
  6078. vertical-align:none;
  6079. text-align:left;
  6080. text-transform:none;
  6081. background-color:transparent;
  6082. border-color:transparent;
  6083. }
  6084. #u93052_input.disabled {
  6085. position:absolute;
  6086. left:0px;
  6087. top:0px;
  6088. width:134px;
  6089. height:23px;
  6090. padding:2px 2px 2px 2px;
  6091. font-family:'ArialMT', 'Arial', sans-serif;
  6092. font-weight:400;
  6093. font-style:normal;
  6094. font-size:14px;
  6095. letter-spacing:normal;
  6096. color:#AAAAAA;
  6097. vertical-align:none;
  6098. text-align:left;
  6099. text-transform:none;
  6100. background-color:transparent;
  6101. border-color:transparent;
  6102. }
  6103. #u93052_div {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:134px;
  6109. height:23px;
  6110. background:inherit;
  6111. background-color:rgba(255, 255, 255, 1);
  6112. border:none;
  6113. border-radius:0px;
  6114. -moz-box-shadow:none;
  6115. -webkit-box-shadow:none;
  6116. box-shadow:none;
  6117. font-size:14px;
  6118. color:#AAAAAA;
  6119. }
  6120. #u93052 {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:1254px;
  6124. top:107px;
  6125. width:134px;
  6126. height:23px;
  6127. display:flex;
  6128. font-size:14px;
  6129. color:#AAAAAA;
  6130. }
  6131. #u93052 .text {
  6132. position:absolute;
  6133. align-self:flex-start;
  6134. padding:2px 2px 2px 2px;
  6135. box-sizing:border-box;
  6136. width:100%;
  6137. }
  6138. #u93052_div.disabled {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:0px;
  6142. top:0px;
  6143. width:134px;
  6144. height:23px;
  6145. background:inherit;
  6146. background-color:rgba(240, 240, 240, 1);
  6147. border:none;
  6148. border-radius:0px;
  6149. -moz-box-shadow:none;
  6150. -webkit-box-shadow:none;
  6151. box-shadow:none;
  6152. font-size:14px;
  6153. color:#AAAAAA;
  6154. }
  6155. #u93052.disabled {
  6156. }
  6157. .u93052_input_option {
  6158. font-size:14px;
  6159. }
  6160. #u93053 {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:0px;
  6166. height:0px;
  6167. }
  6168. #u93054_div {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:140px;
  6174. height:30px;
  6175. background:inherit;
  6176. background-color:rgba(255, 255, 255, 1);
  6177. box-sizing:border-box;
  6178. border-width:1px;
  6179. border-style:solid;
  6180. border-color:rgba(215, 215, 215, 1);
  6181. border-radius:4px;
  6182. -moz-box-shadow:none;
  6183. -webkit-box-shadow:none;
  6184. box-shadow:none;
  6185. font-size:14px;
  6186. }
  6187. #u93054 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:350px;
  6191. top:103px;
  6192. width:140px;
  6193. height:30px;
  6194. display:flex;
  6195. font-size:14px;
  6196. }
  6197. #u93054 .text {
  6198. position:absolute;
  6199. align-self:center;
  6200. padding:2px 2px 2px 2px;
  6201. box-sizing:border-box;
  6202. width:100%;
  6203. }
  6204. #u93054_text {
  6205. border-width:0px;
  6206. word-wrap:break-word;
  6207. text-transform:none;
  6208. visibility:hidden;
  6209. }
  6210. #u93055_input {
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:134px;
  6215. height:23px;
  6216. padding:2px 2px 2px 2px;
  6217. font-family:'ArialMT', 'Arial', sans-serif;
  6218. font-weight:400;
  6219. font-style:normal;
  6220. font-size:14px;
  6221. letter-spacing:normal;
  6222. color:#AAAAAA;
  6223. vertical-align:none;
  6224. text-align:left;
  6225. text-transform:none;
  6226. background-color:transparent;
  6227. border-color:transparent;
  6228. }
  6229. #u93055_input.disabled {
  6230. position:absolute;
  6231. left:0px;
  6232. top:0px;
  6233. width:134px;
  6234. height:23px;
  6235. padding:2px 2px 2px 2px;
  6236. font-family:'ArialMT', 'Arial', sans-serif;
  6237. font-weight:400;
  6238. font-style:normal;
  6239. font-size:14px;
  6240. letter-spacing:normal;
  6241. color:#AAAAAA;
  6242. vertical-align:none;
  6243. text-align:left;
  6244. text-transform:none;
  6245. background-color:transparent;
  6246. border-color:transparent;
  6247. }
  6248. #u93055_div {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:134px;
  6254. height:23px;
  6255. background:inherit;
  6256. background-color:rgba(255, 255, 255, 1);
  6257. border:none;
  6258. border-radius:0px;
  6259. -moz-box-shadow:none;
  6260. -webkit-box-shadow:none;
  6261. box-shadow:none;
  6262. font-size:14px;
  6263. color:#AAAAAA;
  6264. }
  6265. #u93055 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:354px;
  6269. top:105px;
  6270. width:134px;
  6271. height:23px;
  6272. display:flex;
  6273. font-size:14px;
  6274. color:#AAAAAA;
  6275. }
  6276. #u93055 .text {
  6277. position:absolute;
  6278. align-self:flex-start;
  6279. padding:2px 2px 2px 2px;
  6280. box-sizing:border-box;
  6281. width:100%;
  6282. }
  6283. #u93055_div.disabled {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:134px;
  6289. height:23px;
  6290. background:inherit;
  6291. background-color:rgba(240, 240, 240, 1);
  6292. border:none;
  6293. border-radius:0px;
  6294. -moz-box-shadow:none;
  6295. -webkit-box-shadow:none;
  6296. box-shadow:none;
  6297. font-size:14px;
  6298. color:#AAAAAA;
  6299. }
  6300. #u93055.disabled {
  6301. }
  6302. .u93055_input_option {
  6303. font-size:14px;
  6304. }
  6305. #u93056 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:0px;
  6311. height:0px;
  6312. }
  6313. #u93057_div {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:140px;
  6319. height:30px;
  6320. background:inherit;
  6321. background-color:rgba(255, 255, 255, 1);
  6322. box-sizing:border-box;
  6323. border-width:1px;
  6324. border-style:solid;
  6325. border-color:rgba(215, 215, 215, 1);
  6326. border-radius:4px;
  6327. -moz-box-shadow:none;
  6328. -webkit-box-shadow:none;
  6329. box-shadow:none;
  6330. font-size:14px;
  6331. }
  6332. #u93057 {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:800px;
  6336. top:143px;
  6337. width:140px;
  6338. height:30px;
  6339. display:flex;
  6340. font-size:14px;
  6341. }
  6342. #u93057 .text {
  6343. position:absolute;
  6344. align-self:center;
  6345. padding:2px 2px 2px 2px;
  6346. box-sizing:border-box;
  6347. width:100%;
  6348. }
  6349. #u93057_text {
  6350. border-width:0px;
  6351. word-wrap:break-word;
  6352. text-transform:none;
  6353. visibility:hidden;
  6354. }
  6355. #u93058_input {
  6356. position:absolute;
  6357. left:0px;
  6358. top:0px;
  6359. width:134px;
  6360. height:23px;
  6361. padding:2px 2px 2px 2px;
  6362. font-family:'ArialMT', 'Arial', sans-serif;
  6363. font-weight:400;
  6364. font-style:normal;
  6365. font-size:14px;
  6366. letter-spacing:normal;
  6367. color:#AAAAAA;
  6368. vertical-align:none;
  6369. text-align:left;
  6370. text-transform:none;
  6371. background-color:transparent;
  6372. border-color:transparent;
  6373. }
  6374. #u93058_input.disabled {
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:134px;
  6379. height:23px;
  6380. padding:2px 2px 2px 2px;
  6381. font-family:'ArialMT', 'Arial', sans-serif;
  6382. font-weight:400;
  6383. font-style:normal;
  6384. font-size:14px;
  6385. letter-spacing:normal;
  6386. color:#AAAAAA;
  6387. vertical-align:none;
  6388. text-align:left;
  6389. text-transform:none;
  6390. background-color:transparent;
  6391. border-color:transparent;
  6392. }
  6393. #u93058_div {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:134px;
  6399. height:23px;
  6400. background:inherit;
  6401. background-color:rgba(255, 255, 255, 1);
  6402. border:none;
  6403. border-radius:0px;
  6404. -moz-box-shadow:none;
  6405. -webkit-box-shadow:none;
  6406. box-shadow:none;
  6407. font-size:14px;
  6408. color:#AAAAAA;
  6409. }
  6410. #u93058 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:804px;
  6414. top:145px;
  6415. width:134px;
  6416. height:23px;
  6417. display:flex;
  6418. font-size:14px;
  6419. color:#AAAAAA;
  6420. }
  6421. #u93058 .text {
  6422. position:absolute;
  6423. align-self:flex-start;
  6424. padding:2px 2px 2px 2px;
  6425. box-sizing:border-box;
  6426. width:100%;
  6427. }
  6428. #u93058_div.disabled {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:0px;
  6432. top:0px;
  6433. width:134px;
  6434. height:23px;
  6435. background:inherit;
  6436. background-color:rgba(240, 240, 240, 1);
  6437. border:none;
  6438. border-radius:0px;
  6439. -moz-box-shadow:none;
  6440. -webkit-box-shadow:none;
  6441. box-shadow:none;
  6442. font-size:14px;
  6443. color:#AAAAAA;
  6444. }
  6445. #u93058.disabled {
  6446. }
  6447. .u93058_input_option {
  6448. font-size:14px;
  6449. }
  6450. #u93059 {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:0px;
  6454. top:0px;
  6455. width:0px;
  6456. height:0px;
  6457. }
  6458. #u93060_div {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:140px;
  6464. height:30px;
  6465. background:inherit;
  6466. background-color:rgba(255, 255, 255, 1);
  6467. box-sizing:border-box;
  6468. border-width:1px;
  6469. border-style:solid;
  6470. border-color:rgba(201, 201, 201, 1);
  6471. border-radius:4px;
  6472. -moz-box-shadow:none;
  6473. -webkit-box-shadow:none;
  6474. box-shadow:none;
  6475. font-family:'Microsoft YaHei', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:14px;
  6479. color:#CCCCCC;
  6480. text-align:left;
  6481. }
  6482. #u93060 {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:350px;
  6486. top:143px;
  6487. width:140px;
  6488. height:30px;
  6489. display:flex;
  6490. font-family:'Microsoft YaHei', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:14px;
  6494. color:#CCCCCC;
  6495. text-align:left;
  6496. }
  6497. #u93060 .text {
  6498. position:absolute;
  6499. align-self:center;
  6500. padding:2px 8px 2px 8px;
  6501. box-sizing:border-box;
  6502. width:100%;
  6503. }
  6504. #u93060_text {
  6505. border-width:0px;
  6506. word-wrap:break-word;
  6507. text-transform:none;
  6508. visibility:hidden;
  6509. }
  6510. #u93061_input {
  6511. position:absolute;
  6512. left:0px;
  6513. top:0px;
  6514. width:127px;
  6515. height:25px;
  6516. padding:2px 2px 2px 2px;
  6517. font-family:'Microsoft YaHei', sans-serif;
  6518. font-weight:400;
  6519. font-style:normal;
  6520. font-size:10px;
  6521. letter-spacing:normal;
  6522. color:#000000;
  6523. vertical-align:none;
  6524. text-align:left;
  6525. text-transform:none;
  6526. background-color:transparent;
  6527. border-color:transparent;
  6528. }
  6529. #u93061_input.disabled {
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:127px;
  6534. height:25px;
  6535. padding:2px 2px 2px 2px;
  6536. font-family:'Microsoft YaHei', sans-serif;
  6537. font-weight:400;
  6538. font-style:normal;
  6539. font-size:10px;
  6540. letter-spacing:normal;
  6541. color:#000000;
  6542. vertical-align:none;
  6543. text-align:left;
  6544. text-transform:none;
  6545. background-color:transparent;
  6546. border-color:transparent;
  6547. }
  6548. #u93061_div {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:127px;
  6554. height:25px;
  6555. background:inherit;
  6556. background-color:rgba(255, 255, 255, 1);
  6557. border:none;
  6558. border-radius:0px;
  6559. -moz-box-shadow:none;
  6560. -webkit-box-shadow:none;
  6561. box-shadow:none;
  6562. font-family:'Microsoft YaHei', sans-serif;
  6563. font-weight:400;
  6564. font-style:normal;
  6565. font-size:10px;
  6566. }
  6567. #u93061 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:358px;
  6571. top:144px;
  6572. width:127px;
  6573. height:25px;
  6574. display:flex;
  6575. font-family:'Microsoft YaHei', sans-serif;
  6576. font-weight:400;
  6577. font-style:normal;
  6578. font-size:10px;
  6579. }
  6580. #u93061 .text {
  6581. position:absolute;
  6582. align-self:center;
  6583. padding:2px 2px 2px 2px;
  6584. box-sizing:border-box;
  6585. width:100%;
  6586. }
  6587. #u93061_div.disabled {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:0px;
  6591. top:0px;
  6592. width:127px;
  6593. height:25px;
  6594. background:inherit;
  6595. background-color:rgba(240, 240, 240, 1);
  6596. border:none;
  6597. border-radius:0px;
  6598. -moz-box-shadow:none;
  6599. -webkit-box-shadow:none;
  6600. box-shadow:none;
  6601. font-family:'Microsoft YaHei', sans-serif;
  6602. font-weight:400;
  6603. font-style:normal;
  6604. font-size:10px;
  6605. }
  6606. #u93061.disabled {
  6607. }
  6608. #u93062_img {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:0px;
  6612. top:0px;
  6613. width:50px;
  6614. height:31px;
  6615. }
  6616. #u93062 {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:1254px;
  6620. top:317px;
  6621. width:50px;
  6622. height:31px;
  6623. display:flex;
  6624. }
  6625. #u93062 .text {
  6626. position:absolute;
  6627. align-self:center;
  6628. padding:2px 2px 2px 2px;
  6629. box-sizing:border-box;
  6630. width:100%;
  6631. }
  6632. #u93062_text {
  6633. border-width:0px;
  6634. word-wrap:break-word;
  6635. text-transform:none;
  6636. visibility:hidden;
  6637. }
  6638. #u93063_img {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:0px;
  6642. top:0px;
  6643. width:50px;
  6644. height:31px;
  6645. }
  6646. #u93063 {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:1254px;
  6650. top:272px;
  6651. width:50px;
  6652. height:31px;
  6653. display:flex;
  6654. }
  6655. #u93063 .text {
  6656. position:absolute;
  6657. align-self:center;
  6658. padding:2px 2px 2px 2px;
  6659. box-sizing:border-box;
  6660. width:100%;
  6661. }
  6662. #u93063_text {
  6663. border-width:0px;
  6664. word-wrap:break-word;
  6665. text-transform:none;
  6666. visibility:hidden;
  6667. }
  6668. #u93064 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:0px;
  6674. height:0px;
  6675. }
  6676. #u93065_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:200px;
  6682. height:1180px;
  6683. background:inherit;
  6684. background-color:rgba(255, 255, 255, 1);
  6685. border:none;
  6686. border-radius:0px;
  6687. -moz-box-shadow:none;
  6688. -webkit-box-shadow:none;
  6689. box-shadow:none;
  6690. }
  6691. #u93065 {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:120px;
  6695. top:50px;
  6696. width:200px;
  6697. height:1180px;
  6698. display:flex;
  6699. }
  6700. #u93065 .text {
  6701. position:absolute;
  6702. align-self:center;
  6703. padding:2px 2px 2px 2px;
  6704. box-sizing:border-box;
  6705. width:100%;
  6706. }
  6707. #u93065_text {
  6708. border-width:0px;
  6709. word-wrap:break-word;
  6710. text-transform:none;
  6711. visibility:hidden;
  6712. }
  6713. #u93066_div {
  6714. border-width:0px;
  6715. position:absolute;
  6716. left:0px;
  6717. top:0px;
  6718. width:200px;
  6719. height:60px;
  6720. background:inherit;
  6721. background-color:rgba(224, 231, 247, 1);
  6722. border:none;
  6723. border-radius:0px;
  6724. -moz-box-shadow:none;
  6725. -webkit-box-shadow:none;
  6726. box-shadow:none;
  6727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6728. font-weight:500;
  6729. font-style:normal;
  6730. font-size:18px;
  6731. }
  6732. #u93066 {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:120px;
  6736. top:50px;
  6737. width:200px;
  6738. height:60px;
  6739. display:flex;
  6740. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6741. font-weight:500;
  6742. font-style:normal;
  6743. font-size:18px;
  6744. }
  6745. #u93066 .text {
  6746. position:absolute;
  6747. align-self:center;
  6748. padding:0px 0px 0px 20px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u93066_text {
  6753. border-width:0px;
  6754. word-wrap:break-word;
  6755. text-transform:none;
  6756. }
  6757. #u93067_div {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:65px;
  6763. height:22px;
  6764. background:inherit;
  6765. background-color:rgba(255, 255, 255, 0);
  6766. border:none;
  6767. border-radius:0px;
  6768. -moz-box-shadow:none;
  6769. -webkit-box-shadow:none;
  6770. box-shadow:none;
  6771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6772. font-weight:400;
  6773. font-style:normal;
  6774. font-size:16px;
  6775. }
  6776. #u93067 {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:145px;
  6780. top:500px;
  6781. width:65px;
  6782. height:22px;
  6783. display:flex;
  6784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6785. font-weight:400;
  6786. font-style:normal;
  6787. font-size:16px;
  6788. }
  6789. #u93067 .text {
  6790. position:absolute;
  6791. align-self:flex-start;
  6792. padding:0px 0px 0px 0px;
  6793. box-sizing:border-box;
  6794. width:100%;
  6795. }
  6796. #u93067_text {
  6797. border-width:0px;
  6798. white-space:nowrap;
  6799. text-transform:none;
  6800. }
  6801. #u93068_div {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:0px;
  6805. top:0px;
  6806. width:79px;
  6807. height:17px;
  6808. background:inherit;
  6809. background-color:rgba(255, 255, 255, 0);
  6810. border:none;
  6811. border-radius:0px;
  6812. -moz-box-shadow:none;
  6813. -webkit-box-shadow:none;
  6814. box-shadow:none;
  6815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6816. font-weight:400;
  6817. font-style:normal;
  6818. font-size:12px;
  6819. color:#AAAAAA;
  6820. }
  6821. #u93068 {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:143px;
  6825. top:463px;
  6826. width:79px;
  6827. height:17px;
  6828. display:flex;
  6829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. font-size:12px;
  6833. color:#AAAAAA;
  6834. }
  6835. #u93068 .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. #u93068_text {
  6843. border-width:0px;
  6844. white-space:nowrap;
  6845. text-transform:none;
  6846. }
  6847. #u93069_div {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:49px;
  6853. height:17px;
  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:12px;
  6865. color:#AAAAAA;
  6866. }
  6867. #u93069 {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:144px;
  6871. top:131px;
  6872. width:49px;
  6873. height:17px;
  6874. display:flex;
  6875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. font-size:12px;
  6879. color:#AAAAAA;
  6880. }
  6881. #u93069 .text {
  6882. position:absolute;
  6883. align-self:flex-start;
  6884. padding:0px 0px 0px 0px;
  6885. box-sizing:border-box;
  6886. width:100%;
  6887. }
  6888. #u93069_text {
  6889. border-width:0px;
  6890. white-space:nowrap;
  6891. text-transform:none;
  6892. }
  6893. #u93070_div {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:65px;
  6899. height:22px;
  6900. background:inherit;
  6901. background-color:rgba(255, 255, 255, 0);
  6902. border:none;
  6903. border-radius:0px;
  6904. -moz-box-shadow:none;
  6905. -webkit-box-shadow:none;
  6906. box-shadow:none;
  6907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6908. font-weight:400;
  6909. font-style:normal;
  6910. font-size:16px;
  6911. }
  6912. #u93070 {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:146px;
  6916. top:168px;
  6917. width:65px;
  6918. height:22px;
  6919. display:flex;
  6920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6921. font-weight:400;
  6922. font-style:normal;
  6923. font-size:16px;
  6924. }
  6925. #u93070 .text {
  6926. position:absolute;
  6927. align-self:flex-start;
  6928. padding:0px 0px 0px 0px;
  6929. box-sizing:border-box;
  6930. width:100%;
  6931. }
  6932. #u93070_text {
  6933. border-width:0px;
  6934. white-space:nowrap;
  6935. text-transform:none;
  6936. }
  6937. #u93071_img {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:201px;
  6943. height:2px;
  6944. }
  6945. #u93071 {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:120px;
  6949. top:442px;
  6950. width:200px;
  6951. height:1px;
  6952. display:flex;
  6953. }
  6954. #u93071 .text {
  6955. position:absolute;
  6956. align-self:center;
  6957. padding:2px 2px 2px 2px;
  6958. box-sizing:border-box;
  6959. width:100%;
  6960. }
  6961. #u93071_text {
  6962. border-width:0px;
  6963. word-wrap:break-word;
  6964. text-transform:none;
  6965. visibility:hidden;
  6966. }
  6967. #u93072_div {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:65px;
  6973. height:22px;
  6974. background:inherit;
  6975. background-color:rgba(255, 255, 255, 0);
  6976. border:none;
  6977. border-radius:0px;
  6978. -moz-box-shadow:none;
  6979. -webkit-box-shadow:none;
  6980. box-shadow:none;
  6981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6982. font-weight:400;
  6983. font-style:normal;
  6984. font-size:16px;
  6985. }
  6986. #u93072 {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:145px;
  6990. top:542px;
  6991. width:65px;
  6992. height:22px;
  6993. display:flex;
  6994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6995. font-weight:400;
  6996. font-style:normal;
  6997. font-size:16px;
  6998. }
  6999. #u93072 .text {
  7000. position:absolute;
  7001. align-self:flex-start;
  7002. padding:0px 0px 0px 0px;
  7003. box-sizing:border-box;
  7004. width:100%;
  7005. }
  7006. #u93072_text {
  7007. border-width:0px;
  7008. white-space:nowrap;
  7009. text-transform:none;
  7010. }
  7011. #u93073_div {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:0px;
  7015. top:0px;
  7016. width:65px;
  7017. height:22px;
  7018. background:inherit;
  7019. background-color:rgba(255, 255, 255, 0);
  7020. border:none;
  7021. border-radius:0px;
  7022. -moz-box-shadow:none;
  7023. -webkit-box-shadow:none;
  7024. box-shadow:none;
  7025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7026. font-weight:400;
  7027. font-style:normal;
  7028. font-size:16px;
  7029. }
  7030. #u93073 {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:146px;
  7034. top:272px;
  7035. width:65px;
  7036. height:22px;
  7037. display:flex;
  7038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7039. font-weight:400;
  7040. font-style:normal;
  7041. font-size:16px;
  7042. }
  7043. #u93073 .text {
  7044. position:absolute;
  7045. align-self:flex-start;
  7046. padding:0px 0px 0px 0px;
  7047. box-sizing:border-box;
  7048. width:100%;
  7049. }
  7050. #u93073_text {
  7051. border-width:0px;
  7052. white-space:nowrap;
  7053. text-transform:none;
  7054. }
  7055. #u93074_div {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:49px;
  7061. height:17px;
  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:12px;
  7073. color:#AAAAAA;
  7074. }
  7075. #u93074 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:144px;
  7079. top:235px;
  7080. width:49px;
  7081. height:17px;
  7082. display:flex;
  7083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7084. font-weight:400;
  7085. font-style:normal;
  7086. font-size:12px;
  7087. color:#AAAAAA;
  7088. }
  7089. #u93074 .text {
  7090. position:absolute;
  7091. align-self:flex-start;
  7092. padding:0px 0px 0px 0px;
  7093. box-sizing:border-box;
  7094. width:100%;
  7095. }
  7096. #u93074_text {
  7097. border-width:0px;
  7098. white-space:nowrap;
  7099. text-transform:none;
  7100. }
  7101. #u93075_img {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:0px;
  7105. top:0px;
  7106. width:201px;
  7107. height:2px;
  7108. }
  7109. #u93075 {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:121px;
  7113. top:214px;
  7114. width:200px;
  7115. height:1px;
  7116. display:flex;
  7117. }
  7118. #u93075 .text {
  7119. position:absolute;
  7120. align-self:center;
  7121. padding:2px 2px 2px 2px;
  7122. box-sizing:border-box;
  7123. width:100%;
  7124. }
  7125. #u93075_text {
  7126. border-width:0px;
  7127. word-wrap:break-word;
  7128. text-transform:none;
  7129. visibility:hidden;
  7130. }
  7131. #u93076_div {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:0px;
  7135. top:0px;
  7136. width:65px;
  7137. height:22px;
  7138. background:inherit;
  7139. background-color:rgba(255, 255, 255, 0);
  7140. border:none;
  7141. border-radius:0px;
  7142. -moz-box-shadow:none;
  7143. -webkit-box-shadow:none;
  7144. box-shadow:none;
  7145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7146. font-weight:400;
  7147. font-style:normal;
  7148. font-size:16px;
  7149. }
  7150. #u93076 {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:146px;
  7154. top:314px;
  7155. width:65px;
  7156. height:22px;
  7157. display:flex;
  7158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7159. font-weight:400;
  7160. font-style:normal;
  7161. font-size:16px;
  7162. }
  7163. #u93076 .text {
  7164. position:absolute;
  7165. align-self:flex-start;
  7166. padding:0px 0px 0px 0px;
  7167. box-sizing:border-box;
  7168. width:100%;
  7169. }
  7170. #u93076_text {
  7171. border-width:0px;
  7172. white-space:nowrap;
  7173. text-transform:none;
  7174. }
  7175. #u93077_div {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:0px;
  7179. top:0px;
  7180. width:65px;
  7181. height:22px;
  7182. background:inherit;
  7183. background-color:rgba(255, 255, 255, 0);
  7184. border:none;
  7185. border-radius:0px;
  7186. -moz-box-shadow:none;
  7187. -webkit-box-shadow:none;
  7188. box-shadow:none;
  7189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7190. font-weight:400;
  7191. font-style:normal;
  7192. font-size:16px;
  7193. }
  7194. #u93077 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:146px;
  7198. top:356px;
  7199. width:65px;
  7200. height:22px;
  7201. display:flex;
  7202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:16px;
  7206. }
  7207. #u93077 .text {
  7208. position:absolute;
  7209. align-self:flex-start;
  7210. padding:0px 0px 0px 0px;
  7211. box-sizing:border-box;
  7212. width:100%;
  7213. }
  7214. #u93077_text {
  7215. border-width:0px;
  7216. white-space:nowrap;
  7217. text-transform:none;
  7218. }
  7219. #u93078_div {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:81px;
  7225. height:22px;
  7226. background:inherit;
  7227. background-color:rgba(255, 255, 255, 0);
  7228. border:none;
  7229. border-radius:0px;
  7230. -moz-box-shadow:none;
  7231. -webkit-box-shadow:none;
  7232. box-shadow:none;
  7233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7234. font-weight:400;
  7235. font-style:normal;
  7236. font-size:16px;
  7237. }
  7238. #u93078 {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:146px;
  7242. top:398px;
  7243. width:81px;
  7244. height:22px;
  7245. display:flex;
  7246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7247. font-weight:400;
  7248. font-style:normal;
  7249. font-size:16px;
  7250. }
  7251. #u93078 .text {
  7252. position:absolute;
  7253. align-self:flex-start;
  7254. padding:0px 0px 0px 0px;
  7255. box-sizing:border-box;
  7256. width:100%;
  7257. }
  7258. #u93078_text {
  7259. border-width:0px;
  7260. white-space:nowrap;
  7261. text-transform:none;
  7262. }
  7263. #u93079_div {
  7264. border-width:0px;
  7265. position:absolute;
  7266. left:0px;
  7267. top:0px;
  7268. width:65px;
  7269. height:22px;
  7270. background:inherit;
  7271. background-color:rgba(255, 255, 255, 0);
  7272. border:none;
  7273. border-radius:0px;
  7274. -moz-box-shadow:none;
  7275. -webkit-box-shadow:none;
  7276. box-shadow:none;
  7277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:16px;
  7281. }
  7282. #u93079 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:145px;
  7286. top:810px;
  7287. width:65px;
  7288. height:22px;
  7289. display:flex;
  7290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7291. font-weight:400;
  7292. font-style:normal;
  7293. font-size:16px;
  7294. }
  7295. #u93079 .text {
  7296. position:absolute;
  7297. align-self:flex-start;
  7298. padding:0px 0px 0px 0px;
  7299. box-sizing:border-box;
  7300. width:100%;
  7301. }
  7302. #u93079_text {
  7303. border-width:0px;
  7304. white-space:nowrap;
  7305. text-transform:none;
  7306. }
  7307. #u93080_div {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:0px;
  7311. top:0px;
  7312. width:65px;
  7313. height:22px;
  7314. background:inherit;
  7315. background-color:rgba(255, 255, 255, 0);
  7316. border:none;
  7317. border-radius:0px;
  7318. -moz-box-shadow:none;
  7319. -webkit-box-shadow:none;
  7320. box-shadow:none;
  7321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7322. font-weight:400;
  7323. font-style:normal;
  7324. font-size:16px;
  7325. }
  7326. #u93080 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:145px;
  7330. top:642px;
  7331. width:65px;
  7332. height:22px;
  7333. display:flex;
  7334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:16px;
  7338. }
  7339. #u93080 .text {
  7340. position:absolute;
  7341. align-self:flex-start;
  7342. padding:0px 0px 0px 0px;
  7343. box-sizing:border-box;
  7344. width:100%;
  7345. }
  7346. #u93080_text {
  7347. border-width:0px;
  7348. white-space:nowrap;
  7349. text-transform:none;
  7350. }
  7351. #u93081_div {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:0px;
  7355. top:0px;
  7356. width:49px;
  7357. height:17px;
  7358. background:inherit;
  7359. background-color:rgba(255, 255, 255, 0);
  7360. border:none;
  7361. border-radius:0px;
  7362. -moz-box-shadow:none;
  7363. -webkit-box-shadow:none;
  7364. box-shadow:none;
  7365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7366. font-weight:400;
  7367. font-style:normal;
  7368. font-size:12px;
  7369. color:#AAAAAA;
  7370. }
  7371. #u93081 {
  7372. border-width:0px;
  7373. position:absolute;
  7374. left:143px;
  7375. top:605px;
  7376. width:49px;
  7377. height:17px;
  7378. display:flex;
  7379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7380. font-weight:400;
  7381. font-style:normal;
  7382. font-size:12px;
  7383. color:#AAAAAA;
  7384. }
  7385. #u93081 .text {
  7386. position:absolute;
  7387. align-self:flex-start;
  7388. padding:0px 0px 0px 0px;
  7389. box-sizing:border-box;
  7390. width:100%;
  7391. }
  7392. #u93081_text {
  7393. border-width:0px;
  7394. white-space:nowrap;
  7395. text-transform:none;
  7396. }
  7397. #u93082_img {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:0px;
  7401. top:0px;
  7402. width:201px;
  7403. height:2px;
  7404. }
  7405. #u93082 {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:120px;
  7409. top:584px;
  7410. width:200px;
  7411. height:1px;
  7412. display:flex;
  7413. }
  7414. #u93082 .text {
  7415. position:absolute;
  7416. align-self:center;
  7417. padding:2px 2px 2px 2px;
  7418. box-sizing:border-box;
  7419. width:100%;
  7420. }
  7421. #u93082_text {
  7422. border-width:0px;
  7423. word-wrap:break-word;
  7424. text-transform:none;
  7425. visibility:hidden;
  7426. }
  7427. #u93083_div {
  7428. border-width:0px;
  7429. position:absolute;
  7430. left:0px;
  7431. top:0px;
  7432. width:65px;
  7433. height:22px;
  7434. background:inherit;
  7435. background-color:rgba(255, 255, 255, 0);
  7436. border:none;
  7437. border-radius:0px;
  7438. -moz-box-shadow:none;
  7439. -webkit-box-shadow:none;
  7440. box-shadow:none;
  7441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7442. font-weight:400;
  7443. font-style:normal;
  7444. font-size:16px;
  7445. }
  7446. #u93083 {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:145px;
  7450. top:684px;
  7451. width:65px;
  7452. height:22px;
  7453. display:flex;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:16px;
  7458. }
  7459. #u93083 .text {
  7460. position:absolute;
  7461. align-self:flex-start;
  7462. padding:0px 0px 0px 0px;
  7463. box-sizing:border-box;
  7464. width:100%;
  7465. }
  7466. #u93083_text {
  7467. border-width:0px;
  7468. white-space:nowrap;
  7469. text-transform:none;
  7470. }
  7471. #u93084_div {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:0px;
  7475. top:0px;
  7476. width:65px;
  7477. height:22px;
  7478. background:inherit;
  7479. background-color:rgba(255, 255, 255, 0);
  7480. border:none;
  7481. border-radius:0px;
  7482. -moz-box-shadow:none;
  7483. -webkit-box-shadow:none;
  7484. box-shadow:none;
  7485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:16px;
  7489. }
  7490. #u93084 {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:145px;
  7494. top:726px;
  7495. width:65px;
  7496. height:22px;
  7497. display:flex;
  7498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7499. font-weight:400;
  7500. font-style:normal;
  7501. font-size:16px;
  7502. }
  7503. #u93084 .text {
  7504. position:absolute;
  7505. align-self:flex-start;
  7506. padding:0px 0px 0px 0px;
  7507. box-sizing:border-box;
  7508. width:100%;
  7509. }
  7510. #u93084_text {
  7511. border-width:0px;
  7512. white-space:nowrap;
  7513. text-transform:none;
  7514. }
  7515. #u93085_div {
  7516. border-width:0px;
  7517. position:absolute;
  7518. left:0px;
  7519. top:0px;
  7520. width:97px;
  7521. height:22px;
  7522. background:inherit;
  7523. background-color:rgba(255, 255, 255, 0);
  7524. border:none;
  7525. border-radius:0px;
  7526. -moz-box-shadow:none;
  7527. -webkit-box-shadow:none;
  7528. box-shadow:none;
  7529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:16px;
  7533. }
  7534. #u93085 {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:145px;
  7538. top:768px;
  7539. width:97px;
  7540. height:22px;
  7541. display:flex;
  7542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7543. font-weight:400;
  7544. font-style:normal;
  7545. font-size:16px;
  7546. }
  7547. #u93085 .text {
  7548. position:absolute;
  7549. align-self:flex-start;
  7550. padding:0px 0px 0px 0px;
  7551. box-sizing:border-box;
  7552. width:100%;
  7553. }
  7554. #u93085_text {
  7555. border-width:0px;
  7556. white-space:nowrap;
  7557. text-transform:none;
  7558. }
  7559. #u93086_div {
  7560. border-width:0px;
  7561. position:absolute;
  7562. left:0px;
  7563. top:0px;
  7564. width:65px;
  7565. height:22px;
  7566. background:inherit;
  7567. background-color:rgba(255, 255, 255, 0);
  7568. border:none;
  7569. border-radius:0px;
  7570. -moz-box-shadow:none;
  7571. -webkit-box-shadow:none;
  7572. box-shadow:none;
  7573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7574. font-weight:400;
  7575. font-style:normal;
  7576. font-size:16px;
  7577. }
  7578. #u93086 {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:145px;
  7582. top:910px;
  7583. width:65px;
  7584. height:22px;
  7585. display:flex;
  7586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7587. font-weight:400;
  7588. font-style:normal;
  7589. font-size:16px;
  7590. }
  7591. #u93086 .text {
  7592. position:absolute;
  7593. align-self:flex-start;
  7594. padding:0px 0px 0px 0px;
  7595. box-sizing:border-box;
  7596. width:100%;
  7597. }
  7598. #u93086_text {
  7599. border-width:0px;
  7600. white-space:nowrap;
  7601. text-transform:none;
  7602. }
  7603. #u93087_div {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:0px;
  7607. top:0px;
  7608. width:49px;
  7609. height:17px;
  7610. background:inherit;
  7611. background-color:rgba(255, 255, 255, 0);
  7612. border:none;
  7613. border-radius:0px;
  7614. -moz-box-shadow:none;
  7615. -webkit-box-shadow:none;
  7616. box-shadow:none;
  7617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7618. font-weight:400;
  7619. font-style:normal;
  7620. font-size:12px;
  7621. color:#AAAAAA;
  7622. }
  7623. #u93087 {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:143px;
  7627. top:873px;
  7628. width:49px;
  7629. height:17px;
  7630. display:flex;
  7631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7632. font-weight:400;
  7633. font-style:normal;
  7634. font-size:12px;
  7635. color:#AAAAAA;
  7636. }
  7637. #u93087 .text {
  7638. position:absolute;
  7639. align-self:flex-start;
  7640. padding:0px 0px 0px 0px;
  7641. box-sizing:border-box;
  7642. width:100%;
  7643. }
  7644. #u93087_text {
  7645. border-width:0px;
  7646. white-space:nowrap;
  7647. text-transform:none;
  7648. }
  7649. #u93088_img {
  7650. border-width:0px;
  7651. position:absolute;
  7652. left:0px;
  7653. top:0px;
  7654. width:201px;
  7655. height:2px;
  7656. }
  7657. #u93088 {
  7658. border-width:0px;
  7659. position:absolute;
  7660. left:120px;
  7661. top:852px;
  7662. width:200px;
  7663. height:1px;
  7664. display:flex;
  7665. }
  7666. #u93088 .text {
  7667. position:absolute;
  7668. align-self:center;
  7669. padding:2px 2px 2px 2px;
  7670. box-sizing:border-box;
  7671. width:100%;
  7672. }
  7673. #u93088_text {
  7674. border-width:0px;
  7675. word-wrap:break-word;
  7676. text-transform:none;
  7677. visibility:hidden;
  7678. }
  7679. #u93089_div {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:0px;
  7683. top:0px;
  7684. width:65px;
  7685. height:22px;
  7686. background:inherit;
  7687. background-color:rgba(255, 255, 255, 0);
  7688. border:none;
  7689. border-radius:0px;
  7690. -moz-box-shadow:none;
  7691. -webkit-box-shadow:none;
  7692. box-shadow:none;
  7693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7694. font-weight:400;
  7695. font-style:normal;
  7696. font-size:16px;
  7697. }
  7698. #u93089 {
  7699. border-width:0px;
  7700. position:absolute;
  7701. left:145px;
  7702. top:952px;
  7703. width:65px;
  7704. height:22px;
  7705. display:flex;
  7706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7707. font-weight:400;
  7708. font-style:normal;
  7709. font-size:16px;
  7710. }
  7711. #u93089 .text {
  7712. position:absolute;
  7713. align-self:flex-start;
  7714. padding:0px 0px 0px 0px;
  7715. box-sizing:border-box;
  7716. width:100%;
  7717. }
  7718. #u93089_text {
  7719. border-width:0px;
  7720. white-space:nowrap;
  7721. text-transform:none;
  7722. }