styles.css 137 KB

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