styles.css 135 KB

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