styles.css 181 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u16439_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u16439 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u16439 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u16439_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u16440_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. #u16440 {
  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. #u16440 .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. #u16440_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u16441_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. #u16441 {
  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. #u16441 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u16441_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u16442 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u16443_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u16443 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u16443 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u16443_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u16444_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. #u16444 {
  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. #u16444 .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. #u16444_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u16445_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. #u16445 {
  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. #u16445 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u16445_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u16446 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u16447_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u16447 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u16447 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u16447_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u16448_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u16448 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u16448 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u16448_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u16449 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u16450_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u16450 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u16450 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u16450_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u16451_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u16451 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u16451 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u16451_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u16452 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u16453_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u16453 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u16453 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u16453_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u16454_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u16454 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u16454 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u16454_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u16455 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u16456_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u16456 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u16456 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u16456_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u16457_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u16457 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u16457 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u16457_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u16458 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u16459_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u16459 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u16459 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u16459_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u16460_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u16460 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u16460 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u16460_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u16461 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u16462_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u16462 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u16462 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u16462_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u16463_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u16463 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u16463 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u16463_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u16464 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u16465_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u16465 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u16465 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u16465_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u16466_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u16466 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u16466 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u16466_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u16467 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u16468_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u16468 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u16468 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u16468_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u16469_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u16469 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u16469 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u16469_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u16470 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u16471_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u16471 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u16471 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u16471_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u16472_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u16472 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u16472 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u16472_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u16473 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u16474_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u16474 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u16474 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u16474_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u16475_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u16475 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u16475 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u16475_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u16476 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u16477_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u16477 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u16477 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u16477_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u16478_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u16478 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u16478 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u16478_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u16479 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u16480_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u16480_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u16480_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u16480 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u16480 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u16480_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u16480.disabled {
  1276. }
  1277. .u16480_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u16481_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u16481 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u16481 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u16481_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u16482_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u16482 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u16482 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u16482_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u16483_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u16483 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u16483 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u16483_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u16484 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u16485_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u16485 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u16485 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u16485_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u16486_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u16486 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u16486 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u16486_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u16487_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u16487 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u16487 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u16487_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u16488_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u16488 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u16488 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u16488_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u16489_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u16489 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u16489 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u16489_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u16490 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u16491_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u16491 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u16491 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u16491_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u16492_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u16492 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u16492 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u16492_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u16494_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:200px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. }
  1657. #u16494 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:116px;
  1661. top:50px;
  1662. width:200px;
  1663. height:1180px;
  1664. display:flex;
  1665. }
  1666. #u16494 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u16494_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u16495_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:200px;
  1685. height:60px;
  1686. background:inherit;
  1687. background-color:rgba(224, 231, 247, 1);
  1688. border:none;
  1689. border-radius:0px;
  1690. -moz-box-shadow:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1694. font-weight:500;
  1695. font-style:normal;
  1696. font-size:18px;
  1697. }
  1698. #u16495 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:116px;
  1702. top:50px;
  1703. width:200px;
  1704. height:60px;
  1705. display:flex;
  1706. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1707. font-weight:500;
  1708. font-style:normal;
  1709. font-size:18px;
  1710. }
  1711. #u16495 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:0px 0px 0px 20px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u16495_text {
  1719. border-width:0px;
  1720. word-wrap:break-word;
  1721. text-transform:none;
  1722. }
  1723. #u16496_div {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:65px;
  1729. height:22px;
  1730. background:inherit;
  1731. background-color:rgba(255, 255, 255, 0);
  1732. border:none;
  1733. border-radius:0px;
  1734. -moz-box-shadow:none;
  1735. -webkit-box-shadow:none;
  1736. box-shadow:none;
  1737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1738. font-weight:400;
  1739. font-style:normal;
  1740. font-size:16px;
  1741. }
  1742. #u16496 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:143px;
  1746. top:163px;
  1747. width:65px;
  1748. height:22px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:16px;
  1754. }
  1755. #u16496 .text {
  1756. position:absolute;
  1757. align-self:flex-start;
  1758. padding:0px 0px 0px 0px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u16496_text {
  1763. border-width:0px;
  1764. white-space:nowrap;
  1765. text-transform:none;
  1766. }
  1767. #u16497_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:65px;
  1773. height:22px;
  1774. background:inherit;
  1775. background-color:rgba(255, 255, 255, 0);
  1776. border:none;
  1777. border-radius:0px;
  1778. -moz-box-shadow:none;
  1779. -webkit-box-shadow:none;
  1780. box-shadow:none;
  1781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1782. font-weight:400;
  1783. font-style:normal;
  1784. font-size:16px;
  1785. }
  1786. #u16497 {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:143px;
  1790. top:205px;
  1791. width:65px;
  1792. height:22px;
  1793. display:flex;
  1794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:16px;
  1798. }
  1799. #u16497 .text {
  1800. position:absolute;
  1801. align-self:flex-start;
  1802. padding:0px 0px 0px 0px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u16497_text {
  1807. border-width:0px;
  1808. white-space:nowrap;
  1809. text-transform:none;
  1810. }
  1811. #u16498_img {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:201px;
  1817. height:2px;
  1818. }
  1819. #u16498 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:116px;
  1823. top:352px;
  1824. width:200px;
  1825. height:1px;
  1826. display:flex;
  1827. }
  1828. #u16498 .text {
  1829. position:absolute;
  1830. align-self:center;
  1831. padding:2px 2px 2px 2px;
  1832. box-sizing:border-box;
  1833. width:100%;
  1834. }
  1835. #u16498_text {
  1836. border-width:0px;
  1837. word-wrap:break-word;
  1838. text-transform:none;
  1839. visibility:hidden;
  1840. }
  1841. #u16499_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:81px;
  1847. height:22px;
  1848. background:inherit;
  1849. background-color:rgba(255, 255, 255, 0);
  1850. border:none;
  1851. border-radius:0px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:16px;
  1859. }
  1860. #u16499 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:143px;
  1864. top:493px;
  1865. width:81px;
  1866. height:22px;
  1867. display:flex;
  1868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1869. font-weight:400;
  1870. font-style:normal;
  1871. font-size:16px;
  1872. }
  1873. #u16499 .text {
  1874. position:absolute;
  1875. align-self:flex-start;
  1876. padding:0px 0px 0px 0px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u16499_text {
  1881. border-width:0px;
  1882. white-space:nowrap;
  1883. text-transform:none;
  1884. }
  1885. #u16500_div {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:49px;
  1891. height:17px;
  1892. background:inherit;
  1893. background-color:rgba(255, 255, 255, 0);
  1894. border:none;
  1895. border-radius:0px;
  1896. -moz-box-shadow:none;
  1897. -webkit-box-shadow:none;
  1898. box-shadow:none;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:12px;
  1903. color:#AAAAAA;
  1904. }
  1905. #u16500 {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:143px;
  1909. top:372px;
  1910. width:49px;
  1911. height:17px;
  1912. display:flex;
  1913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1914. font-weight:400;
  1915. font-style:normal;
  1916. font-size:12px;
  1917. color:#AAAAAA;
  1918. }
  1919. #u16500 .text {
  1920. position:absolute;
  1921. align-self:flex-start;
  1922. padding:0px 0px 0px 0px;
  1923. box-sizing:border-box;
  1924. width:100%;
  1925. }
  1926. #u16500_text {
  1927. border-width:0px;
  1928. white-space:nowrap;
  1929. text-transform:none;
  1930. }
  1931. #u16501_div {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:65px;
  1937. height:22px;
  1938. background:inherit;
  1939. background-color:rgba(255, 255, 255, 0);
  1940. border:none;
  1941. border-radius:0px;
  1942. -moz-box-shadow:none;
  1943. -webkit-box-shadow:none;
  1944. box-shadow:none;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:16px;
  1949. }
  1950. #u16501 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:143px;
  1954. top:310px;
  1955. width:65px;
  1956. height:22px;
  1957. display:flex;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. font-size:16px;
  1962. }
  1963. #u16501 .text {
  1964. position:absolute;
  1965. align-self:flex-start;
  1966. padding:0px 0px 0px 0px;
  1967. box-sizing:border-box;
  1968. width:100%;
  1969. }
  1970. #u16501_text {
  1971. border-width:0px;
  1972. white-space:nowrap;
  1973. text-transform:none;
  1974. }
  1975. #u16502_div {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:49px;
  1981. height:17px;
  1982. background:inherit;
  1983. background-color:rgba(255, 255, 255, 0);
  1984. border:none;
  1985. border-radius:0px;
  1986. -moz-box-shadow:none;
  1987. -webkit-box-shadow:none;
  1988. box-shadow:none;
  1989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1990. font-weight:400;
  1991. font-style:normal;
  1992. font-size:12px;
  1993. color:#AAAAAA;
  1994. }
  1995. #u16502 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:143px;
  1999. top:130px;
  2000. width:49px;
  2001. height:17px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:12px;
  2007. color:#AAAAAA;
  2008. }
  2009. #u16502 .text {
  2010. position:absolute;
  2011. align-self:flex-start;
  2012. padding:0px 0px 0px 0px;
  2013. box-sizing:border-box;
  2014. width:100%;
  2015. }
  2016. #u16502_text {
  2017. border-width:0px;
  2018. white-space:nowrap;
  2019. text-transform:none;
  2020. }
  2021. #u16503_img {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:201px;
  2027. height:2px;
  2028. }
  2029. #u16503 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:116px;
  2033. top:252px;
  2034. width:200px;
  2035. height:1px;
  2036. display:flex;
  2037. }
  2038. #u16503 .text {
  2039. position:absolute;
  2040. align-self:center;
  2041. padding:2px 2px 2px 2px;
  2042. box-sizing:border-box;
  2043. width:100%;
  2044. }
  2045. #u16503_text {
  2046. border-width:0px;
  2047. word-wrap:break-word;
  2048. text-transform:none;
  2049. visibility:hidden;
  2050. }
  2051. #u16504_div {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:49px;
  2057. height:17px;
  2058. background:inherit;
  2059. background-color:rgba(255, 255, 255, 0);
  2060. border:none;
  2061. border-radius:0px;
  2062. -moz-box-shadow:none;
  2063. -webkit-box-shadow:none;
  2064. box-shadow:none;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:12px;
  2069. color:#AAAAAA;
  2070. }
  2071. #u16504 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:143px;
  2075. top:272px;
  2076. width:49px;
  2077. height:17px;
  2078. display:flex;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:12px;
  2083. color:#AAAAAA;
  2084. }
  2085. #u16504 .text {
  2086. position:absolute;
  2087. align-self:flex-start;
  2088. padding:0px 0px 0px 0px;
  2089. box-sizing:border-box;
  2090. width:100%;
  2091. }
  2092. #u16504_text {
  2093. border-width:0px;
  2094. white-space:nowrap;
  2095. text-transform:none;
  2096. }
  2097. #u16505_div {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:65px;
  2103. height:22px;
  2104. background:inherit;
  2105. background-color:rgba(255, 255, 255, 0);
  2106. border:none;
  2107. border-radius:0px;
  2108. -moz-box-shadow:none;
  2109. -webkit-box-shadow:none;
  2110. box-shadow:none;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:16px;
  2115. }
  2116. #u16505 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:143px;
  2120. top:409px;
  2121. width:65px;
  2122. height:22px;
  2123. display:flex;
  2124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2125. font-weight:400;
  2126. font-style:normal;
  2127. font-size:16px;
  2128. }
  2129. #u16505 .text {
  2130. position:absolute;
  2131. align-self:flex-start;
  2132. padding:0px 0px 0px 0px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u16505_text {
  2137. border-width:0px;
  2138. white-space:nowrap;
  2139. text-transform:none;
  2140. }
  2141. #u16506_div {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:65px;
  2147. height:22px;
  2148. background:inherit;
  2149. background-color:rgba(255, 255, 255, 0);
  2150. border:none;
  2151. border-radius:0px;
  2152. -moz-box-shadow:none;
  2153. -webkit-box-shadow:none;
  2154. box-shadow:none;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:16px;
  2159. }
  2160. #u16506 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:143px;
  2164. top:451px;
  2165. width:65px;
  2166. height:22px;
  2167. display:flex;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:16px;
  2172. }
  2173. #u16506 .text {
  2174. position:absolute;
  2175. align-self:flex-start;
  2176. padding:0px 0px 0px 0px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u16506_text {
  2181. border-width:0px;
  2182. white-space:nowrap;
  2183. text-transform:none;
  2184. }
  2185. #u16507_div {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:1259px;
  2191. height:1040px;
  2192. background:inherit;
  2193. background-color:rgba(255, 255, 255, 1);
  2194. border:none;
  2195. border-radius:0px;
  2196. -moz-box-shadow:none;
  2197. -webkit-box-shadow:none;
  2198. box-shadow:none;
  2199. }
  2200. #u16507 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:332px;
  2204. top:190px;
  2205. width:1259px;
  2206. height:1040px;
  2207. display:flex;
  2208. }
  2209. #u16507 .text {
  2210. position:absolute;
  2211. align-self:center;
  2212. padding:2px 2px 2px 2px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u16507_text {
  2217. border-width:0px;
  2218. word-wrap:break-word;
  2219. text-transform:none;
  2220. visibility:hidden;
  2221. }
  2222. #u16508_div {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:1259px;
  2228. height:130px;
  2229. background:inherit;
  2230. background-color:rgba(255, 255, 255, 1);
  2231. border:none;
  2232. border-radius:0px;
  2233. -moz-box-shadow:none;
  2234. -webkit-box-shadow:none;
  2235. box-shadow:none;
  2236. }
  2237. #u16508 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:332px;
  2241. top:50px;
  2242. width:1259px;
  2243. height:130px;
  2244. display:flex;
  2245. }
  2246. #u16508 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:2px 2px 2px 2px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u16508_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. visibility:hidden;
  2258. }
  2259. #u16509_div {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:73px;
  2265. height:50px;
  2266. background:inherit;
  2267. background-color:rgba(255, 255, 255, 0);
  2268. border:none;
  2269. border-left:0px;
  2270. border-top:0px;
  2271. border-right:0px;
  2272. border-radius:0px;
  2273. border-bottom-right-radius:0px;
  2274. border-bottom-left-radius:0px;
  2275. -moz-box-shadow:none;
  2276. -webkit-box-shadow:none;
  2277. box-shadow:none;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:18px;
  2282. }
  2283. #u16509 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:351px;
  2287. top:50px;
  2288. width:73px;
  2289. height:50px;
  2290. display:flex;
  2291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:18px;
  2295. }
  2296. #u16509 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:0px 0px 0px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u16509_text {
  2304. border-width:0px;
  2305. white-space:nowrap;
  2306. text-transform:none;
  2307. }
  2308. #u16510_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:13px;
  2314. height:13px;
  2315. }
  2316. #u16510 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:430px;
  2320. top:69px;
  2321. width:13px;
  2322. height:13px;
  2323. display:flex;
  2324. }
  2325. #u16510 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 2px 2px 2px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u16510_text {
  2333. border-width:0px;
  2334. word-wrap:break-word;
  2335. text-transform:none;
  2336. visibility:hidden;
  2337. }
  2338. #u16511 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:352px;
  2342. top:338px;
  2343. width:1219px;
  2344. height:366px;
  2345. }
  2346. #u16512_img {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:44px;
  2352. height:39px;
  2353. }
  2354. #u16512 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:44px;
  2360. height:39px;
  2361. display:flex;
  2362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2363. font-weight:400;
  2364. font-style:normal;
  2365. font-size:12px;
  2366. color:#FFFFFF;
  2367. }
  2368. #u16512 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:2px 2px 2px 0px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u16512_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. visibility:hidden;
  2380. }
  2381. #u16513_img {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:89px;
  2387. height:39px;
  2388. }
  2389. #u16513 {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:44px;
  2393. top:0px;
  2394. width:89px;
  2395. height:39px;
  2396. display:flex;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:12px;
  2401. color:#FFFFFF;
  2402. }
  2403. #u16513 .text {
  2404. position:absolute;
  2405. align-self:center;
  2406. padding:2px 2px 2px 0px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u16513_text {
  2411. border-width:0px;
  2412. word-wrap:break-word;
  2413. text-transform:none;
  2414. }
  2415. #u16514_img {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:89px;
  2421. height:39px;
  2422. }
  2423. #u16514 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:133px;
  2427. top:0px;
  2428. width:89px;
  2429. height:39px;
  2430. display:flex;
  2431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2432. font-weight:400;
  2433. font-style:normal;
  2434. font-size:12px;
  2435. color:#FFFFFF;
  2436. }
  2437. #u16514 .text {
  2438. position:absolute;
  2439. align-self:center;
  2440. padding:2px 2px 2px 0px;
  2441. box-sizing:border-box;
  2442. width:100%;
  2443. }
  2444. #u16514_text {
  2445. border-width:0px;
  2446. word-wrap:break-word;
  2447. text-transform:none;
  2448. }
  2449. #u16515_img {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:0px;
  2453. top:0px;
  2454. width:89px;
  2455. height:39px;
  2456. }
  2457. #u16515 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:222px;
  2461. top:0px;
  2462. width:89px;
  2463. height:39px;
  2464. display:flex;
  2465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2466. font-weight:400;
  2467. font-style:normal;
  2468. font-size:12px;
  2469. color:#FFFFFF;
  2470. }
  2471. #u16515 .text {
  2472. position:absolute;
  2473. align-self:center;
  2474. padding:2px 2px 2px 0px;
  2475. box-sizing:border-box;
  2476. width:100%;
  2477. }
  2478. #u16515_text {
  2479. border-width:0px;
  2480. word-wrap:break-word;
  2481. text-transform:none;
  2482. }
  2483. #u16516_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:89px;
  2489. height:39px;
  2490. }
  2491. #u16516 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:311px;
  2495. top:0px;
  2496. width:89px;
  2497. height:39px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:12px;
  2503. color:#FFFFFF;
  2504. }
  2505. #u16516 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 0px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u16516_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. }
  2517. #u16517_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:89px;
  2523. height:39px;
  2524. }
  2525. #u16517 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:400px;
  2529. top:0px;
  2530. width:89px;
  2531. height:39px;
  2532. display:flex;
  2533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:12px;
  2537. color:#FFFFFF;
  2538. }
  2539. #u16517 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 0px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u16517_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. }
  2551. #u16518_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:89px;
  2557. height:39px;
  2558. }
  2559. #u16518 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:489px;
  2563. top:0px;
  2564. width:89px;
  2565. height:39px;
  2566. display:flex;
  2567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2568. font-weight:400;
  2569. font-style:normal;
  2570. font-size:12px;
  2571. color:#FFFFFF;
  2572. }
  2573. #u16518 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 0px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u16518_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. }
  2585. #u16519_img {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:89px;
  2591. height:39px;
  2592. }
  2593. #u16519 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:578px;
  2597. top:0px;
  2598. width:89px;
  2599. height:39px;
  2600. display:flex;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:12px;
  2605. color:#FFFFFF;
  2606. }
  2607. #u16519 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:2px 2px 2px 0px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u16519_text {
  2615. border-width:0px;
  2616. word-wrap:break-word;
  2617. text-transform:none;
  2618. }
  2619. #u16520_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:89px;
  2625. height:39px;
  2626. }
  2627. #u16520 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:667px;
  2631. top:0px;
  2632. width:89px;
  2633. height:39px;
  2634. display:flex;
  2635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:12px;
  2639. color:#FFFFFF;
  2640. }
  2641. #u16520 .text {
  2642. position:absolute;
  2643. align-self:center;
  2644. padding:2px 2px 2px 0px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u16520_text {
  2649. border-width:0px;
  2650. word-wrap:break-word;
  2651. text-transform:none;
  2652. }
  2653. #u16521_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:89px;
  2659. height:39px;
  2660. }
  2661. #u16521 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:756px;
  2665. top:0px;
  2666. width:89px;
  2667. height:39px;
  2668. display:flex;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:12px;
  2673. color:#FFFFFF;
  2674. }
  2675. #u16521 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 0px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u16521_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. }
  2687. #u16522_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:89px;
  2693. height:39px;
  2694. }
  2695. #u16522 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:845px;
  2699. top:0px;
  2700. width:89px;
  2701. height:39px;
  2702. display:flex;
  2703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2704. font-weight:400;
  2705. font-style:normal;
  2706. font-size:12px;
  2707. color:#FFFFFF;
  2708. }
  2709. #u16522 .text {
  2710. position:absolute;
  2711. align-self:center;
  2712. padding:2px 2px 2px 0px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u16522_text {
  2717. border-width:0px;
  2718. word-wrap:break-word;
  2719. text-transform:none;
  2720. }
  2721. #u16523_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:89px;
  2727. height:39px;
  2728. }
  2729. #u16523 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:934px;
  2733. top:0px;
  2734. width:89px;
  2735. height:39px;
  2736. display:flex;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:12px;
  2741. color:#FFFFFF;
  2742. }
  2743. #u16523 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u16523_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. }
  2755. #u16524_img {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:89px;
  2761. height:39px;
  2762. }
  2763. #u16524 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:1023px;
  2767. top:0px;
  2768. width:89px;
  2769. height:39px;
  2770. display:flex;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:12px;
  2775. color:#FFFFFF;
  2776. }
  2777. #u16524 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u16524_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. }
  2789. #u16525_img {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:107px;
  2795. height:39px;
  2796. }
  2797. #u16525 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:1112px;
  2801. top:0px;
  2802. width:107px;
  2803. height:39px;
  2804. display:flex;
  2805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2806. font-weight:400;
  2807. font-style:normal;
  2808. font-size:12px;
  2809. color:#FFFFFF;
  2810. }
  2811. #u16525 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 0px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u16525_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. }
  2823. #u16526_img {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:44px;
  2829. height:38px;
  2830. }
  2831. #u16526 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:39px;
  2836. width:44px;
  2837. height:38px;
  2838. display:flex;
  2839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2840. font-weight:400;
  2841. font-style:normal;
  2842. font-size:12px;
  2843. color:#1890FF;
  2844. }
  2845. #u16526 .text {
  2846. position:absolute;
  2847. align-self:center;
  2848. padding:2px 2px 2px 0px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u16526_text {
  2853. border-width:0px;
  2854. word-wrap:break-word;
  2855. text-transform:none;
  2856. visibility:hidden;
  2857. }
  2858. #u16527_img {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:89px;
  2864. height:38px;
  2865. }
  2866. #u16527 {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:44px;
  2870. top:39px;
  2871. width:89px;
  2872. height:38px;
  2873. display:flex;
  2874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. font-size:12px;
  2878. color:#1890FF;
  2879. }
  2880. #u16527 .text {
  2881. position:absolute;
  2882. align-self:center;
  2883. padding:2px 2px 2px 0px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u16527_text {
  2888. border-width:0px;
  2889. word-wrap:break-word;
  2890. text-transform:none;
  2891. }
  2892. #u16528_img {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:89px;
  2898. height:38px;
  2899. }
  2900. #u16528 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:133px;
  2904. top:39px;
  2905. width:89px;
  2906. height:38px;
  2907. display:flex;
  2908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2909. font-weight:400;
  2910. font-style:normal;
  2911. font-size:12px;
  2912. }
  2913. #u16528 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u16528_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. }
  2925. #u16529_img {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:89px;
  2931. height:38px;
  2932. }
  2933. #u16529 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:222px;
  2937. top:39px;
  2938. width:89px;
  2939. height:38px;
  2940. display:flex;
  2941. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:12px;
  2945. }
  2946. #u16529 .text {
  2947. position:absolute;
  2948. align-self:center;
  2949. padding:2px 2px 2px 0px;
  2950. box-sizing:border-box;
  2951. width:100%;
  2952. }
  2953. #u16529_text {
  2954. border-width:0px;
  2955. word-wrap:break-word;
  2956. text-transform:none;
  2957. visibility:hidden;
  2958. }
  2959. #u16530_img {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:89px;
  2965. height:38px;
  2966. }
  2967. #u16530 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:311px;
  2971. top:39px;
  2972. width:89px;
  2973. height:38px;
  2974. display:flex;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:12px;
  2979. }
  2980. #u16530 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u16530_text {
  2988. border-width:0px;
  2989. word-wrap:break-word;
  2990. text-transform:none;
  2991. }
  2992. #u16531_img {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:89px;
  2998. height:38px;
  2999. }
  3000. #u16531 {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:400px;
  3004. top:39px;
  3005. width:89px;
  3006. height:38px;
  3007. display:flex;
  3008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3009. font-weight:400;
  3010. font-style:normal;
  3011. font-size:12px;
  3012. }
  3013. #u16531 .text {
  3014. position:absolute;
  3015. align-self:center;
  3016. padding:2px 2px 2px 0px;
  3017. box-sizing:border-box;
  3018. width:100%;
  3019. }
  3020. #u16531_text {
  3021. border-width:0px;
  3022. word-wrap:break-word;
  3023. text-transform:none;
  3024. }
  3025. #u16532_img {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:0px;
  3029. top:0px;
  3030. width:89px;
  3031. height:38px;
  3032. }
  3033. #u16532 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:489px;
  3037. top:39px;
  3038. width:89px;
  3039. height:38px;
  3040. display:flex;
  3041. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3042. font-weight:400;
  3043. font-style:normal;
  3044. font-size:12px;
  3045. }
  3046. #u16532 .text {
  3047. position:absolute;
  3048. align-self:center;
  3049. padding:2px 2px 2px 0px;
  3050. box-sizing:border-box;
  3051. width:100%;
  3052. }
  3053. #u16532_text {
  3054. border-width:0px;
  3055. word-wrap:break-word;
  3056. text-transform:none;
  3057. visibility:hidden;
  3058. }
  3059. #u16533_img {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:89px;
  3065. height:38px;
  3066. }
  3067. #u16533 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:578px;
  3071. top:39px;
  3072. width:89px;
  3073. height:38px;
  3074. display:flex;
  3075. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3076. font-weight:400;
  3077. font-style:normal;
  3078. font-size:12px;
  3079. }
  3080. #u16533 .text {
  3081. position:absolute;
  3082. align-self:center;
  3083. padding:2px 2px 2px 0px;
  3084. box-sizing:border-box;
  3085. width:100%;
  3086. }
  3087. #u16533_text {
  3088. border-width:0px;
  3089. word-wrap:break-word;
  3090. text-transform:none;
  3091. visibility:hidden;
  3092. }
  3093. #u16534_img {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:89px;
  3099. height:38px;
  3100. }
  3101. #u16534 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:667px;
  3105. top:39px;
  3106. width:89px;
  3107. height:38px;
  3108. display:flex;
  3109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:12px;
  3113. }
  3114. #u16534 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 2px 2px 0px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u16534_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u16535_img {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:89px;
  3133. height:38px;
  3134. }
  3135. #u16535 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:756px;
  3139. top:39px;
  3140. width:89px;
  3141. height:38px;
  3142. display:flex;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. }
  3148. #u16535 .text {
  3149. position:absolute;
  3150. align-self:center;
  3151. padding:2px 2px 2px 0px;
  3152. box-sizing:border-box;
  3153. width:100%;
  3154. }
  3155. #u16535_text {
  3156. border-width:0px;
  3157. word-wrap:break-word;
  3158. text-transform:none;
  3159. visibility:hidden;
  3160. }
  3161. #u16536_img {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:89px;
  3167. height:38px;
  3168. }
  3169. #u16536 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:845px;
  3173. top:39px;
  3174. width:89px;
  3175. height:38px;
  3176. display:flex;
  3177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:12px;
  3181. }
  3182. #u16536 .text {
  3183. position:absolute;
  3184. align-self:center;
  3185. padding:2px 2px 2px 0px;
  3186. box-sizing:border-box;
  3187. width:100%;
  3188. }
  3189. #u16536_text {
  3190. border-width:0px;
  3191. word-wrap:break-word;
  3192. text-transform:none;
  3193. visibility:hidden;
  3194. }
  3195. #u16537_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:89px;
  3201. height:38px;
  3202. }
  3203. #u16537 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:934px;
  3207. top:39px;
  3208. width:89px;
  3209. height:38px;
  3210. display:flex;
  3211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3212. font-weight:400;
  3213. font-style:normal;
  3214. font-size:12px;
  3215. }
  3216. #u16537 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:2px 2px 2px 0px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u16537_text {
  3224. border-width:0px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. visibility:hidden;
  3228. }
  3229. #u16538_img {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:89px;
  3235. height:38px;
  3236. }
  3237. #u16538 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:1023px;
  3241. top:39px;
  3242. width:89px;
  3243. height:38px;
  3244. display:flex;
  3245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3246. font-weight:400;
  3247. font-style:normal;
  3248. font-size:12px;
  3249. }
  3250. #u16538 .text {
  3251. position:absolute;
  3252. align-self:center;
  3253. padding:2px 2px 2px 0px;
  3254. box-sizing:border-box;
  3255. width:100%;
  3256. }
  3257. #u16538_text {
  3258. border-width:0px;
  3259. word-wrap:break-word;
  3260. text-transform:none;
  3261. visibility:hidden;
  3262. }
  3263. #u16539_img {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:107px;
  3269. height:38px;
  3270. }
  3271. #u16539 {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:1112px;
  3275. top:39px;
  3276. width:107px;
  3277. height:38px;
  3278. display:flex;
  3279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3280. font-weight:400;
  3281. font-style:normal;
  3282. font-size:12px;
  3283. color:#1890FF;
  3284. }
  3285. #u16539 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 0px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u16539_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. }
  3297. #u16540_img {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:44px;
  3303. height:38px;
  3304. }
  3305. #u16540 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:77px;
  3310. width:44px;
  3311. height:38px;
  3312. display:flex;
  3313. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:12px;
  3317. }
  3318. #u16540 .text {
  3319. position:absolute;
  3320. align-self:center;
  3321. padding:2px 2px 2px 0px;
  3322. box-sizing:border-box;
  3323. width:100%;
  3324. }
  3325. #u16540_text {
  3326. border-width:0px;
  3327. word-wrap:break-word;
  3328. text-transform:none;
  3329. visibility:hidden;
  3330. }
  3331. #u16541_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:89px;
  3337. height:38px;
  3338. }
  3339. #u16541 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:44px;
  3343. top:77px;
  3344. width:89px;
  3345. height:38px;
  3346. display:flex;
  3347. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:12px;
  3351. }
  3352. #u16541 .text {
  3353. position:absolute;
  3354. align-self:center;
  3355. padding:2px 2px 2px 0px;
  3356. box-sizing:border-box;
  3357. width:100%;
  3358. }
  3359. #u16541_text {
  3360. border-width:0px;
  3361. word-wrap:break-word;
  3362. text-transform:none;
  3363. visibility:hidden;
  3364. }
  3365. #u16542_img {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:89px;
  3371. height:38px;
  3372. }
  3373. #u16542 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:133px;
  3377. top:77px;
  3378. width:89px;
  3379. height:38px;
  3380. display:flex;
  3381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3382. font-weight:400;
  3383. font-style:normal;
  3384. font-size:12px;
  3385. }
  3386. #u16542 .text {
  3387. position:absolute;
  3388. align-self:center;
  3389. padding:2px 2px 2px 0px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u16542_text {
  3394. border-width:0px;
  3395. word-wrap:break-word;
  3396. text-transform:none;
  3397. }
  3398. #u16543_img {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:89px;
  3404. height:38px;
  3405. }
  3406. #u16543 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:222px;
  3410. top:77px;
  3411. width:89px;
  3412. height:38px;
  3413. display:flex;
  3414. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. font-size:12px;
  3418. }
  3419. #u16543 .text {
  3420. position:absolute;
  3421. align-self:center;
  3422. padding:2px 2px 2px 0px;
  3423. box-sizing:border-box;
  3424. width:100%;
  3425. }
  3426. #u16543_text {
  3427. border-width:0px;
  3428. word-wrap:break-word;
  3429. text-transform:none;
  3430. visibility:hidden;
  3431. }
  3432. #u16544_img {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:0px;
  3436. top:0px;
  3437. width:89px;
  3438. height:38px;
  3439. }
  3440. #u16544 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:311px;
  3444. top:77px;
  3445. width:89px;
  3446. height:38px;
  3447. display:flex;
  3448. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:12px;
  3452. }
  3453. #u16544 .text {
  3454. position:absolute;
  3455. align-self:center;
  3456. padding:2px 2px 2px 0px;
  3457. box-sizing:border-box;
  3458. width:100%;
  3459. }
  3460. #u16544_text {
  3461. border-width:0px;
  3462. word-wrap:break-word;
  3463. text-transform:none;
  3464. visibility:hidden;
  3465. }
  3466. #u16545_img {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:89px;
  3472. height:38px;
  3473. }
  3474. #u16545 {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:400px;
  3478. top:77px;
  3479. width:89px;
  3480. height:38px;
  3481. display:flex;
  3482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3483. font-weight:400;
  3484. font-style:normal;
  3485. font-size:12px;
  3486. }
  3487. #u16545 .text {
  3488. position:absolute;
  3489. align-self:center;
  3490. padding:2px 2px 2px 0px;
  3491. box-sizing:border-box;
  3492. width:100%;
  3493. }
  3494. #u16545_text {
  3495. border-width:0px;
  3496. word-wrap:break-word;
  3497. text-transform:none;
  3498. }
  3499. #u16546_img {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:89px;
  3505. height:38px;
  3506. }
  3507. #u16546 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:489px;
  3511. top:77px;
  3512. width:89px;
  3513. height:38px;
  3514. display:flex;
  3515. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3516. font-weight:400;
  3517. font-style:normal;
  3518. font-size:12px;
  3519. }
  3520. #u16546 .text {
  3521. position:absolute;
  3522. align-self:center;
  3523. padding:2px 2px 2px 0px;
  3524. box-sizing:border-box;
  3525. width:100%;
  3526. }
  3527. #u16546_text {
  3528. border-width:0px;
  3529. word-wrap:break-word;
  3530. text-transform:none;
  3531. visibility:hidden;
  3532. }
  3533. #u16547_img {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:89px;
  3539. height:38px;
  3540. }
  3541. #u16547 {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:578px;
  3545. top:77px;
  3546. width:89px;
  3547. height:38px;
  3548. display:flex;
  3549. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3550. font-weight:400;
  3551. font-style:normal;
  3552. font-size:12px;
  3553. }
  3554. #u16547 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 0px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u16547_text {
  3562. border-width:0px;
  3563. word-wrap:break-word;
  3564. text-transform:none;
  3565. visibility:hidden;
  3566. }
  3567. #u16548_img {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:89px;
  3573. height:38px;
  3574. }
  3575. #u16548 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:667px;
  3579. top:77px;
  3580. width:89px;
  3581. height:38px;
  3582. display:flex;
  3583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3584. font-weight:400;
  3585. font-style:normal;
  3586. font-size:12px;
  3587. }
  3588. #u16548 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:2px 2px 2px 0px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u16548_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u16549_img {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:89px;
  3607. height:38px;
  3608. }
  3609. #u16549 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:756px;
  3613. top:77px;
  3614. width:89px;
  3615. height:38px;
  3616. display:flex;
  3617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3618. font-weight:400;
  3619. font-style:normal;
  3620. font-size:12px;
  3621. }
  3622. #u16549 .text {
  3623. position:absolute;
  3624. align-self:center;
  3625. padding:2px 2px 2px 0px;
  3626. box-sizing:border-box;
  3627. width:100%;
  3628. }
  3629. #u16549_text {
  3630. border-width:0px;
  3631. word-wrap:break-word;
  3632. text-transform:none;
  3633. visibility:hidden;
  3634. }
  3635. #u16550_img {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:89px;
  3641. height:38px;
  3642. }
  3643. #u16550 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:845px;
  3647. top:77px;
  3648. width:89px;
  3649. height:38px;
  3650. display:flex;
  3651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3652. font-weight:400;
  3653. font-style:normal;
  3654. font-size:12px;
  3655. }
  3656. #u16550 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 2px 2px 0px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u16550_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u16551_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:89px;
  3675. height:38px;
  3676. }
  3677. #u16551 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:934px;
  3681. top:77px;
  3682. width:89px;
  3683. height:38px;
  3684. display:flex;
  3685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:12px;
  3689. }
  3690. #u16551 .text {
  3691. position:absolute;
  3692. align-self:center;
  3693. padding:2px 2px 2px 0px;
  3694. box-sizing:border-box;
  3695. width:100%;
  3696. }
  3697. #u16551_text {
  3698. border-width:0px;
  3699. word-wrap:break-word;
  3700. text-transform:none;
  3701. visibility:hidden;
  3702. }
  3703. #u16552_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:89px;
  3709. height:38px;
  3710. }
  3711. #u16552 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:1023px;
  3715. top:77px;
  3716. width:89px;
  3717. height:38px;
  3718. display:flex;
  3719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:12px;
  3723. }
  3724. #u16552 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 0px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u16552_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. visibility:hidden;
  3736. }
  3737. #u16553_img {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:107px;
  3743. height:38px;
  3744. }
  3745. #u16553 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:1112px;
  3749. top:77px;
  3750. width:107px;
  3751. height:38px;
  3752. display:flex;
  3753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:12px;
  3757. color:#AAAAAA;
  3758. }
  3759. #u16553 .text {
  3760. position:absolute;
  3761. align-self:center;
  3762. padding:2px 2px 2px 0px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u16553_text {
  3767. border-width:0px;
  3768. word-wrap:break-word;
  3769. text-transform:none;
  3770. }
  3771. #u16554_img {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:44px;
  3777. height:38px;
  3778. }
  3779. #u16554 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:0px;
  3783. top:115px;
  3784. width:44px;
  3785. height:38px;
  3786. display:flex;
  3787. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3788. font-weight:400;
  3789. font-style:normal;
  3790. font-size:12px;
  3791. }
  3792. #u16554 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:2px 2px 2px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u16554_text {
  3800. border-width:0px;
  3801. word-wrap:break-word;
  3802. text-transform:none;
  3803. visibility:hidden;
  3804. }
  3805. #u16555_img {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:89px;
  3811. height:38px;
  3812. }
  3813. #u16555 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:44px;
  3817. top:115px;
  3818. width:89px;
  3819. height:38px;
  3820. display:flex;
  3821. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:12px;
  3825. }
  3826. #u16555 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 0px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u16555_text {
  3834. border-width:0px;
  3835. word-wrap:break-word;
  3836. text-transform:none;
  3837. visibility:hidden;
  3838. }
  3839. #u16556_img {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:89px;
  3845. height:38px;
  3846. }
  3847. #u16556 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:133px;
  3851. top:115px;
  3852. width:89px;
  3853. height:38px;
  3854. display:flex;
  3855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. font-size:12px;
  3859. }
  3860. #u16556 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:2px 2px 2px 0px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u16556_text {
  3868. border-width:0px;
  3869. word-wrap:break-word;
  3870. text-transform:none;
  3871. visibility:hidden;
  3872. }
  3873. #u16557_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:89px;
  3879. height:38px;
  3880. }
  3881. #u16557 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:222px;
  3885. top:115px;
  3886. width:89px;
  3887. height:38px;
  3888. display:flex;
  3889. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:12px;
  3893. }
  3894. #u16557 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:2px 2px 2px 0px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u16557_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. visibility:hidden;
  3906. }
  3907. #u16558_img {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:89px;
  3913. height:38px;
  3914. }
  3915. #u16558 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:311px;
  3919. top:115px;
  3920. width:89px;
  3921. height:38px;
  3922. display:flex;
  3923. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3924. font-weight:400;
  3925. font-style:normal;
  3926. font-size:12px;
  3927. }
  3928. #u16558 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:2px 2px 2px 0px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u16558_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. visibility:hidden;
  3940. }
  3941. #u16559_img {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:89px;
  3947. height:38px;
  3948. }
  3949. #u16559 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:400px;
  3953. top:115px;
  3954. width:89px;
  3955. height:38px;
  3956. display:flex;
  3957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. font-size:12px;
  3961. }
  3962. #u16559 .text {
  3963. position:absolute;
  3964. align-self:center;
  3965. padding:2px 2px 2px 0px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u16559_text {
  3970. border-width:0px;
  3971. word-wrap:break-word;
  3972. text-transform:none;
  3973. }
  3974. #u16560_img {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:89px;
  3980. height:38px;
  3981. }
  3982. #u16560 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:489px;
  3986. top:115px;
  3987. width:89px;
  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. }
  3995. #u16560 .text {
  3996. position:absolute;
  3997. align-self:center;
  3998. padding:2px 2px 2px 0px;
  3999. box-sizing:border-box;
  4000. width:100%;
  4001. }
  4002. #u16560_text {
  4003. border-width:0px;
  4004. word-wrap:break-word;
  4005. text-transform:none;
  4006. visibility:hidden;
  4007. }
  4008. #u16561_img {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:0px;
  4012. top:0px;
  4013. width:89px;
  4014. height:38px;
  4015. }
  4016. #u16561 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:578px;
  4020. top:115px;
  4021. width:89px;
  4022. height:38px;
  4023. display:flex;
  4024. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:12px;
  4028. }
  4029. #u16561 .text {
  4030. position:absolute;
  4031. align-self:center;
  4032. padding:2px 2px 2px 0px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u16561_text {
  4037. border-width:0px;
  4038. word-wrap:break-word;
  4039. text-transform:none;
  4040. visibility:hidden;
  4041. }
  4042. #u16562_img {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:89px;
  4048. height:38px;
  4049. }
  4050. #u16562 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:667px;
  4054. top:115px;
  4055. width:89px;
  4056. height:38px;
  4057. display:flex;
  4058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4059. font-weight:400;
  4060. font-style:normal;
  4061. font-size:12px;
  4062. }
  4063. #u16562 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:2px 2px 2px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u16562_text {
  4071. border-width:0px;
  4072. word-wrap:break-word;
  4073. text-transform:none;
  4074. visibility:hidden;
  4075. }
  4076. #u16563_img {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:89px;
  4082. height:38px;
  4083. }
  4084. #u16563 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:756px;
  4088. top:115px;
  4089. width:89px;
  4090. height:38px;
  4091. display:flex;
  4092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. font-size:12px;
  4096. }
  4097. #u16563 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:2px 2px 2px 0px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u16563_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. visibility:hidden;
  4109. }
  4110. #u16564_img {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:89px;
  4116. height:38px;
  4117. }
  4118. #u16564 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:845px;
  4122. top:115px;
  4123. width:89px;
  4124. height:38px;
  4125. display:flex;
  4126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:12px;
  4130. }
  4131. #u16564 .text {
  4132. position:absolute;
  4133. align-self:center;
  4134. padding:2px 2px 2px 0px;
  4135. box-sizing:border-box;
  4136. width:100%;
  4137. }
  4138. #u16564_text {
  4139. border-width:0px;
  4140. word-wrap:break-word;
  4141. text-transform:none;
  4142. visibility:hidden;
  4143. }
  4144. #u16565_img {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:89px;
  4150. height:38px;
  4151. }
  4152. #u16565 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:934px;
  4156. top:115px;
  4157. width:89px;
  4158. height:38px;
  4159. display:flex;
  4160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4161. font-weight:400;
  4162. font-style:normal;
  4163. font-size:12px;
  4164. }
  4165. #u16565 .text {
  4166. position:absolute;
  4167. align-self:center;
  4168. padding:2px 2px 2px 0px;
  4169. box-sizing:border-box;
  4170. width:100%;
  4171. }
  4172. #u16565_text {
  4173. border-width:0px;
  4174. word-wrap:break-word;
  4175. text-transform:none;
  4176. visibility:hidden;
  4177. }
  4178. #u16566_img {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:89px;
  4184. height:38px;
  4185. }
  4186. #u16566 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:1023px;
  4190. top:115px;
  4191. width:89px;
  4192. height:38px;
  4193. display:flex;
  4194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4195. font-weight:400;
  4196. font-style:normal;
  4197. font-size:12px;
  4198. }
  4199. #u16566 .text {
  4200. position:absolute;
  4201. align-self:center;
  4202. padding:2px 2px 2px 0px;
  4203. box-sizing:border-box;
  4204. width:100%;
  4205. }
  4206. #u16566_text {
  4207. border-width:0px;
  4208. word-wrap:break-word;
  4209. text-transform:none;
  4210. visibility:hidden;
  4211. }
  4212. #u16567_img {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:107px;
  4218. height:38px;
  4219. }
  4220. #u16567 {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:1112px;
  4224. top:115px;
  4225. width:107px;
  4226. height:38px;
  4227. display:flex;
  4228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4229. font-weight:400;
  4230. font-style:normal;
  4231. font-size:12px;
  4232. color:#1890FF;
  4233. }
  4234. #u16567 .text {
  4235. position:absolute;
  4236. align-self:center;
  4237. padding:2px 2px 2px 0px;
  4238. box-sizing:border-box;
  4239. width:100%;
  4240. }
  4241. #u16567_text {
  4242. border-width:0px;
  4243. word-wrap:break-word;
  4244. text-transform:none;
  4245. }
  4246. #u16568_img {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:44px;
  4252. height:38px;
  4253. }
  4254. #u16568 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:153px;
  4259. width:44px;
  4260. height:38px;
  4261. display:flex;
  4262. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4263. font-weight:400;
  4264. font-style:normal;
  4265. font-size:12px;
  4266. }
  4267. #u16568 .text {
  4268. position:absolute;
  4269. align-self:center;
  4270. padding:2px 2px 2px 0px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u16568_text {
  4275. border-width:0px;
  4276. word-wrap:break-word;
  4277. text-transform:none;
  4278. visibility:hidden;
  4279. }
  4280. #u16569_img {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:89px;
  4286. height:38px;
  4287. }
  4288. #u16569 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:44px;
  4292. top:153px;
  4293. width:89px;
  4294. height:38px;
  4295. display:flex;
  4296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4297. font-weight:400;
  4298. font-style:normal;
  4299. font-size:12px;
  4300. }
  4301. #u16569 .text {
  4302. position:absolute;
  4303. align-self:center;
  4304. padding:2px 2px 2px 0px;
  4305. box-sizing:border-box;
  4306. width:100%;
  4307. }
  4308. #u16569_text {
  4309. border-width:0px;
  4310. word-wrap:break-word;
  4311. text-transform:none;
  4312. visibility:hidden;
  4313. }
  4314. #u16570_img {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:89px;
  4320. height:38px;
  4321. }
  4322. #u16570 {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:133px;
  4326. top:153px;
  4327. width:89px;
  4328. height:38px;
  4329. display:flex;
  4330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:12px;
  4334. }
  4335. #u16570 .text {
  4336. position:absolute;
  4337. align-self:center;
  4338. padding:2px 2px 2px 0px;
  4339. box-sizing:border-box;
  4340. width:100%;
  4341. }
  4342. #u16570_text {
  4343. border-width:0px;
  4344. word-wrap:break-word;
  4345. text-transform:none;
  4346. visibility:hidden;
  4347. }
  4348. #u16571_img {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:89px;
  4354. height:38px;
  4355. }
  4356. #u16571 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:222px;
  4360. top:153px;
  4361. width:89px;
  4362. height:38px;
  4363. display:flex;
  4364. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. font-size:12px;
  4368. }
  4369. #u16571 .text {
  4370. position:absolute;
  4371. align-self:center;
  4372. padding:2px 2px 2px 0px;
  4373. box-sizing:border-box;
  4374. width:100%;
  4375. }
  4376. #u16571_text {
  4377. border-width:0px;
  4378. word-wrap:break-word;
  4379. text-transform:none;
  4380. visibility:hidden;
  4381. }
  4382. #u16572_img {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:89px;
  4388. height:38px;
  4389. }
  4390. #u16572 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:311px;
  4394. top:153px;
  4395. width:89px;
  4396. height:38px;
  4397. display:flex;
  4398. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:12px;
  4402. }
  4403. #u16572 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 2px 2px 0px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u16572_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. visibility:hidden;
  4415. }
  4416. #u16573_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:89px;
  4422. height:38px;
  4423. }
  4424. #u16573 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:400px;
  4428. top:153px;
  4429. width:89px;
  4430. height:38px;
  4431. display:flex;
  4432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:12px;
  4436. }
  4437. #u16573 .text {
  4438. position:absolute;
  4439. align-self:center;
  4440. padding:2px 2px 2px 0px;
  4441. box-sizing:border-box;
  4442. width:100%;
  4443. }
  4444. #u16573_text {
  4445. border-width:0px;
  4446. word-wrap:break-word;
  4447. text-transform:none;
  4448. visibility:hidden;
  4449. }
  4450. #u16574_img {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:89px;
  4456. height:38px;
  4457. }
  4458. #u16574 {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:489px;
  4462. top:153px;
  4463. width:89px;
  4464. height:38px;
  4465. display:flex;
  4466. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4467. font-weight:400;
  4468. font-style:normal;
  4469. font-size:12px;
  4470. }
  4471. #u16574 .text {
  4472. position:absolute;
  4473. align-self:center;
  4474. padding:2px 2px 2px 0px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u16574_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. visibility:hidden;
  4483. }
  4484. #u16575_img {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:89px;
  4490. height:38px;
  4491. }
  4492. #u16575 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:578px;
  4496. top:153px;
  4497. width:89px;
  4498. height:38px;
  4499. display:flex;
  4500. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. font-size:12px;
  4504. }
  4505. #u16575 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 0px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u16575_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u16576_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:89px;
  4524. height:38px;
  4525. }
  4526. #u16576 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:667px;
  4530. top:153px;
  4531. width:89px;
  4532. height:38px;
  4533. display:flex;
  4534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:12px;
  4538. }
  4539. #u16576 .text {
  4540. position:absolute;
  4541. align-self:center;
  4542. padding:2px 2px 2px 0px;
  4543. box-sizing:border-box;
  4544. width:100%;
  4545. }
  4546. #u16576_text {
  4547. border-width:0px;
  4548. word-wrap:break-word;
  4549. text-transform:none;
  4550. visibility:hidden;
  4551. }
  4552. #u16577_img {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:89px;
  4558. height:38px;
  4559. }
  4560. #u16577 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:756px;
  4564. top:153px;
  4565. width:89px;
  4566. height:38px;
  4567. display:flex;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:12px;
  4572. }
  4573. #u16577 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 0px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u16577_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u16578_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:89px;
  4592. height:38px;
  4593. }
  4594. #u16578 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:845px;
  4598. top:153px;
  4599. width:89px;
  4600. height:38px;
  4601. display:flex;
  4602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. font-size:12px;
  4606. }
  4607. #u16578 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 0px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u16578_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u16579_img {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:89px;
  4626. height:38px;
  4627. }
  4628. #u16579 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:934px;
  4632. top:153px;
  4633. width:89px;
  4634. height:38px;
  4635. display:flex;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:12px;
  4640. }
  4641. #u16579 .text {
  4642. position:absolute;
  4643. align-self:center;
  4644. padding:2px 2px 2px 0px;
  4645. box-sizing:border-box;
  4646. width:100%;
  4647. }
  4648. #u16579_text {
  4649. border-width:0px;
  4650. word-wrap:break-word;
  4651. text-transform:none;
  4652. visibility:hidden;
  4653. }
  4654. #u16580_img {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:89px;
  4660. height:38px;
  4661. }
  4662. #u16580 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:1023px;
  4666. top:153px;
  4667. width:89px;
  4668. height:38px;
  4669. display:flex;
  4670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4671. font-weight:400;
  4672. font-style:normal;
  4673. font-size:12px;
  4674. }
  4675. #u16580 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 2px 2px 0px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u16580_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. visibility:hidden;
  4687. }
  4688. #u16581_img {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:107px;
  4694. height:38px;
  4695. }
  4696. #u16581 {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:1112px;
  4700. top:153px;
  4701. width:107px;
  4702. height:38px;
  4703. display:flex;
  4704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4705. font-weight:400;
  4706. font-style:normal;
  4707. font-size:12px;
  4708. color:#1890FF;
  4709. }
  4710. #u16581 .text {
  4711. position:absolute;
  4712. align-self:center;
  4713. padding:2px 2px 2px 0px;
  4714. box-sizing:border-box;
  4715. width:100%;
  4716. }
  4717. #u16581_text {
  4718. border-width:0px;
  4719. word-wrap:break-word;
  4720. text-transform:none;
  4721. visibility:hidden;
  4722. }
  4723. #u16582_img {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:44px;
  4729. height:35px;
  4730. }
  4731. #u16582 {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:0px;
  4735. top:191px;
  4736. width:44px;
  4737. height:35px;
  4738. display:flex;
  4739. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4740. font-weight:400;
  4741. font-style:normal;
  4742. font-size:12px;
  4743. color:#606266;
  4744. }
  4745. #u16582 .text {
  4746. position:absolute;
  4747. align-self:center;
  4748. padding:2px 2px 2px 0px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u16582_text {
  4753. border-width:0px;
  4754. word-wrap:break-word;
  4755. text-transform:none;
  4756. visibility:hidden;
  4757. }
  4758. #u16583_img {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:89px;
  4764. height:35px;
  4765. }
  4766. #u16583 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:44px;
  4770. top:191px;
  4771. width:89px;
  4772. height:35px;
  4773. display:flex;
  4774. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4775. font-weight:400;
  4776. font-style:normal;
  4777. font-size:12px;
  4778. color:#606266;
  4779. }
  4780. #u16583 .text {
  4781. position:absolute;
  4782. align-self:center;
  4783. padding:2px 2px 2px 0px;
  4784. box-sizing:border-box;
  4785. width:100%;
  4786. }
  4787. #u16583_text {
  4788. border-width:0px;
  4789. word-wrap:break-word;
  4790. text-transform:none;
  4791. visibility:hidden;
  4792. }
  4793. #u16584_img {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:0px;
  4797. top:0px;
  4798. width:89px;
  4799. height:35px;
  4800. }
  4801. #u16584 {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:133px;
  4805. top:191px;
  4806. width:89px;
  4807. height:35px;
  4808. display:flex;
  4809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4810. font-weight:400;
  4811. font-style:normal;
  4812. font-size:12px;
  4813. color:#606266;
  4814. }
  4815. #u16584 .text {
  4816. position:absolute;
  4817. align-self:center;
  4818. padding:2px 2px 2px 0px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u16584_text {
  4823. border-width:0px;
  4824. word-wrap:break-word;
  4825. text-transform:none;
  4826. visibility:hidden;
  4827. }
  4828. #u16585_img {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:0px;
  4832. top:0px;
  4833. width:89px;
  4834. height:35px;
  4835. }
  4836. #u16585 {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:222px;
  4840. top:191px;
  4841. width:89px;
  4842. height:35px;
  4843. display:flex;
  4844. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4845. font-weight:400;
  4846. font-style:normal;
  4847. font-size:12px;
  4848. color:#606266;
  4849. }
  4850. #u16585 .text {
  4851. position:absolute;
  4852. align-self:center;
  4853. padding:2px 2px 2px 0px;
  4854. box-sizing:border-box;
  4855. width:100%;
  4856. }
  4857. #u16585_text {
  4858. border-width:0px;
  4859. word-wrap:break-word;
  4860. text-transform:none;
  4861. visibility:hidden;
  4862. }
  4863. #u16586_img {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:0px;
  4867. top:0px;
  4868. width:89px;
  4869. height:35px;
  4870. }
  4871. #u16586 {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:311px;
  4875. top:191px;
  4876. width:89px;
  4877. height:35px;
  4878. display:flex;
  4879. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4880. font-weight:400;
  4881. font-style:normal;
  4882. font-size:12px;
  4883. color:#606266;
  4884. }
  4885. #u16586 .text {
  4886. position:absolute;
  4887. align-self:center;
  4888. padding:2px 2px 2px 0px;
  4889. box-sizing:border-box;
  4890. width:100%;
  4891. }
  4892. #u16586_text {
  4893. border-width:0px;
  4894. word-wrap:break-word;
  4895. text-transform:none;
  4896. visibility:hidden;
  4897. }
  4898. #u16587_img {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:89px;
  4904. height:35px;
  4905. }
  4906. #u16587 {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:400px;
  4910. top:191px;
  4911. width:89px;
  4912. height:35px;
  4913. display:flex;
  4914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4915. font-weight:400;
  4916. font-style:normal;
  4917. font-size:12px;
  4918. color:#606266;
  4919. }
  4920. #u16587 .text {
  4921. position:absolute;
  4922. align-self:center;
  4923. padding:2px 2px 2px 0px;
  4924. box-sizing:border-box;
  4925. width:100%;
  4926. }
  4927. #u16587_text {
  4928. border-width:0px;
  4929. word-wrap:break-word;
  4930. text-transform:none;
  4931. visibility:hidden;
  4932. }
  4933. #u16588_img {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:89px;
  4939. height:35px;
  4940. }
  4941. #u16588 {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:489px;
  4945. top:191px;
  4946. width:89px;
  4947. height:35px;
  4948. display:flex;
  4949. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4950. font-weight:400;
  4951. font-style:normal;
  4952. font-size:12px;
  4953. color:#606266;
  4954. }
  4955. #u16588 .text {
  4956. position:absolute;
  4957. align-self:center;
  4958. padding:2px 2px 2px 0px;
  4959. box-sizing:border-box;
  4960. width:100%;
  4961. }
  4962. #u16588_text {
  4963. border-width:0px;
  4964. word-wrap:break-word;
  4965. text-transform:none;
  4966. visibility:hidden;
  4967. }
  4968. #u16589_img {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:0px;
  4972. top:0px;
  4973. width:89px;
  4974. height:35px;
  4975. }
  4976. #u16589 {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:578px;
  4980. top:191px;
  4981. width:89px;
  4982. height:35px;
  4983. display:flex;
  4984. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4985. font-weight:400;
  4986. font-style:normal;
  4987. font-size:12px;
  4988. color:#606266;
  4989. }
  4990. #u16589 .text {
  4991. position:absolute;
  4992. align-self:center;
  4993. padding:2px 2px 2px 0px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u16589_text {
  4998. border-width:0px;
  4999. word-wrap:break-word;
  5000. text-transform:none;
  5001. visibility:hidden;
  5002. }
  5003. #u16590_img {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:89px;
  5009. height:35px;
  5010. }
  5011. #u16590 {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:667px;
  5015. top:191px;
  5016. width:89px;
  5017. height:35px;
  5018. display:flex;
  5019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5020. font-weight:400;
  5021. font-style:normal;
  5022. font-size:12px;
  5023. color:#606266;
  5024. }
  5025. #u16590 .text {
  5026. position:absolute;
  5027. align-self:center;
  5028. padding:2px 2px 2px 0px;
  5029. box-sizing:border-box;
  5030. width:100%;
  5031. }
  5032. #u16590_text {
  5033. border-width:0px;
  5034. word-wrap:break-word;
  5035. text-transform:none;
  5036. visibility:hidden;
  5037. }
  5038. #u16591_img {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:89px;
  5044. height:35px;
  5045. }
  5046. #u16591 {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:756px;
  5050. top:191px;
  5051. width:89px;
  5052. height:35px;
  5053. display:flex;
  5054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5055. font-weight:400;
  5056. font-style:normal;
  5057. font-size:12px;
  5058. color:#606266;
  5059. }
  5060. #u16591 .text {
  5061. position:absolute;
  5062. align-self:center;
  5063. padding:2px 2px 2px 0px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u16591_text {
  5068. border-width:0px;
  5069. word-wrap:break-word;
  5070. text-transform:none;
  5071. visibility:hidden;
  5072. }
  5073. #u16592_img {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:89px;
  5079. height:35px;
  5080. }
  5081. #u16592 {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:845px;
  5085. top:191px;
  5086. width:89px;
  5087. height:35px;
  5088. display:flex;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. font-size:12px;
  5093. color:#606266;
  5094. }
  5095. #u16592 .text {
  5096. position:absolute;
  5097. align-self:center;
  5098. padding:2px 2px 2px 0px;
  5099. box-sizing:border-box;
  5100. width:100%;
  5101. }
  5102. #u16592_text {
  5103. border-width:0px;
  5104. word-wrap:break-word;
  5105. text-transform:none;
  5106. visibility:hidden;
  5107. }
  5108. #u16593_img {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:89px;
  5114. height:35px;
  5115. }
  5116. #u16593 {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:934px;
  5120. top:191px;
  5121. width:89px;
  5122. height:35px;
  5123. display:flex;
  5124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5125. font-weight:400;
  5126. font-style:normal;
  5127. font-size:12px;
  5128. color:#606266;
  5129. }
  5130. #u16593 .text {
  5131. position:absolute;
  5132. align-self:center;
  5133. padding:2px 2px 2px 0px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u16593_text {
  5138. border-width:0px;
  5139. word-wrap:break-word;
  5140. text-transform:none;
  5141. visibility:hidden;
  5142. }
  5143. #u16594_img {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:89px;
  5149. height:35px;
  5150. }
  5151. #u16594 {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:1023px;
  5155. top:191px;
  5156. width:89px;
  5157. height:35px;
  5158. display:flex;
  5159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:12px;
  5163. color:#606266;
  5164. }
  5165. #u16594 .text {
  5166. position:absolute;
  5167. align-self:center;
  5168. padding:2px 2px 2px 0px;
  5169. box-sizing:border-box;
  5170. width:100%;
  5171. }
  5172. #u16594_text {
  5173. border-width:0px;
  5174. word-wrap:break-word;
  5175. text-transform:none;
  5176. visibility:hidden;
  5177. }
  5178. #u16595_img {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:0px;
  5182. top:0px;
  5183. width:107px;
  5184. height:35px;
  5185. }
  5186. #u16595 {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:1112px;
  5190. top:191px;
  5191. width:107px;
  5192. height:35px;
  5193. display:flex;
  5194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:12px;
  5198. color:#02A7F0;
  5199. }
  5200. #u16595 .text {
  5201. position:absolute;
  5202. align-self:center;
  5203. padding:2px 2px 2px 0px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u16595_text {
  5208. border-width:0px;
  5209. word-wrap:break-word;
  5210. text-transform:none;
  5211. visibility:hidden;
  5212. }
  5213. #u16596_img {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:44px;
  5219. height:35px;
  5220. }
  5221. #u16596 {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:226px;
  5226. width:44px;
  5227. height:35px;
  5228. display:flex;
  5229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5230. font-weight:400;
  5231. font-style:normal;
  5232. font-size:12px;
  5233. color:#606266;
  5234. }
  5235. #u16596 .text {
  5236. position:absolute;
  5237. align-self:center;
  5238. padding:2px 2px 2px 0px;
  5239. box-sizing:border-box;
  5240. width:100%;
  5241. }
  5242. #u16596_text {
  5243. border-width:0px;
  5244. word-wrap:break-word;
  5245. text-transform:none;
  5246. visibility:hidden;
  5247. }
  5248. #u16597_img {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:89px;
  5254. height:35px;
  5255. }
  5256. #u16597 {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:44px;
  5260. top:226px;
  5261. width:89px;
  5262. height:35px;
  5263. display:flex;
  5264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5265. font-weight:400;
  5266. font-style:normal;
  5267. font-size:12px;
  5268. color:#606266;
  5269. }
  5270. #u16597 .text {
  5271. position:absolute;
  5272. align-self:center;
  5273. padding:2px 2px 2px 0px;
  5274. box-sizing:border-box;
  5275. width:100%;
  5276. }
  5277. #u16597_text {
  5278. border-width:0px;
  5279. word-wrap:break-word;
  5280. text-transform:none;
  5281. visibility:hidden;
  5282. }
  5283. #u16598_img {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:0px;
  5287. top:0px;
  5288. width:89px;
  5289. height:35px;
  5290. }
  5291. #u16598 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:133px;
  5295. top:226px;
  5296. width:89px;
  5297. height:35px;
  5298. display:flex;
  5299. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:12px;
  5303. color:#606266;
  5304. }
  5305. #u16598 .text {
  5306. position:absolute;
  5307. align-self:center;
  5308. padding:2px 2px 2px 0px;
  5309. box-sizing:border-box;
  5310. width:100%;
  5311. }
  5312. #u16598_text {
  5313. border-width:0px;
  5314. word-wrap:break-word;
  5315. text-transform:none;
  5316. visibility:hidden;
  5317. }
  5318. #u16599_img {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:89px;
  5324. height:35px;
  5325. }
  5326. #u16599 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:222px;
  5330. top:226px;
  5331. width:89px;
  5332. height:35px;
  5333. display:flex;
  5334. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. font-size:12px;
  5338. color:#606266;
  5339. }
  5340. #u16599 .text {
  5341. position:absolute;
  5342. align-self:center;
  5343. padding:2px 2px 2px 0px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u16599_text {
  5348. border-width:0px;
  5349. word-wrap:break-word;
  5350. text-transform:none;
  5351. visibility:hidden;
  5352. }
  5353. #u16600_img {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:0px;
  5357. top:0px;
  5358. width:89px;
  5359. height:35px;
  5360. }
  5361. #u16600 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:311px;
  5365. top:226px;
  5366. width:89px;
  5367. height:35px;
  5368. display:flex;
  5369. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:12px;
  5373. color:#606266;
  5374. }
  5375. #u16600 .text {
  5376. position:absolute;
  5377. align-self:center;
  5378. padding:2px 2px 2px 0px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u16600_text {
  5383. border-width:0px;
  5384. word-wrap:break-word;
  5385. text-transform:none;
  5386. visibility:hidden;
  5387. }
  5388. #u16601_img {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:89px;
  5394. height:35px;
  5395. }
  5396. #u16601 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:400px;
  5400. top:226px;
  5401. width:89px;
  5402. height:35px;
  5403. display:flex;
  5404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:12px;
  5408. color:#606266;
  5409. }
  5410. #u16601 .text {
  5411. position:absolute;
  5412. align-self:center;
  5413. padding:2px 2px 2px 0px;
  5414. box-sizing:border-box;
  5415. width:100%;
  5416. }
  5417. #u16601_text {
  5418. border-width:0px;
  5419. word-wrap:break-word;
  5420. text-transform:none;
  5421. visibility:hidden;
  5422. }
  5423. #u16602_img {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:89px;
  5429. height:35px;
  5430. }
  5431. #u16602 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:489px;
  5435. top:226px;
  5436. width:89px;
  5437. height:35px;
  5438. display:flex;
  5439. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:12px;
  5443. color:#606266;
  5444. }
  5445. #u16602 .text {
  5446. position:absolute;
  5447. align-self:center;
  5448. padding:2px 2px 2px 0px;
  5449. box-sizing:border-box;
  5450. width:100%;
  5451. }
  5452. #u16602_text {
  5453. border-width:0px;
  5454. word-wrap:break-word;
  5455. text-transform:none;
  5456. visibility:hidden;
  5457. }
  5458. #u16603_img {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:89px;
  5464. height:35px;
  5465. }
  5466. #u16603 {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:578px;
  5470. top:226px;
  5471. width:89px;
  5472. height:35px;
  5473. display:flex;
  5474. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5475. font-weight:400;
  5476. font-style:normal;
  5477. font-size:12px;
  5478. color:#606266;
  5479. }
  5480. #u16603 .text {
  5481. position:absolute;
  5482. align-self:center;
  5483. padding:2px 2px 2px 0px;
  5484. box-sizing:border-box;
  5485. width:100%;
  5486. }
  5487. #u16603_text {
  5488. border-width:0px;
  5489. word-wrap:break-word;
  5490. text-transform:none;
  5491. visibility:hidden;
  5492. }
  5493. #u16604_img {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:89px;
  5499. height:35px;
  5500. }
  5501. #u16604 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:667px;
  5505. top:226px;
  5506. width:89px;
  5507. height:35px;
  5508. display:flex;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:12px;
  5513. color:#606266;
  5514. }
  5515. #u16604 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 2px 2px 0px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u16604_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u16605_img {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:89px;
  5534. height:35px;
  5535. }
  5536. #u16605 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:756px;
  5540. top:226px;
  5541. width:89px;
  5542. height:35px;
  5543. display:flex;
  5544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5545. font-weight:400;
  5546. font-style:normal;
  5547. font-size:12px;
  5548. color:#606266;
  5549. }
  5550. #u16605 .text {
  5551. position:absolute;
  5552. align-self:center;
  5553. padding:2px 2px 2px 0px;
  5554. box-sizing:border-box;
  5555. width:100%;
  5556. }
  5557. #u16605_text {
  5558. border-width:0px;
  5559. word-wrap:break-word;
  5560. text-transform:none;
  5561. visibility:hidden;
  5562. }
  5563. #u16606_img {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:89px;
  5569. height:35px;
  5570. }
  5571. #u16606 {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:845px;
  5575. top:226px;
  5576. width:89px;
  5577. height:35px;
  5578. display:flex;
  5579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5580. font-weight:400;
  5581. font-style:normal;
  5582. font-size:12px;
  5583. color:#606266;
  5584. }
  5585. #u16606 .text {
  5586. position:absolute;
  5587. align-self:center;
  5588. padding:2px 2px 2px 0px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u16606_text {
  5593. border-width:0px;
  5594. word-wrap:break-word;
  5595. text-transform:none;
  5596. visibility:hidden;
  5597. }
  5598. #u16607_img {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:89px;
  5604. height:35px;
  5605. }
  5606. #u16607 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:934px;
  5610. top:226px;
  5611. width:89px;
  5612. height:35px;
  5613. display:flex;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:12px;
  5618. color:#606266;
  5619. }
  5620. #u16607 .text {
  5621. position:absolute;
  5622. align-self:center;
  5623. padding:2px 2px 2px 0px;
  5624. box-sizing:border-box;
  5625. width:100%;
  5626. }
  5627. #u16607_text {
  5628. border-width:0px;
  5629. word-wrap:break-word;
  5630. text-transform:none;
  5631. visibility:hidden;
  5632. }
  5633. #u16608_img {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:89px;
  5639. height:35px;
  5640. }
  5641. #u16608 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:1023px;
  5645. top:226px;
  5646. width:89px;
  5647. height:35px;
  5648. display:flex;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:12px;
  5653. color:#606266;
  5654. }
  5655. #u16608 .text {
  5656. position:absolute;
  5657. align-self:center;
  5658. padding:2px 2px 2px 0px;
  5659. box-sizing:border-box;
  5660. width:100%;
  5661. }
  5662. #u16608_text {
  5663. border-width:0px;
  5664. word-wrap:break-word;
  5665. text-transform:none;
  5666. visibility:hidden;
  5667. }
  5668. #u16609_img {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:107px;
  5674. height:35px;
  5675. }
  5676. #u16609 {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:1112px;
  5680. top:226px;
  5681. width:107px;
  5682. height:35px;
  5683. display:flex;
  5684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5685. font-weight:400;
  5686. font-style:normal;
  5687. font-size:12px;
  5688. color:#02A7F0;
  5689. }
  5690. #u16609 .text {
  5691. position:absolute;
  5692. align-self:center;
  5693. padding:2px 2px 2px 0px;
  5694. box-sizing:border-box;
  5695. width:100%;
  5696. }
  5697. #u16609_text {
  5698. border-width:0px;
  5699. word-wrap:break-word;
  5700. text-transform:none;
  5701. visibility:hidden;
  5702. }
  5703. #u16610_img {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:44px;
  5709. height:35px;
  5710. }
  5711. #u16610 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:261px;
  5716. width:44px;
  5717. height:35px;
  5718. display:flex;
  5719. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:12px;
  5723. color:#606266;
  5724. }
  5725. #u16610 .text {
  5726. position:absolute;
  5727. align-self:center;
  5728. padding:2px 2px 2px 0px;
  5729. box-sizing:border-box;
  5730. width:100%;
  5731. }
  5732. #u16610_text {
  5733. border-width:0px;
  5734. word-wrap:break-word;
  5735. text-transform:none;
  5736. visibility:hidden;
  5737. }
  5738. #u16611_img {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:89px;
  5744. height:35px;
  5745. }
  5746. #u16611 {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:44px;
  5750. top:261px;
  5751. width:89px;
  5752. height:35px;
  5753. display:flex;
  5754. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5755. font-weight:400;
  5756. font-style:normal;
  5757. font-size:12px;
  5758. color:#606266;
  5759. }
  5760. #u16611 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 2px 2px 0px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u16611_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. visibility:hidden;
  5772. }
  5773. #u16612_img {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:89px;
  5779. height:35px;
  5780. }
  5781. #u16612 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:133px;
  5785. top:261px;
  5786. width:89px;
  5787. height:35px;
  5788. display:flex;
  5789. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:12px;
  5793. color:#606266;
  5794. }
  5795. #u16612 .text {
  5796. position:absolute;
  5797. align-self:center;
  5798. padding:2px 2px 2px 0px;
  5799. box-sizing:border-box;
  5800. width:100%;
  5801. }
  5802. #u16612_text {
  5803. border-width:0px;
  5804. word-wrap:break-word;
  5805. text-transform:none;
  5806. visibility:hidden;
  5807. }
  5808. #u16613_img {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:0px;
  5812. top:0px;
  5813. width:89px;
  5814. height:35px;
  5815. }
  5816. #u16613 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:222px;
  5820. top:261px;
  5821. width:89px;
  5822. height:35px;
  5823. display:flex;
  5824. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:12px;
  5828. color:#606266;
  5829. }
  5830. #u16613 .text {
  5831. position:absolute;
  5832. align-self:center;
  5833. padding:2px 2px 2px 0px;
  5834. box-sizing:border-box;
  5835. width:100%;
  5836. }
  5837. #u16613_text {
  5838. border-width:0px;
  5839. word-wrap:break-word;
  5840. text-transform:none;
  5841. visibility:hidden;
  5842. }
  5843. #u16614_img {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:89px;
  5849. height:35px;
  5850. }
  5851. #u16614 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:311px;
  5855. top:261px;
  5856. width:89px;
  5857. height:35px;
  5858. display:flex;
  5859. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:12px;
  5863. color:#606266;
  5864. }
  5865. #u16614 .text {
  5866. position:absolute;
  5867. align-self:center;
  5868. padding:2px 2px 2px 0px;
  5869. box-sizing:border-box;
  5870. width:100%;
  5871. }
  5872. #u16614_text {
  5873. border-width:0px;
  5874. word-wrap:break-word;
  5875. text-transform:none;
  5876. visibility:hidden;
  5877. }
  5878. #u16615_img {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:89px;
  5884. height:35px;
  5885. }
  5886. #u16615 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:400px;
  5890. top:261px;
  5891. width:89px;
  5892. height:35px;
  5893. display:flex;
  5894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:12px;
  5898. color:#606266;
  5899. }
  5900. #u16615 .text {
  5901. position:absolute;
  5902. align-self:center;
  5903. padding:2px 2px 2px 0px;
  5904. box-sizing:border-box;
  5905. width:100%;
  5906. }
  5907. #u16615_text {
  5908. border-width:0px;
  5909. word-wrap:break-word;
  5910. text-transform:none;
  5911. visibility:hidden;
  5912. }
  5913. #u16616_img {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:89px;
  5919. height:35px;
  5920. }
  5921. #u16616 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:489px;
  5925. top:261px;
  5926. width:89px;
  5927. height:35px;
  5928. display:flex;
  5929. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:12px;
  5933. color:#606266;
  5934. }
  5935. #u16616 .text {
  5936. position:absolute;
  5937. align-self:center;
  5938. padding:2px 2px 2px 0px;
  5939. box-sizing:border-box;
  5940. width:100%;
  5941. }
  5942. #u16616_text {
  5943. border-width:0px;
  5944. word-wrap:break-word;
  5945. text-transform:none;
  5946. visibility:hidden;
  5947. }
  5948. #u16617_img {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:89px;
  5954. height:35px;
  5955. }
  5956. #u16617 {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:578px;
  5960. top:261px;
  5961. width:89px;
  5962. height:35px;
  5963. display:flex;
  5964. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5965. font-weight:400;
  5966. font-style:normal;
  5967. font-size:12px;
  5968. color:#606266;
  5969. }
  5970. #u16617 .text {
  5971. position:absolute;
  5972. align-self:center;
  5973. padding:2px 2px 2px 0px;
  5974. box-sizing:border-box;
  5975. width:100%;
  5976. }
  5977. #u16617_text {
  5978. border-width:0px;
  5979. word-wrap:break-word;
  5980. text-transform:none;
  5981. visibility:hidden;
  5982. }
  5983. #u16618_img {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:0px;
  5987. top:0px;
  5988. width:89px;
  5989. height:35px;
  5990. }
  5991. #u16618 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:667px;
  5995. top:261px;
  5996. width:89px;
  5997. height:35px;
  5998. display:flex;
  5999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:12px;
  6003. color:#606266;
  6004. }
  6005. #u16618 .text {
  6006. position:absolute;
  6007. align-self:center;
  6008. padding:2px 2px 2px 0px;
  6009. box-sizing:border-box;
  6010. width:100%;
  6011. }
  6012. #u16618_text {
  6013. border-width:0px;
  6014. word-wrap:break-word;
  6015. text-transform:none;
  6016. visibility:hidden;
  6017. }
  6018. #u16619_img {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:0px;
  6022. top:0px;
  6023. width:89px;
  6024. height:35px;
  6025. }
  6026. #u16619 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:756px;
  6030. top:261px;
  6031. width:89px;
  6032. height:35px;
  6033. display:flex;
  6034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6035. font-weight:400;
  6036. font-style:normal;
  6037. font-size:12px;
  6038. color:#606266;
  6039. }
  6040. #u16619 .text {
  6041. position:absolute;
  6042. align-self:center;
  6043. padding:2px 2px 2px 0px;
  6044. box-sizing:border-box;
  6045. width:100%;
  6046. }
  6047. #u16619_text {
  6048. border-width:0px;
  6049. word-wrap:break-word;
  6050. text-transform:none;
  6051. visibility:hidden;
  6052. }
  6053. #u16620_img {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:89px;
  6059. height:35px;
  6060. }
  6061. #u16620 {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:845px;
  6065. top:261px;
  6066. width:89px;
  6067. height:35px;
  6068. display:flex;
  6069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6070. font-weight:400;
  6071. font-style:normal;
  6072. font-size:12px;
  6073. color:#606266;
  6074. }
  6075. #u16620 .text {
  6076. position:absolute;
  6077. align-self:center;
  6078. padding:2px 2px 2px 0px;
  6079. box-sizing:border-box;
  6080. width:100%;
  6081. }
  6082. #u16620_text {
  6083. border-width:0px;
  6084. word-wrap:break-word;
  6085. text-transform:none;
  6086. visibility:hidden;
  6087. }
  6088. #u16621_img {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:89px;
  6094. height:35px;
  6095. }
  6096. #u16621 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:934px;
  6100. top:261px;
  6101. width:89px;
  6102. height:35px;
  6103. display:flex;
  6104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:12px;
  6108. color:#606266;
  6109. }
  6110. #u16621 .text {
  6111. position:absolute;
  6112. align-self:center;
  6113. padding:2px 2px 2px 0px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u16621_text {
  6118. border-width:0px;
  6119. word-wrap:break-word;
  6120. text-transform:none;
  6121. visibility:hidden;
  6122. }
  6123. #u16622_img {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:0px;
  6127. top:0px;
  6128. width:89px;
  6129. height:35px;
  6130. }
  6131. #u16622 {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:1023px;
  6135. top:261px;
  6136. width:89px;
  6137. height:35px;
  6138. display:flex;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:12px;
  6143. color:#606266;
  6144. }
  6145. #u16622 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 0px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u16622_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. visibility:hidden;
  6157. }
  6158. #u16623_img {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:107px;
  6164. height:35px;
  6165. }
  6166. #u16623 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:1112px;
  6170. top:261px;
  6171. width:107px;
  6172. height:35px;
  6173. display:flex;
  6174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6175. font-weight:400;
  6176. font-style:normal;
  6177. font-size:12px;
  6178. color:#02A7F0;
  6179. }
  6180. #u16623 .text {
  6181. position:absolute;
  6182. align-self:center;
  6183. padding:2px 2px 2px 0px;
  6184. box-sizing:border-box;
  6185. width:100%;
  6186. }
  6187. #u16623_text {
  6188. border-width:0px;
  6189. word-wrap:break-word;
  6190. text-transform:none;
  6191. visibility:hidden;
  6192. }
  6193. #u16624_img {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:0px;
  6197. top:0px;
  6198. width:44px;
  6199. height:35px;
  6200. }
  6201. #u16624 {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:296px;
  6206. width:44px;
  6207. height:35px;
  6208. display:flex;
  6209. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6210. font-weight:400;
  6211. font-style:normal;
  6212. font-size:12px;
  6213. color:#606266;
  6214. }
  6215. #u16624 .text {
  6216. position:absolute;
  6217. align-self:center;
  6218. padding:2px 2px 2px 0px;
  6219. box-sizing:border-box;
  6220. width:100%;
  6221. }
  6222. #u16624_text {
  6223. border-width:0px;
  6224. word-wrap:break-word;
  6225. text-transform:none;
  6226. visibility:hidden;
  6227. }
  6228. #u16625_img {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:0px;
  6232. top:0px;
  6233. width:89px;
  6234. height:35px;
  6235. }
  6236. #u16625 {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:44px;
  6240. top:296px;
  6241. width:89px;
  6242. height:35px;
  6243. display:flex;
  6244. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:12px;
  6248. color:#606266;
  6249. }
  6250. #u16625 .text {
  6251. position:absolute;
  6252. align-self:center;
  6253. padding:2px 2px 2px 0px;
  6254. box-sizing:border-box;
  6255. width:100%;
  6256. }
  6257. #u16625_text {
  6258. border-width:0px;
  6259. word-wrap:break-word;
  6260. text-transform:none;
  6261. visibility:hidden;
  6262. }
  6263. #u16626_img {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:0px;
  6267. top:0px;
  6268. width:89px;
  6269. height:35px;
  6270. }
  6271. #u16626 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:133px;
  6275. top:296px;
  6276. width:89px;
  6277. height:35px;
  6278. display:flex;
  6279. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6280. font-weight:400;
  6281. font-style:normal;
  6282. font-size:12px;
  6283. color:#606266;
  6284. }
  6285. #u16626 .text {
  6286. position:absolute;
  6287. align-self:center;
  6288. padding:2px 2px 2px 0px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u16626_text {
  6293. border-width:0px;
  6294. word-wrap:break-word;
  6295. text-transform:none;
  6296. visibility:hidden;
  6297. }
  6298. #u16627_img {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:89px;
  6304. height:35px;
  6305. }
  6306. #u16627 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:222px;
  6310. top:296px;
  6311. width:89px;
  6312. height:35px;
  6313. display:flex;
  6314. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:12px;
  6318. color:#606266;
  6319. }
  6320. #u16627 .text {
  6321. position:absolute;
  6322. align-self:center;
  6323. padding:2px 2px 2px 0px;
  6324. box-sizing:border-box;
  6325. width:100%;
  6326. }
  6327. #u16627_text {
  6328. border-width:0px;
  6329. word-wrap:break-word;
  6330. text-transform:none;
  6331. visibility:hidden;
  6332. }
  6333. #u16628_img {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:89px;
  6339. height:35px;
  6340. }
  6341. #u16628 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:311px;
  6345. top:296px;
  6346. width:89px;
  6347. height:35px;
  6348. display:flex;
  6349. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:12px;
  6353. color:#606266;
  6354. }
  6355. #u16628 .text {
  6356. position:absolute;
  6357. align-self:center;
  6358. padding:2px 2px 2px 0px;
  6359. box-sizing:border-box;
  6360. width:100%;
  6361. }
  6362. #u16628_text {
  6363. border-width:0px;
  6364. word-wrap:break-word;
  6365. text-transform:none;
  6366. visibility:hidden;
  6367. }
  6368. #u16629_img {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:89px;
  6374. height:35px;
  6375. }
  6376. #u16629 {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:400px;
  6380. top:296px;
  6381. width:89px;
  6382. height:35px;
  6383. display:flex;
  6384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6385. font-weight:400;
  6386. font-style:normal;
  6387. font-size:12px;
  6388. color:#606266;
  6389. }
  6390. #u16629 .text {
  6391. position:absolute;
  6392. align-self:center;
  6393. padding:2px 2px 2px 0px;
  6394. box-sizing:border-box;
  6395. width:100%;
  6396. }
  6397. #u16629_text {
  6398. border-width:0px;
  6399. word-wrap:break-word;
  6400. text-transform:none;
  6401. visibility:hidden;
  6402. }
  6403. #u16630_img {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:0px;
  6407. top:0px;
  6408. width:89px;
  6409. height:35px;
  6410. }
  6411. #u16630 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:489px;
  6415. top:296px;
  6416. width:89px;
  6417. height:35px;
  6418. display:flex;
  6419. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:12px;
  6423. color:#606266;
  6424. }
  6425. #u16630 .text {
  6426. position:absolute;
  6427. align-self:center;
  6428. padding:2px 2px 2px 0px;
  6429. box-sizing:border-box;
  6430. width:100%;
  6431. }
  6432. #u16630_text {
  6433. border-width:0px;
  6434. word-wrap:break-word;
  6435. text-transform:none;
  6436. visibility:hidden;
  6437. }
  6438. #u16631_img {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:89px;
  6444. height:35px;
  6445. }
  6446. #u16631 {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:578px;
  6450. top:296px;
  6451. width:89px;
  6452. height:35px;
  6453. display:flex;
  6454. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6455. font-weight:400;
  6456. font-style:normal;
  6457. font-size:12px;
  6458. color:#606266;
  6459. }
  6460. #u16631 .text {
  6461. position:absolute;
  6462. align-self:center;
  6463. padding:2px 2px 2px 0px;
  6464. box-sizing:border-box;
  6465. width:100%;
  6466. }
  6467. #u16631_text {
  6468. border-width:0px;
  6469. word-wrap:break-word;
  6470. text-transform:none;
  6471. visibility:hidden;
  6472. }
  6473. #u16632_img {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:89px;
  6479. height:35px;
  6480. }
  6481. #u16632 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:667px;
  6485. top:296px;
  6486. width:89px;
  6487. height:35px;
  6488. display:flex;
  6489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6490. font-weight:400;
  6491. font-style:normal;
  6492. font-size:12px;
  6493. color:#606266;
  6494. }
  6495. #u16632 .text {
  6496. position:absolute;
  6497. align-self:center;
  6498. padding:2px 2px 2px 0px;
  6499. box-sizing:border-box;
  6500. width:100%;
  6501. }
  6502. #u16632_text {
  6503. border-width:0px;
  6504. word-wrap:break-word;
  6505. text-transform:none;
  6506. visibility:hidden;
  6507. }
  6508. #u16633_img {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:89px;
  6514. height:35px;
  6515. }
  6516. #u16633 {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:756px;
  6520. top:296px;
  6521. width:89px;
  6522. height:35px;
  6523. display:flex;
  6524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6525. font-weight:400;
  6526. font-style:normal;
  6527. font-size:12px;
  6528. color:#606266;
  6529. }
  6530. #u16633 .text {
  6531. position:absolute;
  6532. align-self:center;
  6533. padding:2px 2px 2px 0px;
  6534. box-sizing:border-box;
  6535. width:100%;
  6536. }
  6537. #u16633_text {
  6538. border-width:0px;
  6539. word-wrap:break-word;
  6540. text-transform:none;
  6541. visibility:hidden;
  6542. }
  6543. #u16634_img {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:89px;
  6549. height:35px;
  6550. }
  6551. #u16634 {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:845px;
  6555. top:296px;
  6556. width:89px;
  6557. height:35px;
  6558. display:flex;
  6559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6560. font-weight:400;
  6561. font-style:normal;
  6562. font-size:12px;
  6563. color:#606266;
  6564. }
  6565. #u16634 .text {
  6566. position:absolute;
  6567. align-self:center;
  6568. padding:2px 2px 2px 0px;
  6569. box-sizing:border-box;
  6570. width:100%;
  6571. }
  6572. #u16634_text {
  6573. border-width:0px;
  6574. word-wrap:break-word;
  6575. text-transform:none;
  6576. visibility:hidden;
  6577. }
  6578. #u16635_img {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:89px;
  6584. height:35px;
  6585. }
  6586. #u16635 {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:934px;
  6590. top:296px;
  6591. width:89px;
  6592. height:35px;
  6593. display:flex;
  6594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6595. font-weight:400;
  6596. font-style:normal;
  6597. font-size:12px;
  6598. color:#606266;
  6599. }
  6600. #u16635 .text {
  6601. position:absolute;
  6602. align-self:center;
  6603. padding:2px 2px 2px 0px;
  6604. box-sizing:border-box;
  6605. width:100%;
  6606. }
  6607. #u16635_text {
  6608. border-width:0px;
  6609. word-wrap:break-word;
  6610. text-transform:none;
  6611. visibility:hidden;
  6612. }
  6613. #u16636_img {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:0px;
  6617. top:0px;
  6618. width:89px;
  6619. height:35px;
  6620. }
  6621. #u16636 {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:1023px;
  6625. top:296px;
  6626. width:89px;
  6627. height:35px;
  6628. display:flex;
  6629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:12px;
  6633. color:#606266;
  6634. }
  6635. #u16636 .text {
  6636. position:absolute;
  6637. align-self:center;
  6638. padding:2px 2px 2px 0px;
  6639. box-sizing:border-box;
  6640. width:100%;
  6641. }
  6642. #u16636_text {
  6643. border-width:0px;
  6644. word-wrap:break-word;
  6645. text-transform:none;
  6646. visibility:hidden;
  6647. }
  6648. #u16637_img {
  6649. border-width:0px;
  6650. position:absolute;
  6651. left:0px;
  6652. top:0px;
  6653. width:107px;
  6654. height:35px;
  6655. }
  6656. #u16637 {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:1112px;
  6660. top:296px;
  6661. width:107px;
  6662. height:35px;
  6663. display:flex;
  6664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6665. font-weight:400;
  6666. font-style:normal;
  6667. font-size:12px;
  6668. color:#02A7F0;
  6669. }
  6670. #u16637 .text {
  6671. position:absolute;
  6672. align-self:center;
  6673. padding:2px 2px 2px 0px;
  6674. box-sizing:border-box;
  6675. width:100%;
  6676. }
  6677. #u16637_text {
  6678. border-width:0px;
  6679. word-wrap:break-word;
  6680. text-transform:none;
  6681. visibility:hidden;
  6682. }
  6683. #u16638_img {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:0px;
  6687. top:0px;
  6688. width:44px;
  6689. height:35px;
  6690. }
  6691. #u16638 {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:0px;
  6695. top:331px;
  6696. width:44px;
  6697. height:35px;
  6698. display:flex;
  6699. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6700. font-weight:400;
  6701. font-style:normal;
  6702. font-size:12px;
  6703. color:#606266;
  6704. }
  6705. #u16638 .text {
  6706. position:absolute;
  6707. align-self:center;
  6708. padding:2px 2px 2px 0px;
  6709. box-sizing:border-box;
  6710. width:100%;
  6711. }
  6712. #u16638_text {
  6713. border-width:0px;
  6714. word-wrap:break-word;
  6715. text-transform:none;
  6716. visibility:hidden;
  6717. }
  6718. #u16639_img {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:89px;
  6724. height:35px;
  6725. }
  6726. #u16639 {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:44px;
  6730. top:331px;
  6731. width:89px;
  6732. height:35px;
  6733. display:flex;
  6734. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:12px;
  6738. color:#606266;
  6739. }
  6740. #u16639 .text {
  6741. position:absolute;
  6742. align-self:center;
  6743. padding:2px 2px 2px 0px;
  6744. box-sizing:border-box;
  6745. width:100%;
  6746. }
  6747. #u16639_text {
  6748. border-width:0px;
  6749. word-wrap:break-word;
  6750. text-transform:none;
  6751. visibility:hidden;
  6752. }
  6753. #u16640_img {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:89px;
  6759. height:35px;
  6760. }
  6761. #u16640 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:133px;
  6765. top:331px;
  6766. width:89px;
  6767. height:35px;
  6768. display:flex;
  6769. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. font-size:12px;
  6773. color:#606266;
  6774. }
  6775. #u16640 .text {
  6776. position:absolute;
  6777. align-self:center;
  6778. padding:2px 2px 2px 0px;
  6779. box-sizing:border-box;
  6780. width:100%;
  6781. }
  6782. #u16640_text {
  6783. border-width:0px;
  6784. word-wrap:break-word;
  6785. text-transform:none;
  6786. visibility:hidden;
  6787. }
  6788. #u16641_img {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:0px;
  6792. top:0px;
  6793. width:89px;
  6794. height:35px;
  6795. }
  6796. #u16641 {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:222px;
  6800. top:331px;
  6801. width:89px;
  6802. height:35px;
  6803. display:flex;
  6804. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:12px;
  6808. color:#606266;
  6809. }
  6810. #u16641 .text {
  6811. position:absolute;
  6812. align-self:center;
  6813. padding:2px 2px 2px 0px;
  6814. box-sizing:border-box;
  6815. width:100%;
  6816. }
  6817. #u16641_text {
  6818. border-width:0px;
  6819. word-wrap:break-word;
  6820. text-transform:none;
  6821. visibility:hidden;
  6822. }
  6823. #u16642_img {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:89px;
  6829. height:35px;
  6830. }
  6831. #u16642 {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:311px;
  6835. top:331px;
  6836. width:89px;
  6837. height:35px;
  6838. display:flex;
  6839. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6840. font-weight:400;
  6841. font-style:normal;
  6842. font-size:12px;
  6843. color:#606266;
  6844. }
  6845. #u16642 .text {
  6846. position:absolute;
  6847. align-self:center;
  6848. padding:2px 2px 2px 0px;
  6849. box-sizing:border-box;
  6850. width:100%;
  6851. }
  6852. #u16642_text {
  6853. border-width:0px;
  6854. word-wrap:break-word;
  6855. text-transform:none;
  6856. visibility:hidden;
  6857. }
  6858. #u16643_img {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:0px;
  6862. top:0px;
  6863. width:89px;
  6864. height:35px;
  6865. }
  6866. #u16643 {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:400px;
  6870. top:331px;
  6871. width:89px;
  6872. height:35px;
  6873. display:flex;
  6874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6875. font-weight:400;
  6876. font-style:normal;
  6877. font-size:12px;
  6878. color:#606266;
  6879. }
  6880. #u16643 .text {
  6881. position:absolute;
  6882. align-self:center;
  6883. padding:2px 2px 2px 0px;
  6884. box-sizing:border-box;
  6885. width:100%;
  6886. }
  6887. #u16643_text {
  6888. border-width:0px;
  6889. word-wrap:break-word;
  6890. text-transform:none;
  6891. visibility:hidden;
  6892. }
  6893. #u16644_img {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:89px;
  6899. height:35px;
  6900. }
  6901. #u16644 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:489px;
  6905. top:331px;
  6906. width:89px;
  6907. height:35px;
  6908. display:flex;
  6909. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6910. font-weight:400;
  6911. font-style:normal;
  6912. font-size:12px;
  6913. color:#606266;
  6914. }
  6915. #u16644 .text {
  6916. position:absolute;
  6917. align-self:center;
  6918. padding:2px 2px 2px 0px;
  6919. box-sizing:border-box;
  6920. width:100%;
  6921. }
  6922. #u16644_text {
  6923. border-width:0px;
  6924. word-wrap:break-word;
  6925. text-transform:none;
  6926. visibility:hidden;
  6927. }
  6928. #u16645_img {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:0px;
  6932. top:0px;
  6933. width:89px;
  6934. height:35px;
  6935. }
  6936. #u16645 {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:578px;
  6940. top:331px;
  6941. width:89px;
  6942. height:35px;
  6943. display:flex;
  6944. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:12px;
  6948. color:#606266;
  6949. }
  6950. #u16645 .text {
  6951. position:absolute;
  6952. align-self:center;
  6953. padding:2px 2px 2px 0px;
  6954. box-sizing:border-box;
  6955. width:100%;
  6956. }
  6957. #u16645_text {
  6958. border-width:0px;
  6959. word-wrap:break-word;
  6960. text-transform:none;
  6961. visibility:hidden;
  6962. }
  6963. #u16646_img {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:89px;
  6969. height:35px;
  6970. }
  6971. #u16646 {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:667px;
  6975. top:331px;
  6976. width:89px;
  6977. height:35px;
  6978. display:flex;
  6979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:12px;
  6983. color:#606266;
  6984. }
  6985. #u16646 .text {
  6986. position:absolute;
  6987. align-self:center;
  6988. padding:2px 2px 2px 0px;
  6989. box-sizing:border-box;
  6990. width:100%;
  6991. }
  6992. #u16646_text {
  6993. border-width:0px;
  6994. word-wrap:break-word;
  6995. text-transform:none;
  6996. visibility:hidden;
  6997. }
  6998. #u16647_img {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:0px;
  7003. width:89px;
  7004. height:35px;
  7005. }
  7006. #u16647 {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:756px;
  7010. top:331px;
  7011. width:89px;
  7012. height:35px;
  7013. display:flex;
  7014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:12px;
  7018. color:#606266;
  7019. }
  7020. #u16647 .text {
  7021. position:absolute;
  7022. align-self:center;
  7023. padding:2px 2px 2px 0px;
  7024. box-sizing:border-box;
  7025. width:100%;
  7026. }
  7027. #u16647_text {
  7028. border-width:0px;
  7029. word-wrap:break-word;
  7030. text-transform:none;
  7031. visibility:hidden;
  7032. }
  7033. #u16648_img {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:0px;
  7037. top:0px;
  7038. width:89px;
  7039. height:35px;
  7040. }
  7041. #u16648 {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:845px;
  7045. top:331px;
  7046. width:89px;
  7047. height:35px;
  7048. display:flex;
  7049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7050. font-weight:400;
  7051. font-style:normal;
  7052. font-size:12px;
  7053. color:#606266;
  7054. }
  7055. #u16648 .text {
  7056. position:absolute;
  7057. align-self:center;
  7058. padding:2px 2px 2px 0px;
  7059. box-sizing:border-box;
  7060. width:100%;
  7061. }
  7062. #u16648_text {
  7063. border-width:0px;
  7064. word-wrap:break-word;
  7065. text-transform:none;
  7066. visibility:hidden;
  7067. }
  7068. #u16649_img {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:0px;
  7072. top:0px;
  7073. width:89px;
  7074. height:35px;
  7075. }
  7076. #u16649 {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:934px;
  7080. top:331px;
  7081. width:89px;
  7082. height:35px;
  7083. display:flex;
  7084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7085. font-weight:400;
  7086. font-style:normal;
  7087. font-size:12px;
  7088. color:#606266;
  7089. }
  7090. #u16649 .text {
  7091. position:absolute;
  7092. align-self:center;
  7093. padding:2px 2px 2px 0px;
  7094. box-sizing:border-box;
  7095. width:100%;
  7096. }
  7097. #u16649_text {
  7098. border-width:0px;
  7099. word-wrap:break-word;
  7100. text-transform:none;
  7101. visibility:hidden;
  7102. }
  7103. #u16650_img {
  7104. border-width:0px;
  7105. position:absolute;
  7106. left:0px;
  7107. top:0px;
  7108. width:89px;
  7109. height:35px;
  7110. }
  7111. #u16650 {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:1023px;
  7115. top:331px;
  7116. width:89px;
  7117. height:35px;
  7118. display:flex;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. font-size:12px;
  7123. color:#606266;
  7124. }
  7125. #u16650 .text {
  7126. position:absolute;
  7127. align-self:center;
  7128. padding:2px 2px 2px 0px;
  7129. box-sizing:border-box;
  7130. width:100%;
  7131. }
  7132. #u16650_text {
  7133. border-width:0px;
  7134. word-wrap:break-word;
  7135. text-transform:none;
  7136. visibility:hidden;
  7137. }
  7138. #u16651_img {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:0px;
  7142. top:0px;
  7143. width:107px;
  7144. height:35px;
  7145. }
  7146. #u16651 {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:1112px;
  7150. top:331px;
  7151. width:107px;
  7152. height:35px;
  7153. display:flex;
  7154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7155. font-weight:400;
  7156. font-style:normal;
  7157. font-size:12px;
  7158. color:#02A7F0;
  7159. }
  7160. #u16651 .text {
  7161. position:absolute;
  7162. align-self:center;
  7163. padding:2px 2px 2px 0px;
  7164. box-sizing:border-box;
  7165. width:100%;
  7166. }
  7167. #u16651_text {
  7168. border-width:0px;
  7169. word-wrap:break-word;
  7170. text-transform:none;
  7171. visibility:hidden;
  7172. }
  7173. #u16652 {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:0px;
  7178. width:0px;
  7179. height:0px;
  7180. }
  7181. #u16653_div {
  7182. border-width:0px;
  7183. position:absolute;
  7184. left:0px;
  7185. top:0px;
  7186. width:59px;
  7187. height:30px;
  7188. background:inherit;
  7189. background-color:rgba(24, 144, 255, 1);
  7190. box-sizing:border-box;
  7191. border-width:1px;
  7192. border-style:solid;
  7193. border-color:rgba(0, 153, 255, 1);
  7194. border-radius:4px;
  7195. -moz-box-shadow:none;
  7196. -webkit-box-shadow:none;
  7197. box-shadow:none;
  7198. font-family:'Microsoft YaHei', sans-serif;
  7199. font-weight:400;
  7200. font-style:normal;
  7201. font-size:14px;
  7202. color:#FFFFFF;
  7203. }
  7204. #u16653 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:652px;
  7208. top:251px;
  7209. width:59px;
  7210. height:30px;
  7211. display:flex;
  7212. font-family:'Microsoft YaHei', sans-serif;
  7213. font-weight:400;
  7214. font-style:normal;
  7215. font-size:14px;
  7216. color:#FFFFFF;
  7217. }
  7218. #u16653 .text {
  7219. position:absolute;
  7220. align-self:center;
  7221. padding:5px 15px 5px 15px;
  7222. box-sizing:border-box;
  7223. width:100%;
  7224. }
  7225. #u16653_text {
  7226. border-width:0px;
  7227. white-space:nowrap;
  7228. text-transform:none;
  7229. }
  7230. #u16654_div {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:0px;
  7234. top:0px;
  7235. width:55px;
  7236. height:30px;
  7237. background:inherit;
  7238. background-color:rgba(255, 255, 255, 1);
  7239. box-sizing:border-box;
  7240. border-width:1px;
  7241. border-style:solid;
  7242. border-color:rgba(170, 170, 170, 1);
  7243. border-radius:4px;
  7244. -moz-box-shadow:none;
  7245. -webkit-box-shadow:none;
  7246. box-shadow:none;
  7247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7248. font-weight:400;
  7249. font-style:normal;
  7250. font-size:12px;
  7251. color:#555555;
  7252. }
  7253. #u16654 {
  7254. border-width:0px;
  7255. position:absolute;
  7256. left:721px;
  7257. top:251px;
  7258. width:55px;
  7259. height:30px;
  7260. display:flex;
  7261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7262. font-weight:400;
  7263. font-style:normal;
  7264. font-size:12px;
  7265. color:#555555;
  7266. }
  7267. #u16654 .text {
  7268. position:absolute;
  7269. align-self:center;
  7270. padding:5px 15px 5px 15px;
  7271. box-sizing:border-box;
  7272. width:100%;
  7273. }
  7274. #u16654_text {
  7275. border-width:0px;
  7276. white-space:nowrap;
  7277. text-transform:none;
  7278. }
  7279. #u16655 {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:0px;
  7283. top:0px;
  7284. width:0px;
  7285. height:0px;
  7286. }
  7287. #u16656_div {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:0px;
  7291. top:0px;
  7292. width:140px;
  7293. height:30px;
  7294. background:inherit;
  7295. background-color:rgba(255, 255, 255, 1);
  7296. box-sizing:border-box;
  7297. border-width:1px;
  7298. border-style:solid;
  7299. border-color:rgba(201, 201, 201, 1);
  7300. border-radius:4px;
  7301. -moz-box-shadow:none;
  7302. -webkit-box-shadow:none;
  7303. box-shadow:none;
  7304. font-family:'Microsoft YaHei', sans-serif;
  7305. font-weight:400;
  7306. font-style:normal;
  7307. font-size:14px;
  7308. color:#CCCCCC;
  7309. text-align:left;
  7310. }
  7311. #u16656 {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:952px;
  7315. top:210px;
  7316. width:140px;
  7317. height:30px;
  7318. display:flex;
  7319. font-family:'Microsoft YaHei', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:14px;
  7323. color:#CCCCCC;
  7324. text-align:left;
  7325. }
  7326. #u16656 .text {
  7327. position:absolute;
  7328. align-self:center;
  7329. padding:2px 8px 2px 8px;
  7330. box-sizing:border-box;
  7331. width:100%;
  7332. }
  7333. #u16656_text {
  7334. border-width:0px;
  7335. word-wrap:break-word;
  7336. text-transform:none;
  7337. visibility:hidden;
  7338. }
  7339. #u16657_input {
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:127px;
  7344. height:25px;
  7345. padding:2px 2px 2px 2px;
  7346. font-family:'Microsoft YaHei', sans-serif;
  7347. font-weight:400;
  7348. font-style:normal;
  7349. font-size:10px;
  7350. letter-spacing:normal;
  7351. color:#000000;
  7352. vertical-align:none;
  7353. text-align:left;
  7354. text-transform:none;
  7355. background-color:transparent;
  7356. border-color:transparent;
  7357. }
  7358. #u16657_input.disabled {
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:127px;
  7363. height:25px;
  7364. padding:2px 2px 2px 2px;
  7365. font-family:'Microsoft YaHei', sans-serif;
  7366. font-weight:400;
  7367. font-style:normal;
  7368. font-size:10px;
  7369. letter-spacing:normal;
  7370. color:#000000;
  7371. vertical-align:none;
  7372. text-align:left;
  7373. text-transform:none;
  7374. background-color:transparent;
  7375. border-color:transparent;
  7376. }
  7377. #u16657_div {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:0px;
  7381. top:0px;
  7382. width:127px;
  7383. height:25px;
  7384. background:inherit;
  7385. background-color:rgba(255, 255, 255, 1);
  7386. border:none;
  7387. border-radius:0px;
  7388. -moz-box-shadow:none;
  7389. -webkit-box-shadow:none;
  7390. box-shadow:none;
  7391. font-family:'Microsoft YaHei', sans-serif;
  7392. font-weight:400;
  7393. font-style:normal;
  7394. font-size:10px;
  7395. }
  7396. #u16657 {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:960px;
  7400. top:211px;
  7401. width:127px;
  7402. height:25px;
  7403. display:flex;
  7404. font-family:'Microsoft YaHei', sans-serif;
  7405. font-weight:400;
  7406. font-style:normal;
  7407. font-size:10px;
  7408. }
  7409. #u16657 .text {
  7410. position:absolute;
  7411. align-self:center;
  7412. padding:2px 2px 2px 2px;
  7413. box-sizing:border-box;
  7414. width:100%;
  7415. }
  7416. #u16657_div.disabled {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:0px;
  7420. top:0px;
  7421. width:127px;
  7422. height:25px;
  7423. background:inherit;
  7424. background-color:rgba(240, 240, 240, 1);
  7425. border:none;
  7426. border-radius:0px;
  7427. -moz-box-shadow:none;
  7428. -webkit-box-shadow:none;
  7429. box-shadow:none;
  7430. font-family:'Microsoft YaHei', sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. font-size:10px;
  7434. }
  7435. #u16657.disabled {
  7436. }
  7437. #u16658 {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:0px;
  7441. top:0px;
  7442. width:0px;
  7443. height:0px;
  7444. }
  7445. #u16659_div {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:0px;
  7449. top:0px;
  7450. width:140px;
  7451. height:30px;
  7452. background:inherit;
  7453. background-color:rgba(255, 255, 255, 1);
  7454. box-sizing:border-box;
  7455. border-width:1px;
  7456. border-style:solid;
  7457. border-color:rgba(215, 215, 215, 1);
  7458. border-radius:4px;
  7459. -moz-box-shadow:none;
  7460. -webkit-box-shadow:none;
  7461. box-shadow:none;
  7462. font-size:11px;
  7463. }
  7464. #u16659 {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:652px;
  7468. top:210px;
  7469. width:140px;
  7470. height:30px;
  7471. display:flex;
  7472. font-size:11px;
  7473. }
  7474. #u16659 .text {
  7475. position:absolute;
  7476. align-self:center;
  7477. padding:2px 2px 2px 2px;
  7478. box-sizing:border-box;
  7479. width:100%;
  7480. }
  7481. #u16659_text {
  7482. border-width:0px;
  7483. word-wrap:break-word;
  7484. text-transform:none;
  7485. visibility:hidden;
  7486. }
  7487. #u16660_input {
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:126px;
  7492. height:23px;
  7493. padding:2px 2px 2px 2px;
  7494. font-family:'ArialMT', 'Arial', sans-serif;
  7495. font-weight:400;
  7496. font-style:normal;
  7497. font-size:11px;
  7498. letter-spacing:normal;
  7499. color:#AAAAAA;
  7500. vertical-align:none;
  7501. text-align:left;
  7502. text-transform:none;
  7503. background-color:transparent;
  7504. border-color:transparent;
  7505. }
  7506. #u16660_input.disabled {
  7507. position:absolute;
  7508. left:0px;
  7509. top:0px;
  7510. width:126px;
  7511. height:23px;
  7512. padding:2px 2px 2px 2px;
  7513. font-family:'ArialMT', 'Arial', sans-serif;
  7514. font-weight:400;
  7515. font-style:normal;
  7516. font-size:11px;
  7517. letter-spacing:normal;
  7518. color:#AAAAAA;
  7519. vertical-align:none;
  7520. text-align:left;
  7521. text-transform:none;
  7522. background-color:transparent;
  7523. border-color:transparent;
  7524. }
  7525. #u16660_div {
  7526. border-width:0px;
  7527. position:absolute;
  7528. left:0px;
  7529. top:0px;
  7530. width:126px;
  7531. height:23px;
  7532. background:inherit;
  7533. background-color:rgba(255, 255, 255, 1);
  7534. border:none;
  7535. border-radius:0px;
  7536. -moz-box-shadow:none;
  7537. -webkit-box-shadow:none;
  7538. box-shadow:none;
  7539. font-size:11px;
  7540. color:#AAAAAA;
  7541. }
  7542. #u16660 {
  7543. border-width:0px;
  7544. position:absolute;
  7545. left:659px;
  7546. top:212px;
  7547. width:126px;
  7548. height:23px;
  7549. display:flex;
  7550. font-size:11px;
  7551. color:#AAAAAA;
  7552. }
  7553. #u16660 .text {
  7554. position:absolute;
  7555. align-self:flex-start;
  7556. padding:2px 2px 2px 2px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u16660_div.disabled {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:0px;
  7564. top:0px;
  7565. width:126px;
  7566. height:23px;
  7567. background:inherit;
  7568. background-color:rgba(240, 240, 240, 1);
  7569. border:none;
  7570. border-radius:0px;
  7571. -moz-box-shadow:none;
  7572. -webkit-box-shadow:none;
  7573. box-shadow:none;
  7574. font-size:11px;
  7575. color:#AAAAAA;
  7576. }
  7577. #u16660.disabled {
  7578. }
  7579. .u16660_input_option {
  7580. font-size:11px;
  7581. }
  7582. #u16661 {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:0px;
  7586. top:0px;
  7587. width:0px;
  7588. height:0px;
  7589. }
  7590. #u16662_div {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:0px;
  7594. top:0px;
  7595. width:140px;
  7596. height:30px;
  7597. background:inherit;
  7598. background-color:rgba(255, 255, 255, 1);
  7599. box-sizing:border-box;
  7600. border-width:1px;
  7601. border-style:solid;
  7602. border-color:rgba(215, 215, 215, 1);
  7603. border-radius:4px;
  7604. -moz-box-shadow:none;
  7605. -webkit-box-shadow:none;
  7606. box-shadow:none;
  7607. font-size:11px;
  7608. }
  7609. #u16662 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:502px;
  7613. top:252px;
  7614. width:140px;
  7615. height:30px;
  7616. display:flex;
  7617. font-size:11px;
  7618. }
  7619. #u16662 .text {
  7620. position:absolute;
  7621. align-self:center;
  7622. padding:2px 2px 2px 2px;
  7623. box-sizing:border-box;
  7624. width:100%;
  7625. }
  7626. #u16662_text {
  7627. border-width:0px;
  7628. word-wrap:break-word;
  7629. text-transform:none;
  7630. visibility:hidden;
  7631. }
  7632. #u16663_input {
  7633. position:absolute;
  7634. left:0px;
  7635. top:0px;
  7636. width:126px;
  7637. height:23px;
  7638. padding:2px 2px 2px 2px;
  7639. font-family:'ArialMT', 'Arial', sans-serif;
  7640. font-weight:400;
  7641. font-style:normal;
  7642. font-size:11px;
  7643. letter-spacing:normal;
  7644. color:#AAAAAA;
  7645. vertical-align:none;
  7646. text-align:left;
  7647. text-transform:none;
  7648. background-color:transparent;
  7649. border-color:transparent;
  7650. }
  7651. #u16663_input.disabled {
  7652. position:absolute;
  7653. left:0px;
  7654. top:0px;
  7655. width:126px;
  7656. height:23px;
  7657. padding:2px 2px 2px 2px;
  7658. font-family:'ArialMT', 'Arial', sans-serif;
  7659. font-weight:400;
  7660. font-style:normal;
  7661. font-size:11px;
  7662. letter-spacing:normal;
  7663. color:#AAAAAA;
  7664. vertical-align:none;
  7665. text-align:left;
  7666. text-transform:none;
  7667. background-color:transparent;
  7668. border-color:transparent;
  7669. }
  7670. #u16663_div {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:0px;
  7674. top:0px;
  7675. width:126px;
  7676. height:23px;
  7677. background:inherit;
  7678. background-color:rgba(255, 255, 255, 1);
  7679. border:none;
  7680. border-radius:0px;
  7681. -moz-box-shadow:none;
  7682. -webkit-box-shadow:none;
  7683. box-shadow:none;
  7684. font-size:11px;
  7685. color:#AAAAAA;
  7686. }
  7687. #u16663 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:509px;
  7691. top:254px;
  7692. width:126px;
  7693. height:23px;
  7694. display:flex;
  7695. font-size:11px;
  7696. color:#AAAAAA;
  7697. }
  7698. #u16663 .text {
  7699. position:absolute;
  7700. align-self:flex-start;
  7701. padding:2px 2px 2px 2px;
  7702. box-sizing:border-box;
  7703. width:100%;
  7704. }
  7705. #u16663_div.disabled {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:0px;
  7709. top:0px;
  7710. width:126px;
  7711. height:23px;
  7712. background:inherit;
  7713. background-color:rgba(240, 240, 240, 1);
  7714. border:none;
  7715. border-radius:0px;
  7716. -moz-box-shadow:none;
  7717. -webkit-box-shadow:none;
  7718. box-shadow:none;
  7719. font-size:11px;
  7720. color:#AAAAAA;
  7721. }
  7722. #u16663.disabled {
  7723. }
  7724. .u16663_input_option {
  7725. font-size:11px;
  7726. }
  7727. #u16664_div {
  7728. border-width:0px;
  7729. position:absolute;
  7730. left:0px;
  7731. top:0px;
  7732. width:43px;
  7733. height:50px;
  7734. background:inherit;
  7735. background-color:rgba(255, 255, 255, 0);
  7736. box-sizing:border-box;
  7737. border-width:2px;
  7738. border-style:solid;
  7739. border-color:rgba(24, 144, 255, 1);
  7740. border-left:0px;
  7741. border-top:0px;
  7742. border-right:0px;
  7743. border-radius:0px;
  7744. border-bottom-right-radius:0px;
  7745. border-bottom-left-radius:0px;
  7746. -moz-box-shadow:none;
  7747. -webkit-box-shadow:none;
  7748. box-shadow:none;
  7749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7750. font-weight:400;
  7751. font-style:normal;
  7752. font-size:14px;
  7753. color:#1890FF;
  7754. }
  7755. #u16664 {
  7756. border-width:0px;
  7757. position:absolute;
  7758. left:352px;
  7759. top:130px;
  7760. width:43px;
  7761. height:50px;
  7762. display:flex;
  7763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7764. font-weight:400;
  7765. font-style:normal;
  7766. font-size:14px;
  7767. color:#1890FF;
  7768. }
  7769. #u16664 .text {
  7770. position:absolute;
  7771. align-self:center;
  7772. padding:0px 0px 0px 0px;
  7773. box-sizing:border-box;
  7774. width:100%;
  7775. }
  7776. #u16664_text {
  7777. border-width:0px;
  7778. white-space:nowrap;
  7779. text-transform:none;
  7780. }
  7781. #u16665_div {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:0px;
  7785. top:0px;
  7786. width:43px;
  7787. height:50px;
  7788. background:inherit;
  7789. background-color:rgba(255, 255, 255, 0);
  7790. border:none;
  7791. border-left:0px;
  7792. border-top:0px;
  7793. border-right:0px;
  7794. border-radius:0px;
  7795. border-bottom-right-radius:0px;
  7796. border-bottom-left-radius:0px;
  7797. -moz-box-shadow:none;
  7798. -webkit-box-shadow:none;
  7799. box-shadow:none;
  7800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7801. font-weight:400;
  7802. font-style:normal;
  7803. font-size:14px;
  7804. }
  7805. #u16665 {
  7806. border-width:0px;
  7807. position:absolute;
  7808. left:425px;
  7809. top:130px;
  7810. width:43px;
  7811. height:50px;
  7812. display:flex;
  7813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7814. font-weight:400;
  7815. font-style:normal;
  7816. font-size:14px;
  7817. }
  7818. #u16665 .text {
  7819. position:absolute;
  7820. align-self:center;
  7821. padding:0px 0px 0px 0px;
  7822. box-sizing:border-box;
  7823. width:100%;
  7824. }
  7825. #u16665_text {
  7826. border-width:0px;
  7827. white-space:nowrap;
  7828. text-transform:none;
  7829. }
  7830. #u16666_div {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:0px;
  7834. top:0px;
  7835. width:43px;
  7836. height:50px;
  7837. background:inherit;
  7838. background-color:rgba(255, 255, 255, 0);
  7839. border:none;
  7840. border-left:0px;
  7841. border-top:0px;
  7842. border-right:0px;
  7843. border-radius:0px;
  7844. border-bottom-right-radius:0px;
  7845. border-bottom-left-radius:0px;
  7846. -moz-box-shadow:none;
  7847. -webkit-box-shadow:none;
  7848. box-shadow:none;
  7849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7850. font-weight:400;
  7851. font-style:normal;
  7852. font-size:14px;
  7853. }
  7854. #u16666 {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:498px;
  7858. top:130px;
  7859. width:43px;
  7860. height:50px;
  7861. display:flex;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:14px;
  7866. }
  7867. #u16666 .text {
  7868. position:absolute;
  7869. align-self:center;
  7870. padding:0px 0px 0px 0px;
  7871. box-sizing:border-box;
  7872. width:100%;
  7873. }
  7874. #u16666_text {
  7875. border-width:0px;
  7876. white-space:nowrap;
  7877. text-transform:none;
  7878. }
  7879. #u16667_div {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:0px;
  7883. top:0px;
  7884. width:59px;
  7885. height:30px;
  7886. background:inherit;
  7887. background-color:rgba(24, 144, 255, 1);
  7888. border:none;
  7889. border-radius:4px;
  7890. -moz-box-shadow:none;
  7891. -webkit-box-shadow:none;
  7892. box-shadow:none;
  7893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7894. font-weight:400;
  7895. font-style:normal;
  7896. font-size:14px;
  7897. color:#FFFFFF;
  7898. }
  7899. #u16667 {
  7900. border-width:0px;
  7901. position:absolute;
  7902. left:359px;
  7903. top:298px;
  7904. width:59px;
  7905. height:30px;
  7906. display:flex;
  7907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7908. font-weight:400;
  7909. font-style:normal;
  7910. font-size:14px;
  7911. color:#FFFFFF;
  7912. }
  7913. #u16667 .text {
  7914. position:absolute;
  7915. align-self:center;
  7916. padding:5px 15px 5px 15px;
  7917. box-sizing:border-box;
  7918. width:100%;
  7919. }
  7920. #u16667_text {
  7921. border-width:0px;
  7922. white-space:nowrap;
  7923. text-transform:none;
  7924. }
  7925. #u16668_div {
  7926. border-width:0px;
  7927. position:absolute;
  7928. left:0px;
  7929. top:0px;
  7930. width:59px;
  7931. height:30px;
  7932. background:inherit;
  7933. background-color:rgba(255, 255, 255, 1);
  7934. box-sizing:border-box;
  7935. border-width:1px;
  7936. border-style:solid;
  7937. border-color:rgba(170, 170, 170, 1);
  7938. border-radius:4px;
  7939. -moz-box-shadow:none;
  7940. -webkit-box-shadow:none;
  7941. box-shadow:none;
  7942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7943. font-weight:400;
  7944. font-style:normal;
  7945. font-size:14px;
  7946. color:#555555;
  7947. }
  7948. #u16668 {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:497px;
  7952. top:298px;
  7953. width:59px;
  7954. height:30px;
  7955. display:flex;
  7956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7957. font-weight:400;
  7958. font-style:normal;
  7959. font-size:14px;
  7960. color:#555555;
  7961. }
  7962. #u16668 .text {
  7963. position:absolute;
  7964. align-self:center;
  7965. padding:5px 15px 5px 15px;
  7966. box-sizing:border-box;
  7967. width:100%;
  7968. }
  7969. #u16668_text {
  7970. border-width:0px;
  7971. white-space:nowrap;
  7972. text-transform:none;
  7973. }
  7974. #u16669 {
  7975. border-width:0px;
  7976. position:absolute;
  7977. left:0px;
  7978. top:0px;
  7979. width:0px;
  7980. height:0px;
  7981. }
  7982. #u16670_div {
  7983. border-width:0px;
  7984. position:absolute;
  7985. left:0px;
  7986. top:0px;
  7987. width:140px;
  7988. height:30px;
  7989. background:inherit;
  7990. background-color:rgba(255, 255, 255, 1);
  7991. box-sizing:border-box;
  7992. border-width:1px;
  7993. border-style:solid;
  7994. border-color:rgba(201, 201, 201, 1);
  7995. border-radius:4px;
  7996. -moz-box-shadow:none;
  7997. -webkit-box-shadow:none;
  7998. box-shadow:none;
  7999. font-family:'Microsoft YaHei', sans-serif;
  8000. font-weight:400;
  8001. font-style:normal;
  8002. font-size:14px;
  8003. color:#CCCCCC;
  8004. text-align:left;
  8005. }
  8006. #u16670 {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:1102px;
  8010. top:210px;
  8011. width:140px;
  8012. height:30px;
  8013. display:flex;
  8014. font-family:'Microsoft YaHei', sans-serif;
  8015. font-weight:400;
  8016. font-style:normal;
  8017. font-size:14px;
  8018. color:#CCCCCC;
  8019. text-align:left;
  8020. }
  8021. #u16670 .text {
  8022. position:absolute;
  8023. align-self:center;
  8024. padding:2px 8px 2px 8px;
  8025. box-sizing:border-box;
  8026. width:100%;
  8027. }
  8028. #u16670_text {
  8029. border-width:0px;
  8030. word-wrap:break-word;
  8031. text-transform:none;
  8032. visibility:hidden;
  8033. }
  8034. #u16671_input {
  8035. position:absolute;
  8036. left:0px;
  8037. top:0px;
  8038. width:127px;
  8039. height:25px;
  8040. padding:2px 2px 2px 2px;
  8041. font-family:'Microsoft YaHei', sans-serif;
  8042. font-weight:400;
  8043. font-style:normal;
  8044. font-size:10px;
  8045. letter-spacing:normal;
  8046. color:#000000;
  8047. vertical-align:none;
  8048. text-align:left;
  8049. text-transform:none;
  8050. background-color:transparent;
  8051. border-color:transparent;
  8052. }
  8053. #u16671_input.disabled {
  8054. position:absolute;
  8055. left:0px;
  8056. top:0px;
  8057. width:127px;
  8058. height:25px;
  8059. padding:2px 2px 2px 2px;
  8060. font-family:'Microsoft YaHei', sans-serif;
  8061. font-weight:400;
  8062. font-style:normal;
  8063. font-size:10px;
  8064. letter-spacing:normal;
  8065. color:#000000;
  8066. vertical-align:none;
  8067. text-align:left;
  8068. text-transform:none;
  8069. background-color:transparent;
  8070. border-color:transparent;
  8071. }
  8072. #u16671_div {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:0px;
  8076. top:0px;
  8077. width:127px;
  8078. height:25px;
  8079. background:inherit;
  8080. background-color:rgba(255, 255, 255, 1);
  8081. border:none;
  8082. border-radius:0px;
  8083. -moz-box-shadow:none;
  8084. -webkit-box-shadow:none;
  8085. box-shadow:none;
  8086. font-family:'Microsoft YaHei', sans-serif;
  8087. font-weight:400;
  8088. font-style:normal;
  8089. font-size:10px;
  8090. }
  8091. #u16671 {
  8092. border-width:0px;
  8093. position:absolute;
  8094. left:1110px;
  8095. top:211px;
  8096. width:127px;
  8097. height:25px;
  8098. display:flex;
  8099. font-family:'Microsoft YaHei', sans-serif;
  8100. font-weight:400;
  8101. font-style:normal;
  8102. font-size:10px;
  8103. }
  8104. #u16671 .text {
  8105. position:absolute;
  8106. align-self:center;
  8107. padding:2px 2px 2px 2px;
  8108. box-sizing:border-box;
  8109. width:100%;
  8110. }
  8111. #u16671_div.disabled {
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:0px;
  8115. top:0px;
  8116. width:127px;
  8117. height:25px;
  8118. background:inherit;
  8119. background-color:rgba(240, 240, 240, 1);
  8120. border:none;
  8121. border-radius:0px;
  8122. -moz-box-shadow:none;
  8123. -webkit-box-shadow:none;
  8124. box-shadow:none;
  8125. font-family:'Microsoft YaHei', sans-serif;
  8126. font-weight:400;
  8127. font-style:normal;
  8128. font-size:10px;
  8129. }
  8130. #u16671.disabled {
  8131. }
  8132. #u16672 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:0px;
  8138. height:0px;
  8139. }
  8140. #u16673_div {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:0px;
  8144. top:0px;
  8145. width:140px;
  8146. height:30px;
  8147. background:inherit;
  8148. background-color:rgba(255, 255, 255, 1);
  8149. box-sizing:border-box;
  8150. border-width:1px;
  8151. border-style:solid;
  8152. border-color:rgba(201, 201, 201, 1);
  8153. border-radius:4px;
  8154. -moz-box-shadow:none;
  8155. -webkit-box-shadow:none;
  8156. box-shadow:none;
  8157. font-family:'Microsoft YaHei', sans-serif;
  8158. font-weight:400;
  8159. font-style:normal;
  8160. font-size:14px;
  8161. color:#CCCCCC;
  8162. text-align:left;
  8163. }
  8164. #u16673 {
  8165. border-width:0px;
  8166. position:absolute;
  8167. left:1252px;
  8168. top:210px;
  8169. width:140px;
  8170. height:30px;
  8171. display:flex;
  8172. font-family:'Microsoft YaHei', sans-serif;
  8173. font-weight:400;
  8174. font-style:normal;
  8175. font-size:14px;
  8176. color:#CCCCCC;
  8177. text-align:left;
  8178. }
  8179. #u16673 .text {
  8180. position:absolute;
  8181. align-self:center;
  8182. padding:2px 8px 2px 8px;
  8183. box-sizing:border-box;
  8184. width:100%;
  8185. }
  8186. #u16673_text {
  8187. border-width:0px;
  8188. word-wrap:break-word;
  8189. text-transform:none;
  8190. visibility:hidden;
  8191. }
  8192. #u16674_input {
  8193. position:absolute;
  8194. left:0px;
  8195. top:0px;
  8196. width:127px;
  8197. height:25px;
  8198. padding:2px 2px 2px 2px;
  8199. font-family:'Microsoft YaHei', sans-serif;
  8200. font-weight:400;
  8201. font-style:normal;
  8202. font-size:10px;
  8203. letter-spacing:normal;
  8204. color:#000000;
  8205. vertical-align:none;
  8206. text-align:left;
  8207. text-transform:none;
  8208. background-color:transparent;
  8209. border-color:transparent;
  8210. }
  8211. #u16674_input.disabled {
  8212. position:absolute;
  8213. left:0px;
  8214. top:0px;
  8215. width:127px;
  8216. height:25px;
  8217. padding:2px 2px 2px 2px;
  8218. font-family:'Microsoft YaHei', sans-serif;
  8219. font-weight:400;
  8220. font-style:normal;
  8221. font-size:10px;
  8222. letter-spacing:normal;
  8223. color:#000000;
  8224. vertical-align:none;
  8225. text-align:left;
  8226. text-transform:none;
  8227. background-color:transparent;
  8228. border-color:transparent;
  8229. }
  8230. #u16674_div {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:0px;
  8234. top:0px;
  8235. width:127px;
  8236. height:25px;
  8237. background:inherit;
  8238. background-color:rgba(255, 255, 255, 1);
  8239. border:none;
  8240. border-radius:0px;
  8241. -moz-box-shadow:none;
  8242. -webkit-box-shadow:none;
  8243. box-shadow:none;
  8244. font-family:'Microsoft YaHei', sans-serif;
  8245. font-weight:400;
  8246. font-style:normal;
  8247. font-size:10px;
  8248. }
  8249. #u16674 {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:1260px;
  8253. top:211px;
  8254. width:127px;
  8255. height:25px;
  8256. display:flex;
  8257. font-family:'Microsoft YaHei', sans-serif;
  8258. font-weight:400;
  8259. font-style:normal;
  8260. font-size:10px;
  8261. }
  8262. #u16674 .text {
  8263. position:absolute;
  8264. align-self:center;
  8265. padding:2px 2px 2px 2px;
  8266. box-sizing:border-box;
  8267. width:100%;
  8268. }
  8269. #u16674_div.disabled {
  8270. border-width:0px;
  8271. position:absolute;
  8272. left:0px;
  8273. top:0px;
  8274. width:127px;
  8275. height:25px;
  8276. background:inherit;
  8277. background-color:rgba(240, 240, 240, 1);
  8278. border:none;
  8279. border-radius:0px;
  8280. -moz-box-shadow:none;
  8281. -webkit-box-shadow:none;
  8282. box-shadow:none;
  8283. font-family:'Microsoft YaHei', sans-serif;
  8284. font-weight:400;
  8285. font-style:normal;
  8286. font-size:10px;
  8287. }
  8288. #u16674.disabled {
  8289. }
  8290. #u16675 {
  8291. border-width:0px;
  8292. position:absolute;
  8293. left:0px;
  8294. top:0px;
  8295. width:0px;
  8296. height:0px;
  8297. }
  8298. #u16676_div {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:0px;
  8302. top:0px;
  8303. width:140px;
  8304. height:30px;
  8305. background:inherit;
  8306. background-color:rgba(255, 255, 255, 1);
  8307. box-sizing:border-box;
  8308. border-width:1px;
  8309. border-style:solid;
  8310. border-color:rgba(215, 215, 215, 1);
  8311. border-radius:4px;
  8312. -moz-box-shadow:none;
  8313. -webkit-box-shadow:none;
  8314. box-shadow:none;
  8315. font-size:11px;
  8316. }
  8317. #u16676 {
  8318. border-width:0px;
  8319. position:absolute;
  8320. left:1402px;
  8321. top:210px;
  8322. width:140px;
  8323. height:30px;
  8324. display:flex;
  8325. font-size:11px;
  8326. }
  8327. #u16676 .text {
  8328. position:absolute;
  8329. align-self:center;
  8330. padding:2px 2px 2px 2px;
  8331. box-sizing:border-box;
  8332. width:100%;
  8333. }
  8334. #u16676_text {
  8335. border-width:0px;
  8336. word-wrap:break-word;
  8337. text-transform:none;
  8338. visibility:hidden;
  8339. }
  8340. #u16677_input {
  8341. position:absolute;
  8342. left:0px;
  8343. top:0px;
  8344. width:126px;
  8345. height:23px;
  8346. padding:2px 2px 2px 2px;
  8347. font-family:'ArialMT', 'Arial', sans-serif;
  8348. font-weight:400;
  8349. font-style:normal;
  8350. font-size:11px;
  8351. letter-spacing:normal;
  8352. color:#AAAAAA;
  8353. vertical-align:none;
  8354. text-align:left;
  8355. text-transform:none;
  8356. background-color:transparent;
  8357. border-color:transparent;
  8358. }
  8359. #u16677_input.disabled {
  8360. position:absolute;
  8361. left:0px;
  8362. top:0px;
  8363. width:126px;
  8364. height:23px;
  8365. padding:2px 2px 2px 2px;
  8366. font-family:'ArialMT', 'Arial', sans-serif;
  8367. font-weight:400;
  8368. font-style:normal;
  8369. font-size:11px;
  8370. letter-spacing:normal;
  8371. color:#AAAAAA;
  8372. vertical-align:none;
  8373. text-align:left;
  8374. text-transform:none;
  8375. background-color:transparent;
  8376. border-color:transparent;
  8377. }
  8378. #u16677_div {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:0px;
  8382. top:0px;
  8383. width:126px;
  8384. height:23px;
  8385. background:inherit;
  8386. background-color:rgba(255, 255, 255, 1);
  8387. border:none;
  8388. border-radius:0px;
  8389. -moz-box-shadow:none;
  8390. -webkit-box-shadow:none;
  8391. box-shadow:none;
  8392. font-size:11px;
  8393. color:#AAAAAA;
  8394. }
  8395. #u16677 {
  8396. border-width:0px;
  8397. position:absolute;
  8398. left:1409px;
  8399. top:212px;
  8400. width:126px;
  8401. height:23px;
  8402. display:flex;
  8403. font-size:11px;
  8404. color:#AAAAAA;
  8405. }
  8406. #u16677 .text {
  8407. position:absolute;
  8408. align-self:flex-start;
  8409. padding:2px 2px 2px 2px;
  8410. box-sizing:border-box;
  8411. width:100%;
  8412. }
  8413. #u16677_div.disabled {
  8414. border-width:0px;
  8415. position:absolute;
  8416. left:0px;
  8417. top:0px;
  8418. width:126px;
  8419. height:23px;
  8420. background:inherit;
  8421. background-color:rgba(240, 240, 240, 1);
  8422. border:none;
  8423. border-radius:0px;
  8424. -moz-box-shadow:none;
  8425. -webkit-box-shadow:none;
  8426. box-shadow:none;
  8427. font-size:11px;
  8428. color:#AAAAAA;
  8429. }
  8430. #u16677.disabled {
  8431. }
  8432. .u16677_input_option {
  8433. font-size:11px;
  8434. }
  8435. #u16678 {
  8436. border-width:0px;
  8437. position:absolute;
  8438. left:0px;
  8439. top:0px;
  8440. width:0px;
  8441. height:0px;
  8442. }
  8443. #u16679_div {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:0px;
  8447. top:0px;
  8448. width:140px;
  8449. height:30px;
  8450. background:inherit;
  8451. background-color:rgba(255, 255, 255, 1);
  8452. box-sizing:border-box;
  8453. border-width:1px;
  8454. border-style:solid;
  8455. border-color:rgba(215, 215, 215, 1);
  8456. border-radius:4px;
  8457. -moz-box-shadow:none;
  8458. -webkit-box-shadow:none;
  8459. box-shadow:none;
  8460. font-size:11px;
  8461. }
  8462. #u16679 {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:352px;
  8466. top:251px;
  8467. width:140px;
  8468. height:30px;
  8469. display:flex;
  8470. font-size:11px;
  8471. }
  8472. #u16679 .text {
  8473. position:absolute;
  8474. align-self:center;
  8475. padding:2px 2px 2px 2px;
  8476. box-sizing:border-box;
  8477. width:100%;
  8478. }
  8479. #u16679_text {
  8480. border-width:0px;
  8481. word-wrap:break-word;
  8482. text-transform:none;
  8483. visibility:hidden;
  8484. }
  8485. #u16680_input {
  8486. position:absolute;
  8487. left:0px;
  8488. top:0px;
  8489. width:126px;
  8490. height:23px;
  8491. padding:2px 2px 2px 2px;
  8492. font-family:'ArialMT', 'Arial', sans-serif;
  8493. font-weight:400;
  8494. font-style:normal;
  8495. font-size:11px;
  8496. letter-spacing:normal;
  8497. color:#AAAAAA;
  8498. vertical-align:none;
  8499. text-align:left;
  8500. text-transform:none;
  8501. background-color:transparent;
  8502. border-color:transparent;
  8503. }
  8504. #u16680_input.disabled {
  8505. position:absolute;
  8506. left:0px;
  8507. top:0px;
  8508. width:126px;
  8509. height:23px;
  8510. padding:2px 2px 2px 2px;
  8511. font-family:'ArialMT', 'Arial', sans-serif;
  8512. font-weight:400;
  8513. font-style:normal;
  8514. font-size:11px;
  8515. letter-spacing:normal;
  8516. color:#AAAAAA;
  8517. vertical-align:none;
  8518. text-align:left;
  8519. text-transform:none;
  8520. background-color:transparent;
  8521. border-color:transparent;
  8522. }
  8523. #u16680_div {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:0px;
  8527. top:0px;
  8528. width:126px;
  8529. height:23px;
  8530. background:inherit;
  8531. background-color:rgba(255, 255, 255, 1);
  8532. border:none;
  8533. border-radius:0px;
  8534. -moz-box-shadow:none;
  8535. -webkit-box-shadow:none;
  8536. box-shadow:none;
  8537. font-size:11px;
  8538. color:#AAAAAA;
  8539. }
  8540. #u16680 {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:359px;
  8544. top:253px;
  8545. width:126px;
  8546. height:23px;
  8547. display:flex;
  8548. font-size:11px;
  8549. color:#AAAAAA;
  8550. }
  8551. #u16680 .text {
  8552. position:absolute;
  8553. align-self:flex-start;
  8554. padding:2px 2px 2px 2px;
  8555. box-sizing:border-box;
  8556. width:100%;
  8557. }
  8558. #u16680_div.disabled {
  8559. border-width:0px;
  8560. position:absolute;
  8561. left:0px;
  8562. top:0px;
  8563. width:126px;
  8564. height:23px;
  8565. background:inherit;
  8566. background-color:rgba(240, 240, 240, 1);
  8567. border:none;
  8568. border-radius:0px;
  8569. -moz-box-shadow:none;
  8570. -webkit-box-shadow:none;
  8571. box-shadow:none;
  8572. font-size:11px;
  8573. color:#AAAAAA;
  8574. }
  8575. #u16680.disabled {
  8576. }
  8577. .u16680_input_option {
  8578. font-size:11px;
  8579. }
  8580. #u16681 {
  8581. border-width:0px;
  8582. position:absolute;
  8583. left:0px;
  8584. top:0px;
  8585. width:0px;
  8586. height:0px;
  8587. }
  8588. #u16682_div {
  8589. border-width:0px;
  8590. position:absolute;
  8591. left:0px;
  8592. top:0px;
  8593. width:140px;
  8594. height:30px;
  8595. background:inherit;
  8596. background-color:rgba(255, 255, 255, 1);
  8597. box-sizing:border-box;
  8598. border-width:1px;
  8599. border-style:solid;
  8600. border-color:rgba(215, 215, 215, 1);
  8601. border-radius:4px;
  8602. -moz-box-shadow:none;
  8603. -webkit-box-shadow:none;
  8604. box-shadow:none;
  8605. font-size:11px;
  8606. }
  8607. #u16682 {
  8608. border-width:0px;
  8609. position:absolute;
  8610. left:352px;
  8611. top:210px;
  8612. width:140px;
  8613. height:30px;
  8614. display:flex;
  8615. font-size:11px;
  8616. }
  8617. #u16682 .text {
  8618. position:absolute;
  8619. align-self:center;
  8620. padding:2px 2px 2px 2px;
  8621. box-sizing:border-box;
  8622. width:100%;
  8623. }
  8624. #u16682_text {
  8625. border-width:0px;
  8626. word-wrap:break-word;
  8627. text-transform:none;
  8628. visibility:hidden;
  8629. }
  8630. #u16683_input {
  8631. position:absolute;
  8632. left:0px;
  8633. top:0px;
  8634. width:126px;
  8635. height:23px;
  8636. padding:2px 2px 2px 2px;
  8637. font-family:'ArialMT', 'Arial', sans-serif;
  8638. font-weight:400;
  8639. font-style:normal;
  8640. font-size:11px;
  8641. letter-spacing:normal;
  8642. color:#AAAAAA;
  8643. vertical-align:none;
  8644. text-align:left;
  8645. text-transform:none;
  8646. background-color:transparent;
  8647. border-color:transparent;
  8648. }
  8649. #u16683_input.disabled {
  8650. position:absolute;
  8651. left:0px;
  8652. top:0px;
  8653. width:126px;
  8654. height:23px;
  8655. padding:2px 2px 2px 2px;
  8656. font-family:'ArialMT', 'Arial', sans-serif;
  8657. font-weight:400;
  8658. font-style:normal;
  8659. font-size:11px;
  8660. letter-spacing:normal;
  8661. color:#AAAAAA;
  8662. vertical-align:none;
  8663. text-align:left;
  8664. text-transform:none;
  8665. background-color:transparent;
  8666. border-color:transparent;
  8667. }
  8668. #u16683_div {
  8669. border-width:0px;
  8670. position:absolute;
  8671. left:0px;
  8672. top:0px;
  8673. width:126px;
  8674. height:23px;
  8675. background:inherit;
  8676. background-color:rgba(255, 255, 255, 1);
  8677. border:none;
  8678. border-radius:0px;
  8679. -moz-box-shadow:none;
  8680. -webkit-box-shadow:none;
  8681. box-shadow:none;
  8682. font-size:11px;
  8683. color:#AAAAAA;
  8684. }
  8685. #u16683 {
  8686. border-width:0px;
  8687. position:absolute;
  8688. left:359px;
  8689. top:212px;
  8690. width:126px;
  8691. height:23px;
  8692. display:flex;
  8693. font-size:11px;
  8694. color:#AAAAAA;
  8695. }
  8696. #u16683 .text {
  8697. position:absolute;
  8698. align-self:flex-start;
  8699. padding:2px 2px 2px 2px;
  8700. box-sizing:border-box;
  8701. width:100%;
  8702. }
  8703. #u16683_div.disabled {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:0px;
  8707. top:0px;
  8708. width:126px;
  8709. height:23px;
  8710. background:inherit;
  8711. background-color:rgba(240, 240, 240, 1);
  8712. border:none;
  8713. border-radius:0px;
  8714. -moz-box-shadow:none;
  8715. -webkit-box-shadow:none;
  8716. box-shadow:none;
  8717. font-size:11px;
  8718. color:#AAAAAA;
  8719. }
  8720. #u16683.disabled {
  8721. }
  8722. .u16683_input_option {
  8723. font-size:11px;
  8724. }
  8725. #u16684 {
  8726. border-width:0px;
  8727. position:absolute;
  8728. left:0px;
  8729. top:0px;
  8730. width:0px;
  8731. height:0px;
  8732. }
  8733. #u16685_div {
  8734. border-width:0px;
  8735. position:absolute;
  8736. left:0px;
  8737. top:0px;
  8738. width:140px;
  8739. height:30px;
  8740. background:inherit;
  8741. background-color:rgba(255, 255, 255, 1);
  8742. box-sizing:border-box;
  8743. border-width:1px;
  8744. border-style:solid;
  8745. border-color:rgba(215, 215, 215, 1);
  8746. border-radius:4px;
  8747. -moz-box-shadow:none;
  8748. -webkit-box-shadow:none;
  8749. box-shadow:none;
  8750. font-size:11px;
  8751. }
  8752. #u16685 {
  8753. border-width:0px;
  8754. position:absolute;
  8755. left:800px;
  8756. top:210px;
  8757. width:140px;
  8758. height:30px;
  8759. display:flex;
  8760. font-size:11px;
  8761. }
  8762. #u16685 .text {
  8763. position:absolute;
  8764. align-self:center;
  8765. padding:2px 2px 2px 2px;
  8766. box-sizing:border-box;
  8767. width:100%;
  8768. }
  8769. #u16685_text {
  8770. border-width:0px;
  8771. word-wrap:break-word;
  8772. text-transform:none;
  8773. visibility:hidden;
  8774. }
  8775. #u16686_input {
  8776. position:absolute;
  8777. left:0px;
  8778. top:0px;
  8779. width:126px;
  8780. height:23px;
  8781. padding:2px 2px 2px 2px;
  8782. font-family:'ArialMT', 'Arial', sans-serif;
  8783. font-weight:400;
  8784. font-style:normal;
  8785. font-size:11px;
  8786. letter-spacing:normal;
  8787. color:#AAAAAA;
  8788. vertical-align:none;
  8789. text-align:left;
  8790. text-transform:none;
  8791. background-color:transparent;
  8792. border-color:transparent;
  8793. }
  8794. #u16686_input.disabled {
  8795. position:absolute;
  8796. left:0px;
  8797. top:0px;
  8798. width:126px;
  8799. height:23px;
  8800. padding:2px 2px 2px 2px;
  8801. font-family:'ArialMT', 'Arial', sans-serif;
  8802. font-weight:400;
  8803. font-style:normal;
  8804. font-size:11px;
  8805. letter-spacing:normal;
  8806. color:#AAAAAA;
  8807. vertical-align:none;
  8808. text-align:left;
  8809. text-transform:none;
  8810. background-color:transparent;
  8811. border-color:transparent;
  8812. }
  8813. #u16686_div {
  8814. border-width:0px;
  8815. position:absolute;
  8816. left:0px;
  8817. top:0px;
  8818. width:126px;
  8819. height:23px;
  8820. background:inherit;
  8821. background-color:rgba(255, 255, 255, 1);
  8822. border:none;
  8823. border-radius:0px;
  8824. -moz-box-shadow:none;
  8825. -webkit-box-shadow:none;
  8826. box-shadow:none;
  8827. font-size:11px;
  8828. color:#AAAAAA;
  8829. }
  8830. #u16686 {
  8831. border-width:0px;
  8832. position:absolute;
  8833. left:807px;
  8834. top:212px;
  8835. width:126px;
  8836. height:23px;
  8837. display:flex;
  8838. font-size:11px;
  8839. color:#AAAAAA;
  8840. }
  8841. #u16686 .text {
  8842. position:absolute;
  8843. align-self:flex-start;
  8844. padding:2px 2px 2px 2px;
  8845. box-sizing:border-box;
  8846. width:100%;
  8847. }
  8848. #u16686_div.disabled {
  8849. border-width:0px;
  8850. position:absolute;
  8851. left:0px;
  8852. top:0px;
  8853. width:126px;
  8854. height:23px;
  8855. background:inherit;
  8856. background-color:rgba(240, 240, 240, 1);
  8857. border:none;
  8858. border-radius:0px;
  8859. -moz-box-shadow:none;
  8860. -webkit-box-shadow:none;
  8861. box-shadow:none;
  8862. font-size:11px;
  8863. color:#AAAAAA;
  8864. }
  8865. #u16686.disabled {
  8866. }
  8867. .u16686_input_option {
  8868. font-size:11px;
  8869. }
  8870. #u16687 {
  8871. border-width:0px;
  8872. position:absolute;
  8873. left:0px;
  8874. top:0px;
  8875. width:0px;
  8876. height:0px;
  8877. }
  8878. #u16688_div {
  8879. border-width:0px;
  8880. position:absolute;
  8881. left:0px;
  8882. top:0px;
  8883. width:140px;
  8884. height:30px;
  8885. background:inherit;
  8886. background-color:rgba(255, 255, 255, 1);
  8887. box-sizing:border-box;
  8888. border-width:1px;
  8889. border-style:solid;
  8890. border-color:rgba(215, 215, 215, 1);
  8891. border-radius:4px;
  8892. -moz-box-shadow:none;
  8893. -webkit-box-shadow:none;
  8894. box-shadow:none;
  8895. font-size:11px;
  8896. }
  8897. #u16688 {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:502px;
  8901. top:210px;
  8902. width:140px;
  8903. height:30px;
  8904. display:flex;
  8905. font-size:11px;
  8906. }
  8907. #u16688 .text {
  8908. position:absolute;
  8909. align-self:center;
  8910. padding:2px 2px 2px 2px;
  8911. box-sizing:border-box;
  8912. width:100%;
  8913. }
  8914. #u16688_text {
  8915. border-width:0px;
  8916. word-wrap:break-word;
  8917. text-transform:none;
  8918. visibility:hidden;
  8919. }
  8920. #u16689_input {
  8921. position:absolute;
  8922. left:0px;
  8923. top:0px;
  8924. width:120px;
  8925. height:23px;
  8926. padding:2px 2px 2px 2px;
  8927. font-family:'ArialMT', 'Arial', sans-serif;
  8928. font-weight:400;
  8929. font-style:normal;
  8930. font-size:11px;
  8931. letter-spacing:normal;
  8932. color:#AAAAAA;
  8933. vertical-align:none;
  8934. text-align:left;
  8935. text-transform:none;
  8936. background-color:transparent;
  8937. border-color:transparent;
  8938. }
  8939. #u16689_input.disabled {
  8940. position:absolute;
  8941. left:0px;
  8942. top:0px;
  8943. width:120px;
  8944. height:23px;
  8945. padding:2px 2px 2px 2px;
  8946. font-family:'ArialMT', 'Arial', sans-serif;
  8947. font-weight:400;
  8948. font-style:normal;
  8949. font-size:11px;
  8950. letter-spacing:normal;
  8951. color:#AAAAAA;
  8952. vertical-align:none;
  8953. text-align:left;
  8954. text-transform:none;
  8955. background-color:transparent;
  8956. border-color:transparent;
  8957. }
  8958. #u16689_div {
  8959. border-width:0px;
  8960. position:absolute;
  8961. left:0px;
  8962. top:0px;
  8963. width:120px;
  8964. height:23px;
  8965. background:inherit;
  8966. background-color:rgba(255, 255, 255, 1);
  8967. border:none;
  8968. border-radius:0px;
  8969. -moz-box-shadow:none;
  8970. -webkit-box-shadow:none;
  8971. box-shadow:none;
  8972. font-size:11px;
  8973. color:#AAAAAA;
  8974. }
  8975. #u16689 {
  8976. border-width:0px;
  8977. position:absolute;
  8978. left:509px;
  8979. top:212px;
  8980. width:120px;
  8981. height:23px;
  8982. display:flex;
  8983. font-size:11px;
  8984. color:#AAAAAA;
  8985. }
  8986. #u16689 .text {
  8987. position:absolute;
  8988. align-self:flex-start;
  8989. padding:2px 2px 2px 2px;
  8990. box-sizing:border-box;
  8991. width:100%;
  8992. }
  8993. #u16689_div.disabled {
  8994. border-width:0px;
  8995. position:absolute;
  8996. left:0px;
  8997. top:0px;
  8998. width:120px;
  8999. height:23px;
  9000. background:inherit;
  9001. background-color:rgba(240, 240, 240, 1);
  9002. border:none;
  9003. border-radius:0px;
  9004. -moz-box-shadow:none;
  9005. -webkit-box-shadow:none;
  9006. box-shadow:none;
  9007. font-size:11px;
  9008. color:#AAAAAA;
  9009. }
  9010. #u16689.disabled {
  9011. }
  9012. .u16689_input_option {
  9013. font-size:11px;
  9014. }
  9015. #u16690_div {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:0px;
  9019. top:0px;
  9020. width:87px;
  9021. height:30px;
  9022. background:inherit;
  9023. background-color:rgba(255, 255, 255, 1);
  9024. box-sizing:border-box;
  9025. border-width:1px;
  9026. border-style:solid;
  9027. border-color:rgba(170, 170, 170, 1);
  9028. border-radius:4px;
  9029. -moz-box-shadow:none;
  9030. -webkit-box-shadow:none;
  9031. box-shadow:none;
  9032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9033. font-weight:400;
  9034. font-style:normal;
  9035. font-size:14px;
  9036. color:#555555;
  9037. }
  9038. #u16690 {
  9039. border-width:0px;
  9040. position:absolute;
  9041. left:1484px;
  9042. top:61px;
  9043. width:87px;
  9044. height:30px;
  9045. display:flex;
  9046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9047. font-weight:400;
  9048. font-style:normal;
  9049. font-size:14px;
  9050. color:#555555;
  9051. }
  9052. #u16690 .text {
  9053. position:absolute;
  9054. align-self:center;
  9055. padding:5px 15px 5px 15px;
  9056. box-sizing:border-box;
  9057. width:100%;
  9058. }
  9059. #u16690_text {
  9060. border-width:0px;
  9061. white-space:nowrap;
  9062. text-transform:none;
  9063. }
  9064. #u16691_div {
  9065. border-width:0px;
  9066. position:absolute;
  9067. left:0px;
  9068. top:0px;
  9069. width:527px;
  9070. height:200px;
  9071. background:inherit;
  9072. background-color:rgba(255, 255, 255, 0);
  9073. border:none;
  9074. border-left:0px;
  9075. border-top:0px;
  9076. border-right:0px;
  9077. border-radius:0px;
  9078. border-bottom-right-radius:0px;
  9079. border-bottom-left-radius:0px;
  9080. -moz-box-shadow:none;
  9081. -webkit-box-shadow:none;
  9082. box-shadow:none;
  9083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9084. font-weight:400;
  9085. font-style:normal;
  9086. font-size:14px;
  9087. color:#D9001B;
  9088. }
  9089. #u16691 {
  9090. border-width:0px;
  9091. position:absolute;
  9092. left:413px;
  9093. top:568px;
  9094. width:527px;
  9095. height:200px;
  9096. display:flex;
  9097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9098. font-weight:400;
  9099. font-style:normal;
  9100. font-size:14px;
  9101. color:#D9001B;
  9102. }
  9103. #u16691 .text {
  9104. position:absolute;
  9105. align-self:center;
  9106. padding:0px 0px 0px 0px;
  9107. box-sizing:border-box;
  9108. width:100%;
  9109. }
  9110. #u16691_text {
  9111. border-width:0px;
  9112. white-space:nowrap;
  9113. text-transform:none;
  9114. }
  9115. #u16692 label {
  9116. left:0px;
  9117. width:100%;
  9118. }
  9119. #u16692_img {
  9120. border-width:0px;
  9121. position:absolute;
  9122. left:0px;
  9123. top:0px;
  9124. width:12px;
  9125. height:12px;
  9126. }
  9127. #u16692 {
  9128. border-width:0px;
  9129. position:absolute;
  9130. left:368px;
  9131. top:353px;
  9132. width:27px;
  9133. height:16px;
  9134. display:flex;
  9135. }
  9136. #u16692 .text {
  9137. position:absolute;
  9138. align-self:center;
  9139. padding:0px 2px 0px 2px;
  9140. box-sizing:border-box;
  9141. }
  9142. #u16692_img.selected {
  9143. }
  9144. #u16692.selected {
  9145. }
  9146. #u16692_img.disabled {
  9147. }
  9148. #u16692.disabled {
  9149. }
  9150. #u16692_img.selectedDisabled {
  9151. }
  9152. #u16692.selectedDisabled {
  9153. }
  9154. #u16692_text {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:14px;
  9158. top:0px;
  9159. width:11px;
  9160. word-wrap:break-word;
  9161. text-transform:none;
  9162. visibility:hidden;
  9163. }
  9164. #u16692_input {
  9165. border-width:0px;
  9166. position:absolute;
  9167. left:0px;
  9168. top:0px;
  9169. width:0px;
  9170. height:0px;
  9171. opacity:0;
  9172. }
  9173. #u16693 label {
  9174. left:0px;
  9175. width:100%;
  9176. }
  9177. #u16693_img {
  9178. border-width:0px;
  9179. position:absolute;
  9180. left:0px;
  9181. top:0px;
  9182. width:12px;
  9183. height:12px;
  9184. }
  9185. #u16693 {
  9186. border-width:0px;
  9187. position:absolute;
  9188. left:368px;
  9189. top:392px;
  9190. width:27px;
  9191. height:16px;
  9192. display:flex;
  9193. }
  9194. #u16693 .text {
  9195. position:absolute;
  9196. align-self:center;
  9197. padding:0px 2px 0px 2px;
  9198. box-sizing:border-box;
  9199. }
  9200. #u16693_img.selected {
  9201. }
  9202. #u16693.selected {
  9203. }
  9204. #u16693_img.disabled {
  9205. }
  9206. #u16693.disabled {
  9207. }
  9208. #u16693_img.selectedDisabled {
  9209. }
  9210. #u16693.selectedDisabled {
  9211. }
  9212. #u16693_text {
  9213. border-width:0px;
  9214. position:absolute;
  9215. left:14px;
  9216. top:0px;
  9217. width:11px;
  9218. word-wrap:break-word;
  9219. text-transform:none;
  9220. visibility:hidden;
  9221. }
  9222. #u16693_input {
  9223. border-width:0px;
  9224. position:absolute;
  9225. left:0px;
  9226. top:0px;
  9227. width:0px;
  9228. height:0px;
  9229. opacity:0;
  9230. }
  9231. #u16694 label {
  9232. left:0px;
  9233. width:100%;
  9234. }
  9235. #u16694_img {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:0px;
  9239. top:0px;
  9240. width:12px;
  9241. height:12px;
  9242. }
  9243. #u16694 {
  9244. border-width:0px;
  9245. position:absolute;
  9246. left:368px;
  9247. top:424px;
  9248. width:27px;
  9249. height:16px;
  9250. display:flex;
  9251. }
  9252. #u16694 .text {
  9253. position:absolute;
  9254. align-self:center;
  9255. padding:0px 2px 0px 2px;
  9256. box-sizing:border-box;
  9257. }
  9258. #u16694_img.selected {
  9259. }
  9260. #u16694.selected {
  9261. }
  9262. #u16694_img.disabled {
  9263. }
  9264. #u16694.disabled {
  9265. }
  9266. #u16694_img.selectedDisabled {
  9267. }
  9268. #u16694.selectedDisabled {
  9269. }
  9270. #u16694_text {
  9271. border-width:0px;
  9272. position:absolute;
  9273. left:14px;
  9274. top:0px;
  9275. width:11px;
  9276. word-wrap:break-word;
  9277. text-transform:none;
  9278. visibility:hidden;
  9279. }
  9280. #u16694_input {
  9281. border-width:0px;
  9282. position:absolute;
  9283. left:0px;
  9284. top:0px;
  9285. width:0px;
  9286. height:0px;
  9287. opacity:0;
  9288. }
  9289. #u16695_div {
  9290. border-width:0px;
  9291. position:absolute;
  9292. left:0px;
  9293. top:0px;
  9294. width:59px;
  9295. height:30px;
  9296. background:inherit;
  9297. background-color:rgba(24, 144, 255, 1);
  9298. border:none;
  9299. border-radius:4px;
  9300. -moz-box-shadow:none;
  9301. -webkit-box-shadow:none;
  9302. box-shadow:none;
  9303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9304. font-weight:400;
  9305. font-style:normal;
  9306. font-size:14px;
  9307. color:#FFFFFF;
  9308. }
  9309. #u16695 {
  9310. border-width:0px;
  9311. position:absolute;
  9312. left:428px;
  9313. top:298px;
  9314. width:59px;
  9315. height:30px;
  9316. display:flex;
  9317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9318. font-weight:400;
  9319. font-style:normal;
  9320. font-size:14px;
  9321. color:#FFFFFF;
  9322. }
  9323. #u16695 .text {
  9324. position:absolute;
  9325. align-self:center;
  9326. padding:5px 15px 5px 15px;
  9327. box-sizing:border-box;
  9328. width:100%;
  9329. }
  9330. #u16695_text {
  9331. border-width:0px;
  9332. white-space:nowrap;
  9333. text-transform:none;
  9334. }
  9335. #u16696_div {
  9336. border-width:0px;
  9337. position:absolute;
  9338. left:0px;
  9339. top:0px;
  9340. width:604px;
  9341. height:20px;
  9342. background:inherit;
  9343. background-color:rgba(255, 255, 255, 0);
  9344. border:none;
  9345. border-left:0px;
  9346. border-top:0px;
  9347. border-right:0px;
  9348. border-radius:0px;
  9349. border-bottom-right-radius:0px;
  9350. border-bottom-left-radius:0px;
  9351. -moz-box-shadow:none;
  9352. -webkit-box-shadow:none;
  9353. box-shadow:none;
  9354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9355. font-weight:400;
  9356. font-style:normal;
  9357. font-size:14px;
  9358. color:#7F7F7F;
  9359. }
  9360. #u16696 {
  9361. border-width:0px;
  9362. position:absolute;
  9363. left:352px;
  9364. top:100px;
  9365. width:604px;
  9366. height:20px;
  9367. display:flex;
  9368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9369. font-weight:400;
  9370. font-style:normal;
  9371. font-size:14px;
  9372. color:#7F7F7F;
  9373. }
  9374. #u16696 .text {
  9375. position:absolute;
  9376. align-self:center;
  9377. padding:0px 0px 0px 0px;
  9378. box-sizing:border-box;
  9379. width:100%;
  9380. }
  9381. #u16696_text {
  9382. border-width:0px;
  9383. white-space:nowrap;
  9384. text-transform:none;
  9385. }
  9386. #u16697 {
  9387. border-width:0px;
  9388. position:absolute;
  9389. left:0px;
  9390. top:0px;
  9391. width:0px;
  9392. height:0px;
  9393. }
  9394. #u16698 {
  9395. border-width:0px;
  9396. position:absolute;
  9397. left:0px;
  9398. top:0px;
  9399. width:0px;
  9400. height:0px;
  9401. }
  9402. #u16699 {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:0px;
  9406. top:0px;
  9407. width:0px;
  9408. height:0px;
  9409. }
  9410. #u16700_div {
  9411. border-width:0px;
  9412. position:absolute;
  9413. left:0px;
  9414. top:0px;
  9415. width:480px;
  9416. height:350px;
  9417. background:inherit;
  9418. background-color:rgba(255, 255, 255, 1);
  9419. border:none;
  9420. border-radius:4px;
  9421. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9422. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9423. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9424. font-family:'Microsoft YaHei', sans-serif;
  9425. font-weight:400;
  9426. font-style:normal;
  9427. }
  9428. #u16700 {
  9429. border-width:0px;
  9430. position:absolute;
  9431. left:992px;
  9432. top:728px;
  9433. width:480px;
  9434. height:350px;
  9435. display:flex;
  9436. font-family:'Microsoft YaHei', sans-serif;
  9437. font-weight:400;
  9438. font-style:normal;
  9439. }
  9440. #u16700 .text {
  9441. position:absolute;
  9442. align-self:center;
  9443. padding:2px 2px 2px 2px;
  9444. box-sizing:border-box;
  9445. width:100%;
  9446. }
  9447. #u16700_text {
  9448. border-width:0px;
  9449. word-wrap:break-word;
  9450. text-transform:none;
  9451. visibility:hidden;
  9452. }
  9453. #u16701_div {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:0px;
  9457. top:0px;
  9458. width:299px;
  9459. height:22px;
  9460. background:inherit;
  9461. background-color:rgba(255, 255, 255, 0);
  9462. border:none;
  9463. border-radius:0px;
  9464. -moz-box-shadow:none;
  9465. -webkit-box-shadow:none;
  9466. box-shadow:none;
  9467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9468. font-weight:400;
  9469. font-style:normal;
  9470. font-size:14px;
  9471. color:#666666;
  9472. line-height:22px;
  9473. }
  9474. #u16701 {
  9475. border-width:0px;
  9476. position:absolute;
  9477. left:1019px;
  9478. top:791px;
  9479. width:299px;
  9480. height:22px;
  9481. display:flex;
  9482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9483. font-weight:400;
  9484. font-style:normal;
  9485. font-size:14px;
  9486. color:#666666;
  9487. line-height:22px;
  9488. }
  9489. #u16701 .text {
  9490. position:absolute;
  9491. align-self:flex-start;
  9492. padding:0px 0px 0px 0px;
  9493. box-sizing:border-box;
  9494. width:100%;
  9495. }
  9496. #u16701_text {
  9497. border-width:0px;
  9498. word-wrap:break-word;
  9499. text-transform:none;
  9500. }
  9501. #u16702_div {
  9502. border-width:0px;
  9503. position:absolute;
  9504. left:0px;
  9505. top:0px;
  9506. width:73px;
  9507. height:21px;
  9508. background:inherit;
  9509. background-color:rgba(255, 255, 255, 0);
  9510. border:none;
  9511. border-radius:0px;
  9512. -moz-box-shadow:none;
  9513. -webkit-box-shadow:none;
  9514. box-shadow:none;
  9515. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9516. font-weight:650;
  9517. font-style:normal;
  9518. font-size:18px;
  9519. color:#000000;
  9520. line-height:22px;
  9521. }
  9522. #u16702 {
  9523. border-width:0px;
  9524. position:absolute;
  9525. left:1019px;
  9526. top:749px;
  9527. width:73px;
  9528. height:21px;
  9529. display:flex;
  9530. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9531. font-weight:650;
  9532. font-style:normal;
  9533. font-size:18px;
  9534. color:#000000;
  9535. line-height:22px;
  9536. }
  9537. #u16702 .text {
  9538. position:absolute;
  9539. align-self:flex-start;
  9540. padding:0px 0px 0px 0px;
  9541. box-sizing:border-box;
  9542. width:100%;
  9543. }
  9544. #u16702_text {
  9545. border-width:0px;
  9546. white-space:nowrap;
  9547. text-transform:none;
  9548. }
  9549. #u16703 label {
  9550. left:0px;
  9551. width:100%;
  9552. }
  9553. #u16703_img {
  9554. border-width:0px;
  9555. position:absolute;
  9556. left:0px;
  9557. top:3px;
  9558. width:12px;
  9559. height:12px;
  9560. }
  9561. #u16703 {
  9562. border-width:0px;
  9563. position:absolute;
  9564. left:1096px;
  9565. top:794px;
  9566. width:100px;
  9567. height:18px;
  9568. display:flex;
  9569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9570. font-weight:400;
  9571. font-style:normal;
  9572. }
  9573. #u16703 .text {
  9574. position:absolute;
  9575. align-self:center;
  9576. padding:0px 2px 0px 2px;
  9577. box-sizing:border-box;
  9578. }
  9579. #u16703_img.selected {
  9580. }
  9581. #u16703.selected {
  9582. }
  9583. #u16703_img.disabled {
  9584. }
  9585. #u16703.disabled {
  9586. }
  9587. #u16703_img.selectedDisabled {
  9588. }
  9589. #u16703.selectedDisabled {
  9590. }
  9591. #u16703_text {
  9592. border-width:0px;
  9593. position:absolute;
  9594. left:14px;
  9595. top:0px;
  9596. width:84px;
  9597. word-wrap:break-word;
  9598. text-transform:none;
  9599. }
  9600. #u16703_input {
  9601. border-width:0px;
  9602. position:absolute;
  9603. left:0px;
  9604. top:0px;
  9605. width:0px;
  9606. height:0px;
  9607. opacity:0;
  9608. }
  9609. #u16704 label {
  9610. left:0px;
  9611. width:100%;
  9612. }
  9613. #u16704_img {
  9614. border-width:0px;
  9615. position:absolute;
  9616. left:0px;
  9617. top:3px;
  9618. width:12px;
  9619. height:12px;
  9620. }
  9621. #u16704 {
  9622. border-width:0px;
  9623. position:absolute;
  9624. left:1096px;
  9625. top:827px;
  9626. width:100px;
  9627. height:18px;
  9628. display:flex;
  9629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9630. font-weight:400;
  9631. font-style:normal;
  9632. }
  9633. #u16704 .text {
  9634. position:absolute;
  9635. align-self:center;
  9636. padding:0px 2px 0px 2px;
  9637. box-sizing:border-box;
  9638. }
  9639. #u16704_img.selected {
  9640. }
  9641. #u16704.selected {
  9642. }
  9643. #u16704_img.disabled {
  9644. }
  9645. #u16704.disabled {
  9646. }
  9647. #u16704_img.selectedDisabled {
  9648. }
  9649. #u16704.selectedDisabled {
  9650. }
  9651. #u16704_text {
  9652. border-width:0px;
  9653. position:absolute;
  9654. left:14px;
  9655. top:0px;
  9656. width:84px;
  9657. word-wrap:break-word;
  9658. text-transform:none;
  9659. }
  9660. #u16704_input {
  9661. border-width:0px;
  9662. position:absolute;
  9663. left:0px;
  9664. top:0px;
  9665. width:0px;
  9666. height:0px;
  9667. opacity:0;
  9668. }
  9669. #u16705 label {
  9670. left:0px;
  9671. width:100%;
  9672. }
  9673. #u16705_img {
  9674. border-width:0px;
  9675. position:absolute;
  9676. left:0px;
  9677. top:3px;
  9678. width:12px;
  9679. height:12px;
  9680. }
  9681. #u16705 {
  9682. border-width:0px;
  9683. position:absolute;
  9684. left:1096px;
  9685. top:860px;
  9686. width:100px;
  9687. height:18px;
  9688. display:flex;
  9689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9690. font-weight:400;
  9691. font-style:normal;
  9692. }
  9693. #u16705 .text {
  9694. position:absolute;
  9695. align-self:center;
  9696. padding:0px 2px 0px 2px;
  9697. box-sizing:border-box;
  9698. }
  9699. #u16705_img.selected {
  9700. }
  9701. #u16705.selected {
  9702. }
  9703. #u16705_img.disabled {
  9704. }
  9705. #u16705.disabled {
  9706. }
  9707. #u16705_img.selectedDisabled {
  9708. }
  9709. #u16705.selectedDisabled {
  9710. }
  9711. #u16705_text {
  9712. border-width:0px;
  9713. position:absolute;
  9714. left:14px;
  9715. top:0px;
  9716. width:84px;
  9717. word-wrap:break-word;
  9718. text-transform:none;
  9719. }
  9720. #u16705_input {
  9721. border-width:0px;
  9722. position:absolute;
  9723. left:0px;
  9724. top:0px;
  9725. width:0px;
  9726. height:0px;
  9727. opacity:0;
  9728. }
  9729. #u16706 label {
  9730. left:0px;
  9731. width:100%;
  9732. }
  9733. #u16706_img {
  9734. border-width:0px;
  9735. position:absolute;
  9736. left:0px;
  9737. top:3px;
  9738. width:12px;
  9739. height:12px;
  9740. }
  9741. #u16706 {
  9742. border-width:0px;
  9743. position:absolute;
  9744. left:1096px;
  9745. top:893px;
  9746. width:100px;
  9747. height:18px;
  9748. display:flex;
  9749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9750. font-weight:400;
  9751. font-style:normal;
  9752. }
  9753. #u16706 .text {
  9754. position:absolute;
  9755. align-self:center;
  9756. padding:0px 2px 0px 2px;
  9757. box-sizing:border-box;
  9758. }
  9759. #u16706_img.selected {
  9760. }
  9761. #u16706.selected {
  9762. }
  9763. #u16706_img.disabled {
  9764. }
  9765. #u16706.disabled {
  9766. }
  9767. #u16706_img.selectedDisabled {
  9768. }
  9769. #u16706.selectedDisabled {
  9770. }
  9771. #u16706_text {
  9772. border-width:0px;
  9773. position:absolute;
  9774. left:14px;
  9775. top:0px;
  9776. width:84px;
  9777. word-wrap:break-word;
  9778. text-transform:none;
  9779. }
  9780. #u16706_input {
  9781. border-width:0px;
  9782. position:absolute;
  9783. left:0px;
  9784. top:0px;
  9785. width:0px;
  9786. height:0px;
  9787. opacity:0;
  9788. }
  9789. #u16707 label {
  9790. left:0px;
  9791. width:100%;
  9792. }
  9793. #u16707_img {
  9794. border-width:0px;
  9795. position:absolute;
  9796. left:0px;
  9797. top:3px;
  9798. width:12px;
  9799. height:12px;
  9800. }
  9801. #u16707 {
  9802. border-width:0px;
  9803. position:absolute;
  9804. left:1096px;
  9805. top:926px;
  9806. width:100px;
  9807. height:18px;
  9808. display:flex;
  9809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9810. font-weight:400;
  9811. font-style:normal;
  9812. }
  9813. #u16707 .text {
  9814. position:absolute;
  9815. align-self:center;
  9816. padding:0px 2px 0px 2px;
  9817. box-sizing:border-box;
  9818. }
  9819. #u16707_img.selected {
  9820. }
  9821. #u16707.selected {
  9822. }
  9823. #u16707_img.disabled {
  9824. }
  9825. #u16707.disabled {
  9826. }
  9827. #u16707_img.selectedDisabled {
  9828. }
  9829. #u16707.selectedDisabled {
  9830. }
  9831. #u16707_text {
  9832. border-width:0px;
  9833. position:absolute;
  9834. left:14px;
  9835. top:0px;
  9836. width:84px;
  9837. word-wrap:break-word;
  9838. text-transform:none;
  9839. }
  9840. #u16707_input {
  9841. border-width:0px;
  9842. position:absolute;
  9843. left:0px;
  9844. top:0px;
  9845. width:0px;
  9846. height:0px;
  9847. opacity:0;
  9848. }
  9849. #u16708 {
  9850. border-width:0px;
  9851. position:absolute;
  9852. left:0px;
  9853. top:0px;
  9854. width:0px;
  9855. height:0px;
  9856. }
  9857. #u16709_div {
  9858. border-width:0px;
  9859. position:absolute;
  9860. left:0px;
  9861. top:0px;
  9862. width:347px;
  9863. height:60px;
  9864. background:inherit;
  9865. background-color:rgba(255, 255, 255, 1);
  9866. box-sizing:border-box;
  9867. border-width:1px;
  9868. border-style:solid;
  9869. border-color:rgba(41, 143, 255, 1);
  9870. border-radius:4px;
  9871. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  9872. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  9873. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  9874. font-family:'Microsoft YaHei', sans-serif;
  9875. font-weight:400;
  9876. font-style:normal;
  9877. font-size:14px;
  9878. color:#CCCCCC;
  9879. text-align:left;
  9880. }
  9881. #u16709 {
  9882. border-width:0px;
  9883. position:absolute;
  9884. left:1096px;
  9885. top:954px;
  9886. width:347px;
  9887. height:60px;
  9888. display:flex;
  9889. font-family:'Microsoft YaHei', sans-serif;
  9890. font-weight:400;
  9891. font-style:normal;
  9892. font-size:14px;
  9893. color:#CCCCCC;
  9894. text-align:left;
  9895. }
  9896. #u16709 .text {
  9897. position:absolute;
  9898. align-self:center;
  9899. padding:2px 8px 2px 8px;
  9900. box-sizing:border-box;
  9901. width:100%;
  9902. }
  9903. #u16709_text {
  9904. border-width:0px;
  9905. word-wrap:break-word;
  9906. text-transform:none;
  9907. visibility:hidden;
  9908. }
  9909. #u16710_input {
  9910. position:absolute;
  9911. left:0px;
  9912. top:0px;
  9913. width:330px;
  9914. height:38px;
  9915. padding:2px 2px 2px 2px;
  9916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9917. font-weight:400;
  9918. font-style:normal;
  9919. font-size:14px;
  9920. letter-spacing:normal;
  9921. color:#000000;
  9922. vertical-align:none;
  9923. text-align:left;
  9924. text-transform:none;
  9925. background-color:transparent;
  9926. border-color:transparent;
  9927. }
  9928. #u16710_input.disabled {
  9929. position:absolute;
  9930. left:0px;
  9931. top:0px;
  9932. width:330px;
  9933. height:38px;
  9934. padding:2px 2px 2px 2px;
  9935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9936. font-weight:400;
  9937. font-style:normal;
  9938. font-size:14px;
  9939. letter-spacing:normal;
  9940. color:#000000;
  9941. vertical-align:none;
  9942. text-align:left;
  9943. text-transform:none;
  9944. background-color:transparent;
  9945. border-color:transparent;
  9946. }
  9947. #u16710_div {
  9948. border-width:0px;
  9949. position:absolute;
  9950. left:0px;
  9951. top:0px;
  9952. width:330px;
  9953. height:38px;
  9954. background:inherit;
  9955. background-color:rgba(255, 255, 255, 1);
  9956. border:none;
  9957. border-radius:0px;
  9958. -moz-box-shadow:none;
  9959. -webkit-box-shadow:none;
  9960. box-shadow:none;
  9961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9962. font-weight:400;
  9963. font-style:normal;
  9964. font-size:14px;
  9965. }
  9966. #u16710 {
  9967. border-width:0px;
  9968. position:absolute;
  9969. left:1105px;
  9970. top:955px;
  9971. width:330px;
  9972. height:38px;
  9973. display:flex;
  9974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9975. font-weight:400;
  9976. font-style:normal;
  9977. font-size:14px;
  9978. }
  9979. #u16710 .text {
  9980. position:absolute;
  9981. align-self:center;
  9982. padding:2px 2px 2px 2px;
  9983. box-sizing:border-box;
  9984. width:100%;
  9985. }
  9986. #u16710_div.disabled {
  9987. border-width:0px;
  9988. position:absolute;
  9989. left:0px;
  9990. top:0px;
  9991. width:330px;
  9992. height:38px;
  9993. background:inherit;
  9994. background-color:rgba(240, 240, 240, 1);
  9995. border:none;
  9996. border-radius:0px;
  9997. -moz-box-shadow:none;
  9998. -webkit-box-shadow:none;
  9999. box-shadow:none;
  10000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10001. font-weight:400;
  10002. font-style:normal;
  10003. font-size:14px;
  10004. }
  10005. #u16710.disabled {
  10006. }
  10007. #u16711 {
  10008. border-width:0px;
  10009. position:absolute;
  10010. left:0px;
  10011. top:0px;
  10012. width:0px;
  10013. height:0px;
  10014. }
  10015. #u16712_div {
  10016. border-width:0px;
  10017. position:absolute;
  10018. left:0px;
  10019. top:0px;
  10020. width:80px;
  10021. height:30px;
  10022. background:inherit;
  10023. background-color:rgba(24, 144, 255, 1);
  10024. border:none;
  10025. border-radius:4px;
  10026. -moz-box-shadow:none;
  10027. -webkit-box-shadow:none;
  10028. box-shadow:none;
  10029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10030. font-weight:400;
  10031. font-style:normal;
  10032. font-size:14px;
  10033. color:#FFFFFF;
  10034. }
  10035. #u16712 {
  10036. border-width:0px;
  10037. position:absolute;
  10038. left:1363px;
  10039. top:1034px;
  10040. width:80px;
  10041. height:30px;
  10042. display:flex;
  10043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10044. font-weight:400;
  10045. font-style:normal;
  10046. font-size:14px;
  10047. color:#FFFFFF;
  10048. }
  10049. #u16712 .text {
  10050. position:absolute;
  10051. align-self:center;
  10052. padding:2px 2px 2px 2px;
  10053. box-sizing:border-box;
  10054. width:100%;
  10055. }
  10056. #u16712_text {
  10057. border-width:0px;
  10058. word-wrap:break-word;
  10059. text-transform:none;
  10060. }
  10061. #u16713_div {
  10062. border-width:0px;
  10063. position:absolute;
  10064. left:0px;
  10065. top:0px;
  10066. width:80px;
  10067. height:30px;
  10068. background:inherit;
  10069. background-color:rgba(255, 255, 255, 1);
  10070. box-sizing:border-box;
  10071. border-width:1px;
  10072. border-style:solid;
  10073. border-color:rgba(170, 170, 170, 1);
  10074. border-radius:4px;
  10075. -moz-box-shadow:none;
  10076. -webkit-box-shadow:none;
  10077. box-shadow:none;
  10078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10079. font-weight:400;
  10080. font-style:normal;
  10081. font-size:14px;
  10082. }
  10083. #u16713 {
  10084. border-width:0px;
  10085. position:absolute;
  10086. left:1264px;
  10087. top:1034px;
  10088. width:80px;
  10089. height:30px;
  10090. display:flex;
  10091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10092. font-weight:400;
  10093. font-style:normal;
  10094. font-size:14px;
  10095. }
  10096. #u16713 .text {
  10097. position:absolute;
  10098. align-self:center;
  10099. padding:2px 2px 2px 2px;
  10100. box-sizing:border-box;
  10101. width:100%;
  10102. }
  10103. #u16713_text {
  10104. border-width:0px;
  10105. word-wrap:break-word;
  10106. text-transform:none;
  10107. }
  10108. #u16714_div {
  10109. border-width:0px;
  10110. position:absolute;
  10111. left:0px;
  10112. top:0px;
  10113. width:301px;
  10114. height:20px;
  10115. background:inherit;
  10116. background-color:rgba(255, 255, 255, 0);
  10117. border:none;
  10118. border-left:0px;
  10119. border-top:0px;
  10120. border-right:0px;
  10121. border-radius:0px;
  10122. border-bottom-right-radius:0px;
  10123. border-bottom-left-radius:0px;
  10124. -moz-box-shadow:none;
  10125. -webkit-box-shadow:none;
  10126. box-shadow:none;
  10127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10128. font-weight:400;
  10129. font-style:normal;
  10130. font-size:14px;
  10131. color:#D9001B;
  10132. }
  10133. #u16714 {
  10134. border-width:0px;
  10135. position:absolute;
  10136. left:1150px;
  10137. top:1095px;
  10138. width:301px;
  10139. height:20px;
  10140. display:flex;
  10141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10142. font-weight:400;
  10143. font-style:normal;
  10144. font-size:14px;
  10145. color:#D9001B;
  10146. }
  10147. #u16714 .text {
  10148. position:absolute;
  10149. align-self:center;
  10150. padding:0px 0px 0px 0px;
  10151. box-sizing:border-box;
  10152. width:100%;
  10153. }
  10154. #u16714_text {
  10155. border-width:0px;
  10156. white-space:nowrap;
  10157. text-transform:none;
  10158. }
  10159. #u16715 {
  10160. border-width:0px;
  10161. position:absolute;
  10162. left:0px;
  10163. top:0px;
  10164. width:0px;
  10165. height:0px;
  10166. }
  10167. #u16716 {
  10168. border-width:0px;
  10169. position:absolute;
  10170. left:0px;
  10171. top:0px;
  10172. width:0px;
  10173. height:0px;
  10174. }
  10175. #u16717_div {
  10176. border-width:0px;
  10177. position:absolute;
  10178. left:0px;
  10179. top:0px;
  10180. width:380px;
  10181. height:164px;
  10182. background:inherit;
  10183. background-color:rgba(255, 255, 255, 1);
  10184. border:none;
  10185. border-radius:4px;
  10186. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10187. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10188. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10189. font-family:'Microsoft YaHei', sans-serif;
  10190. font-weight:400;
  10191. font-style:normal;
  10192. }
  10193. #u16717 {
  10194. border-width:0px;
  10195. position:absolute;
  10196. left:1092px;
  10197. top:1139px;
  10198. width:380px;
  10199. height:164px;
  10200. display:flex;
  10201. font-family:'Microsoft YaHei', sans-serif;
  10202. font-weight:400;
  10203. font-style:normal;
  10204. }
  10205. #u16717 .text {
  10206. position:absolute;
  10207. align-self:center;
  10208. padding:2px 2px 2px 2px;
  10209. box-sizing:border-box;
  10210. width:100%;
  10211. }
  10212. #u16717_text {
  10213. border-width:0px;
  10214. word-wrap:break-word;
  10215. text-transform:none;
  10216. visibility:hidden;
  10217. }
  10218. #u16718_div {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:0px;
  10222. top:0px;
  10223. width:299px;
  10224. height:22px;
  10225. background:inherit;
  10226. background-color:rgba(255, 255, 255, 0);
  10227. border:none;
  10228. border-radius:0px;
  10229. -moz-box-shadow:none;
  10230. -webkit-box-shadow:none;
  10231. box-shadow:none;
  10232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10233. font-weight:400;
  10234. font-style:normal;
  10235. font-size:14px;
  10236. color:#666666;
  10237. line-height:22px;
  10238. }
  10239. #u16718 {
  10240. border-width:0px;
  10241. position:absolute;
  10242. left:1152px;
  10243. top:1194px;
  10244. width:299px;
  10245. height:22px;
  10246. display:flex;
  10247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10248. font-weight:400;
  10249. font-style:normal;
  10250. font-size:14px;
  10251. color:#666666;
  10252. line-height:22px;
  10253. }
  10254. #u16718 .text {
  10255. position:absolute;
  10256. align-self:flex-start;
  10257. padding:0px 0px 0px 0px;
  10258. box-sizing:border-box;
  10259. width:100%;
  10260. }
  10261. #u16718_text {
  10262. border-width:0px;
  10263. word-wrap:break-word;
  10264. text-transform:none;
  10265. }
  10266. #u16719_div {
  10267. border-width:0px;
  10268. position:absolute;
  10269. left:0px;
  10270. top:0px;
  10271. width:127px;
  10272. height:21px;
  10273. background:inherit;
  10274. background-color:rgba(255, 255, 255, 0);
  10275. border:none;
  10276. border-radius:0px;
  10277. -moz-box-shadow:none;
  10278. -webkit-box-shadow:none;
  10279. box-shadow:none;
  10280. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10281. font-weight:650;
  10282. font-style:normal;
  10283. font-size:18px;
  10284. color:#000000;
  10285. line-height:22px;
  10286. }
  10287. #u16719 {
  10288. border-width:0px;
  10289. position:absolute;
  10290. left:1152px;
  10291. top:1164px;
  10292. width:127px;
  10293. height:21px;
  10294. display:flex;
  10295. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10296. font-weight:650;
  10297. font-style:normal;
  10298. font-size:18px;
  10299. color:#000000;
  10300. line-height:22px;
  10301. }
  10302. #u16719 .text {
  10303. position:absolute;
  10304. align-self:flex-start;
  10305. padding:0px 0px 0px 0px;
  10306. box-sizing:border-box;
  10307. width:100%;
  10308. }
  10309. #u16719_text {
  10310. border-width:0px;
  10311. white-space:nowrap;
  10312. text-transform:none;
  10313. }
  10314. #u16720_div {
  10315. border-width:0px;
  10316. position:absolute;
  10317. left:0px;
  10318. top:0px;
  10319. width:61px;
  10320. height:30px;
  10321. background:inherit;
  10322. background-color:rgba(24, 144, 255, 1);
  10323. border:none;
  10324. border-radius:4px;
  10325. -moz-box-shadow:none;
  10326. -webkit-box-shadow:none;
  10327. box-shadow:none;
  10328. font-family:'Microsoft YaHei', sans-serif;
  10329. font-weight:400;
  10330. font-style:normal;
  10331. font-size:14px;
  10332. color:#FFFFFF;
  10333. }
  10334. #u16720 {
  10335. border-width:0px;
  10336. position:absolute;
  10337. left:1394px;
  10338. top:1254px;
  10339. width:61px;
  10340. height:30px;
  10341. display:flex;
  10342. font-family:'Microsoft YaHei', sans-serif;
  10343. font-weight:400;
  10344. font-style:normal;
  10345. font-size:14px;
  10346. color:#FFFFFF;
  10347. }
  10348. #u16720 .text {
  10349. position:absolute;
  10350. align-self:center;
  10351. padding:2px 16px 2px 16px;
  10352. box-sizing:border-box;
  10353. width:100%;
  10354. }
  10355. #u16720_text {
  10356. border-width:0px;
  10357. white-space:nowrap;
  10358. text-transform:none;
  10359. }
  10360. #u16721_div {
  10361. border-width:0px;
  10362. position:absolute;
  10363. left:0px;
  10364. top:0px;
  10365. width:66px;
  10366. height:30px;
  10367. background:inherit;
  10368. background-color:rgba(255, 255, 255, 1);
  10369. box-sizing:border-box;
  10370. border-width:1px;
  10371. border-style:solid;
  10372. border-color:rgba(217, 217, 217, 1);
  10373. border-radius:4px;
  10374. -moz-box-shadow:none;
  10375. -webkit-box-shadow:none;
  10376. box-shadow:none;
  10377. font-family:'Microsoft YaHei', sans-serif;
  10378. font-weight:400;
  10379. font-style:normal;
  10380. font-size:14px;
  10381. color:rgba(0, 0, 0, 0.647058823529412);
  10382. line-height:21px;
  10383. }
  10384. #u16721 {
  10385. border-width:0px;
  10386. position:absolute;
  10387. left:1312px;
  10388. top:1254px;
  10389. width:66px;
  10390. height:30px;
  10391. display:flex;
  10392. font-family:'Microsoft YaHei', sans-serif;
  10393. font-weight:400;
  10394. font-style:normal;
  10395. font-size:14px;
  10396. color:rgba(0, 0, 0, 0.647058823529412);
  10397. line-height:21px;
  10398. }
  10399. #u16721 .text {
  10400. position:absolute;
  10401. align-self:center;
  10402. padding:2px 16px 2px 16px;
  10403. box-sizing:border-box;
  10404. width:100%;
  10405. }
  10406. #u16721_text {
  10407. border-width:0px;
  10408. white-space:nowrap;
  10409. text-transform:none;
  10410. }
  10411. #u16722_img {
  10412. border-width:0px;
  10413. position:absolute;
  10414. left:0px;
  10415. top:0px;
  10416. width:20px;
  10417. height:20px;
  10418. }
  10419. #u16722 {
  10420. border-width:0px;
  10421. position:absolute;
  10422. left:1121px;
  10423. top:1168px;
  10424. width:20px;
  10425. height:20px;
  10426. display:flex;
  10427. }
  10428. #u16722 .text {
  10429. position:absolute;
  10430. align-self:center;
  10431. padding:2px 2px 2px 2px;
  10432. box-sizing:border-box;
  10433. width:100%;
  10434. }
  10435. #u16722_text {
  10436. border-width:0px;
  10437. word-wrap:break-word;
  10438. text-transform:none;
  10439. visibility:hidden;
  10440. }