styles.css 199 KB

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