styles.css 117 KB

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