styles.css 223 KB

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