styles.css 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u8638_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u8638 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u8638 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u8638_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u8639_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u8639 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u8639 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u8639_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u8640_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u8640 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u8640 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u8640_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u8641 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u8642_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u8642 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u8642 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u8642_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u8643_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u8643 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u8643 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u8643_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u8644_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u8644 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u8644 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u8644_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u8645 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u8646_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. #u8646 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u8646 .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. #u8646_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u8647_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u8647 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u8647 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u8647_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u8648 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u8649_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. #u8649 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u8649 .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. #u8649_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u8650_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u8650 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u8650 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u8650_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u8651 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u8652_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u8652 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u8652 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u8652_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u8653_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u8653 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u8653 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u8653_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u8654 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u8655_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u8655 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u8655 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u8655_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u8656_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u8656 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u8656 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u8656_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u8657 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u8658_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u8658 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u8658 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u8658_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u8659_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u8659 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u8659 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u8659_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u8660 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u8661_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u8661 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u8661 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u8661_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u8662_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u8662 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u8662 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u8662_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u8663 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u8664_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u8664 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u8664 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u8664_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u8665_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u8665 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u8665 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u8665_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u8666 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u8667_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u8667 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u8667 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u8667_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u8668_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u8668 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u8668 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u8668_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u8669 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u8670_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u8670 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u8670 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u8670_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u8671_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u8671 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u8671 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u8671_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u8672 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u8673_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u8673 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u8673 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u8673_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u8674_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u8674 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u8674 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u8674_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u8675 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u8676_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u8676 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u8676 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u8676_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u8677_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u8677 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u8677 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u8677_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u8678 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u8679_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u8679_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u8679_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u8679 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u8679 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u8679_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u8679.disabled {
  1276. }
  1277. .u8679_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u8680_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u8680 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u8680 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u8680_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u8681_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u8681 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u8681 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u8681_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u8682_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u8682 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u8682 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u8682_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u8683 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u8684_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u8684 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u8684 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u8684_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u8685_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u8685 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u8685 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u8685_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u8686_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u8686 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u8686 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u8686_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u8687_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u8687 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u8687 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u8687_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u8688_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u8688 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u8688 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u8688_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u8689 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u8690_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u8690 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u8690 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u8690_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u8691_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u8691 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u8691 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u8691_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u8692_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1256px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:12px;
  1660. color:#FFFFFF;
  1661. text-align:left;
  1662. }
  1663. #u8692 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:331px;
  1667. top:51px;
  1668. width:1256px;
  1669. height:1180px;
  1670. display:flex;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. font-size:12px;
  1675. color:#FFFFFF;
  1676. text-align:left;
  1677. }
  1678. #u8692 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:2px 2px 2px 50px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u8692_text {
  1686. border-width:0px;
  1687. word-wrap:break-word;
  1688. text-transform:none;
  1689. visibility:hidden;
  1690. }
  1691. #u8693_div {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:59px;
  1697. height:30px;
  1698. background:inherit;
  1699. background-color:rgba(41, 143, 255, 1);
  1700. border:none;
  1701. border-radius:4px;
  1702. -moz-box-shadow:none;
  1703. -webkit-box-shadow:none;
  1704. box-shadow:none;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:14px;
  1709. color:#FFFFFF;
  1710. }
  1711. #u8693 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:350px;
  1715. top:192px;
  1716. width:59px;
  1717. height:30px;
  1718. display:flex;
  1719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1720. font-weight:400;
  1721. font-style:normal;
  1722. font-size:14px;
  1723. color:#FFFFFF;
  1724. }
  1725. #u8693 .text {
  1726. position:absolute;
  1727. align-self:center;
  1728. padding:5px 15px 5px 15px;
  1729. box-sizing:border-box;
  1730. width:100%;
  1731. }
  1732. #u8693_text {
  1733. border-width:0px;
  1734. white-space:nowrap;
  1735. text-transform:none;
  1736. }
  1737. #u8694 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:0px;
  1743. height:0px;
  1744. }
  1745. #u8695_div {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:0px;
  1749. top:0px;
  1750. width:59px;
  1751. height:30px;
  1752. background:inherit;
  1753. background-color:rgba(24, 144, 255, 1);
  1754. box-sizing:border-box;
  1755. border-width:1px;
  1756. border-style:solid;
  1757. border-color:rgba(0, 153, 255, 1);
  1758. border-radius:4px;
  1759. -moz-box-shadow:none;
  1760. -webkit-box-shadow:none;
  1761. box-shadow:none;
  1762. font-family:'Microsoft YaHei', sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:14px;
  1766. color:#FFFFFF;
  1767. }
  1768. #u8695 {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:951px;
  1772. top:142px;
  1773. width:59px;
  1774. height:30px;
  1775. display:flex;
  1776. font-family:'Microsoft YaHei', sans-serif;
  1777. font-weight:400;
  1778. font-style:normal;
  1779. font-size:14px;
  1780. color:#FFFFFF;
  1781. }
  1782. #u8695 .text {
  1783. position:absolute;
  1784. align-self:center;
  1785. padding:5px 15px 5px 15px;
  1786. box-sizing:border-box;
  1787. width:100%;
  1788. }
  1789. #u8695_text {
  1790. border-width:0px;
  1791. white-space:nowrap;
  1792. text-transform:none;
  1793. }
  1794. #u8696_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:55px;
  1800. height:30px;
  1801. background:inherit;
  1802. background-color:rgba(255, 255, 255, 1);
  1803. box-sizing:border-box;
  1804. border-width:1px;
  1805. border-style:solid;
  1806. border-color:rgba(170, 170, 170, 1);
  1807. border-radius:4px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:12px;
  1815. color:#555555;
  1816. }
  1817. #u8696 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:1020px;
  1821. top:142px;
  1822. width:55px;
  1823. height:30px;
  1824. display:flex;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:12px;
  1829. color:#555555;
  1830. }
  1831. #u8696 .text {
  1832. position:absolute;
  1833. align-self:center;
  1834. padding:5px 15px 5px 15px;
  1835. box-sizing:border-box;
  1836. width:100%;
  1837. }
  1838. #u8696_text {
  1839. border-width:0px;
  1840. white-space:nowrap;
  1841. text-transform:none;
  1842. }
  1843. #u8697 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:0px;
  1849. height:0px;
  1850. }
  1851. #u8698_div {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:0px;
  1855. top:0px;
  1856. width:140px;
  1857. height:30px;
  1858. background:inherit;
  1859. background-color:rgba(255, 255, 255, 1);
  1860. box-sizing:border-box;
  1861. border-width:1px;
  1862. border-style:solid;
  1863. border-color:rgba(201, 201, 201, 1);
  1864. border-radius:4px;
  1865. -moz-box-shadow:none;
  1866. -webkit-box-shadow:none;
  1867. box-shadow:none;
  1868. font-family:'Microsoft YaHei', sans-serif;
  1869. font-weight:400;
  1870. font-style:normal;
  1871. font-size:14px;
  1872. color:#CCCCCC;
  1873. text-align:left;
  1874. }
  1875. #u8698 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:500px;
  1879. top:142px;
  1880. width:140px;
  1881. height:30px;
  1882. display:flex;
  1883. font-family:'Microsoft YaHei', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:14px;
  1887. color:#CCCCCC;
  1888. text-align:left;
  1889. }
  1890. #u8698 .text {
  1891. position:absolute;
  1892. align-self:center;
  1893. padding:2px 8px 2px 8px;
  1894. box-sizing:border-box;
  1895. width:100%;
  1896. }
  1897. #u8698_text {
  1898. border-width:0px;
  1899. word-wrap:break-word;
  1900. text-transform:none;
  1901. visibility:hidden;
  1902. }
  1903. #u8699_input {
  1904. position:absolute;
  1905. left:0px;
  1906. top:0px;
  1907. width:127px;
  1908. height:25px;
  1909. padding:2px 2px 2px 2px;
  1910. font-family:'Microsoft YaHei', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:10px;
  1914. letter-spacing:normal;
  1915. color:#000000;
  1916. vertical-align:none;
  1917. text-align:left;
  1918. text-transform:none;
  1919. background-color:transparent;
  1920. border-color:transparent;
  1921. }
  1922. #u8699_input.disabled {
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:127px;
  1927. height:25px;
  1928. padding:2px 2px 2px 2px;
  1929. font-family:'Microsoft YaHei', sans-serif;
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:10px;
  1933. letter-spacing:normal;
  1934. color:#000000;
  1935. vertical-align:none;
  1936. text-align:left;
  1937. text-transform:none;
  1938. background-color:transparent;
  1939. border-color:transparent;
  1940. }
  1941. #u8699_div {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:127px;
  1947. height:25px;
  1948. background:inherit;
  1949. background-color:rgba(255, 255, 255, 1);
  1950. border:none;
  1951. border-radius:0px;
  1952. -moz-box-shadow:none;
  1953. -webkit-box-shadow:none;
  1954. box-shadow:none;
  1955. font-family:'Microsoft YaHei', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:10px;
  1959. }
  1960. #u8699 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:508px;
  1964. top:143px;
  1965. width:127px;
  1966. height:25px;
  1967. display:flex;
  1968. font-family:'Microsoft YaHei', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:10px;
  1972. }
  1973. #u8699 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u8699_div.disabled {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:127px;
  1986. height:25px;
  1987. background:inherit;
  1988. background-color:rgba(240, 240, 240, 1);
  1989. border:none;
  1990. border-radius:0px;
  1991. -moz-box-shadow:none;
  1992. -webkit-box-shadow:none;
  1993. box-shadow:none;
  1994. font-family:'Microsoft YaHei', sans-serif;
  1995. font-weight:400;
  1996. font-style:normal;
  1997. font-size:10px;
  1998. }
  1999. #u8699.disabled {
  2000. }
  2001. #u8700 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:0px;
  2007. height:0px;
  2008. }
  2009. #u8701_div {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:140px;
  2015. height:30px;
  2016. background:inherit;
  2017. background-color:rgba(255, 255, 255, 1);
  2018. box-sizing:border-box;
  2019. border-width:1px;
  2020. border-style:solid;
  2021. border-color:rgba(201, 201, 201, 1);
  2022. border-radius:4px;
  2023. -moz-box-shadow:none;
  2024. -webkit-box-shadow:none;
  2025. box-shadow:none;
  2026. font-family:'Microsoft YaHei', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. font-size:14px;
  2030. color:#CCCCCC;
  2031. text-align:left;
  2032. }
  2033. #u8701 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:650px;
  2037. top:142px;
  2038. width:140px;
  2039. height:30px;
  2040. display:flex;
  2041. font-family:'Microsoft YaHei', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:14px;
  2045. color:#CCCCCC;
  2046. text-align:left;
  2047. }
  2048. #u8701 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 8px 2px 8px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u8701_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. visibility:hidden;
  2060. }
  2061. #u8702_input {
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:127px;
  2066. height:25px;
  2067. padding:2px 2px 2px 2px;
  2068. font-family:'Microsoft YaHei', sans-serif;
  2069. font-weight:400;
  2070. font-style:normal;
  2071. font-size:10px;
  2072. letter-spacing:normal;
  2073. color:#000000;
  2074. vertical-align:none;
  2075. text-align:left;
  2076. text-transform:none;
  2077. background-color:transparent;
  2078. border-color:transparent;
  2079. }
  2080. #u8702_input.disabled {
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:127px;
  2085. height:25px;
  2086. padding:2px 2px 2px 2px;
  2087. font-family:'Microsoft YaHei', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:10px;
  2091. letter-spacing:normal;
  2092. color:#000000;
  2093. vertical-align:none;
  2094. text-align:left;
  2095. text-transform:none;
  2096. background-color:transparent;
  2097. border-color:transparent;
  2098. }
  2099. #u8702_div {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:127px;
  2105. height:25px;
  2106. background:inherit;
  2107. background-color:rgba(255, 255, 255, 1);
  2108. border:none;
  2109. border-radius:0px;
  2110. -moz-box-shadow:none;
  2111. -webkit-box-shadow:none;
  2112. box-shadow:none;
  2113. font-family:'Microsoft YaHei', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:10px;
  2117. }
  2118. #u8702 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:658px;
  2122. top:143px;
  2123. width:127px;
  2124. height:25px;
  2125. display:flex;
  2126. font-family:'Microsoft YaHei', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:10px;
  2130. }
  2131. #u8702 .text {
  2132. position:absolute;
  2133. align-self:center;
  2134. padding:2px 2px 2px 2px;
  2135. box-sizing:border-box;
  2136. width:100%;
  2137. }
  2138. #u8702_div.disabled {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:127px;
  2144. height:25px;
  2145. background:inherit;
  2146. background-color:rgba(240, 240, 240, 1);
  2147. border:none;
  2148. border-radius:0px;
  2149. -moz-box-shadow:none;
  2150. -webkit-box-shadow:none;
  2151. box-shadow:none;
  2152. font-family:'Microsoft YaHei', sans-serif;
  2153. font-weight:400;
  2154. font-style:normal;
  2155. font-size:10px;
  2156. }
  2157. #u8702.disabled {
  2158. }
  2159. #u8703_div {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:73px;
  2165. height:50px;
  2166. background:inherit;
  2167. background-color:rgba(255, 255, 255, 0);
  2168. border:none;
  2169. border-left:0px;
  2170. border-top:0px;
  2171. border-right:0px;
  2172. border-radius:0px;
  2173. border-bottom-right-radius:0px;
  2174. border-bottom-left-radius:0px;
  2175. -moz-box-shadow:none;
  2176. -webkit-box-shadow:none;
  2177. box-shadow:none;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:18px;
  2182. }
  2183. #u8703 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:350px;
  2187. top:52px;
  2188. width:73px;
  2189. height:50px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:18px;
  2195. }
  2196. #u8703 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:0px 0px 0px 0px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u8703_text {
  2204. border-width:0px;
  2205. white-space:nowrap;
  2206. text-transform:none;
  2207. }
  2208. #u8704 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:0px;
  2214. height:0px;
  2215. }
  2216. #u8705_div {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:140px;
  2222. height:30px;
  2223. background:inherit;
  2224. background-color:rgba(255, 255, 255, 1);
  2225. box-sizing:border-box;
  2226. border-width:1px;
  2227. border-style:solid;
  2228. border-color:rgba(215, 215, 215, 1);
  2229. border-radius:4px;
  2230. -moz-box-shadow:none;
  2231. -webkit-box-shadow:none;
  2232. box-shadow:none;
  2233. font-size:11px;
  2234. }
  2235. #u8705 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:350px;
  2239. top:142px;
  2240. width:140px;
  2241. height:30px;
  2242. display:flex;
  2243. font-size:11px;
  2244. }
  2245. #u8705 .text {
  2246. position:absolute;
  2247. align-self:center;
  2248. padding:2px 2px 2px 2px;
  2249. box-sizing:border-box;
  2250. width:100%;
  2251. }
  2252. #u8705_text {
  2253. border-width:0px;
  2254. word-wrap:break-word;
  2255. text-transform:none;
  2256. visibility:hidden;
  2257. }
  2258. #u8706_input {
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:126px;
  2263. height:23px;
  2264. padding:2px 2px 2px 2px;
  2265. font-family:'ArialMT', 'Arial', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:11px;
  2269. letter-spacing:normal;
  2270. color:#AAAAAA;
  2271. vertical-align:none;
  2272. text-align:left;
  2273. text-transform:none;
  2274. background-color:transparent;
  2275. border-color:transparent;
  2276. }
  2277. #u8706_input.disabled {
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:126px;
  2282. height:23px;
  2283. padding:2px 2px 2px 2px;
  2284. font-family:'ArialMT', 'Arial', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:11px;
  2288. letter-spacing:normal;
  2289. color:#AAAAAA;
  2290. vertical-align:none;
  2291. text-align:left;
  2292. text-transform:none;
  2293. background-color:transparent;
  2294. border-color:transparent;
  2295. }
  2296. #u8706_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:126px;
  2302. height:23px;
  2303. background:inherit;
  2304. background-color:rgba(255, 255, 255, 1);
  2305. border:none;
  2306. border-radius:0px;
  2307. -moz-box-shadow:none;
  2308. -webkit-box-shadow:none;
  2309. box-shadow:none;
  2310. font-size:11px;
  2311. color:#AAAAAA;
  2312. }
  2313. #u8706 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:357px;
  2317. top:144px;
  2318. width:126px;
  2319. height:23px;
  2320. display:flex;
  2321. font-size:11px;
  2322. color:#AAAAAA;
  2323. }
  2324. #u8706 .text {
  2325. position:absolute;
  2326. align-self:flex-start;
  2327. padding:2px 2px 2px 2px;
  2328. box-sizing:border-box;
  2329. width:100%;
  2330. }
  2331. #u8706_div.disabled {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:126px;
  2337. height:23px;
  2338. background:inherit;
  2339. background-color:rgba(240, 240, 240, 1);
  2340. border:none;
  2341. border-radius:0px;
  2342. -moz-box-shadow:none;
  2343. -webkit-box-shadow:none;
  2344. box-shadow:none;
  2345. font-size:11px;
  2346. color:#AAAAAA;
  2347. }
  2348. #u8706.disabled {
  2349. }
  2350. .u8706_input_option {
  2351. font-size:11px;
  2352. }
  2353. #u8708 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:0px;
  2359. height:0px;
  2360. }
  2361. #u8709_div {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:200px;
  2367. height:1187px;
  2368. background:inherit;
  2369. background-color:rgba(255, 255, 255, 1);
  2370. border:none;
  2371. border-radius:0px;
  2372. -moz-box-shadow:none;
  2373. -webkit-box-shadow:none;
  2374. box-shadow:none;
  2375. }
  2376. #u8709 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:120px;
  2380. top:50px;
  2381. width:200px;
  2382. height:1187px;
  2383. display:flex;
  2384. }
  2385. #u8709 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:2px 2px 2px 2px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u8709_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. visibility:hidden;
  2397. }
  2398. #u8710_div {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:200px;
  2404. height:60px;
  2405. background:inherit;
  2406. background-color:rgba(224, 231, 247, 1);
  2407. border:none;
  2408. border-radius:0px;
  2409. -moz-box-shadow:none;
  2410. -webkit-box-shadow:none;
  2411. box-shadow:none;
  2412. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2413. font-weight:500;
  2414. font-style:normal;
  2415. font-size:18px;
  2416. }
  2417. #u8710 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:120px;
  2421. top:50px;
  2422. width:200px;
  2423. height:60px;
  2424. display:flex;
  2425. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2426. font-weight:500;
  2427. font-style:normal;
  2428. font-size:18px;
  2429. }
  2430. #u8710 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:0px 0px 0px 20px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u8710_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. }
  2442. #u8711_div {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:65px;
  2448. height:22px;
  2449. background:inherit;
  2450. background-color:rgba(255, 255, 255, 0);
  2451. border:none;
  2452. border-radius:0px;
  2453. -moz-box-shadow:none;
  2454. -webkit-box-shadow:none;
  2455. box-shadow:none;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:16px;
  2460. }
  2461. #u8711 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:147px;
  2465. top:204px;
  2466. width:65px;
  2467. height:22px;
  2468. display:flex;
  2469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:16px;
  2473. }
  2474. #u8711 .text {
  2475. position:absolute;
  2476. align-self:flex-start;
  2477. padding:0px 0px 0px 0px;
  2478. box-sizing:border-box;
  2479. width:100%;
  2480. }
  2481. #u8711_text {
  2482. border-width:0px;
  2483. white-space:nowrap;
  2484. text-transform:none;
  2485. }
  2486. #u8712_div {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:49px;
  2492. height:17px;
  2493. background:inherit;
  2494. background-color:rgba(255, 255, 255, 0);
  2495. border:none;
  2496. border-radius:0px;
  2497. -moz-box-shadow:none;
  2498. -webkit-box-shadow:none;
  2499. box-shadow:none;
  2500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2501. font-weight:400;
  2502. font-style:normal;
  2503. font-size:12px;
  2504. color:#AAAAAA;
  2505. }
  2506. #u8712 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:147px;
  2510. top:125px;
  2511. width:49px;
  2512. height:17px;
  2513. display:flex;
  2514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:12px;
  2518. color:#AAAAAA;
  2519. }
  2520. #u8712 .text {
  2521. position:absolute;
  2522. align-self:flex-start;
  2523. padding:0px 0px 0px 0px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u8712_text {
  2528. border-width:0px;
  2529. white-space:nowrap;
  2530. text-transform:none;
  2531. }
  2532. #u8713_div {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:49px;
  2538. height:17px;
  2539. background:inherit;
  2540. background-color:rgba(255, 255, 255, 0);
  2541. border:none;
  2542. border-radius:0px;
  2543. -moz-box-shadow:none;
  2544. -webkit-box-shadow:none;
  2545. box-shadow:none;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. font-size:12px;
  2550. color:#AAAAAA;
  2551. }
  2552. #u8713 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:147px;
  2556. top:461px;
  2557. width:49px;
  2558. height:17px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:12px;
  2564. color:#AAAAAA;
  2565. }
  2566. #u8713 .text {
  2567. position:absolute;
  2568. align-self:flex-start;
  2569. padding:0px 0px 0px 0px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u8713_text {
  2574. border-width:0px;
  2575. white-space:nowrap;
  2576. text-transform:none;
  2577. }
  2578. #u8714_img {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:201px;
  2584. height:2px;
  2585. }
  2586. #u8714 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:120px;
  2590. top:439px;
  2591. width:200px;
  2592. height:1px;
  2593. display:flex;
  2594. }
  2595. #u8714 .text {
  2596. position:absolute;
  2597. align-self:center;
  2598. padding:2px 2px 2px 2px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u8714_text {
  2603. border-width:0px;
  2604. word-wrap:break-word;
  2605. text-transform:none;
  2606. visibility:hidden;
  2607. }
  2608. #u8715_div {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:65px;
  2614. height:22px;
  2615. background:inherit;
  2616. background-color:rgba(255, 255, 255, 0);
  2617. border:none;
  2618. border-radius:0px;
  2619. -moz-box-shadow:none;
  2620. -webkit-box-shadow:none;
  2621. box-shadow:none;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:16px;
  2626. }
  2627. #u8715 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:147px;
  2631. top:349px;
  2632. width:65px;
  2633. height:22px;
  2634. display:flex;
  2635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:16px;
  2639. }
  2640. #u8715 .text {
  2641. position:absolute;
  2642. align-self:flex-start;
  2643. padding:0px 0px 0px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u8715_text {
  2648. border-width:0px;
  2649. white-space:nowrap;
  2650. text-transform:none;
  2651. }
  2652. #u8716_div {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:49px;
  2658. height:17px;
  2659. background:inherit;
  2660. background-color:rgba(255, 255, 255, 0);
  2661. border:none;
  2662. border-radius:0px;
  2663. -moz-box-shadow:none;
  2664. -webkit-box-shadow:none;
  2665. box-shadow:none;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:12px;
  2670. color:#AAAAAA;
  2671. }
  2672. #u8716 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:147px;
  2676. top:265px;
  2677. width:49px;
  2678. height:17px;
  2679. display:flex;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:12px;
  2684. color:#AAAAAA;
  2685. }
  2686. #u8716 .text {
  2687. position:absolute;
  2688. align-self:flex-start;
  2689. padding:0px 0px 0px 0px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u8716_text {
  2694. border-width:0px;
  2695. white-space:nowrap;
  2696. text-transform:none;
  2697. }
  2698. #u8717_img {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:201px;
  2704. height:2px;
  2705. }
  2706. #u8717 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:120px;
  2710. top:243px;
  2711. width:200px;
  2712. height:1px;
  2713. display:flex;
  2714. }
  2715. #u8717 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 2px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u8717_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. visibility:hidden;
  2727. }
  2728. #u8718_div {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:65px;
  2734. height:22px;
  2735. background:inherit;
  2736. background-color:rgba(255, 255, 255, 0);
  2737. border:none;
  2738. border-radius:0px;
  2739. -moz-box-shadow:none;
  2740. -webkit-box-shadow:none;
  2741. box-shadow:none;
  2742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2743. font-weight:400;
  2744. font-style:normal;
  2745. font-size:16px;
  2746. }
  2747. #u8718 {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:147px;
  2751. top:162px;
  2752. width:65px;
  2753. height:22px;
  2754. display:flex;
  2755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2756. font-weight:400;
  2757. font-style:normal;
  2758. font-size:16px;
  2759. }
  2760. #u8718 .text {
  2761. position:absolute;
  2762. align-self:flex-start;
  2763. padding:0px 0px 0px 0px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u8718_text {
  2768. border-width:0px;
  2769. white-space:nowrap;
  2770. text-transform:none;
  2771. }
  2772. #u8719_div {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:65px;
  2778. height:22px;
  2779. background:inherit;
  2780. background-color:rgba(255, 255, 255, 0);
  2781. border:none;
  2782. border-radius:0px;
  2783. -moz-box-shadow:none;
  2784. -webkit-box-shadow:none;
  2785. box-shadow:none;
  2786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:16px;
  2790. }
  2791. #u8719 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:148px;
  2795. top:578px;
  2796. width:65px;
  2797. height:22px;
  2798. display:flex;
  2799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:16px;
  2803. }
  2804. #u8719 .text {
  2805. position:absolute;
  2806. align-self:flex-start;
  2807. padding:0px 0px 0px 0px;
  2808. box-sizing:border-box;
  2809. width:100%;
  2810. }
  2811. #u8719_text {
  2812. border-width:0px;
  2813. white-space:nowrap;
  2814. text-transform:none;
  2815. }
  2816. #u8720_div {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:0px;
  2820. top:0px;
  2821. width:65px;
  2822. height:22px;
  2823. background:inherit;
  2824. background-color:rgba(255, 255, 255, 0);
  2825. border:none;
  2826. border-radius:0px;
  2827. -moz-box-shadow:none;
  2828. -webkit-box-shadow:none;
  2829. box-shadow:none;
  2830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2831. font-weight:400;
  2832. font-style:normal;
  2833. font-size:16px;
  2834. }
  2835. #u8720 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:148px;
  2839. top:536px;
  2840. width:65px;
  2841. height:22px;
  2842. display:flex;
  2843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:16px;
  2847. }
  2848. #u8720 .text {
  2849. position:absolute;
  2850. align-self:flex-start;
  2851. padding:0px 0px 0px 0px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u8720_text {
  2856. border-width:0px;
  2857. white-space:nowrap;
  2858. text-transform:none;
  2859. }
  2860. #u8721_div {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:65px;
  2866. height:22px;
  2867. background:inherit;
  2868. background-color:rgba(255, 255, 255, 0);
  2869. border:none;
  2870. border-radius:0px;
  2871. -moz-box-shadow:none;
  2872. -webkit-box-shadow:none;
  2873. box-shadow:none;
  2874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. font-size:16px;
  2878. }
  2879. #u8721 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:147px;
  2883. top:391px;
  2884. width:65px;
  2885. height:22px;
  2886. display:flex;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:16px;
  2891. }
  2892. #u8721 .text {
  2893. position:absolute;
  2894. align-self:flex-start;
  2895. padding:0px 0px 0px 0px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u8721_text {
  2900. border-width:0px;
  2901. white-space:nowrap;
  2902. text-transform:none;
  2903. }
  2904. #u8722_div {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:65px;
  2910. height:22px;
  2911. background:inherit;
  2912. background-color:rgba(255, 255, 255, 0);
  2913. border:none;
  2914. border-radius:0px;
  2915. -moz-box-shadow:none;
  2916. -webkit-box-shadow:none;
  2917. box-shadow:none;
  2918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2919. font-weight:400;
  2920. font-style:normal;
  2921. font-size:16px;
  2922. }
  2923. #u8722 {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:147px;
  2927. top:305px;
  2928. width:65px;
  2929. height:22px;
  2930. display:flex;
  2931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2932. font-weight:400;
  2933. font-style:normal;
  2934. font-size:16px;
  2935. }
  2936. #u8722 .text {
  2937. position:absolute;
  2938. align-self:flex-start;
  2939. padding:0px 0px 0px 0px;
  2940. box-sizing:border-box;
  2941. width:100%;
  2942. }
  2943. #u8722_text {
  2944. border-width:0px;
  2945. white-space:nowrap;
  2946. text-transform:none;
  2947. }
  2948. #u8723_div {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:65px;
  2954. height:22px;
  2955. background:inherit;
  2956. background-color:rgba(255, 255, 255, 0);
  2957. border:none;
  2958. border-radius:0px;
  2959. -moz-box-shadow:none;
  2960. -webkit-box-shadow:none;
  2961. box-shadow:none;
  2962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:16px;
  2966. }
  2967. #u8723 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:147px;
  2971. top:498px;
  2972. width:65px;
  2973. height:22px;
  2974. display:flex;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:16px;
  2979. }
  2980. #u8723 .text {
  2981. position:absolute;
  2982. align-self:flex-start;
  2983. padding:0px 0px 0px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u8723_text {
  2988. border-width:0px;
  2989. white-space:nowrap;
  2990. text-transform:none;
  2991. }
  2992. #u8724_div {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:827px;
  2998. height:20px;
  2999. background:inherit;
  3000. background-color:rgba(255, 255, 255, 0);
  3001. border:none;
  3002. border-left:0px;
  3003. border-top:0px;
  3004. border-right:0px;
  3005. border-radius:0px;
  3006. border-bottom-right-radius:0px;
  3007. border-bottom-left-radius:0px;
  3008. -moz-box-shadow:none;
  3009. -webkit-box-shadow:none;
  3010. box-shadow:none;
  3011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:14px;
  3015. color:#7F7F7F;
  3016. }
  3017. #u8724 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:350px;
  3021. top:102px;
  3022. width:827px;
  3023. height:20px;
  3024. display:flex;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:14px;
  3029. color:#7F7F7F;
  3030. }
  3031. #u8724 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:0px 0px 0px 0px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u8724_text {
  3039. border-width:0px;
  3040. white-space:nowrap;
  3041. text-transform:none;
  3042. }
  3043. #u8725 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:0px;
  3049. height:0px;
  3050. }
  3051. #u8726 {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:0px;
  3057. height:0px;
  3058. }
  3059. #u8727_div {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:380px;
  3065. height:120px;
  3066. background:inherit;
  3067. background-color:rgba(255, 255, 255, 1);
  3068. box-sizing:border-box;
  3069. border-width:1px;
  3070. border-style:solid;
  3071. border-color:rgba(242, 242, 242, 1);
  3072. border-radius:4px;
  3073. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3074. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3075. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3076. font-family:'Microsoft YaHei', sans-serif;
  3077. font-weight:400;
  3078. font-style:normal;
  3079. }
  3080. #u8727 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:1124px;
  3084. top:573px;
  3085. width:380px;
  3086. height:120px;
  3087. display:flex;
  3088. font-family:'Microsoft YaHei', sans-serif;
  3089. font-weight:400;
  3090. font-style:normal;
  3091. }
  3092. #u8727 .text {
  3093. position:absolute;
  3094. align-self:center;
  3095. padding:2px 2px 2px 2px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u8727_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. visibility:hidden;
  3104. }
  3105. #u8728_div {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:235px;
  3111. height:21px;
  3112. background:inherit;
  3113. background-color:rgba(255, 255, 255, 0);
  3114. border:none;
  3115. border-radius:0px;
  3116. -moz-box-shadow:none;
  3117. -webkit-box-shadow:none;
  3118. box-shadow:none;
  3119. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3120. font-weight:650;
  3121. font-style:normal;
  3122. font-size:18px;
  3123. color:#000000;
  3124. line-height:22px;
  3125. }
  3126. #u8728 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:1184px;
  3130. top:598px;
  3131. width:235px;
  3132. height:21px;
  3133. display:flex;
  3134. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3135. font-weight:650;
  3136. font-style:normal;
  3137. font-size:18px;
  3138. color:#000000;
  3139. line-height:22px;
  3140. }
  3141. #u8728 .text {
  3142. position:absolute;
  3143. align-self:flex-start;
  3144. padding:0px 0px 0px 0px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u8728_text {
  3149. border-width:0px;
  3150. white-space:nowrap;
  3151. text-transform:none;
  3152. }
  3153. #u8729_div {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:61px;
  3159. height:32px;
  3160. background:inherit;
  3161. background-color:rgba(24, 144, 255, 1);
  3162. border:none;
  3163. border-radius:4px;
  3164. -moz-box-shadow:none;
  3165. -webkit-box-shadow:none;
  3166. box-shadow:none;
  3167. font-family:'Microsoft YaHei', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:14px;
  3171. color:#FFFFFF;
  3172. }
  3173. #u8729 {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:1426px;
  3177. top:641px;
  3178. width:61px;
  3179. height:32px;
  3180. display:flex;
  3181. font-family:'Microsoft YaHei', sans-serif;
  3182. font-weight:400;
  3183. font-style:normal;
  3184. font-size:14px;
  3185. color:#FFFFFF;
  3186. }
  3187. #u8729 .text {
  3188. position:absolute;
  3189. align-self:center;
  3190. padding:2px 16px 2px 16px;
  3191. box-sizing:border-box;
  3192. width:100%;
  3193. }
  3194. #u8729_text {
  3195. border-width:0px;
  3196. white-space:nowrap;
  3197. text-transform:none;
  3198. }
  3199. #u8730_div {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:66px;
  3205. height:32px;
  3206. background:inherit;
  3207. background-color:rgba(255, 255, 255, 1);
  3208. box-sizing:border-box;
  3209. border-width:1px;
  3210. border-style:solid;
  3211. border-color:rgba(217, 217, 217, 1);
  3212. border-radius:4px;
  3213. -moz-box-shadow:none;
  3214. -webkit-box-shadow:none;
  3215. box-shadow:none;
  3216. font-family:'Microsoft YaHei', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. font-size:14px;
  3220. color:rgba(0, 0, 0, 0.647058823529412);
  3221. line-height:21px;
  3222. }
  3223. #u8730 {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:1350px;
  3227. top:641px;
  3228. width:66px;
  3229. height:32px;
  3230. display:flex;
  3231. font-family:'Microsoft YaHei', sans-serif;
  3232. font-weight:400;
  3233. font-style:normal;
  3234. font-size:14px;
  3235. color:rgba(0, 0, 0, 0.647058823529412);
  3236. line-height:21px;
  3237. }
  3238. #u8730 .text {
  3239. position:absolute;
  3240. align-self:center;
  3241. padding:2px 16px 2px 16px;
  3242. box-sizing:border-box;
  3243. width:100%;
  3244. }
  3245. #u8730_text {
  3246. border-width:0px;
  3247. white-space:nowrap;
  3248. text-transform:none;
  3249. }
  3250. #u8731_img {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:20px;
  3256. height:20px;
  3257. }
  3258. #u8731 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:1153px;
  3262. top:602px;
  3263. width:20px;
  3264. height:20px;
  3265. display:flex;
  3266. }
  3267. #u8731 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 2px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u8731_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u8733 {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:0px;
  3286. height:0px;
  3287. }
  3288. #u8734_div {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:0px;
  3292. top:0px;
  3293. width:30px;
  3294. height:30px;
  3295. background:inherit;
  3296. background-color:rgba(255, 255, 255, 1);
  3297. box-sizing:border-box;
  3298. border-width:1px;
  3299. border-style:solid;
  3300. border-color:rgba(228, 228, 228, 1);
  3301. border-radius:4px;
  3302. -moz-box-shadow:none;
  3303. -webkit-box-shadow:none;
  3304. box-shadow:none;
  3305. font-family:'Microsoft YaHei', sans-serif;
  3306. font-weight:400;
  3307. font-style:normal;
  3308. font-size:14px;
  3309. }
  3310. #u8734 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:1005px;
  3314. top:1189px;
  3315. width:30px;
  3316. height:30px;
  3317. display:flex;
  3318. font-family:'Microsoft YaHei', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:14px;
  3322. }
  3323. #u8734 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 2px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u8734_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. }
  3335. #u8735_div {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:49px;
  3341. height:30px;
  3342. background:inherit;
  3343. background-color:rgba(255, 255, 255, 0);
  3344. box-sizing:border-box;
  3345. border-width:1px;
  3346. border-style:solid;
  3347. border-color:rgba(188, 188, 188, 1);
  3348. border-radius:4px;
  3349. -moz-box-shadow:none;
  3350. -webkit-box-shadow:none;
  3351. box-shadow:none;
  3352. font-family:'Microsoft YaHei', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:14px;
  3356. color:#1E1E1E;
  3357. }
  3358. #u8735 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:1521px;
  3362. top:1189px;
  3363. width:49px;
  3364. height:30px;
  3365. display:flex;
  3366. font-family:'Microsoft YaHei', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:14px;
  3370. color:#1E1E1E;
  3371. }
  3372. #u8735 .text {
  3373. position:absolute;
  3374. align-self:center;
  3375. padding:5px 10px 5px 10px;
  3376. box-sizing:border-box;
  3377. width:100%;
  3378. }
  3379. #u8735_text {
  3380. border-width:0px;
  3381. white-space:nowrap;
  3382. text-transform:none;
  3383. }
  3384. #u8736 {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:0px;
  3390. height:0px;
  3391. }
  3392. #u8737_div {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:0px;
  3396. top:0px;
  3397. width:33px;
  3398. height:24px;
  3399. background:inherit;
  3400. background-color:rgba(255, 255, 255, 1);
  3401. border:none;
  3402. border-radius:0px;
  3403. -moz-box-shadow:none;
  3404. -webkit-box-shadow:none;
  3405. box-shadow:none;
  3406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3407. font-weight:400;
  3408. font-style:normal;
  3409. font-size:14px;
  3410. color:#BCBCBC;
  3411. text-align:left;
  3412. }
  3413. #u8737 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:1289px;
  3417. top:1192px;
  3418. width:33px;
  3419. height:24px;
  3420. display:flex;
  3421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3422. font-weight:400;
  3423. font-style:normal;
  3424. font-size:14px;
  3425. color:#BCBCBC;
  3426. text-align:left;
  3427. }
  3428. #u8737 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:2px 2px 2px 2px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u8737_text {
  3436. border-width:0px;
  3437. white-space:nowrap;
  3438. text-transform:none;
  3439. }
  3440. #u8738_div {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:40px;
  3446. height:30px;
  3447. background:inherit;
  3448. background-color:rgba(255, 255, 255, 1);
  3449. box-sizing:border-box;
  3450. border-width:1px;
  3451. border-style:solid;
  3452. border-color:rgba(228, 228, 228, 1);
  3453. border-radius:4px;
  3454. -moz-box-shadow:none;
  3455. -webkit-box-shadow:none;
  3456. box-shadow:none;
  3457. font-family:'Microsoft YaHei', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:14px;
  3461. }
  3462. #u8738 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:1324px;
  3466. top:1189px;
  3467. width:40px;
  3468. height:30px;
  3469. display:flex;
  3470. font-family:'Microsoft YaHei', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:14px;
  3474. }
  3475. #u8738 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 2px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u8738_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u8739_div {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:19px;
  3494. height:24px;
  3495. background:inherit;
  3496. background-color:rgba(255, 255, 255, 1);
  3497. border:none;
  3498. border-radius:0px;
  3499. -moz-box-shadow:none;
  3500. -webkit-box-shadow:none;
  3501. box-shadow:none;
  3502. font-family:'Microsoft YaHei', sans-serif;
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:14px;
  3506. color:#BCBCBC;
  3507. text-align:left;
  3508. }
  3509. #u8739 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:1366px;
  3513. top:1193px;
  3514. width:19px;
  3515. height:24px;
  3516. display:flex;
  3517. font-family:'Microsoft YaHei', sans-serif;
  3518. font-weight:400;
  3519. font-style:normal;
  3520. font-size:14px;
  3521. color:#BCBCBC;
  3522. text-align:left;
  3523. }
  3524. #u8739 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 2px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u8739_text {
  3532. border-width:0px;
  3533. white-space:nowrap;
  3534. text-transform:none;
  3535. }
  3536. #u8740_input {
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:34px;
  3541. height:25px;
  3542. padding:2px 2px 2px 2px;
  3543. font-family:'Microsoft YaHei', sans-serif;
  3544. font-weight:400;
  3545. font-style:normal;
  3546. font-size:13px;
  3547. letter-spacing:normal;
  3548. color:#000000;
  3549. vertical-align:none;
  3550. text-align:left;
  3551. text-transform:none;
  3552. background-color:transparent;
  3553. border-color:transparent;
  3554. }
  3555. #u8740_input.disabled {
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:34px;
  3560. height:25px;
  3561. padding:2px 2px 2px 2px;
  3562. font-family:'Microsoft YaHei', sans-serif;
  3563. font-weight:400;
  3564. font-style:normal;
  3565. font-size:13px;
  3566. letter-spacing:normal;
  3567. color:#000000;
  3568. vertical-align:none;
  3569. text-align:left;
  3570. text-transform:none;
  3571. background-color:transparent;
  3572. border-color:transparent;
  3573. }
  3574. #u8740_div {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:34px;
  3580. height:25px;
  3581. background:inherit;
  3582. background-color:rgba(255, 255, 255, 1);
  3583. border:none;
  3584. border-radius:0px;
  3585. -moz-box-shadow:none;
  3586. -webkit-box-shadow:none;
  3587. box-shadow:none;
  3588. font-family:'Microsoft YaHei', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. }
  3592. #u8740 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:1327px;
  3596. top:1191px;
  3597. width:34px;
  3598. height:25px;
  3599. display:flex;
  3600. font-family:'Microsoft YaHei', sans-serif;
  3601. font-weight:400;
  3602. font-style:normal;
  3603. }
  3604. #u8740 .text {
  3605. position:absolute;
  3606. align-self:center;
  3607. padding:2px 2px 2px 2px;
  3608. box-sizing:border-box;
  3609. width:100%;
  3610. }
  3611. #u8740_div.disabled {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:34px;
  3617. height:25px;
  3618. background:inherit;
  3619. background-color:rgba(240, 240, 240, 1);
  3620. border:none;
  3621. border-radius:0px;
  3622. -moz-box-shadow:none;
  3623. -webkit-box-shadow:none;
  3624. box-shadow:none;
  3625. font-family:'Microsoft YaHei', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. }
  3629. #u8740.disabled {
  3630. }
  3631. #u8741_div {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:30px;
  3637. height:30px;
  3638. background:inherit;
  3639. background-color:rgba(41, 143, 255, 1);
  3640. border:none;
  3641. border-radius:4px;
  3642. -moz-box-shadow:none;
  3643. -webkit-box-shadow:none;
  3644. box-shadow:none;
  3645. font-family:'Microsoft YaHei', sans-serif;
  3646. font-weight:400;
  3647. font-style:normal;
  3648. font-size:14px;
  3649. color:#FFFFFF;
  3650. }
  3651. #u8741 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:1039px;
  3655. top:1189px;
  3656. width:30px;
  3657. height:30px;
  3658. display:flex;
  3659. font-family:'Microsoft YaHei', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:14px;
  3663. color:#FFFFFF;
  3664. }
  3665. #u8741 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:2px 2px 2px 2px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u8741_text {
  3673. border-width:0px;
  3674. word-wrap:break-word;
  3675. text-transform:none;
  3676. }
  3677. #u8742_div {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:30px;
  3683. height:30px;
  3684. background:inherit;
  3685. background-color:rgba(255, 255, 255, 1);
  3686. box-sizing:border-box;
  3687. border-width:1px;
  3688. border-style:solid;
  3689. border-color:rgba(228, 228, 228, 1);
  3690. border-radius:4px;
  3691. -moz-box-shadow:none;
  3692. -webkit-box-shadow:none;
  3693. box-shadow:none;
  3694. font-family:'Microsoft YaHei', sans-serif;
  3695. font-weight:400;
  3696. font-style:normal;
  3697. font-size:14px;
  3698. }
  3699. #u8742 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:1073px;
  3703. top:1189px;
  3704. width:30px;
  3705. height:30px;
  3706. display:flex;
  3707. font-family:'Microsoft YaHei', sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. font-size:14px;
  3711. }
  3712. #u8742 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 2px 2px 2px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u8742_text {
  3720. border-width:0px;
  3721. word-wrap:break-word;
  3722. text-transform:none;
  3723. }
  3724. #u8743_div {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:30px;
  3730. height:30px;
  3731. background:inherit;
  3732. background-color:rgba(255, 255, 255, 1);
  3733. box-sizing:border-box;
  3734. border-width:1px;
  3735. border-style:solid;
  3736. border-color:rgba(228, 228, 228, 1);
  3737. border-radius:4px;
  3738. -moz-box-shadow:none;
  3739. -webkit-box-shadow:none;
  3740. box-shadow:none;
  3741. font-family:'Microsoft YaHei', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:14px;
  3745. }
  3746. #u8743 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:1107px;
  3750. top:1189px;
  3751. width:30px;
  3752. height:30px;
  3753. display:flex;
  3754. font-family:'Microsoft YaHei', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. font-size:14px;
  3758. }
  3759. #u8743 .text {
  3760. position:absolute;
  3761. align-self:center;
  3762. padding:2px 2px 2px 2px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u8743_text {
  3767. border-width:0px;
  3768. word-wrap:break-word;
  3769. text-transform:none;
  3770. }
  3771. #u8744_div {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:30px;
  3777. height:30px;
  3778. background:inherit;
  3779. background-color:rgba(255, 255, 255, 1);
  3780. border:none;
  3781. border-radius:4px;
  3782. -moz-box-shadow:none;
  3783. -webkit-box-shadow:none;
  3784. box-shadow:none;
  3785. font-family:'Microsoft YaHei', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:14px;
  3789. }
  3790. #u8744 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:1137px;
  3794. top:1189px;
  3795. width:30px;
  3796. height:30px;
  3797. display:flex;
  3798. font-family:'Microsoft YaHei', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:14px;
  3802. }
  3803. #u8744 .text {
  3804. position:absolute;
  3805. align-self:center;
  3806. padding:2px 2px 2px 2px;
  3807. box-sizing:border-box;
  3808. width:100%;
  3809. }
  3810. #u8744_text {
  3811. border-width:0px;
  3812. word-wrap:break-word;
  3813. text-transform:none;
  3814. }
  3815. #u8745_div {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:30px;
  3821. height:30px;
  3822. background:inherit;
  3823. background-color:rgba(255, 255, 255, 1);
  3824. box-sizing:border-box;
  3825. border-width:1px;
  3826. border-style:solid;
  3827. border-color:rgba(228, 228, 228, 1);
  3828. border-radius:4px;
  3829. -moz-box-shadow:none;
  3830. -webkit-box-shadow:none;
  3831. box-shadow:none;
  3832. font-family:'Microsoft YaHei', sans-serif;
  3833. font-weight:400;
  3834. font-style:normal;
  3835. font-size:14px;
  3836. }
  3837. #u8745 {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:1171px;
  3841. top:1189px;
  3842. width:30px;
  3843. height:30px;
  3844. display:flex;
  3845. font-family:'Microsoft YaHei', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:14px;
  3849. }
  3850. #u8745 .text {
  3851. position:absolute;
  3852. align-self:center;
  3853. padding:2px 2px 2px 2px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u8745_text {
  3858. border-width:0px;
  3859. word-wrap:break-word;
  3860. text-transform:none;
  3861. }
  3862. #u8746_div {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:32px;
  3868. height:21px;
  3869. background:inherit;
  3870. background-color:rgba(255, 255, 255, 1);
  3871. border:none;
  3872. border-radius:15px;
  3873. -moz-box-shadow:none;
  3874. -webkit-box-shadow:none;
  3875. box-shadow:none;
  3876. font-family:'Microsoft YaHei', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:14px;
  3880. color:#1E1E1E;
  3881. }
  3882. #u8746 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:1245px;
  3886. top:1194px;
  3887. width:32px;
  3888. height:21px;
  3889. display:flex;
  3890. font-family:'Microsoft YaHei', sans-serif;
  3891. font-weight:400;
  3892. font-style:normal;
  3893. font-size:14px;
  3894. color:#1E1E1E;
  3895. }
  3896. #u8746 .text {
  3897. position:absolute;
  3898. align-self:center;
  3899. padding:2px 2px 2px 2px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u8746_text {
  3904. border-width:0px;
  3905. white-space:nowrap;
  3906. text-transform:none;
  3907. }
  3908. #u8747 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:0px;
  3914. height:0px;
  3915. }
  3916. #u8748_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:31px;
  3922. height:30px;
  3923. background:inherit;
  3924. background-color:rgba(255, 255, 255, 1);
  3925. box-sizing:border-box;
  3926. border-width:1px;
  3927. border-style:solid;
  3928. border-color:rgba(228, 228, 228, 1);
  3929. border-radius:4px;
  3930. -moz-box-shadow:none;
  3931. -webkit-box-shadow:none;
  3932. box-shadow:none;
  3933. font-family:'Microsoft YaHei', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:12px;
  3937. }
  3938. #u8748 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:970px;
  3942. top:1189px;
  3943. width:31px;
  3944. height:30px;
  3945. display:flex;
  3946. font-family:'Microsoft YaHei', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:12px;
  3950. }
  3951. #u8748 .text {
  3952. position:absolute;
  3953. align-self:center;
  3954. padding:2px 2px 2px 2px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u8748_text {
  3959. border-width:0px;
  3960. word-wrap:break-word;
  3961. text-transform:none;
  3962. visibility:hidden;
  3963. }
  3964. #u8749_img {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:8px;
  3970. height:14px;
  3971. }
  3972. #u8749 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:982px;
  3976. top:1197px;
  3977. width:8px;
  3978. height:14px;
  3979. display:flex;
  3980. font-family:'Microsoft YaHei', sans-serif;
  3981. font-weight:400;
  3982. font-style:normal;
  3983. font-size:12px;
  3984. }
  3985. #u8749 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 2px 2px 2px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u8749_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. visibility:hidden;
  3997. }
  3998. #u8750 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:0px;
  4004. height:0px;
  4005. }
  4006. #u8751_div {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:31px;
  4012. height:30px;
  4013. background:inherit;
  4014. background-color:rgba(255, 255, 255, 1);
  4015. box-sizing:border-box;
  4016. border-width:1px;
  4017. border-style:solid;
  4018. border-color:rgba(228, 228, 228, 1);
  4019. border-radius:4px;
  4020. -moz-box-shadow:none;
  4021. -webkit-box-shadow:none;
  4022. box-shadow:none;
  4023. font-family:'Microsoft YaHei', sans-serif;
  4024. font-weight:400;
  4025. font-style:normal;
  4026. font-size:12px;
  4027. }
  4028. #u8751 {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:1204px;
  4032. top:1189px;
  4033. width:31px;
  4034. height:30px;
  4035. display:flex;
  4036. font-family:'Microsoft YaHei', sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. font-size:12px;
  4040. }
  4041. #u8751 .text {
  4042. position:absolute;
  4043. align-self:center;
  4044. padding:2px 2px 2px 2px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u8751_text {
  4049. border-width:0px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. visibility:hidden;
  4053. }
  4054. #u8752_img {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:8px;
  4060. height:14px;
  4061. }
  4062. #u8752 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:1217px;
  4066. top:1197px;
  4067. width:8px;
  4068. height:14px;
  4069. display:flex;
  4070. font-family:'Microsoft YaHei', sans-serif;
  4071. font-weight:400;
  4072. font-style:normal;
  4073. font-size:12px;
  4074. }
  4075. #u8752 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:2px 2px 2px 2px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u8752_text {
  4083. border-width:0px;
  4084. word-wrap:break-word;
  4085. text-transform:none;
  4086. visibility:hidden;
  4087. }
  4088. #u8753 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:0px;
  4094. height:0px;
  4095. }
  4096. #u8754_div {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:33px;
  4102. height:24px;
  4103. background:inherit;
  4104. background-color:rgba(255, 255, 255, 1);
  4105. border:none;
  4106. border-radius:0px;
  4107. -moz-box-shadow:none;
  4108. -webkit-box-shadow:none;
  4109. box-shadow:none;
  4110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4111. font-weight:400;
  4112. font-style:normal;
  4113. font-size:14px;
  4114. color:#BCBCBC;
  4115. text-align:left;
  4116. }
  4117. #u8754 {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:1405px;
  4121. top:1192px;
  4122. width:33px;
  4123. height:24px;
  4124. display:flex;
  4125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:14px;
  4129. color:#BCBCBC;
  4130. text-align:left;
  4131. }
  4132. #u8754 .text {
  4133. position:absolute;
  4134. align-self:center;
  4135. padding:2px 2px 2px 2px;
  4136. box-sizing:border-box;
  4137. width:100%;
  4138. }
  4139. #u8754_text {
  4140. border-width:0px;
  4141. white-space:nowrap;
  4142. text-transform:none;
  4143. }
  4144. #u8755_div {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:40px;
  4150. height:30px;
  4151. background:inherit;
  4152. background-color:rgba(255, 255, 255, 1);
  4153. box-sizing:border-box;
  4154. border-width:1px;
  4155. border-style:solid;
  4156. border-color:rgba(228, 228, 228, 1);
  4157. border-radius:4px;
  4158. -moz-box-shadow:none;
  4159. -webkit-box-shadow:none;
  4160. box-shadow:none;
  4161. font-family:'Microsoft YaHei', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:14px;
  4165. }
  4166. #u8755 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:1440px;
  4170. top:1189px;
  4171. width:40px;
  4172. height:30px;
  4173. display:flex;
  4174. font-family:'Microsoft YaHei', sans-serif;
  4175. font-weight:400;
  4176. font-style:normal;
  4177. font-size:14px;
  4178. }
  4179. #u8755 .text {
  4180. position:absolute;
  4181. align-self:center;
  4182. padding:2px 2px 2px 2px;
  4183. box-sizing:border-box;
  4184. width:100%;
  4185. }
  4186. #u8755_text {
  4187. border-width:0px;
  4188. word-wrap:break-word;
  4189. text-transform:none;
  4190. visibility:hidden;
  4191. }
  4192. #u8756_div {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:19px;
  4198. height:24px;
  4199. background:inherit;
  4200. background-color:rgba(255, 255, 255, 1);
  4201. border:none;
  4202. border-radius:0px;
  4203. -moz-box-shadow:none;
  4204. -webkit-box-shadow:none;
  4205. box-shadow:none;
  4206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4207. font-weight:400;
  4208. font-style:normal;
  4209. font-size:14px;
  4210. color:#BCBCBC;
  4211. text-align:left;
  4212. }
  4213. #u8756 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:1482px;
  4217. top:1193px;
  4218. width:19px;
  4219. height:24px;
  4220. display:flex;
  4221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:14px;
  4225. color:#BCBCBC;
  4226. text-align:left;
  4227. }
  4228. #u8756 .text {
  4229. position:absolute;
  4230. align-self:center;
  4231. padding:2px 2px 2px 2px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u8756_text {
  4236. border-width:0px;
  4237. white-space:nowrap;
  4238. text-transform:none;
  4239. }
  4240. #u8757_input {
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:34px;
  4245. height:25px;
  4246. padding:2px 2px 2px 2px;
  4247. font-family:'Microsoft YaHei', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:13px;
  4251. letter-spacing:normal;
  4252. color:#000000;
  4253. vertical-align:none;
  4254. text-align:left;
  4255. text-transform:none;
  4256. background-color:transparent;
  4257. border-color:transparent;
  4258. }
  4259. #u8757_input.disabled {
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:34px;
  4264. height:25px;
  4265. padding:2px 2px 2px 2px;
  4266. font-family:'Microsoft YaHei', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:13px;
  4270. letter-spacing:normal;
  4271. color:#000000;
  4272. vertical-align:none;
  4273. text-align:left;
  4274. text-transform:none;
  4275. background-color:transparent;
  4276. border-color:transparent;
  4277. }
  4278. #u8757_div {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:34px;
  4284. height:25px;
  4285. background:inherit;
  4286. background-color:rgba(255, 255, 255, 1);
  4287. border:none;
  4288. border-radius:0px;
  4289. -moz-box-shadow:none;
  4290. -webkit-box-shadow:none;
  4291. box-shadow:none;
  4292. font-family:'Microsoft YaHei', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. }
  4296. #u8757 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:1443px;
  4300. top:1191px;
  4301. width:34px;
  4302. height:25px;
  4303. display:flex;
  4304. font-family:'Microsoft YaHei', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. }
  4308. #u8757 .text {
  4309. position:absolute;
  4310. align-self:center;
  4311. padding:2px 2px 2px 2px;
  4312. box-sizing:border-box;
  4313. width:100%;
  4314. }
  4315. #u8757_div.disabled {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:34px;
  4321. height:25px;
  4322. background:inherit;
  4323. background-color:rgba(240, 240, 240, 1);
  4324. border:none;
  4325. border-radius:0px;
  4326. -moz-box-shadow:none;
  4327. -webkit-box-shadow:none;
  4328. box-shadow:none;
  4329. font-family:'Microsoft YaHei', sans-serif;
  4330. font-weight:400;
  4331. font-style:normal;
  4332. }
  4333. #u8757.disabled {
  4334. }
  4335. #u8758 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:0px;
  4339. top:0px;
  4340. width:0px;
  4341. height:0px;
  4342. }
  4343. #u8759_div {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:140px;
  4349. height:30px;
  4350. background:inherit;
  4351. background-color:rgba(255, 255, 255, 1);
  4352. box-sizing:border-box;
  4353. border-width:1px;
  4354. border-style:solid;
  4355. border-color:rgba(215, 215, 215, 1);
  4356. border-radius:4px;
  4357. -moz-box-shadow:none;
  4358. -webkit-box-shadow:none;
  4359. box-shadow:none;
  4360. font-size:11px;
  4361. }
  4362. #u8759 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:800px;
  4366. top:142px;
  4367. width:140px;
  4368. height:30px;
  4369. display:flex;
  4370. font-size:11px;
  4371. }
  4372. #u8759 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 2px 2px 2px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u8759_text {
  4380. border-width:0px;
  4381. word-wrap:break-word;
  4382. text-transform:none;
  4383. visibility:hidden;
  4384. }
  4385. #u8760_input {
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:126px;
  4390. height:23px;
  4391. padding:2px 2px 2px 2px;
  4392. font-family:'ArialMT', 'Arial', sans-serif;
  4393. font-weight:400;
  4394. font-style:normal;
  4395. font-size:11px;
  4396. letter-spacing:normal;
  4397. color:#AAAAAA;
  4398. vertical-align:none;
  4399. text-align:left;
  4400. text-transform:none;
  4401. background-color:transparent;
  4402. border-color:transparent;
  4403. }
  4404. #u8760_input.disabled {
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:126px;
  4409. height:23px;
  4410. padding:2px 2px 2px 2px;
  4411. font-family:'ArialMT', 'Arial', sans-serif;
  4412. font-weight:400;
  4413. font-style:normal;
  4414. font-size:11px;
  4415. letter-spacing:normal;
  4416. color:#AAAAAA;
  4417. vertical-align:none;
  4418. text-align:left;
  4419. text-transform:none;
  4420. background-color:transparent;
  4421. border-color:transparent;
  4422. }
  4423. #u8760_div {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:126px;
  4429. height:23px;
  4430. background:inherit;
  4431. background-color:rgba(255, 255, 255, 1);
  4432. border:none;
  4433. border-radius:0px;
  4434. -moz-box-shadow:none;
  4435. -webkit-box-shadow:none;
  4436. box-shadow:none;
  4437. font-size:11px;
  4438. color:#AAAAAA;
  4439. }
  4440. #u8760 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:807px;
  4444. top:144px;
  4445. width:126px;
  4446. height:23px;
  4447. display:flex;
  4448. font-size:11px;
  4449. color:#AAAAAA;
  4450. }
  4451. #u8760 .text {
  4452. position:absolute;
  4453. align-self:flex-start;
  4454. padding:2px 2px 2px 2px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u8760_div.disabled {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:126px;
  4464. height:23px;
  4465. background:inherit;
  4466. background-color:rgba(240, 240, 240, 1);
  4467. border:none;
  4468. border-radius:0px;
  4469. -moz-box-shadow:none;
  4470. -webkit-box-shadow:none;
  4471. box-shadow:none;
  4472. font-size:11px;
  4473. color:#AAAAAA;
  4474. }
  4475. #u8760.disabled {
  4476. }
  4477. .u8760_input_option {
  4478. font-size:11px;
  4479. }
  4480. #u8761 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:350px;
  4484. top:230px;
  4485. width:1220px;
  4486. height:328px;
  4487. }
  4488. #u8762_img {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:0px;
  4492. top:0px;
  4493. width:157px;
  4494. height:44px;
  4495. }
  4496. #u8762 {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:157px;
  4502. height:44px;
  4503. display:flex;
  4504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:12px;
  4508. color:#FFFFFF;
  4509. }
  4510. #u8762 .text {
  4511. position:absolute;
  4512. align-self:center;
  4513. padding:2px 2px 2px 0px;
  4514. box-sizing:border-box;
  4515. width:100%;
  4516. }
  4517. #u8762_text {
  4518. border-width:0px;
  4519. word-wrap:break-word;
  4520. text-transform:none;
  4521. }
  4522. #u8763_img {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:0px;
  4526. top:0px;
  4527. width:147px;
  4528. height:44px;
  4529. }
  4530. #u8763 {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:157px;
  4534. top:0px;
  4535. width:147px;
  4536. height:44px;
  4537. display:flex;
  4538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4539. font-weight:400;
  4540. font-style:normal;
  4541. font-size:12px;
  4542. color:#FFFFFF;
  4543. }
  4544. #u8763 .text {
  4545. position:absolute;
  4546. align-self:center;
  4547. padding:2px 2px 2px 0px;
  4548. box-sizing:border-box;
  4549. width:100%;
  4550. }
  4551. #u8763_text {
  4552. border-width:0px;
  4553. word-wrap:break-word;
  4554. text-transform:none;
  4555. }
  4556. #u8764_img {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:166px;
  4562. height:44px;
  4563. }
  4564. #u8764 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:304px;
  4568. top:0px;
  4569. width:166px;
  4570. height:44px;
  4571. display:flex;
  4572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:12px;
  4576. color:#FFFFFF;
  4577. }
  4578. #u8764 .text {
  4579. position:absolute;
  4580. align-self:center;
  4581. padding:2px 2px 2px 0px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u8764_text {
  4586. border-width:0px;
  4587. word-wrap:break-word;
  4588. text-transform:none;
  4589. }
  4590. #u8765_img {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:147px;
  4596. height:44px;
  4597. }
  4598. #u8765 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:470px;
  4602. top:0px;
  4603. width:147px;
  4604. height:44px;
  4605. display:flex;
  4606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4607. font-weight:400;
  4608. font-style:normal;
  4609. font-size:12px;
  4610. color:#FFFFFF;
  4611. }
  4612. #u8765 .text {
  4613. position:absolute;
  4614. align-self:center;
  4615. padding:2px 2px 2px 0px;
  4616. box-sizing:border-box;
  4617. width:100%;
  4618. }
  4619. #u8765_text {
  4620. border-width:0px;
  4621. word-wrap:break-word;
  4622. text-transform:none;
  4623. }
  4624. #u8766_img {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:173px;
  4630. height:44px;
  4631. }
  4632. #u8766 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:617px;
  4636. top:0px;
  4637. width:173px;
  4638. height:44px;
  4639. display:flex;
  4640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:12px;
  4644. color:#FFFFFF;
  4645. }
  4646. #u8766 .text {
  4647. position:absolute;
  4648. align-self:center;
  4649. padding:2px 2px 2px 0px;
  4650. box-sizing:border-box;
  4651. width:100%;
  4652. }
  4653. #u8766_text {
  4654. border-width:0px;
  4655. word-wrap:break-word;
  4656. text-transform:none;
  4657. }
  4658. #u8767_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:147px;
  4664. height:44px;
  4665. }
  4666. #u8767 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:790px;
  4670. top:0px;
  4671. width:147px;
  4672. height:44px;
  4673. display:flex;
  4674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:12px;
  4678. color:#FFFFFF;
  4679. }
  4680. #u8767 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 2px 2px 0px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u8767_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. }
  4692. #u8768_img {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:173px;
  4698. height:44px;
  4699. }
  4700. #u8768 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:937px;
  4704. top:0px;
  4705. width:173px;
  4706. height:44px;
  4707. display:flex;
  4708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:12px;
  4712. color:#FFFFFF;
  4713. }
  4714. #u8768 .text {
  4715. position:absolute;
  4716. align-self:center;
  4717. padding:2px 2px 2px 0px;
  4718. box-sizing:border-box;
  4719. width:100%;
  4720. }
  4721. #u8768_text {
  4722. border-width:0px;
  4723. word-wrap:break-word;
  4724. text-transform:none;
  4725. }
  4726. #u8769_img {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:110px;
  4732. height:44px;
  4733. }
  4734. #u8769 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:1110px;
  4738. top:0px;
  4739. width:110px;
  4740. height:44px;
  4741. display:flex;
  4742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4743. font-weight:400;
  4744. font-style:normal;
  4745. font-size:12px;
  4746. color:#FFFFFF;
  4747. }
  4748. #u8769 .text {
  4749. position:absolute;
  4750. align-self:center;
  4751. padding:2px 2px 2px 0px;
  4752. box-sizing:border-box;
  4753. width:100%;
  4754. }
  4755. #u8769_text {
  4756. border-width:0px;
  4757. word-wrap:break-word;
  4758. text-transform:none;
  4759. }
  4760. #u8770_img {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:0px;
  4764. top:0px;
  4765. width:157px;
  4766. height:38px;
  4767. }
  4768. #u8770 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:44px;
  4773. width:157px;
  4774. height:38px;
  4775. display:flex;
  4776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4777. font-weight:400;
  4778. font-style:normal;
  4779. font-size:12px;
  4780. color:#333333;
  4781. }
  4782. #u8770 .text {
  4783. position:absolute;
  4784. align-self:center;
  4785. padding:2px 2px 2px 0px;
  4786. box-sizing:border-box;
  4787. width:100%;
  4788. }
  4789. #u8770_text {
  4790. border-width:0px;
  4791. word-wrap:break-word;
  4792. text-transform:none;
  4793. visibility:hidden;
  4794. }
  4795. #u8771_img {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:147px;
  4801. height:38px;
  4802. }
  4803. #u8771 {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:157px;
  4807. top:44px;
  4808. width:147px;
  4809. height:38px;
  4810. display:flex;
  4811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4812. font-weight:400;
  4813. font-style:normal;
  4814. font-size:12px;
  4815. color:#333333;
  4816. }
  4817. #u8771 .text {
  4818. position:absolute;
  4819. align-self:center;
  4820. padding:2px 2px 2px 0px;
  4821. box-sizing:border-box;
  4822. width:100%;
  4823. }
  4824. #u8771_text {
  4825. border-width:0px;
  4826. word-wrap:break-word;
  4827. text-transform:none;
  4828. visibility:hidden;
  4829. }
  4830. #u8772_img {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:0px;
  4834. top:0px;
  4835. width:166px;
  4836. height:38px;
  4837. }
  4838. #u8772 {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:304px;
  4842. top:44px;
  4843. width:166px;
  4844. height:38px;
  4845. display:flex;
  4846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4847. font-weight:400;
  4848. font-style:normal;
  4849. font-size:12px;
  4850. color:#333333;
  4851. }
  4852. #u8772 .text {
  4853. position:absolute;
  4854. align-self:center;
  4855. padding:2px 2px 2px 0px;
  4856. box-sizing:border-box;
  4857. width:100%;
  4858. }
  4859. #u8772_text {
  4860. border-width:0px;
  4861. word-wrap:break-word;
  4862. text-transform:none;
  4863. visibility:hidden;
  4864. }
  4865. #u8773_img {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:147px;
  4871. height:38px;
  4872. }
  4873. #u8773 {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:470px;
  4877. top:44px;
  4878. width:147px;
  4879. height:38px;
  4880. display:flex;
  4881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4882. font-weight:400;
  4883. font-style:normal;
  4884. font-size:12px;
  4885. color:#333333;
  4886. }
  4887. #u8773 .text {
  4888. position:absolute;
  4889. align-self:center;
  4890. padding:2px 2px 2px 0px;
  4891. box-sizing:border-box;
  4892. width:100%;
  4893. }
  4894. #u8773_text {
  4895. border-width:0px;
  4896. word-wrap:break-word;
  4897. text-transform:none;
  4898. visibility:hidden;
  4899. }
  4900. #u8774_img {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:173px;
  4906. height:38px;
  4907. }
  4908. #u8774 {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:617px;
  4912. top:44px;
  4913. width:173px;
  4914. height:38px;
  4915. display:flex;
  4916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. font-size:12px;
  4920. color:#333333;
  4921. }
  4922. #u8774 .text {
  4923. position:absolute;
  4924. align-self:center;
  4925. padding:2px 2px 2px 0px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u8774_text {
  4930. border-width:0px;
  4931. word-wrap:break-word;
  4932. text-transform:none;
  4933. visibility:hidden;
  4934. }
  4935. #u8775_img {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:147px;
  4941. height:38px;
  4942. }
  4943. #u8775 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:790px;
  4947. top:44px;
  4948. width:147px;
  4949. height:38px;
  4950. display:flex;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:12px;
  4955. color:#333333;
  4956. }
  4957. #u8775 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 2px 2px 0px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u8775_text {
  4965. border-width:0px;
  4966. word-wrap:break-word;
  4967. text-transform:none;
  4968. visibility:hidden;
  4969. }
  4970. #u8776_img {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:173px;
  4976. height:38px;
  4977. }
  4978. #u8776 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:937px;
  4982. top:44px;
  4983. width:173px;
  4984. height:38px;
  4985. display:flex;
  4986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:12px;
  4990. color:#333333;
  4991. }
  4992. #u8776 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 2px 2px 0px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u8776_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. visibility:hidden;
  5004. }
  5005. #u8777_img {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:110px;
  5011. height:38px;
  5012. }
  5013. #u8777 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:1110px;
  5017. top:44px;
  5018. width:110px;
  5019. height:38px;
  5020. display:flex;
  5021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:12px;
  5025. color:#0089FE;
  5026. }
  5027. #u8777 .text {
  5028. position:absolute;
  5029. align-self:center;
  5030. padding:2px 2px 2px 0px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u8777_text {
  5035. border-width:0px;
  5036. word-wrap:break-word;
  5037. text-transform:none;
  5038. }
  5039. #u8778_img {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:0px;
  5044. width:157px;
  5045. height:38px;
  5046. }
  5047. #u8778 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:82px;
  5052. width:157px;
  5053. height:38px;
  5054. display:flex;
  5055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5056. font-weight:400;
  5057. font-style:normal;
  5058. font-size:12px;
  5059. color:#333333;
  5060. }
  5061. #u8778 .text {
  5062. position:absolute;
  5063. align-self:center;
  5064. padding:2px 2px 2px 0px;
  5065. box-sizing:border-box;
  5066. width:100%;
  5067. }
  5068. #u8778_text {
  5069. border-width:0px;
  5070. word-wrap:break-word;
  5071. text-transform:none;
  5072. visibility:hidden;
  5073. }
  5074. #u8779_img {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:147px;
  5080. height:38px;
  5081. }
  5082. #u8779 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:157px;
  5086. top:82px;
  5087. width:147px;
  5088. height:38px;
  5089. display:flex;
  5090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. font-size:12px;
  5094. color:#333333;
  5095. }
  5096. #u8779 .text {
  5097. position:absolute;
  5098. align-self:center;
  5099. padding:2px 2px 2px 0px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u8779_text {
  5104. border-width:0px;
  5105. word-wrap:break-word;
  5106. text-transform:none;
  5107. visibility:hidden;
  5108. }
  5109. #u8780_img {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:0px;
  5113. top:0px;
  5114. width:166px;
  5115. height:38px;
  5116. }
  5117. #u8780 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:304px;
  5121. top:82px;
  5122. width:166px;
  5123. height:38px;
  5124. display:flex;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:12px;
  5129. color:#333333;
  5130. }
  5131. #u8780 .text {
  5132. position:absolute;
  5133. align-self:center;
  5134. padding:2px 2px 2px 0px;
  5135. box-sizing:border-box;
  5136. width:100%;
  5137. }
  5138. #u8780_text {
  5139. border-width:0px;
  5140. word-wrap:break-word;
  5141. text-transform:none;
  5142. visibility:hidden;
  5143. }
  5144. #u8781_img {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:147px;
  5150. height:38px;
  5151. }
  5152. #u8781 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:470px;
  5156. top:82px;
  5157. width:147px;
  5158. height:38px;
  5159. display:flex;
  5160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5161. font-weight:400;
  5162. font-style:normal;
  5163. font-size:12px;
  5164. color:#333333;
  5165. }
  5166. #u8781 .text {
  5167. position:absolute;
  5168. align-self:center;
  5169. padding:2px 2px 2px 0px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u8781_text {
  5174. border-width:0px;
  5175. word-wrap:break-word;
  5176. text-transform:none;
  5177. visibility:hidden;
  5178. }
  5179. #u8782_img {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:173px;
  5185. height:38px;
  5186. }
  5187. #u8782 {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:617px;
  5191. top:82px;
  5192. width:173px;
  5193. height:38px;
  5194. display:flex;
  5195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:12px;
  5199. color:#333333;
  5200. }
  5201. #u8782 .text {
  5202. position:absolute;
  5203. align-self:center;
  5204. padding:2px 2px 2px 0px;
  5205. box-sizing:border-box;
  5206. width:100%;
  5207. }
  5208. #u8782_text {
  5209. border-width:0px;
  5210. word-wrap:break-word;
  5211. text-transform:none;
  5212. visibility:hidden;
  5213. }
  5214. #u8783_img {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:147px;
  5220. height:38px;
  5221. }
  5222. #u8783 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:790px;
  5226. top:82px;
  5227. width:147px;
  5228. height:38px;
  5229. display:flex;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:12px;
  5234. color:#333333;
  5235. }
  5236. #u8783 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:2px 2px 2px 0px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u8783_text {
  5244. border-width:0px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. visibility:hidden;
  5248. }
  5249. #u8784_img {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:173px;
  5255. height:38px;
  5256. }
  5257. #u8784 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:937px;
  5261. top:82px;
  5262. width:173px;
  5263. height:38px;
  5264. display:flex;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:12px;
  5269. color:#333333;
  5270. }
  5271. #u8784 .text {
  5272. position:absolute;
  5273. align-self:center;
  5274. padding:2px 2px 2px 0px;
  5275. box-sizing:border-box;
  5276. width:100%;
  5277. }
  5278. #u8784_text {
  5279. border-width:0px;
  5280. word-wrap:break-word;
  5281. text-transform:none;
  5282. visibility:hidden;
  5283. }
  5284. #u8785_img {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:110px;
  5290. height:38px;
  5291. }
  5292. #u8785 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:1110px;
  5296. top:82px;
  5297. width:110px;
  5298. height:38px;
  5299. display:flex;
  5300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:12px;
  5304. color:#0089FE;
  5305. }
  5306. #u8785 .text {
  5307. position:absolute;
  5308. align-self:center;
  5309. padding:2px 2px 2px 0px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u8785_text {
  5314. border-width:0px;
  5315. word-wrap:break-word;
  5316. text-transform:none;
  5317. }
  5318. #u8786_img {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:157px;
  5324. height:38px;
  5325. }
  5326. #u8786 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:0px;
  5330. top:120px;
  5331. width:157px;
  5332. height:38px;
  5333. display:flex;
  5334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. font-size:12px;
  5338. color:#333333;
  5339. }
  5340. #u8786 .text {
  5341. position:absolute;
  5342. align-self:center;
  5343. padding:2px 2px 2px 0px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u8786_text {
  5348. border-width:0px;
  5349. word-wrap:break-word;
  5350. text-transform:none;
  5351. visibility:hidden;
  5352. }
  5353. #u8787_img {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:0px;
  5357. top:0px;
  5358. width:147px;
  5359. height:38px;
  5360. }
  5361. #u8787 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:157px;
  5365. top:120px;
  5366. width:147px;
  5367. height:38px;
  5368. display:flex;
  5369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:12px;
  5373. color:#333333;
  5374. }
  5375. #u8787 .text {
  5376. position:absolute;
  5377. align-self:center;
  5378. padding:2px 2px 2px 0px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u8787_text {
  5383. border-width:0px;
  5384. word-wrap:break-word;
  5385. text-transform:none;
  5386. visibility:hidden;
  5387. }
  5388. #u8788_img {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:166px;
  5394. height:38px;
  5395. }
  5396. #u8788 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:304px;
  5400. top:120px;
  5401. width:166px;
  5402. height:38px;
  5403. display:flex;
  5404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:12px;
  5408. color:#333333;
  5409. }
  5410. #u8788 .text {
  5411. position:absolute;
  5412. align-self:center;
  5413. padding:2px 2px 2px 0px;
  5414. box-sizing:border-box;
  5415. width:100%;
  5416. }
  5417. #u8788_text {
  5418. border-width:0px;
  5419. word-wrap:break-word;
  5420. text-transform:none;
  5421. visibility:hidden;
  5422. }
  5423. #u8789_img {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:147px;
  5429. height:38px;
  5430. }
  5431. #u8789 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:470px;
  5435. top:120px;
  5436. width:147px;
  5437. height:38px;
  5438. display:flex;
  5439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:12px;
  5443. color:#333333;
  5444. }
  5445. #u8789 .text {
  5446. position:absolute;
  5447. align-self:center;
  5448. padding:2px 2px 2px 0px;
  5449. box-sizing:border-box;
  5450. width:100%;
  5451. }
  5452. #u8789_text {
  5453. border-width:0px;
  5454. word-wrap:break-word;
  5455. text-transform:none;
  5456. visibility:hidden;
  5457. }
  5458. #u8790_img {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:173px;
  5464. height:38px;
  5465. }
  5466. #u8790 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:617px;
  5470. top:120px;
  5471. width:173px;
  5472. height:38px;
  5473. display:flex;
  5474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. font-size:12px;
  5478. color:#333333;
  5479. }
  5480. #u8790 .text {
  5481. position:absolute;
  5482. align-self:center;
  5483. padding:2px 2px 2px 0px;
  5484. box-sizing:border-box;
  5485. width:100%;
  5486. }
  5487. #u8790_text {
  5488. border-width:0px;
  5489. word-wrap:break-word;
  5490. text-transform:none;
  5491. visibility:hidden;
  5492. }
  5493. #u8791_img {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:147px;
  5499. height:38px;
  5500. }
  5501. #u8791 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:790px;
  5505. top:120px;
  5506. width:147px;
  5507. height:38px;
  5508. display:flex;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:12px;
  5513. color:#333333;
  5514. }
  5515. #u8791 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 2px 2px 0px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u8791_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u8792_img {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:173px;
  5534. height:38px;
  5535. }
  5536. #u8792 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:937px;
  5540. top:120px;
  5541. width:173px;
  5542. height:38px;
  5543. display:flex;
  5544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5545. font-weight:400;
  5546. font-style:normal;
  5547. font-size:12px;
  5548. color:#333333;
  5549. }
  5550. #u8792 .text {
  5551. position:absolute;
  5552. align-self:center;
  5553. padding:2px 2px 2px 0px;
  5554. box-sizing:border-box;
  5555. width:100%;
  5556. }
  5557. #u8792_text {
  5558. border-width:0px;
  5559. word-wrap:break-word;
  5560. text-transform:none;
  5561. visibility:hidden;
  5562. }
  5563. #u8793_img {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:110px;
  5569. height:38px;
  5570. }
  5571. #u8793 {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:1110px;
  5575. top:120px;
  5576. width:110px;
  5577. height:38px;
  5578. display:flex;
  5579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5580. font-weight:400;
  5581. font-style:normal;
  5582. font-size:12px;
  5583. color:#0089FE;
  5584. }
  5585. #u8793 .text {
  5586. position:absolute;
  5587. align-self:center;
  5588. padding:2px 2px 2px 0px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u8793_text {
  5593. border-width:0px;
  5594. word-wrap:break-word;
  5595. text-transform:none;
  5596. visibility:hidden;
  5597. }
  5598. #u8794_img {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:157px;
  5604. height:38px;
  5605. }
  5606. #u8794 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:158px;
  5611. width:157px;
  5612. height:38px;
  5613. display:flex;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:12px;
  5618. color:#333333;
  5619. }
  5620. #u8794 .text {
  5621. position:absolute;
  5622. align-self:center;
  5623. padding:2px 2px 2px 0px;
  5624. box-sizing:border-box;
  5625. width:100%;
  5626. }
  5627. #u8794_text {
  5628. border-width:0px;
  5629. word-wrap:break-word;
  5630. text-transform:none;
  5631. visibility:hidden;
  5632. }
  5633. #u8795_img {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:147px;
  5639. height:38px;
  5640. }
  5641. #u8795 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:157px;
  5645. top:158px;
  5646. width:147px;
  5647. height:38px;
  5648. display:flex;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:12px;
  5653. color:#333333;
  5654. }
  5655. #u8795 .text {
  5656. position:absolute;
  5657. align-self:center;
  5658. padding:2px 2px 2px 0px;
  5659. box-sizing:border-box;
  5660. width:100%;
  5661. }
  5662. #u8795_text {
  5663. border-width:0px;
  5664. word-wrap:break-word;
  5665. text-transform:none;
  5666. visibility:hidden;
  5667. }
  5668. #u8796_img {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:166px;
  5674. height:38px;
  5675. }
  5676. #u8796 {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:304px;
  5680. top:158px;
  5681. width:166px;
  5682. height:38px;
  5683. display:flex;
  5684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5685. font-weight:400;
  5686. font-style:normal;
  5687. font-size:12px;
  5688. color:#333333;
  5689. }
  5690. #u8796 .text {
  5691. position:absolute;
  5692. align-self:center;
  5693. padding:2px 2px 2px 0px;
  5694. box-sizing:border-box;
  5695. width:100%;
  5696. }
  5697. #u8796_text {
  5698. border-width:0px;
  5699. word-wrap:break-word;
  5700. text-transform:none;
  5701. visibility:hidden;
  5702. }
  5703. #u8797_img {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:147px;
  5709. height:38px;
  5710. }
  5711. #u8797 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:470px;
  5715. top:158px;
  5716. width:147px;
  5717. height:38px;
  5718. display:flex;
  5719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:12px;
  5723. color:#333333;
  5724. }
  5725. #u8797 .text {
  5726. position:absolute;
  5727. align-self:center;
  5728. padding:2px 2px 2px 0px;
  5729. box-sizing:border-box;
  5730. width:100%;
  5731. }
  5732. #u8797_text {
  5733. border-width:0px;
  5734. word-wrap:break-word;
  5735. text-transform:none;
  5736. visibility:hidden;
  5737. }
  5738. #u8798_img {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:173px;
  5744. height:38px;
  5745. }
  5746. #u8798 {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:617px;
  5750. top:158px;
  5751. width:173px;
  5752. height:38px;
  5753. display:flex;
  5754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5755. font-weight:400;
  5756. font-style:normal;
  5757. font-size:12px;
  5758. color:#333333;
  5759. }
  5760. #u8798 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 2px 2px 0px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u8798_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. visibility:hidden;
  5772. }
  5773. #u8799_img {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:147px;
  5779. height:38px;
  5780. }
  5781. #u8799 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:790px;
  5785. top:158px;
  5786. width:147px;
  5787. height:38px;
  5788. display:flex;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:12px;
  5793. color:#333333;
  5794. }
  5795. #u8799 .text {
  5796. position:absolute;
  5797. align-self:center;
  5798. padding:2px 2px 2px 0px;
  5799. box-sizing:border-box;
  5800. width:100%;
  5801. }
  5802. #u8799_text {
  5803. border-width:0px;
  5804. word-wrap:break-word;
  5805. text-transform:none;
  5806. visibility:hidden;
  5807. }
  5808. #u8800_img {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:0px;
  5812. top:0px;
  5813. width:173px;
  5814. height:38px;
  5815. }
  5816. #u8800 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:937px;
  5820. top:158px;
  5821. width:173px;
  5822. height:38px;
  5823. display:flex;
  5824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:12px;
  5828. color:#333333;
  5829. }
  5830. #u8800 .text {
  5831. position:absolute;
  5832. align-self:center;
  5833. padding:2px 2px 2px 0px;
  5834. box-sizing:border-box;
  5835. width:100%;
  5836. }
  5837. #u8800_text {
  5838. border-width:0px;
  5839. word-wrap:break-word;
  5840. text-transform:none;
  5841. visibility:hidden;
  5842. }
  5843. #u8801_img {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:110px;
  5849. height:38px;
  5850. }
  5851. #u8801 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:1110px;
  5855. top:158px;
  5856. width:110px;
  5857. height:38px;
  5858. display:flex;
  5859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:12px;
  5863. color:#AAAAAA;
  5864. }
  5865. #u8801 .text {
  5866. position:absolute;
  5867. align-self:center;
  5868. padding:2px 2px 2px 0px;
  5869. box-sizing:border-box;
  5870. width:100%;
  5871. }
  5872. #u8801_text {
  5873. border-width:0px;
  5874. word-wrap:break-word;
  5875. text-transform:none;
  5876. visibility:hidden;
  5877. }
  5878. #u8802_img {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:157px;
  5884. height:35px;
  5885. }
  5886. #u8802 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:196px;
  5891. width:157px;
  5892. height:35px;
  5893. display:flex;
  5894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:12px;
  5898. color:#333333;
  5899. }
  5900. #u8802 .text {
  5901. position:absolute;
  5902. align-self:center;
  5903. padding:2px 2px 2px 0px;
  5904. box-sizing:border-box;
  5905. width:100%;
  5906. }
  5907. #u8802_text {
  5908. border-width:0px;
  5909. word-wrap:break-word;
  5910. text-transform:none;
  5911. visibility:hidden;
  5912. }
  5913. #u8803_img {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:147px;
  5919. height:35px;
  5920. }
  5921. #u8803 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:157px;
  5925. top:196px;
  5926. width:147px;
  5927. height:35px;
  5928. display:flex;
  5929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:12px;
  5933. color:#333333;
  5934. }
  5935. #u8803 .text {
  5936. position:absolute;
  5937. align-self:center;
  5938. padding:2px 2px 2px 0px;
  5939. box-sizing:border-box;
  5940. width:100%;
  5941. }
  5942. #u8803_text {
  5943. border-width:0px;
  5944. word-wrap:break-word;
  5945. text-transform:none;
  5946. visibility:hidden;
  5947. }
  5948. #u8804_img {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:166px;
  5954. height:35px;
  5955. }
  5956. #u8804 {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:304px;
  5960. top:196px;
  5961. width:166px;
  5962. height:35px;
  5963. display:flex;
  5964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5965. font-weight:400;
  5966. font-style:normal;
  5967. font-size:12px;
  5968. color:#333333;
  5969. }
  5970. #u8804 .text {
  5971. position:absolute;
  5972. align-self:center;
  5973. padding:2px 2px 2px 0px;
  5974. box-sizing:border-box;
  5975. width:100%;
  5976. }
  5977. #u8804_text {
  5978. border-width:0px;
  5979. word-wrap:break-word;
  5980. text-transform:none;
  5981. visibility:hidden;
  5982. }
  5983. #u8805_img {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:0px;
  5987. top:0px;
  5988. width:147px;
  5989. height:35px;
  5990. }
  5991. #u8805 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:470px;
  5995. top:196px;
  5996. width:147px;
  5997. height:35px;
  5998. display:flex;
  5999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:12px;
  6003. color:#333333;
  6004. }
  6005. #u8805 .text {
  6006. position:absolute;
  6007. align-self:center;
  6008. padding:2px 2px 2px 0px;
  6009. box-sizing:border-box;
  6010. width:100%;
  6011. }
  6012. #u8805_text {
  6013. border-width:0px;
  6014. word-wrap:break-word;
  6015. text-transform:none;
  6016. visibility:hidden;
  6017. }
  6018. #u8806_img {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:0px;
  6022. top:0px;
  6023. width:173px;
  6024. height:35px;
  6025. }
  6026. #u8806 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:617px;
  6030. top:196px;
  6031. width:173px;
  6032. height:35px;
  6033. display:flex;
  6034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6035. font-weight:400;
  6036. font-style:normal;
  6037. font-size:12px;
  6038. color:#333333;
  6039. }
  6040. #u8806 .text {
  6041. position:absolute;
  6042. align-self:center;
  6043. padding:2px 2px 2px 0px;
  6044. box-sizing:border-box;
  6045. width:100%;
  6046. }
  6047. #u8806_text {
  6048. border-width:0px;
  6049. word-wrap:break-word;
  6050. text-transform:none;
  6051. visibility:hidden;
  6052. }
  6053. #u8807_img {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:147px;
  6059. height:35px;
  6060. }
  6061. #u8807 {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:790px;
  6065. top:196px;
  6066. width:147px;
  6067. height:35px;
  6068. display:flex;
  6069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6070. font-weight:400;
  6071. font-style:normal;
  6072. font-size:12px;
  6073. color:#333333;
  6074. }
  6075. #u8807 .text {
  6076. position:absolute;
  6077. align-self:center;
  6078. padding:2px 2px 2px 0px;
  6079. box-sizing:border-box;
  6080. width:100%;
  6081. }
  6082. #u8807_text {
  6083. border-width:0px;
  6084. word-wrap:break-word;
  6085. text-transform:none;
  6086. visibility:hidden;
  6087. }
  6088. #u8808_img {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:173px;
  6094. height:35px;
  6095. }
  6096. #u8808 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:937px;
  6100. top:196px;
  6101. width:173px;
  6102. height:35px;
  6103. display:flex;
  6104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:12px;
  6108. color:#333333;
  6109. }
  6110. #u8808 .text {
  6111. position:absolute;
  6112. align-self:center;
  6113. padding:2px 2px 2px 0px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u8808_text {
  6118. border-width:0px;
  6119. word-wrap:break-word;
  6120. text-transform:none;
  6121. visibility:hidden;
  6122. }
  6123. #u8809_img {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:0px;
  6127. top:0px;
  6128. width:110px;
  6129. height:35px;
  6130. }
  6131. #u8809 {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:1110px;
  6135. top:196px;
  6136. width:110px;
  6137. height:35px;
  6138. display:flex;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:12px;
  6143. color:#AAAAAA;
  6144. }
  6145. #u8809 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 0px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u8809_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. visibility:hidden;
  6157. }
  6158. #u8810_img {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:157px;
  6164. height:35px;
  6165. }
  6166. #u8810 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:231px;
  6171. width:157px;
  6172. height:35px;
  6173. display:flex;
  6174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6175. font-weight:400;
  6176. font-style:normal;
  6177. font-size:12px;
  6178. color:#333333;
  6179. }
  6180. #u8810 .text {
  6181. position:absolute;
  6182. align-self:center;
  6183. padding:2px 2px 2px 0px;
  6184. box-sizing:border-box;
  6185. width:100%;
  6186. }
  6187. #u8810_text {
  6188. border-width:0px;
  6189. word-wrap:break-word;
  6190. text-transform:none;
  6191. visibility:hidden;
  6192. }
  6193. #u8811_img {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:0px;
  6197. top:0px;
  6198. width:147px;
  6199. height:35px;
  6200. }
  6201. #u8811 {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:157px;
  6205. top:231px;
  6206. width:147px;
  6207. height:35px;
  6208. display:flex;
  6209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6210. font-weight:400;
  6211. font-style:normal;
  6212. font-size:12px;
  6213. color:#333333;
  6214. }
  6215. #u8811 .text {
  6216. position:absolute;
  6217. align-self:center;
  6218. padding:2px 2px 2px 0px;
  6219. box-sizing:border-box;
  6220. width:100%;
  6221. }
  6222. #u8811_text {
  6223. border-width:0px;
  6224. word-wrap:break-word;
  6225. text-transform:none;
  6226. visibility:hidden;
  6227. }
  6228. #u8812_img {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:0px;
  6232. top:0px;
  6233. width:166px;
  6234. height:35px;
  6235. }
  6236. #u8812 {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:304px;
  6240. top:231px;
  6241. width:166px;
  6242. height:35px;
  6243. display:flex;
  6244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:12px;
  6248. color:#333333;
  6249. }
  6250. #u8812 .text {
  6251. position:absolute;
  6252. align-self:center;
  6253. padding:2px 2px 2px 0px;
  6254. box-sizing:border-box;
  6255. width:100%;
  6256. }
  6257. #u8812_text {
  6258. border-width:0px;
  6259. word-wrap:break-word;
  6260. text-transform:none;
  6261. visibility:hidden;
  6262. }
  6263. #u8813_img {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:0px;
  6267. top:0px;
  6268. width:147px;
  6269. height:35px;
  6270. }
  6271. #u8813 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:470px;
  6275. top:231px;
  6276. width:147px;
  6277. height:35px;
  6278. display:flex;
  6279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6280. font-weight:400;
  6281. font-style:normal;
  6282. font-size:12px;
  6283. color:#333333;
  6284. }
  6285. #u8813 .text {
  6286. position:absolute;
  6287. align-self:center;
  6288. padding:2px 2px 2px 0px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u8813_text {
  6293. border-width:0px;
  6294. word-wrap:break-word;
  6295. text-transform:none;
  6296. visibility:hidden;
  6297. }
  6298. #u8814_img {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:173px;
  6304. height:35px;
  6305. }
  6306. #u8814 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:617px;
  6310. top:231px;
  6311. width:173px;
  6312. height:35px;
  6313. display:flex;
  6314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:12px;
  6318. color:#333333;
  6319. }
  6320. #u8814 .text {
  6321. position:absolute;
  6322. align-self:center;
  6323. padding:2px 2px 2px 0px;
  6324. box-sizing:border-box;
  6325. width:100%;
  6326. }
  6327. #u8814_text {
  6328. border-width:0px;
  6329. word-wrap:break-word;
  6330. text-transform:none;
  6331. visibility:hidden;
  6332. }
  6333. #u8815_img {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:147px;
  6339. height:35px;
  6340. }
  6341. #u8815 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:790px;
  6345. top:231px;
  6346. width:147px;
  6347. height:35px;
  6348. display:flex;
  6349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:12px;
  6353. color:#333333;
  6354. }
  6355. #u8815 .text {
  6356. position:absolute;
  6357. align-self:center;
  6358. padding:2px 2px 2px 0px;
  6359. box-sizing:border-box;
  6360. width:100%;
  6361. }
  6362. #u8815_text {
  6363. border-width:0px;
  6364. word-wrap:break-word;
  6365. text-transform:none;
  6366. visibility:hidden;
  6367. }
  6368. #u8816_img {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:173px;
  6374. height:35px;
  6375. }
  6376. #u8816 {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:937px;
  6380. top:231px;
  6381. width:173px;
  6382. height:35px;
  6383. display:flex;
  6384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6385. font-weight:400;
  6386. font-style:normal;
  6387. font-size:12px;
  6388. color:#333333;
  6389. }
  6390. #u8816 .text {
  6391. position:absolute;
  6392. align-self:center;
  6393. padding:2px 2px 2px 0px;
  6394. box-sizing:border-box;
  6395. width:100%;
  6396. }
  6397. #u8816_text {
  6398. border-width:0px;
  6399. word-wrap:break-word;
  6400. text-transform:none;
  6401. visibility:hidden;
  6402. }
  6403. #u8817_img {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:0px;
  6407. top:0px;
  6408. width:110px;
  6409. height:35px;
  6410. }
  6411. #u8817 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:1110px;
  6415. top:231px;
  6416. width:110px;
  6417. height:35px;
  6418. display:flex;
  6419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:12px;
  6423. color:#333333;
  6424. }
  6425. #u8817 .text {
  6426. position:absolute;
  6427. align-self:center;
  6428. padding:2px 2px 2px 0px;
  6429. box-sizing:border-box;
  6430. width:100%;
  6431. }
  6432. #u8817_text {
  6433. border-width:0px;
  6434. word-wrap:break-word;
  6435. text-transform:none;
  6436. visibility:hidden;
  6437. }
  6438. #u8818_img {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:157px;
  6444. height:32px;
  6445. }
  6446. #u8818 {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:266px;
  6451. width:157px;
  6452. height:32px;
  6453. display:flex;
  6454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6455. font-weight:400;
  6456. font-style:normal;
  6457. font-size:12px;
  6458. color:#333333;
  6459. }
  6460. #u8818 .text {
  6461. position:absolute;
  6462. align-self:center;
  6463. padding:2px 2px 2px 0px;
  6464. box-sizing:border-box;
  6465. width:100%;
  6466. }
  6467. #u8818_text {
  6468. border-width:0px;
  6469. word-wrap:break-word;
  6470. text-transform:none;
  6471. visibility:hidden;
  6472. }
  6473. #u8819_img {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:147px;
  6479. height:32px;
  6480. }
  6481. #u8819 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:157px;
  6485. top:266px;
  6486. width:147px;
  6487. height:32px;
  6488. display:flex;
  6489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6490. font-weight:400;
  6491. font-style:normal;
  6492. font-size:12px;
  6493. color:#333333;
  6494. }
  6495. #u8819 .text {
  6496. position:absolute;
  6497. align-self:center;
  6498. padding:2px 2px 2px 0px;
  6499. box-sizing:border-box;
  6500. width:100%;
  6501. }
  6502. #u8819_text {
  6503. border-width:0px;
  6504. word-wrap:break-word;
  6505. text-transform:none;
  6506. visibility:hidden;
  6507. }
  6508. #u8820_img {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:166px;
  6514. height:32px;
  6515. }
  6516. #u8820 {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:304px;
  6520. top:266px;
  6521. width:166px;
  6522. height:32px;
  6523. display:flex;
  6524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6525. font-weight:400;
  6526. font-style:normal;
  6527. font-size:12px;
  6528. color:#333333;
  6529. }
  6530. #u8820 .text {
  6531. position:absolute;
  6532. align-self:center;
  6533. padding:2px 2px 2px 0px;
  6534. box-sizing:border-box;
  6535. width:100%;
  6536. }
  6537. #u8820_text {
  6538. border-width:0px;
  6539. word-wrap:break-word;
  6540. text-transform:none;
  6541. visibility:hidden;
  6542. }
  6543. #u8821_img {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:147px;
  6549. height:32px;
  6550. }
  6551. #u8821 {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:470px;
  6555. top:266px;
  6556. width:147px;
  6557. height:32px;
  6558. display:flex;
  6559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6560. font-weight:400;
  6561. font-style:normal;
  6562. font-size:12px;
  6563. color:#333333;
  6564. }
  6565. #u8821 .text {
  6566. position:absolute;
  6567. align-self:center;
  6568. padding:2px 2px 2px 0px;
  6569. box-sizing:border-box;
  6570. width:100%;
  6571. }
  6572. #u8821_text {
  6573. border-width:0px;
  6574. word-wrap:break-word;
  6575. text-transform:none;
  6576. visibility:hidden;
  6577. }
  6578. #u8822_img {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:173px;
  6584. height:32px;
  6585. }
  6586. #u8822 {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:617px;
  6590. top:266px;
  6591. width:173px;
  6592. height:32px;
  6593. display:flex;
  6594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6595. font-weight:400;
  6596. font-style:normal;
  6597. font-size:12px;
  6598. color:#333333;
  6599. }
  6600. #u8822 .text {
  6601. position:absolute;
  6602. align-self:center;
  6603. padding:2px 2px 2px 0px;
  6604. box-sizing:border-box;
  6605. width:100%;
  6606. }
  6607. #u8822_text {
  6608. border-width:0px;
  6609. word-wrap:break-word;
  6610. text-transform:none;
  6611. visibility:hidden;
  6612. }
  6613. #u8823_img {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:0px;
  6617. top:0px;
  6618. width:147px;
  6619. height:32px;
  6620. }
  6621. #u8823 {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:790px;
  6625. top:266px;
  6626. width:147px;
  6627. height:32px;
  6628. display:flex;
  6629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:12px;
  6633. color:#333333;
  6634. }
  6635. #u8823 .text {
  6636. position:absolute;
  6637. align-self:center;
  6638. padding:2px 2px 2px 0px;
  6639. box-sizing:border-box;
  6640. width:100%;
  6641. }
  6642. #u8823_text {
  6643. border-width:0px;
  6644. word-wrap:break-word;
  6645. text-transform:none;
  6646. visibility:hidden;
  6647. }
  6648. #u8824_img {
  6649. border-width:0px;
  6650. position:absolute;
  6651. left:0px;
  6652. top:0px;
  6653. width:173px;
  6654. height:32px;
  6655. }
  6656. #u8824 {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:937px;
  6660. top:266px;
  6661. width:173px;
  6662. height:32px;
  6663. display:flex;
  6664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6665. font-weight:400;
  6666. font-style:normal;
  6667. font-size:12px;
  6668. color:#333333;
  6669. }
  6670. #u8824 .text {
  6671. position:absolute;
  6672. align-self:center;
  6673. padding:2px 2px 2px 0px;
  6674. box-sizing:border-box;
  6675. width:100%;
  6676. }
  6677. #u8824_text {
  6678. border-width:0px;
  6679. word-wrap:break-word;
  6680. text-transform:none;
  6681. visibility:hidden;
  6682. }
  6683. #u8825_img {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:0px;
  6687. top:0px;
  6688. width:110px;
  6689. height:32px;
  6690. }
  6691. #u8825 {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:1110px;
  6695. top:266px;
  6696. width:110px;
  6697. height:32px;
  6698. display:flex;
  6699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6700. font-weight:400;
  6701. font-style:normal;
  6702. font-size:12px;
  6703. color:#333333;
  6704. }
  6705. #u8825 .text {
  6706. position:absolute;
  6707. align-self:center;
  6708. padding:2px 2px 2px 0px;
  6709. box-sizing:border-box;
  6710. width:100%;
  6711. }
  6712. #u8825_text {
  6713. border-width:0px;
  6714. word-wrap:break-word;
  6715. text-transform:none;
  6716. visibility:hidden;
  6717. }
  6718. #u8826_img {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:157px;
  6724. height:30px;
  6725. }
  6726. #u8826 {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:298px;
  6731. width:157px;
  6732. height:30px;
  6733. display:flex;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:12px;
  6738. color:#333333;
  6739. }
  6740. #u8826 .text {
  6741. position:absolute;
  6742. align-self:center;
  6743. padding:2px 2px 2px 0px;
  6744. box-sizing:border-box;
  6745. width:100%;
  6746. }
  6747. #u8826_text {
  6748. border-width:0px;
  6749. word-wrap:break-word;
  6750. text-transform:none;
  6751. visibility:hidden;
  6752. }
  6753. #u8827_img {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:147px;
  6759. height:30px;
  6760. }
  6761. #u8827 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:157px;
  6765. top:298px;
  6766. width:147px;
  6767. height:30px;
  6768. display:flex;
  6769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. font-size:12px;
  6773. color:#333333;
  6774. }
  6775. #u8827 .text {
  6776. position:absolute;
  6777. align-self:center;
  6778. padding:2px 2px 2px 0px;
  6779. box-sizing:border-box;
  6780. width:100%;
  6781. }
  6782. #u8827_text {
  6783. border-width:0px;
  6784. word-wrap:break-word;
  6785. text-transform:none;
  6786. visibility:hidden;
  6787. }
  6788. #u8828_img {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:0px;
  6792. top:0px;
  6793. width:166px;
  6794. height:30px;
  6795. }
  6796. #u8828 {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:304px;
  6800. top:298px;
  6801. width:166px;
  6802. height:30px;
  6803. display:flex;
  6804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:12px;
  6808. color:#333333;
  6809. }
  6810. #u8828 .text {
  6811. position:absolute;
  6812. align-self:center;
  6813. padding:2px 2px 2px 0px;
  6814. box-sizing:border-box;
  6815. width:100%;
  6816. }
  6817. #u8828_text {
  6818. border-width:0px;
  6819. word-wrap:break-word;
  6820. text-transform:none;
  6821. visibility:hidden;
  6822. }
  6823. #u8829_img {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:147px;
  6829. height:30px;
  6830. }
  6831. #u8829 {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:470px;
  6835. top:298px;
  6836. width:147px;
  6837. height:30px;
  6838. display:flex;
  6839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6840. font-weight:400;
  6841. font-style:normal;
  6842. font-size:12px;
  6843. color:#333333;
  6844. }
  6845. #u8829 .text {
  6846. position:absolute;
  6847. align-self:center;
  6848. padding:2px 2px 2px 0px;
  6849. box-sizing:border-box;
  6850. width:100%;
  6851. }
  6852. #u8829_text {
  6853. border-width:0px;
  6854. word-wrap:break-word;
  6855. text-transform:none;
  6856. visibility:hidden;
  6857. }
  6858. #u8830_img {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:0px;
  6862. top:0px;
  6863. width:173px;
  6864. height:30px;
  6865. }
  6866. #u8830 {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:617px;
  6870. top:298px;
  6871. width:173px;
  6872. height:30px;
  6873. display:flex;
  6874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6875. font-weight:400;
  6876. font-style:normal;
  6877. font-size:12px;
  6878. color:#333333;
  6879. }
  6880. #u8830 .text {
  6881. position:absolute;
  6882. align-self:center;
  6883. padding:2px 2px 2px 0px;
  6884. box-sizing:border-box;
  6885. width:100%;
  6886. }
  6887. #u8830_text {
  6888. border-width:0px;
  6889. word-wrap:break-word;
  6890. text-transform:none;
  6891. visibility:hidden;
  6892. }
  6893. #u8831_img {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:147px;
  6899. height:30px;
  6900. }
  6901. #u8831 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:790px;
  6905. top:298px;
  6906. width:147px;
  6907. height:30px;
  6908. display:flex;
  6909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6910. font-weight:400;
  6911. font-style:normal;
  6912. font-size:12px;
  6913. color:#333333;
  6914. }
  6915. #u8831 .text {
  6916. position:absolute;
  6917. align-self:center;
  6918. padding:2px 2px 2px 0px;
  6919. box-sizing:border-box;
  6920. width:100%;
  6921. }
  6922. #u8831_text {
  6923. border-width:0px;
  6924. word-wrap:break-word;
  6925. text-transform:none;
  6926. visibility:hidden;
  6927. }
  6928. #u8832_img {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:0px;
  6932. top:0px;
  6933. width:173px;
  6934. height:30px;
  6935. }
  6936. #u8832 {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:937px;
  6940. top:298px;
  6941. width:173px;
  6942. height:30px;
  6943. display:flex;
  6944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:12px;
  6948. color:#333333;
  6949. }
  6950. #u8832 .text {
  6951. position:absolute;
  6952. align-self:center;
  6953. padding:2px 2px 2px 0px;
  6954. box-sizing:border-box;
  6955. width:100%;
  6956. }
  6957. #u8832_text {
  6958. border-width:0px;
  6959. word-wrap:break-word;
  6960. text-transform:none;
  6961. visibility:hidden;
  6962. }
  6963. #u8833_img {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:110px;
  6969. height:30px;
  6970. }
  6971. #u8833 {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:1110px;
  6975. top:298px;
  6976. width:110px;
  6977. height:30px;
  6978. display:flex;
  6979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:12px;
  6983. color:#333333;
  6984. }
  6985. #u8833 .text {
  6986. position:absolute;
  6987. align-self:center;
  6988. padding:2px 2px 2px 0px;
  6989. box-sizing:border-box;
  6990. width:100%;
  6991. }
  6992. #u8833_text {
  6993. border-width:0px;
  6994. word-wrap:break-word;
  6995. text-transform:none;
  6996. visibility:hidden;
  6997. }
  6998. #u8834 {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:0px;
  7003. width:0px;
  7004. height:0px;
  7005. }
  7006. #u8835_div {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:600px;
  7012. height:217px;
  7013. background:inherit;
  7014. background-color:rgba(255, 255, 255, 1);
  7015. box-sizing:border-box;
  7016. border-width:1px;
  7017. border-style:solid;
  7018. border-color:rgba(215, 215, 215, 1);
  7019. border-radius:4px;
  7020. -moz-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  7021. -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  7022. box-shadow:0px 0px 10px rgba(0, 0, 0, 0.349019607843137);
  7023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7024. font-weight:400;
  7025. font-style:normal;
  7026. font-size:14px;
  7027. color:#AAAAAA;
  7028. text-align:center;
  7029. line-height:30px;
  7030. }
  7031. #u8835 {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:898px;
  7035. top:723px;
  7036. width:600px;
  7037. height:217px;
  7038. display:flex;
  7039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7040. font-weight:400;
  7041. font-style:normal;
  7042. font-size:14px;
  7043. color:#AAAAAA;
  7044. text-align:center;
  7045. line-height:30px;
  7046. }
  7047. #u8835 .text {
  7048. position:absolute;
  7049. align-self:center;
  7050. padding:5px 10px 5px 10px;
  7051. box-sizing:border-box;
  7052. width:100%;
  7053. }
  7054. #u8835_text {
  7055. border-width:0px;
  7056. word-wrap:break-word;
  7057. text-transform:none;
  7058. visibility:hidden;
  7059. }
  7060. #u8836_div {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:83px;
  7066. height:35px;
  7067. background:inherit;
  7068. background-color:rgba(255, 255, 255, 0);
  7069. border:none;
  7070. border-top:0px;
  7071. border-right:0px;
  7072. border-bottom:0px;
  7073. border-radius:0px;
  7074. border-top-left-radius:0px;
  7075. border-bottom-left-radius:0px;
  7076. -moz-box-shadow:none;
  7077. -webkit-box-shadow:none;
  7078. box-shadow:none;
  7079. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7080. font-weight:500;
  7081. font-style:normal;
  7082. font-size:18px;
  7083. }
  7084. #u8836 {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:918px;
  7088. top:741px;
  7089. width:83px;
  7090. height:35px;
  7091. display:flex;
  7092. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7093. font-weight:500;
  7094. font-style:normal;
  7095. font-size:18px;
  7096. }
  7097. #u8836 .text {
  7098. position:absolute;
  7099. align-self:center;
  7100. padding:5px 10px 5px 0px;
  7101. box-sizing:border-box;
  7102. width:100%;
  7103. }
  7104. #u8836_text {
  7105. border-width:0px;
  7106. white-space:nowrap;
  7107. text-transform:none;
  7108. }
  7109. #u8837 {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:0px;
  7113. top:0px;
  7114. width:0px;
  7115. height:0px;
  7116. }
  7117. #u8838_div {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:600px;
  7123. height:60px;
  7124. background:inherit;
  7125. background-color:rgba(255, 255, 255, 1);
  7126. box-sizing:border-box;
  7127. border-width:1px;
  7128. border-style:solid;
  7129. border-color:rgba(215, 215, 215, 1);
  7130. border-radius:0px;
  7131. -moz-box-shadow:none;
  7132. -webkit-box-shadow:none;
  7133. box-shadow:none;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:14px;
  7138. color:#AAAAAA;
  7139. text-align:center;
  7140. line-height:30px;
  7141. }
  7142. #u8838 {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:898px;
  7146. top:880px;
  7147. width:600px;
  7148. height:60px;
  7149. display:flex;
  7150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:14px;
  7154. color:#AAAAAA;
  7155. text-align:center;
  7156. line-height:30px;
  7157. }
  7158. #u8838 .text {
  7159. position:absolute;
  7160. align-self:center;
  7161. padding:5px 10px 5px 10px;
  7162. box-sizing:border-box;
  7163. width:100%;
  7164. }
  7165. #u8838_text {
  7166. border-width:0px;
  7167. word-wrap:break-word;
  7168. text-transform:none;
  7169. visibility:hidden;
  7170. }
  7171. #u8839_div {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:80px;
  7177. height:30px;
  7178. background:inherit;
  7179. background-color:rgba(24, 144, 255, 1);
  7180. border:none;
  7181. border-radius:4px;
  7182. -moz-box-shadow:none;
  7183. -webkit-box-shadow:none;
  7184. box-shadow:none;
  7185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7186. font-weight:400;
  7187. font-style:normal;
  7188. font-size:14px;
  7189. color:#FFFFFF;
  7190. }
  7191. #u8839 {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:1388px;
  7195. top:895px;
  7196. width:80px;
  7197. height:30px;
  7198. display:flex;
  7199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7200. font-weight:400;
  7201. font-style:normal;
  7202. font-size:14px;
  7203. color:#FFFFFF;
  7204. }
  7205. #u8839 .text {
  7206. position:absolute;
  7207. align-self:center;
  7208. padding:2px 2px 2px 2px;
  7209. box-sizing:border-box;
  7210. width:100%;
  7211. }
  7212. #u8839_text {
  7213. border-width:0px;
  7214. word-wrap:break-word;
  7215. text-transform:none;
  7216. }
  7217. #u8840_div {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:0px;
  7221. top:0px;
  7222. width:80px;
  7223. height:30px;
  7224. background:inherit;
  7225. background-color:rgba(255, 255, 255, 1);
  7226. box-sizing:border-box;
  7227. border-width:1px;
  7228. border-style:solid;
  7229. border-color:rgba(170, 170, 170, 1);
  7230. border-radius:4px;
  7231. -moz-box-shadow:none;
  7232. -webkit-box-shadow:none;
  7233. box-shadow:none;
  7234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7235. font-weight:400;
  7236. font-style:normal;
  7237. font-size:14px;
  7238. }
  7239. #u8840 {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:1298px;
  7243. top:895px;
  7244. width:80px;
  7245. height:30px;
  7246. display:flex;
  7247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7248. font-weight:400;
  7249. font-style:normal;
  7250. font-size:14px;
  7251. }
  7252. #u8840 .text {
  7253. position:absolute;
  7254. align-self:center;
  7255. padding:2px 2px 2px 2px;
  7256. box-sizing:border-box;
  7257. width:100%;
  7258. }
  7259. #u8840_text {
  7260. border-width:0px;
  7261. word-wrap:break-word;
  7262. text-transform:none;
  7263. }
  7264. #u8841_div {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:0px;
  7268. top:0px;
  7269. width:81px;
  7270. height:40px;
  7271. background:inherit;
  7272. background-color:rgba(255, 255, 255, 0);
  7273. border:none;
  7274. border-top:0px;
  7275. border-right:0px;
  7276. border-bottom:0px;
  7277. border-radius:0px;
  7278. border-top-left-radius:0px;
  7279. border-bottom-left-radius:0px;
  7280. -moz-box-shadow:none;
  7281. -webkit-box-shadow:none;
  7282. box-shadow:none;
  7283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7284. font-weight:400;
  7285. font-style:normal;
  7286. font-size:14px;
  7287. color:#7F7F7F;
  7288. text-align:right;
  7289. }
  7290. #u8841 {
  7291. border-width:0px;
  7292. position:absolute;
  7293. left:938px;
  7294. top:799px;
  7295. width:81px;
  7296. height:40px;
  7297. display:flex;
  7298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7299. font-weight:400;
  7300. font-style:normal;
  7301. font-size:14px;
  7302. color:#7F7F7F;
  7303. text-align:right;
  7304. }
  7305. #u8841 .text {
  7306. position:absolute;
  7307. align-self:center;
  7308. padding:5px 10px 5px 0px;
  7309. box-sizing:border-box;
  7310. width:100%;
  7311. }
  7312. #u8841_text {
  7313. border-width:0px;
  7314. white-space:nowrap;
  7315. text-transform:none;
  7316. }
  7317. #u8842 {
  7318. border-width:0px;
  7319. position:absolute;
  7320. left:0px;
  7321. top:0px;
  7322. width:0px;
  7323. height:0px;
  7324. }
  7325. #u8843_div {
  7326. border-width:0px;
  7327. position:absolute;
  7328. left:0px;
  7329. top:0px;
  7330. width:445px;
  7331. height:40px;
  7332. background:inherit;
  7333. background-color:rgba(255, 255, 255, 1);
  7334. box-sizing:border-box;
  7335. border-width:1px;
  7336. border-style:solid;
  7337. border-color:rgba(215, 215, 215, 1);
  7338. border-radius:4px;
  7339. -moz-box-shadow:none;
  7340. -webkit-box-shadow:none;
  7341. box-shadow:none;
  7342. font-size:11px;
  7343. }
  7344. #u8843 {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:1012px;
  7348. top:799px;
  7349. width:445px;
  7350. height:40px;
  7351. display:flex;
  7352. font-size:11px;
  7353. }
  7354. #u8843 .text {
  7355. position:absolute;
  7356. align-self:center;
  7357. padding:2px 2px 2px 2px;
  7358. box-sizing:border-box;
  7359. width:100%;
  7360. }
  7361. #u8843_text {
  7362. border-width:0px;
  7363. word-wrap:break-word;
  7364. text-transform:none;
  7365. visibility:hidden;
  7366. }
  7367. #u8844_input {
  7368. position:absolute;
  7369. left:0px;
  7370. top:0px;
  7371. width:421px;
  7372. height:31px;
  7373. padding:2px 2px 2px 2px;
  7374. font-family:'ArialMT', 'Arial', sans-serif;
  7375. font-weight:400;
  7376. font-style:normal;
  7377. font-size:11px;
  7378. letter-spacing:normal;
  7379. color:#AAAAAA;
  7380. vertical-align:none;
  7381. text-align:left;
  7382. text-transform:none;
  7383. background-color:transparent;
  7384. border-color:transparent;
  7385. }
  7386. #u8844_input.disabled {
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:421px;
  7391. height:31px;
  7392. padding:2px 2px 2px 2px;
  7393. font-family:'ArialMT', 'Arial', sans-serif;
  7394. font-weight:400;
  7395. font-style:normal;
  7396. font-size:11px;
  7397. letter-spacing:normal;
  7398. color:#AAAAAA;
  7399. vertical-align:none;
  7400. text-align:left;
  7401. text-transform:none;
  7402. background-color:transparent;
  7403. border-color:transparent;
  7404. }
  7405. #u8844_div {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:0px;
  7409. top:0px;
  7410. width:421px;
  7411. height:31px;
  7412. background:inherit;
  7413. background-color:rgba(255, 255, 255, 1);
  7414. border:none;
  7415. border-radius:0px;
  7416. -moz-box-shadow:none;
  7417. -webkit-box-shadow:none;
  7418. box-shadow:none;
  7419. font-size:11px;
  7420. color:#AAAAAA;
  7421. }
  7422. #u8844 {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:1024px;
  7426. top:802px;
  7427. width:421px;
  7428. height:31px;
  7429. display:flex;
  7430. font-size:11px;
  7431. color:#AAAAAA;
  7432. }
  7433. #u8844 .text {
  7434. position:absolute;
  7435. align-self:flex-start;
  7436. padding:2px 2px 2px 2px;
  7437. box-sizing:border-box;
  7438. width:100%;
  7439. }
  7440. #u8844_div.disabled {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:0px;
  7444. top:0px;
  7445. width:421px;
  7446. height:31px;
  7447. background:inherit;
  7448. background-color:rgba(240, 240, 240, 1);
  7449. border:none;
  7450. border-radius:0px;
  7451. -moz-box-shadow:none;
  7452. -webkit-box-shadow:none;
  7453. box-shadow:none;
  7454. font-size:11px;
  7455. color:#AAAAAA;
  7456. }
  7457. #u8844.disabled {
  7458. }
  7459. .u8844_input_option {
  7460. font-size:11px;
  7461. }
  7462. #u8845_div {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:453px;
  7468. height:44px;
  7469. background:inherit;
  7470. background-color:rgba(255, 255, 255, 0);
  7471. border:none;
  7472. border-top:0px;
  7473. border-right:0px;
  7474. border-bottom:0px;
  7475. border-radius:0px;
  7476. border-top-left-radius:0px;
  7477. border-bottom-left-radius:0px;
  7478. -moz-box-shadow:none;
  7479. -webkit-box-shadow:none;
  7480. box-shadow:none;
  7481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7482. font-weight:400;
  7483. font-style:normal;
  7484. font-size:12px;
  7485. color:#D9001B;
  7486. }
  7487. #u8845 {
  7488. border-width:0px;
  7489. position:absolute;
  7490. left:1008px;
  7491. top:752px;
  7492. width:453px;
  7493. height:44px;
  7494. display:flex;
  7495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7496. font-weight:400;
  7497. font-style:normal;
  7498. font-size:12px;
  7499. color:#D9001B;
  7500. }
  7501. #u8845 .text {
  7502. position:absolute;
  7503. align-self:center;
  7504. padding:5px 10px 5px 0px;
  7505. box-sizing:border-box;
  7506. width:100%;
  7507. }
  7508. #u8845_text {
  7509. border-width:0px;
  7510. word-wrap:break-word;
  7511. text-transform:none;
  7512. }