styles.css 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059
  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. #u6463 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u6465_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. #u6465 {
  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. #u6465 .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. #u6465_text {
  63. border-width:0px;
  64. white-space:nowrap;
  65. text-transform:none;
  66. }
  67. #u6466_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. #u6466 {
  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. #u6466 .text {
  94. position:absolute;
  95. align-self:center;
  96. padding:2px 2px 2px 2px;
  97. box-sizing:border-box;
  98. width:100%;
  99. }
  100. #u6466_text {
  101. border-width:0px;
  102. word-wrap:break-word;
  103. text-transform:none;
  104. visibility:hidden;
  105. }
  106. #u6467 {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:0px;
  112. height:0px;
  113. }
  114. #u6468_img {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:31px;
  120. height:31px;
  121. }
  122. #u6468 {
  123. border-width:0px;
  124. position:absolute;
  125. left:19px;
  126. top:10px;
  127. width:31px;
  128. height:31px;
  129. display:flex;
  130. }
  131. #u6468 .text {
  132. position:absolute;
  133. align-self:center;
  134. padding:2px 2px 2px 2px;
  135. box-sizing:border-box;
  136. width:100%;
  137. }
  138. #u6468_text {
  139. border-width:0px;
  140. word-wrap:break-word;
  141. text-transform:none;
  142. }
  143. #u6469_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. #u6469 {
  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. #u6469 .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. #u6469_text {
  185. border-width:0px;
  186. white-space:nowrap;
  187. text-transform:none;
  188. }
  189. #u6470_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. #u6470 {
  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. #u6470 .text {
  216. position:absolute;
  217. align-self:center;
  218. padding:2px 2px 2px 2px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u6470_text {
  223. border-width:0px;
  224. word-wrap:break-word;
  225. text-transform:none;
  226. visibility:hidden;
  227. }
  228. #u6471_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. #u6471 {
  244. border-width:0px;
  245. position:absolute;
  246. left:120px;
  247. top:50px;
  248. width:1480px;
  249. height:1200px;
  250. display:flex;
  251. }
  252. #u6471 .text {
  253. position:absolute;
  254. align-self:center;
  255. padding:2px 2px 2px 2px;
  256. box-sizing:border-box;
  257. width:100%;
  258. }
  259. #u6471_text {
  260. border-width:0px;
  261. word-wrap:break-word;
  262. text-transform:none;
  263. visibility:hidden;
  264. }
  265. #u6472 {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:0px;
  271. height:0px;
  272. }
  273. #u6473_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. #u6473 {
  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. #u6473 .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. #u6473_text {
  315. border-width:0px;
  316. white-space:nowrap;
  317. text-transform:none;
  318. }
  319. #u6474_img {
  320. border-width:0px;
  321. position:absolute;
  322. left:0px;
  323. top:0px;
  324. width:14px;
  325. height:14px;
  326. }
  327. #u6474 {
  328. border-width:0px;
  329. position:absolute;
  330. left:20px;
  331. top:71px;
  332. width:14px;
  333. height:14px;
  334. display:flex;
  335. }
  336. #u6474 .text {
  337. position:absolute;
  338. align-self:center;
  339. padding:2px 2px 2px 2px;
  340. box-sizing:border-box;
  341. width:100%;
  342. }
  343. #u6474_text {
  344. border-width:0px;
  345. word-wrap:break-word;
  346. text-transform:none;
  347. visibility:hidden;
  348. }
  349. #u6475 {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:0px;
  355. height:0px;
  356. }
  357. #u6476_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. #u6476 {
  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. #u6476 .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. #u6476_text {
  399. border-width:0px;
  400. white-space:nowrap;
  401. text-transform:none;
  402. }
  403. #u6477_img {
  404. border-width:0px;
  405. position:absolute;
  406. left:0px;
  407. top:0px;
  408. width:14px;
  409. height:14px;
  410. }
  411. #u6477 {
  412. border-width:0px;
  413. position:absolute;
  414. left:20px;
  415. top:113px;
  416. width:14px;
  417. height:14px;
  418. display:flex;
  419. }
  420. #u6477 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u6477_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u6478 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u6479_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. #u6479 {
  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. #u6479 .text {
  474. position:absolute;
  475. align-self:center;
  476. padding:0px 0px 0px 0px;
  477. box-sizing:border-box;
  478. width:100%;
  479. }
  480. #u6479_text {
  481. border-width:0px;
  482. white-space:nowrap;
  483. text-transform:none;
  484. }
  485. #u6480_img {
  486. border-width:0px;
  487. position:absolute;
  488. left:0px;
  489. top:0px;
  490. width:22px;
  491. height:22px;
  492. }
  493. #u6480 {
  494. border-width:0px;
  495. position:absolute;
  496. left:27px;
  497. top:1140px;
  498. width:22px;
  499. height:22px;
  500. display:flex;
  501. }
  502. #u6480 .text {
  503. position:absolute;
  504. align-self:center;
  505. padding:2px 2px 2px 2px;
  506. box-sizing:border-box;
  507. width:100%;
  508. }
  509. #u6480_text {
  510. border-width:0px;
  511. word-wrap:break-word;
  512. text-transform:none;
  513. visibility:hidden;
  514. }
  515. #u6481 {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:0px;
  521. height:0px;
  522. }
  523. #u6482_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. #u6482 {
  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. #u6482 .text {
  556. position:absolute;
  557. align-self:center;
  558. padding:0px 0px 0px 0px;
  559. box-sizing:border-box;
  560. width:100%;
  561. }
  562. #u6482_text {
  563. border-width:0px;
  564. white-space:nowrap;
  565. text-transform:none;
  566. }
  567. #u6483_img {
  568. border-width:0px;
  569. position:absolute;
  570. left:0px;
  571. top:0px;
  572. width:22px;
  573. height:22px;
  574. }
  575. #u6483 {
  576. border-width:0px;
  577. position:absolute;
  578. left:27px;
  579. top:1182px;
  580. width:22px;
  581. height:22px;
  582. display:flex;
  583. }
  584. #u6483 .text {
  585. position:absolute;
  586. align-self:center;
  587. padding:2px 2px 2px 2px;
  588. box-sizing:border-box;
  589. width:100%;
  590. }
  591. #u6483_text {
  592. border-width:0px;
  593. word-wrap:break-word;
  594. text-transform:none;
  595. visibility:hidden;
  596. }
  597. #u6484 {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:0px;
  603. height:0px;
  604. }
  605. #u6485_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. #u6485 {
  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. #u6485 .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. #u6485_text {
  647. border-width:0px;
  648. white-space:nowrap;
  649. text-transform:none;
  650. }
  651. #u6486_img {
  652. border-width:0px;
  653. position:absolute;
  654. left:0px;
  655. top:0px;
  656. width:14px;
  657. height:14px;
  658. }
  659. #u6486 {
  660. border-width:0px;
  661. position:absolute;
  662. left:20px;
  663. top:281px;
  664. width:14px;
  665. height:14px;
  666. display:flex;
  667. }
  668. #u6486 .text {
  669. position:absolute;
  670. align-self:center;
  671. padding:2px 2px 2px 2px;
  672. box-sizing:border-box;
  673. width:100%;
  674. }
  675. #u6486_text {
  676. border-width:0px;
  677. word-wrap:break-word;
  678. text-transform:none;
  679. visibility:hidden;
  680. }
  681. #u6487 {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:0px;
  687. height:0px;
  688. }
  689. #u6488_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. #u6488 {
  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. #u6488 .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. #u6488_text {
  731. border-width:0px;
  732. white-space:nowrap;
  733. text-transform:none;
  734. }
  735. #u6489_img {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:14px;
  741. height:14px;
  742. }
  743. #u6489 {
  744. border-width:0px;
  745. position:absolute;
  746. left:20px;
  747. top:239px;
  748. width:14px;
  749. height:14px;
  750. display:flex;
  751. }
  752. #u6489 .text {
  753. position:absolute;
  754. align-self:center;
  755. padding:2px 2px 2px 2px;
  756. box-sizing:border-box;
  757. width:100%;
  758. }
  759. #u6489_text {
  760. border-width:0px;
  761. word-wrap:break-word;
  762. text-transform:none;
  763. visibility:hidden;
  764. }
  765. #u6490 {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:0px;
  771. height:0px;
  772. }
  773. #u6491_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. #u6491 {
  794. border-width:0px;
  795. position:absolute;
  796. left:39px;
  797. top:445px;
  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. #u6491 .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. #u6491_text {
  815. border-width:0px;
  816. white-space:nowrap;
  817. text-transform:none;
  818. }
  819. #u6492_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:14px;
  825. height:14px;
  826. }
  827. #u6492 {
  828. border-width:0px;
  829. position:absolute;
  830. left:20px;
  831. top:449px;
  832. width:14px;
  833. height:14px;
  834. display:flex;
  835. }
  836. #u6492 .text {
  837. position:absolute;
  838. align-self:center;
  839. padding:2px 2px 2px 2px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u6492_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. visibility:hidden;
  848. }
  849. #u6493 {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:0px;
  855. height:0px;
  856. }
  857. #u6494_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. #u6494 {
  878. border-width:0px;
  879. position:absolute;
  880. left:39px;
  881. top:487px;
  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. #u6494 .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. #u6494_text {
  899. border-width:0px;
  900. white-space:nowrap;
  901. text-transform:none;
  902. }
  903. #u6495_img {
  904. border-width:0px;
  905. position:absolute;
  906. left:0px;
  907. top:0px;
  908. width:14px;
  909. height:14px;
  910. }
  911. #u6495 {
  912. border-width:0px;
  913. position:absolute;
  914. left:20px;
  915. top:491px;
  916. width:14px;
  917. height:14px;
  918. display:flex;
  919. }
  920. #u6495 .text {
  921. position:absolute;
  922. align-self:center;
  923. padding:2px 2px 2px 2px;
  924. box-sizing:border-box;
  925. width:100%;
  926. }
  927. #u6495_text {
  928. border-width:0px;
  929. word-wrap:break-word;
  930. text-transform:none;
  931. visibility:hidden;
  932. }
  933. #u6496 {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:0px;
  939. height:0px;
  940. }
  941. #u6497_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. #u6497 {
  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. #u6497 .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. #u6497_text {
  983. border-width:0px;
  984. white-space:nowrap;
  985. text-transform:none;
  986. }
  987. #u6498_img {
  988. border-width:0px;
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:14px;
  993. height:14px;
  994. }
  995. #u6498 {
  996. border-width:0px;
  997. position:absolute;
  998. left:20px;
  999. top:575px;
  1000. width:14px;
  1001. height:14px;
  1002. display:flex;
  1003. }
  1004. #u6498 .text {
  1005. position:absolute;
  1006. align-self:center;
  1007. padding:2px 2px 2px 2px;
  1008. box-sizing:border-box;
  1009. width:100%;
  1010. }
  1011. #u6498_text {
  1012. border-width:0px;
  1013. word-wrap:break-word;
  1014. text-transform:none;
  1015. visibility:hidden;
  1016. }
  1017. #u6499 {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:0px;
  1023. height:0px;
  1024. }
  1025. #u6500_input {
  1026. position:absolute;
  1027. left:0px;
  1028. top:0px;
  1029. width:214px;
  1030. height:27px;
  1031. padding:2px 2px 2px 2px;
  1032. font-family:'ArialMT', 'Arial', sans-serif;
  1033. font-weight:400;
  1034. font-style:normal;
  1035. font-size:14px;
  1036. letter-spacing:normal;
  1037. color:#FFFFFF;
  1038. vertical-align:none;
  1039. text-align:left;
  1040. text-transform:none;
  1041. background-color:transparent;
  1042. border-color:transparent;
  1043. }
  1044. #u6500_input.disabled {
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:214px;
  1049. height:27px;
  1050. padding:2px 2px 2px 2px;
  1051. font-family:'ArialMT', 'Arial', sans-serif;
  1052. font-weight:400;
  1053. font-style:normal;
  1054. font-size:14px;
  1055. letter-spacing:normal;
  1056. color:#FFFFFF;
  1057. vertical-align:none;
  1058. text-align:left;
  1059. text-transform:none;
  1060. background-color:transparent;
  1061. border-color:transparent;
  1062. }
  1063. #u6500_div {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:214px;
  1069. height:27px;
  1070. background:inherit;
  1071. background-color:rgba(255, 255, 255, 0);
  1072. border:none;
  1073. border-radius:0px;
  1074. -moz-box-shadow:none;
  1075. -webkit-box-shadow:none;
  1076. box-shadow:none;
  1077. font-size:14px;
  1078. color:#FFFFFF;
  1079. }
  1080. #u6500 {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:1221px;
  1084. top:11px;
  1085. width:214px;
  1086. height:27px;
  1087. display:flex;
  1088. font-size:14px;
  1089. color:#FFFFFF;
  1090. }
  1091. #u6500 .text {
  1092. position:absolute;
  1093. align-self:flex-start;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u6500_div.disabled {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:214px;
  1104. height:27px;
  1105. background:inherit;
  1106. background-color:rgba(240, 240, 240, 1);
  1107. border:none;
  1108. border-radius:0px;
  1109. -moz-box-shadow:none;
  1110. -webkit-box-shadow:none;
  1111. box-shadow:none;
  1112. font-size:14px;
  1113. color:#FFFFFF;
  1114. }
  1115. #u6500.disabled {
  1116. }
  1117. .u6500_input_option {
  1118. font-size:14px;
  1119. }
  1120. #u6501_img {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:22px;
  1126. height:22px;
  1127. }
  1128. #u6501 {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:1194px;
  1132. top:14px;
  1133. width:22px;
  1134. height:22px;
  1135. display:flex;
  1136. }
  1137. #u6501 .text {
  1138. position:absolute;
  1139. align-self:center;
  1140. padding:2px 2px 2px 2px;
  1141. box-sizing:border-box;
  1142. width:100%;
  1143. }
  1144. #u6501_text {
  1145. border-width:0px;
  1146. word-wrap:break-word;
  1147. text-transform:none;
  1148. visibility:hidden;
  1149. }
  1150. #u6502_div {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:0px;
  1154. top:0px;
  1155. width:100px;
  1156. height:24px;
  1157. background:inherit;
  1158. background-color:rgba(242, 242, 242, 0.2);
  1159. border:none;
  1160. border-radius:25px;
  1161. -moz-box-shadow:none;
  1162. -webkit-box-shadow:none;
  1163. box-shadow:none;
  1164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1165. font-weight:400;
  1166. font-style:normal;
  1167. color:#FFFFFF;
  1168. text-align:center;
  1169. }
  1170. #u6502 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:1480px;
  1174. top:13px;
  1175. width:100px;
  1176. height:24px;
  1177. display:flex;
  1178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1179. font-weight:400;
  1180. font-style:normal;
  1181. color:#FFFFFF;
  1182. text-align:center;
  1183. }
  1184. #u6502 .text {
  1185. position:absolute;
  1186. align-self:center;
  1187. padding:0px 0px 0px 0px;
  1188. box-sizing:border-box;
  1189. width:100%;
  1190. }
  1191. #u6502_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. }
  1196. #u6503_img {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:2px;
  1202. height:12px;
  1203. }
  1204. #u6503 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:1452px;
  1208. top:19px;
  1209. width:1px;
  1210. height:11px;
  1211. display:flex;
  1212. }
  1213. #u6503 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:2px 2px 2px 2px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u6503_text {
  1221. border-width:0px;
  1222. word-wrap:break-word;
  1223. text-transform:none;
  1224. visibility:hidden;
  1225. }
  1226. #u6504 {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:0px;
  1232. height:0px;
  1233. }
  1234. #u6505_div {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:33px;
  1240. height:22px;
  1241. background:inherit;
  1242. background-color:rgba(255, 255, 255, 0);
  1243. border:none;
  1244. border-radius:0px;
  1245. -moz-box-shadow:none;
  1246. -webkit-box-shadow:none;
  1247. box-shadow:none;
  1248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1249. font-weight:400;
  1250. font-style:normal;
  1251. font-size:16px;
  1252. color:#FFFFFF;
  1253. }
  1254. #u6505 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:39px;
  1258. top:361px;
  1259. width:33px;
  1260. height:22px;
  1261. display:flex;
  1262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1263. font-weight:400;
  1264. font-style:normal;
  1265. font-size:16px;
  1266. color:#FFFFFF;
  1267. }
  1268. #u6505 .text {
  1269. position:absolute;
  1270. align-self:flex-start;
  1271. padding:0px 0px 0px 0px;
  1272. box-sizing:border-box;
  1273. width:100%;
  1274. }
  1275. #u6505_text {
  1276. border-width:0px;
  1277. white-space:nowrap;
  1278. text-transform:none;
  1279. }
  1280. #u6506_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:14px;
  1286. height:14px;
  1287. }
  1288. #u6506 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:20px;
  1292. top:365px;
  1293. width:14px;
  1294. height:14px;
  1295. display:flex;
  1296. }
  1297. #u6506 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u6506_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u6507 {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:0px;
  1316. height:0px;
  1317. }
  1318. #u6508_div {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:0px;
  1322. top:0px;
  1323. width:33px;
  1324. height:22px;
  1325. background:inherit;
  1326. background-color:rgba(255, 255, 255, 0);
  1327. border:none;
  1328. border-radius:0px;
  1329. -moz-box-shadow:none;
  1330. -webkit-box-shadow:none;
  1331. box-shadow:none;
  1332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1333. font-weight:400;
  1334. font-style:normal;
  1335. font-size:16px;
  1336. color:#FFFFFF;
  1337. }
  1338. #u6508 {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:39px;
  1342. top:319px;
  1343. width:33px;
  1344. height:22px;
  1345. display:flex;
  1346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1347. font-weight:400;
  1348. font-style:normal;
  1349. font-size:16px;
  1350. color:#FFFFFF;
  1351. }
  1352. #u6508 .text {
  1353. position:absolute;
  1354. align-self:flex-start;
  1355. padding:0px 0px 0px 0px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u6508_text {
  1360. border-width:0px;
  1361. white-space:nowrap;
  1362. text-transform:none;
  1363. }
  1364. #u6509_img {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:14px;
  1370. height:14px;
  1371. }
  1372. #u6509 {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:20px;
  1376. top:323px;
  1377. width:14px;
  1378. height:14px;
  1379. display:flex;
  1380. }
  1381. #u6509 .text {
  1382. position:absolute;
  1383. align-self:center;
  1384. padding:2px 2px 2px 2px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u6509_text {
  1389. border-width:0px;
  1390. word-wrap:break-word;
  1391. text-transform:none;
  1392. visibility:hidden;
  1393. }
  1394. #u6510 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:0px;
  1400. height:0px;
  1401. }
  1402. #u6511_div {
  1403. border-width:0px;
  1404. position:absolute;
  1405. left:0px;
  1406. top:0px;
  1407. width:33px;
  1408. height:22px;
  1409. background:inherit;
  1410. background-color:rgba(255, 255, 255, 0);
  1411. border:none;
  1412. border-radius:0px;
  1413. -moz-box-shadow:none;
  1414. -webkit-box-shadow:none;
  1415. box-shadow:none;
  1416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1417. font-weight:400;
  1418. font-style:normal;
  1419. font-size:16px;
  1420. color:#FFFFFF;
  1421. }
  1422. #u6511 {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:39px;
  1426. top:151px;
  1427. width:33px;
  1428. height:22px;
  1429. display:flex;
  1430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1431. font-weight:400;
  1432. font-style:normal;
  1433. font-size:16px;
  1434. color:#FFFFFF;
  1435. }
  1436. #u6511 .text {
  1437. position:absolute;
  1438. align-self:flex-start;
  1439. padding:0px 0px 0px 0px;
  1440. box-sizing:border-box;
  1441. width:100%;
  1442. }
  1443. #u6511_text {
  1444. border-width:0px;
  1445. white-space:nowrap;
  1446. text-transform:none;
  1447. }
  1448. #u6512_img {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:14px;
  1454. height:14px;
  1455. }
  1456. #u6512 {
  1457. border-width:0px;
  1458. position:absolute;
  1459. left:20px;
  1460. top:155px;
  1461. width:14px;
  1462. height:14px;
  1463. display:flex;
  1464. }
  1465. #u6512 .text {
  1466. position:absolute;
  1467. align-self:center;
  1468. padding:2px 2px 2px 2px;
  1469. box-sizing:border-box;
  1470. width:100%;
  1471. }
  1472. #u6512_text {
  1473. border-width:0px;
  1474. word-wrap:break-word;
  1475. text-transform:none;
  1476. visibility:hidden;
  1477. }
  1478. #u6513 {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:0px;
  1484. height:0px;
  1485. }
  1486. #u6514_div {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:0px;
  1490. top:0px;
  1491. width:33px;
  1492. height:22px;
  1493. background:inherit;
  1494. background-color:rgba(255, 255, 255, 0);
  1495. border:none;
  1496. border-radius:0px;
  1497. -moz-box-shadow:none;
  1498. -webkit-box-shadow:none;
  1499. box-shadow:none;
  1500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1501. font-weight:400;
  1502. font-style:normal;
  1503. font-size:16px;
  1504. color:#FFFFFF;
  1505. }
  1506. #u6514 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:39px;
  1510. top:529px;
  1511. width:33px;
  1512. height:22px;
  1513. display:flex;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:16px;
  1518. color:#FFFFFF;
  1519. }
  1520. #u6514 .text {
  1521. position:absolute;
  1522. align-self:flex-start;
  1523. padding:0px 0px 0px 0px;
  1524. box-sizing:border-box;
  1525. width:100%;
  1526. }
  1527. #u6514_text {
  1528. border-width:0px;
  1529. white-space:nowrap;
  1530. text-transform:none;
  1531. }
  1532. #u6515_img {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:14px;
  1538. height:14px;
  1539. }
  1540. #u6515 {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:20px;
  1544. top:533px;
  1545. width:14px;
  1546. height:14px;
  1547. display:flex;
  1548. }
  1549. #u6515 .text {
  1550. position:absolute;
  1551. align-self:center;
  1552. padding:2px 2px 2px 2px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u6515_text {
  1557. border-width:0px;
  1558. word-wrap:break-word;
  1559. text-transform:none;
  1560. visibility:hidden;
  1561. }
  1562. #u6516 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:0px;
  1568. height:0px;
  1569. }
  1570. #u6517_div {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:0px;
  1574. top:0px;
  1575. width:33px;
  1576. height:22px;
  1577. background:inherit;
  1578. background-color:rgba(255, 255, 255, 0);
  1579. border:none;
  1580. border-radius:0px;
  1581. -moz-box-shadow:none;
  1582. -webkit-box-shadow:none;
  1583. box-shadow:none;
  1584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1585. font-weight:400;
  1586. font-style:normal;
  1587. font-size:16px;
  1588. color:#FFFFFF;
  1589. }
  1590. #u6517 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:39px;
  1594. top:193px;
  1595. width:33px;
  1596. height:22px;
  1597. display:flex;
  1598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1599. font-weight:400;
  1600. font-style:normal;
  1601. font-size:16px;
  1602. color:#FFFFFF;
  1603. }
  1604. #u6517 .text {
  1605. position:absolute;
  1606. align-self:flex-start;
  1607. padding:0px 0px 0px 0px;
  1608. box-sizing:border-box;
  1609. width:100%;
  1610. }
  1611. #u6517_text {
  1612. border-width:0px;
  1613. white-space:nowrap;
  1614. text-transform:none;
  1615. }
  1616. #u6518_img {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:14px;
  1622. height:14px;
  1623. }
  1624. #u6518 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:20px;
  1628. top:197px;
  1629. width:14px;
  1630. height:14px;
  1631. display:flex;
  1632. }
  1633. #u6518 .text {
  1634. position:absolute;
  1635. align-self:center;
  1636. padding:2px 2px 2px 2px;
  1637. box-sizing:border-box;
  1638. width:100%;
  1639. }
  1640. #u6518_text {
  1641. border-width:0px;
  1642. word-wrap:break-word;
  1643. text-transform:none;
  1644. visibility:hidden;
  1645. }
  1646. #u6519 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:0px;
  1652. height:0px;
  1653. }
  1654. #u6520_div {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:33px;
  1660. height:22px;
  1661. background:inherit;
  1662. background-color:rgba(255, 255, 255, 0);
  1663. border:none;
  1664. border-radius:0px;
  1665. -moz-box-shadow:none;
  1666. -webkit-box-shadow:none;
  1667. box-shadow:none;
  1668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1669. font-weight:400;
  1670. font-style:normal;
  1671. font-size:16px;
  1672. color:#FFFFFF;
  1673. }
  1674. #u6520 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:39px;
  1678. top:403px;
  1679. width:33px;
  1680. height:22px;
  1681. display:flex;
  1682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1683. font-weight:400;
  1684. font-style:normal;
  1685. font-size:16px;
  1686. color:#FFFFFF;
  1687. }
  1688. #u6520 .text {
  1689. position:absolute;
  1690. align-self:flex-start;
  1691. padding:0px 0px 0px 0px;
  1692. box-sizing:border-box;
  1693. width:100%;
  1694. }
  1695. #u6520_text {
  1696. border-width:0px;
  1697. white-space:nowrap;
  1698. text-transform:none;
  1699. }
  1700. #u6521_img {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:0px;
  1704. top:0px;
  1705. width:14px;
  1706. height:14px;
  1707. }
  1708. #u6521 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:20px;
  1712. top:407px;
  1713. width:14px;
  1714. height:14px;
  1715. display:flex;
  1716. }
  1717. #u6521 .text {
  1718. position:absolute;
  1719. align-self:center;
  1720. padding:2px 2px 2px 2px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u6521_text {
  1725. border-width:0px;
  1726. word-wrap:break-word;
  1727. text-transform:none;
  1728. visibility:hidden;
  1729. }
  1730. #u6522_div {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:1255px;
  1736. height:100px;
  1737. background:inherit;
  1738. background-color:rgba(255, 255, 255, 1);
  1739. border:none;
  1740. border-radius:0px;
  1741. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1742. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1743. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1744. }
  1745. #u6522 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:332px;
  1749. top:50px;
  1750. width:1255px;
  1751. height:100px;
  1752. display:flex;
  1753. }
  1754. #u6522 .text {
  1755. position:absolute;
  1756. align-self:center;
  1757. padding:2px 2px 2px 2px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u6522_text {
  1762. border-width:0px;
  1763. word-wrap:break-word;
  1764. text-transform:none;
  1765. visibility:hidden;
  1766. }
  1767. #u6523 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:0px;
  1773. height:0px;
  1774. }
  1775. #u6524_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:200px;
  1781. height:1192px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 1);
  1784. border:none;
  1785. border-radius:0px;
  1786. -moz-box-shadow:none;
  1787. -webkit-box-shadow:none;
  1788. box-shadow:none;
  1789. }
  1790. #u6524 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:120px;
  1794. top:50px;
  1795. width:200px;
  1796. height:1192px;
  1797. display:flex;
  1798. }
  1799. #u6524 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 2px 2px 2px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u6524_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. visibility:hidden;
  1811. }
  1812. #u6525_div {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:200px;
  1818. height:60px;
  1819. background:inherit;
  1820. background-color:rgba(224, 231, 247, 1);
  1821. border:none;
  1822. border-radius:0px;
  1823. -moz-box-shadow:none;
  1824. -webkit-box-shadow:none;
  1825. box-shadow:none;
  1826. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1827. font-weight:500;
  1828. font-style:normal;
  1829. font-size:18px;
  1830. }
  1831. #u6525 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:120px;
  1835. top:50px;
  1836. width:200px;
  1837. height:60px;
  1838. display:flex;
  1839. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1840. font-weight:500;
  1841. font-style:normal;
  1842. font-size:18px;
  1843. }
  1844. #u6525 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:0px 0px 0px 20px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u6525_text {
  1852. border-width:0px;
  1853. word-wrap:break-word;
  1854. text-transform:none;
  1855. }
  1856. #u6526_div {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:65px;
  1862. height:22px;
  1863. background:inherit;
  1864. background-color:rgba(255, 255, 255, 0);
  1865. border:none;
  1866. border-radius:0px;
  1867. -moz-box-shadow:none;
  1868. -webkit-box-shadow:none;
  1869. box-shadow:none;
  1870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1871. font-weight:400;
  1872. font-style:normal;
  1873. font-size:16px;
  1874. }
  1875. #u6526 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:147px;
  1879. top:166px;
  1880. width:65px;
  1881. height:22px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:16px;
  1887. }
  1888. #u6526 .text {
  1889. position:absolute;
  1890. align-self:flex-start;
  1891. padding:0px 0px 0px 0px;
  1892. box-sizing:border-box;
  1893. width:100%;
  1894. }
  1895. #u6526_text {
  1896. border-width:0px;
  1897. white-space:nowrap;
  1898. text-transform:none;
  1899. }
  1900. #u6527_div {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:65px;
  1906. height:22px;
  1907. background:inherit;
  1908. background-color:rgba(255, 255, 255, 0);
  1909. border:none;
  1910. border-radius:0px;
  1911. -moz-box-shadow:none;
  1912. -webkit-box-shadow:none;
  1913. box-shadow:none;
  1914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:16px;
  1918. }
  1919. #u6527 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:147px;
  1923. top:357px;
  1924. width:65px;
  1925. height:22px;
  1926. display:flex;
  1927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1928. font-weight:400;
  1929. font-style:normal;
  1930. font-size:16px;
  1931. }
  1932. #u6527 .text {
  1933. position:absolute;
  1934. align-self:flex-start;
  1935. padding:0px 0px 0px 0px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u6527_text {
  1940. border-width:0px;
  1941. white-space:nowrap;
  1942. text-transform:none;
  1943. }
  1944. #u6528_div {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:49px;
  1950. height:17px;
  1951. background:inherit;
  1952. background-color:rgba(255, 255, 255, 0);
  1953. border:none;
  1954. border-radius:0px;
  1955. -moz-box-shadow:none;
  1956. -webkit-box-shadow:none;
  1957. box-shadow:none;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. font-size:12px;
  1962. color:#AAAAAA;
  1963. }
  1964. #u6528 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:147px;
  1968. top:130px;
  1969. width:49px;
  1970. height:17px;
  1971. display:flex;
  1972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1973. font-weight:400;
  1974. font-style:normal;
  1975. font-size:12px;
  1976. color:#AAAAAA;
  1977. }
  1978. #u6528 .text {
  1979. position:absolute;
  1980. align-self:flex-start;
  1981. padding:0px 0px 0px 0px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u6528_text {
  1986. border-width:0px;
  1987. white-space:nowrap;
  1988. text-transform:none;
  1989. }
  1990. #u6529_img {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:201px;
  1996. height:2px;
  1997. }
  1998. #u6529 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:120px;
  2002. top:294px;
  2003. width:200px;
  2004. height:1px;
  2005. display:flex;
  2006. }
  2007. #u6529 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 2px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u6529_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. visibility:hidden;
  2019. }
  2020. #u6530_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:49px;
  2026. height:17px;
  2027. background:inherit;
  2028. background-color:rgba(255, 255, 255, 0);
  2029. border:none;
  2030. border-radius:0px;
  2031. -moz-box-shadow:none;
  2032. -webkit-box-shadow:none;
  2033. box-shadow:none;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:12px;
  2038. color:#AAAAAA;
  2039. }
  2040. #u6530 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:147px;
  2044. top:320px;
  2045. width:49px;
  2046. height:17px;
  2047. display:flex;
  2048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2049. font-weight:400;
  2050. font-style:normal;
  2051. font-size:12px;
  2052. color:#AAAAAA;
  2053. }
  2054. #u6530 .text {
  2055. position:absolute;
  2056. align-self:flex-start;
  2057. padding:0px 0px 0px 0px;
  2058. box-sizing:border-box;
  2059. width:100%;
  2060. }
  2061. #u6530_text {
  2062. border-width:0px;
  2063. white-space:nowrap;
  2064. text-transform:none;
  2065. }
  2066. #u6531_div {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:0px;
  2070. top:0px;
  2071. width:65px;
  2072. height:22px;
  2073. background:inherit;
  2074. background-color:rgba(255, 255, 255, 0);
  2075. border:none;
  2076. border-radius:0px;
  2077. -moz-box-shadow:none;
  2078. -webkit-box-shadow:none;
  2079. box-shadow:none;
  2080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2081. font-weight:400;
  2082. font-style:normal;
  2083. font-size:16px;
  2084. }
  2085. #u6531 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:147px;
  2089. top:208px;
  2090. width:65px;
  2091. height:22px;
  2092. display:flex;
  2093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2094. font-weight:400;
  2095. font-style:normal;
  2096. font-size:16px;
  2097. }
  2098. #u6531 .text {
  2099. position:absolute;
  2100. align-self:flex-start;
  2101. padding:0px 0px 0px 0px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u6531_text {
  2106. border-width:0px;
  2107. white-space:nowrap;
  2108. text-transform:none;
  2109. }
  2110. #u6532_div {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:65px;
  2116. height:22px;
  2117. background:inherit;
  2118. background-color:rgba(255, 255, 255, 0);
  2119. border:none;
  2120. border-radius:0px;
  2121. -moz-box-shadow:none;
  2122. -webkit-box-shadow:none;
  2123. box-shadow:none;
  2124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2125. font-weight:400;
  2126. font-style:normal;
  2127. font-size:16px;
  2128. }
  2129. #u6532 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:147px;
  2133. top:250px;
  2134. width:65px;
  2135. height:22px;
  2136. display:flex;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:16px;
  2141. }
  2142. #u6532 .text {
  2143. position:absolute;
  2144. align-self:flex-start;
  2145. padding:0px 0px 0px 0px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u6532_text {
  2150. border-width:0px;
  2151. white-space:nowrap;
  2152. text-transform:none;
  2153. }
  2154. #u6533_div {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:65px;
  2160. height:22px;
  2161. background:inherit;
  2162. background-color:rgba(255, 255, 255, 0);
  2163. border:none;
  2164. border-radius:0px;
  2165. -moz-box-shadow:none;
  2166. -webkit-box-shadow:none;
  2167. box-shadow:none;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:16px;
  2172. }
  2173. #u6533 {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:147px;
  2177. top:399px;
  2178. width:65px;
  2179. height:22px;
  2180. display:flex;
  2181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2182. font-weight:400;
  2183. font-style:normal;
  2184. font-size:16px;
  2185. }
  2186. #u6533 .text {
  2187. position:absolute;
  2188. align-self:flex-start;
  2189. padding:0px 0px 0px 0px;
  2190. box-sizing:border-box;
  2191. width:100%;
  2192. }
  2193. #u6533_text {
  2194. border-width:0px;
  2195. white-space:nowrap;
  2196. text-transform:none;
  2197. }
  2198. #u6534_div {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:73px;
  2204. height:50px;
  2205. background:inherit;
  2206. background-color:rgba(255, 255, 255, 0);
  2207. border:none;
  2208. border-left:0px;
  2209. border-top:0px;
  2210. border-right:0px;
  2211. border-radius:0px;
  2212. border-bottom-right-radius:0px;
  2213. border-bottom-left-radius:0px;
  2214. -moz-box-shadow:none;
  2215. -webkit-box-shadow:none;
  2216. box-shadow:none;
  2217. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2218. font-weight:500;
  2219. font-style:normal;
  2220. font-size:18px;
  2221. }
  2222. #u6534 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:352px;
  2226. top:50px;
  2227. width:73px;
  2228. height:50px;
  2229. display:flex;
  2230. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2231. font-weight:500;
  2232. font-style:normal;
  2233. font-size:18px;
  2234. }
  2235. #u6534 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:0px 0px 0px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u6534_text {
  2243. border-width:0px;
  2244. white-space:nowrap;
  2245. text-transform:none;
  2246. }
  2247. #u6535_div {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:1255px;
  2253. height:1082px;
  2254. background:inherit;
  2255. background-color:rgba(255, 255, 255, 1);
  2256. border:none;
  2257. border-radius:0px;
  2258. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2259. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2260. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2261. }
  2262. #u6535 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:332px;
  2266. top:160px;
  2267. width:1255px;
  2268. height:1082px;
  2269. display:flex;
  2270. }
  2271. #u6535 .text {
  2272. position:absolute;
  2273. align-self:center;
  2274. padding:2px 2px 2px 2px;
  2275. box-sizing:border-box;
  2276. width:100%;
  2277. }
  2278. #u6535_text {
  2279. border-width:0px;
  2280. word-wrap:break-word;
  2281. text-transform:none;
  2282. visibility:hidden;
  2283. }
  2284. #u6536 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:352px;
  2288. top:251px;
  2289. width:1215px;
  2290. height:283px;
  2291. }
  2292. #u6537_img {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:49px;
  2298. height:38px;
  2299. }
  2300. #u6537 {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:49px;
  2306. height:38px;
  2307. display:flex;
  2308. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2309. font-weight:400;
  2310. font-style:normal;
  2311. font-size:12px;
  2312. color:#FFFFFF;
  2313. }
  2314. #u6537 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 0px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u6537_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. }
  2326. #u6538_img {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:98px;
  2332. height:38px;
  2333. }
  2334. #u6538 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:49px;
  2338. top:0px;
  2339. width:98px;
  2340. height:38px;
  2341. display:flex;
  2342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2343. font-weight:400;
  2344. font-style:normal;
  2345. font-size:12px;
  2346. color:#FFFFFF;
  2347. }
  2348. #u6538 .text {
  2349. position:absolute;
  2350. align-self:center;
  2351. padding:2px 2px 2px 0px;
  2352. box-sizing:border-box;
  2353. width:100%;
  2354. }
  2355. #u6538_text {
  2356. border-width:0px;
  2357. word-wrap:break-word;
  2358. text-transform:none;
  2359. }
  2360. #u6539_img {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:0px;
  2364. top:0px;
  2365. width:110px;
  2366. height:38px;
  2367. }
  2368. #u6539 {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:147px;
  2372. top:0px;
  2373. width:110px;
  2374. height:38px;
  2375. display:flex;
  2376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2377. font-weight:400;
  2378. font-style:normal;
  2379. font-size:12px;
  2380. color:#FFFFFF;
  2381. }
  2382. #u6539 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 2px 2px 0px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u6539_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. }
  2394. #u6540_img {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:115px;
  2400. height:38px;
  2401. }
  2402. #u6540 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:257px;
  2406. top:0px;
  2407. width:115px;
  2408. height:38px;
  2409. display:flex;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:12px;
  2414. color:#FFFFFF;
  2415. }
  2416. #u6540 .text {
  2417. position:absolute;
  2418. align-self:center;
  2419. padding:2px 2px 2px 0px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u6540_text {
  2424. border-width:0px;
  2425. word-wrap:break-word;
  2426. text-transform:none;
  2427. }
  2428. #u6541_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:115px;
  2434. height:38px;
  2435. }
  2436. #u6541 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:372px;
  2440. top:0px;
  2441. width:115px;
  2442. height:38px;
  2443. display:flex;
  2444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2445. font-weight:400;
  2446. font-style:normal;
  2447. font-size:12px;
  2448. color:#FFFFFF;
  2449. }
  2450. #u6541 .text {
  2451. position:absolute;
  2452. align-self:center;
  2453. padding:2px 2px 2px 0px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u6541_text {
  2458. border-width:0px;
  2459. word-wrap:break-word;
  2460. text-transform:none;
  2461. }
  2462. #u6542_img {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:98px;
  2468. height:38px;
  2469. }
  2470. #u6542 {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:487px;
  2474. top:0px;
  2475. width:98px;
  2476. height:38px;
  2477. display:flex;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:12px;
  2482. color:#FFFFFF;
  2483. }
  2484. #u6542 .text {
  2485. position:absolute;
  2486. align-self:center;
  2487. padding:2px 2px 2px 0px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u6542_text {
  2492. border-width:0px;
  2493. word-wrap:break-word;
  2494. text-transform:none;
  2495. }
  2496. #u6543_img {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:116px;
  2502. height:38px;
  2503. }
  2504. #u6543 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:585px;
  2508. top:0px;
  2509. width:116px;
  2510. height:38px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:12px;
  2516. color:#FFFFFF;
  2517. }
  2518. #u6543 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 0px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u6543_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. }
  2530. #u6544_img {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:115px;
  2536. height:38px;
  2537. }
  2538. #u6544 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:701px;
  2542. top:0px;
  2543. width:115px;
  2544. height:38px;
  2545. display:flex;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. font-size:12px;
  2550. color:#FFFFFF;
  2551. }
  2552. #u6544 .text {
  2553. position:absolute;
  2554. align-self:center;
  2555. padding:2px 2px 2px 0px;
  2556. box-sizing:border-box;
  2557. width:100%;
  2558. }
  2559. #u6544_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. }
  2564. #u6545_img {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:127px;
  2570. height:38px;
  2571. }
  2572. #u6545 {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:816px;
  2576. top:0px;
  2577. width:127px;
  2578. height:38px;
  2579. display:flex;
  2580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2581. font-weight:400;
  2582. font-style:normal;
  2583. font-size:12px;
  2584. color:#FFFFFF;
  2585. }
  2586. #u6545 .text {
  2587. position:absolute;
  2588. align-self:center;
  2589. padding:2px 2px 2px 0px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u6545_text {
  2594. border-width:0px;
  2595. word-wrap:break-word;
  2596. text-transform:none;
  2597. }
  2598. #u6546_img {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:123px;
  2604. height:38px;
  2605. }
  2606. #u6546 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:943px;
  2610. top:0px;
  2611. width:123px;
  2612. height:38px;
  2613. display:flex;
  2614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2615. font-weight:400;
  2616. font-style:normal;
  2617. font-size:12px;
  2618. color:#FFFFFF;
  2619. }
  2620. #u6546 .text {
  2621. position:absolute;
  2622. align-self:center;
  2623. padding:2px 2px 2px 0px;
  2624. box-sizing:border-box;
  2625. width:100%;
  2626. }
  2627. #u6546_text {
  2628. border-width:0px;
  2629. word-wrap:break-word;
  2630. text-transform:none;
  2631. }
  2632. #u6547_img {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:149px;
  2638. height:38px;
  2639. }
  2640. #u6547 {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:1066px;
  2644. top:0px;
  2645. width:149px;
  2646. height:38px;
  2647. display:flex;
  2648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2649. font-weight:400;
  2650. font-style:normal;
  2651. font-size:12px;
  2652. color:#FFFFFF;
  2653. }
  2654. #u6547 .text {
  2655. position:absolute;
  2656. align-self:center;
  2657. padding:2px 2px 2px 0px;
  2658. box-sizing:border-box;
  2659. width:100%;
  2660. }
  2661. #u6547_text {
  2662. border-width:0px;
  2663. word-wrap:break-word;
  2664. text-transform:none;
  2665. }
  2666. #u6548_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:49px;
  2672. height:38px;
  2673. }
  2674. #u6548 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:38px;
  2679. width:49px;
  2680. height:38px;
  2681. display:flex;
  2682. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:12px;
  2686. }
  2687. #u6548 .text {
  2688. position:absolute;
  2689. align-self:center;
  2690. padding:2px 2px 2px 0px;
  2691. box-sizing:border-box;
  2692. width:100%;
  2693. }
  2694. #u6548_text {
  2695. border-width:0px;
  2696. word-wrap:break-word;
  2697. text-transform:none;
  2698. }
  2699. #u6549_img {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:98px;
  2705. height:38px;
  2706. }
  2707. #u6549 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:49px;
  2711. top:38px;
  2712. width:98px;
  2713. height:38px;
  2714. display:flex;
  2715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2716. font-weight:400;
  2717. font-style:normal;
  2718. font-size:12px;
  2719. color:#333333;
  2720. }
  2721. #u6549 .text {
  2722. position:absolute;
  2723. align-self:center;
  2724. padding:2px 2px 2px 0px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u6549_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. visibility:hidden;
  2733. }
  2734. #u6550_img {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:110px;
  2740. height:38px;
  2741. }
  2742. #u6550 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:147px;
  2746. top:38px;
  2747. width:110px;
  2748. height:38px;
  2749. display:flex;
  2750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2751. font-weight:400;
  2752. font-style:normal;
  2753. font-size:12px;
  2754. color:#333333;
  2755. }
  2756. #u6550 .text {
  2757. position:absolute;
  2758. align-self:center;
  2759. padding:2px 2px 2px 0px;
  2760. box-sizing:border-box;
  2761. width:100%;
  2762. }
  2763. #u6550_text {
  2764. border-width:0px;
  2765. word-wrap:break-word;
  2766. text-transform:none;
  2767. }
  2768. #u6551_img {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:0px;
  2772. top:0px;
  2773. width:115px;
  2774. height:38px;
  2775. }
  2776. #u6551 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:257px;
  2780. top:38px;
  2781. width:115px;
  2782. height:38px;
  2783. display:flex;
  2784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2785. font-weight:400;
  2786. font-style:normal;
  2787. font-size:12px;
  2788. color:#333333;
  2789. }
  2790. #u6551 .text {
  2791. position:absolute;
  2792. align-self:center;
  2793. padding:2px 2px 2px 0px;
  2794. box-sizing:border-box;
  2795. width:100%;
  2796. }
  2797. #u6551_text {
  2798. border-width:0px;
  2799. word-wrap:break-word;
  2800. text-transform:none;
  2801. visibility:hidden;
  2802. }
  2803. #u6552_img {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:115px;
  2809. height:38px;
  2810. }
  2811. #u6552 {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:372px;
  2815. top:38px;
  2816. width:115px;
  2817. height:38px;
  2818. display:flex;
  2819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2820. font-weight:400;
  2821. font-style:normal;
  2822. font-size:12px;
  2823. color:#333333;
  2824. }
  2825. #u6552 .text {
  2826. position:absolute;
  2827. align-self:center;
  2828. padding:2px 2px 2px 0px;
  2829. box-sizing:border-box;
  2830. width:100%;
  2831. }
  2832. #u6552_text {
  2833. border-width:0px;
  2834. word-wrap:break-word;
  2835. text-transform:none;
  2836. visibility:hidden;
  2837. }
  2838. #u6553_img {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:0px;
  2843. width:98px;
  2844. height:38px;
  2845. }
  2846. #u6553 {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:487px;
  2850. top:38px;
  2851. width:98px;
  2852. height:38px;
  2853. display:flex;
  2854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2855. font-weight:400;
  2856. font-style:normal;
  2857. font-size:12px;
  2858. color:#333333;
  2859. }
  2860. #u6553 .text {
  2861. position:absolute;
  2862. align-self:center;
  2863. padding:2px 2px 2px 0px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u6553_text {
  2868. border-width:0px;
  2869. word-wrap:break-word;
  2870. text-transform:none;
  2871. }
  2872. #u6554_img {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:116px;
  2878. height:38px;
  2879. }
  2880. #u6554 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:585px;
  2884. top:38px;
  2885. width:116px;
  2886. height:38px;
  2887. display:flex;
  2888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:12px;
  2892. color:#333333;
  2893. }
  2894. #u6554 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 0px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u6554_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u6555_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:115px;
  2913. height:38px;
  2914. }
  2915. #u6555 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:701px;
  2919. top:38px;
  2920. width:115px;
  2921. height:38px;
  2922. display:flex;
  2923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2924. font-weight:400;
  2925. font-style:normal;
  2926. font-size:12px;
  2927. color:#333333;
  2928. }
  2929. #u6555 .text {
  2930. position:absolute;
  2931. align-self:center;
  2932. padding:2px 2px 2px 0px;
  2933. box-sizing:border-box;
  2934. width:100%;
  2935. }
  2936. #u6555_text {
  2937. border-width:0px;
  2938. word-wrap:break-word;
  2939. text-transform:none;
  2940. visibility:hidden;
  2941. }
  2942. #u6556_img {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:0px;
  2946. top:0px;
  2947. width:127px;
  2948. height:38px;
  2949. }
  2950. #u6556 {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:816px;
  2954. top:38px;
  2955. width:127px;
  2956. height:38px;
  2957. display:flex;
  2958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2959. font-weight:400;
  2960. font-style:normal;
  2961. font-size:12px;
  2962. color:#333333;
  2963. }
  2964. #u6556 .text {
  2965. position:absolute;
  2966. align-self:center;
  2967. padding:2px 2px 2px 0px;
  2968. box-sizing:border-box;
  2969. width:100%;
  2970. }
  2971. #u6556_text {
  2972. border-width:0px;
  2973. word-wrap:break-word;
  2974. text-transform:none;
  2975. visibility:hidden;
  2976. }
  2977. #u6557_img {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:0px;
  2981. top:0px;
  2982. width:123px;
  2983. height:38px;
  2984. }
  2985. #u6557 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:943px;
  2989. top:38px;
  2990. width:123px;
  2991. height:38px;
  2992. display:flex;
  2993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2994. font-weight:400;
  2995. font-style:normal;
  2996. font-size:12px;
  2997. color:#333333;
  2998. }
  2999. #u6557 .text {
  3000. position:absolute;
  3001. align-self:center;
  3002. padding:2px 2px 2px 0px;
  3003. box-sizing:border-box;
  3004. width:100%;
  3005. }
  3006. #u6557_text {
  3007. border-width:0px;
  3008. word-wrap:break-word;
  3009. text-transform:none;
  3010. visibility:hidden;
  3011. }
  3012. #u6558_img {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:149px;
  3018. height:38px;
  3019. }
  3020. #u6558 {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:1066px;
  3024. top:38px;
  3025. width:149px;
  3026. height:38px;
  3027. display:flex;
  3028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3029. font-weight:400;
  3030. font-style:normal;
  3031. font-size:12px;
  3032. color:#1890FF;
  3033. }
  3034. #u6558 .text {
  3035. position:absolute;
  3036. align-self:center;
  3037. padding:2px 2px 2px 0px;
  3038. box-sizing:border-box;
  3039. width:100%;
  3040. }
  3041. #u6558_text {
  3042. border-width:0px;
  3043. word-wrap:break-word;
  3044. text-transform:none;
  3045. }
  3046. #u6559_img {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:49px;
  3052. height:35px;
  3053. }
  3054. #u6559 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:0px;
  3058. top:76px;
  3059. width:49px;
  3060. height:35px;
  3061. display:flex;
  3062. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3063. font-weight:400;
  3064. font-style:normal;
  3065. font-size:12px;
  3066. color:#606266;
  3067. }
  3068. #u6559 .text {
  3069. position:absolute;
  3070. align-self:center;
  3071. padding:2px 2px 2px 0px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u6559_text {
  3076. border-width:0px;
  3077. word-wrap:break-word;
  3078. text-transform:none;
  3079. }
  3080. #u6560_img {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:0px;
  3084. top:0px;
  3085. width:98px;
  3086. height:35px;
  3087. }
  3088. #u6560 {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:49px;
  3092. top:76px;
  3093. width:98px;
  3094. height:35px;
  3095. display:flex;
  3096. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3097. font-weight:400;
  3098. font-style:normal;
  3099. font-size:12px;
  3100. color:#606266;
  3101. }
  3102. #u6560 .text {
  3103. position:absolute;
  3104. align-self:center;
  3105. padding:2px 2px 2px 0px;
  3106. box-sizing:border-box;
  3107. width:100%;
  3108. }
  3109. #u6560_text {
  3110. border-width:0px;
  3111. word-wrap:break-word;
  3112. text-transform:none;
  3113. visibility:hidden;
  3114. }
  3115. #u6561_img {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:110px;
  3121. height:35px;
  3122. }
  3123. #u6561 {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:147px;
  3127. top:76px;
  3128. width:110px;
  3129. height:35px;
  3130. display:flex;
  3131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3132. font-weight:400;
  3133. font-style:normal;
  3134. font-size:12px;
  3135. color:#606266;
  3136. }
  3137. #u6561 .text {
  3138. position:absolute;
  3139. align-self:center;
  3140. padding:2px 2px 2px 0px;
  3141. box-sizing:border-box;
  3142. width:100%;
  3143. }
  3144. #u6561_text {
  3145. border-width:0px;
  3146. word-wrap:break-word;
  3147. text-transform:none;
  3148. }
  3149. #u6562_img {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:0px;
  3153. top:0px;
  3154. width:115px;
  3155. height:35px;
  3156. }
  3157. #u6562 {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:257px;
  3161. top:76px;
  3162. width:115px;
  3163. height:35px;
  3164. display:flex;
  3165. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3166. font-weight:400;
  3167. font-style:normal;
  3168. font-size:12px;
  3169. color:#606266;
  3170. }
  3171. #u6562 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:2px 2px 2px 0px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u6562_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. visibility:hidden;
  3183. }
  3184. #u6563_img {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:115px;
  3190. height:35px;
  3191. }
  3192. #u6563 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:372px;
  3196. top:76px;
  3197. width:115px;
  3198. height:35px;
  3199. display:flex;
  3200. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3201. font-weight:400;
  3202. font-style:normal;
  3203. font-size:12px;
  3204. color:#606266;
  3205. }
  3206. #u6563 .text {
  3207. position:absolute;
  3208. align-self:center;
  3209. padding:2px 2px 2px 0px;
  3210. box-sizing:border-box;
  3211. width:100%;
  3212. }
  3213. #u6563_text {
  3214. border-width:0px;
  3215. word-wrap:break-word;
  3216. text-transform:none;
  3217. visibility:hidden;
  3218. }
  3219. #u6564_img {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:98px;
  3225. height:35px;
  3226. }
  3227. #u6564 {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:487px;
  3231. top:76px;
  3232. width:98px;
  3233. height:35px;
  3234. display:flex;
  3235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3236. font-weight:400;
  3237. font-style:normal;
  3238. font-size:12px;
  3239. color:#606266;
  3240. }
  3241. #u6564 .text {
  3242. position:absolute;
  3243. align-self:center;
  3244. padding:2px 2px 2px 0px;
  3245. box-sizing:border-box;
  3246. width:100%;
  3247. }
  3248. #u6564_text {
  3249. border-width:0px;
  3250. word-wrap:break-word;
  3251. text-transform:none;
  3252. }
  3253. #u6565_img {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:0px;
  3257. top:0px;
  3258. width:116px;
  3259. height:35px;
  3260. }
  3261. #u6565 {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:585px;
  3265. top:76px;
  3266. width:116px;
  3267. height:35px;
  3268. display:flex;
  3269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3270. font-weight:400;
  3271. font-style:normal;
  3272. font-size:12px;
  3273. color:#606266;
  3274. }
  3275. #u6565 .text {
  3276. position:absolute;
  3277. align-self:center;
  3278. padding:2px 2px 2px 0px;
  3279. box-sizing:border-box;
  3280. width:100%;
  3281. }
  3282. #u6565_text {
  3283. border-width:0px;
  3284. word-wrap:break-word;
  3285. text-transform:none;
  3286. visibility:hidden;
  3287. }
  3288. #u6566_img {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:0px;
  3292. top:0px;
  3293. width:115px;
  3294. height:35px;
  3295. }
  3296. #u6566 {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:701px;
  3300. top:76px;
  3301. width:115px;
  3302. height:35px;
  3303. display:flex;
  3304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3305. font-weight:400;
  3306. font-style:normal;
  3307. font-size:12px;
  3308. color:#606266;
  3309. }
  3310. #u6566 .text {
  3311. position:absolute;
  3312. align-self:center;
  3313. padding:2px 2px 2px 0px;
  3314. box-sizing:border-box;
  3315. width:100%;
  3316. }
  3317. #u6566_text {
  3318. border-width:0px;
  3319. word-wrap:break-word;
  3320. text-transform:none;
  3321. visibility:hidden;
  3322. }
  3323. #u6567_img {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:127px;
  3329. height:35px;
  3330. }
  3331. #u6567 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:816px;
  3335. top:76px;
  3336. width:127px;
  3337. height:35px;
  3338. display:flex;
  3339. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3340. font-weight:400;
  3341. font-style:normal;
  3342. font-size:12px;
  3343. color:#606266;
  3344. }
  3345. #u6567 .text {
  3346. position:absolute;
  3347. align-self:center;
  3348. padding:2px 2px 2px 0px;
  3349. box-sizing:border-box;
  3350. width:100%;
  3351. }
  3352. #u6567_text {
  3353. border-width:0px;
  3354. word-wrap:break-word;
  3355. text-transform:none;
  3356. visibility:hidden;
  3357. }
  3358. #u6568_img {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:0px;
  3362. top:0px;
  3363. width:123px;
  3364. height:35px;
  3365. }
  3366. #u6568 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:943px;
  3370. top:76px;
  3371. width:123px;
  3372. height:35px;
  3373. display:flex;
  3374. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3375. font-weight:400;
  3376. font-style:normal;
  3377. font-size:12px;
  3378. color:#606266;
  3379. }
  3380. #u6568 .text {
  3381. position:absolute;
  3382. align-self:center;
  3383. padding:2px 2px 2px 0px;
  3384. box-sizing:border-box;
  3385. width:100%;
  3386. }
  3387. #u6568_text {
  3388. border-width:0px;
  3389. word-wrap:break-word;
  3390. text-transform:none;
  3391. visibility:hidden;
  3392. }
  3393. #u6569_img {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:149px;
  3399. height:35px;
  3400. }
  3401. #u6569 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:1066px;
  3405. top:76px;
  3406. width:149px;
  3407. height:35px;
  3408. display:flex;
  3409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:12px;
  3413. color:#1890FF;
  3414. }
  3415. #u6569 .text {
  3416. position:absolute;
  3417. align-self:center;
  3418. padding:2px 2px 2px 0px;
  3419. box-sizing:border-box;
  3420. width:100%;
  3421. }
  3422. #u6569_text {
  3423. border-width:0px;
  3424. word-wrap:break-word;
  3425. text-transform:none;
  3426. }
  3427. #u6570_img {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:49px;
  3433. height:35px;
  3434. }
  3435. #u6570 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:111px;
  3440. width:49px;
  3441. height:35px;
  3442. display:flex;
  3443. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:12px;
  3447. color:#606266;
  3448. }
  3449. #u6570 .text {
  3450. position:absolute;
  3451. align-self:center;
  3452. padding:2px 2px 2px 0px;
  3453. box-sizing:border-box;
  3454. width:100%;
  3455. }
  3456. #u6570_text {
  3457. border-width:0px;
  3458. word-wrap:break-word;
  3459. text-transform:none;
  3460. }
  3461. #u6571_img {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:98px;
  3467. height:35px;
  3468. }
  3469. #u6571 {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:49px;
  3473. top:111px;
  3474. width:98px;
  3475. height:35px;
  3476. display:flex;
  3477. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3478. font-weight:400;
  3479. font-style:normal;
  3480. font-size:12px;
  3481. color:#606266;
  3482. }
  3483. #u6571 .text {
  3484. position:absolute;
  3485. align-self:center;
  3486. padding:2px 2px 2px 0px;
  3487. box-sizing:border-box;
  3488. width:100%;
  3489. }
  3490. #u6571_text {
  3491. border-width:0px;
  3492. word-wrap:break-word;
  3493. text-transform:none;
  3494. visibility:hidden;
  3495. }
  3496. #u6572_img {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:0px;
  3500. top:0px;
  3501. width:110px;
  3502. height:35px;
  3503. }
  3504. #u6572 {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:147px;
  3508. top:111px;
  3509. width:110px;
  3510. height:35px;
  3511. display:flex;
  3512. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. font-size:12px;
  3516. color:#606266;
  3517. }
  3518. #u6572 .text {
  3519. position:absolute;
  3520. align-self:center;
  3521. padding:2px 2px 2px 0px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u6572_text {
  3526. border-width:0px;
  3527. word-wrap:break-word;
  3528. text-transform:none;
  3529. visibility:hidden;
  3530. }
  3531. #u6573_img {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:0px;
  3535. top:0px;
  3536. width:115px;
  3537. height:35px;
  3538. }
  3539. #u6573 {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:257px;
  3543. top:111px;
  3544. width:115px;
  3545. height:35px;
  3546. display:flex;
  3547. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3548. font-weight:400;
  3549. font-style:normal;
  3550. font-size:12px;
  3551. color:#606266;
  3552. }
  3553. #u6573 .text {
  3554. position:absolute;
  3555. align-self:center;
  3556. padding:2px 2px 2px 0px;
  3557. box-sizing:border-box;
  3558. width:100%;
  3559. }
  3560. #u6573_text {
  3561. border-width:0px;
  3562. word-wrap:break-word;
  3563. text-transform:none;
  3564. visibility:hidden;
  3565. }
  3566. #u6574_img {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:0px;
  3570. top:0px;
  3571. width:115px;
  3572. height:35px;
  3573. }
  3574. #u6574 {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:372px;
  3578. top:111px;
  3579. width:115px;
  3580. height:35px;
  3581. display:flex;
  3582. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3583. font-weight:400;
  3584. font-style:normal;
  3585. font-size:12px;
  3586. color:#606266;
  3587. }
  3588. #u6574 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:2px 2px 2px 0px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u6574_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u6575_img {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:98px;
  3607. height:35px;
  3608. }
  3609. #u6575 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:487px;
  3613. top:111px;
  3614. width:98px;
  3615. height:35px;
  3616. display:flex;
  3617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3618. font-weight:400;
  3619. font-style:normal;
  3620. font-size:12px;
  3621. color:#606266;
  3622. }
  3623. #u6575 .text {
  3624. position:absolute;
  3625. align-self:center;
  3626. padding:2px 2px 2px 0px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u6575_text {
  3631. border-width:0px;
  3632. word-wrap:break-word;
  3633. text-transform:none;
  3634. }
  3635. #u6576_img {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:116px;
  3641. height:35px;
  3642. }
  3643. #u6576 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:585px;
  3647. top:111px;
  3648. width:116px;
  3649. height:35px;
  3650. display:flex;
  3651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3652. font-weight:400;
  3653. font-style:normal;
  3654. font-size:12px;
  3655. color:#606266;
  3656. }
  3657. #u6576 .text {
  3658. position:absolute;
  3659. align-self:center;
  3660. padding:2px 2px 2px 0px;
  3661. box-sizing:border-box;
  3662. width:100%;
  3663. }
  3664. #u6576_text {
  3665. border-width:0px;
  3666. word-wrap:break-word;
  3667. text-transform:none;
  3668. visibility:hidden;
  3669. }
  3670. #u6577_img {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:115px;
  3676. height:35px;
  3677. }
  3678. #u6577 {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:701px;
  3682. top:111px;
  3683. width:115px;
  3684. height:35px;
  3685. display:flex;
  3686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3687. font-weight:400;
  3688. font-style:normal;
  3689. font-size:12px;
  3690. color:#606266;
  3691. }
  3692. #u6577 .text {
  3693. position:absolute;
  3694. align-self:center;
  3695. padding:2px 2px 2px 0px;
  3696. box-sizing:border-box;
  3697. width:100%;
  3698. }
  3699. #u6577_text {
  3700. border-width:0px;
  3701. word-wrap:break-word;
  3702. text-transform:none;
  3703. visibility:hidden;
  3704. }
  3705. #u6578_img {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:0px;
  3709. top:0px;
  3710. width:127px;
  3711. height:35px;
  3712. }
  3713. #u6578 {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:816px;
  3717. top:111px;
  3718. width:127px;
  3719. height:35px;
  3720. display:flex;
  3721. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3722. font-weight:400;
  3723. font-style:normal;
  3724. font-size:12px;
  3725. color:#606266;
  3726. }
  3727. #u6578 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:2px 2px 2px 0px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u6578_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u6579_img {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:123px;
  3746. height:35px;
  3747. }
  3748. #u6579 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:943px;
  3752. top:111px;
  3753. width:123px;
  3754. height:35px;
  3755. display:flex;
  3756. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:12px;
  3760. color:#606266;
  3761. }
  3762. #u6579 .text {
  3763. position:absolute;
  3764. align-self:center;
  3765. padding:2px 2px 2px 0px;
  3766. box-sizing:border-box;
  3767. width:100%;
  3768. }
  3769. #u6579_text {
  3770. border-width:0px;
  3771. word-wrap:break-word;
  3772. text-transform:none;
  3773. visibility:hidden;
  3774. }
  3775. #u6580_img {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:0px;
  3779. top:0px;
  3780. width:149px;
  3781. height:35px;
  3782. }
  3783. #u6580 {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:1066px;
  3787. top:111px;
  3788. width:149px;
  3789. height:35px;
  3790. display:flex;
  3791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3792. font-weight:400;
  3793. font-style:normal;
  3794. font-size:12px;
  3795. color:#1890FF;
  3796. }
  3797. #u6580 .text {
  3798. position:absolute;
  3799. align-self:center;
  3800. padding:2px 2px 2px 0px;
  3801. box-sizing:border-box;
  3802. width:100%;
  3803. }
  3804. #u6580_text {
  3805. border-width:0px;
  3806. word-wrap:break-word;
  3807. text-transform:none;
  3808. }
  3809. #u6581_img {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:49px;
  3815. height:35px;
  3816. }
  3817. #u6581 {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:146px;
  3822. width:49px;
  3823. height:35px;
  3824. display:flex;
  3825. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3826. font-weight:400;
  3827. font-style:normal;
  3828. font-size:12px;
  3829. color:#606266;
  3830. }
  3831. #u6581 .text {
  3832. position:absolute;
  3833. align-self:center;
  3834. padding:2px 2px 2px 0px;
  3835. box-sizing:border-box;
  3836. width:100%;
  3837. }
  3838. #u6581_text {
  3839. border-width:0px;
  3840. word-wrap:break-word;
  3841. text-transform:none;
  3842. }
  3843. #u6582_img {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:98px;
  3849. height:35px;
  3850. }
  3851. #u6582 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:49px;
  3855. top:146px;
  3856. width:98px;
  3857. height:35px;
  3858. display:flex;
  3859. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. color:#606266;
  3864. }
  3865. #u6582 .text {
  3866. position:absolute;
  3867. align-self:center;
  3868. padding:2px 2px 2px 0px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u6582_text {
  3873. border-width:0px;
  3874. word-wrap:break-word;
  3875. text-transform:none;
  3876. visibility:hidden;
  3877. }
  3878. #u6583_img {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:110px;
  3884. height:35px;
  3885. }
  3886. #u6583 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:147px;
  3890. top:146px;
  3891. width:110px;
  3892. height:35px;
  3893. display:flex;
  3894. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3895. font-weight:400;
  3896. font-style:normal;
  3897. font-size:12px;
  3898. color:#606266;
  3899. }
  3900. #u6583 .text {
  3901. position:absolute;
  3902. align-self:center;
  3903. padding:2px 2px 2px 0px;
  3904. box-sizing:border-box;
  3905. width:100%;
  3906. }
  3907. #u6583_text {
  3908. border-width:0px;
  3909. word-wrap:break-word;
  3910. text-transform:none;
  3911. visibility:hidden;
  3912. }
  3913. #u6584_img {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:0px;
  3917. top:0px;
  3918. width:115px;
  3919. height:35px;
  3920. }
  3921. #u6584 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:257px;
  3925. top:146px;
  3926. width:115px;
  3927. height:35px;
  3928. display:flex;
  3929. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3930. font-weight:400;
  3931. font-style:normal;
  3932. font-size:12px;
  3933. color:#606266;
  3934. }
  3935. #u6584 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 2px 2px 0px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u6584_text {
  3943. border-width:0px;
  3944. word-wrap:break-word;
  3945. text-transform:none;
  3946. visibility:hidden;
  3947. }
  3948. #u6585_img {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:0px;
  3952. top:0px;
  3953. width:115px;
  3954. height:35px;
  3955. }
  3956. #u6585 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:372px;
  3960. top:146px;
  3961. width:115px;
  3962. height:35px;
  3963. display:flex;
  3964. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. font-size:12px;
  3968. color:#606266;
  3969. }
  3970. #u6585 .text {
  3971. position:absolute;
  3972. align-self:center;
  3973. padding:2px 2px 2px 0px;
  3974. box-sizing:border-box;
  3975. width:100%;
  3976. }
  3977. #u6585_text {
  3978. border-width:0px;
  3979. word-wrap:break-word;
  3980. text-transform:none;
  3981. visibility:hidden;
  3982. }
  3983. #u6586_img {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:98px;
  3989. height:35px;
  3990. }
  3991. #u6586 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:487px;
  3995. top:146px;
  3996. width:98px;
  3997. height:35px;
  3998. display:flex;
  3999. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4000. font-weight:400;
  4001. font-style:normal;
  4002. font-size:12px;
  4003. color:#606266;
  4004. }
  4005. #u6586 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 2px 2px 0px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u6586_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. visibility:hidden;
  4017. }
  4018. #u6587_img {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:116px;
  4024. height:35px;
  4025. }
  4026. #u6587 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:585px;
  4030. top:146px;
  4031. width:116px;
  4032. height:35px;
  4033. display:flex;
  4034. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4035. font-weight:400;
  4036. font-style:normal;
  4037. font-size:12px;
  4038. color:#606266;
  4039. }
  4040. #u6587 .text {
  4041. position:absolute;
  4042. align-self:center;
  4043. padding:2px 2px 2px 0px;
  4044. box-sizing:border-box;
  4045. width:100%;
  4046. }
  4047. #u6587_text {
  4048. border-width:0px;
  4049. word-wrap:break-word;
  4050. text-transform:none;
  4051. visibility:hidden;
  4052. }
  4053. #u6588_img {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:0px;
  4058. width:115px;
  4059. height:35px;
  4060. }
  4061. #u6588 {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:701px;
  4065. top:146px;
  4066. width:115px;
  4067. height:35px;
  4068. display:flex;
  4069. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:12px;
  4073. color:#606266;
  4074. }
  4075. #u6588 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:2px 2px 2px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u6588_text {
  4083. border-width:0px;
  4084. word-wrap:break-word;
  4085. text-transform:none;
  4086. visibility:hidden;
  4087. }
  4088. #u6589_img {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:127px;
  4094. height:35px;
  4095. }
  4096. #u6589 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:816px;
  4100. top:146px;
  4101. width:127px;
  4102. height:35px;
  4103. display:flex;
  4104. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:12px;
  4108. color:#606266;
  4109. }
  4110. #u6589 .text {
  4111. position:absolute;
  4112. align-self:center;
  4113. padding:2px 2px 2px 0px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u6589_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. visibility:hidden;
  4122. }
  4123. #u6590_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:123px;
  4129. height:35px;
  4130. }
  4131. #u6590 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:943px;
  4135. top:146px;
  4136. width:123px;
  4137. height:35px;
  4138. display:flex;
  4139. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:12px;
  4143. color:#606266;
  4144. }
  4145. #u6590 .text {
  4146. position:absolute;
  4147. align-self:center;
  4148. padding:2px 2px 2px 0px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u6590_text {
  4153. border-width:0px;
  4154. word-wrap:break-word;
  4155. text-transform:none;
  4156. visibility:hidden;
  4157. }
  4158. #u6591_img {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:149px;
  4164. height:35px;
  4165. }
  4166. #u6591 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:1066px;
  4170. top:146px;
  4171. width:149px;
  4172. height:35px;
  4173. display:flex;
  4174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4175. font-weight:400;
  4176. font-style:normal;
  4177. font-size:12px;
  4178. color:#02A7F0;
  4179. }
  4180. #u6591 .text {
  4181. position:absolute;
  4182. align-self:center;
  4183. padding:2px 2px 2px 0px;
  4184. box-sizing:border-box;
  4185. width:100%;
  4186. }
  4187. #u6591_text {
  4188. border-width:0px;
  4189. word-wrap:break-word;
  4190. text-transform:none;
  4191. visibility:hidden;
  4192. }
  4193. #u6592_img {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:49px;
  4199. height:35px;
  4200. }
  4201. #u6592 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:181px;
  4206. width:49px;
  4207. height:35px;
  4208. display:flex;
  4209. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4210. font-weight:400;
  4211. font-style:normal;
  4212. font-size:12px;
  4213. color:#606266;
  4214. }
  4215. #u6592 .text {
  4216. position:absolute;
  4217. align-self:center;
  4218. padding:2px 2px 2px 0px;
  4219. box-sizing:border-box;
  4220. width:100%;
  4221. }
  4222. #u6592_text {
  4223. border-width:0px;
  4224. word-wrap:break-word;
  4225. text-transform:none;
  4226. visibility:hidden;
  4227. }
  4228. #u6593_img {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:0px;
  4232. top:0px;
  4233. width:98px;
  4234. height:35px;
  4235. }
  4236. #u6593 {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:49px;
  4240. top:181px;
  4241. width:98px;
  4242. height:35px;
  4243. display:flex;
  4244. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4245. font-weight:400;
  4246. font-style:normal;
  4247. font-size:12px;
  4248. color:#606266;
  4249. }
  4250. #u6593 .text {
  4251. position:absolute;
  4252. align-self:center;
  4253. padding:2px 2px 2px 0px;
  4254. box-sizing:border-box;
  4255. width:100%;
  4256. }
  4257. #u6593_text {
  4258. border-width:0px;
  4259. word-wrap:break-word;
  4260. text-transform:none;
  4261. visibility:hidden;
  4262. }
  4263. #u6594_img {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:110px;
  4269. height:35px;
  4270. }
  4271. #u6594 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:147px;
  4275. top:181px;
  4276. width:110px;
  4277. height:35px;
  4278. display:flex;
  4279. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:12px;
  4283. color:#606266;
  4284. }
  4285. #u6594 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 2px 2px 0px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u6594_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u6595_img {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:115px;
  4304. height:35px;
  4305. }
  4306. #u6595 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:257px;
  4310. top:181px;
  4311. width:115px;
  4312. height:35px;
  4313. display:flex;
  4314. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4315. font-weight:400;
  4316. font-style:normal;
  4317. font-size:12px;
  4318. color:#606266;
  4319. }
  4320. #u6595 .text {
  4321. position:absolute;
  4322. align-self:center;
  4323. padding:2px 2px 2px 0px;
  4324. box-sizing:border-box;
  4325. width:100%;
  4326. }
  4327. #u6595_text {
  4328. border-width:0px;
  4329. word-wrap:break-word;
  4330. text-transform:none;
  4331. visibility:hidden;
  4332. }
  4333. #u6596_img {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:115px;
  4339. height:35px;
  4340. }
  4341. #u6596 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:372px;
  4345. top:181px;
  4346. width:115px;
  4347. height:35px;
  4348. display:flex;
  4349. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4350. font-weight:400;
  4351. font-style:normal;
  4352. font-size:12px;
  4353. color:#606266;
  4354. }
  4355. #u6596 .text {
  4356. position:absolute;
  4357. align-self:center;
  4358. padding:2px 2px 2px 0px;
  4359. box-sizing:border-box;
  4360. width:100%;
  4361. }
  4362. #u6596_text {
  4363. border-width:0px;
  4364. word-wrap:break-word;
  4365. text-transform:none;
  4366. visibility:hidden;
  4367. }
  4368. #u6597_img {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:98px;
  4374. height:35px;
  4375. }
  4376. #u6597 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:487px;
  4380. top:181px;
  4381. width:98px;
  4382. height:35px;
  4383. display:flex;
  4384. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4385. font-weight:400;
  4386. font-style:normal;
  4387. font-size:12px;
  4388. color:#606266;
  4389. }
  4390. #u6597 .text {
  4391. position:absolute;
  4392. align-self:center;
  4393. padding:2px 2px 2px 0px;
  4394. box-sizing:border-box;
  4395. width:100%;
  4396. }
  4397. #u6597_text {
  4398. border-width:0px;
  4399. word-wrap:break-word;
  4400. text-transform:none;
  4401. visibility:hidden;
  4402. }
  4403. #u6598_img {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:116px;
  4409. height:35px;
  4410. }
  4411. #u6598 {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:585px;
  4415. top:181px;
  4416. width:116px;
  4417. height:35px;
  4418. display:flex;
  4419. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4420. font-weight:400;
  4421. font-style:normal;
  4422. font-size:12px;
  4423. color:#606266;
  4424. }
  4425. #u6598 .text {
  4426. position:absolute;
  4427. align-self:center;
  4428. padding:2px 2px 2px 0px;
  4429. box-sizing:border-box;
  4430. width:100%;
  4431. }
  4432. #u6598_text {
  4433. border-width:0px;
  4434. word-wrap:break-word;
  4435. text-transform:none;
  4436. visibility:hidden;
  4437. }
  4438. #u6599_img {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:115px;
  4444. height:35px;
  4445. }
  4446. #u6599 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:701px;
  4450. top:181px;
  4451. width:115px;
  4452. height:35px;
  4453. display:flex;
  4454. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4455. font-weight:400;
  4456. font-style:normal;
  4457. font-size:12px;
  4458. color:#606266;
  4459. }
  4460. #u6599 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 0px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u6599_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u6600_img {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:127px;
  4479. height:35px;
  4480. }
  4481. #u6600 {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:816px;
  4485. top:181px;
  4486. width:127px;
  4487. height:35px;
  4488. display:flex;
  4489. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:12px;
  4493. color:#606266;
  4494. }
  4495. #u6600 .text {
  4496. position:absolute;
  4497. align-self:center;
  4498. padding:2px 2px 2px 0px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u6600_text {
  4503. border-width:0px;
  4504. word-wrap:break-word;
  4505. text-transform:none;
  4506. visibility:hidden;
  4507. }
  4508. #u6601_img {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:123px;
  4514. height:35px;
  4515. }
  4516. #u6601 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:943px;
  4520. top:181px;
  4521. width:123px;
  4522. height:35px;
  4523. display:flex;
  4524. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:12px;
  4528. color:#606266;
  4529. }
  4530. #u6601 .text {
  4531. position:absolute;
  4532. align-self:center;
  4533. padding:2px 2px 2px 0px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u6601_text {
  4538. border-width:0px;
  4539. word-wrap:break-word;
  4540. text-transform:none;
  4541. visibility:hidden;
  4542. }
  4543. #u6602_img {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:149px;
  4549. height:35px;
  4550. }
  4551. #u6602 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:1066px;
  4555. top:181px;
  4556. width:149px;
  4557. height:35px;
  4558. display:flex;
  4559. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:12px;
  4563. color:#606266;
  4564. }
  4565. #u6602 .text {
  4566. position:absolute;
  4567. align-self:center;
  4568. padding:2px 2px 2px 0px;
  4569. box-sizing:border-box;
  4570. width:100%;
  4571. }
  4572. #u6602_text {
  4573. border-width:0px;
  4574. word-wrap:break-word;
  4575. text-transform:none;
  4576. visibility:hidden;
  4577. }
  4578. #u6603_img {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:0px;
  4583. width:49px;
  4584. height:35px;
  4585. }
  4586. #u6603 {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:216px;
  4591. width:49px;
  4592. height:35px;
  4593. display:flex;
  4594. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4595. font-weight:400;
  4596. font-style:normal;
  4597. font-size:12px;
  4598. color:#606266;
  4599. }
  4600. #u6603 .text {
  4601. position:absolute;
  4602. align-self:center;
  4603. padding:2px 2px 2px 0px;
  4604. box-sizing:border-box;
  4605. width:100%;
  4606. }
  4607. #u6603_text {
  4608. border-width:0px;
  4609. word-wrap:break-word;
  4610. text-transform:none;
  4611. visibility:hidden;
  4612. }
  4613. #u6604_img {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:98px;
  4619. height:35px;
  4620. }
  4621. #u6604 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:49px;
  4625. top:216px;
  4626. width:98px;
  4627. height:35px;
  4628. display:flex;
  4629. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:12px;
  4633. color:#606266;
  4634. }
  4635. #u6604 .text {
  4636. position:absolute;
  4637. align-self:center;
  4638. padding:2px 2px 2px 0px;
  4639. box-sizing:border-box;
  4640. width:100%;
  4641. }
  4642. #u6604_text {
  4643. border-width:0px;
  4644. word-wrap:break-word;
  4645. text-transform:none;
  4646. visibility:hidden;
  4647. }
  4648. #u6605_img {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:110px;
  4654. height:35px;
  4655. }
  4656. #u6605 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:147px;
  4660. top:216px;
  4661. width:110px;
  4662. height:35px;
  4663. display:flex;
  4664. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. font-size:12px;
  4668. color:#606266;
  4669. }
  4670. #u6605 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 2px 2px 0px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u6605_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. visibility:hidden;
  4682. }
  4683. #u6606_img {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:115px;
  4689. height:35px;
  4690. }
  4691. #u6606 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:257px;
  4695. top:216px;
  4696. width:115px;
  4697. height:35px;
  4698. display:flex;
  4699. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:12px;
  4703. color:#606266;
  4704. }
  4705. #u6606 .text {
  4706. position:absolute;
  4707. align-self:center;
  4708. padding:2px 2px 2px 0px;
  4709. box-sizing:border-box;
  4710. width:100%;
  4711. }
  4712. #u6606_text {
  4713. border-width:0px;
  4714. word-wrap:break-word;
  4715. text-transform:none;
  4716. visibility:hidden;
  4717. }
  4718. #u6607_img {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:115px;
  4724. height:35px;
  4725. }
  4726. #u6607 {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:372px;
  4730. top:216px;
  4731. width:115px;
  4732. height:35px;
  4733. display:flex;
  4734. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4735. font-weight:400;
  4736. font-style:normal;
  4737. font-size:12px;
  4738. color:#606266;
  4739. }
  4740. #u6607 .text {
  4741. position:absolute;
  4742. align-self:center;
  4743. padding:2px 2px 2px 0px;
  4744. box-sizing:border-box;
  4745. width:100%;
  4746. }
  4747. #u6607_text {
  4748. border-width:0px;
  4749. word-wrap:break-word;
  4750. text-transform:none;
  4751. visibility:hidden;
  4752. }
  4753. #u6608_img {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:98px;
  4759. height:35px;
  4760. }
  4761. #u6608 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:487px;
  4765. top:216px;
  4766. width:98px;
  4767. height:35px;
  4768. display:flex;
  4769. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:12px;
  4773. color:#606266;
  4774. }
  4775. #u6608 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:2px 2px 2px 0px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u6608_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. visibility:hidden;
  4787. }
  4788. #u6609_img {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:116px;
  4794. height:35px;
  4795. }
  4796. #u6609 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:585px;
  4800. top:216px;
  4801. width:116px;
  4802. height:35px;
  4803. display:flex;
  4804. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4805. font-weight:400;
  4806. font-style:normal;
  4807. font-size:12px;
  4808. color:#606266;
  4809. }
  4810. #u6609 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:2px 2px 2px 0px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u6609_text {
  4818. border-width:0px;
  4819. word-wrap:break-word;
  4820. text-transform:none;
  4821. visibility:hidden;
  4822. }
  4823. #u6610_img {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:115px;
  4829. height:35px;
  4830. }
  4831. #u6610 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:701px;
  4835. top:216px;
  4836. width:115px;
  4837. height:35px;
  4838. display:flex;
  4839. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. font-size:12px;
  4843. color:#606266;
  4844. }
  4845. #u6610 .text {
  4846. position:absolute;
  4847. align-self:center;
  4848. padding:2px 2px 2px 0px;
  4849. box-sizing:border-box;
  4850. width:100%;
  4851. }
  4852. #u6610_text {
  4853. border-width:0px;
  4854. word-wrap:break-word;
  4855. text-transform:none;
  4856. visibility:hidden;
  4857. }
  4858. #u6611_img {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:127px;
  4864. height:35px;
  4865. }
  4866. #u6611 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:816px;
  4870. top:216px;
  4871. width:127px;
  4872. height:35px;
  4873. display:flex;
  4874. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4875. font-weight:400;
  4876. font-style:normal;
  4877. font-size:12px;
  4878. color:#606266;
  4879. }
  4880. #u6611 .text {
  4881. position:absolute;
  4882. align-self:center;
  4883. padding:2px 2px 2px 0px;
  4884. box-sizing:border-box;
  4885. width:100%;
  4886. }
  4887. #u6611_text {
  4888. border-width:0px;
  4889. word-wrap:break-word;
  4890. text-transform:none;
  4891. visibility:hidden;
  4892. }
  4893. #u6612_img {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:123px;
  4899. height:35px;
  4900. }
  4901. #u6612 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:943px;
  4905. top:216px;
  4906. width:123px;
  4907. height:35px;
  4908. display:flex;
  4909. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4910. font-weight:400;
  4911. font-style:normal;
  4912. font-size:12px;
  4913. color:#606266;
  4914. }
  4915. #u6612 .text {
  4916. position:absolute;
  4917. align-self:center;
  4918. padding:2px 2px 2px 0px;
  4919. box-sizing:border-box;
  4920. width:100%;
  4921. }
  4922. #u6612_text {
  4923. border-width:0px;
  4924. word-wrap:break-word;
  4925. text-transform:none;
  4926. visibility:hidden;
  4927. }
  4928. #u6613_img {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:149px;
  4934. height:35px;
  4935. }
  4936. #u6613 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:1066px;
  4940. top:216px;
  4941. width:149px;
  4942. height:35px;
  4943. display:flex;
  4944. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:12px;
  4948. color:#606266;
  4949. }
  4950. #u6613 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:2px 2px 2px 0px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u6613_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. visibility:hidden;
  4962. }
  4963. #u6614_img {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:49px;
  4969. height:32px;
  4970. }
  4971. #u6614 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:251px;
  4976. width:49px;
  4977. height:32px;
  4978. display:flex;
  4979. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4980. font-weight:400;
  4981. font-style:normal;
  4982. font-size:12px;
  4983. color:#606266;
  4984. }
  4985. #u6614 .text {
  4986. position:absolute;
  4987. align-self:center;
  4988. padding:2px 2px 2px 0px;
  4989. box-sizing:border-box;
  4990. width:100%;
  4991. }
  4992. #u6614_text {
  4993. border-width:0px;
  4994. word-wrap:break-word;
  4995. text-transform:none;
  4996. visibility:hidden;
  4997. }
  4998. #u6615_img {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:98px;
  5004. height:32px;
  5005. }
  5006. #u6615 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:49px;
  5010. top:251px;
  5011. width:98px;
  5012. height:32px;
  5013. display:flex;
  5014. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:12px;
  5018. color:#606266;
  5019. }
  5020. #u6615 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:2px 2px 2px 0px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u6615_text {
  5028. border-width:0px;
  5029. word-wrap:break-word;
  5030. text-transform:none;
  5031. visibility:hidden;
  5032. }
  5033. #u6616_img {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:110px;
  5039. height:32px;
  5040. }
  5041. #u6616 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:147px;
  5045. top:251px;
  5046. width:110px;
  5047. height:32px;
  5048. display:flex;
  5049. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:12px;
  5053. color:#606266;
  5054. }
  5055. #u6616 .text {
  5056. position:absolute;
  5057. align-self:center;
  5058. padding:2px 2px 2px 0px;
  5059. box-sizing:border-box;
  5060. width:100%;
  5061. }
  5062. #u6616_text {
  5063. border-width:0px;
  5064. word-wrap:break-word;
  5065. text-transform:none;
  5066. visibility:hidden;
  5067. }
  5068. #u6617_img {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:115px;
  5074. height:32px;
  5075. }
  5076. #u6617 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:257px;
  5080. top:251px;
  5081. width:115px;
  5082. height:32px;
  5083. display:flex;
  5084. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:12px;
  5088. color:#606266;
  5089. }
  5090. #u6617 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:2px 2px 2px 0px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u6617_text {
  5098. border-width:0px;
  5099. word-wrap:break-word;
  5100. text-transform:none;
  5101. visibility:hidden;
  5102. }
  5103. #u6618_img {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:115px;
  5109. height:32px;
  5110. }
  5111. #u6618 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:372px;
  5115. top:251px;
  5116. width:115px;
  5117. height:32px;
  5118. display:flex;
  5119. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:12px;
  5123. color:#606266;
  5124. }
  5125. #u6618 .text {
  5126. position:absolute;
  5127. align-self:center;
  5128. padding:2px 2px 2px 0px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u6618_text {
  5133. border-width:0px;
  5134. word-wrap:break-word;
  5135. text-transform:none;
  5136. visibility:hidden;
  5137. }
  5138. #u6619_img {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:98px;
  5144. height:32px;
  5145. }
  5146. #u6619 {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:487px;
  5150. top:251px;
  5151. width:98px;
  5152. height:32px;
  5153. display:flex;
  5154. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5155. font-weight:400;
  5156. font-style:normal;
  5157. font-size:12px;
  5158. color:#606266;
  5159. }
  5160. #u6619 .text {
  5161. position:absolute;
  5162. align-self:center;
  5163. padding:2px 2px 2px 0px;
  5164. box-sizing:border-box;
  5165. width:100%;
  5166. }
  5167. #u6619_text {
  5168. border-width:0px;
  5169. word-wrap:break-word;
  5170. text-transform:none;
  5171. visibility:hidden;
  5172. }
  5173. #u6620_img {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:116px;
  5179. height:32px;
  5180. }
  5181. #u6620 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:585px;
  5185. top:251px;
  5186. width:116px;
  5187. height:32px;
  5188. display:flex;
  5189. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:12px;
  5193. color:#606266;
  5194. }
  5195. #u6620 .text {
  5196. position:absolute;
  5197. align-self:center;
  5198. padding:2px 2px 2px 0px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u6620_text {
  5203. border-width:0px;
  5204. word-wrap:break-word;
  5205. text-transform:none;
  5206. visibility:hidden;
  5207. }
  5208. #u6621_img {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:0px;
  5212. top:0px;
  5213. width:115px;
  5214. height:32px;
  5215. }
  5216. #u6621 {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:701px;
  5220. top:251px;
  5221. width:115px;
  5222. height:32px;
  5223. display:flex;
  5224. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:12px;
  5228. color:#606266;
  5229. }
  5230. #u6621 .text {
  5231. position:absolute;
  5232. align-self:center;
  5233. padding:2px 2px 2px 0px;
  5234. box-sizing:border-box;
  5235. width:100%;
  5236. }
  5237. #u6621_text {
  5238. border-width:0px;
  5239. word-wrap:break-word;
  5240. text-transform:none;
  5241. visibility:hidden;
  5242. }
  5243. #u6622_img {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:127px;
  5249. height:32px;
  5250. }
  5251. #u6622 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:816px;
  5255. top:251px;
  5256. width:127px;
  5257. height:32px;
  5258. display:flex;
  5259. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:12px;
  5263. color:#606266;
  5264. }
  5265. #u6622 .text {
  5266. position:absolute;
  5267. align-self:center;
  5268. padding:2px 2px 2px 0px;
  5269. box-sizing:border-box;
  5270. width:100%;
  5271. }
  5272. #u6622_text {
  5273. border-width:0px;
  5274. word-wrap:break-word;
  5275. text-transform:none;
  5276. visibility:hidden;
  5277. }
  5278. #u6623_img {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:123px;
  5284. height:32px;
  5285. }
  5286. #u6623 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:943px;
  5290. top:251px;
  5291. width:123px;
  5292. height:32px;
  5293. display:flex;
  5294. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5295. font-weight:400;
  5296. font-style:normal;
  5297. font-size:12px;
  5298. color:#606266;
  5299. }
  5300. #u6623 .text {
  5301. position:absolute;
  5302. align-self:center;
  5303. padding:2px 2px 2px 0px;
  5304. box-sizing:border-box;
  5305. width:100%;
  5306. }
  5307. #u6623_text {
  5308. border-width:0px;
  5309. word-wrap:break-word;
  5310. text-transform:none;
  5311. visibility:hidden;
  5312. }
  5313. #u6624_img {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:149px;
  5319. height:32px;
  5320. }
  5321. #u6624 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:1066px;
  5325. top:251px;
  5326. width:149px;
  5327. height:32px;
  5328. display:flex;
  5329. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:12px;
  5333. color:#606266;
  5334. }
  5335. #u6624 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:2px 2px 2px 0px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u6624_text {
  5343. border-width:0px;
  5344. word-wrap:break-word;
  5345. text-transform:none;
  5346. visibility:hidden;
  5347. }
  5348. #u6625_div {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:0px;
  5352. top:0px;
  5353. width:72px;
  5354. height:50px;
  5355. background:inherit;
  5356. background-color:rgba(255, 255, 255, 0);
  5357. border:none;
  5358. border-left:0px;
  5359. border-top:0px;
  5360. border-right:0px;
  5361. border-radius:0px;
  5362. border-bottom-right-radius:0px;
  5363. border-bottom-left-radius:0px;
  5364. -moz-box-shadow:none;
  5365. -webkit-box-shadow:none;
  5366. box-shadow:none;
  5367. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5368. font-weight:500;
  5369. font-style:normal;
  5370. }
  5371. #u6625 {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:352px;
  5375. top:100px;
  5376. width:72px;
  5377. height:50px;
  5378. display:flex;
  5379. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5380. font-weight:500;
  5381. font-style:normal;
  5382. }
  5383. #u6625 .text {
  5384. position:absolute;
  5385. align-self:center;
  5386. padding:0px 0px 0px 0px;
  5387. box-sizing:border-box;
  5388. width:100%;
  5389. }
  5390. #u6625_text {
  5391. border-width:0px;
  5392. white-space:nowrap;
  5393. text-transform:none;
  5394. }
  5395. #u6626_div {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:0px;
  5399. top:0px;
  5400. width:78px;
  5401. height:50px;
  5402. background:inherit;
  5403. background-color:rgba(255, 255, 255, 0);
  5404. box-sizing:border-box;
  5405. border-width:2px;
  5406. border-style:solid;
  5407. border-color:rgba(24, 144, 255, 1);
  5408. border-left:0px;
  5409. border-top:0px;
  5410. border-right:0px;
  5411. border-radius:0px;
  5412. border-bottom-right-radius:0px;
  5413. border-bottom-left-radius:0px;
  5414. -moz-box-shadow:none;
  5415. -webkit-box-shadow:none;
  5416. box-shadow:none;
  5417. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5418. font-weight:500;
  5419. font-style:normal;
  5420. color:#1890FF;
  5421. }
  5422. #u6626 {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:454px;
  5426. top:100px;
  5427. width:78px;
  5428. height:50px;
  5429. display:flex;
  5430. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5431. font-weight:500;
  5432. font-style:normal;
  5433. color:#1890FF;
  5434. }
  5435. #u6626 .text {
  5436. position:absolute;
  5437. align-self:center;
  5438. padding:0px 0px 0px 0px;
  5439. box-sizing:border-box;
  5440. width:100%;
  5441. }
  5442. #u6626_text {
  5443. border-width:0px;
  5444. white-space:nowrap;
  5445. text-transform:none;
  5446. }
  5447. #u6627_div {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:0px;
  5451. top:0px;
  5452. width:97px;
  5453. height:50px;
  5454. background:inherit;
  5455. background-color:rgba(255, 255, 255, 0);
  5456. border:none;
  5457. border-left:0px;
  5458. border-top:0px;
  5459. border-right:0px;
  5460. border-radius:0px;
  5461. border-bottom-right-radius:0px;
  5462. border-bottom-left-radius:0px;
  5463. -moz-box-shadow:none;
  5464. -webkit-box-shadow:none;
  5465. box-shadow:none;
  5466. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5467. font-weight:500;
  5468. font-style:normal;
  5469. }
  5470. #u6627 {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:562px;
  5474. top:100px;
  5475. width:97px;
  5476. height:50px;
  5477. display:flex;
  5478. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5479. font-weight:500;
  5480. font-style:normal;
  5481. }
  5482. #u6627 .text {
  5483. position:absolute;
  5484. align-self:center;
  5485. padding:0px 0px 0px 0px;
  5486. box-sizing:border-box;
  5487. width:100%;
  5488. }
  5489. #u6627_text {
  5490. border-width:0px;
  5491. white-space:nowrap;
  5492. text-transform:none;
  5493. }
  5494. #u6628_div {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:92px;
  5500. height:50px;
  5501. background:inherit;
  5502. background-color:rgba(255, 255, 255, 0);
  5503. border:none;
  5504. border-left:0px;
  5505. border-top:0px;
  5506. border-right:0px;
  5507. border-radius:0px;
  5508. border-bottom-right-radius:0px;
  5509. border-bottom-left-radius:0px;
  5510. -moz-box-shadow:none;
  5511. -webkit-box-shadow:none;
  5512. box-shadow:none;
  5513. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5514. font-weight:500;
  5515. font-style:normal;
  5516. }
  5517. #u6628 {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:689px;
  5521. top:100px;
  5522. width:92px;
  5523. height:50px;
  5524. display:flex;
  5525. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5526. font-weight:500;
  5527. font-style:normal;
  5528. }
  5529. #u6628 .text {
  5530. position:absolute;
  5531. align-self:center;
  5532. padding:0px 0px 0px 0px;
  5533. box-sizing:border-box;
  5534. width:100%;
  5535. }
  5536. #u6628_text {
  5537. border-width:0px;
  5538. white-space:nowrap;
  5539. text-transform:none;
  5540. }
  5541. #u6629 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:0px;
  5547. height:0px;
  5548. }
  5549. #u6630_div {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:0px;
  5553. top:0px;
  5554. width:140px;
  5555. height:30px;
  5556. background:inherit;
  5557. background-color:rgba(255, 255, 255, 1);
  5558. box-sizing:border-box;
  5559. border-width:1px;
  5560. border-style:solid;
  5561. border-color:rgba(201, 201, 201, 1);
  5562. border-radius:4px;
  5563. -moz-box-shadow:none;
  5564. -webkit-box-shadow:none;
  5565. box-shadow:none;
  5566. font-family:'Microsoft YaHei', sans-serif;
  5567. font-weight:400;
  5568. font-style:normal;
  5569. font-size:14px;
  5570. color:#CCCCCC;
  5571. text-align:left;
  5572. }
  5573. #u6630 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:352px;
  5577. top:171px;
  5578. width:140px;
  5579. height:30px;
  5580. display:flex;
  5581. font-family:'Microsoft YaHei', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:14px;
  5585. color:#CCCCCC;
  5586. text-align:left;
  5587. }
  5588. #u6630 .text {
  5589. position:absolute;
  5590. align-self:center;
  5591. padding:2px 8px 2px 8px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u6630_text {
  5596. border-width:0px;
  5597. word-wrap:break-word;
  5598. text-transform:none;
  5599. visibility:hidden;
  5600. }
  5601. #u6631_input {
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:127px;
  5606. height:25px;
  5607. padding:2px 2px 2px 2px;
  5608. font-family:'Microsoft YaHei', sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:10px;
  5612. letter-spacing:normal;
  5613. color:#000000;
  5614. vertical-align:none;
  5615. text-align:left;
  5616. text-transform:none;
  5617. background-color:transparent;
  5618. border-color:transparent;
  5619. }
  5620. #u6631_input.disabled {
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:127px;
  5625. height:25px;
  5626. padding:2px 2px 2px 2px;
  5627. font-family:'Microsoft YaHei', sans-serif;
  5628. font-weight:400;
  5629. font-style:normal;
  5630. font-size:10px;
  5631. letter-spacing:normal;
  5632. color:#000000;
  5633. vertical-align:none;
  5634. text-align:left;
  5635. text-transform:none;
  5636. background-color:transparent;
  5637. border-color:transparent;
  5638. }
  5639. #u6631_div {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:0px;
  5643. top:0px;
  5644. width:127px;
  5645. height:25px;
  5646. background:inherit;
  5647. background-color:rgba(255, 255, 255, 1);
  5648. border:none;
  5649. border-radius:0px;
  5650. -moz-box-shadow:none;
  5651. -webkit-box-shadow:none;
  5652. box-shadow:none;
  5653. font-family:'Microsoft YaHei', sans-serif;
  5654. font-weight:400;
  5655. font-style:normal;
  5656. font-size:10px;
  5657. }
  5658. #u6631 {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:360px;
  5662. top:172px;
  5663. width:127px;
  5664. height:25px;
  5665. display:flex;
  5666. font-family:'Microsoft YaHei', sans-serif;
  5667. font-weight:400;
  5668. font-style:normal;
  5669. font-size:10px;
  5670. }
  5671. #u6631 .text {
  5672. position:absolute;
  5673. align-self:center;
  5674. padding:2px 2px 2px 2px;
  5675. box-sizing:border-box;
  5676. width:100%;
  5677. }
  5678. #u6631_div.disabled {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:0px;
  5682. top:0px;
  5683. width:127px;
  5684. height:25px;
  5685. background:inherit;
  5686. background-color:rgba(240, 240, 240, 1);
  5687. border:none;
  5688. border-radius:0px;
  5689. -moz-box-shadow:none;
  5690. -webkit-box-shadow:none;
  5691. box-shadow:none;
  5692. font-family:'Microsoft YaHei', sans-serif;
  5693. font-weight:400;
  5694. font-style:normal;
  5695. font-size:10px;
  5696. }
  5697. #u6631.disabled {
  5698. }
  5699. #u6632 {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:0px;
  5705. height:0px;
  5706. }
  5707. #u6633_div {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:140px;
  5713. height:30px;
  5714. background:inherit;
  5715. background-color:rgba(255, 255, 255, 1);
  5716. box-sizing:border-box;
  5717. border-width:1px;
  5718. border-style:solid;
  5719. border-color:rgba(215, 215, 215, 1);
  5720. border-radius:4px;
  5721. -moz-box-shadow:none;
  5722. -webkit-box-shadow:none;
  5723. box-shadow:none;
  5724. font-size:11px;
  5725. }
  5726. #u6633 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:1253px;
  5730. top:170px;
  5731. width:140px;
  5732. height:30px;
  5733. display:flex;
  5734. font-size:11px;
  5735. }
  5736. #u6633 .text {
  5737. position:absolute;
  5738. align-self:center;
  5739. padding:2px 2px 2px 2px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u6633_text {
  5744. border-width:0px;
  5745. word-wrap:break-word;
  5746. text-transform:none;
  5747. visibility:hidden;
  5748. }
  5749. #u6634_input {
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:120px;
  5754. height:23px;
  5755. padding:2px 2px 2px 2px;
  5756. font-family:'ArialMT', 'Arial', sans-serif;
  5757. font-weight:400;
  5758. font-style:normal;
  5759. font-size:11px;
  5760. letter-spacing:normal;
  5761. color:#AAAAAA;
  5762. vertical-align:none;
  5763. text-align:left;
  5764. text-transform:none;
  5765. background-color:transparent;
  5766. border-color:transparent;
  5767. }
  5768. #u6634_input.disabled {
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:120px;
  5773. height:23px;
  5774. padding:2px 2px 2px 2px;
  5775. font-family:'ArialMT', 'Arial', sans-serif;
  5776. font-weight:400;
  5777. font-style:normal;
  5778. font-size:11px;
  5779. letter-spacing:normal;
  5780. color:#AAAAAA;
  5781. vertical-align:none;
  5782. text-align:left;
  5783. text-transform:none;
  5784. background-color:transparent;
  5785. border-color:transparent;
  5786. }
  5787. #u6634_div {
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:0px;
  5791. top:0px;
  5792. width:120px;
  5793. height:23px;
  5794. background:inherit;
  5795. background-color:rgba(255, 255, 255, 1);
  5796. border:none;
  5797. border-radius:0px;
  5798. -moz-box-shadow:none;
  5799. -webkit-box-shadow:none;
  5800. box-shadow:none;
  5801. font-size:11px;
  5802. color:#AAAAAA;
  5803. }
  5804. #u6634 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:1260px;
  5808. top:172px;
  5809. width:120px;
  5810. height:23px;
  5811. display:flex;
  5812. font-size:11px;
  5813. color:#AAAAAA;
  5814. }
  5815. #u6634 .text {
  5816. position:absolute;
  5817. align-self:flex-start;
  5818. padding:2px 2px 2px 2px;
  5819. box-sizing:border-box;
  5820. width:100%;
  5821. }
  5822. #u6634_div.disabled {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:120px;
  5828. height:23px;
  5829. background:inherit;
  5830. background-color:rgba(240, 240, 240, 1);
  5831. border:none;
  5832. border-radius:0px;
  5833. -moz-box-shadow:none;
  5834. -webkit-box-shadow:none;
  5835. box-shadow:none;
  5836. font-size:11px;
  5837. color:#AAAAAA;
  5838. }
  5839. #u6634.disabled {
  5840. }
  5841. .u6634_input_option {
  5842. font-size:11px;
  5843. }
  5844. #u6635_div {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:0px;
  5848. top:0px;
  5849. width:59px;
  5850. height:30px;
  5851. background:inherit;
  5852. background-color:rgba(0, 153, 255, 1);
  5853. box-sizing:border-box;
  5854. border-width:1px;
  5855. border-style:solid;
  5856. border-color:rgba(0, 153, 255, 1);
  5857. border-radius:4px;
  5858. -moz-box-shadow:none;
  5859. -webkit-box-shadow:none;
  5860. box-shadow:none;
  5861. font-family:'Microsoft YaHei', sans-serif;
  5862. font-weight:400;
  5863. font-style:normal;
  5864. font-size:14px;
  5865. color:#FFFFFF;
  5866. }
  5867. #u6635 {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:503px;
  5871. top:211px;
  5872. width:59px;
  5873. height:30px;
  5874. display:flex;
  5875. font-family:'Microsoft YaHei', sans-serif;
  5876. font-weight:400;
  5877. font-style:normal;
  5878. font-size:14px;
  5879. color:#FFFFFF;
  5880. }
  5881. #u6635 .text {
  5882. position:absolute;
  5883. align-self:center;
  5884. padding:5px 15px 5px 15px;
  5885. box-sizing:border-box;
  5886. width:100%;
  5887. }
  5888. #u6635_text {
  5889. border-width:0px;
  5890. white-space:nowrap;
  5891. text-transform:none;
  5892. }
  5893. #u6636 {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:0px;
  5897. top:0px;
  5898. width:0px;
  5899. height:0px;
  5900. }
  5901. #u6637_div {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:0px;
  5905. top:0px;
  5906. width:140px;
  5907. height:30px;
  5908. background:inherit;
  5909. background-color:rgba(255, 255, 255, 1);
  5910. box-sizing:border-box;
  5911. border-width:1px;
  5912. border-style:solid;
  5913. border-color:rgba(215, 215, 215, 1);
  5914. border-radius:4px;
  5915. -moz-box-shadow:none;
  5916. -webkit-box-shadow:none;
  5917. box-shadow:none;
  5918. font-size:11px;
  5919. }
  5920. #u6637 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:1403px;
  5924. top:171px;
  5925. width:140px;
  5926. height:30px;
  5927. display:flex;
  5928. font-size:11px;
  5929. }
  5930. #u6637 .text {
  5931. position:absolute;
  5932. align-self:center;
  5933. padding:2px 2px 2px 2px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u6637_text {
  5938. border-width:0px;
  5939. word-wrap:break-word;
  5940. text-transform:none;
  5941. visibility:hidden;
  5942. }
  5943. #u6638_input {
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:123px;
  5948. height:23px;
  5949. padding:2px 2px 2px 2px;
  5950. font-family:'ArialMT', 'Arial', sans-serif;
  5951. font-weight:400;
  5952. font-style:normal;
  5953. font-size:11px;
  5954. letter-spacing:normal;
  5955. color:#AAAAAA;
  5956. vertical-align:none;
  5957. text-align:left;
  5958. text-transform:none;
  5959. background-color:transparent;
  5960. border-color:transparent;
  5961. }
  5962. #u6638_input.disabled {
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:123px;
  5967. height:23px;
  5968. padding:2px 2px 2px 2px;
  5969. font-family:'ArialMT', 'Arial', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:11px;
  5973. letter-spacing:normal;
  5974. color:#AAAAAA;
  5975. vertical-align:none;
  5976. text-align:left;
  5977. text-transform:none;
  5978. background-color:transparent;
  5979. border-color:transparent;
  5980. }
  5981. #u6638_div {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:123px;
  5987. height:23px;
  5988. background:inherit;
  5989. background-color:rgba(255, 255, 255, 1);
  5990. border:none;
  5991. border-radius:0px;
  5992. -moz-box-shadow:none;
  5993. -webkit-box-shadow:none;
  5994. box-shadow:none;
  5995. font-size:11px;
  5996. color:#AAAAAA;
  5997. }
  5998. #u6638 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:1409px;
  6002. top:173px;
  6003. width:123px;
  6004. height:23px;
  6005. display:flex;
  6006. font-size:11px;
  6007. color:#AAAAAA;
  6008. }
  6009. #u6638 .text {
  6010. position:absolute;
  6011. align-self:flex-start;
  6012. padding:2px 2px 2px 2px;
  6013. box-sizing:border-box;
  6014. width:100%;
  6015. }
  6016. #u6638_div.disabled {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:123px;
  6022. height:23px;
  6023. background:inherit;
  6024. background-color:rgba(240, 240, 240, 1);
  6025. border:none;
  6026. border-radius:0px;
  6027. -moz-box-shadow:none;
  6028. -webkit-box-shadow:none;
  6029. box-shadow:none;
  6030. font-size:11px;
  6031. color:#AAAAAA;
  6032. }
  6033. #u6638.disabled {
  6034. }
  6035. .u6638_input_option {
  6036. font-size:11px;
  6037. }
  6038. #u6639 {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:0px;
  6042. top:0px;
  6043. width:0px;
  6044. height:0px;
  6045. }
  6046. #u6640_div {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:0px;
  6050. top:0px;
  6051. width:140px;
  6052. height:30px;
  6053. background:inherit;
  6054. background-color:rgba(255, 255, 255, 1);
  6055. box-sizing:border-box;
  6056. border-width:1px;
  6057. border-style:solid;
  6058. border-color:rgba(201, 201, 201, 1);
  6059. border-radius:4px;
  6060. -moz-box-shadow:none;
  6061. -webkit-box-shadow:none;
  6062. box-shadow:none;
  6063. font-family:'Microsoft YaHei', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:14px;
  6067. color:#CCCCCC;
  6068. text-align:left;
  6069. }
  6070. #u6640 {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:503px;
  6074. top:171px;
  6075. width:140px;
  6076. height:30px;
  6077. display:flex;
  6078. font-family:'Microsoft YaHei', sans-serif;
  6079. font-weight:400;
  6080. font-style:normal;
  6081. font-size:14px;
  6082. color:#CCCCCC;
  6083. text-align:left;
  6084. }
  6085. #u6640 .text {
  6086. position:absolute;
  6087. align-self:center;
  6088. padding:2px 8px 2px 8px;
  6089. box-sizing:border-box;
  6090. width:100%;
  6091. }
  6092. #u6640_text {
  6093. border-width:0px;
  6094. word-wrap:break-word;
  6095. text-transform:none;
  6096. visibility:hidden;
  6097. }
  6098. #u6641_input {
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:127px;
  6103. height:25px;
  6104. padding:2px 2px 2px 2px;
  6105. font-family:'Microsoft YaHei', sans-serif;
  6106. font-weight:400;
  6107. font-style:normal;
  6108. font-size:10px;
  6109. letter-spacing:normal;
  6110. color:#000000;
  6111. vertical-align:none;
  6112. text-align:left;
  6113. text-transform:none;
  6114. background-color:transparent;
  6115. border-color:transparent;
  6116. }
  6117. #u6641_input.disabled {
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:127px;
  6122. height:25px;
  6123. padding:2px 2px 2px 2px;
  6124. font-family:'Microsoft YaHei', sans-serif;
  6125. font-weight:400;
  6126. font-style:normal;
  6127. font-size:10px;
  6128. letter-spacing:normal;
  6129. color:#000000;
  6130. vertical-align:none;
  6131. text-align:left;
  6132. text-transform:none;
  6133. background-color:transparent;
  6134. border-color:transparent;
  6135. }
  6136. #u6641_div {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:0px;
  6140. top:0px;
  6141. width:127px;
  6142. height:25px;
  6143. background:inherit;
  6144. background-color:rgba(255, 255, 255, 1);
  6145. border:none;
  6146. border-radius:0px;
  6147. -moz-box-shadow:none;
  6148. -webkit-box-shadow:none;
  6149. box-shadow:none;
  6150. font-family:'Microsoft YaHei', sans-serif;
  6151. font-weight:400;
  6152. font-style:normal;
  6153. font-size:10px;
  6154. }
  6155. #u6641 {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:511px;
  6159. top:172px;
  6160. width:127px;
  6161. height:25px;
  6162. display:flex;
  6163. font-family:'Microsoft YaHei', sans-serif;
  6164. font-weight:400;
  6165. font-style:normal;
  6166. font-size:10px;
  6167. }
  6168. #u6641 .text {
  6169. position:absolute;
  6170. align-self:center;
  6171. padding:2px 2px 2px 2px;
  6172. box-sizing:border-box;
  6173. width:100%;
  6174. }
  6175. #u6641_div.disabled {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:0px;
  6179. top:0px;
  6180. width:127px;
  6181. height:25px;
  6182. background:inherit;
  6183. background-color:rgba(240, 240, 240, 1);
  6184. border:none;
  6185. border-radius:0px;
  6186. -moz-box-shadow:none;
  6187. -webkit-box-shadow:none;
  6188. box-shadow:none;
  6189. font-family:'Microsoft YaHei', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. font-size:10px;
  6193. }
  6194. #u6641.disabled {
  6195. }
  6196. #u6642 {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:0px;
  6202. height:0px;
  6203. }
  6204. #u6643_div {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:0px;
  6208. top:0px;
  6209. width:140px;
  6210. height:30px;
  6211. background:inherit;
  6212. background-color:rgba(255, 255, 255, 1);
  6213. box-sizing:border-box;
  6214. border-width:1px;
  6215. border-style:solid;
  6216. border-color:rgba(201, 201, 201, 1);
  6217. border-radius:4px;
  6218. -moz-box-shadow:none;
  6219. -webkit-box-shadow:none;
  6220. box-shadow:none;
  6221. font-family:'Microsoft YaHei', sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:14px;
  6225. color:#CCCCCC;
  6226. text-align:left;
  6227. }
  6228. #u6643 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:653px;
  6232. top:171px;
  6233. width:140px;
  6234. height:30px;
  6235. display:flex;
  6236. font-family:'Microsoft YaHei', sans-serif;
  6237. font-weight:400;
  6238. font-style:normal;
  6239. font-size:14px;
  6240. color:#CCCCCC;
  6241. text-align:left;
  6242. }
  6243. #u6643 .text {
  6244. position:absolute;
  6245. align-self:center;
  6246. padding:2px 8px 2px 8px;
  6247. box-sizing:border-box;
  6248. width:100%;
  6249. }
  6250. #u6643_text {
  6251. border-width:0px;
  6252. word-wrap:break-word;
  6253. text-transform:none;
  6254. visibility:hidden;
  6255. }
  6256. #u6644_input {
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:127px;
  6261. height:25px;
  6262. padding:2px 2px 2px 2px;
  6263. font-family:'Microsoft YaHei', sans-serif;
  6264. font-weight:400;
  6265. font-style:normal;
  6266. font-size:10px;
  6267. letter-spacing:normal;
  6268. color:#000000;
  6269. vertical-align:none;
  6270. text-align:left;
  6271. text-transform:none;
  6272. background-color:transparent;
  6273. border-color:transparent;
  6274. }
  6275. #u6644_input.disabled {
  6276. position:absolute;
  6277. left:0px;
  6278. top:0px;
  6279. width:127px;
  6280. height:25px;
  6281. padding:2px 2px 2px 2px;
  6282. font-family:'Microsoft YaHei', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:10px;
  6286. letter-spacing:normal;
  6287. color:#000000;
  6288. vertical-align:none;
  6289. text-align:left;
  6290. text-transform:none;
  6291. background-color:transparent;
  6292. border-color:transparent;
  6293. }
  6294. #u6644_div {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:127px;
  6300. height:25px;
  6301. background:inherit;
  6302. background-color:rgba(255, 255, 255, 1);
  6303. border:none;
  6304. border-radius:0px;
  6305. -moz-box-shadow:none;
  6306. -webkit-box-shadow:none;
  6307. box-shadow:none;
  6308. font-family:'Microsoft YaHei', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:10px;
  6312. }
  6313. #u6644 {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:661px;
  6317. top:172px;
  6318. width:127px;
  6319. height:25px;
  6320. display:flex;
  6321. font-family:'Microsoft YaHei', sans-serif;
  6322. font-weight:400;
  6323. font-style:normal;
  6324. font-size:10px;
  6325. }
  6326. #u6644 .text {
  6327. position:absolute;
  6328. align-self:center;
  6329. padding:2px 2px 2px 2px;
  6330. box-sizing:border-box;
  6331. width:100%;
  6332. }
  6333. #u6644_div.disabled {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:127px;
  6339. height:25px;
  6340. background:inherit;
  6341. background-color:rgba(240, 240, 240, 1);
  6342. border:none;
  6343. border-radius:0px;
  6344. -moz-box-shadow:none;
  6345. -webkit-box-shadow:none;
  6346. box-shadow:none;
  6347. font-family:'Microsoft YaHei', sans-serif;
  6348. font-weight:400;
  6349. font-style:normal;
  6350. font-size:10px;
  6351. }
  6352. #u6644.disabled {
  6353. }
  6354. #u6645 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:0px;
  6358. top:0px;
  6359. width:0px;
  6360. height:0px;
  6361. }
  6362. #u6646_div {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:0px;
  6366. top:0px;
  6367. width:140px;
  6368. height:30px;
  6369. background:inherit;
  6370. background-color:rgba(255, 255, 255, 1);
  6371. box-sizing:border-box;
  6372. border-width:1px;
  6373. border-style:solid;
  6374. border-color:rgba(215, 215, 215, 1);
  6375. border-radius:4px;
  6376. -moz-box-shadow:none;
  6377. -webkit-box-shadow:none;
  6378. box-shadow:none;
  6379. font-size:11px;
  6380. }
  6381. #u6646 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:1103px;
  6385. top:171px;
  6386. width:140px;
  6387. height:30px;
  6388. display:flex;
  6389. font-size:11px;
  6390. }
  6391. #u6646 .text {
  6392. position:absolute;
  6393. align-self:center;
  6394. padding:2px 2px 2px 2px;
  6395. box-sizing:border-box;
  6396. width:100%;
  6397. }
  6398. #u6646_text {
  6399. border-width:0px;
  6400. word-wrap:break-word;
  6401. text-transform:none;
  6402. visibility:hidden;
  6403. }
  6404. #u6647_input {
  6405. position:absolute;
  6406. left:0px;
  6407. top:0px;
  6408. width:120px;
  6409. height:23px;
  6410. padding:2px 2px 2px 2px;
  6411. font-family:'ArialMT', 'Arial', sans-serif;
  6412. font-weight:400;
  6413. font-style:normal;
  6414. font-size:11px;
  6415. letter-spacing:normal;
  6416. color:#AAAAAA;
  6417. vertical-align:none;
  6418. text-align:left;
  6419. text-transform:none;
  6420. background-color:transparent;
  6421. border-color:transparent;
  6422. }
  6423. #u6647_input.disabled {
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:120px;
  6428. height:23px;
  6429. padding:2px 2px 2px 2px;
  6430. font-family:'ArialMT', 'Arial', sans-serif;
  6431. font-weight:400;
  6432. font-style:normal;
  6433. font-size:11px;
  6434. letter-spacing:normal;
  6435. color:#AAAAAA;
  6436. vertical-align:none;
  6437. text-align:left;
  6438. text-transform:none;
  6439. background-color:transparent;
  6440. border-color:transparent;
  6441. }
  6442. #u6647_div {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:0px;
  6446. top:0px;
  6447. width:120px;
  6448. height:23px;
  6449. background:inherit;
  6450. background-color:rgba(255, 255, 255, 1);
  6451. border:none;
  6452. border-radius:0px;
  6453. -moz-box-shadow:none;
  6454. -webkit-box-shadow:none;
  6455. box-shadow:none;
  6456. font-size:11px;
  6457. color:#AAAAAA;
  6458. }
  6459. #u6647 {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:1110px;
  6463. top:173px;
  6464. width:120px;
  6465. height:23px;
  6466. display:flex;
  6467. font-size:11px;
  6468. color:#AAAAAA;
  6469. }
  6470. #u6647 .text {
  6471. position:absolute;
  6472. align-self:flex-start;
  6473. padding:2px 2px 2px 2px;
  6474. box-sizing:border-box;
  6475. width:100%;
  6476. }
  6477. #u6647_div.disabled {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:0px;
  6481. top:0px;
  6482. width:120px;
  6483. height:23px;
  6484. background:inherit;
  6485. background-color:rgba(240, 240, 240, 1);
  6486. border:none;
  6487. border-radius:0px;
  6488. -moz-box-shadow:none;
  6489. -webkit-box-shadow:none;
  6490. box-shadow:none;
  6491. font-size:11px;
  6492. color:#AAAAAA;
  6493. }
  6494. #u6647.disabled {
  6495. }
  6496. .u6647_input_option {
  6497. font-size:11px;
  6498. }
  6499. #u6648_div {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:0px;
  6503. top:0px;
  6504. width:55px;
  6505. height:30px;
  6506. background:inherit;
  6507. background-color:rgba(255, 255, 255, 1);
  6508. box-sizing:border-box;
  6509. border-width:1px;
  6510. border-style:solid;
  6511. border-color:rgba(170, 170, 170, 1);
  6512. border-radius:4px;
  6513. -moz-box-shadow:none;
  6514. -webkit-box-shadow:none;
  6515. box-shadow:none;
  6516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6517. font-weight:400;
  6518. font-style:normal;
  6519. font-size:12px;
  6520. color:#555555;
  6521. }
  6522. #u6648 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:572px;
  6526. top:211px;
  6527. width:55px;
  6528. height:30px;
  6529. display:flex;
  6530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. font-size:12px;
  6534. color:#555555;
  6535. }
  6536. #u6648 .text {
  6537. position:absolute;
  6538. align-self:center;
  6539. padding:5px 15px 5px 15px;
  6540. box-sizing:border-box;
  6541. width:100%;
  6542. }
  6543. #u6648_text {
  6544. border-width:0px;
  6545. white-space:nowrap;
  6546. text-transform:none;
  6547. }
  6548. #u6649 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:0px;
  6554. height:0px;
  6555. }
  6556. #u6650_div {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:0px;
  6560. top:0px;
  6561. width:140px;
  6562. height:30px;
  6563. background:inherit;
  6564. background-color:rgba(255, 255, 255, 1);
  6565. box-sizing:border-box;
  6566. border-width:1px;
  6567. border-style:solid;
  6568. border-color:rgba(201, 201, 201, 1);
  6569. border-radius:4px;
  6570. -moz-box-shadow:none;
  6571. -webkit-box-shadow:none;
  6572. box-shadow:none;
  6573. font-family:'Microsoft YaHei', sans-serif;
  6574. font-weight:400;
  6575. font-style:normal;
  6576. font-size:14px;
  6577. color:#CCCCCC;
  6578. text-align:left;
  6579. }
  6580. #u6650 {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:803px;
  6584. top:171px;
  6585. width:140px;
  6586. height:30px;
  6587. display:flex;
  6588. font-family:'Microsoft YaHei', sans-serif;
  6589. font-weight:400;
  6590. font-style:normal;
  6591. font-size:14px;
  6592. color:#CCCCCC;
  6593. text-align:left;
  6594. }
  6595. #u6650 .text {
  6596. position:absolute;
  6597. align-self:center;
  6598. padding:2px 8px 2px 8px;
  6599. box-sizing:border-box;
  6600. width:100%;
  6601. }
  6602. #u6650_text {
  6603. border-width:0px;
  6604. word-wrap:break-word;
  6605. text-transform:none;
  6606. visibility:hidden;
  6607. }
  6608. #u6651_input {
  6609. position:absolute;
  6610. left:0px;
  6611. top:0px;
  6612. width:127px;
  6613. height:25px;
  6614. padding:2px 2px 2px 2px;
  6615. font-family:'Microsoft YaHei', sans-serif;
  6616. font-weight:400;
  6617. font-style:normal;
  6618. font-size:10px;
  6619. letter-spacing:normal;
  6620. color:#000000;
  6621. vertical-align:none;
  6622. text-align:left;
  6623. text-transform:none;
  6624. background-color:transparent;
  6625. border-color:transparent;
  6626. }
  6627. #u6651_input.disabled {
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:127px;
  6632. height:25px;
  6633. padding:2px 2px 2px 2px;
  6634. font-family:'Microsoft YaHei', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:10px;
  6638. letter-spacing:normal;
  6639. color:#000000;
  6640. vertical-align:none;
  6641. text-align:left;
  6642. text-transform:none;
  6643. background-color:transparent;
  6644. border-color:transparent;
  6645. }
  6646. #u6651_div {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:127px;
  6652. height:25px;
  6653. background:inherit;
  6654. background-color:rgba(255, 255, 255, 1);
  6655. border:none;
  6656. border-radius:0px;
  6657. -moz-box-shadow:none;
  6658. -webkit-box-shadow:none;
  6659. box-shadow:none;
  6660. font-family:'Microsoft YaHei', sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. font-size:10px;
  6664. }
  6665. #u6651 {
  6666. border-width:0px;
  6667. position:absolute;
  6668. left:811px;
  6669. top:172px;
  6670. width:127px;
  6671. height:25px;
  6672. display:flex;
  6673. font-family:'Microsoft YaHei', sans-serif;
  6674. font-weight:400;
  6675. font-style:normal;
  6676. font-size:10px;
  6677. }
  6678. #u6651 .text {
  6679. position:absolute;
  6680. align-self:center;
  6681. padding:2px 2px 2px 2px;
  6682. box-sizing:border-box;
  6683. width:100%;
  6684. }
  6685. #u6651_div.disabled {
  6686. border-width:0px;
  6687. position:absolute;
  6688. left:0px;
  6689. top:0px;
  6690. width:127px;
  6691. height:25px;
  6692. background:inherit;
  6693. background-color:rgba(240, 240, 240, 1);
  6694. border:none;
  6695. border-radius:0px;
  6696. -moz-box-shadow:none;
  6697. -webkit-box-shadow:none;
  6698. box-shadow:none;
  6699. font-family:'Microsoft YaHei', sans-serif;
  6700. font-weight:400;
  6701. font-style:normal;
  6702. font-size:10px;
  6703. }
  6704. #u6651.disabled {
  6705. }
  6706. #u6652 {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:0px;
  6712. height:0px;
  6713. }
  6714. #u6653_div {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:0px;
  6718. top:0px;
  6719. width:140px;
  6720. height:30px;
  6721. background:inherit;
  6722. background-color:rgba(255, 255, 255, 1);
  6723. box-sizing:border-box;
  6724. border-width:1px;
  6725. border-style:solid;
  6726. border-color:rgba(201, 201, 201, 1);
  6727. border-radius:4px;
  6728. -moz-box-shadow:none;
  6729. -webkit-box-shadow:none;
  6730. box-shadow:none;
  6731. font-family:'Microsoft YaHei', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. font-size:14px;
  6735. color:#CCCCCC;
  6736. text-align:left;
  6737. }
  6738. #u6653 {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:953px;
  6742. top:171px;
  6743. width:140px;
  6744. height:30px;
  6745. display:flex;
  6746. font-family:'Microsoft YaHei', sans-serif;
  6747. font-weight:400;
  6748. font-style:normal;
  6749. font-size:14px;
  6750. color:#CCCCCC;
  6751. text-align:left;
  6752. }
  6753. #u6653 .text {
  6754. position:absolute;
  6755. align-self:center;
  6756. padding:2px 8px 2px 8px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u6653_text {
  6761. border-width:0px;
  6762. word-wrap:break-word;
  6763. text-transform:none;
  6764. visibility:hidden;
  6765. }
  6766. #u6654_input {
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:127px;
  6771. height:25px;
  6772. padding:2px 2px 2px 2px;
  6773. font-family:'Microsoft YaHei', sans-serif;
  6774. font-weight:400;
  6775. font-style:normal;
  6776. font-size:10px;
  6777. letter-spacing:normal;
  6778. color:#000000;
  6779. vertical-align:none;
  6780. text-align:left;
  6781. text-transform:none;
  6782. background-color:transparent;
  6783. border-color:transparent;
  6784. }
  6785. #u6654_input.disabled {
  6786. position:absolute;
  6787. left:0px;
  6788. top:0px;
  6789. width:127px;
  6790. height:25px;
  6791. padding:2px 2px 2px 2px;
  6792. font-family:'Microsoft YaHei', sans-serif;
  6793. font-weight:400;
  6794. font-style:normal;
  6795. font-size:10px;
  6796. letter-spacing:normal;
  6797. color:#000000;
  6798. vertical-align:none;
  6799. text-align:left;
  6800. text-transform:none;
  6801. background-color:transparent;
  6802. border-color:transparent;
  6803. }
  6804. #u6654_div {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:0px;
  6808. top:0px;
  6809. width:127px;
  6810. height:25px;
  6811. background:inherit;
  6812. background-color:rgba(255, 255, 255, 1);
  6813. border:none;
  6814. border-radius:0px;
  6815. -moz-box-shadow:none;
  6816. -webkit-box-shadow:none;
  6817. box-shadow:none;
  6818. font-family:'Microsoft YaHei', sans-serif;
  6819. font-weight:400;
  6820. font-style:normal;
  6821. font-size:10px;
  6822. }
  6823. #u6654 {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:961px;
  6827. top:172px;
  6828. width:127px;
  6829. height:25px;
  6830. display:flex;
  6831. font-family:'Microsoft YaHei', sans-serif;
  6832. font-weight:400;
  6833. font-style:normal;
  6834. font-size:10px;
  6835. }
  6836. #u6654 .text {
  6837. position:absolute;
  6838. align-self:center;
  6839. padding:2px 2px 2px 2px;
  6840. box-sizing:border-box;
  6841. width:100%;
  6842. }
  6843. #u6654_div.disabled {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:0px;
  6847. top:0px;
  6848. width:127px;
  6849. height:25px;
  6850. background:inherit;
  6851. background-color:rgba(240, 240, 240, 1);
  6852. border:none;
  6853. border-radius:0px;
  6854. -moz-box-shadow:none;
  6855. -webkit-box-shadow:none;
  6856. box-shadow:none;
  6857. font-family:'Microsoft YaHei', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:10px;
  6861. }
  6862. #u6654.disabled {
  6863. }
  6864. #u6655_div {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:0px;
  6868. top:0px;
  6869. width:680px;
  6870. height:150px;
  6871. background:inherit;
  6872. background-color:rgba(255, 255, 255, 0);
  6873. border:none;
  6874. border-left:0px;
  6875. border-top:0px;
  6876. border-right:0px;
  6877. border-radius:0px;
  6878. border-bottom-right-radius:0px;
  6879. border-bottom-left-radius:0px;
  6880. -moz-box-shadow:none;
  6881. -webkit-box-shadow:none;
  6882. box-shadow:none;
  6883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6884. font-weight:400;
  6885. font-style:normal;
  6886. color:#D9001B;
  6887. line-height:30px;
  6888. }
  6889. #u6655 {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:395px;
  6893. top:573px;
  6894. width:680px;
  6895. height:150px;
  6896. display:flex;
  6897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6898. font-weight:400;
  6899. font-style:normal;
  6900. color:#D9001B;
  6901. line-height:30px;
  6902. }
  6903. #u6655 .text {
  6904. position:absolute;
  6905. align-self:center;
  6906. padding:0px 0px 0px 0px;
  6907. box-sizing:border-box;
  6908. width:100%;
  6909. }
  6910. #u6655_text {
  6911. border-width:0px;
  6912. word-wrap:break-word;
  6913. text-transform:none;
  6914. }
  6915. #u6656 {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:0px;
  6921. height:0px;
  6922. }
  6923. #u6657_div {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:0px;
  6927. top:0px;
  6928. width:140px;
  6929. height:30px;
  6930. background:inherit;
  6931. background-color:rgba(255, 255, 255, 1);
  6932. box-sizing:border-box;
  6933. border-width:1px;
  6934. border-style:solid;
  6935. border-color:rgba(215, 215, 215, 1);
  6936. border-radius:4px;
  6937. -moz-box-shadow:none;
  6938. -webkit-box-shadow:none;
  6939. box-shadow:none;
  6940. font-size:11px;
  6941. }
  6942. #u6657 {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:352px;
  6946. top:211px;
  6947. width:140px;
  6948. height:30px;
  6949. display:flex;
  6950. font-size:11px;
  6951. }
  6952. #u6657 .text {
  6953. position:absolute;
  6954. align-self:center;
  6955. padding:2px 2px 2px 2px;
  6956. box-sizing:border-box;
  6957. width:100%;
  6958. }
  6959. #u6657_text {
  6960. border-width:0px;
  6961. word-wrap:break-word;
  6962. text-transform:none;
  6963. visibility:hidden;
  6964. }
  6965. #u6658_input {
  6966. position:absolute;
  6967. left:0px;
  6968. top:0px;
  6969. width:120px;
  6970. height:23px;
  6971. padding:2px 2px 2px 2px;
  6972. font-family:'ArialMT', 'Arial', sans-serif;
  6973. font-weight:400;
  6974. font-style:normal;
  6975. font-size:11px;
  6976. letter-spacing:normal;
  6977. color:#AAAAAA;
  6978. vertical-align:none;
  6979. text-align:left;
  6980. text-transform:none;
  6981. background-color:transparent;
  6982. border-color:transparent;
  6983. }
  6984. #u6658_input.disabled {
  6985. position:absolute;
  6986. left:0px;
  6987. top:0px;
  6988. width:120px;
  6989. height:23px;
  6990. padding:2px 2px 2px 2px;
  6991. font-family:'ArialMT', 'Arial', sans-serif;
  6992. font-weight:400;
  6993. font-style:normal;
  6994. font-size:11px;
  6995. letter-spacing:normal;
  6996. color:#AAAAAA;
  6997. vertical-align:none;
  6998. text-align:left;
  6999. text-transform:none;
  7000. background-color:transparent;
  7001. border-color:transparent;
  7002. }
  7003. #u6658_div {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:120px;
  7009. height:23px;
  7010. background:inherit;
  7011. background-color:rgba(255, 255, 255, 1);
  7012. border:none;
  7013. border-radius:0px;
  7014. -moz-box-shadow:none;
  7015. -webkit-box-shadow:none;
  7016. box-shadow:none;
  7017. font-size:11px;
  7018. color:#AAAAAA;
  7019. }
  7020. #u6658 {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:359px;
  7024. top:213px;
  7025. width:120px;
  7026. height:23px;
  7027. display:flex;
  7028. font-size:11px;
  7029. color:#AAAAAA;
  7030. }
  7031. #u6658 .text {
  7032. position:absolute;
  7033. align-self:flex-start;
  7034. padding:2px 2px 2px 2px;
  7035. box-sizing:border-box;
  7036. width:100%;
  7037. }
  7038. #u6658_div.disabled {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:120px;
  7044. height:23px;
  7045. background:inherit;
  7046. background-color:rgba(240, 240, 240, 1);
  7047. border:none;
  7048. border-radius:0px;
  7049. -moz-box-shadow:none;
  7050. -webkit-box-shadow:none;
  7051. box-shadow:none;
  7052. font-size:11px;
  7053. color:#AAAAAA;
  7054. }
  7055. #u6658.disabled {
  7056. }
  7057. .u6658_input_option {
  7058. font-size:11px;
  7059. }