styles.css 204 KB

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