styles.css 199 KB

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