styles.css 118 KB

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