styles.css 214 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2272px;
  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. #u9813_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u9813 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u9813 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u9813_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u9814_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u9814 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u9814 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u9814_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u9815 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u9816_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u9816 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u9816 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u9816_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u9817_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u9817 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u9817 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u9817_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u9818_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u9818 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u9818 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u9818_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u9819_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u9819 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u9819 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u9819_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u9820 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u9821_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. #u9821 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  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. #u9821 .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. #u9821_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u9822_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u9822 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u9822 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u9822_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u9823 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u9824_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. #u9824 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  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. #u9824 .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. #u9824_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u9825_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u9825 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u9825 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u9825_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u9826 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u9827_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  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. color:#FFFFFF;
  451. }
  452. #u9827 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u9827 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u9827_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u9828_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u9828 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u9828 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u9828_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u9829 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u9830_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u9830 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u9830 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u9830_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u9831_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u9831 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u9831 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u9831_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u9832 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u9833_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u9833 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u9833 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u9833_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u9834_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u9834 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u9834 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u9834_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u9835 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u9836_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u9836 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u9836 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u9836_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u9837_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u9837 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u9837 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u9837_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u9838 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u9839_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u9839 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u9839 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u9839_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u9840_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u9840 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u9840 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u9840_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u9841 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u9842_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u9842 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u9842 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u9842_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u9843_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u9843 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u9843 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u9843_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u9844 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u9845_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u9845 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u9845 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u9845_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u9846_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u9846 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u9846 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u9846_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u9847 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u9848_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u9848 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u9848 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u9848_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u9849_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u9849 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u9849 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u9849_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u9850_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u9850_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u9850_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u9850 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u9850 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u9850_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u9850.disabled {
  1184. }
  1185. .u9850_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u9851_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u9851 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u9851 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u9851_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u9852_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u9852 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u9852 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u9852_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u9853_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u9853 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u9853 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u9853_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u9854 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u9855_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u9855 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u9855 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u9855_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u9856_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u9856 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u9856 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u9856_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u9857 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u9858_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u9858 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u9858 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u9858_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u9859_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u9859 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u9859 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u9859_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u9860 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u9861_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u9861 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u9861 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u9861_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u9862_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u9862 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u9862 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u9862_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u9863 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u9864_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u9864 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u9864 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u9864_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u9865_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u9865 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u9865 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u9865_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u9866 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u9867_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u9867 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u9867 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u9867_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u9868_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u9868 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u9868 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u9868_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u9869_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:1259px;
  1720. height:1180px;
  1721. background:inherit;
  1722. background-color:rgba(255, 255, 255, 1);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1726. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1727. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1728. }
  1729. #u9869 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:330px;
  1733. top:50px;
  1734. width:1259px;
  1735. height:1180px;
  1736. display:flex;
  1737. }
  1738. #u9869 .text {
  1739. position:absolute;
  1740. align-self:center;
  1741. padding:2px 2px 2px 2px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u9869_text {
  1746. border-width:0px;
  1747. word-wrap:break-word;
  1748. text-transform:none;
  1749. visibility:hidden;
  1750. }
  1751. #u9870_div {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:200px;
  1757. height:1180px;
  1758. background:inherit;
  1759. background-color:rgba(242, 242, 242, 1);
  1760. border:none;
  1761. border-radius:4px;
  1762. -moz-box-shadow:none;
  1763. -webkit-box-shadow:none;
  1764. box-shadow:none;
  1765. }
  1766. #u9870 {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:330px;
  1770. top:50px;
  1771. width:200px;
  1772. height:1180px;
  1773. display:flex;
  1774. }
  1775. #u9870 .text {
  1776. position:absolute;
  1777. align-self:center;
  1778. padding:2px 2px 2px 2px;
  1779. box-sizing:border-box;
  1780. width:100%;
  1781. }
  1782. #u9870_text {
  1783. border-width:0px;
  1784. word-wrap:break-word;
  1785. text-transform:none;
  1786. visibility:hidden;
  1787. }
  1788. #u9871_div {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:73px;
  1794. height:30px;
  1795. background:inherit;
  1796. background-color:rgba(255, 255, 255, 0);
  1797. border:none;
  1798. border-radius:0px;
  1799. -moz-box-shadow:none;
  1800. -webkit-box-shadow:none;
  1801. box-shadow:none;
  1802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1803. font-weight:400;
  1804. font-style:normal;
  1805. font-size:18px;
  1806. color:#000000;
  1807. line-height:30px;
  1808. }
  1809. #u9871 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:350px;
  1813. top:70px;
  1814. width:73px;
  1815. height:30px;
  1816. display:flex;
  1817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. font-size:18px;
  1821. color:#000000;
  1822. line-height:30px;
  1823. }
  1824. #u9871 .text {
  1825. position:absolute;
  1826. align-self:flex-start;
  1827. padding:0px 0px 0px 0px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u9871_text {
  1832. border-width:0px;
  1833. white-space:nowrap;
  1834. text-transform:none;
  1835. }
  1836. #u9872 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:0px;
  1842. height:0px;
  1843. }
  1844. #u9873_div {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:200px;
  1850. height:60px;
  1851. background:inherit;
  1852. background-color:rgba(0, 153, 255, 0.0980392156862745);
  1853. border:none;
  1854. border-radius:4px;
  1855. -moz-box-shadow:none;
  1856. -webkit-box-shadow:none;
  1857. box-shadow:none;
  1858. font-family:'Microsoft YaHei', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:14px;
  1862. color:#CCCCCC;
  1863. text-align:left;
  1864. }
  1865. #u9873 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:330px;
  1869. top:120px;
  1870. width:200px;
  1871. height:60px;
  1872. display:flex;
  1873. font-family:'Microsoft YaHei', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:14px;
  1877. color:#CCCCCC;
  1878. text-align:left;
  1879. }
  1880. #u9873 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 8px 2px 8px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u9873_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. visibility:hidden;
  1892. }
  1893. #u9874_div {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:113px;
  1899. height:20px;
  1900. background:inherit;
  1901. background-color:rgba(51, 51, 51, 0);
  1902. border:none;
  1903. border-radius:4px;
  1904. -moz-box-shadow:none;
  1905. -webkit-box-shadow:none;
  1906. box-shadow:none;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:14px;
  1911. text-align:left;
  1912. }
  1913. #u9874 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:353px;
  1917. top:140px;
  1918. width:113px;
  1919. height:20px;
  1920. display:flex;
  1921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1922. font-weight:400;
  1923. font-style:normal;
  1924. font-size:14px;
  1925. text-align:left;
  1926. }
  1927. #u9874 .text {
  1928. position:absolute;
  1929. align-self:center;
  1930. padding:0px 0px 0px 0px;
  1931. box-sizing:border-box;
  1932. width:100%;
  1933. }
  1934. #u9874_text {
  1935. border-width:0px;
  1936. white-space:nowrap;
  1937. text-transform:none;
  1938. }
  1939. #u9875 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:0px;
  1945. height:0px;
  1946. }
  1947. #u9876_div {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:200px;
  1953. height:60px;
  1954. background:inherit;
  1955. background-color:rgba(255, 255, 255, 0.0980392156862745);
  1956. border:none;
  1957. border-radius:4px;
  1958. -moz-box-shadow:none;
  1959. -webkit-box-shadow:none;
  1960. box-shadow:none;
  1961. font-family:'Microsoft YaHei', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:14px;
  1965. color:#CCCCCC;
  1966. text-align:left;
  1967. }
  1968. #u9876 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:330px;
  1972. top:180px;
  1973. width:200px;
  1974. height:60px;
  1975. display:flex;
  1976. font-family:'Microsoft YaHei', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:14px;
  1980. color:#CCCCCC;
  1981. text-align:left;
  1982. }
  1983. #u9876 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:2px 8px 2px 8px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u9876_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. visibility:hidden;
  1995. }
  1996. #u9877_div {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:127px;
  2002. height:20px;
  2003. background:inherit;
  2004. background-color:rgba(51, 51, 51, 0);
  2005. border:none;
  2006. border-radius:4px;
  2007. -moz-box-shadow:none;
  2008. -webkit-box-shadow:none;
  2009. box-shadow:none;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:14px;
  2014. text-align:left;
  2015. }
  2016. #u9877 {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:353px;
  2020. top:200px;
  2021. width:127px;
  2022. height:20px;
  2023. display:flex;
  2024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2025. font-weight:400;
  2026. font-style:normal;
  2027. font-size:14px;
  2028. text-align:left;
  2029. }
  2030. #u9877 .text {
  2031. position:absolute;
  2032. align-self:center;
  2033. padding:0px 0px 0px 0px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u9877_text {
  2038. border-width:0px;
  2039. white-space:nowrap;
  2040. text-transform:none;
  2041. }
  2042. #u9878 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:0px;
  2048. height:0px;
  2049. }
  2050. #u9879_div {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:200px;
  2056. height:60px;
  2057. background:inherit;
  2058. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2059. border:none;
  2060. border-radius:4px;
  2061. -moz-box-shadow:none;
  2062. -webkit-box-shadow:none;
  2063. box-shadow:none;
  2064. font-family:'Microsoft YaHei', sans-serif;
  2065. font-weight:400;
  2066. font-style:normal;
  2067. font-size:14px;
  2068. color:#CCCCCC;
  2069. text-align:left;
  2070. }
  2071. #u9879 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:330px;
  2075. top:240px;
  2076. width:200px;
  2077. height:60px;
  2078. display:flex;
  2079. font-family:'Microsoft YaHei', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:14px;
  2083. color:#CCCCCC;
  2084. text-align:left;
  2085. }
  2086. #u9879 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 8px 2px 8px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u9879_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u9880_div {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:57px;
  2105. height:20px;
  2106. background:inherit;
  2107. background-color:rgba(51, 51, 51, 0);
  2108. border:none;
  2109. border-radius:4px;
  2110. -moz-box-shadow:none;
  2111. -webkit-box-shadow:none;
  2112. box-shadow:none;
  2113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:14px;
  2117. text-align:left;
  2118. }
  2119. #u9880 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:353px;
  2123. top:260px;
  2124. width:57px;
  2125. height:20px;
  2126. display:flex;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:14px;
  2131. text-align:left;
  2132. }
  2133. #u9880 .text {
  2134. position:absolute;
  2135. align-self:center;
  2136. padding:0px 0px 0px 0px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u9880_text {
  2141. border-width:0px;
  2142. white-space:nowrap;
  2143. text-transform:none;
  2144. }
  2145. #u9881 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:0px;
  2151. height:0px;
  2152. }
  2153. #u9882_div {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:200px;
  2159. height:60px;
  2160. background:inherit;
  2161. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2162. border:none;
  2163. border-radius:4px;
  2164. -moz-box-shadow:none;
  2165. -webkit-box-shadow:none;
  2166. box-shadow:none;
  2167. font-family:'Microsoft YaHei', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:14px;
  2171. color:#CCCCCC;
  2172. text-align:left;
  2173. }
  2174. #u9882 {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:330px;
  2178. top:300px;
  2179. width:200px;
  2180. height:60px;
  2181. display:flex;
  2182. font-family:'Microsoft YaHei', sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:14px;
  2186. color:#CCCCCC;
  2187. text-align:left;
  2188. }
  2189. #u9882 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 8px 2px 8px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u9882_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. visibility:hidden;
  2201. }
  2202. #u9883_div {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:43px;
  2208. height:20px;
  2209. background:inherit;
  2210. background-color:rgba(51, 51, 51, 0);
  2211. border:none;
  2212. border-radius:4px;
  2213. -moz-box-shadow:none;
  2214. -webkit-box-shadow:none;
  2215. box-shadow:none;
  2216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2217. font-weight:400;
  2218. font-style:normal;
  2219. font-size:14px;
  2220. text-align:left;
  2221. }
  2222. #u9883 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:353px;
  2226. top:320px;
  2227. width:43px;
  2228. height:20px;
  2229. display:flex;
  2230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:14px;
  2234. text-align:left;
  2235. }
  2236. #u9883 .text {
  2237. position:absolute;
  2238. align-self:center;
  2239. padding:0px 0px 0px 0px;
  2240. box-sizing:border-box;
  2241. width:100%;
  2242. }
  2243. #u9883_text {
  2244. border-width:0px;
  2245. white-space:nowrap;
  2246. text-transform:none;
  2247. }
  2248. #u9884 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:0px;
  2254. height:0px;
  2255. }
  2256. #u9885_div {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:150px;
  2262. height:50px;
  2263. background:inherit;
  2264. background-color:rgba(255, 255, 255, 0);
  2265. border:none;
  2266. border-left:0px;
  2267. border-top:0px;
  2268. border-right:0px;
  2269. border-radius:0px;
  2270. border-bottom-right-radius:0px;
  2271. border-bottom-left-radius:0px;
  2272. -moz-box-shadow:none;
  2273. -webkit-box-shadow:none;
  2274. box-shadow:none;
  2275. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2276. font-weight:500;
  2277. font-style:normal;
  2278. font-size:18px;
  2279. }
  2280. #u9885 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:550px;
  2284. top:50px;
  2285. width:150px;
  2286. height:50px;
  2287. display:flex;
  2288. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2289. font-weight:500;
  2290. font-style:normal;
  2291. font-size:18px;
  2292. }
  2293. #u9885 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:0px 0px 0px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u9885_text {
  2301. border-width:0px;
  2302. white-space:nowrap;
  2303. text-transform:none;
  2304. }
  2305. #u9886 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:559px;
  2309. top:403px;
  2310. width:1006px;
  2311. height:428px;
  2312. }
  2313. #u9887_img {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:0px;
  2317. top:0px;
  2318. width:51px;
  2319. height:38px;
  2320. }
  2321. #u9887 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:51px;
  2327. height:38px;
  2328. display:flex;
  2329. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:12px;
  2333. color:#FFFFFF;
  2334. }
  2335. #u9887 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:2px 2px 2px 0px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u9887_text {
  2343. border-width:0px;
  2344. word-wrap:break-word;
  2345. text-transform:none;
  2346. }
  2347. #u9888_img {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:125px;
  2353. height:38px;
  2354. }
  2355. #u9888 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:51px;
  2359. top:0px;
  2360. width:125px;
  2361. height:38px;
  2362. display:flex;
  2363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:12px;
  2367. color:#FFFFFF;
  2368. }
  2369. #u9888 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:2px 2px 2px 0px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u9888_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. }
  2381. #u9889_img {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:134px;
  2387. height:38px;
  2388. }
  2389. #u9889 {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:176px;
  2393. top:0px;
  2394. width:134px;
  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. color:#FFFFFF;
  2402. }
  2403. #u9889 .text {
  2404. position:absolute;
  2405. align-self:center;
  2406. padding:2px 2px 2px 0px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u9889_text {
  2411. border-width:0px;
  2412. word-wrap:break-word;
  2413. text-transform:none;
  2414. }
  2415. #u9890_img {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:153px;
  2421. height:38px;
  2422. }
  2423. #u9890 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:310px;
  2427. top:0px;
  2428. width:153px;
  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. color:#FFFFFF;
  2436. }
  2437. #u9890 .text {
  2438. position:absolute;
  2439. align-self:center;
  2440. padding:2px 2px 2px 0px;
  2441. box-sizing:border-box;
  2442. width:100%;
  2443. }
  2444. #u9890_text {
  2445. border-width:0px;
  2446. word-wrap:break-word;
  2447. text-transform:none;
  2448. }
  2449. #u9891_img {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:0px;
  2453. top:0px;
  2454. width:153px;
  2455. height:38px;
  2456. }
  2457. #u9891 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:463px;
  2461. top:0px;
  2462. width:153px;
  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. color:#FFFFFF;
  2470. }
  2471. #u9891 .text {
  2472. position:absolute;
  2473. align-self:center;
  2474. padding:2px 2px 2px 0px;
  2475. box-sizing:border-box;
  2476. width:100%;
  2477. }
  2478. #u9891_text {
  2479. border-width:0px;
  2480. word-wrap:break-word;
  2481. text-transform:none;
  2482. }
  2483. #u9892_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:139px;
  2489. height:38px;
  2490. }
  2491. #u9892 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:616px;
  2495. top:0px;
  2496. width:139px;
  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. color:#FFFFFF;
  2504. }
  2505. #u9892 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 0px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u9892_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. }
  2517. #u9893_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:137px;
  2523. height:38px;
  2524. }
  2525. #u9893 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:755px;
  2529. top:0px;
  2530. width:137px;
  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. color:#FFFFFF;
  2538. }
  2539. #u9893 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 0px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u9893_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. }
  2551. #u9894_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:114px;
  2557. height:38px;
  2558. }
  2559. #u9894 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:892px;
  2563. top:0px;
  2564. width:114px;
  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. color:#FFFFFF;
  2572. }
  2573. #u9894 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 0px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u9894_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. }
  2585. #u9895_img {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:51px;
  2591. height:39px;
  2592. }
  2593. #u9895 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:38px;
  2598. width:51px;
  2599. height:39px;
  2600. display:flex;
  2601. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:12px;
  2605. }
  2606. #u9895 .text {
  2607. position:absolute;
  2608. align-self:center;
  2609. padding:2px 2px 2px 0px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u9895_text {
  2614. border-width:0px;
  2615. word-wrap:break-word;
  2616. text-transform:none;
  2617. }
  2618. #u9896_img {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:125px;
  2624. height:39px;
  2625. }
  2626. #u9896 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:51px;
  2630. top:38px;
  2631. width:125px;
  2632. height:39px;
  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. color:#AAAAAA;
  2639. }
  2640. #u9896 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u9896_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u9897_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:134px;
  2659. height:39px;
  2660. }
  2661. #u9897 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:176px;
  2665. top:38px;
  2666. width:134px;
  2667. height:39px;
  2668. display:flex;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:12px;
  2673. color:#AAAAAA;
  2674. }
  2675. #u9897 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 0px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u9897_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. visibility:hidden;
  2687. }
  2688. #u9898_img {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:153px;
  2694. height:39px;
  2695. }
  2696. #u9898 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:310px;
  2700. top:38px;
  2701. width:153px;
  2702. height:39px;
  2703. display:flex;
  2704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2705. font-weight:400;
  2706. font-style:normal;
  2707. font-size:12px;
  2708. color:#333333;
  2709. }
  2710. #u9898 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 0px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u9898_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. }
  2722. #u9899_img {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:0px;
  2726. top:0px;
  2727. width:153px;
  2728. height:39px;
  2729. }
  2730. #u9899 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:463px;
  2734. top:38px;
  2735. width:153px;
  2736. height:39px;
  2737. display:flex;
  2738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2739. font-weight:400;
  2740. font-style:normal;
  2741. font-size:12px;
  2742. color:#333333;
  2743. }
  2744. #u9899 .text {
  2745. position:absolute;
  2746. align-self:center;
  2747. padding:2px 2px 2px 0px;
  2748. box-sizing:border-box;
  2749. width:100%;
  2750. }
  2751. #u9899_text {
  2752. border-width:0px;
  2753. word-wrap:break-word;
  2754. text-transform:none;
  2755. }
  2756. #u9900_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:139px;
  2762. height:39px;
  2763. }
  2764. #u9900 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:616px;
  2768. top:38px;
  2769. width:139px;
  2770. height:39px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:12px;
  2776. color:#333333;
  2777. }
  2778. #u9900 .text {
  2779. position:absolute;
  2780. align-self:center;
  2781. padding:2px 2px 2px 0px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u9900_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. visibility:hidden;
  2790. }
  2791. #u9901_img {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:137px;
  2797. height:39px;
  2798. }
  2799. #u9901 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:755px;
  2803. top:38px;
  2804. width:137px;
  2805. height:39px;
  2806. display:flex;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. color:#1890FF;
  2812. }
  2813. #u9901 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u9901_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. visibility:hidden;
  2825. }
  2826. #u9902_img {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:114px;
  2832. height:39px;
  2833. }
  2834. #u9902 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:892px;
  2838. top:38px;
  2839. width:114px;
  2840. height:39px;
  2841. display:flex;
  2842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2843. font-weight:400;
  2844. font-style:normal;
  2845. font-size:12px;
  2846. color:#298FFF;
  2847. }
  2848. #u9902 .text {
  2849. position:absolute;
  2850. align-self:center;
  2851. padding:2px 2px 2px 0px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u9902_text {
  2856. border-width:0px;
  2857. word-wrap:break-word;
  2858. text-transform:none;
  2859. }
  2860. #u9903_img {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:51px;
  2866. height:38px;
  2867. }
  2868. #u9903 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:77px;
  2873. width:51px;
  2874. height:38px;
  2875. display:flex;
  2876. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:12px;
  2880. color:#606266;
  2881. }
  2882. #u9903 .text {
  2883. position:absolute;
  2884. align-self:center;
  2885. padding:2px 2px 2px 0px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u9903_text {
  2890. border-width:0px;
  2891. word-wrap:break-word;
  2892. text-transform:none;
  2893. }
  2894. #u9904_img {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:125px;
  2900. height:38px;
  2901. }
  2902. #u9904 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:51px;
  2906. top:77px;
  2907. width:125px;
  2908. height:38px;
  2909. display:flex;
  2910. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2911. font-weight:400;
  2912. font-style:normal;
  2913. font-size:12px;
  2914. color:#606266;
  2915. }
  2916. #u9904 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 0px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u9904_text {
  2924. border-width:0px;
  2925. word-wrap:break-word;
  2926. text-transform:none;
  2927. visibility:hidden;
  2928. }
  2929. #u9905_img {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:134px;
  2935. height:38px;
  2936. }
  2937. #u9905 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:176px;
  2941. top:77px;
  2942. width:134px;
  2943. height:38px;
  2944. display:flex;
  2945. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2946. font-weight:400;
  2947. font-style:normal;
  2948. font-size:12px;
  2949. color:#606266;
  2950. }
  2951. #u9905 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:2px 2px 2px 0px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u9905_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. visibility:hidden;
  2963. }
  2964. #u9906_img {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:153px;
  2970. height:38px;
  2971. }
  2972. #u9906 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:310px;
  2976. top:77px;
  2977. width:153px;
  2978. height:38px;
  2979. display:flex;
  2980. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:12px;
  2984. color:#606266;
  2985. }
  2986. #u9906 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:2px 2px 2px 0px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u9906_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. visibility:hidden;
  2998. }
  2999. #u9907_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:153px;
  3005. height:38px;
  3006. }
  3007. #u9907 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:463px;
  3011. top:77px;
  3012. width:153px;
  3013. height:38px;
  3014. display:flex;
  3015. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3016. font-weight:400;
  3017. font-style:normal;
  3018. font-size:12px;
  3019. color:#606266;
  3020. }
  3021. #u9907 .text {
  3022. position:absolute;
  3023. align-self:center;
  3024. padding:2px 2px 2px 0px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u9907_text {
  3029. border-width:0px;
  3030. word-wrap:break-word;
  3031. text-transform:none;
  3032. visibility:hidden;
  3033. }
  3034. #u9908_img {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:139px;
  3040. height:38px;
  3041. }
  3042. #u9908 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:616px;
  3046. top:77px;
  3047. width:139px;
  3048. height:38px;
  3049. display:flex;
  3050. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:12px;
  3054. color:#606266;
  3055. }
  3056. #u9908 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 0px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u9908_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. visibility:hidden;
  3068. }
  3069. #u9909_img {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:137px;
  3075. height:38px;
  3076. }
  3077. #u9909 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:755px;
  3081. top:77px;
  3082. width:137px;
  3083. height:38px;
  3084. display:flex;
  3085. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:12px;
  3089. color:#606266;
  3090. }
  3091. #u9909 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 2px 2px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u9909_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. visibility:hidden;
  3103. }
  3104. #u9910_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:114px;
  3110. height:38px;
  3111. }
  3112. #u9910 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:892px;
  3116. top:77px;
  3117. width:114px;
  3118. height:38px;
  3119. display:flex;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. color:#298FFF;
  3125. }
  3126. #u9910 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 0px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u9910_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. }
  3138. #u9911_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:51px;
  3144. height:35px;
  3145. }
  3146. #u9911 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:115px;
  3151. width:51px;
  3152. height:35px;
  3153. display:flex;
  3154. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. color:#606266;
  3159. }
  3160. #u9911 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 0px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u9911_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. }
  3172. #u9912_img {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:125px;
  3178. height:35px;
  3179. }
  3180. #u9912 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:51px;
  3184. top:115px;
  3185. width:125px;
  3186. height:35px;
  3187. display:flex;
  3188. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. color:#606266;
  3193. }
  3194. #u9912 .text {
  3195. position:absolute;
  3196. align-self:center;
  3197. padding:2px 2px 2px 0px;
  3198. box-sizing:border-box;
  3199. width:100%;
  3200. }
  3201. #u9912_text {
  3202. border-width:0px;
  3203. word-wrap:break-word;
  3204. text-transform:none;
  3205. visibility:hidden;
  3206. }
  3207. #u9913_img {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:0px;
  3211. top:0px;
  3212. width:134px;
  3213. height:35px;
  3214. }
  3215. #u9913 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:176px;
  3219. top:115px;
  3220. width:134px;
  3221. height:35px;
  3222. display:flex;
  3223. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3224. font-weight:400;
  3225. font-style:normal;
  3226. font-size:12px;
  3227. color:#606266;
  3228. }
  3229. #u9913 .text {
  3230. position:absolute;
  3231. align-self:center;
  3232. padding:2px 2px 2px 0px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u9913_text {
  3237. border-width:0px;
  3238. word-wrap:break-word;
  3239. text-transform:none;
  3240. visibility:hidden;
  3241. }
  3242. #u9914_img {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:0px;
  3247. width:153px;
  3248. height:35px;
  3249. }
  3250. #u9914 {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:310px;
  3254. top:115px;
  3255. width:153px;
  3256. height:35px;
  3257. display:flex;
  3258. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:12px;
  3262. color:#606266;
  3263. }
  3264. #u9914 .text {
  3265. position:absolute;
  3266. align-self:center;
  3267. padding:2px 2px 2px 0px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u9914_text {
  3272. border-width:0px;
  3273. word-wrap:break-word;
  3274. text-transform:none;
  3275. visibility:hidden;
  3276. }
  3277. #u9915_img {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:153px;
  3283. height:35px;
  3284. }
  3285. #u9915 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:463px;
  3289. top:115px;
  3290. width:153px;
  3291. height:35px;
  3292. display:flex;
  3293. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:12px;
  3297. color:#606266;
  3298. }
  3299. #u9915 .text {
  3300. position:absolute;
  3301. align-self:center;
  3302. padding:2px 2px 2px 0px;
  3303. box-sizing:border-box;
  3304. width:100%;
  3305. }
  3306. #u9915_text {
  3307. border-width:0px;
  3308. word-wrap:break-word;
  3309. text-transform:none;
  3310. visibility:hidden;
  3311. }
  3312. #u9916_img {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:139px;
  3318. height:35px;
  3319. }
  3320. #u9916 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:616px;
  3324. top:115px;
  3325. width:139px;
  3326. height:35px;
  3327. display:flex;
  3328. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3329. font-weight:400;
  3330. font-style:normal;
  3331. font-size:12px;
  3332. color:#606266;
  3333. }
  3334. #u9916 .text {
  3335. position:absolute;
  3336. align-self:center;
  3337. padding:2px 2px 2px 0px;
  3338. box-sizing:border-box;
  3339. width:100%;
  3340. }
  3341. #u9916_text {
  3342. border-width:0px;
  3343. word-wrap:break-word;
  3344. text-transform:none;
  3345. visibility:hidden;
  3346. }
  3347. #u9917_img {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:137px;
  3353. height:35px;
  3354. }
  3355. #u9917 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:755px;
  3359. top:115px;
  3360. width:137px;
  3361. height:35px;
  3362. display:flex;
  3363. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3364. font-weight:400;
  3365. font-style:normal;
  3366. font-size:12px;
  3367. color:#606266;
  3368. }
  3369. #u9917 .text {
  3370. position:absolute;
  3371. align-self:center;
  3372. padding:2px 2px 2px 0px;
  3373. box-sizing:border-box;
  3374. width:100%;
  3375. }
  3376. #u9917_text {
  3377. border-width:0px;
  3378. word-wrap:break-word;
  3379. text-transform:none;
  3380. visibility:hidden;
  3381. }
  3382. #u9918_img {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:114px;
  3388. height:35px;
  3389. }
  3390. #u9918 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:892px;
  3394. top:115px;
  3395. width:114px;
  3396. height:35px;
  3397. display:flex;
  3398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:12px;
  3402. color:#02A7F0;
  3403. }
  3404. #u9918 .text {
  3405. position:absolute;
  3406. align-self:center;
  3407. padding:2px 2px 2px 0px;
  3408. box-sizing:border-box;
  3409. width:100%;
  3410. }
  3411. #u9918_text {
  3412. border-width:0px;
  3413. word-wrap:break-word;
  3414. text-transform:none;
  3415. visibility:hidden;
  3416. }
  3417. #u9919_img {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:0px;
  3422. width:51px;
  3423. height:36px;
  3424. }
  3425. #u9919 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:0px;
  3429. top:150px;
  3430. width:51px;
  3431. height:36px;
  3432. display:flex;
  3433. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:12px;
  3437. color:#606266;
  3438. }
  3439. #u9919 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:2px 2px 2px 0px;
  3443. box-sizing:border-box;
  3444. width:100%;
  3445. }
  3446. #u9919_text {
  3447. border-width:0px;
  3448. word-wrap:break-word;
  3449. text-transform:none;
  3450. }
  3451. #u9920_img {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:125px;
  3457. height:36px;
  3458. }
  3459. #u9920 {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:51px;
  3463. top:150px;
  3464. width:125px;
  3465. height:36px;
  3466. display:flex;
  3467. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3468. font-weight:400;
  3469. font-style:normal;
  3470. font-size:12px;
  3471. color:#606266;
  3472. }
  3473. #u9920 .text {
  3474. position:absolute;
  3475. align-self:center;
  3476. padding:2px 2px 2px 0px;
  3477. box-sizing:border-box;
  3478. width:100%;
  3479. }
  3480. #u9920_text {
  3481. border-width:0px;
  3482. word-wrap:break-word;
  3483. text-transform:none;
  3484. visibility:hidden;
  3485. }
  3486. #u9921_img {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:134px;
  3492. height:36px;
  3493. }
  3494. #u9921 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:176px;
  3498. top:150px;
  3499. width:134px;
  3500. height:36px;
  3501. display:flex;
  3502. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:12px;
  3506. color:#606266;
  3507. }
  3508. #u9921 .text {
  3509. position:absolute;
  3510. align-self:center;
  3511. padding:2px 2px 2px 0px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u9921_text {
  3516. border-width:0px;
  3517. word-wrap:break-word;
  3518. text-transform:none;
  3519. visibility:hidden;
  3520. }
  3521. #u9922_img {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:0px;
  3525. top:0px;
  3526. width:153px;
  3527. height:36px;
  3528. }
  3529. #u9922 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:310px;
  3533. top:150px;
  3534. width:153px;
  3535. height:36px;
  3536. display:flex;
  3537. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:12px;
  3541. color:#606266;
  3542. }
  3543. #u9922 .text {
  3544. position:absolute;
  3545. align-self:center;
  3546. padding:2px 2px 2px 0px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u9922_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. visibility:hidden;
  3555. }
  3556. #u9923_img {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:153px;
  3562. height:36px;
  3563. }
  3564. #u9923 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:463px;
  3568. top:150px;
  3569. width:153px;
  3570. height:36px;
  3571. display:flex;
  3572. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3573. font-weight:400;
  3574. font-style:normal;
  3575. font-size:12px;
  3576. color:#606266;
  3577. }
  3578. #u9923 .text {
  3579. position:absolute;
  3580. align-self:center;
  3581. padding:2px 2px 2px 0px;
  3582. box-sizing:border-box;
  3583. width:100%;
  3584. }
  3585. #u9923_text {
  3586. border-width:0px;
  3587. word-wrap:break-word;
  3588. text-transform:none;
  3589. visibility:hidden;
  3590. }
  3591. #u9924_img {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:139px;
  3597. height:36px;
  3598. }
  3599. #u9924 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:616px;
  3603. top:150px;
  3604. width:139px;
  3605. height:36px;
  3606. display:flex;
  3607. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:12px;
  3611. color:#606266;
  3612. }
  3613. #u9924 .text {
  3614. position:absolute;
  3615. align-self:center;
  3616. padding:2px 2px 2px 0px;
  3617. box-sizing:border-box;
  3618. width:100%;
  3619. }
  3620. #u9924_text {
  3621. border-width:0px;
  3622. word-wrap:break-word;
  3623. text-transform:none;
  3624. visibility:hidden;
  3625. }
  3626. #u9925_img {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:0px;
  3630. top:0px;
  3631. width:137px;
  3632. height:36px;
  3633. }
  3634. #u9925 {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:755px;
  3638. top:150px;
  3639. width:137px;
  3640. height:36px;
  3641. display:flex;
  3642. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3643. font-weight:400;
  3644. font-style:normal;
  3645. font-size:12px;
  3646. color:#606266;
  3647. }
  3648. #u9925 .text {
  3649. position:absolute;
  3650. align-self:center;
  3651. padding:2px 2px 2px 0px;
  3652. box-sizing:border-box;
  3653. width:100%;
  3654. }
  3655. #u9925_text {
  3656. border-width:0px;
  3657. word-wrap:break-word;
  3658. text-transform:none;
  3659. visibility:hidden;
  3660. }
  3661. #u9926_img {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:0px;
  3665. top:0px;
  3666. width:114px;
  3667. height:36px;
  3668. }
  3669. #u9926 {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:892px;
  3673. top:150px;
  3674. width:114px;
  3675. height:36px;
  3676. display:flex;
  3677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3678. font-weight:400;
  3679. font-style:normal;
  3680. font-size:12px;
  3681. color:#02A7F0;
  3682. }
  3683. #u9926 .text {
  3684. position:absolute;
  3685. align-self:center;
  3686. padding:2px 2px 2px 0px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u9926_text {
  3691. border-width:0px;
  3692. word-wrap:break-word;
  3693. text-transform:none;
  3694. visibility:hidden;
  3695. }
  3696. #u9927_img {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:51px;
  3702. height:35px;
  3703. }
  3704. #u9927 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:0px;
  3708. top:186px;
  3709. width:51px;
  3710. height:35px;
  3711. display:flex;
  3712. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:12px;
  3716. color:#606266;
  3717. }
  3718. #u9927 .text {
  3719. position:absolute;
  3720. align-self:center;
  3721. padding:2px 2px 2px 0px;
  3722. box-sizing:border-box;
  3723. width:100%;
  3724. }
  3725. #u9927_text {
  3726. border-width:0px;
  3727. word-wrap:break-word;
  3728. text-transform:none;
  3729. visibility:hidden;
  3730. }
  3731. #u9928_img {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:125px;
  3737. height:35px;
  3738. }
  3739. #u9928 {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:51px;
  3743. top:186px;
  3744. width:125px;
  3745. height:35px;
  3746. display:flex;
  3747. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3748. font-weight:400;
  3749. font-style:normal;
  3750. font-size:12px;
  3751. color:#606266;
  3752. }
  3753. #u9928 .text {
  3754. position:absolute;
  3755. align-self:center;
  3756. padding:2px 2px 2px 0px;
  3757. box-sizing:border-box;
  3758. width:100%;
  3759. }
  3760. #u9928_text {
  3761. border-width:0px;
  3762. word-wrap:break-word;
  3763. text-transform:none;
  3764. visibility:hidden;
  3765. }
  3766. #u9929_img {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:134px;
  3772. height:35px;
  3773. }
  3774. #u9929 {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:176px;
  3778. top:186px;
  3779. width:134px;
  3780. height:35px;
  3781. display:flex;
  3782. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3783. font-weight:400;
  3784. font-style:normal;
  3785. font-size:12px;
  3786. color:#606266;
  3787. }
  3788. #u9929 .text {
  3789. position:absolute;
  3790. align-self:center;
  3791. padding:2px 2px 2px 0px;
  3792. box-sizing:border-box;
  3793. width:100%;
  3794. }
  3795. #u9929_text {
  3796. border-width:0px;
  3797. word-wrap:break-word;
  3798. text-transform:none;
  3799. visibility:hidden;
  3800. }
  3801. #u9930_img {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:153px;
  3807. height:35px;
  3808. }
  3809. #u9930 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:310px;
  3813. top:186px;
  3814. width:153px;
  3815. height:35px;
  3816. display:flex;
  3817. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. font-size:12px;
  3821. color:#606266;
  3822. }
  3823. #u9930 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 0px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u9930_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u9931_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:153px;
  3842. height:35px;
  3843. }
  3844. #u9931 {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:463px;
  3848. top:186px;
  3849. width:153px;
  3850. height:35px;
  3851. display:flex;
  3852. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3853. font-weight:400;
  3854. font-style:normal;
  3855. font-size:12px;
  3856. color:#606266;
  3857. }
  3858. #u9931 .text {
  3859. position:absolute;
  3860. align-self:center;
  3861. padding:2px 2px 2px 0px;
  3862. box-sizing:border-box;
  3863. width:100%;
  3864. }
  3865. #u9931_text {
  3866. border-width:0px;
  3867. word-wrap:break-word;
  3868. text-transform:none;
  3869. visibility:hidden;
  3870. }
  3871. #u9932_img {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:139px;
  3877. height:35px;
  3878. }
  3879. #u9932 {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:616px;
  3883. top:186px;
  3884. width:139px;
  3885. height:35px;
  3886. display:flex;
  3887. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:12px;
  3891. color:#606266;
  3892. }
  3893. #u9932 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:2px 2px 2px 0px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u9932_text {
  3901. border-width:0px;
  3902. word-wrap:break-word;
  3903. text-transform:none;
  3904. visibility:hidden;
  3905. }
  3906. #u9933_img {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:137px;
  3912. height:35px;
  3913. }
  3914. #u9933 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:755px;
  3918. top:186px;
  3919. width:137px;
  3920. height:35px;
  3921. display:flex;
  3922. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3923. font-weight:400;
  3924. font-style:normal;
  3925. font-size:12px;
  3926. color:#606266;
  3927. }
  3928. #u9933 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:2px 2px 2px 0px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u9933_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. visibility:hidden;
  3940. }
  3941. #u9934_img {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:114px;
  3947. height:35px;
  3948. }
  3949. #u9934 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:892px;
  3953. top:186px;
  3954. width:114px;
  3955. height:35px;
  3956. display:flex;
  3957. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. font-size:12px;
  3961. color:#606266;
  3962. }
  3963. #u9934 .text {
  3964. position:absolute;
  3965. align-self:center;
  3966. padding:2px 2px 2px 0px;
  3967. box-sizing:border-box;
  3968. width:100%;
  3969. }
  3970. #u9934_text {
  3971. border-width:0px;
  3972. word-wrap:break-word;
  3973. text-transform:none;
  3974. visibility:hidden;
  3975. }
  3976. #u9935_img {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:51px;
  3982. height:35px;
  3983. }
  3984. #u9935 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:0px;
  3988. top:221px;
  3989. width:51px;
  3990. height:35px;
  3991. display:flex;
  3992. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3993. font-weight:400;
  3994. font-style:normal;
  3995. font-size:12px;
  3996. color:#606266;
  3997. }
  3998. #u9935 .text {
  3999. position:absolute;
  4000. align-self:center;
  4001. padding:2px 2px 2px 0px;
  4002. box-sizing:border-box;
  4003. width:100%;
  4004. }
  4005. #u9935_text {
  4006. border-width:0px;
  4007. word-wrap:break-word;
  4008. text-transform:none;
  4009. visibility:hidden;
  4010. }
  4011. #u9936_img {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:125px;
  4017. height:35px;
  4018. }
  4019. #u9936 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:51px;
  4023. top:221px;
  4024. width:125px;
  4025. height:35px;
  4026. display:flex;
  4027. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:12px;
  4031. color:#606266;
  4032. }
  4033. #u9936 .text {
  4034. position:absolute;
  4035. align-self:center;
  4036. padding:2px 2px 2px 0px;
  4037. box-sizing:border-box;
  4038. width:100%;
  4039. }
  4040. #u9936_text {
  4041. border-width:0px;
  4042. word-wrap:break-word;
  4043. text-transform:none;
  4044. visibility:hidden;
  4045. }
  4046. #u9937_img {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:134px;
  4052. height:35px;
  4053. }
  4054. #u9937 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:176px;
  4058. top:221px;
  4059. width:134px;
  4060. height:35px;
  4061. display:flex;
  4062. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4063. font-weight:400;
  4064. font-style:normal;
  4065. font-size:12px;
  4066. color:#606266;
  4067. }
  4068. #u9937 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 2px 2px 0px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u9937_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u9938_img {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:153px;
  4087. height:35px;
  4088. }
  4089. #u9938 {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:310px;
  4093. top:221px;
  4094. width:153px;
  4095. height:35px;
  4096. display:flex;
  4097. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. font-size:12px;
  4101. color:#606266;
  4102. }
  4103. #u9938 .text {
  4104. position:absolute;
  4105. align-self:center;
  4106. padding:2px 2px 2px 0px;
  4107. box-sizing:border-box;
  4108. width:100%;
  4109. }
  4110. #u9938_text {
  4111. border-width:0px;
  4112. word-wrap:break-word;
  4113. text-transform:none;
  4114. visibility:hidden;
  4115. }
  4116. #u9939_img {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:0px;
  4120. top:0px;
  4121. width:153px;
  4122. height:35px;
  4123. }
  4124. #u9939 {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:463px;
  4128. top:221px;
  4129. width:153px;
  4130. height:35px;
  4131. display:flex;
  4132. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4133. font-weight:400;
  4134. font-style:normal;
  4135. font-size:12px;
  4136. color:#606266;
  4137. }
  4138. #u9939 .text {
  4139. position:absolute;
  4140. align-self:center;
  4141. padding:2px 2px 2px 0px;
  4142. box-sizing:border-box;
  4143. width:100%;
  4144. }
  4145. #u9939_text {
  4146. border-width:0px;
  4147. word-wrap:break-word;
  4148. text-transform:none;
  4149. visibility:hidden;
  4150. }
  4151. #u9940_img {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:0px;
  4156. width:139px;
  4157. height:35px;
  4158. }
  4159. #u9940 {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:616px;
  4163. top:221px;
  4164. width:139px;
  4165. height:35px;
  4166. display:flex;
  4167. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4168. font-weight:400;
  4169. font-style:normal;
  4170. font-size:12px;
  4171. color:#606266;
  4172. }
  4173. #u9940 .text {
  4174. position:absolute;
  4175. align-self:center;
  4176. padding:2px 2px 2px 0px;
  4177. box-sizing:border-box;
  4178. width:100%;
  4179. }
  4180. #u9940_text {
  4181. border-width:0px;
  4182. word-wrap:break-word;
  4183. text-transform:none;
  4184. visibility:hidden;
  4185. }
  4186. #u9941_img {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:0px;
  4190. top:0px;
  4191. width:137px;
  4192. height:35px;
  4193. }
  4194. #u9941 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:755px;
  4198. top:221px;
  4199. width:137px;
  4200. height:35px;
  4201. display:flex;
  4202. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4203. font-weight:400;
  4204. font-style:normal;
  4205. font-size:12px;
  4206. color:#606266;
  4207. }
  4208. #u9941 .text {
  4209. position:absolute;
  4210. align-self:center;
  4211. padding:2px 2px 2px 0px;
  4212. box-sizing:border-box;
  4213. width:100%;
  4214. }
  4215. #u9941_text {
  4216. border-width:0px;
  4217. word-wrap:break-word;
  4218. text-transform:none;
  4219. visibility:hidden;
  4220. }
  4221. #u9942_img {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:114px;
  4227. height:35px;
  4228. }
  4229. #u9942 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:892px;
  4233. top:221px;
  4234. width:114px;
  4235. height:35px;
  4236. display:flex;
  4237. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:12px;
  4241. color:#606266;
  4242. }
  4243. #u9942 .text {
  4244. position:absolute;
  4245. align-self:center;
  4246. padding:2px 2px 2px 0px;
  4247. box-sizing:border-box;
  4248. width:100%;
  4249. }
  4250. #u9942_text {
  4251. border-width:0px;
  4252. word-wrap:break-word;
  4253. text-transform:none;
  4254. visibility:hidden;
  4255. }
  4256. #u9943_img {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:0px;
  4260. top:0px;
  4261. width:51px;
  4262. height:35px;
  4263. }
  4264. #u9943 {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:256px;
  4269. width:51px;
  4270. height:35px;
  4271. display:flex;
  4272. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4273. font-weight:400;
  4274. font-style:normal;
  4275. font-size:12px;
  4276. color:#606266;
  4277. }
  4278. #u9943 .text {
  4279. position:absolute;
  4280. align-self:center;
  4281. padding:2px 2px 2px 0px;
  4282. box-sizing:border-box;
  4283. width:100%;
  4284. }
  4285. #u9943_text {
  4286. border-width:0px;
  4287. word-wrap:break-word;
  4288. text-transform:none;
  4289. visibility:hidden;
  4290. }
  4291. #u9944_img {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:125px;
  4297. height:35px;
  4298. }
  4299. #u9944 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:51px;
  4303. top:256px;
  4304. width:125px;
  4305. height:35px;
  4306. display:flex;
  4307. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4308. font-weight:400;
  4309. font-style:normal;
  4310. font-size:12px;
  4311. color:#606266;
  4312. }
  4313. #u9944 .text {
  4314. position:absolute;
  4315. align-self:center;
  4316. padding:2px 2px 2px 0px;
  4317. box-sizing:border-box;
  4318. width:100%;
  4319. }
  4320. #u9944_text {
  4321. border-width:0px;
  4322. word-wrap:break-word;
  4323. text-transform:none;
  4324. visibility:hidden;
  4325. }
  4326. #u9945_img {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:0px;
  4330. top:0px;
  4331. width:134px;
  4332. height:35px;
  4333. }
  4334. #u9945 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:176px;
  4338. top:256px;
  4339. width:134px;
  4340. height:35px;
  4341. display:flex;
  4342. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4343. font-weight:400;
  4344. font-style:normal;
  4345. font-size:12px;
  4346. color:#606266;
  4347. }
  4348. #u9945 .text {
  4349. position:absolute;
  4350. align-self:center;
  4351. padding:2px 2px 2px 0px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u9945_text {
  4356. border-width:0px;
  4357. word-wrap:break-word;
  4358. text-transform:none;
  4359. visibility:hidden;
  4360. }
  4361. #u9946_img {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:153px;
  4367. height:35px;
  4368. }
  4369. #u9946 {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:310px;
  4373. top:256px;
  4374. width:153px;
  4375. height:35px;
  4376. display:flex;
  4377. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4378. font-weight:400;
  4379. font-style:normal;
  4380. font-size:12px;
  4381. color:#606266;
  4382. }
  4383. #u9946 .text {
  4384. position:absolute;
  4385. align-self:center;
  4386. padding:2px 2px 2px 0px;
  4387. box-sizing:border-box;
  4388. width:100%;
  4389. }
  4390. #u9946_text {
  4391. border-width:0px;
  4392. word-wrap:break-word;
  4393. text-transform:none;
  4394. visibility:hidden;
  4395. }
  4396. #u9947_img {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:0px;
  4400. top:0px;
  4401. width:153px;
  4402. height:35px;
  4403. }
  4404. #u9947 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:463px;
  4408. top:256px;
  4409. width:153px;
  4410. height:35px;
  4411. display:flex;
  4412. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4413. font-weight:400;
  4414. font-style:normal;
  4415. font-size:12px;
  4416. color:#606266;
  4417. }
  4418. #u9947 .text {
  4419. position:absolute;
  4420. align-self:center;
  4421. padding:2px 2px 2px 0px;
  4422. box-sizing:border-box;
  4423. width:100%;
  4424. }
  4425. #u9947_text {
  4426. border-width:0px;
  4427. word-wrap:break-word;
  4428. text-transform:none;
  4429. visibility:hidden;
  4430. }
  4431. #u9948_img {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:0px;
  4435. top:0px;
  4436. width:139px;
  4437. height:35px;
  4438. }
  4439. #u9948 {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:616px;
  4443. top:256px;
  4444. width:139px;
  4445. height:35px;
  4446. display:flex;
  4447. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4448. font-weight:400;
  4449. font-style:normal;
  4450. font-size:12px;
  4451. color:#606266;
  4452. }
  4453. #u9948 .text {
  4454. position:absolute;
  4455. align-self:center;
  4456. padding:2px 2px 2px 0px;
  4457. box-sizing:border-box;
  4458. width:100%;
  4459. }
  4460. #u9948_text {
  4461. border-width:0px;
  4462. word-wrap:break-word;
  4463. text-transform:none;
  4464. visibility:hidden;
  4465. }
  4466. #u9949_img {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:137px;
  4472. height:35px;
  4473. }
  4474. #u9949 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:755px;
  4478. top:256px;
  4479. width:137px;
  4480. height:35px;
  4481. display:flex;
  4482. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:12px;
  4486. color:#606266;
  4487. }
  4488. #u9949 .text {
  4489. position:absolute;
  4490. align-self:center;
  4491. padding:2px 2px 2px 0px;
  4492. box-sizing:border-box;
  4493. width:100%;
  4494. }
  4495. #u9949_text {
  4496. border-width:0px;
  4497. word-wrap:break-word;
  4498. text-transform:none;
  4499. visibility:hidden;
  4500. }
  4501. #u9950_img {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:114px;
  4507. height:35px;
  4508. }
  4509. #u9950 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:892px;
  4513. top:256px;
  4514. width:114px;
  4515. height:35px;
  4516. display:flex;
  4517. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4518. font-weight:400;
  4519. font-style:normal;
  4520. font-size:12px;
  4521. color:#606266;
  4522. }
  4523. #u9950 .text {
  4524. position:absolute;
  4525. align-self:center;
  4526. padding:2px 2px 2px 0px;
  4527. box-sizing:border-box;
  4528. width:100%;
  4529. }
  4530. #u9950_text {
  4531. border-width:0px;
  4532. word-wrap:break-word;
  4533. text-transform:none;
  4534. visibility:hidden;
  4535. }
  4536. #u9951_img {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:51px;
  4542. height:35px;
  4543. }
  4544. #u9951 {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:291px;
  4549. width:51px;
  4550. height:35px;
  4551. display:flex;
  4552. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4553. font-weight:400;
  4554. font-style:normal;
  4555. font-size:12px;
  4556. color:#606266;
  4557. }
  4558. #u9951 .text {
  4559. position:absolute;
  4560. align-self:center;
  4561. padding:2px 2px 2px 0px;
  4562. box-sizing:border-box;
  4563. width:100%;
  4564. }
  4565. #u9951_text {
  4566. border-width:0px;
  4567. word-wrap:break-word;
  4568. text-transform:none;
  4569. visibility:hidden;
  4570. }
  4571. #u9952_img {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:125px;
  4577. height:35px;
  4578. }
  4579. #u9952 {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:51px;
  4583. top:291px;
  4584. width:125px;
  4585. height:35px;
  4586. display:flex;
  4587. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:12px;
  4591. color:#606266;
  4592. }
  4593. #u9952 .text {
  4594. position:absolute;
  4595. align-self:center;
  4596. padding:2px 2px 2px 0px;
  4597. box-sizing:border-box;
  4598. width:100%;
  4599. }
  4600. #u9952_text {
  4601. border-width:0px;
  4602. word-wrap:break-word;
  4603. text-transform:none;
  4604. visibility:hidden;
  4605. }
  4606. #u9953_img {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:134px;
  4612. height:35px;
  4613. }
  4614. #u9953 {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:176px;
  4618. top:291px;
  4619. width:134px;
  4620. height:35px;
  4621. display:flex;
  4622. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4623. font-weight:400;
  4624. font-style:normal;
  4625. font-size:12px;
  4626. color:#606266;
  4627. }
  4628. #u9953 .text {
  4629. position:absolute;
  4630. align-self:center;
  4631. padding:2px 2px 2px 0px;
  4632. box-sizing:border-box;
  4633. width:100%;
  4634. }
  4635. #u9953_text {
  4636. border-width:0px;
  4637. word-wrap:break-word;
  4638. text-transform:none;
  4639. visibility:hidden;
  4640. }
  4641. #u9954_img {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:153px;
  4647. height:35px;
  4648. }
  4649. #u9954 {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:310px;
  4653. top:291px;
  4654. width:153px;
  4655. height:35px;
  4656. display:flex;
  4657. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4658. font-weight:400;
  4659. font-style:normal;
  4660. font-size:12px;
  4661. color:#606266;
  4662. }
  4663. #u9954 .text {
  4664. position:absolute;
  4665. align-self:center;
  4666. padding:2px 2px 2px 0px;
  4667. box-sizing:border-box;
  4668. width:100%;
  4669. }
  4670. #u9954_text {
  4671. border-width:0px;
  4672. word-wrap:break-word;
  4673. text-transform:none;
  4674. visibility:hidden;
  4675. }
  4676. #u9955_img {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:153px;
  4682. height:35px;
  4683. }
  4684. #u9955 {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:463px;
  4688. top:291px;
  4689. width:153px;
  4690. height:35px;
  4691. display:flex;
  4692. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4693. font-weight:400;
  4694. font-style:normal;
  4695. font-size:12px;
  4696. color:#606266;
  4697. }
  4698. #u9955 .text {
  4699. position:absolute;
  4700. align-self:center;
  4701. padding:2px 2px 2px 0px;
  4702. box-sizing:border-box;
  4703. width:100%;
  4704. }
  4705. #u9955_text {
  4706. border-width:0px;
  4707. word-wrap:break-word;
  4708. text-transform:none;
  4709. visibility:hidden;
  4710. }
  4711. #u9956_img {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:0px;
  4715. top:0px;
  4716. width:139px;
  4717. height:35px;
  4718. }
  4719. #u9956 {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:616px;
  4723. top:291px;
  4724. width:139px;
  4725. height:35px;
  4726. display:flex;
  4727. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:12px;
  4731. color:#606266;
  4732. }
  4733. #u9956 .text {
  4734. position:absolute;
  4735. align-self:center;
  4736. padding:2px 2px 2px 0px;
  4737. box-sizing:border-box;
  4738. width:100%;
  4739. }
  4740. #u9956_text {
  4741. border-width:0px;
  4742. word-wrap:break-word;
  4743. text-transform:none;
  4744. visibility:hidden;
  4745. }
  4746. #u9957_img {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:0px;
  4750. top:0px;
  4751. width:137px;
  4752. height:35px;
  4753. }
  4754. #u9957 {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:755px;
  4758. top:291px;
  4759. width:137px;
  4760. height:35px;
  4761. display:flex;
  4762. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4763. font-weight:400;
  4764. font-style:normal;
  4765. font-size:12px;
  4766. color:#606266;
  4767. }
  4768. #u9957 .text {
  4769. position:absolute;
  4770. align-self:center;
  4771. padding:2px 2px 2px 0px;
  4772. box-sizing:border-box;
  4773. width:100%;
  4774. }
  4775. #u9957_text {
  4776. border-width:0px;
  4777. word-wrap:break-word;
  4778. text-transform:none;
  4779. visibility:hidden;
  4780. }
  4781. #u9958_img {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:114px;
  4787. height:35px;
  4788. }
  4789. #u9958 {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:892px;
  4793. top:291px;
  4794. width:114px;
  4795. height:35px;
  4796. display:flex;
  4797. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4798. font-weight:400;
  4799. font-style:normal;
  4800. font-size:12px;
  4801. color:#606266;
  4802. }
  4803. #u9958 .text {
  4804. position:absolute;
  4805. align-self:center;
  4806. padding:2px 2px 2px 0px;
  4807. box-sizing:border-box;
  4808. width:100%;
  4809. }
  4810. #u9958_text {
  4811. border-width:0px;
  4812. word-wrap:break-word;
  4813. text-transform:none;
  4814. visibility:hidden;
  4815. }
  4816. #u9959_img {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:0px;
  4820. top:0px;
  4821. width:51px;
  4822. height:35px;
  4823. }
  4824. #u9959 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:326px;
  4829. width:51px;
  4830. height:35px;
  4831. display:flex;
  4832. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4833. font-weight:400;
  4834. font-style:normal;
  4835. font-size:12px;
  4836. color:#606266;
  4837. }
  4838. #u9959 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:2px 2px 2px 0px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u9959_text {
  4846. border-width:0px;
  4847. word-wrap:break-word;
  4848. text-transform:none;
  4849. visibility:hidden;
  4850. }
  4851. #u9960_img {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:125px;
  4857. height:35px;
  4858. }
  4859. #u9960 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:51px;
  4863. top:326px;
  4864. width:125px;
  4865. height:35px;
  4866. display:flex;
  4867. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. font-size:12px;
  4871. color:#606266;
  4872. }
  4873. #u9960 .text {
  4874. position:absolute;
  4875. align-self:center;
  4876. padding:2px 2px 2px 0px;
  4877. box-sizing:border-box;
  4878. width:100%;
  4879. }
  4880. #u9960_text {
  4881. border-width:0px;
  4882. word-wrap:break-word;
  4883. text-transform:none;
  4884. visibility:hidden;
  4885. }
  4886. #u9961_img {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:0px;
  4890. top:0px;
  4891. width:134px;
  4892. height:35px;
  4893. }
  4894. #u9961 {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:176px;
  4898. top:326px;
  4899. width:134px;
  4900. height:35px;
  4901. display:flex;
  4902. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4903. font-weight:400;
  4904. font-style:normal;
  4905. font-size:12px;
  4906. color:#606266;
  4907. }
  4908. #u9961 .text {
  4909. position:absolute;
  4910. align-self:center;
  4911. padding:2px 2px 2px 0px;
  4912. box-sizing:border-box;
  4913. width:100%;
  4914. }
  4915. #u9961_text {
  4916. border-width:0px;
  4917. word-wrap:break-word;
  4918. text-transform:none;
  4919. visibility:hidden;
  4920. }
  4921. #u9962_img {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:153px;
  4927. height:35px;
  4928. }
  4929. #u9962 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:310px;
  4933. top:326px;
  4934. width:153px;
  4935. height:35px;
  4936. display:flex;
  4937. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4938. font-weight:400;
  4939. font-style:normal;
  4940. font-size:12px;
  4941. color:#606266;
  4942. }
  4943. #u9962 .text {
  4944. position:absolute;
  4945. align-self:center;
  4946. padding:2px 2px 2px 0px;
  4947. box-sizing:border-box;
  4948. width:100%;
  4949. }
  4950. #u9962_text {
  4951. border-width:0px;
  4952. word-wrap:break-word;
  4953. text-transform:none;
  4954. visibility:hidden;
  4955. }
  4956. #u9963_img {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:0px;
  4961. width:153px;
  4962. height:35px;
  4963. }
  4964. #u9963 {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:463px;
  4968. top:326px;
  4969. width:153px;
  4970. height:35px;
  4971. display:flex;
  4972. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:12px;
  4976. color:#606266;
  4977. }
  4978. #u9963 .text {
  4979. position:absolute;
  4980. align-self:center;
  4981. padding:2px 2px 2px 0px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u9963_text {
  4986. border-width:0px;
  4987. word-wrap:break-word;
  4988. text-transform:none;
  4989. visibility:hidden;
  4990. }
  4991. #u9964_img {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:0px;
  4995. top:0px;
  4996. width:139px;
  4997. height:35px;
  4998. }
  4999. #u9964 {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:616px;
  5003. top:326px;
  5004. width:139px;
  5005. height:35px;
  5006. display:flex;
  5007. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5008. font-weight:400;
  5009. font-style:normal;
  5010. font-size:12px;
  5011. color:#606266;
  5012. }
  5013. #u9964 .text {
  5014. position:absolute;
  5015. align-self:center;
  5016. padding:2px 2px 2px 0px;
  5017. box-sizing:border-box;
  5018. width:100%;
  5019. }
  5020. #u9964_text {
  5021. border-width:0px;
  5022. word-wrap:break-word;
  5023. text-transform:none;
  5024. visibility:hidden;
  5025. }
  5026. #u9965_img {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:137px;
  5032. height:35px;
  5033. }
  5034. #u9965 {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:755px;
  5038. top:326px;
  5039. width:137px;
  5040. height:35px;
  5041. display:flex;
  5042. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5043. font-weight:400;
  5044. font-style:normal;
  5045. font-size:12px;
  5046. color:#606266;
  5047. }
  5048. #u9965 .text {
  5049. position:absolute;
  5050. align-self:center;
  5051. padding:2px 2px 2px 0px;
  5052. box-sizing:border-box;
  5053. width:100%;
  5054. }
  5055. #u9965_text {
  5056. border-width:0px;
  5057. word-wrap:break-word;
  5058. text-transform:none;
  5059. visibility:hidden;
  5060. }
  5061. #u9966_img {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:114px;
  5067. height:35px;
  5068. }
  5069. #u9966 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:892px;
  5073. top:326px;
  5074. width:114px;
  5075. height:35px;
  5076. display:flex;
  5077. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:12px;
  5081. color:#606266;
  5082. }
  5083. #u9966 .text {
  5084. position:absolute;
  5085. align-self:center;
  5086. padding:2px 2px 2px 0px;
  5087. box-sizing:border-box;
  5088. width:100%;
  5089. }
  5090. #u9966_text {
  5091. border-width:0px;
  5092. word-wrap:break-word;
  5093. text-transform:none;
  5094. visibility:hidden;
  5095. }
  5096. #u9967_img {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:51px;
  5102. height:35px;
  5103. }
  5104. #u9967 {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:361px;
  5109. width:51px;
  5110. height:35px;
  5111. display:flex;
  5112. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:12px;
  5116. color:#606266;
  5117. }
  5118. #u9967 .text {
  5119. position:absolute;
  5120. align-self:center;
  5121. padding:2px 2px 2px 0px;
  5122. box-sizing:border-box;
  5123. width:100%;
  5124. }
  5125. #u9967_text {
  5126. border-width:0px;
  5127. word-wrap:break-word;
  5128. text-transform:none;
  5129. visibility:hidden;
  5130. }
  5131. #u9968_img {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:0px;
  5135. top:0px;
  5136. width:125px;
  5137. height:35px;
  5138. }
  5139. #u9968 {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:51px;
  5143. top:361px;
  5144. width:125px;
  5145. height:35px;
  5146. display:flex;
  5147. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5148. font-weight:400;
  5149. font-style:normal;
  5150. font-size:12px;
  5151. color:#606266;
  5152. }
  5153. #u9968 .text {
  5154. position:absolute;
  5155. align-self:center;
  5156. padding:2px 2px 2px 0px;
  5157. box-sizing:border-box;
  5158. width:100%;
  5159. }
  5160. #u9968_text {
  5161. border-width:0px;
  5162. word-wrap:break-word;
  5163. text-transform:none;
  5164. visibility:hidden;
  5165. }
  5166. #u9969_img {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:134px;
  5172. height:35px;
  5173. }
  5174. #u9969 {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:176px;
  5178. top:361px;
  5179. width:134px;
  5180. height:35px;
  5181. display:flex;
  5182. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5183. font-weight:400;
  5184. font-style:normal;
  5185. font-size:12px;
  5186. color:#606266;
  5187. }
  5188. #u9969 .text {
  5189. position:absolute;
  5190. align-self:center;
  5191. padding:2px 2px 2px 0px;
  5192. box-sizing:border-box;
  5193. width:100%;
  5194. }
  5195. #u9969_text {
  5196. border-width:0px;
  5197. word-wrap:break-word;
  5198. text-transform:none;
  5199. visibility:hidden;
  5200. }
  5201. #u9970_img {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:153px;
  5207. height:35px;
  5208. }
  5209. #u9970 {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:310px;
  5213. top:361px;
  5214. width:153px;
  5215. height:35px;
  5216. display:flex;
  5217. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:12px;
  5221. color:#606266;
  5222. }
  5223. #u9970 .text {
  5224. position:absolute;
  5225. align-self:center;
  5226. padding:2px 2px 2px 0px;
  5227. box-sizing:border-box;
  5228. width:100%;
  5229. }
  5230. #u9970_text {
  5231. border-width:0px;
  5232. word-wrap:break-word;
  5233. text-transform:none;
  5234. visibility:hidden;
  5235. }
  5236. #u9971_img {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:153px;
  5242. height:35px;
  5243. }
  5244. #u9971 {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:463px;
  5248. top:361px;
  5249. width:153px;
  5250. height:35px;
  5251. display:flex;
  5252. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5253. font-weight:400;
  5254. font-style:normal;
  5255. font-size:12px;
  5256. color:#606266;
  5257. }
  5258. #u9971 .text {
  5259. position:absolute;
  5260. align-self:center;
  5261. padding:2px 2px 2px 0px;
  5262. box-sizing:border-box;
  5263. width:100%;
  5264. }
  5265. #u9971_text {
  5266. border-width:0px;
  5267. word-wrap:break-word;
  5268. text-transform:none;
  5269. visibility:hidden;
  5270. }
  5271. #u9972_img {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:0px;
  5275. top:0px;
  5276. width:139px;
  5277. height:35px;
  5278. }
  5279. #u9972 {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:616px;
  5283. top:361px;
  5284. width:139px;
  5285. height:35px;
  5286. display:flex;
  5287. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5288. font-weight:400;
  5289. font-style:normal;
  5290. font-size:12px;
  5291. color:#606266;
  5292. }
  5293. #u9972 .text {
  5294. position:absolute;
  5295. align-self:center;
  5296. padding:2px 2px 2px 0px;
  5297. box-sizing:border-box;
  5298. width:100%;
  5299. }
  5300. #u9972_text {
  5301. border-width:0px;
  5302. word-wrap:break-word;
  5303. text-transform:none;
  5304. visibility:hidden;
  5305. }
  5306. #u9973_img {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:137px;
  5312. height:35px;
  5313. }
  5314. #u9973 {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:755px;
  5318. top:361px;
  5319. width:137px;
  5320. height:35px;
  5321. display:flex;
  5322. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5323. font-weight:400;
  5324. font-style:normal;
  5325. font-size:12px;
  5326. color:#606266;
  5327. }
  5328. #u9973 .text {
  5329. position:absolute;
  5330. align-self:center;
  5331. padding:2px 2px 2px 0px;
  5332. box-sizing:border-box;
  5333. width:100%;
  5334. }
  5335. #u9973_text {
  5336. border-width:0px;
  5337. word-wrap:break-word;
  5338. text-transform:none;
  5339. visibility:hidden;
  5340. }
  5341. #u9974_img {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:114px;
  5347. height:35px;
  5348. }
  5349. #u9974 {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:892px;
  5353. top:361px;
  5354. width:114px;
  5355. height:35px;
  5356. display:flex;
  5357. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5358. font-weight:400;
  5359. font-style:normal;
  5360. font-size:12px;
  5361. color:#606266;
  5362. }
  5363. #u9974 .text {
  5364. position:absolute;
  5365. align-self:center;
  5366. padding:2px 2px 2px 0px;
  5367. box-sizing:border-box;
  5368. width:100%;
  5369. }
  5370. #u9974_text {
  5371. border-width:0px;
  5372. word-wrap:break-word;
  5373. text-transform:none;
  5374. visibility:hidden;
  5375. }
  5376. #u9975_img {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:51px;
  5382. height:32px;
  5383. }
  5384. #u9975 {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:396px;
  5389. width:51px;
  5390. height:32px;
  5391. display:flex;
  5392. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5393. font-weight:400;
  5394. font-style:normal;
  5395. font-size:12px;
  5396. color:#606266;
  5397. }
  5398. #u9975 .text {
  5399. position:absolute;
  5400. align-self:center;
  5401. padding:2px 2px 2px 0px;
  5402. box-sizing:border-box;
  5403. width:100%;
  5404. }
  5405. #u9975_text {
  5406. border-width:0px;
  5407. word-wrap:break-word;
  5408. text-transform:none;
  5409. visibility:hidden;
  5410. }
  5411. #u9976_img {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:0px;
  5415. top:0px;
  5416. width:125px;
  5417. height:32px;
  5418. }
  5419. #u9976 {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:51px;
  5423. top:396px;
  5424. width:125px;
  5425. height:32px;
  5426. display:flex;
  5427. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5428. font-weight:400;
  5429. font-style:normal;
  5430. font-size:12px;
  5431. color:#606266;
  5432. }
  5433. #u9976 .text {
  5434. position:absolute;
  5435. align-self:center;
  5436. padding:2px 2px 2px 0px;
  5437. box-sizing:border-box;
  5438. width:100%;
  5439. }
  5440. #u9976_text {
  5441. border-width:0px;
  5442. word-wrap:break-word;
  5443. text-transform:none;
  5444. visibility:hidden;
  5445. }
  5446. #u9977_img {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:0px;
  5450. top:0px;
  5451. width:134px;
  5452. height:32px;
  5453. }
  5454. #u9977 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:176px;
  5458. top:396px;
  5459. width:134px;
  5460. height:32px;
  5461. display:flex;
  5462. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:12px;
  5466. color:#606266;
  5467. }
  5468. #u9977 .text {
  5469. position:absolute;
  5470. align-self:center;
  5471. padding:2px 2px 2px 0px;
  5472. box-sizing:border-box;
  5473. width:100%;
  5474. }
  5475. #u9977_text {
  5476. border-width:0px;
  5477. word-wrap:break-word;
  5478. text-transform:none;
  5479. visibility:hidden;
  5480. }
  5481. #u9978_img {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:153px;
  5487. height:32px;
  5488. }
  5489. #u9978 {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:310px;
  5493. top:396px;
  5494. width:153px;
  5495. height:32px;
  5496. display:flex;
  5497. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5498. font-weight:400;
  5499. font-style:normal;
  5500. font-size:12px;
  5501. color:#606266;
  5502. }
  5503. #u9978 .text {
  5504. position:absolute;
  5505. align-self:center;
  5506. padding:2px 2px 2px 0px;
  5507. box-sizing:border-box;
  5508. width:100%;
  5509. }
  5510. #u9978_text {
  5511. border-width:0px;
  5512. word-wrap:break-word;
  5513. text-transform:none;
  5514. visibility:hidden;
  5515. }
  5516. #u9979_img {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:0px;
  5520. top:0px;
  5521. width:153px;
  5522. height:32px;
  5523. }
  5524. #u9979 {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:463px;
  5528. top:396px;
  5529. width:153px;
  5530. height:32px;
  5531. display:flex;
  5532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5533. font-weight:400;
  5534. font-style:normal;
  5535. font-size:12px;
  5536. color:#606266;
  5537. }
  5538. #u9979 .text {
  5539. position:absolute;
  5540. align-self:center;
  5541. padding:2px 2px 2px 0px;
  5542. box-sizing:border-box;
  5543. width:100%;
  5544. }
  5545. #u9979_text {
  5546. border-width:0px;
  5547. word-wrap:break-word;
  5548. text-transform:none;
  5549. visibility:hidden;
  5550. }
  5551. #u9980_img {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:139px;
  5557. height:32px;
  5558. }
  5559. #u9980 {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:616px;
  5563. top:396px;
  5564. width:139px;
  5565. height:32px;
  5566. display:flex;
  5567. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:12px;
  5571. color:#606266;
  5572. }
  5573. #u9980 .text {
  5574. position:absolute;
  5575. align-self:center;
  5576. padding:2px 2px 2px 0px;
  5577. box-sizing:border-box;
  5578. width:100%;
  5579. }
  5580. #u9980_text {
  5581. border-width:0px;
  5582. word-wrap:break-word;
  5583. text-transform:none;
  5584. visibility:hidden;
  5585. }
  5586. #u9981_img {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:137px;
  5592. height:32px;
  5593. }
  5594. #u9981 {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:755px;
  5598. top:396px;
  5599. width:137px;
  5600. height:32px;
  5601. display:flex;
  5602. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5603. font-weight:400;
  5604. font-style:normal;
  5605. font-size:12px;
  5606. color:#606266;
  5607. }
  5608. #u9981 .text {
  5609. position:absolute;
  5610. align-self:center;
  5611. padding:2px 2px 2px 0px;
  5612. box-sizing:border-box;
  5613. width:100%;
  5614. }
  5615. #u9981_text {
  5616. border-width:0px;
  5617. word-wrap:break-word;
  5618. text-transform:none;
  5619. visibility:hidden;
  5620. }
  5621. #u9982_img {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:0px;
  5625. top:0px;
  5626. width:114px;
  5627. height:32px;
  5628. }
  5629. #u9982 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:892px;
  5633. top:396px;
  5634. width:114px;
  5635. height:32px;
  5636. display:flex;
  5637. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5638. font-weight:400;
  5639. font-style:normal;
  5640. font-size:12px;
  5641. color:#606266;
  5642. }
  5643. #u9982 .text {
  5644. position:absolute;
  5645. align-self:center;
  5646. padding:2px 2px 2px 0px;
  5647. box-sizing:border-box;
  5648. width:100%;
  5649. }
  5650. #u9982_text {
  5651. border-width:0px;
  5652. word-wrap:break-word;
  5653. text-transform:none;
  5654. visibility:hidden;
  5655. }
  5656. #u9983_div {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:0px;
  5660. top:0px;
  5661. width:55px;
  5662. height:30px;
  5663. background:inherit;
  5664. background-color:rgba(255, 255, 255, 1);
  5665. box-sizing:border-box;
  5666. border-width:1px;
  5667. border-style:solid;
  5668. border-color:rgba(170, 170, 170, 1);
  5669. border-radius:4px;
  5670. -moz-box-shadow:none;
  5671. -webkit-box-shadow:none;
  5672. box-shadow:none;
  5673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5674. font-weight:400;
  5675. font-style:normal;
  5676. font-size:12px;
  5677. color:#555555;
  5678. }
  5679. #u9983 {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:628px;
  5683. top:363px;
  5684. width:55px;
  5685. height:30px;
  5686. display:flex;
  5687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:12px;
  5691. color:#555555;
  5692. }
  5693. #u9983 .text {
  5694. position:absolute;
  5695. align-self:center;
  5696. padding:5px 15px 5px 15px;
  5697. box-sizing:border-box;
  5698. width:100%;
  5699. }
  5700. #u9983_text {
  5701. border-width:0px;
  5702. white-space:nowrap;
  5703. text-transform:none;
  5704. }
  5705. #u9984_div {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:59px;
  5711. height:30px;
  5712. background:inherit;
  5713. background-color:rgba(41, 143, 255, 1);
  5714. border:none;
  5715. border-radius:4px;
  5716. -moz-box-shadow:none;
  5717. -webkit-box-shadow:none;
  5718. box-shadow:none;
  5719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:14px;
  5723. color:#FFFFFF;
  5724. }
  5725. #u9984 {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:559px;
  5729. top:363px;
  5730. width:59px;
  5731. height:30px;
  5732. display:flex;
  5733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5734. font-weight:400;
  5735. font-style:normal;
  5736. font-size:14px;
  5737. color:#FFFFFF;
  5738. }
  5739. #u9984 .text {
  5740. position:absolute;
  5741. align-self:center;
  5742. padding:5px 15px 5px 15px;
  5743. box-sizing:border-box;
  5744. width:100%;
  5745. }
  5746. #u9984_text {
  5747. border-width:0px;
  5748. white-space:nowrap;
  5749. text-transform:none;
  5750. }
  5751. #u9985 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:0px;
  5757. height:0px;
  5758. }
  5759. #u9986_div {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:59px;
  5765. height:30px;
  5766. background:inherit;
  5767. background-color:rgba(41, 143, 255, 1);
  5768. border:none;
  5769. border-radius:4px;
  5770. -moz-box-shadow:none;
  5771. -webkit-box-shadow:none;
  5772. box-shadow:none;
  5773. font-family:'Microsoft YaHei', sans-serif;
  5774. font-weight:400;
  5775. font-style:normal;
  5776. font-size:14px;
  5777. color:#FFFFFF;
  5778. }
  5779. #u9986 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:1159px;
  5783. top:314px;
  5784. width:59px;
  5785. height:30px;
  5786. display:flex;
  5787. font-family:'Microsoft YaHei', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:14px;
  5791. color:#FFFFFF;
  5792. }
  5793. #u9986 .text {
  5794. position:absolute;
  5795. align-self:center;
  5796. padding:5px 15px 5px 15px;
  5797. box-sizing:border-box;
  5798. width:100%;
  5799. }
  5800. #u9986_text {
  5801. border-width:0px;
  5802. white-space:nowrap;
  5803. text-transform:none;
  5804. }
  5805. #u9987_div {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:0px;
  5809. top:0px;
  5810. width:55px;
  5811. height:30px;
  5812. background:inherit;
  5813. background-color:rgba(255, 255, 255, 1);
  5814. box-sizing:border-box;
  5815. border-width:1px;
  5816. border-style:solid;
  5817. border-color:rgba(170, 170, 170, 1);
  5818. border-radius:4px;
  5819. -moz-box-shadow:none;
  5820. -webkit-box-shadow:none;
  5821. box-shadow:none;
  5822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5823. font-weight:400;
  5824. font-style:normal;
  5825. font-size:12px;
  5826. color:#555555;
  5827. }
  5828. #u9987 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:1228px;
  5832. top:314px;
  5833. width:55px;
  5834. height:30px;
  5835. display:flex;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:12px;
  5840. color:#555555;
  5841. }
  5842. #u9987 .text {
  5843. position:absolute;
  5844. align-self:center;
  5845. padding:5px 15px 5px 15px;
  5846. box-sizing:border-box;
  5847. width:100%;
  5848. }
  5849. #u9987_text {
  5850. border-width:0px;
  5851. white-space:nowrap;
  5852. text-transform:none;
  5853. }
  5854. #u9988 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:0px;
  5860. height:0px;
  5861. }
  5862. #u9989_div {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:0px;
  5866. top:0px;
  5867. width:140px;
  5868. height:30px;
  5869. background:inherit;
  5870. background-color:rgba(255, 255, 255, 1);
  5871. box-sizing:border-box;
  5872. border-width:1px;
  5873. border-style:solid;
  5874. border-color:rgba(201, 201, 201, 1);
  5875. border-radius:4px;
  5876. -moz-box-shadow:none;
  5877. -webkit-box-shadow:none;
  5878. box-shadow:none;
  5879. font-family:'Microsoft YaHei', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:14px;
  5883. color:#CCCCCC;
  5884. text-align:left;
  5885. }
  5886. #u9989 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:859px;
  5890. top:313px;
  5891. width:140px;
  5892. height:30px;
  5893. display:flex;
  5894. font-family:'Microsoft YaHei', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:14px;
  5898. color:#CCCCCC;
  5899. text-align:left;
  5900. }
  5901. #u9989 .text {
  5902. position:absolute;
  5903. align-self:center;
  5904. padding:2px 8px 2px 8px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u9989_text {
  5909. border-width:0px;
  5910. word-wrap:break-word;
  5911. text-transform:none;
  5912. visibility:hidden;
  5913. }
  5914. #u9990_input {
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:127px;
  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:10px;
  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. #u9990_input.disabled {
  5934. position:absolute;
  5935. left:0px;
  5936. top:0px;
  5937. width:127px;
  5938. height:25px;
  5939. padding:2px 2px 2px 2px;
  5940. font-family:'Microsoft YaHei', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:10px;
  5944. letter-spacing:normal;
  5945. color:#000000;
  5946. vertical-align:none;
  5947. text-align:left;
  5948. text-transform:none;
  5949. background-color:transparent;
  5950. border-color:transparent;
  5951. }
  5952. #u9990_div {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:127px;
  5958. height:25px;
  5959. background:inherit;
  5960. background-color:rgba(255, 255, 255, 1);
  5961. border:none;
  5962. border-radius:0px;
  5963. -moz-box-shadow:none;
  5964. -webkit-box-shadow:none;
  5965. box-shadow:none;
  5966. font-family:'Microsoft YaHei', sans-serif;
  5967. font-weight:400;
  5968. font-style:normal;
  5969. font-size:10px;
  5970. }
  5971. #u9990 {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:867px;
  5975. top:314px;
  5976. width:127px;
  5977. height:25px;
  5978. display:flex;
  5979. font-family:'Microsoft YaHei', sans-serif;
  5980. font-weight:400;
  5981. font-style:normal;
  5982. font-size:10px;
  5983. }
  5984. #u9990 .text {
  5985. position:absolute;
  5986. align-self:center;
  5987. padding:2px 2px 2px 2px;
  5988. box-sizing:border-box;
  5989. width:100%;
  5990. }
  5991. #u9990_div.disabled {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:127px;
  5997. height:25px;
  5998. background:inherit;
  5999. background-color:rgba(240, 240, 240, 1);
  6000. border:none;
  6001. border-radius:0px;
  6002. -moz-box-shadow:none;
  6003. -webkit-box-shadow:none;
  6004. box-shadow:none;
  6005. font-family:'Microsoft YaHei', sans-serif;
  6006. font-weight:400;
  6007. font-style:normal;
  6008. font-size:10px;
  6009. }
  6010. #u9990.disabled {
  6011. }
  6012. #u9991 {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:0px;
  6016. top:0px;
  6017. width:0px;
  6018. height:0px;
  6019. }
  6020. #u9992_div {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:140px;
  6026. height:30px;
  6027. background:inherit;
  6028. background-color:rgba(255, 255, 255, 1);
  6029. box-sizing:border-box;
  6030. border-width:1px;
  6031. border-style:solid;
  6032. border-color:rgba(215, 215, 215, 1);
  6033. border-radius:4px;
  6034. -moz-box-shadow:none;
  6035. -webkit-box-shadow:none;
  6036. box-shadow:none;
  6037. font-size:11px;
  6038. }
  6039. #u9992 {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:1009px;
  6043. top:313px;
  6044. width:140px;
  6045. height:30px;
  6046. display:flex;
  6047. font-size:11px;
  6048. }
  6049. #u9992 .text {
  6050. position:absolute;
  6051. align-self:center;
  6052. padding:2px 2px 2px 2px;
  6053. box-sizing:border-box;
  6054. width:100%;
  6055. }
  6056. #u9992_text {
  6057. border-width:0px;
  6058. word-wrap:break-word;
  6059. text-transform:none;
  6060. visibility:hidden;
  6061. }
  6062. #u9993_input {
  6063. position:absolute;
  6064. left:0px;
  6065. top:0px;
  6066. width:125px;
  6067. height:23px;
  6068. padding:2px 2px 2px 2px;
  6069. font-family:'ArialMT', 'Arial', sans-serif;
  6070. font-weight:400;
  6071. font-style:normal;
  6072. font-size:11px;
  6073. letter-spacing:normal;
  6074. color:#AAAAAA;
  6075. vertical-align:none;
  6076. text-align:left;
  6077. text-transform:none;
  6078. background-color:transparent;
  6079. border-color:transparent;
  6080. }
  6081. #u9993_input.disabled {
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:125px;
  6086. height:23px;
  6087. padding:2px 2px 2px 2px;
  6088. font-family:'ArialMT', 'Arial', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:11px;
  6092. letter-spacing:normal;
  6093. color:#AAAAAA;
  6094. vertical-align:none;
  6095. text-align:left;
  6096. text-transform:none;
  6097. background-color:transparent;
  6098. border-color:transparent;
  6099. }
  6100. #u9993_div {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:125px;
  6106. height:23px;
  6107. background:inherit;
  6108. background-color:rgba(255, 255, 255, 1);
  6109. border:none;
  6110. border-radius:0px;
  6111. -moz-box-shadow:none;
  6112. -webkit-box-shadow:none;
  6113. box-shadow:none;
  6114. font-size:11px;
  6115. color:#AAAAAA;
  6116. }
  6117. #u9993 {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:1015px;
  6121. top:315px;
  6122. width:125px;
  6123. height:23px;
  6124. display:flex;
  6125. font-size:11px;
  6126. color:#AAAAAA;
  6127. }
  6128. #u9993 .text {
  6129. position:absolute;
  6130. align-self:flex-start;
  6131. padding:2px 2px 2px 2px;
  6132. box-sizing:border-box;
  6133. width:100%;
  6134. }
  6135. #u9993_div.disabled {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:0px;
  6139. top:0px;
  6140. width:125px;
  6141. height:23px;
  6142. background:inherit;
  6143. background-color:rgba(240, 240, 240, 1);
  6144. border:none;
  6145. border-radius:0px;
  6146. -moz-box-shadow:none;
  6147. -webkit-box-shadow:none;
  6148. box-shadow:none;
  6149. font-size:11px;
  6150. color:#AAAAAA;
  6151. }
  6152. #u9993.disabled {
  6153. }
  6154. .u9993_input_option {
  6155. font-size:11px;
  6156. }
  6157. #u9994 {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:0px;
  6163. height:0px;
  6164. }
  6165. #u9995_div {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:140px;
  6171. height:30px;
  6172. background:inherit;
  6173. background-color:rgba(255, 255, 255, 1);
  6174. box-sizing:border-box;
  6175. border-width:1px;
  6176. border-style:solid;
  6177. border-color:rgba(201, 201, 201, 1);
  6178. border-radius:4px;
  6179. -moz-box-shadow:none;
  6180. -webkit-box-shadow:none;
  6181. box-shadow:none;
  6182. font-family:'Microsoft YaHei', sans-serif;
  6183. font-weight:400;
  6184. font-style:normal;
  6185. font-size:14px;
  6186. color:#CCCCCC;
  6187. text-align:left;
  6188. }
  6189. #u9995 {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:559px;
  6193. top:313px;
  6194. width:140px;
  6195. height:30px;
  6196. display:flex;
  6197. font-family:'Microsoft YaHei', sans-serif;
  6198. font-weight:400;
  6199. font-style:normal;
  6200. font-size:14px;
  6201. color:#CCCCCC;
  6202. text-align:left;
  6203. }
  6204. #u9995 .text {
  6205. position:absolute;
  6206. align-self:center;
  6207. padding:2px 8px 2px 8px;
  6208. box-sizing:border-box;
  6209. width:100%;
  6210. }
  6211. #u9995_text {
  6212. border-width:0px;
  6213. word-wrap:break-word;
  6214. text-transform:none;
  6215. visibility:hidden;
  6216. }
  6217. #u9996_input {
  6218. position:absolute;
  6219. left:0px;
  6220. top:0px;
  6221. width:127px;
  6222. height:25px;
  6223. padding:2px 2px 2px 2px;
  6224. font-family:'Microsoft YaHei', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:10px;
  6228. letter-spacing:normal;
  6229. color:#000000;
  6230. vertical-align:none;
  6231. text-align:left;
  6232. text-transform:none;
  6233. background-color:transparent;
  6234. border-color:transparent;
  6235. }
  6236. #u9996_input.disabled {
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:127px;
  6241. height:25px;
  6242. padding:2px 2px 2px 2px;
  6243. font-family:'Microsoft YaHei', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:10px;
  6247. letter-spacing:normal;
  6248. color:#000000;
  6249. vertical-align:none;
  6250. text-align:left;
  6251. text-transform:none;
  6252. background-color:transparent;
  6253. border-color:transparent;
  6254. }
  6255. #u9996_div {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:127px;
  6261. height:25px;
  6262. background:inherit;
  6263. background-color:rgba(255, 255, 255, 1);
  6264. border:none;
  6265. border-radius:0px;
  6266. -moz-box-shadow:none;
  6267. -webkit-box-shadow:none;
  6268. box-shadow:none;
  6269. font-family:'Microsoft YaHei', sans-serif;
  6270. font-weight:400;
  6271. font-style:normal;
  6272. font-size:10px;
  6273. }
  6274. #u9996 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:567px;
  6278. top:314px;
  6279. width:127px;
  6280. height:25px;
  6281. display:flex;
  6282. font-family:'Microsoft YaHei', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:10px;
  6286. }
  6287. #u9996 .text {
  6288. position:absolute;
  6289. align-self:center;
  6290. padding:2px 2px 2px 2px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u9996_div.disabled {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:127px;
  6300. height:25px;
  6301. background:inherit;
  6302. background-color:rgba(240, 240, 240, 1);
  6303. border:none;
  6304. border-radius:0px;
  6305. -moz-box-shadow:none;
  6306. -webkit-box-shadow:none;
  6307. box-shadow:none;
  6308. font-family:'Microsoft YaHei', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:10px;
  6312. }
  6313. #u9996.disabled {
  6314. }
  6315. #u9997_div {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:0px;
  6319. top:0px;
  6320. width:1006px;
  6321. height:37px;
  6322. background:inherit;
  6323. background-color:rgba(255, 255, 128, 0.0980392156862745);
  6324. border:none;
  6325. border-radius:6px;
  6326. -moz-box-shadow:none;
  6327. -webkit-box-shadow:none;
  6328. box-shadow:none;
  6329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6330. font-weight:400;
  6331. font-style:normal;
  6332. font-size:12px;
  6333. color:#F59A23;
  6334. text-align:left;
  6335. }
  6336. #u9997 {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:559px;
  6340. top:263px;
  6341. width:1006px;
  6342. height:37px;
  6343. display:flex;
  6344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6345. font-weight:400;
  6346. font-style:normal;
  6347. font-size:12px;
  6348. color:#F59A23;
  6349. text-align:left;
  6350. }
  6351. #u9997 .text {
  6352. position:absolute;
  6353. align-self:center;
  6354. padding:2px 2px 2px 10px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u9997_text {
  6359. border-width:0px;
  6360. word-wrap:break-word;
  6361. text-transform:none;
  6362. }
  6363. #u9998 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:0px;
  6369. height:0px;
  6370. }
  6371. #u9999_div {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:140px;
  6377. height:30px;
  6378. background:inherit;
  6379. background-color:rgba(255, 255, 255, 1);
  6380. box-sizing:border-box;
  6381. border-width:1px;
  6382. border-style:solid;
  6383. border-color:rgba(201, 201, 201, 1);
  6384. border-radius:4px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. font-family:'Microsoft YaHei', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:14px;
  6392. color:#CCCCCC;
  6393. text-align:left;
  6394. }
  6395. #u9999 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:709px;
  6399. top:313px;
  6400. width:140px;
  6401. height:30px;
  6402. display:flex;
  6403. font-family:'Microsoft YaHei', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. font-size:14px;
  6407. color:#CCCCCC;
  6408. text-align:left;
  6409. }
  6410. #u9999 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:2px 8px 2px 8px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u9999_text {
  6418. border-width:0px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. visibility:hidden;
  6422. }
  6423. #u10000_input {
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:127px;
  6428. height:25px;
  6429. padding:2px 2px 2px 2px;
  6430. font-family:'Microsoft YaHei', sans-serif;
  6431. font-weight:400;
  6432. font-style:normal;
  6433. font-size:10px;
  6434. letter-spacing:normal;
  6435. color:#000000;
  6436. vertical-align:none;
  6437. text-align:left;
  6438. text-transform:none;
  6439. background-color:transparent;
  6440. border-color:transparent;
  6441. }
  6442. #u10000_input.disabled {
  6443. position:absolute;
  6444. left:0px;
  6445. top:0px;
  6446. width:127px;
  6447. height:25px;
  6448. padding:2px 2px 2px 2px;
  6449. font-family:'Microsoft YaHei', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. font-size:10px;
  6453. letter-spacing:normal;
  6454. color:#000000;
  6455. vertical-align:none;
  6456. text-align:left;
  6457. text-transform:none;
  6458. background-color:transparent;
  6459. border-color:transparent;
  6460. }
  6461. #u10000_div {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:0px;
  6465. top:0px;
  6466. width:127px;
  6467. height:25px;
  6468. background:inherit;
  6469. background-color:rgba(255, 255, 255, 1);
  6470. border:none;
  6471. border-radius:0px;
  6472. -moz-box-shadow:none;
  6473. -webkit-box-shadow:none;
  6474. box-shadow:none;
  6475. font-family:'Microsoft YaHei', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:10px;
  6479. }
  6480. #u10000 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:717px;
  6484. top:314px;
  6485. width:127px;
  6486. height:25px;
  6487. display:flex;
  6488. font-family:'Microsoft YaHei', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:10px;
  6492. }
  6493. #u10000 .text {
  6494. position:absolute;
  6495. align-self:center;
  6496. padding:2px 2px 2px 2px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u10000_div.disabled {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:127px;
  6506. height:25px;
  6507. background:inherit;
  6508. background-color:rgba(240, 240, 240, 1);
  6509. border:none;
  6510. border-radius:0px;
  6511. -moz-box-shadow:none;
  6512. -webkit-box-shadow:none;
  6513. box-shadow:none;
  6514. font-family:'Microsoft YaHei', sans-serif;
  6515. font-weight:400;
  6516. font-style:normal;
  6517. font-size:10px;
  6518. }
  6519. #u10000.disabled {
  6520. }
  6521. #u10001 {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:0px;
  6525. top:0px;
  6526. width:0px;
  6527. height:0px;
  6528. }
  6529. #u10002_div {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:120px;
  6535. height:180px;
  6536. background:inherit;
  6537. background-color:rgba(255, 255, 255, 1);
  6538. box-sizing:border-box;
  6539. border-width:1px;
  6540. border-style:solid;
  6541. border-color:rgba(242, 242, 242, 1);
  6542. border-left:0px;
  6543. border-right:0px;
  6544. border-radius:3px;
  6545. border-top-left-radius:0px;
  6546. border-top-right-radius:0px;
  6547. border-bottom-right-radius:0px;
  6548. border-bottom-left-radius:0px;
  6549. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6550. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6551. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6552. }
  6553. #u10002 {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:1391px;
  6557. top:511px;
  6558. width:120px;
  6559. height:180px;
  6560. display:flex;
  6561. }
  6562. #u10002 .text {
  6563. position:absolute;
  6564. align-self:center;
  6565. padding:2px 2px 2px 2px;
  6566. box-sizing:border-box;
  6567. width:100%;
  6568. }
  6569. #u10002_text {
  6570. border-width:0px;
  6571. word-wrap:break-word;
  6572. text-transform:none;
  6573. visibility:hidden;
  6574. }
  6575. #u10003_div {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:100px;
  6581. height:40px;
  6582. background:inherit;
  6583. background-color:rgba(255, 255, 255, 1);
  6584. box-sizing:border-box;
  6585. border-width:1px;
  6586. border-style:solid;
  6587. border-color:rgba(242, 242, 242, 1);
  6588. border-left:0px;
  6589. border-top:0px;
  6590. border-right:0px;
  6591. border-radius:4px;
  6592. border-bottom-right-radius:0px;
  6593. border-bottom-left-radius:0px;
  6594. -moz-box-shadow:none;
  6595. -webkit-box-shadow:none;
  6596. box-shadow:none;
  6597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6598. font-weight:400;
  6599. font-style:normal;
  6600. font-size:14px;
  6601. }
  6602. #u10003 {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:1401px;
  6606. top:602px;
  6607. width:100px;
  6608. height:40px;
  6609. display:flex;
  6610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:14px;
  6614. }
  6615. #u10003 .text {
  6616. position:absolute;
  6617. align-self:center;
  6618. padding:5px 0px 5px 0px;
  6619. box-sizing:border-box;
  6620. width:100%;
  6621. }
  6622. #u10003_text {
  6623. border-width:0px;
  6624. word-wrap:break-word;
  6625. text-transform:none;
  6626. }
  6627. #u10004_div {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:100px;
  6633. height:40px;
  6634. background:inherit;
  6635. background-color:rgba(255, 255, 255, 1);
  6636. box-sizing:border-box;
  6637. border-width:1px;
  6638. border-style:solid;
  6639. border-color:rgba(242, 242, 242, 1);
  6640. border-left:0px;
  6641. border-top:0px;
  6642. border-right:0px;
  6643. border-radius:4px;
  6644. border-bottom-right-radius:0px;
  6645. border-bottom-left-radius:0px;
  6646. -moz-box-shadow:none;
  6647. -webkit-box-shadow:none;
  6648. box-shadow:none;
  6649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6650. font-weight:400;
  6651. font-style:normal;
  6652. font-size:14px;
  6653. }
  6654. #u10004 {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:1401px;
  6658. top:522px;
  6659. width:100px;
  6660. height:40px;
  6661. display:flex;
  6662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6663. font-weight:400;
  6664. font-style:normal;
  6665. font-size:14px;
  6666. }
  6667. #u10004 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:5px 0px 5px 0px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u10004_text {
  6675. border-width:0px;
  6676. word-wrap:break-word;
  6677. text-transform:none;
  6678. }
  6679. #u10005_div {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:0px;
  6683. top:0px;
  6684. width:100px;
  6685. height:40px;
  6686. background:inherit;
  6687. background-color:rgba(255, 255, 255, 1);
  6688. box-sizing:border-box;
  6689. border-width:1px;
  6690. border-style:solid;
  6691. border-color:rgba(242, 242, 242, 1);
  6692. border-left:0px;
  6693. border-top:0px;
  6694. border-right:0px;
  6695. border-radius:4px;
  6696. border-bottom-right-radius:0px;
  6697. border-bottom-left-radius:0px;
  6698. -moz-box-shadow:none;
  6699. -webkit-box-shadow:none;
  6700. box-shadow:none;
  6701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:14px;
  6705. color:#D9001B;
  6706. }
  6707. #u10005 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:1401px;
  6711. top:562px;
  6712. width:100px;
  6713. height:40px;
  6714. display:flex;
  6715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6716. font-weight:400;
  6717. font-style:normal;
  6718. font-size:14px;
  6719. color:#D9001B;
  6720. }
  6721. #u10005 .text {
  6722. position:absolute;
  6723. align-self:center;
  6724. padding:5px 0px 5px 0px;
  6725. box-sizing:border-box;
  6726. width:100%;
  6727. }
  6728. #u10005_text {
  6729. border-width:0px;
  6730. word-wrap:break-word;
  6731. text-transform:none;
  6732. }
  6733. #u10006_div {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:0px;
  6737. top:0px;
  6738. width:100px;
  6739. height:40px;
  6740. background:inherit;
  6741. background-color:rgba(255, 255, 255, 1);
  6742. border:none;
  6743. border-left:0px;
  6744. border-top:0px;
  6745. border-right:0px;
  6746. border-radius:4px;
  6747. border-bottom-right-radius:0px;
  6748. border-bottom-left-radius:0px;
  6749. -moz-box-shadow:none;
  6750. -webkit-box-shadow:none;
  6751. box-shadow:none;
  6752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:14px;
  6756. }
  6757. #u10006 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:1401px;
  6761. top:642px;
  6762. width:100px;
  6763. height:40px;
  6764. display:flex;
  6765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6766. font-weight:400;
  6767. font-style:normal;
  6768. font-size:14px;
  6769. }
  6770. #u10006 .text {
  6771. position:absolute;
  6772. align-self:center;
  6773. padding:5px 0px 5px 0px;
  6774. box-sizing:border-box;
  6775. width:100%;
  6776. }
  6777. #u10006_text {
  6778. border-width:0px;
  6779. word-wrap:break-word;
  6780. text-transform:none;
  6781. }
  6782. #u10007_div {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:0px;
  6786. top:0px;
  6787. width:1004px;
  6788. height:140px;
  6789. background:inherit;
  6790. background-color:rgba(242, 242, 242, 0.498039215686275);
  6791. border:none;
  6792. border-radius:6px;
  6793. -moz-box-shadow:none;
  6794. -webkit-box-shadow:none;
  6795. box-shadow:none;
  6796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6797. font-weight:400;
  6798. font-style:normal;
  6799. font-size:18px;
  6800. color:#555555;
  6801. text-align:left;
  6802. line-height:40px;
  6803. }
  6804. #u10007 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:561px;
  6808. top:113px;
  6809. width:1004px;
  6810. height:140px;
  6811. display:flex;
  6812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:18px;
  6816. color:#555555;
  6817. text-align:left;
  6818. line-height:40px;
  6819. }
  6820. #u10007 .text {
  6821. position:absolute;
  6822. align-self:center;
  6823. padding:2px 2px 2px 30px;
  6824. box-sizing:border-box;
  6825. width:100%;
  6826. }
  6827. #u10007_text {
  6828. border-width:0px;
  6829. word-wrap:break-word;
  6830. text-transform:none;
  6831. visibility:hidden;
  6832. }
  6833. #u10008_div {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:88px;
  6839. height:17px;
  6840. background:inherit;
  6841. background-color:rgba(127, 127, 127, 0);
  6842. border:none;
  6843. border-radius:3px;
  6844. -moz-box-shadow:none;
  6845. -webkit-box-shadow:none;
  6846. box-shadow:none;
  6847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6848. font-weight:400;
  6849. font-style:normal;
  6850. font-size:12px;
  6851. }
  6852. #u10008 {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:591px;
  6856. top:213px;
  6857. width:88px;
  6858. height:17px;
  6859. display:flex;
  6860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6861. font-weight:400;
  6862. font-style:normal;
  6863. font-size:12px;
  6864. }
  6865. #u10008 .text {
  6866. position:absolute;
  6867. align-self:center;
  6868. padding:0px 0px 0px 0px;
  6869. box-sizing:border-box;
  6870. width:100%;
  6871. }
  6872. #u10008_text {
  6873. border-width:0px;
  6874. white-space:nowrap;
  6875. text-transform:none;
  6876. }
  6877. #u10009_div {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:0px;
  6881. top:0px;
  6882. width:98px;
  6883. height:17px;
  6884. background:inherit;
  6885. background-color:rgba(127, 127, 127, 0);
  6886. border:none;
  6887. border-radius:3px;
  6888. -moz-box-shadow:none;
  6889. -webkit-box-shadow:none;
  6890. box-shadow:none;
  6891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6892. font-weight:400;
  6893. font-style:normal;
  6894. font-size:12px;
  6895. }
  6896. #u10009 {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:729px;
  6900. top:213px;
  6901. width:98px;
  6902. height:17px;
  6903. display:flex;
  6904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6905. font-weight:400;
  6906. font-style:normal;
  6907. font-size:12px;
  6908. }
  6909. #u10009 .text {
  6910. position:absolute;
  6911. align-self:center;
  6912. padding:0px 0px 0px 0px;
  6913. box-sizing:border-box;
  6914. width:100%;
  6915. }
  6916. #u10009_text {
  6917. border-width:0px;
  6918. white-space:nowrap;
  6919. text-transform:none;
  6920. }
  6921. #u10010_div {
  6922. border-width:0px;
  6923. position:absolute;
  6924. left:0px;
  6925. top:0px;
  6926. width:180px;
  6927. height:25px;
  6928. background:inherit;
  6929. background-color:rgba(255, 255, 255, 0);
  6930. border:none;
  6931. border-radius:0px;
  6932. -moz-box-shadow:none;
  6933. -webkit-box-shadow:none;
  6934. box-shadow:none;
  6935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6936. font-weight:400;
  6937. font-style:normal;
  6938. }
  6939. #u10010 {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:591px;
  6943. top:173px;
  6944. width:180px;
  6945. height:25px;
  6946. display:flex;
  6947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. }
  6951. #u10010 .text {
  6952. position:absolute;
  6953. align-self:flex-start;
  6954. padding:0px 0px 0px 0px;
  6955. box-sizing:border-box;
  6956. width:100%;
  6957. }
  6958. #u10010_text {
  6959. border-width:0px;
  6960. white-space:nowrap;
  6961. text-transform:none;
  6962. }
  6963. #u10011_div {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:110px;
  6969. height:17px;
  6970. background:inherit;
  6971. background-color:rgba(127, 127, 127, 0);
  6972. border:none;
  6973. border-radius:3px;
  6974. -moz-box-shadow:none;
  6975. -webkit-box-shadow:none;
  6976. box-shadow:none;
  6977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. font-size:12px;
  6981. }
  6982. #u10011 {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:887px;
  6986. top:213px;
  6987. width:110px;
  6988. height:17px;
  6989. display:flex;
  6990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6991. font-weight:400;
  6992. font-style:normal;
  6993. font-size:12px;
  6994. }
  6995. #u10011 .text {
  6996. position:absolute;
  6997. align-self:center;
  6998. padding:0px 0px 0px 0px;
  6999. box-sizing:border-box;
  7000. width:100%;
  7001. }
  7002. #u10011_text {
  7003. border-width:0px;
  7004. white-space:nowrap;
  7005. text-transform:none;
  7006. }
  7007. #u10012_div {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:181px;
  7013. height:50px;
  7014. background:inherit;
  7015. background-color:rgba(255, 255, 255, 0);
  7016. border:none;
  7017. border-left:0px;
  7018. border-top:0px;
  7019. border-right:0px;
  7020. border-radius:0px;
  7021. border-bottom-right-radius:0px;
  7022. border-bottom-left-radius:0px;
  7023. -moz-box-shadow:none;
  7024. -webkit-box-shadow:none;
  7025. box-shadow:none;
  7026. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7027. font-weight:500;
  7028. font-style:normal;
  7029. font-size:18px;
  7030. }
  7031. #u10012 {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:591px;
  7035. top:123px;
  7036. width:181px;
  7037. height:50px;
  7038. display:flex;
  7039. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7040. font-weight:500;
  7041. font-style:normal;
  7042. font-size:18px;
  7043. }
  7044. #u10012 .text {
  7045. position:absolute;
  7046. align-self:center;
  7047. padding:0px 0px 0px 0px;
  7048. box-sizing:border-box;
  7049. width:100%;
  7050. }
  7051. #u10012_text {
  7052. border-width:0px;
  7053. white-space:nowrap;
  7054. text-transform:none;
  7055. }
  7056. #u10013_img {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:0px;
  7060. top:0px;
  7061. width:2px;
  7062. height:41px;
  7063. }
  7064. #u10013 {
  7065. border-width:0px;
  7066. position:absolute;
  7067. left:1081px;
  7068. top:182px;
  7069. width:1px;
  7070. height:40px;
  7071. display:flex;
  7072. }
  7073. #u10013 .text {
  7074. position:absolute;
  7075. align-self:center;
  7076. padding:2px 2px 2px 2px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u10013_text {
  7081. border-width:0px;
  7082. word-wrap:break-word;
  7083. text-transform:none;
  7084. visibility:hidden;
  7085. }
  7086. #u10014_div {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:0px;
  7090. top:0px;
  7091. width:216px;
  7092. height:25px;
  7093. background:inherit;
  7094. background-color:rgba(255, 255, 255, 0);
  7095. border:none;
  7096. border-radius:0px;
  7097. -moz-box-shadow:none;
  7098. -webkit-box-shadow:none;
  7099. box-shadow:none;
  7100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7101. font-weight:400;
  7102. font-style:normal;
  7103. }
  7104. #u10014 {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:1129px;
  7108. top:166px;
  7109. width:216px;
  7110. height:25px;
  7111. display:flex;
  7112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7113. font-weight:400;
  7114. font-style:normal;
  7115. }
  7116. #u10014 .text {
  7117. position:absolute;
  7118. align-self:flex-start;
  7119. padding:0px 0px 0px 0px;
  7120. box-sizing:border-box;
  7121. width:100%;
  7122. }
  7123. #u10014_text {
  7124. border-width:0px;
  7125. white-space:nowrap;
  7126. text-transform:none;
  7127. }
  7128. #u10015_div {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:0px;
  7132. top:0px;
  7133. width:88px;
  7134. height:17px;
  7135. background:inherit;
  7136. background-color:rgba(127, 127, 127, 0);
  7137. border:none;
  7138. border-radius:3px;
  7139. -moz-box-shadow:none;
  7140. -webkit-box-shadow:none;
  7141. box-shadow:none;
  7142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7143. font-weight:400;
  7144. font-style:normal;
  7145. font-size:12px;
  7146. }
  7147. #u10015 {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:1129px;
  7151. top:213px;
  7152. width:88px;
  7153. height:17px;
  7154. display:flex;
  7155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7156. font-weight:400;
  7157. font-style:normal;
  7158. font-size:12px;
  7159. }
  7160. #u10015 .text {
  7161. position:absolute;
  7162. align-self:center;
  7163. padding:0px 0px 0px 0px;
  7164. box-sizing:border-box;
  7165. width:100%;
  7166. }
  7167. #u10015_text {
  7168. border-width:0px;
  7169. white-space:nowrap;
  7170. text-transform:none;
  7171. }
  7172. #u10016_div {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:98px;
  7178. height:17px;
  7179. background:inherit;
  7180. background-color:rgba(127, 127, 127, 0);
  7181. border:none;
  7182. border-radius:3px;
  7183. -moz-box-shadow:none;
  7184. -webkit-box-shadow:none;
  7185. box-shadow:none;
  7186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7187. font-weight:400;
  7188. font-style:normal;
  7189. font-size:12px;
  7190. }
  7191. #u10016 {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:1267px;
  7195. top:213px;
  7196. width:98px;
  7197. height:17px;
  7198. display:flex;
  7199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7200. font-weight:400;
  7201. font-style:normal;
  7202. font-size:12px;
  7203. }
  7204. #u10016 .text {
  7205. position:absolute;
  7206. align-self:center;
  7207. padding:0px 0px 0px 0px;
  7208. box-sizing:border-box;
  7209. width:100%;
  7210. }
  7211. #u10016_text {
  7212. border-width:0px;
  7213. white-space:nowrap;
  7214. text-transform:none;
  7215. }
  7216. #u10017_div {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:0px;
  7221. width:110px;
  7222. height:17px;
  7223. background:inherit;
  7224. background-color:rgba(127, 127, 127, 0);
  7225. border:none;
  7226. border-radius:3px;
  7227. -moz-box-shadow:none;
  7228. -webkit-box-shadow:none;
  7229. box-shadow:none;
  7230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7231. font-weight:400;
  7232. font-style:normal;
  7233. font-size:12px;
  7234. }
  7235. #u10017 {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:1425px;
  7239. top:213px;
  7240. width:110px;
  7241. height:17px;
  7242. display:flex;
  7243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7244. font-weight:400;
  7245. font-style:normal;
  7246. font-size:12px;
  7247. }
  7248. #u10017 .text {
  7249. position:absolute;
  7250. align-self:center;
  7251. padding:0px 0px 0px 0px;
  7252. box-sizing:border-box;
  7253. width:100%;
  7254. }
  7255. #u10017_text {
  7256. border-width:0px;
  7257. white-space:nowrap;
  7258. text-transform:none;
  7259. }
  7260. #u10018 {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:0px;
  7266. height:0px;
  7267. }
  7268. #u10019_div {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:0px;
  7272. top:0px;
  7273. width:600px;
  7274. height:430px;
  7275. background:inherit;
  7276. background-color:rgba(255, 255, 255, 1);
  7277. box-sizing:border-box;
  7278. border-width:1px;
  7279. border-style:solid;
  7280. border-color:rgba(215, 215, 215, 1);
  7281. border-radius:0px;
  7282. -moz-box-shadow:none;
  7283. -webkit-box-shadow:none;
  7284. box-shadow:none;
  7285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7286. font-weight:400;
  7287. font-style:normal;
  7288. font-size:14px;
  7289. color:#AAAAAA;
  7290. text-align:center;
  7291. line-height:30px;
  7292. }
  7293. #u10019 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:989px;
  7297. top:731px;
  7298. width:600px;
  7299. height:430px;
  7300. display:flex;
  7301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. font-size:14px;
  7305. color:#AAAAAA;
  7306. text-align:center;
  7307. line-height:30px;
  7308. }
  7309. #u10019 .text {
  7310. position:absolute;
  7311. align-self:center;
  7312. padding:5px 10px 5px 10px;
  7313. box-sizing:border-box;
  7314. width:100%;
  7315. }
  7316. #u10019_text {
  7317. border-width:0px;
  7318. word-wrap:break-word;
  7319. text-transform:none;
  7320. visibility:hidden;
  7321. }
  7322. #u10020_div {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:0px;
  7326. top:0px;
  7327. width:83px;
  7328. height:35px;
  7329. background:inherit;
  7330. background-color:rgba(255, 255, 255, 0);
  7331. border:none;
  7332. border-top:0px;
  7333. border-right:0px;
  7334. border-bottom:0px;
  7335. border-radius:0px;
  7336. border-top-left-radius:0px;
  7337. border-bottom-left-radius:0px;
  7338. -moz-box-shadow:none;
  7339. -webkit-box-shadow:none;
  7340. box-shadow:none;
  7341. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7342. font-weight:500;
  7343. font-style:normal;
  7344. font-size:18px;
  7345. }
  7346. #u10020 {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:1009px;
  7350. top:749px;
  7351. width:83px;
  7352. height:35px;
  7353. display:flex;
  7354. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7355. font-weight:500;
  7356. font-style:normal;
  7357. font-size:18px;
  7358. }
  7359. #u10020 .text {
  7360. position:absolute;
  7361. align-self:center;
  7362. padding:5px 10px 5px 0px;
  7363. box-sizing:border-box;
  7364. width:100%;
  7365. }
  7366. #u10020_text {
  7367. border-width:0px;
  7368. white-space:nowrap;
  7369. text-transform:none;
  7370. }
  7371. #u10021_div {
  7372. border-width:0px;
  7373. position:absolute;
  7374. left:0px;
  7375. top:0px;
  7376. width:40px;
  7377. height:40px;
  7378. background:inherit;
  7379. background-color:rgba(255, 255, 255, 0);
  7380. border:none;
  7381. border-top:0px;
  7382. border-right:0px;
  7383. border-bottom:0px;
  7384. border-radius:0px;
  7385. border-top-left-radius:0px;
  7386. border-bottom-left-radius:0px;
  7387. -moz-box-shadow:none;
  7388. -webkit-box-shadow:none;
  7389. box-shadow:none;
  7390. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7391. font-weight:500;
  7392. font-style:normal;
  7393. font-size:18px;
  7394. text-align:center;
  7395. }
  7396. #u10021 {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:1549px;
  7400. top:731px;
  7401. width:40px;
  7402. height:40px;
  7403. display:flex;
  7404. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7405. font-weight:500;
  7406. font-style:normal;
  7407. font-size:18px;
  7408. text-align:center;
  7409. }
  7410. #u10021 .text {
  7411. position:absolute;
  7412. align-self:center;
  7413. padding:5px 10px 5px 0px;
  7414. box-sizing:border-box;
  7415. width:100%;
  7416. }
  7417. #u10021_text {
  7418. border-width:0px;
  7419. word-wrap:break-word;
  7420. text-transform:none;
  7421. }
  7422. #u10022_div {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:0px;
  7426. top:0px;
  7427. width:81px;
  7428. height:30px;
  7429. background:inherit;
  7430. background-color:rgba(255, 255, 255, 0);
  7431. border:none;
  7432. border-top:0px;
  7433. border-right:0px;
  7434. border-bottom:0px;
  7435. border-radius:0px;
  7436. border-top-left-radius:0px;
  7437. border-bottom-left-radius:0px;
  7438. -moz-box-shadow:none;
  7439. -webkit-box-shadow:none;
  7440. box-shadow:none;
  7441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7442. font-weight:400;
  7443. font-style:normal;
  7444. font-size:14px;
  7445. color:#7F7F7F;
  7446. }
  7447. #u10022 {
  7448. border-width:0px;
  7449. position:absolute;
  7450. left:1036px;
  7451. top:849px;
  7452. width:81px;
  7453. height:30px;
  7454. display:flex;
  7455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7456. font-weight:400;
  7457. font-style:normal;
  7458. font-size:14px;
  7459. color:#7F7F7F;
  7460. }
  7461. #u10022 .text {
  7462. position:absolute;
  7463. align-self:center;
  7464. padding:5px 10px 5px 0px;
  7465. box-sizing:border-box;
  7466. width:100%;
  7467. }
  7468. #u10022_text {
  7469. border-width:0px;
  7470. white-space:nowrap;
  7471. text-transform:none;
  7472. }
  7473. #u10023 {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:0px;
  7477. top:0px;
  7478. width:0px;
  7479. height:0px;
  7480. }
  7481. #u10024_div {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:0px;
  7485. top:0px;
  7486. width:600px;
  7487. height:50px;
  7488. background:inherit;
  7489. background-color:rgba(255, 255, 255, 1);
  7490. box-sizing:border-box;
  7491. border-width:1px;
  7492. border-style:solid;
  7493. border-color:rgba(215, 215, 215, 1);
  7494. border-radius:0px;
  7495. -moz-box-shadow:none;
  7496. -webkit-box-shadow:none;
  7497. box-shadow:none;
  7498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7499. font-weight:400;
  7500. font-style:normal;
  7501. font-size:14px;
  7502. color:#AAAAAA;
  7503. text-align:center;
  7504. line-height:30px;
  7505. }
  7506. #u10024 {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:989px;
  7510. top:1111px;
  7511. width:600px;
  7512. height:50px;
  7513. display:flex;
  7514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7515. font-weight:400;
  7516. font-style:normal;
  7517. font-size:14px;
  7518. color:#AAAAAA;
  7519. text-align:center;
  7520. line-height:30px;
  7521. }
  7522. #u10024 .text {
  7523. position:absolute;
  7524. align-self:center;
  7525. padding:5px 10px 5px 10px;
  7526. box-sizing:border-box;
  7527. width:100%;
  7528. }
  7529. #u10024_text {
  7530. border-width:0px;
  7531. word-wrap:break-word;
  7532. text-transform:none;
  7533. visibility:hidden;
  7534. }
  7535. #u10025_div {
  7536. border-width:0px;
  7537. position:absolute;
  7538. left:0px;
  7539. top:0px;
  7540. width:80px;
  7541. height:30px;
  7542. background:inherit;
  7543. background-color:rgba(24, 144, 255, 1);
  7544. border:none;
  7545. border-radius:4px;
  7546. -moz-box-shadow:none;
  7547. -webkit-box-shadow:none;
  7548. box-shadow:none;
  7549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7550. font-weight:400;
  7551. font-style:normal;
  7552. font-size:14px;
  7553. color:#FFFFFF;
  7554. }
  7555. #u10025 {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:1478px;
  7559. top:1121px;
  7560. width:80px;
  7561. height:30px;
  7562. display:flex;
  7563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7564. font-weight:400;
  7565. font-style:normal;
  7566. font-size:14px;
  7567. color:#FFFFFF;
  7568. }
  7569. #u10025 .text {
  7570. position:absolute;
  7571. align-self:center;
  7572. padding:2px 2px 2px 2px;
  7573. box-sizing:border-box;
  7574. width:100%;
  7575. }
  7576. #u10025_text {
  7577. border-width:0px;
  7578. word-wrap:break-word;
  7579. text-transform:none;
  7580. }
  7581. #u10026_div {
  7582. border-width:0px;
  7583. position:absolute;
  7584. left:0px;
  7585. top:0px;
  7586. width:80px;
  7587. height:30px;
  7588. background:inherit;
  7589. background-color:rgba(255, 255, 255, 1);
  7590. box-sizing:border-box;
  7591. border-width:1px;
  7592. border-style:solid;
  7593. border-color:rgba(170, 170, 170, 1);
  7594. border-radius:4px;
  7595. -moz-box-shadow:none;
  7596. -webkit-box-shadow:none;
  7597. box-shadow:none;
  7598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7599. font-weight:400;
  7600. font-style:normal;
  7601. font-size:14px;
  7602. }
  7603. #u10026 {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:1378px;
  7607. top:1121px;
  7608. width:80px;
  7609. height:30px;
  7610. display:flex;
  7611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7612. font-weight:400;
  7613. font-style:normal;
  7614. font-size:14px;
  7615. }
  7616. #u10026 .text {
  7617. position:absolute;
  7618. align-self:center;
  7619. padding:2px 2px 2px 2px;
  7620. box-sizing:border-box;
  7621. width:100%;
  7622. }
  7623. #u10026_text {
  7624. border-width:0px;
  7625. word-wrap:break-word;
  7626. text-transform:none;
  7627. }
  7628. #u10027_div {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:0px;
  7632. top:0px;
  7633. width:81px;
  7634. height:30px;
  7635. background:inherit;
  7636. background-color:rgba(255, 255, 255, 0);
  7637. border:none;
  7638. border-top:0px;
  7639. border-right:0px;
  7640. border-bottom:0px;
  7641. border-radius:0px;
  7642. border-top-left-radius:0px;
  7643. border-bottom-left-radius:0px;
  7644. -moz-box-shadow:none;
  7645. -webkit-box-shadow:none;
  7646. box-shadow:none;
  7647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7648. font-weight:400;
  7649. font-style:normal;
  7650. font-size:14px;
  7651. color:#7F7F7F;
  7652. }
  7653. #u10027 {
  7654. border-width:0px;
  7655. position:absolute;
  7656. left:1039px;
  7657. top:889px;
  7658. width:81px;
  7659. height:30px;
  7660. display:flex;
  7661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7662. font-weight:400;
  7663. font-style:normal;
  7664. font-size:14px;
  7665. color:#7F7F7F;
  7666. }
  7667. #u10027 .text {
  7668. position:absolute;
  7669. align-self:center;
  7670. padding:5px 10px 5px 0px;
  7671. box-sizing:border-box;
  7672. width:100%;
  7673. }
  7674. #u10027_text {
  7675. border-width:0px;
  7676. white-space:nowrap;
  7677. text-transform:none;
  7678. }
  7679. #u10028_div {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:0px;
  7683. top:0px;
  7684. width:109px;
  7685. height:30px;
  7686. background:inherit;
  7687. background-color:rgba(255, 255, 255, 0);
  7688. border:none;
  7689. border-top:0px;
  7690. border-right:0px;
  7691. border-bottom:0px;
  7692. border-radius:0px;
  7693. border-top-left-radius:0px;
  7694. border-bottom-left-radius:0px;
  7695. -moz-box-shadow:none;
  7696. -webkit-box-shadow:none;
  7697. box-shadow:none;
  7698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:14px;
  7702. }
  7703. #u10028 {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:1139px;
  7707. top:889px;
  7708. width:109px;
  7709. height:30px;
  7710. display:flex;
  7711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7712. font-weight:400;
  7713. font-style:normal;
  7714. font-size:14px;
  7715. }
  7716. #u10028 .text {
  7717. position:absolute;
  7718. align-self:center;
  7719. padding:5px 10px 5px 0px;
  7720. box-sizing:border-box;
  7721. width:100%;
  7722. }
  7723. #u10028_text {
  7724. border-width:0px;
  7725. white-space:nowrap;
  7726. text-transform:none;
  7727. }
  7728. #u10029_div {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:0px;
  7732. top:0px;
  7733. width:81px;
  7734. height:30px;
  7735. background:inherit;
  7736. background-color:rgba(255, 255, 255, 0);
  7737. border:none;
  7738. border-top:0px;
  7739. border-right:0px;
  7740. border-bottom:0px;
  7741. border-radius:0px;
  7742. border-top-left-radius:0px;
  7743. border-bottom-left-radius:0px;
  7744. -moz-box-shadow:none;
  7745. -webkit-box-shadow:none;
  7746. box-shadow:none;
  7747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7748. font-weight:400;
  7749. font-style:normal;
  7750. font-size:14px;
  7751. }
  7752. #u10029 {
  7753. border-width:0px;
  7754. position:absolute;
  7755. left:1136px;
  7756. top:849px;
  7757. width:81px;
  7758. height:30px;
  7759. display:flex;
  7760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7761. font-weight:400;
  7762. font-style:normal;
  7763. font-size:14px;
  7764. }
  7765. #u10029 .text {
  7766. position:absolute;
  7767. align-self:center;
  7768. padding:5px 10px 5px 0px;
  7769. box-sizing:border-box;
  7770. width:100%;
  7771. }
  7772. #u10029_text {
  7773. border-width:0px;
  7774. white-space:nowrap;
  7775. text-transform:none;
  7776. }
  7777. #u10030_div {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:81px;
  7783. height:30px;
  7784. background:inherit;
  7785. background-color:rgba(255, 255, 255, 0);
  7786. border:none;
  7787. border-top:0px;
  7788. border-right:0px;
  7789. border-bottom:0px;
  7790. border-radius:0px;
  7791. border-top-left-radius:0px;
  7792. border-bottom-left-radius:0px;
  7793. -moz-box-shadow:none;
  7794. -webkit-box-shadow:none;
  7795. box-shadow:none;
  7796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7797. font-weight:400;
  7798. font-style:normal;
  7799. font-size:14px;
  7800. color:#7F7F7F;
  7801. }
  7802. #u10030 {
  7803. border-width:0px;
  7804. position:absolute;
  7805. left:1039px;
  7806. top:969px;
  7807. width:81px;
  7808. height:30px;
  7809. display:flex;
  7810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7811. font-weight:400;
  7812. font-style:normal;
  7813. font-size:14px;
  7814. color:#7F7F7F;
  7815. }
  7816. #u10030 .text {
  7817. position:absolute;
  7818. align-self:center;
  7819. padding:5px 10px 5px 0px;
  7820. box-sizing:border-box;
  7821. width:100%;
  7822. }
  7823. #u10030_text {
  7824. border-width:0px;
  7825. white-space:nowrap;
  7826. text-transform:none;
  7827. }
  7828. #u10031_div {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:0px;
  7832. top:0px;
  7833. width:76px;
  7834. height:30px;
  7835. background:inherit;
  7836. background-color:rgba(255, 255, 255, 0);
  7837. border:none;
  7838. border-top:0px;
  7839. border-right:0px;
  7840. border-bottom:0px;
  7841. border-radius:0px;
  7842. border-top-left-radius:0px;
  7843. border-bottom-left-radius:0px;
  7844. -moz-box-shadow:none;
  7845. -webkit-box-shadow:none;
  7846. box-shadow:none;
  7847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7848. font-weight:400;
  7849. font-style:normal;
  7850. font-size:14px;
  7851. }
  7852. #u10031 {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:1139px;
  7856. top:969px;
  7857. width:76px;
  7858. height:30px;
  7859. display:flex;
  7860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7861. font-weight:400;
  7862. font-style:normal;
  7863. font-size:14px;
  7864. }
  7865. #u10031 .text {
  7866. position:absolute;
  7867. align-self:center;
  7868. padding:5px 10px 5px 0px;
  7869. box-sizing:border-box;
  7870. width:100%;
  7871. }
  7872. #u10031_text {
  7873. border-width:0px;
  7874. white-space:nowrap;
  7875. text-transform:none;
  7876. }
  7877. #u10032_div {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:0px;
  7881. top:0px;
  7882. width:88px;
  7883. height:30px;
  7884. background:inherit;
  7885. background-color:rgba(255, 255, 255, 0);
  7886. border:none;
  7887. border-top:0px;
  7888. border-right:0px;
  7889. border-bottom:0px;
  7890. border-radius:0px;
  7891. border-top-left-radius:0px;
  7892. border-bottom-left-radius:0px;
  7893. -moz-box-shadow:none;
  7894. -webkit-box-shadow:none;
  7895. box-shadow:none;
  7896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7897. font-weight:400;
  7898. font-style:normal;
  7899. font-size:14px;
  7900. color:#7F7F7F;
  7901. }
  7902. #u10032 {
  7903. border-width:0px;
  7904. position:absolute;
  7905. left:1039px;
  7906. top:1014px;
  7907. width:88px;
  7908. height:30px;
  7909. display:flex;
  7910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7911. font-weight:400;
  7912. font-style:normal;
  7913. font-size:14px;
  7914. color:#7F7F7F;
  7915. }
  7916. #u10032 .text {
  7917. position:absolute;
  7918. align-self:center;
  7919. padding:5px 10px 5px 0px;
  7920. box-sizing:border-box;
  7921. width:100%;
  7922. }
  7923. #u10032_text {
  7924. border-width:0px;
  7925. white-space:nowrap;
  7926. text-transform:none;
  7927. }
  7928. #u10033 {
  7929. border-width:0px;
  7930. position:absolute;
  7931. left:0px;
  7932. top:0px;
  7933. width:0px;
  7934. height:0px;
  7935. }
  7936. #u10034_div {
  7937. border-width:0px;
  7938. position:absolute;
  7939. left:0px;
  7940. top:0px;
  7941. width:400px;
  7942. height:40px;
  7943. background:inherit;
  7944. background-color:rgba(255, 255, 255, 1);
  7945. box-sizing:border-box;
  7946. border-width:1px;
  7947. border-style:solid;
  7948. border-color:rgba(215, 215, 215, 1);
  7949. border-radius:4px;
  7950. -moz-box-shadow:none;
  7951. -webkit-box-shadow:none;
  7952. box-shadow:none;
  7953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7954. font-weight:400;
  7955. font-style:normal;
  7956. font-size:14px;
  7957. text-align:right;
  7958. }
  7959. #u10034 {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:1139px;
  7963. top:1009px;
  7964. width:400px;
  7965. height:40px;
  7966. display:flex;
  7967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7968. font-weight:400;
  7969. font-style:normal;
  7970. font-size:14px;
  7971. text-align:right;
  7972. }
  7973. #u10034 .text {
  7974. position:absolute;
  7975. align-self:center;
  7976. padding:2px 2px 2px 2px;
  7977. box-sizing:border-box;
  7978. width:100%;
  7979. }
  7980. #u10034_text {
  7981. border-width:0px;
  7982. word-wrap:break-word;
  7983. text-transform:none;
  7984. }
  7985. #u10035_input {
  7986. position:absolute;
  7987. left:0px;
  7988. top:0px;
  7989. width:346px;
  7990. height:25px;
  7991. padding:2px 2px 2px 2px;
  7992. font-family:'ArialMT', 'Arial', sans-serif;
  7993. font-weight:400;
  7994. font-style:normal;
  7995. font-size:13px;
  7996. letter-spacing:normal;
  7997. color:#000000;
  7998. vertical-align:none;
  7999. text-align:left;
  8000. text-transform:none;
  8001. background-color:transparent;
  8002. border-color:transparent;
  8003. }
  8004. #u10035_input.disabled {
  8005. position:absolute;
  8006. left:0px;
  8007. top:0px;
  8008. width:346px;
  8009. height:25px;
  8010. padding:2px 2px 2px 2px;
  8011. font-family:'ArialMT', 'Arial', sans-serif;
  8012. font-weight:400;
  8013. font-style:normal;
  8014. font-size:13px;
  8015. letter-spacing:normal;
  8016. color:#000000;
  8017. vertical-align:none;
  8018. text-align:left;
  8019. text-transform:none;
  8020. background-color:transparent;
  8021. border-color:transparent;
  8022. }
  8023. #u10035_div {
  8024. border-width:0px;
  8025. position:absolute;
  8026. left:0px;
  8027. top:0px;
  8028. width:346px;
  8029. height:25px;
  8030. background:inherit;
  8031. background-color:rgba(255, 255, 255, 1);
  8032. border:none;
  8033. border-radius:0px;
  8034. -moz-box-shadow:none;
  8035. -webkit-box-shadow:none;
  8036. box-shadow:none;
  8037. }
  8038. #u10035 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:1145px;
  8042. top:1017px;
  8043. width:346px;
  8044. height:25px;
  8045. display:flex;
  8046. }
  8047. #u10035 .text {
  8048. position:absolute;
  8049. align-self:center;
  8050. padding:2px 2px 2px 2px;
  8051. box-sizing:border-box;
  8052. width:100%;
  8053. }
  8054. #u10035_div.disabled {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:0px;
  8058. top:0px;
  8059. width:346px;
  8060. height:25px;
  8061. background:inherit;
  8062. background-color:rgba(240, 240, 240, 1);
  8063. border:none;
  8064. border-radius:0px;
  8065. -moz-box-shadow:none;
  8066. -webkit-box-shadow:none;
  8067. box-shadow:none;
  8068. }
  8069. #u10035.disabled {
  8070. }
  8071. #u10036_div {
  8072. border-width:0px;
  8073. position:absolute;
  8074. left:0px;
  8075. top:0px;
  8076. width:81px;
  8077. height:30px;
  8078. background:inherit;
  8079. background-color:rgba(255, 255, 255, 0);
  8080. border:none;
  8081. border-top:0px;
  8082. border-right:0px;
  8083. border-bottom:0px;
  8084. border-radius:0px;
  8085. border-top-left-radius:0px;
  8086. border-bottom-left-radius:0px;
  8087. -moz-box-shadow:none;
  8088. -webkit-box-shadow:none;
  8089. box-shadow:none;
  8090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8091. font-weight:400;
  8092. font-style:normal;
  8093. font-size:14px;
  8094. color:#7F7F7F;
  8095. }
  8096. #u10036 {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:1039px;
  8100. top:929px;
  8101. width:81px;
  8102. height:30px;
  8103. display:flex;
  8104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8105. font-weight:400;
  8106. font-style:normal;
  8107. font-size:14px;
  8108. color:#7F7F7F;
  8109. }
  8110. #u10036 .text {
  8111. position:absolute;
  8112. align-self:center;
  8113. padding:5px 10px 5px 0px;
  8114. box-sizing:border-box;
  8115. width:100%;
  8116. }
  8117. #u10036_text {
  8118. border-width:0px;
  8119. white-space:nowrap;
  8120. text-transform:none;
  8121. }
  8122. #u10037_div {
  8123. border-width:0px;
  8124. position:absolute;
  8125. left:0px;
  8126. top:0px;
  8127. width:81px;
  8128. height:30px;
  8129. background:inherit;
  8130. background-color:rgba(255, 255, 255, 0);
  8131. border:none;
  8132. border-top:0px;
  8133. border-right:0px;
  8134. border-bottom:0px;
  8135. border-radius:0px;
  8136. border-top-left-radius:0px;
  8137. border-bottom-left-radius:0px;
  8138. -moz-box-shadow:none;
  8139. -webkit-box-shadow:none;
  8140. box-shadow:none;
  8141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8142. font-weight:400;
  8143. font-style:normal;
  8144. font-size:14px;
  8145. }
  8146. #u10037 {
  8147. border-width:0px;
  8148. position:absolute;
  8149. left:1139px;
  8150. top:929px;
  8151. width:81px;
  8152. height:30px;
  8153. display:flex;
  8154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8155. font-weight:400;
  8156. font-style:normal;
  8157. font-size:14px;
  8158. }
  8159. #u10037 .text {
  8160. position:absolute;
  8161. align-self:center;
  8162. padding:5px 10px 5px 0px;
  8163. box-sizing:border-box;
  8164. width:100%;
  8165. }
  8166. #u10037_text {
  8167. border-width:0px;
  8168. white-space:nowrap;
  8169. text-transform:none;
  8170. }
  8171. #u10038_div {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:95px;
  8177. height:30px;
  8178. background:inherit;
  8179. background-color:rgba(255, 255, 255, 0);
  8180. border:none;
  8181. border-top:0px;
  8182. border-right:0px;
  8183. border-bottom:0px;
  8184. border-radius:0px;
  8185. border-top-left-radius:0px;
  8186. border-bottom-left-radius:0px;
  8187. -moz-box-shadow:none;
  8188. -webkit-box-shadow:none;
  8189. box-shadow:none;
  8190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8191. font-weight:400;
  8192. font-style:normal;
  8193. font-size:14px;
  8194. color:#7F7F7F;
  8195. }
  8196. #u10038 {
  8197. border-width:0px;
  8198. position:absolute;
  8199. left:1036px;
  8200. top:809px;
  8201. width:95px;
  8202. height:30px;
  8203. display:flex;
  8204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8205. font-weight:400;
  8206. font-style:normal;
  8207. font-size:14px;
  8208. color:#7F7F7F;
  8209. }
  8210. #u10038 .text {
  8211. position:absolute;
  8212. align-self:center;
  8213. padding:5px 10px 5px 0px;
  8214. box-sizing:border-box;
  8215. width:100%;
  8216. }
  8217. #u10038_text {
  8218. border-width:0px;
  8219. white-space:nowrap;
  8220. text-transform:none;
  8221. }
  8222. #u10039_div {
  8223. border-width:0px;
  8224. position:absolute;
  8225. left:0px;
  8226. top:0px;
  8227. width:151px;
  8228. height:30px;
  8229. background:inherit;
  8230. background-color:rgba(255, 255, 255, 0);
  8231. border:none;
  8232. border-top:0px;
  8233. border-right:0px;
  8234. border-bottom:0px;
  8235. border-radius:0px;
  8236. border-top-left-radius:0px;
  8237. border-bottom-left-radius:0px;
  8238. -moz-box-shadow:none;
  8239. -webkit-box-shadow:none;
  8240. box-shadow:none;
  8241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8242. font-weight:400;
  8243. font-style:normal;
  8244. font-size:14px;
  8245. }
  8246. #u10039 {
  8247. border-width:0px;
  8248. position:absolute;
  8249. left:1136px;
  8250. top:809px;
  8251. width:151px;
  8252. height:30px;
  8253. display:flex;
  8254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8255. font-weight:400;
  8256. font-style:normal;
  8257. font-size:14px;
  8258. }
  8259. #u10039 .text {
  8260. position:absolute;
  8261. align-self:center;
  8262. padding:5px 10px 5px 0px;
  8263. box-sizing:border-box;
  8264. width:100%;
  8265. }
  8266. #u10039_text {
  8267. border-width:0px;
  8268. white-space:nowrap;
  8269. text-transform:none;
  8270. }
  8271. #u10040 {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:0px;
  8275. top:0px;
  8276. width:0px;
  8277. height:0px;
  8278. }
  8279. #u10041_div {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:0px;
  8283. top:0px;
  8284. width:600px;
  8285. height:416px;
  8286. background:inherit;
  8287. background-color:rgba(255, 255, 255, 1);
  8288. box-sizing:border-box;
  8289. border-width:1px;
  8290. border-style:solid;
  8291. border-color:rgba(215, 215, 215, 1);
  8292. border-radius:0px;
  8293. -moz-box-shadow:none;
  8294. -webkit-box-shadow:none;
  8295. box-shadow:none;
  8296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8297. font-weight:400;
  8298. font-style:normal;
  8299. font-size:14px;
  8300. color:#AAAAAA;
  8301. text-align:center;
  8302. line-height:30px;
  8303. }
  8304. #u10041 {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:369px;
  8308. top:731px;
  8309. width:600px;
  8310. height:416px;
  8311. display:flex;
  8312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8313. font-weight:400;
  8314. font-style:normal;
  8315. font-size:14px;
  8316. color:#AAAAAA;
  8317. text-align:center;
  8318. line-height:30px;
  8319. }
  8320. #u10041 .text {
  8321. position:absolute;
  8322. align-self:center;
  8323. padding:5px 10px 5px 10px;
  8324. box-sizing:border-box;
  8325. width:100%;
  8326. }
  8327. #u10041_text {
  8328. border-width:0px;
  8329. word-wrap:break-word;
  8330. text-transform:none;
  8331. visibility:hidden;
  8332. }
  8333. #u10042_div {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:0px;
  8337. top:0px;
  8338. width:83px;
  8339. height:35px;
  8340. background:inherit;
  8341. background-color:rgba(255, 255, 255, 0);
  8342. border:none;
  8343. border-top:0px;
  8344. border-right:0px;
  8345. border-bottom:0px;
  8346. border-radius:0px;
  8347. border-top-left-radius:0px;
  8348. border-bottom-left-radius:0px;
  8349. -moz-box-shadow:none;
  8350. -webkit-box-shadow:none;
  8351. box-shadow:none;
  8352. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8353. font-weight:500;
  8354. font-style:normal;
  8355. font-size:18px;
  8356. }
  8357. #u10042 {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:389px;
  8361. top:749px;
  8362. width:83px;
  8363. height:35px;
  8364. display:flex;
  8365. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8366. font-weight:500;
  8367. font-style:normal;
  8368. font-size:18px;
  8369. }
  8370. #u10042 .text {
  8371. position:absolute;
  8372. align-self:center;
  8373. padding:5px 10px 5px 0px;
  8374. box-sizing:border-box;
  8375. width:100%;
  8376. }
  8377. #u10042_text {
  8378. border-width:0px;
  8379. white-space:nowrap;
  8380. text-transform:none;
  8381. }
  8382. #u10043_div {
  8383. border-width:0px;
  8384. position:absolute;
  8385. left:0px;
  8386. top:0px;
  8387. width:40px;
  8388. height:40px;
  8389. background:inherit;
  8390. background-color:rgba(255, 255, 255, 0);
  8391. border:none;
  8392. border-top:0px;
  8393. border-right:0px;
  8394. border-bottom:0px;
  8395. border-radius:0px;
  8396. border-top-left-radius:0px;
  8397. border-bottom-left-radius:0px;
  8398. -moz-box-shadow:none;
  8399. -webkit-box-shadow:none;
  8400. box-shadow:none;
  8401. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8402. font-weight:500;
  8403. font-style:normal;
  8404. font-size:18px;
  8405. text-align:center;
  8406. }
  8407. #u10043 {
  8408. border-width:0px;
  8409. position:absolute;
  8410. left:929px;
  8411. top:731px;
  8412. width:40px;
  8413. height:40px;
  8414. display:flex;
  8415. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8416. font-weight:500;
  8417. font-style:normal;
  8418. font-size:18px;
  8419. text-align:center;
  8420. }
  8421. #u10043 .text {
  8422. position:absolute;
  8423. align-self:center;
  8424. padding:5px 10px 5px 0px;
  8425. box-sizing:border-box;
  8426. width:100%;
  8427. }
  8428. #u10043_text {
  8429. border-width:0px;
  8430. word-wrap:break-word;
  8431. text-transform:none;
  8432. }
  8433. #u10044_div {
  8434. border-width:0px;
  8435. position:absolute;
  8436. left:0px;
  8437. top:0px;
  8438. width:95px;
  8439. height:30px;
  8440. background:inherit;
  8441. background-color:rgba(255, 255, 255, 0);
  8442. border:none;
  8443. border-top:0px;
  8444. border-right:0px;
  8445. border-bottom:0px;
  8446. border-radius:0px;
  8447. border-top-left-radius:0px;
  8448. border-bottom-left-radius:0px;
  8449. -moz-box-shadow:none;
  8450. -webkit-box-shadow:none;
  8451. box-shadow:none;
  8452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8453. font-weight:400;
  8454. font-style:normal;
  8455. font-size:14px;
  8456. color:#7F7F7F;
  8457. }
  8458. #u10044 {
  8459. border-width:0px;
  8460. position:absolute;
  8461. left:419px;
  8462. top:813px;
  8463. width:95px;
  8464. height:30px;
  8465. display:flex;
  8466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8467. font-weight:400;
  8468. font-style:normal;
  8469. font-size:14px;
  8470. color:#7F7F7F;
  8471. }
  8472. #u10044 .text {
  8473. position:absolute;
  8474. align-self:center;
  8475. padding:5px 10px 5px 0px;
  8476. box-sizing:border-box;
  8477. width:100%;
  8478. }
  8479. #u10044_text {
  8480. border-width:0px;
  8481. white-space:nowrap;
  8482. text-transform:none;
  8483. }
  8484. #u10045 {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:0px;
  8488. top:0px;
  8489. width:0px;
  8490. height:0px;
  8491. }
  8492. #u10046_div {
  8493. border-width:0px;
  8494. position:absolute;
  8495. left:0px;
  8496. top:0px;
  8497. width:600px;
  8498. height:50px;
  8499. background:inherit;
  8500. background-color:rgba(255, 255, 255, 1);
  8501. box-sizing:border-box;
  8502. border-width:1px;
  8503. border-style:solid;
  8504. border-color:rgba(215, 215, 215, 1);
  8505. border-radius:0px;
  8506. -moz-box-shadow:none;
  8507. -webkit-box-shadow:none;
  8508. box-shadow:none;
  8509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8510. font-weight:400;
  8511. font-style:normal;
  8512. font-size:14px;
  8513. color:#AAAAAA;
  8514. text-align:center;
  8515. line-height:30px;
  8516. }
  8517. #u10046 {
  8518. border-width:0px;
  8519. position:absolute;
  8520. left:369px;
  8521. top:1097px;
  8522. width:600px;
  8523. height:50px;
  8524. display:flex;
  8525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8526. font-weight:400;
  8527. font-style:normal;
  8528. font-size:14px;
  8529. color:#AAAAAA;
  8530. text-align:center;
  8531. line-height:30px;
  8532. }
  8533. #u10046 .text {
  8534. position:absolute;
  8535. align-self:center;
  8536. padding:5px 10px 5px 10px;
  8537. box-sizing:border-box;
  8538. width:100%;
  8539. }
  8540. #u10046_text {
  8541. border-width:0px;
  8542. word-wrap:break-word;
  8543. text-transform:none;
  8544. visibility:hidden;
  8545. }
  8546. #u10047_div {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:0px;
  8550. top:0px;
  8551. width:80px;
  8552. height:30px;
  8553. background:inherit;
  8554. background-color:rgba(24, 144, 255, 1);
  8555. border:none;
  8556. border-radius:4px;
  8557. -moz-box-shadow:none;
  8558. -webkit-box-shadow:none;
  8559. box-shadow:none;
  8560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8561. font-weight:400;
  8562. font-style:normal;
  8563. font-size:14px;
  8564. color:#FFFFFF;
  8565. }
  8566. #u10047 {
  8567. border-width:0px;
  8568. position:absolute;
  8569. left:858px;
  8570. top:1107px;
  8571. width:80px;
  8572. height:30px;
  8573. display:flex;
  8574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8575. font-weight:400;
  8576. font-style:normal;
  8577. font-size:14px;
  8578. color:#FFFFFF;
  8579. }
  8580. #u10047 .text {
  8581. position:absolute;
  8582. align-self:center;
  8583. padding:2px 2px 2px 2px;
  8584. box-sizing:border-box;
  8585. width:100%;
  8586. }
  8587. #u10047_text {
  8588. border-width:0px;
  8589. word-wrap:break-word;
  8590. text-transform:none;
  8591. }
  8592. #u10048_div {
  8593. border-width:0px;
  8594. position:absolute;
  8595. left:0px;
  8596. top:0px;
  8597. width:80px;
  8598. height:30px;
  8599. background:inherit;
  8600. background-color:rgba(255, 255, 255, 1);
  8601. box-sizing:border-box;
  8602. border-width:1px;
  8603. border-style:solid;
  8604. border-color:rgba(170, 170, 170, 1);
  8605. border-radius:4px;
  8606. -moz-box-shadow:none;
  8607. -webkit-box-shadow:none;
  8608. box-shadow:none;
  8609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. font-size:14px;
  8613. }
  8614. #u10048 {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:758px;
  8618. top:1107px;
  8619. width:80px;
  8620. height:30px;
  8621. display:flex;
  8622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8623. font-weight:400;
  8624. font-style:normal;
  8625. font-size:14px;
  8626. }
  8627. #u10048 .text {
  8628. position:absolute;
  8629. align-self:center;
  8630. padding:2px 2px 2px 2px;
  8631. box-sizing:border-box;
  8632. width:100%;
  8633. }
  8634. #u10048_text {
  8635. border-width:0px;
  8636. word-wrap:break-word;
  8637. text-transform:none;
  8638. }
  8639. #u10049_div {
  8640. border-width:0px;
  8641. position:absolute;
  8642. left:0px;
  8643. top:0px;
  8644. width:81px;
  8645. height:30px;
  8646. background:inherit;
  8647. background-color:rgba(255, 255, 255, 0);
  8648. border:none;
  8649. border-top:0px;
  8650. border-right:0px;
  8651. border-bottom:0px;
  8652. border-radius:0px;
  8653. border-top-left-radius:0px;
  8654. border-bottom-left-radius:0px;
  8655. -moz-box-shadow:none;
  8656. -webkit-box-shadow:none;
  8657. box-shadow:none;
  8658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8659. font-weight:400;
  8660. font-style:normal;
  8661. font-size:14px;
  8662. color:#7F7F7F;
  8663. }
  8664. #u10049 {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:419px;
  8668. top:893px;
  8669. width:81px;
  8670. height:30px;
  8671. display:flex;
  8672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8673. font-weight:400;
  8674. font-style:normal;
  8675. font-size:14px;
  8676. color:#7F7F7F;
  8677. }
  8678. #u10049 .text {
  8679. position:absolute;
  8680. align-self:center;
  8681. padding:5px 10px 5px 0px;
  8682. box-sizing:border-box;
  8683. width:100%;
  8684. }
  8685. #u10049_text {
  8686. border-width:0px;
  8687. white-space:nowrap;
  8688. text-transform:none;
  8689. }
  8690. #u10050_div {
  8691. border-width:0px;
  8692. position:absolute;
  8693. left:0px;
  8694. top:0px;
  8695. width:151px;
  8696. height:30px;
  8697. background:inherit;
  8698. background-color:rgba(255, 255, 255, 0);
  8699. border:none;
  8700. border-top:0px;
  8701. border-right:0px;
  8702. border-bottom:0px;
  8703. border-radius:0px;
  8704. border-top-left-radius:0px;
  8705. border-bottom-left-radius:0px;
  8706. -moz-box-shadow:none;
  8707. -webkit-box-shadow:none;
  8708. box-shadow:none;
  8709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8710. font-weight:400;
  8711. font-style:normal;
  8712. font-size:14px;
  8713. }
  8714. #u10050 {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:519px;
  8718. top:893px;
  8719. width:151px;
  8720. height:30px;
  8721. display:flex;
  8722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8723. font-weight:400;
  8724. font-style:normal;
  8725. font-size:14px;
  8726. }
  8727. #u10050 .text {
  8728. position:absolute;
  8729. align-self:center;
  8730. padding:5px 10px 5px 0px;
  8731. box-sizing:border-box;
  8732. width:100%;
  8733. }
  8734. #u10050_text {
  8735. border-width:0px;
  8736. white-space:nowrap;
  8737. text-transform:none;
  8738. }
  8739. #u10051_div {
  8740. border-width:0px;
  8741. position:absolute;
  8742. left:0px;
  8743. top:0px;
  8744. width:109px;
  8745. height:30px;
  8746. background:inherit;
  8747. background-color:rgba(255, 255, 255, 0);
  8748. border:none;
  8749. border-top:0px;
  8750. border-right:0px;
  8751. border-bottom:0px;
  8752. border-radius:0px;
  8753. border-top-left-radius:0px;
  8754. border-bottom-left-radius:0px;
  8755. -moz-box-shadow:none;
  8756. -webkit-box-shadow:none;
  8757. box-shadow:none;
  8758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8759. font-weight:400;
  8760. font-style:normal;
  8761. font-size:14px;
  8762. }
  8763. #u10051 {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:519px;
  8767. top:813px;
  8768. width:109px;
  8769. height:30px;
  8770. display:flex;
  8771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8772. font-weight:400;
  8773. font-style:normal;
  8774. font-size:14px;
  8775. }
  8776. #u10051 .text {
  8777. position:absolute;
  8778. align-self:center;
  8779. padding:5px 10px 5px 0px;
  8780. box-sizing:border-box;
  8781. width:100%;
  8782. }
  8783. #u10051_text {
  8784. border-width:0px;
  8785. white-space:nowrap;
  8786. text-transform:none;
  8787. }
  8788. #u10052_div {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:0px;
  8792. top:0px;
  8793. width:81px;
  8794. height:30px;
  8795. background:inherit;
  8796. background-color:rgba(255, 255, 255, 0);
  8797. border:none;
  8798. border-top:0px;
  8799. border-right:0px;
  8800. border-bottom:0px;
  8801. border-radius:0px;
  8802. border-top-left-radius:0px;
  8803. border-bottom-left-radius:0px;
  8804. -moz-box-shadow:none;
  8805. -webkit-box-shadow:none;
  8806. box-shadow:none;
  8807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8808. font-weight:400;
  8809. font-style:normal;
  8810. font-size:14px;
  8811. color:#7F7F7F;
  8812. }
  8813. #u10052 {
  8814. border-width:0px;
  8815. position:absolute;
  8816. left:419px;
  8817. top:933px;
  8818. width:81px;
  8819. height:30px;
  8820. display:flex;
  8821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8822. font-weight:400;
  8823. font-style:normal;
  8824. font-size:14px;
  8825. color:#7F7F7F;
  8826. }
  8827. #u10052 .text {
  8828. position:absolute;
  8829. align-self:center;
  8830. padding:5px 10px 5px 0px;
  8831. box-sizing:border-box;
  8832. width:100%;
  8833. }
  8834. #u10052_text {
  8835. border-width:0px;
  8836. white-space:nowrap;
  8837. text-transform:none;
  8838. }
  8839. #u10053_div {
  8840. border-width:0px;
  8841. position:absolute;
  8842. left:0px;
  8843. top:0px;
  8844. width:81px;
  8845. height:30px;
  8846. background:inherit;
  8847. background-color:rgba(255, 255, 255, 0);
  8848. border:none;
  8849. border-top:0px;
  8850. border-right:0px;
  8851. border-bottom:0px;
  8852. border-radius:0px;
  8853. border-top-left-radius:0px;
  8854. border-bottom-left-radius:0px;
  8855. -moz-box-shadow:none;
  8856. -webkit-box-shadow:none;
  8857. box-shadow:none;
  8858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8859. font-weight:400;
  8860. font-style:normal;
  8861. font-size:14px;
  8862. }
  8863. #u10053 {
  8864. border-width:0px;
  8865. position:absolute;
  8866. left:519px;
  8867. top:933px;
  8868. width:81px;
  8869. height:30px;
  8870. display:flex;
  8871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8872. font-weight:400;
  8873. font-style:normal;
  8874. font-size:14px;
  8875. }
  8876. #u10053 .text {
  8877. position:absolute;
  8878. align-self:center;
  8879. padding:5px 10px 5px 0px;
  8880. box-sizing:border-box;
  8881. width:100%;
  8882. }
  8883. #u10053_text {
  8884. border-width:0px;
  8885. white-space:nowrap;
  8886. text-transform:none;
  8887. }
  8888. #u10054_div {
  8889. border-width:0px;
  8890. position:absolute;
  8891. left:0px;
  8892. top:0px;
  8893. width:88px;
  8894. height:30px;
  8895. background:inherit;
  8896. background-color:rgba(255, 255, 255, 0);
  8897. border:none;
  8898. border-top:0px;
  8899. border-right:0px;
  8900. border-bottom:0px;
  8901. border-radius:0px;
  8902. border-top-left-radius:0px;
  8903. border-bottom-left-radius:0px;
  8904. -moz-box-shadow:none;
  8905. -webkit-box-shadow:none;
  8906. box-shadow:none;
  8907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8908. font-weight:400;
  8909. font-style:normal;
  8910. font-size:14px;
  8911. color:#7F7F7F;
  8912. }
  8913. #u10054 {
  8914. border-width:0px;
  8915. position:absolute;
  8916. left:419px;
  8917. top:1018px;
  8918. width:88px;
  8919. height:30px;
  8920. display:flex;
  8921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8922. font-weight:400;
  8923. font-style:normal;
  8924. font-size:14px;
  8925. color:#7F7F7F;
  8926. }
  8927. #u10054 .text {
  8928. position:absolute;
  8929. align-self:center;
  8930. padding:5px 10px 5px 0px;
  8931. box-sizing:border-box;
  8932. width:100%;
  8933. }
  8934. #u10054_text {
  8935. border-width:0px;
  8936. white-space:nowrap;
  8937. text-transform:none;
  8938. }
  8939. #u10055 {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:0px;
  8943. top:0px;
  8944. width:0px;
  8945. height:0px;
  8946. }
  8947. #u10056_div {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:0px;
  8951. top:0px;
  8952. width:400px;
  8953. height:40px;
  8954. background:inherit;
  8955. background-color:rgba(255, 255, 255, 1);
  8956. box-sizing:border-box;
  8957. border-width:1px;
  8958. border-style:solid;
  8959. border-color:rgba(215, 215, 215, 1);
  8960. border-radius:4px;
  8961. -moz-box-shadow:none;
  8962. -webkit-box-shadow:none;
  8963. box-shadow:none;
  8964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8965. font-weight:400;
  8966. font-style:normal;
  8967. font-size:14px;
  8968. text-align:right;
  8969. }
  8970. #u10056 {
  8971. border-width:0px;
  8972. position:absolute;
  8973. left:519px;
  8974. top:1013px;
  8975. width:400px;
  8976. height:40px;
  8977. display:flex;
  8978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8979. font-weight:400;
  8980. font-style:normal;
  8981. font-size:14px;
  8982. text-align:right;
  8983. }
  8984. #u10056 .text {
  8985. position:absolute;
  8986. align-self:center;
  8987. padding:2px 2px 2px 2px;
  8988. box-sizing:border-box;
  8989. width:100%;
  8990. }
  8991. #u10056_text {
  8992. border-width:0px;
  8993. word-wrap:break-word;
  8994. text-transform:none;
  8995. }
  8996. #u10057_input {
  8997. position:absolute;
  8998. left:0px;
  8999. top:0px;
  9000. width:346px;
  9001. height:25px;
  9002. padding:2px 2px 2px 2px;
  9003. font-family:'ArialMT', 'Arial', sans-serif;
  9004. font-weight:400;
  9005. font-style:normal;
  9006. font-size:13px;
  9007. letter-spacing:normal;
  9008. color:#000000;
  9009. vertical-align:none;
  9010. text-align:left;
  9011. text-transform:none;
  9012. background-color:transparent;
  9013. border-color:transparent;
  9014. }
  9015. #u10057_input.disabled {
  9016. position:absolute;
  9017. left:0px;
  9018. top:0px;
  9019. width:346px;
  9020. height:25px;
  9021. padding:2px 2px 2px 2px;
  9022. font-family:'ArialMT', 'Arial', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:13px;
  9026. letter-spacing:normal;
  9027. color:#000000;
  9028. vertical-align:none;
  9029. text-align:left;
  9030. text-transform:none;
  9031. background-color:transparent;
  9032. border-color:transparent;
  9033. }
  9034. #u10057_div {
  9035. border-width:0px;
  9036. position:absolute;
  9037. left:0px;
  9038. top:0px;
  9039. width:346px;
  9040. height:25px;
  9041. background:inherit;
  9042. background-color:rgba(255, 255, 255, 1);
  9043. border:none;
  9044. border-radius:0px;
  9045. -moz-box-shadow:none;
  9046. -webkit-box-shadow:none;
  9047. box-shadow:none;
  9048. }
  9049. #u10057 {
  9050. border-width:0px;
  9051. position:absolute;
  9052. left:525px;
  9053. top:1021px;
  9054. width:346px;
  9055. height:25px;
  9056. display:flex;
  9057. }
  9058. #u10057 .text {
  9059. position:absolute;
  9060. align-self:center;
  9061. padding:2px 2px 2px 2px;
  9062. box-sizing:border-box;
  9063. width:100%;
  9064. }
  9065. #u10057_div.disabled {
  9066. border-width:0px;
  9067. position:absolute;
  9068. left:0px;
  9069. top:0px;
  9070. width:346px;
  9071. height:25px;
  9072. background:inherit;
  9073. background-color:rgba(240, 240, 240, 1);
  9074. border:none;
  9075. border-radius:0px;
  9076. -moz-box-shadow:none;
  9077. -webkit-box-shadow:none;
  9078. box-shadow:none;
  9079. }
  9080. #u10057.disabled {
  9081. }
  9082. #u10058_div {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:0px;
  9086. top:0px;
  9087. width:81px;
  9088. height:30px;
  9089. background:inherit;
  9090. background-color:rgba(255, 255, 255, 0);
  9091. border:none;
  9092. border-top:0px;
  9093. border-right:0px;
  9094. border-bottom:0px;
  9095. border-radius:0px;
  9096. border-top-left-radius:0px;
  9097. border-bottom-left-radius:0px;
  9098. -moz-box-shadow:none;
  9099. -webkit-box-shadow:none;
  9100. box-shadow:none;
  9101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9102. font-weight:400;
  9103. font-style:normal;
  9104. font-size:14px;
  9105. color:#7F7F7F;
  9106. }
  9107. #u10058 {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:419px;
  9111. top:853px;
  9112. width:81px;
  9113. height:30px;
  9114. display:flex;
  9115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9116. font-weight:400;
  9117. font-style:normal;
  9118. font-size:14px;
  9119. color:#7F7F7F;
  9120. }
  9121. #u10058 .text {
  9122. position:absolute;
  9123. align-self:center;
  9124. padding:5px 10px 5px 0px;
  9125. box-sizing:border-box;
  9126. width:100%;
  9127. }
  9128. #u10058_text {
  9129. border-width:0px;
  9130. white-space:nowrap;
  9131. text-transform:none;
  9132. }
  9133. #u10059_div {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:0px;
  9137. top:0px;
  9138. width:81px;
  9139. height:30px;
  9140. background:inherit;
  9141. background-color:rgba(255, 255, 255, 0);
  9142. border:none;
  9143. border-top:0px;
  9144. border-right:0px;
  9145. border-bottom:0px;
  9146. border-radius:0px;
  9147. border-top-left-radius:0px;
  9148. border-bottom-left-radius:0px;
  9149. -moz-box-shadow:none;
  9150. -webkit-box-shadow:none;
  9151. box-shadow:none;
  9152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9153. font-weight:400;
  9154. font-style:normal;
  9155. font-size:14px;
  9156. }
  9157. #u10059 {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:519px;
  9161. top:853px;
  9162. width:81px;
  9163. height:30px;
  9164. display:flex;
  9165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9166. font-weight:400;
  9167. font-style:normal;
  9168. font-size:14px;
  9169. }
  9170. #u10059 .text {
  9171. position:absolute;
  9172. align-self:center;
  9173. padding:5px 10px 5px 0px;
  9174. box-sizing:border-box;
  9175. width:100%;
  9176. }
  9177. #u10059_text {
  9178. border-width:0px;
  9179. white-space:nowrap;
  9180. text-transform:none;
  9181. }
  9182. #u10060_div {
  9183. border-width:0px;
  9184. position:absolute;
  9185. left:0px;
  9186. top:0px;
  9187. width:81px;
  9188. height:30px;
  9189. background:inherit;
  9190. background-color:rgba(255, 255, 255, 0);
  9191. border:none;
  9192. border-top:0px;
  9193. border-right:0px;
  9194. border-bottom:0px;
  9195. border-radius:0px;
  9196. border-top-left-radius:0px;
  9197. border-bottom-left-radius:0px;
  9198. -moz-box-shadow:none;
  9199. -webkit-box-shadow:none;
  9200. box-shadow:none;
  9201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9202. font-weight:400;
  9203. font-style:normal;
  9204. font-size:14px;
  9205. color:#7F7F7F;
  9206. }
  9207. #u10060 {
  9208. border-width:0px;
  9209. position:absolute;
  9210. left:419px;
  9211. top:973px;
  9212. width:81px;
  9213. height:30px;
  9214. display:flex;
  9215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9216. font-weight:400;
  9217. font-style:normal;
  9218. font-size:14px;
  9219. color:#7F7F7F;
  9220. }
  9221. #u10060 .text {
  9222. position:absolute;
  9223. align-self:center;
  9224. padding:5px 10px 5px 0px;
  9225. box-sizing:border-box;
  9226. width:100%;
  9227. }
  9228. #u10060_text {
  9229. border-width:0px;
  9230. white-space:nowrap;
  9231. text-transform:none;
  9232. }
  9233. #u10061_div {
  9234. border-width:0px;
  9235. position:absolute;
  9236. left:0px;
  9237. top:0px;
  9238. width:76px;
  9239. height:30px;
  9240. background:inherit;
  9241. background-color:rgba(255, 255, 255, 0);
  9242. border:none;
  9243. border-top:0px;
  9244. border-right:0px;
  9245. border-bottom:0px;
  9246. border-radius:0px;
  9247. border-top-left-radius:0px;
  9248. border-bottom-left-radius:0px;
  9249. -moz-box-shadow:none;
  9250. -webkit-box-shadow:none;
  9251. box-shadow:none;
  9252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9253. font-weight:400;
  9254. font-style:normal;
  9255. font-size:14px;
  9256. }
  9257. #u10061 {
  9258. border-width:0px;
  9259. position:absolute;
  9260. left:519px;
  9261. top:973px;
  9262. width:76px;
  9263. height:30px;
  9264. display:flex;
  9265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9266. font-weight:400;
  9267. font-style:normal;
  9268. font-size:14px;
  9269. }
  9270. #u10061 .text {
  9271. position:absolute;
  9272. align-self:center;
  9273. padding:5px 10px 5px 0px;
  9274. box-sizing:border-box;
  9275. width:100%;
  9276. }
  9277. #u10061_text {
  9278. border-width:0px;
  9279. white-space:nowrap;
  9280. text-transform:none;
  9281. }
  9282. #u10062 {
  9283. border-width:0px;
  9284. position:absolute;
  9285. left:0px;
  9286. top:0px;
  9287. width:0px;
  9288. height:0px;
  9289. }
  9290. #u10063_div {
  9291. border-width:0px;
  9292. position:absolute;
  9293. left:0px;
  9294. top:0px;
  9295. width:600px;
  9296. height:336px;
  9297. background:inherit;
  9298. background-color:rgba(255, 255, 255, 1);
  9299. box-sizing:border-box;
  9300. border-width:1px;
  9301. border-style:solid;
  9302. border-color:rgba(215, 215, 215, 1);
  9303. border-radius:0px;
  9304. -moz-box-shadow:none;
  9305. -webkit-box-shadow:none;
  9306. box-shadow:none;
  9307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9308. font-weight:400;
  9309. font-style:normal;
  9310. font-size:14px;
  9311. color:#AAAAAA;
  9312. text-align:center;
  9313. line-height:30px;
  9314. }
  9315. #u10063 {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:1672px;
  9319. top:313px;
  9320. width:600px;
  9321. height:336px;
  9322. display:flex;
  9323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9324. font-weight:400;
  9325. font-style:normal;
  9326. font-size:14px;
  9327. color:#AAAAAA;
  9328. text-align:center;
  9329. line-height:30px;
  9330. }
  9331. #u10063 .text {
  9332. position:absolute;
  9333. align-self:center;
  9334. padding:5px 10px 5px 10px;
  9335. box-sizing:border-box;
  9336. width:100%;
  9337. }
  9338. #u10063_text {
  9339. border-width:0px;
  9340. word-wrap:break-word;
  9341. text-transform:none;
  9342. visibility:hidden;
  9343. }
  9344. #u10064_div {
  9345. border-width:0px;
  9346. position:absolute;
  9347. left:0px;
  9348. top:0px;
  9349. width:101px;
  9350. height:35px;
  9351. background:inherit;
  9352. background-color:rgba(255, 255, 255, 0);
  9353. border:none;
  9354. border-top:0px;
  9355. border-right:0px;
  9356. border-bottom:0px;
  9357. border-radius:0px;
  9358. border-top-left-radius:0px;
  9359. border-bottom-left-radius:0px;
  9360. -moz-box-shadow:none;
  9361. -webkit-box-shadow:none;
  9362. box-shadow:none;
  9363. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9364. font-weight:500;
  9365. font-style:normal;
  9366. font-size:18px;
  9367. }
  9368. #u10064 {
  9369. border-width:0px;
  9370. position:absolute;
  9371. left:1692px;
  9372. top:331px;
  9373. width:101px;
  9374. height:35px;
  9375. display:flex;
  9376. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9377. font-weight:500;
  9378. font-style:normal;
  9379. font-size:18px;
  9380. }
  9381. #u10064 .text {
  9382. position:absolute;
  9383. align-self:center;
  9384. padding:5px 10px 5px 0px;
  9385. box-sizing:border-box;
  9386. width:100%;
  9387. }
  9388. #u10064_text {
  9389. border-width:0px;
  9390. white-space:nowrap;
  9391. text-transform:none;
  9392. }
  9393. #u10065_div {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:0px;
  9397. top:0px;
  9398. width:40px;
  9399. height:40px;
  9400. background:inherit;
  9401. background-color:rgba(255, 255, 255, 0);
  9402. border:none;
  9403. border-top:0px;
  9404. border-right:0px;
  9405. border-bottom:0px;
  9406. border-radius:0px;
  9407. border-top-left-radius:0px;
  9408. border-bottom-left-radius:0px;
  9409. -moz-box-shadow:none;
  9410. -webkit-box-shadow:none;
  9411. box-shadow:none;
  9412. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9413. font-weight:500;
  9414. font-style:normal;
  9415. font-size:18px;
  9416. text-align:center;
  9417. }
  9418. #u10065 {
  9419. border-width:0px;
  9420. position:absolute;
  9421. left:2232px;
  9422. top:313px;
  9423. width:40px;
  9424. height:40px;
  9425. display:flex;
  9426. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9427. font-weight:500;
  9428. font-style:normal;
  9429. font-size:18px;
  9430. text-align:center;
  9431. }
  9432. #u10065 .text {
  9433. position:absolute;
  9434. align-self:center;
  9435. padding:5px 10px 5px 0px;
  9436. box-sizing:border-box;
  9437. width:100%;
  9438. }
  9439. #u10065_text {
  9440. border-width:0px;
  9441. word-wrap:break-word;
  9442. text-transform:none;
  9443. }
  9444. #u10066_div {
  9445. border-width:0px;
  9446. position:absolute;
  9447. left:0px;
  9448. top:0px;
  9449. width:88px;
  9450. height:30px;
  9451. background:inherit;
  9452. background-color:rgba(255, 255, 255, 0);
  9453. border:none;
  9454. border-top:0px;
  9455. border-right:0px;
  9456. border-bottom:0px;
  9457. border-radius:0px;
  9458. border-top-left-radius:0px;
  9459. border-bottom-left-radius:0px;
  9460. -moz-box-shadow:none;
  9461. -webkit-box-shadow:none;
  9462. box-shadow:none;
  9463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9464. font-weight:400;
  9465. font-style:normal;
  9466. font-size:14px;
  9467. color:#7F7F7F;
  9468. }
  9469. #u10066 {
  9470. border-width:0px;
  9471. position:absolute;
  9472. left:1722px;
  9473. top:474px;
  9474. width:88px;
  9475. height:30px;
  9476. display:flex;
  9477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9478. font-weight:400;
  9479. font-style:normal;
  9480. font-size:14px;
  9481. color:#7F7F7F;
  9482. }
  9483. #u10066 .text {
  9484. position:absolute;
  9485. align-self:center;
  9486. padding:5px 10px 5px 0px;
  9487. box-sizing:border-box;
  9488. width:100%;
  9489. }
  9490. #u10066_text {
  9491. border-width:0px;
  9492. white-space:nowrap;
  9493. text-transform:none;
  9494. }
  9495. #u10067_div {
  9496. border-width:0px;
  9497. position:absolute;
  9498. left:0px;
  9499. top:0px;
  9500. width:88px;
  9501. height:30px;
  9502. background:inherit;
  9503. background-color:rgba(255, 255, 255, 0);
  9504. border:none;
  9505. border-top:0px;
  9506. border-right:0px;
  9507. border-bottom:0px;
  9508. border-radius:0px;
  9509. border-top-left-radius:0px;
  9510. border-bottom-left-radius:0px;
  9511. -moz-box-shadow:none;
  9512. -webkit-box-shadow:none;
  9513. box-shadow:none;
  9514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9515. font-weight:400;
  9516. font-style:normal;
  9517. font-size:14px;
  9518. color:#7F7F7F;
  9519. }
  9520. #u10067 {
  9521. border-width:0px;
  9522. position:absolute;
  9523. left:1722px;
  9524. top:434px;
  9525. width:88px;
  9526. height:30px;
  9527. display:flex;
  9528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9529. font-weight:400;
  9530. font-style:normal;
  9531. font-size:14px;
  9532. color:#7F7F7F;
  9533. }
  9534. #u10067 .text {
  9535. position:absolute;
  9536. align-self:center;
  9537. padding:5px 10px 5px 0px;
  9538. box-sizing:border-box;
  9539. width:100%;
  9540. }
  9541. #u10067_text {
  9542. border-width:0px;
  9543. white-space:nowrap;
  9544. text-transform:none;
  9545. }
  9546. #u10068 {
  9547. border-width:0px;
  9548. position:absolute;
  9549. left:0px;
  9550. top:0px;
  9551. width:0px;
  9552. height:0px;
  9553. }
  9554. #u10069_div {
  9555. border-width:0px;
  9556. position:absolute;
  9557. left:0px;
  9558. top:0px;
  9559. width:600px;
  9560. height:50px;
  9561. background:inherit;
  9562. background-color:rgba(255, 255, 255, 1);
  9563. box-sizing:border-box;
  9564. border-width:1px;
  9565. border-style:solid;
  9566. border-color:rgba(215, 215, 215, 1);
  9567. border-radius:0px;
  9568. -moz-box-shadow:none;
  9569. -webkit-box-shadow:none;
  9570. box-shadow:none;
  9571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9572. font-weight:400;
  9573. font-style:normal;
  9574. font-size:14px;
  9575. color:#AAAAAA;
  9576. text-align:center;
  9577. line-height:30px;
  9578. }
  9579. #u10069 {
  9580. border-width:0px;
  9581. position:absolute;
  9582. left:1672px;
  9583. top:599px;
  9584. width:600px;
  9585. height:50px;
  9586. display:flex;
  9587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9588. font-weight:400;
  9589. font-style:normal;
  9590. font-size:14px;
  9591. color:#AAAAAA;
  9592. text-align:center;
  9593. line-height:30px;
  9594. }
  9595. #u10069 .text {
  9596. position:absolute;
  9597. align-self:center;
  9598. padding:5px 10px 5px 10px;
  9599. box-sizing:border-box;
  9600. width:100%;
  9601. }
  9602. #u10069_text {
  9603. border-width:0px;
  9604. word-wrap:break-word;
  9605. text-transform:none;
  9606. visibility:hidden;
  9607. }
  9608. #u10070_div {
  9609. border-width:0px;
  9610. position:absolute;
  9611. left:0px;
  9612. top:0px;
  9613. width:80px;
  9614. height:30px;
  9615. background:inherit;
  9616. background-color:rgba(24, 144, 255, 1);
  9617. border:none;
  9618. border-radius:4px;
  9619. -moz-box-shadow:none;
  9620. -webkit-box-shadow:none;
  9621. box-shadow:none;
  9622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9623. font-weight:400;
  9624. font-style:normal;
  9625. font-size:14px;
  9626. color:#FFFFFF;
  9627. }
  9628. #u10070 {
  9629. border-width:0px;
  9630. position:absolute;
  9631. left:2161px;
  9632. top:609px;
  9633. width:80px;
  9634. height:30px;
  9635. display:flex;
  9636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9637. font-weight:400;
  9638. font-style:normal;
  9639. font-size:14px;
  9640. color:#FFFFFF;
  9641. }
  9642. #u10070 .text {
  9643. position:absolute;
  9644. align-self:center;
  9645. padding:2px 2px 2px 2px;
  9646. box-sizing:border-box;
  9647. width:100%;
  9648. }
  9649. #u10070_text {
  9650. border-width:0px;
  9651. word-wrap:break-word;
  9652. text-transform:none;
  9653. }
  9654. #u10071_div {
  9655. border-width:0px;
  9656. position:absolute;
  9657. left:0px;
  9658. top:0px;
  9659. width:80px;
  9660. height:30px;
  9661. background:inherit;
  9662. background-color:rgba(255, 255, 255, 1);
  9663. box-sizing:border-box;
  9664. border-width:1px;
  9665. border-style:solid;
  9666. border-color:rgba(170, 170, 170, 1);
  9667. border-radius:4px;
  9668. -moz-box-shadow:none;
  9669. -webkit-box-shadow:none;
  9670. box-shadow:none;
  9671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9672. font-weight:400;
  9673. font-style:normal;
  9674. font-size:14px;
  9675. }
  9676. #u10071 {
  9677. border-width:0px;
  9678. position:absolute;
  9679. left:2061px;
  9680. top:609px;
  9681. width:80px;
  9682. height:30px;
  9683. display:flex;
  9684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9685. font-weight:400;
  9686. font-style:normal;
  9687. font-size:14px;
  9688. }
  9689. #u10071 .text {
  9690. position:absolute;
  9691. align-self:center;
  9692. padding:2px 2px 2px 2px;
  9693. box-sizing:border-box;
  9694. width:100%;
  9695. }
  9696. #u10071_text {
  9697. border-width:0px;
  9698. word-wrap:break-word;
  9699. text-transform:none;
  9700. }
  9701. #u10072 label {
  9702. left:0px;
  9703. width:100%;
  9704. }
  9705. #u10072_img {
  9706. border-width:0px;
  9707. position:absolute;
  9708. left:0px;
  9709. top:4px;
  9710. width:12px;
  9711. height:12px;
  9712. }
  9713. #u10072 {
  9714. border-width:0px;
  9715. position:absolute;
  9716. left:1803px;
  9717. top:439px;
  9718. width:206px;
  9719. height:20px;
  9720. display:flex;
  9721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9722. font-weight:400;
  9723. font-style:normal;
  9724. font-size:14px;
  9725. }
  9726. #u10072 .text {
  9727. position:absolute;
  9728. align-self:center;
  9729. padding:0px 2px 0px 2px;
  9730. box-sizing:border-box;
  9731. }
  9732. #u10072_img.selected {
  9733. }
  9734. #u10072.selected {
  9735. }
  9736. #u10072_img.disabled {
  9737. }
  9738. #u10072.disabled {
  9739. }
  9740. #u10072_img.selectedDisabled {
  9741. }
  9742. #u10072.selectedDisabled {
  9743. }
  9744. #u10072_text {
  9745. border-width:0px;
  9746. position:absolute;
  9747. left:14px;
  9748. top:0px;
  9749. width:190px;
  9750. word-wrap:break-word;
  9751. text-transform:none;
  9752. }
  9753. #u10072_input {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:0px;
  9759. height:0px;
  9760. opacity:0;
  9761. }
  9762. #u10073 label {
  9763. left:0px;
  9764. width:100%;
  9765. }
  9766. #u10073_img {
  9767. border-width:0px;
  9768. position:absolute;
  9769. left:0px;
  9770. top:4px;
  9771. width:12px;
  9772. height:12px;
  9773. }
  9774. #u10073 {
  9775. border-width:0px;
  9776. position:absolute;
  9777. left:1944px;
  9778. top:439px;
  9779. width:135px;
  9780. height:20px;
  9781. display:flex;
  9782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9783. font-weight:400;
  9784. font-style:normal;
  9785. font-size:14px;
  9786. }
  9787. #u10073 .text {
  9788. position:absolute;
  9789. align-self:center;
  9790. padding:0px 2px 0px 2px;
  9791. box-sizing:border-box;
  9792. }
  9793. #u10073_img.selected {
  9794. }
  9795. #u10073.selected {
  9796. }
  9797. #u10073_img.disabled {
  9798. }
  9799. #u10073.disabled {
  9800. }
  9801. #u10073_img.selectedDisabled {
  9802. }
  9803. #u10073.selectedDisabled {
  9804. }
  9805. #u10073_text {
  9806. border-width:0px;
  9807. position:absolute;
  9808. left:14px;
  9809. top:0px;
  9810. width:119px;
  9811. word-wrap:break-word;
  9812. text-transform:none;
  9813. }
  9814. #u10073_input {
  9815. border-width:0px;
  9816. position:absolute;
  9817. left:0px;
  9818. top:0px;
  9819. width:0px;
  9820. height:0px;
  9821. opacity:0;
  9822. }
  9823. #u10074_div {
  9824. border-width:0px;
  9825. position:absolute;
  9826. left:0px;
  9827. top:0px;
  9828. width:88px;
  9829. height:30px;
  9830. background:inherit;
  9831. background-color:rgba(255, 255, 255, 0);
  9832. border:none;
  9833. border-top:0px;
  9834. border-right:0px;
  9835. border-bottom:0px;
  9836. border-radius:0px;
  9837. border-top-left-radius:0px;
  9838. border-bottom-left-radius:0px;
  9839. -moz-box-shadow:none;
  9840. -webkit-box-shadow:none;
  9841. box-shadow:none;
  9842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9843. font-weight:400;
  9844. font-style:normal;
  9845. font-size:14px;
  9846. color:#7F7F7F;
  9847. }
  9848. #u10074 {
  9849. border-width:0px;
  9850. position:absolute;
  9851. left:1722px;
  9852. top:524px;
  9853. width:88px;
  9854. height:30px;
  9855. display:flex;
  9856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9857. font-weight:400;
  9858. font-style:normal;
  9859. font-size:14px;
  9860. color:#7F7F7F;
  9861. }
  9862. #u10074 .text {
  9863. position:absolute;
  9864. align-self:center;
  9865. padding:5px 10px 5px 0px;
  9866. box-sizing:border-box;
  9867. width:100%;
  9868. }
  9869. #u10074_text {
  9870. border-width:0px;
  9871. white-space:nowrap;
  9872. text-transform:none;
  9873. }
  9874. #u10075 {
  9875. border-width:0px;
  9876. position:absolute;
  9877. left:0px;
  9878. top:0px;
  9879. width:0px;
  9880. height:0px;
  9881. }
  9882. #u10076_div {
  9883. border-width:0px;
  9884. position:absolute;
  9885. left:0px;
  9886. top:0px;
  9887. width:400px;
  9888. height:40px;
  9889. background:inherit;
  9890. background-color:rgba(255, 255, 255, 1);
  9891. box-sizing:border-box;
  9892. border-width:1px;
  9893. border-style:solid;
  9894. border-color:rgba(215, 215, 215, 1);
  9895. border-radius:4px;
  9896. -moz-box-shadow:none;
  9897. -webkit-box-shadow:none;
  9898. box-shadow:none;
  9899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9900. font-weight:400;
  9901. font-style:normal;
  9902. font-size:14px;
  9903. text-align:right;
  9904. }
  9905. #u10076 {
  9906. border-width:0px;
  9907. position:absolute;
  9908. left:1803px;
  9909. top:519px;
  9910. width:400px;
  9911. height:40px;
  9912. display:flex;
  9913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9914. font-weight:400;
  9915. font-style:normal;
  9916. font-size:14px;
  9917. text-align:right;
  9918. }
  9919. #u10076 .text {
  9920. position:absolute;
  9921. align-self:center;
  9922. padding:2px 2px 2px 2px;
  9923. box-sizing:border-box;
  9924. width:100%;
  9925. }
  9926. #u10076_text {
  9927. border-width:0px;
  9928. word-wrap:break-word;
  9929. text-transform:none;
  9930. }
  9931. #u10077_input {
  9932. position:absolute;
  9933. left:0px;
  9934. top:0px;
  9935. width:346px;
  9936. height:25px;
  9937. padding:2px 2px 2px 2px;
  9938. font-family:'ArialMT', 'Arial', sans-serif;
  9939. font-weight:400;
  9940. font-style:normal;
  9941. font-size:13px;
  9942. letter-spacing:normal;
  9943. color:#000000;
  9944. vertical-align:none;
  9945. text-align:left;
  9946. text-transform:none;
  9947. background-color:transparent;
  9948. border-color:transparent;
  9949. }
  9950. #u10077_input.disabled {
  9951. position:absolute;
  9952. left:0px;
  9953. top:0px;
  9954. width:346px;
  9955. height:25px;
  9956. padding:2px 2px 2px 2px;
  9957. font-family:'ArialMT', 'Arial', sans-serif;
  9958. font-weight:400;
  9959. font-style:normal;
  9960. font-size:13px;
  9961. letter-spacing:normal;
  9962. color:#000000;
  9963. vertical-align:none;
  9964. text-align:left;
  9965. text-transform:none;
  9966. background-color:transparent;
  9967. border-color:transparent;
  9968. }
  9969. #u10077_div {
  9970. border-width:0px;
  9971. position:absolute;
  9972. left:0px;
  9973. top:0px;
  9974. width:346px;
  9975. height:25px;
  9976. background:inherit;
  9977. background-color:rgba(255, 255, 255, 1);
  9978. border:none;
  9979. border-radius:0px;
  9980. -moz-box-shadow:none;
  9981. -webkit-box-shadow:none;
  9982. box-shadow:none;
  9983. }
  9984. #u10077 {
  9985. border-width:0px;
  9986. position:absolute;
  9987. left:1809px;
  9988. top:527px;
  9989. width:346px;
  9990. height:25px;
  9991. display:flex;
  9992. }
  9993. #u10077 .text {
  9994. position:absolute;
  9995. align-self:center;
  9996. padding:2px 2px 2px 2px;
  9997. box-sizing:border-box;
  9998. width:100%;
  9999. }
  10000. #u10077_div.disabled {
  10001. border-width:0px;
  10002. position:absolute;
  10003. left:0px;
  10004. top:0px;
  10005. width:346px;
  10006. height:25px;
  10007. background:inherit;
  10008. background-color:rgba(240, 240, 240, 1);
  10009. border:none;
  10010. border-radius:0px;
  10011. -moz-box-shadow:none;
  10012. -webkit-box-shadow:none;
  10013. box-shadow:none;
  10014. }
  10015. #u10077.disabled {
  10016. }
  10017. #u10078_div {
  10018. border-width:0px;
  10019. position:absolute;
  10020. left:0px;
  10021. top:0px;
  10022. width:81px;
  10023. height:30px;
  10024. background:inherit;
  10025. background-color:rgba(255, 255, 255, 0);
  10026. border:none;
  10027. border-top:0px;
  10028. border-right:0px;
  10029. border-bottom:0px;
  10030. border-radius:0px;
  10031. border-top-left-radius:0px;
  10032. border-bottom-left-radius:0px;
  10033. -moz-box-shadow:none;
  10034. -webkit-box-shadow:none;
  10035. box-shadow:none;
  10036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10037. font-weight:400;
  10038. font-style:normal;
  10039. font-size:14px;
  10040. color:#7F7F7F;
  10041. }
  10042. #u10078 {
  10043. border-width:0px;
  10044. position:absolute;
  10045. left:1722px;
  10046. top:394px;
  10047. width:81px;
  10048. height:30px;
  10049. display:flex;
  10050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10051. font-weight:400;
  10052. font-style:normal;
  10053. font-size:14px;
  10054. color:#7F7F7F;
  10055. }
  10056. #u10078 .text {
  10057. position:absolute;
  10058. align-self:center;
  10059. padding:5px 10px 5px 0px;
  10060. box-sizing:border-box;
  10061. width:100%;
  10062. }
  10063. #u10078_text {
  10064. border-width:0px;
  10065. white-space:nowrap;
  10066. text-transform:none;
  10067. }
  10068. #u10079_div {
  10069. border-width:0px;
  10070. position:absolute;
  10071. left:0px;
  10072. top:0px;
  10073. width:151px;
  10074. height:30px;
  10075. background:inherit;
  10076. background-color:rgba(255, 255, 255, 0);
  10077. border:none;
  10078. border-top:0px;
  10079. border-right:0px;
  10080. border-bottom:0px;
  10081. border-radius:0px;
  10082. border-top-left-radius:0px;
  10083. border-bottom-left-radius:0px;
  10084. -moz-box-shadow:none;
  10085. -webkit-box-shadow:none;
  10086. box-shadow:none;
  10087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10088. font-weight:400;
  10089. font-style:normal;
  10090. font-size:14px;
  10091. }
  10092. #u10079 {
  10093. border-width:0px;
  10094. position:absolute;
  10095. left:1803px;
  10096. top:394px;
  10097. width:151px;
  10098. height:30px;
  10099. display:flex;
  10100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10101. font-weight:400;
  10102. font-style:normal;
  10103. font-size:14px;
  10104. }
  10105. #u10079 .text {
  10106. position:absolute;
  10107. align-self:center;
  10108. padding:5px 10px 5px 0px;
  10109. box-sizing:border-box;
  10110. width:100%;
  10111. }
  10112. #u10079_text {
  10113. border-width:0px;
  10114. white-space:nowrap;
  10115. text-transform:none;
  10116. }
  10117. #u10080 {
  10118. border-width:0px;
  10119. position:absolute;
  10120. left:0px;
  10121. top:0px;
  10122. width:0px;
  10123. height:0px;
  10124. }
  10125. #u10081_div {
  10126. border-width:0px;
  10127. position:absolute;
  10128. left:0px;
  10129. top:0px;
  10130. width:400px;
  10131. height:40px;
  10132. background:inherit;
  10133. background-color:rgba(255, 255, 255, 1);
  10134. box-sizing:border-box;
  10135. border-width:1px;
  10136. border-style:solid;
  10137. border-color:rgba(215, 215, 215, 1);
  10138. border-radius:4px;
  10139. -moz-box-shadow:none;
  10140. -webkit-box-shadow:none;
  10141. box-shadow:none;
  10142. font-size:11px;
  10143. }
  10144. #u10081 {
  10145. border-width:0px;
  10146. position:absolute;
  10147. left:1803px;
  10148. top:469px;
  10149. width:400px;
  10150. height:40px;
  10151. display:flex;
  10152. font-size:11px;
  10153. }
  10154. #u10081 .text {
  10155. position:absolute;
  10156. align-self:center;
  10157. padding:2px 2px 2px 2px;
  10158. box-sizing:border-box;
  10159. width:100%;
  10160. }
  10161. #u10081_text {
  10162. border-width:0px;
  10163. word-wrap:break-word;
  10164. text-transform:none;
  10165. visibility:hidden;
  10166. }
  10167. #u10082_input {
  10168. position:absolute;
  10169. left:0px;
  10170. top:0px;
  10171. width:346px;
  10172. height:25px;
  10173. padding:2px 2px 2px 2px;
  10174. font-family:'ArialMT', 'Arial', sans-serif;
  10175. font-weight:400;
  10176. font-style:normal;
  10177. font-size:13px;
  10178. letter-spacing:normal;
  10179. color:#000000;
  10180. vertical-align:none;
  10181. text-align:left;
  10182. text-transform:none;
  10183. background-color:transparent;
  10184. border-color:transparent;
  10185. }
  10186. #u10082_input.disabled {
  10187. position:absolute;
  10188. left:0px;
  10189. top:0px;
  10190. width:346px;
  10191. height:25px;
  10192. padding:2px 2px 2px 2px;
  10193. font-family:'ArialMT', 'Arial', sans-serif;
  10194. font-weight:400;
  10195. font-style:normal;
  10196. font-size:13px;
  10197. letter-spacing:normal;
  10198. color:#000000;
  10199. vertical-align:none;
  10200. text-align:left;
  10201. text-transform:none;
  10202. background-color:transparent;
  10203. border-color:transparent;
  10204. }
  10205. #u10082_div {
  10206. border-width:0px;
  10207. position:absolute;
  10208. left:0px;
  10209. top:0px;
  10210. width:346px;
  10211. height:25px;
  10212. background:inherit;
  10213. background-color:rgba(255, 255, 255, 1);
  10214. border:none;
  10215. border-radius:0px;
  10216. -moz-box-shadow:none;
  10217. -webkit-box-shadow:none;
  10218. box-shadow:none;
  10219. }
  10220. #u10082 {
  10221. border-width:0px;
  10222. position:absolute;
  10223. left:1809px;
  10224. top:477px;
  10225. width:346px;
  10226. height:25px;
  10227. display:flex;
  10228. }
  10229. #u10082 .text {
  10230. position:absolute;
  10231. align-self:center;
  10232. padding:2px 2px 2px 2px;
  10233. box-sizing:border-box;
  10234. width:100%;
  10235. }
  10236. #u10082_div.disabled {
  10237. border-width:0px;
  10238. position:absolute;
  10239. left:0px;
  10240. top:0px;
  10241. width:346px;
  10242. height:25px;
  10243. background:inherit;
  10244. background-color:rgba(240, 240, 240, 1);
  10245. border:none;
  10246. border-radius:0px;
  10247. -moz-box-shadow:none;
  10248. -webkit-box-shadow:none;
  10249. box-shadow:none;
  10250. }
  10251. #u10082.disabled {
  10252. }
  10253. #u10083 {
  10254. border-width:0px;
  10255. position:absolute;
  10256. left:0px;
  10257. top:0px;
  10258. width:0px;
  10259. height:0px;
  10260. }
  10261. #u10084_div {
  10262. border-width:0px;
  10263. position:absolute;
  10264. left:0px;
  10265. top:0px;
  10266. width:600px;
  10267. height:336px;
  10268. background:inherit;
  10269. background-color:rgba(255, 255, 255, 1);
  10270. box-sizing:border-box;
  10271. border-width:1px;
  10272. border-style:solid;
  10273. border-color:rgba(215, 215, 215, 1);
  10274. border-radius:0px;
  10275. -moz-box-shadow:none;
  10276. -webkit-box-shadow:none;
  10277. box-shadow:none;
  10278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10279. font-weight:400;
  10280. font-style:normal;
  10281. font-size:14px;
  10282. color:#AAAAAA;
  10283. text-align:center;
  10284. line-height:30px;
  10285. }
  10286. #u10084 {
  10287. border-width:0px;
  10288. position:absolute;
  10289. left:1672px;
  10290. top:681px;
  10291. width:600px;
  10292. height:336px;
  10293. display:flex;
  10294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10295. font-weight:400;
  10296. font-style:normal;
  10297. font-size:14px;
  10298. color:#AAAAAA;
  10299. text-align:center;
  10300. line-height:30px;
  10301. }
  10302. #u10084 .text {
  10303. position:absolute;
  10304. align-self:center;
  10305. padding:5px 10px 5px 10px;
  10306. box-sizing:border-box;
  10307. width:100%;
  10308. }
  10309. #u10084_text {
  10310. border-width:0px;
  10311. word-wrap:break-word;
  10312. text-transform:none;
  10313. visibility:hidden;
  10314. }
  10315. #u10085_div {
  10316. border-width:0px;
  10317. position:absolute;
  10318. left:0px;
  10319. top:0px;
  10320. width:101px;
  10321. height:35px;
  10322. background:inherit;
  10323. background-color:rgba(255, 255, 255, 0);
  10324. border:none;
  10325. border-top:0px;
  10326. border-right:0px;
  10327. border-bottom:0px;
  10328. border-radius:0px;
  10329. border-top-left-radius:0px;
  10330. border-bottom-left-radius:0px;
  10331. -moz-box-shadow:none;
  10332. -webkit-box-shadow:none;
  10333. box-shadow:none;
  10334. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10335. font-weight:500;
  10336. font-style:normal;
  10337. font-size:18px;
  10338. }
  10339. #u10085 {
  10340. border-width:0px;
  10341. position:absolute;
  10342. left:1692px;
  10343. top:699px;
  10344. width:101px;
  10345. height:35px;
  10346. display:flex;
  10347. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10348. font-weight:500;
  10349. font-style:normal;
  10350. font-size:18px;
  10351. }
  10352. #u10085 .text {
  10353. position:absolute;
  10354. align-self:center;
  10355. padding:5px 10px 5px 0px;
  10356. box-sizing:border-box;
  10357. width:100%;
  10358. }
  10359. #u10085_text {
  10360. border-width:0px;
  10361. white-space:nowrap;
  10362. text-transform:none;
  10363. }
  10364. #u10086_div {
  10365. border-width:0px;
  10366. position:absolute;
  10367. left:0px;
  10368. top:0px;
  10369. width:40px;
  10370. height:40px;
  10371. background:inherit;
  10372. background-color:rgba(255, 255, 255, 0);
  10373. border:none;
  10374. border-top:0px;
  10375. border-right:0px;
  10376. border-bottom:0px;
  10377. border-radius:0px;
  10378. border-top-left-radius:0px;
  10379. border-bottom-left-radius:0px;
  10380. -moz-box-shadow:none;
  10381. -webkit-box-shadow:none;
  10382. box-shadow:none;
  10383. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10384. font-weight:500;
  10385. font-style:normal;
  10386. font-size:18px;
  10387. text-align:center;
  10388. }
  10389. #u10086 {
  10390. border-width:0px;
  10391. position:absolute;
  10392. left:2232px;
  10393. top:681px;
  10394. width:40px;
  10395. height:40px;
  10396. display:flex;
  10397. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10398. font-weight:500;
  10399. font-style:normal;
  10400. font-size:18px;
  10401. text-align:center;
  10402. }
  10403. #u10086 .text {
  10404. position:absolute;
  10405. align-self:center;
  10406. padding:5px 10px 5px 0px;
  10407. box-sizing:border-box;
  10408. width:100%;
  10409. }
  10410. #u10086_text {
  10411. border-width:0px;
  10412. word-wrap:break-word;
  10413. text-transform:none;
  10414. }
  10415. #u10087_div {
  10416. border-width:0px;
  10417. position:absolute;
  10418. left:0px;
  10419. top:0px;
  10420. width:88px;
  10421. height:30px;
  10422. background:inherit;
  10423. background-color:rgba(255, 255, 255, 0);
  10424. border:none;
  10425. border-top:0px;
  10426. border-right:0px;
  10427. border-bottom:0px;
  10428. border-radius:0px;
  10429. border-top-left-radius:0px;
  10430. border-bottom-left-radius:0px;
  10431. -moz-box-shadow:none;
  10432. -webkit-box-shadow:none;
  10433. box-shadow:none;
  10434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10435. font-weight:400;
  10436. font-style:normal;
  10437. font-size:14px;
  10438. color:#7F7F7F;
  10439. }
  10440. #u10087 {
  10441. border-width:0px;
  10442. position:absolute;
  10443. left:1722px;
  10444. top:842px;
  10445. width:88px;
  10446. height:30px;
  10447. display:flex;
  10448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10449. font-weight:400;
  10450. font-style:normal;
  10451. font-size:14px;
  10452. color:#7F7F7F;
  10453. }
  10454. #u10087 .text {
  10455. position:absolute;
  10456. align-self:center;
  10457. padding:5px 10px 5px 0px;
  10458. box-sizing:border-box;
  10459. width:100%;
  10460. }
  10461. #u10087_text {
  10462. border-width:0px;
  10463. white-space:nowrap;
  10464. text-transform:none;
  10465. }
  10466. #u10088_div {
  10467. border-width:0px;
  10468. position:absolute;
  10469. left:0px;
  10470. top:0px;
  10471. width:88px;
  10472. height:30px;
  10473. background:inherit;
  10474. background-color:rgba(255, 255, 255, 0);
  10475. border:none;
  10476. border-top:0px;
  10477. border-right:0px;
  10478. border-bottom:0px;
  10479. border-radius:0px;
  10480. border-top-left-radius:0px;
  10481. border-bottom-left-radius:0px;
  10482. -moz-box-shadow:none;
  10483. -webkit-box-shadow:none;
  10484. box-shadow:none;
  10485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10486. font-weight:400;
  10487. font-style:normal;
  10488. font-size:14px;
  10489. color:#7F7F7F;
  10490. }
  10491. #u10088 {
  10492. border-width:0px;
  10493. position:absolute;
  10494. left:1722px;
  10495. top:802px;
  10496. width:88px;
  10497. height:30px;
  10498. display:flex;
  10499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10500. font-weight:400;
  10501. font-style:normal;
  10502. font-size:14px;
  10503. color:#7F7F7F;
  10504. }
  10505. #u10088 .text {
  10506. position:absolute;
  10507. align-self:center;
  10508. padding:5px 10px 5px 0px;
  10509. box-sizing:border-box;
  10510. width:100%;
  10511. }
  10512. #u10088_text {
  10513. border-width:0px;
  10514. white-space:nowrap;
  10515. text-transform:none;
  10516. }
  10517. #u10089 {
  10518. border-width:0px;
  10519. position:absolute;
  10520. left:0px;
  10521. top:0px;
  10522. width:0px;
  10523. height:0px;
  10524. }
  10525. #u10090_div {
  10526. border-width:0px;
  10527. position:absolute;
  10528. left:0px;
  10529. top:0px;
  10530. width:600px;
  10531. height:50px;
  10532. background:inherit;
  10533. background-color:rgba(255, 255, 255, 1);
  10534. box-sizing:border-box;
  10535. border-width:1px;
  10536. border-style:solid;
  10537. border-color:rgba(215, 215, 215, 1);
  10538. border-radius:0px;
  10539. -moz-box-shadow:none;
  10540. -webkit-box-shadow:none;
  10541. box-shadow:none;
  10542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10543. font-weight:400;
  10544. font-style:normal;
  10545. font-size:14px;
  10546. color:#AAAAAA;
  10547. text-align:center;
  10548. line-height:30px;
  10549. }
  10550. #u10090 {
  10551. border-width:0px;
  10552. position:absolute;
  10553. left:1672px;
  10554. top:967px;
  10555. width:600px;
  10556. height:50px;
  10557. display:flex;
  10558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10559. font-weight:400;
  10560. font-style:normal;
  10561. font-size:14px;
  10562. color:#AAAAAA;
  10563. text-align:center;
  10564. line-height:30px;
  10565. }
  10566. #u10090 .text {
  10567. position:absolute;
  10568. align-self:center;
  10569. padding:5px 10px 5px 10px;
  10570. box-sizing:border-box;
  10571. width:100%;
  10572. }
  10573. #u10090_text {
  10574. border-width:0px;
  10575. word-wrap:break-word;
  10576. text-transform:none;
  10577. visibility:hidden;
  10578. }
  10579. #u10091_div {
  10580. border-width:0px;
  10581. position:absolute;
  10582. left:0px;
  10583. top:0px;
  10584. width:80px;
  10585. height:30px;
  10586. background:inherit;
  10587. background-color:rgba(24, 144, 255, 1);
  10588. border:none;
  10589. border-radius:4px;
  10590. -moz-box-shadow:none;
  10591. -webkit-box-shadow:none;
  10592. box-shadow:none;
  10593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10594. font-weight:400;
  10595. font-style:normal;
  10596. font-size:14px;
  10597. color:#FFFFFF;
  10598. }
  10599. #u10091 {
  10600. border-width:0px;
  10601. position:absolute;
  10602. left:2161px;
  10603. top:977px;
  10604. width:80px;
  10605. height:30px;
  10606. display:flex;
  10607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10608. font-weight:400;
  10609. font-style:normal;
  10610. font-size:14px;
  10611. color:#FFFFFF;
  10612. }
  10613. #u10091 .text {
  10614. position:absolute;
  10615. align-self:center;
  10616. padding:2px 2px 2px 2px;
  10617. box-sizing:border-box;
  10618. width:100%;
  10619. }
  10620. #u10091_text {
  10621. border-width:0px;
  10622. word-wrap:break-word;
  10623. text-transform:none;
  10624. }
  10625. #u10092_div {
  10626. border-width:0px;
  10627. position:absolute;
  10628. left:0px;
  10629. top:0px;
  10630. width:80px;
  10631. height:30px;
  10632. background:inherit;
  10633. background-color:rgba(255, 255, 255, 1);
  10634. box-sizing:border-box;
  10635. border-width:1px;
  10636. border-style:solid;
  10637. border-color:rgba(170, 170, 170, 1);
  10638. border-radius:4px;
  10639. -moz-box-shadow:none;
  10640. -webkit-box-shadow:none;
  10641. box-shadow:none;
  10642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10643. font-weight:400;
  10644. font-style:normal;
  10645. font-size:14px;
  10646. }
  10647. #u10092 {
  10648. border-width:0px;
  10649. position:absolute;
  10650. left:2061px;
  10651. top:977px;
  10652. width:80px;
  10653. height:30px;
  10654. display:flex;
  10655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10656. font-weight:400;
  10657. font-style:normal;
  10658. font-size:14px;
  10659. }
  10660. #u10092 .text {
  10661. position:absolute;
  10662. align-self:center;
  10663. padding:2px 2px 2px 2px;
  10664. box-sizing:border-box;
  10665. width:100%;
  10666. }
  10667. #u10092_text {
  10668. border-width:0px;
  10669. word-wrap:break-word;
  10670. text-transform:none;
  10671. }
  10672. #u10093 label {
  10673. left:0px;
  10674. width:100%;
  10675. }
  10676. #u10093_img {
  10677. border-width:0px;
  10678. position:absolute;
  10679. left:0px;
  10680. top:4px;
  10681. width:12px;
  10682. height:12px;
  10683. }
  10684. #u10093 {
  10685. border-width:0px;
  10686. position:absolute;
  10687. left:1803px;
  10688. top:807px;
  10689. width:206px;
  10690. height:20px;
  10691. display:flex;
  10692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10693. font-weight:400;
  10694. font-style:normal;
  10695. font-size:14px;
  10696. }
  10697. #u10093 .text {
  10698. position:absolute;
  10699. align-self:center;
  10700. padding:0px 2px 0px 2px;
  10701. box-sizing:border-box;
  10702. }
  10703. #u10093_img.selected {
  10704. }
  10705. #u10093.selected {
  10706. }
  10707. #u10093_img.disabled {
  10708. }
  10709. #u10093.disabled {
  10710. }
  10711. #u10093_img.selectedDisabled {
  10712. }
  10713. #u10093.selectedDisabled {
  10714. }
  10715. #u10093_text {
  10716. border-width:0px;
  10717. position:absolute;
  10718. left:14px;
  10719. top:0px;
  10720. width:190px;
  10721. word-wrap:break-word;
  10722. text-transform:none;
  10723. }
  10724. #u10093_input {
  10725. border-width:0px;
  10726. position:absolute;
  10727. left:0px;
  10728. top:0px;
  10729. width:0px;
  10730. height:0px;
  10731. opacity:0;
  10732. }
  10733. #u10094 label {
  10734. left:0px;
  10735. width:100%;
  10736. }
  10737. #u10094_img {
  10738. border-width:0px;
  10739. position:absolute;
  10740. left:0px;
  10741. top:4px;
  10742. width:12px;
  10743. height:12px;
  10744. }
  10745. #u10094 {
  10746. border-width:0px;
  10747. position:absolute;
  10748. left:1944px;
  10749. top:807px;
  10750. width:135px;
  10751. height:20px;
  10752. display:flex;
  10753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10754. font-weight:400;
  10755. font-style:normal;
  10756. font-size:14px;
  10757. }
  10758. #u10094 .text {
  10759. position:absolute;
  10760. align-self:center;
  10761. padding:0px 2px 0px 2px;
  10762. box-sizing:border-box;
  10763. }
  10764. #u10094_img.selected {
  10765. }
  10766. #u10094.selected {
  10767. }
  10768. #u10094_img.disabled {
  10769. }
  10770. #u10094.disabled {
  10771. }
  10772. #u10094_img.selectedDisabled {
  10773. }
  10774. #u10094.selectedDisabled {
  10775. }
  10776. #u10094_text {
  10777. border-width:0px;
  10778. position:absolute;
  10779. left:14px;
  10780. top:0px;
  10781. width:119px;
  10782. word-wrap:break-word;
  10783. text-transform:none;
  10784. }
  10785. #u10094_input {
  10786. border-width:0px;
  10787. position:absolute;
  10788. left:0px;
  10789. top:0px;
  10790. width:0px;
  10791. height:0px;
  10792. opacity:0;
  10793. }
  10794. #u10095_div {
  10795. border-width:0px;
  10796. position:absolute;
  10797. left:0px;
  10798. top:0px;
  10799. width:88px;
  10800. height:30px;
  10801. background:inherit;
  10802. background-color:rgba(255, 255, 255, 0);
  10803. border:none;
  10804. border-top:0px;
  10805. border-right:0px;
  10806. border-bottom:0px;
  10807. border-radius:0px;
  10808. border-top-left-radius:0px;
  10809. border-bottom-left-radius:0px;
  10810. -moz-box-shadow:none;
  10811. -webkit-box-shadow:none;
  10812. box-shadow:none;
  10813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10814. font-weight:400;
  10815. font-style:normal;
  10816. font-size:14px;
  10817. color:#7F7F7F;
  10818. }
  10819. #u10095 {
  10820. border-width:0px;
  10821. position:absolute;
  10822. left:1722px;
  10823. top:892px;
  10824. width:88px;
  10825. height:30px;
  10826. display:flex;
  10827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10828. font-weight:400;
  10829. font-style:normal;
  10830. font-size:14px;
  10831. color:#7F7F7F;
  10832. }
  10833. #u10095 .text {
  10834. position:absolute;
  10835. align-self:center;
  10836. padding:5px 10px 5px 0px;
  10837. box-sizing:border-box;
  10838. width:100%;
  10839. }
  10840. #u10095_text {
  10841. border-width:0px;
  10842. white-space:nowrap;
  10843. text-transform:none;
  10844. }
  10845. #u10096 {
  10846. border-width:0px;
  10847. position:absolute;
  10848. left:0px;
  10849. top:0px;
  10850. width:0px;
  10851. height:0px;
  10852. }
  10853. #u10097_div {
  10854. border-width:0px;
  10855. position:absolute;
  10856. left:0px;
  10857. top:0px;
  10858. width:400px;
  10859. height:40px;
  10860. background:inherit;
  10861. background-color:rgba(255, 255, 255, 1);
  10862. box-sizing:border-box;
  10863. border-width:1px;
  10864. border-style:solid;
  10865. border-color:rgba(215, 215, 215, 1);
  10866. border-radius:4px;
  10867. -moz-box-shadow:none;
  10868. -webkit-box-shadow:none;
  10869. box-shadow:none;
  10870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10871. font-weight:400;
  10872. font-style:normal;
  10873. font-size:14px;
  10874. text-align:right;
  10875. }
  10876. #u10097 {
  10877. border-width:0px;
  10878. position:absolute;
  10879. left:1803px;
  10880. top:887px;
  10881. width:400px;
  10882. height:40px;
  10883. display:flex;
  10884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10885. font-weight:400;
  10886. font-style:normal;
  10887. font-size:14px;
  10888. text-align:right;
  10889. }
  10890. #u10097 .text {
  10891. position:absolute;
  10892. align-self:center;
  10893. padding:2px 2px 2px 2px;
  10894. box-sizing:border-box;
  10895. width:100%;
  10896. }
  10897. #u10097_text {
  10898. border-width:0px;
  10899. word-wrap:break-word;
  10900. text-transform:none;
  10901. }
  10902. #u10098_input {
  10903. position:absolute;
  10904. left:0px;
  10905. top:0px;
  10906. width:346px;
  10907. height:25px;
  10908. padding:2px 2px 2px 2px;
  10909. font-family:'ArialMT', 'Arial', sans-serif;
  10910. font-weight:400;
  10911. font-style:normal;
  10912. font-size:13px;
  10913. letter-spacing:normal;
  10914. color:#000000;
  10915. vertical-align:none;
  10916. text-align:left;
  10917. text-transform:none;
  10918. background-color:transparent;
  10919. border-color:transparent;
  10920. }
  10921. #u10098_input.disabled {
  10922. position:absolute;
  10923. left:0px;
  10924. top:0px;
  10925. width:346px;
  10926. height:25px;
  10927. padding:2px 2px 2px 2px;
  10928. font-family:'ArialMT', 'Arial', sans-serif;
  10929. font-weight:400;
  10930. font-style:normal;
  10931. font-size:13px;
  10932. letter-spacing:normal;
  10933. color:#000000;
  10934. vertical-align:none;
  10935. text-align:left;
  10936. text-transform:none;
  10937. background-color:transparent;
  10938. border-color:transparent;
  10939. }
  10940. #u10098_div {
  10941. border-width:0px;
  10942. position:absolute;
  10943. left:0px;
  10944. top:0px;
  10945. width:346px;
  10946. height:25px;
  10947. background:inherit;
  10948. background-color:rgba(255, 255, 255, 1);
  10949. border:none;
  10950. border-radius:0px;
  10951. -moz-box-shadow:none;
  10952. -webkit-box-shadow:none;
  10953. box-shadow:none;
  10954. }
  10955. #u10098 {
  10956. border-width:0px;
  10957. position:absolute;
  10958. left:1809px;
  10959. top:895px;
  10960. width:346px;
  10961. height:25px;
  10962. display:flex;
  10963. }
  10964. #u10098 .text {
  10965. position:absolute;
  10966. align-self:center;
  10967. padding:2px 2px 2px 2px;
  10968. box-sizing:border-box;
  10969. width:100%;
  10970. }
  10971. #u10098_div.disabled {
  10972. border-width:0px;
  10973. position:absolute;
  10974. left:0px;
  10975. top:0px;
  10976. width:346px;
  10977. height:25px;
  10978. background:inherit;
  10979. background-color:rgba(240, 240, 240, 1);
  10980. border:none;
  10981. border-radius:0px;
  10982. -moz-box-shadow:none;
  10983. -webkit-box-shadow:none;
  10984. box-shadow:none;
  10985. }
  10986. #u10098.disabled {
  10987. }
  10988. #u10099_div {
  10989. border-width:0px;
  10990. position:absolute;
  10991. left:0px;
  10992. top:0px;
  10993. width:81px;
  10994. height:30px;
  10995. background:inherit;
  10996. background-color:rgba(255, 255, 255, 0);
  10997. border:none;
  10998. border-top:0px;
  10999. border-right:0px;
  11000. border-bottom:0px;
  11001. border-radius:0px;
  11002. border-top-left-radius:0px;
  11003. border-bottom-left-radius:0px;
  11004. -moz-box-shadow:none;
  11005. -webkit-box-shadow:none;
  11006. box-shadow:none;
  11007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11008. font-weight:400;
  11009. font-style:normal;
  11010. font-size:14px;
  11011. color:#7F7F7F;
  11012. }
  11013. #u10099 {
  11014. border-width:0px;
  11015. position:absolute;
  11016. left:1722px;
  11017. top:762px;
  11018. width:81px;
  11019. height:30px;
  11020. display:flex;
  11021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11022. font-weight:400;
  11023. font-style:normal;
  11024. font-size:14px;
  11025. color:#7F7F7F;
  11026. }
  11027. #u10099 .text {
  11028. position:absolute;
  11029. align-self:center;
  11030. padding:5px 10px 5px 0px;
  11031. box-sizing:border-box;
  11032. width:100%;
  11033. }
  11034. #u10099_text {
  11035. border-width:0px;
  11036. white-space:nowrap;
  11037. text-transform:none;
  11038. }
  11039. #u10100_div {
  11040. border-width:0px;
  11041. position:absolute;
  11042. left:0px;
  11043. top:0px;
  11044. width:151px;
  11045. height:30px;
  11046. background:inherit;
  11047. background-color:rgba(255, 255, 255, 0);
  11048. border:none;
  11049. border-top:0px;
  11050. border-right:0px;
  11051. border-bottom:0px;
  11052. border-radius:0px;
  11053. border-top-left-radius:0px;
  11054. border-bottom-left-radius:0px;
  11055. -moz-box-shadow:none;
  11056. -webkit-box-shadow:none;
  11057. box-shadow:none;
  11058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11059. font-weight:400;
  11060. font-style:normal;
  11061. font-size:14px;
  11062. }
  11063. #u10100 {
  11064. border-width:0px;
  11065. position:absolute;
  11066. left:1803px;
  11067. top:762px;
  11068. width:151px;
  11069. height:30px;
  11070. display:flex;
  11071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11072. font-weight:400;
  11073. font-style:normal;
  11074. font-size:14px;
  11075. }
  11076. #u10100 .text {
  11077. position:absolute;
  11078. align-self:center;
  11079. padding:5px 10px 5px 0px;
  11080. box-sizing:border-box;
  11081. width:100%;
  11082. }
  11083. #u10100_text {
  11084. border-width:0px;
  11085. white-space:nowrap;
  11086. text-transform:none;
  11087. }
  11088. #u10101 {
  11089. border-width:0px;
  11090. position:absolute;
  11091. left:0px;
  11092. top:0px;
  11093. width:0px;
  11094. height:0px;
  11095. }
  11096. #u10102_div {
  11097. border-width:0px;
  11098. position:absolute;
  11099. left:0px;
  11100. top:0px;
  11101. width:400px;
  11102. height:40px;
  11103. background:inherit;
  11104. background-color:rgba(255, 255, 255, 1);
  11105. box-sizing:border-box;
  11106. border-width:1px;
  11107. border-style:solid;
  11108. border-color:rgba(215, 215, 215, 1);
  11109. border-radius:4px;
  11110. -moz-box-shadow:none;
  11111. -webkit-box-shadow:none;
  11112. box-shadow:none;
  11113. font-size:11px;
  11114. }
  11115. #u10102 {
  11116. border-width:0px;
  11117. position:absolute;
  11118. left:1803px;
  11119. top:837px;
  11120. width:400px;
  11121. height:40px;
  11122. display:flex;
  11123. font-size:11px;
  11124. }
  11125. #u10102 .text {
  11126. position:absolute;
  11127. align-self:center;
  11128. padding:2px 2px 2px 2px;
  11129. box-sizing:border-box;
  11130. width:100%;
  11131. }
  11132. #u10102_text {
  11133. border-width:0px;
  11134. word-wrap:break-word;
  11135. text-transform:none;
  11136. visibility:hidden;
  11137. }
  11138. #u10103_input {
  11139. position:absolute;
  11140. left:0px;
  11141. top:0px;
  11142. width:346px;
  11143. height:25px;
  11144. padding:2px 2px 2px 2px;
  11145. font-family:'ArialMT', 'Arial', sans-serif;
  11146. font-weight:400;
  11147. font-style:normal;
  11148. font-size:13px;
  11149. letter-spacing:normal;
  11150. color:#000000;
  11151. vertical-align:none;
  11152. text-align:left;
  11153. text-transform:none;
  11154. background-color:transparent;
  11155. border-color:transparent;
  11156. }
  11157. #u10103_input.disabled {
  11158. position:absolute;
  11159. left:0px;
  11160. top:0px;
  11161. width:346px;
  11162. height:25px;
  11163. padding:2px 2px 2px 2px;
  11164. font-family:'ArialMT', 'Arial', sans-serif;
  11165. font-weight:400;
  11166. font-style:normal;
  11167. font-size:13px;
  11168. letter-spacing:normal;
  11169. color:#000000;
  11170. vertical-align:none;
  11171. text-align:left;
  11172. text-transform:none;
  11173. background-color:transparent;
  11174. border-color:transparent;
  11175. }
  11176. #u10103_div {
  11177. border-width:0px;
  11178. position:absolute;
  11179. left:0px;
  11180. top:0px;
  11181. width:346px;
  11182. height:25px;
  11183. background:inherit;
  11184. background-color:rgba(255, 255, 255, 1);
  11185. border:none;
  11186. border-radius:0px;
  11187. -moz-box-shadow:none;
  11188. -webkit-box-shadow:none;
  11189. box-shadow:none;
  11190. }
  11191. #u10103 {
  11192. border-width:0px;
  11193. position:absolute;
  11194. left:1809px;
  11195. top:845px;
  11196. width:346px;
  11197. height:25px;
  11198. display:flex;
  11199. }
  11200. #u10103 .text {
  11201. position:absolute;
  11202. align-self:center;
  11203. padding:2px 2px 2px 2px;
  11204. box-sizing:border-box;
  11205. width:100%;
  11206. }
  11207. #u10103_div.disabled {
  11208. border-width:0px;
  11209. position:absolute;
  11210. left:0px;
  11211. top:0px;
  11212. width:346px;
  11213. height:25px;
  11214. background:inherit;
  11215. background-color:rgba(240, 240, 240, 1);
  11216. border:none;
  11217. border-radius:0px;
  11218. -moz-box-shadow:none;
  11219. -webkit-box-shadow:none;
  11220. box-shadow:none;
  11221. }
  11222. #u10103.disabled {
  11223. }
  11224. #u10104 {
  11225. border-width:0px;
  11226. position:absolute;
  11227. left:0px;
  11228. top:0px;
  11229. width:0px;
  11230. height:0px;
  11231. }
  11232. #u10105_div {
  11233. border-width:0px;
  11234. position:absolute;
  11235. left:0px;
  11236. top:0px;
  11237. width:200px;
  11238. height:1180px;
  11239. background:inherit;
  11240. background-color:rgba(255, 255, 255, 1);
  11241. border:none;
  11242. border-radius:0px;
  11243. -moz-box-shadow:none;
  11244. -webkit-box-shadow:none;
  11245. box-shadow:none;
  11246. }
  11247. #u10105 {
  11248. border-width:0px;
  11249. position:absolute;
  11250. left:120px;
  11251. top:50px;
  11252. width:200px;
  11253. height:1180px;
  11254. display:flex;
  11255. }
  11256. #u10105 .text {
  11257. position:absolute;
  11258. align-self:center;
  11259. padding:2px 2px 2px 2px;
  11260. box-sizing:border-box;
  11261. width:100%;
  11262. }
  11263. #u10105_text {
  11264. border-width:0px;
  11265. word-wrap:break-word;
  11266. text-transform:none;
  11267. visibility:hidden;
  11268. }
  11269. #u10106_div {
  11270. border-width:0px;
  11271. position:absolute;
  11272. left:0px;
  11273. top:0px;
  11274. width:200px;
  11275. height:60px;
  11276. background:inherit;
  11277. background-color:rgba(224, 231, 247, 1);
  11278. border:none;
  11279. border-radius:0px;
  11280. -moz-box-shadow:none;
  11281. -webkit-box-shadow:none;
  11282. box-shadow:none;
  11283. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11284. font-weight:500;
  11285. font-style:normal;
  11286. font-size:18px;
  11287. }
  11288. #u10106 {
  11289. border-width:0px;
  11290. position:absolute;
  11291. left:120px;
  11292. top:50px;
  11293. width:200px;
  11294. height:60px;
  11295. display:flex;
  11296. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11297. font-weight:500;
  11298. font-style:normal;
  11299. font-size:18px;
  11300. }
  11301. #u10106 .text {
  11302. position:absolute;
  11303. align-self:center;
  11304. padding:0px 0px 0px 20px;
  11305. box-sizing:border-box;
  11306. width:100%;
  11307. }
  11308. #u10106_text {
  11309. border-width:0px;
  11310. word-wrap:break-word;
  11311. text-transform:none;
  11312. }
  11313. #u10107_div {
  11314. border-width:0px;
  11315. position:absolute;
  11316. left:0px;
  11317. top:0px;
  11318. width:65px;
  11319. height:22px;
  11320. background:inherit;
  11321. background-color:rgba(255, 255, 255, 0);
  11322. border:none;
  11323. border-radius:0px;
  11324. -moz-box-shadow:none;
  11325. -webkit-box-shadow:none;
  11326. box-shadow:none;
  11327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11328. font-weight:400;
  11329. font-style:normal;
  11330. font-size:16px;
  11331. }
  11332. #u10107 {
  11333. border-width:0px;
  11334. position:absolute;
  11335. left:146px;
  11336. top:350px;
  11337. width:65px;
  11338. height:22px;
  11339. display:flex;
  11340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11341. font-weight:400;
  11342. font-style:normal;
  11343. font-size:16px;
  11344. }
  11345. #u10107 .text {
  11346. position:absolute;
  11347. align-self:flex-start;
  11348. padding:0px 0px 0px 0px;
  11349. box-sizing:border-box;
  11350. width:100%;
  11351. }
  11352. #u10107_text {
  11353. border-width:0px;
  11354. white-space:nowrap;
  11355. text-transform:none;
  11356. }
  11357. #u10108_div {
  11358. border-width:0px;
  11359. position:absolute;
  11360. left:0px;
  11361. top:0px;
  11362. width:65px;
  11363. height:22px;
  11364. background:inherit;
  11365. background-color:rgba(255, 255, 255, 0);
  11366. border:none;
  11367. border-radius:0px;
  11368. -moz-box-shadow:none;
  11369. -webkit-box-shadow:none;
  11370. box-shadow:none;
  11371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11372. font-weight:400;
  11373. font-style:normal;
  11374. font-size:16px;
  11375. }
  11376. #u10108 {
  11377. border-width:0px;
  11378. position:absolute;
  11379. left:146px;
  11380. top:392px;
  11381. width:65px;
  11382. height:22px;
  11383. display:flex;
  11384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11385. font-weight:400;
  11386. font-style:normal;
  11387. font-size:16px;
  11388. }
  11389. #u10108 .text {
  11390. position:absolute;
  11391. align-self:flex-start;
  11392. padding:0px 0px 0px 0px;
  11393. box-sizing:border-box;
  11394. width:100%;
  11395. }
  11396. #u10108_text {
  11397. border-width:0px;
  11398. white-space:nowrap;
  11399. text-transform:none;
  11400. }
  11401. #u10109_div {
  11402. border-width:0px;
  11403. position:absolute;
  11404. left:0px;
  11405. top:0px;
  11406. width:49px;
  11407. height:17px;
  11408. background:inherit;
  11409. background-color:rgba(255, 255, 255, 0);
  11410. border:none;
  11411. border-radius:0px;
  11412. -moz-box-shadow:none;
  11413. -webkit-box-shadow:none;
  11414. box-shadow:none;
  11415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11416. font-weight:400;
  11417. font-style:normal;
  11418. font-size:12px;
  11419. color:#AAAAAA;
  11420. }
  11421. #u10109 {
  11422. border-width:0px;
  11423. position:absolute;
  11424. left:146px;
  11425. top:313px;
  11426. width:49px;
  11427. height:17px;
  11428. display:flex;
  11429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11430. font-weight:400;
  11431. font-style:normal;
  11432. font-size:12px;
  11433. color:#AAAAAA;
  11434. }
  11435. #u10109 .text {
  11436. position:absolute;
  11437. align-self:flex-start;
  11438. padding:0px 0px 0px 0px;
  11439. box-sizing:border-box;
  11440. width:100%;
  11441. }
  11442. #u10109_text {
  11443. border-width:0px;
  11444. white-space:nowrap;
  11445. text-transform:none;
  11446. }
  11447. #u10110_img {
  11448. border-width:0px;
  11449. position:absolute;
  11450. left:0px;
  11451. top:0px;
  11452. width:201px;
  11453. height:2px;
  11454. }
  11455. #u10110 {
  11456. border-width:0px;
  11457. position:absolute;
  11458. left:120px;
  11459. top:293px;
  11460. width:200px;
  11461. height:1px;
  11462. display:flex;
  11463. }
  11464. #u10110 .text {
  11465. position:absolute;
  11466. align-self:center;
  11467. padding:2px 2px 2px 2px;
  11468. box-sizing:border-box;
  11469. width:100%;
  11470. }
  11471. #u10110_text {
  11472. border-width:0px;
  11473. word-wrap:break-word;
  11474. text-transform:none;
  11475. visibility:hidden;
  11476. }
  11477. #u10111_div {
  11478. border-width:0px;
  11479. position:absolute;
  11480. left:0px;
  11481. top:0px;
  11482. width:65px;
  11483. height:22px;
  11484. background:inherit;
  11485. background-color:rgba(255, 255, 255, 0);
  11486. border:none;
  11487. border-radius:0px;
  11488. -moz-box-shadow:none;
  11489. -webkit-box-shadow:none;
  11490. box-shadow:none;
  11491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11492. font-weight:400;
  11493. font-style:normal;
  11494. font-size:16px;
  11495. }
  11496. #u10111 {
  11497. border-width:0px;
  11498. position:absolute;
  11499. left:146px;
  11500. top:167px;
  11501. width:65px;
  11502. height:22px;
  11503. display:flex;
  11504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11505. font-weight:400;
  11506. font-style:normal;
  11507. font-size:16px;
  11508. }
  11509. #u10111 .text {
  11510. position:absolute;
  11511. align-self:flex-start;
  11512. padding:0px 0px 0px 0px;
  11513. box-sizing:border-box;
  11514. width:100%;
  11515. }
  11516. #u10111_text {
  11517. border-width:0px;
  11518. white-space:nowrap;
  11519. text-transform:none;
  11520. }
  11521. #u10112_div {
  11522. border-width:0px;
  11523. position:absolute;
  11524. left:0px;
  11525. top:0px;
  11526. width:65px;
  11527. height:22px;
  11528. background:inherit;
  11529. background-color:rgba(255, 255, 255, 0);
  11530. border:none;
  11531. border-radius:0px;
  11532. -moz-box-shadow:none;
  11533. -webkit-box-shadow:none;
  11534. box-shadow:none;
  11535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11536. font-weight:400;
  11537. font-style:normal;
  11538. font-size:16px;
  11539. }
  11540. #u10112 {
  11541. border-width:0px;
  11542. position:absolute;
  11543. left:146px;
  11544. top:209px;
  11545. width:65px;
  11546. height:22px;
  11547. display:flex;
  11548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11549. font-weight:400;
  11550. font-style:normal;
  11551. font-size:16px;
  11552. }
  11553. #u10112 .text {
  11554. position:absolute;
  11555. align-self:flex-start;
  11556. padding:0px 0px 0px 0px;
  11557. box-sizing:border-box;
  11558. width:100%;
  11559. }
  11560. #u10112_text {
  11561. border-width:0px;
  11562. white-space:nowrap;
  11563. text-transform:none;
  11564. }
  11565. #u10113_div {
  11566. border-width:0px;
  11567. position:absolute;
  11568. left:0px;
  11569. top:0px;
  11570. width:65px;
  11571. height:22px;
  11572. background:inherit;
  11573. background-color:rgba(255, 255, 255, 0);
  11574. border:none;
  11575. border-radius:0px;
  11576. -moz-box-shadow:none;
  11577. -webkit-box-shadow:none;
  11578. box-shadow:none;
  11579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11580. font-weight:400;
  11581. font-style:normal;
  11582. font-size:16px;
  11583. }
  11584. #u10113 {
  11585. border-width:0px;
  11586. position:absolute;
  11587. left:146px;
  11588. top:251px;
  11589. width:65px;
  11590. height:22px;
  11591. display:flex;
  11592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11593. font-weight:400;
  11594. font-style:normal;
  11595. font-size:16px;
  11596. }
  11597. #u10113 .text {
  11598. position:absolute;
  11599. align-self:flex-start;
  11600. padding:0px 0px 0px 0px;
  11601. box-sizing:border-box;
  11602. width:100%;
  11603. }
  11604. #u10113_text {
  11605. border-width:0px;
  11606. white-space:nowrap;
  11607. text-transform:none;
  11608. }
  11609. #u10114_div {
  11610. border-width:0px;
  11611. position:absolute;
  11612. left:0px;
  11613. top:0px;
  11614. width:49px;
  11615. height:17px;
  11616. background:inherit;
  11617. background-color:rgba(255, 255, 255, 0);
  11618. border:none;
  11619. border-radius:0px;
  11620. -moz-box-shadow:none;
  11621. -webkit-box-shadow:none;
  11622. box-shadow:none;
  11623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11624. font-weight:400;
  11625. font-style:normal;
  11626. font-size:12px;
  11627. color:#AAAAAA;
  11628. }
  11629. #u10114 {
  11630. border-width:0px;
  11631. position:absolute;
  11632. left:146px;
  11633. top:130px;
  11634. width:49px;
  11635. height:17px;
  11636. display:flex;
  11637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11638. font-weight:400;
  11639. font-style:normal;
  11640. font-size:12px;
  11641. color:#AAAAAA;
  11642. }
  11643. #u10114 .text {
  11644. position:absolute;
  11645. align-self:flex-start;
  11646. padding:0px 0px 0px 0px;
  11647. box-sizing:border-box;
  11648. width:100%;
  11649. }
  11650. #u10114_text {
  11651. border-width:0px;
  11652. white-space:nowrap;
  11653. text-transform:none;
  11654. }
  11655. #u10115_div {
  11656. border-width:0px;
  11657. position:absolute;
  11658. left:0px;
  11659. top:0px;
  11660. width:65px;
  11661. height:22px;
  11662. background:inherit;
  11663. background-color:rgba(255, 255, 255, 0);
  11664. border:none;
  11665. border-radius:0px;
  11666. -moz-box-shadow:none;
  11667. -webkit-box-shadow:none;
  11668. box-shadow:none;
  11669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11670. font-weight:400;
  11671. font-style:normal;
  11672. font-size:16px;
  11673. }
  11674. #u10115 {
  11675. border-width:0px;
  11676. position:absolute;
  11677. left:146px;
  11678. top:434px;
  11679. width:65px;
  11680. height:22px;
  11681. display:flex;
  11682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11683. font-weight:400;
  11684. font-style:normal;
  11685. font-size:16px;
  11686. }
  11687. #u10115 .text {
  11688. position:absolute;
  11689. align-self:flex-start;
  11690. padding:0px 0px 0px 0px;
  11691. box-sizing:border-box;
  11692. width:100%;
  11693. }
  11694. #u10115_text {
  11695. border-width:0px;
  11696. white-space:nowrap;
  11697. text-transform:none;
  11698. }
  11699. #u10116_div {
  11700. border-width:0px;
  11701. position:absolute;
  11702. left:0px;
  11703. top:0px;
  11704. width:65px;
  11705. height:22px;
  11706. background:inherit;
  11707. background-color:rgba(255, 255, 255, 0);
  11708. border:none;
  11709. border-radius:0px;
  11710. -moz-box-shadow:none;
  11711. -webkit-box-shadow:none;
  11712. box-shadow:none;
  11713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11714. font-weight:400;
  11715. font-style:normal;
  11716. font-size:16px;
  11717. }
  11718. #u10116 {
  11719. border-width:0px;
  11720. position:absolute;
  11721. left:146px;
  11722. top:538px;
  11723. width:65px;
  11724. height:22px;
  11725. display:flex;
  11726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11727. font-weight:400;
  11728. font-style:normal;
  11729. font-size:16px;
  11730. }
  11731. #u10116 .text {
  11732. position:absolute;
  11733. align-self:flex-start;
  11734. padding:0px 0px 0px 0px;
  11735. box-sizing:border-box;
  11736. width:100%;
  11737. }
  11738. #u10116_text {
  11739. border-width:0px;
  11740. white-space:nowrap;
  11741. text-transform:none;
  11742. }
  11743. #u10117_div {
  11744. border-width:0px;
  11745. position:absolute;
  11746. left:0px;
  11747. top:0px;
  11748. width:49px;
  11749. height:17px;
  11750. background:inherit;
  11751. background-color:rgba(255, 255, 255, 0);
  11752. border:none;
  11753. border-radius:0px;
  11754. -moz-box-shadow:none;
  11755. -webkit-box-shadow:none;
  11756. box-shadow:none;
  11757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11758. font-weight:400;
  11759. font-style:normal;
  11760. font-size:12px;
  11761. color:#AAAAAA;
  11762. }
  11763. #u10117 {
  11764. border-width:0px;
  11765. position:absolute;
  11766. left:146px;
  11767. top:501px;
  11768. width:49px;
  11769. height:17px;
  11770. display:flex;
  11771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11772. font-weight:400;
  11773. font-style:normal;
  11774. font-size:12px;
  11775. color:#AAAAAA;
  11776. }
  11777. #u10117 .text {
  11778. position:absolute;
  11779. align-self:flex-start;
  11780. padding:0px 0px 0px 0px;
  11781. box-sizing:border-box;
  11782. width:100%;
  11783. }
  11784. #u10117_text {
  11785. border-width:0px;
  11786. white-space:nowrap;
  11787. text-transform:none;
  11788. }
  11789. #u10118_img {
  11790. border-width:0px;
  11791. position:absolute;
  11792. left:0px;
  11793. top:0px;
  11794. width:201px;
  11795. height:2px;
  11796. }
  11797. #u10118 {
  11798. border-width:0px;
  11799. position:absolute;
  11800. left:120px;
  11801. top:481px;
  11802. width:200px;
  11803. height:1px;
  11804. display:flex;
  11805. }
  11806. #u10118 .text {
  11807. position:absolute;
  11808. align-self:center;
  11809. padding:2px 2px 2px 2px;
  11810. box-sizing:border-box;
  11811. width:100%;
  11812. }
  11813. #u10118_text {
  11814. border-width:0px;
  11815. word-wrap:break-word;
  11816. text-transform:none;
  11817. visibility:hidden;
  11818. }
  11819. #u10119_div {
  11820. border-width:0px;
  11821. position:absolute;
  11822. left:0px;
  11823. top:0px;
  11824. width:65px;
  11825. height:22px;
  11826. background:inherit;
  11827. background-color:rgba(255, 255, 255, 0);
  11828. border:none;
  11829. border-radius:0px;
  11830. -moz-box-shadow:none;
  11831. -webkit-box-shadow:none;
  11832. box-shadow:none;
  11833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11834. font-weight:400;
  11835. font-style:normal;
  11836. font-size:16px;
  11837. }
  11838. #u10119 {
  11839. border-width:0px;
  11840. position:absolute;
  11841. left:146px;
  11842. top:580px;
  11843. width:65px;
  11844. height:22px;
  11845. display:flex;
  11846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11847. font-weight:400;
  11848. font-style:normal;
  11849. font-size:16px;
  11850. }
  11851. #u10119 .text {
  11852. position:absolute;
  11853. align-self:flex-start;
  11854. padding:0px 0px 0px 0px;
  11855. box-sizing:border-box;
  11856. width:100%;
  11857. }
  11858. #u10119_text {
  11859. border-width:0px;
  11860. white-space:nowrap;
  11861. text-transform:none;
  11862. }