styles.css 119 KB

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