styles.css 157 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3245px;
  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. #u142576 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u142577_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:33px;
  33. height:22px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 0);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:none;
  39. -webkit-box-shadow:none;
  40. box-shadow:none;
  41. font-size:16px;
  42. color:#FFFFFF;
  43. }
  44. #u142577 {
  45. border-width:0px;
  46. position:absolute;
  47. left:1154px;
  48. top:16px;
  49. width:33px;
  50. height:22px;
  51. display:flex;
  52. font-size:16px;
  53. color:#FFFFFF;
  54. }
  55. #u142577 .text {
  56. position:absolute;
  57. align-self:flex-start;
  58. padding:0px 0px 0px 0px;
  59. box-sizing:border-box;
  60. width:100%;
  61. }
  62. #u142577_text {
  63. border-width:0px;
  64. white-space:nowrap;
  65. text-transform:none;
  66. }
  67. #u142578_div {
  68. border-width:0px;
  69. position:absolute;
  70. left:0px;
  71. top:0px;
  72. width:1600px;
  73. height:50px;
  74. background:inherit;
  75. background-color:rgba(30, 42, 68, 1);
  76. border:none;
  77. border-radius:0px;
  78. -moz-box-shadow:none;
  79. -webkit-box-shadow:none;
  80. box-shadow:none;
  81. color:#AFB3B6;
  82. }
  83. #u142578 {
  84. border-width:0px;
  85. position:absolute;
  86. left:0px;
  87. top:0px;
  88. width:1600px;
  89. height:50px;
  90. display:flex;
  91. color:#AFB3B6;
  92. }
  93. #u142578 .text {
  94. position:absolute;
  95. align-self:center;
  96. padding:2px 2px 2px 2px;
  97. box-sizing:border-box;
  98. width:100%;
  99. }
  100. #u142578_text {
  101. border-width:0px;
  102. word-wrap:break-word;
  103. text-transform:none;
  104. visibility:hidden;
  105. }
  106. #u142579 {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:0px;
  112. height:0px;
  113. }
  114. #u142580_img {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:31px;
  120. height:31px;
  121. }
  122. #u142580 {
  123. border-width:0px;
  124. position:absolute;
  125. left:19px;
  126. top:8px;
  127. width:31px;
  128. height:31px;
  129. display:flex;
  130. }
  131. #u142580 .text {
  132. position:absolute;
  133. align-self:center;
  134. padding:2px 2px 2px 2px;
  135. box-sizing:border-box;
  136. width:100%;
  137. }
  138. #u142580_text {
  139. border-width:0px;
  140. word-wrap:break-word;
  141. text-transform:none;
  142. }
  143. #u142581_div {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:129px;
  149. height:22px;
  150. background:inherit;
  151. background-color:rgba(255, 255, 255, 0);
  152. border:none;
  153. border-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  158. font-weight:400;
  159. font-style:normal;
  160. font-size:16px;
  161. color:#FFFFFF;
  162. }
  163. #u142581 {
  164. border-width:0px;
  165. position:absolute;
  166. left:62px;
  167. top:12px;
  168. width:129px;
  169. height:22px;
  170. display:flex;
  171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  172. font-weight:400;
  173. font-style:normal;
  174. font-size:16px;
  175. color:#FFFFFF;
  176. }
  177. #u142581 .text {
  178. position:absolute;
  179. align-self:flex-start;
  180. padding:0px 0px 0px 0px;
  181. box-sizing:border-box;
  182. width:100%;
  183. }
  184. #u142581_text {
  185. border-width:0px;
  186. white-space:nowrap;
  187. text-transform:none;
  188. }
  189. #u142582_div {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:200px;
  195. height:1200px;
  196. background:inherit;
  197. background-color:rgba(30, 42, 68, 1);
  198. border:none;
  199. border-radius:0px;
  200. -moz-box-shadow:none;
  201. -webkit-box-shadow:none;
  202. box-shadow:none;
  203. color:#AFB3B6;
  204. }
  205. #u142582 {
  206. border-width:0px;
  207. position:absolute;
  208. left:0px;
  209. top:50px;
  210. width:200px;
  211. height:1200px;
  212. display:flex;
  213. color:#AFB3B6;
  214. }
  215. #u142582 .text {
  216. position:absolute;
  217. align-self:center;
  218. padding:2px 2px 2px 2px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u142582_text {
  223. border-width:0px;
  224. word-wrap:break-word;
  225. text-transform:none;
  226. visibility:hidden;
  227. }
  228. #u142583_img {
  229. border-width:0px;
  230. position:absolute;
  231. left:0px;
  232. top:0px;
  233. width:15px;
  234. height:15px;
  235. }
  236. #u142583 {
  237. border-width:0px;
  238. position:absolute;
  239. left:1523px;
  240. top:17px;
  241. width:15px;
  242. height:15px;
  243. display:flex;
  244. }
  245. #u142583 .text {
  246. position:absolute;
  247. align-self:center;
  248. padding:2px 2px 2px 2px;
  249. box-sizing:border-box;
  250. width:100%;
  251. }
  252. #u142583_text {
  253. border-width:0px;
  254. word-wrap:break-word;
  255. text-transform:none;
  256. visibility:hidden;
  257. }
  258. #u142584_img {
  259. border-width:0px;
  260. position:absolute;
  261. left:0px;
  262. top:0px;
  263. width:15px;
  264. height:15px;
  265. }
  266. #u142584 {
  267. border-width:0px;
  268. position:absolute;
  269. left:1493px;
  270. top:17px;
  271. width:15px;
  272. height:15px;
  273. display:flex;
  274. }
  275. #u142584 .text {
  276. position:absolute;
  277. align-self:center;
  278. padding:2px 2px 2px 2px;
  279. box-sizing:border-box;
  280. width:100%;
  281. }
  282. #u142584_text {
  283. border-width:0px;
  284. word-wrap:break-word;
  285. text-transform:none;
  286. visibility:hidden;
  287. }
  288. #u142585 {
  289. border-width:0px;
  290. position:absolute;
  291. left:0px;
  292. top:0px;
  293. width:0px;
  294. height:0px;
  295. }
  296. #u142586_img {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:14px;
  302. height:14px;
  303. }
  304. #u142586 {
  305. border-width:0px;
  306. position:absolute;
  307. left:1553px;
  308. top:18px;
  309. width:14px;
  310. height:14px;
  311. display:flex;
  312. }
  313. #u142586 .text {
  314. position:absolute;
  315. align-self:center;
  316. padding:2px 2px 2px 2px;
  317. box-sizing:border-box;
  318. width:100%;
  319. }
  320. #u142586_text {
  321. border-width:0px;
  322. word-wrap:break-word;
  323. text-transform:none;
  324. visibility:hidden;
  325. }
  326. #u142587_img {
  327. border-width:0px;
  328. position:absolute;
  329. left:0px;
  330. top:0px;
  331. width:8px;
  332. height:5px;
  333. }
  334. #u142587 {
  335. border-width:0px;
  336. position:absolute;
  337. left:1572px;
  338. top:23px;
  339. width:8px;
  340. height:5px;
  341. display:flex;
  342. }
  343. #u142587 .text {
  344. position:absolute;
  345. align-self:center;
  346. padding:2px 2px 2px 2px;
  347. box-sizing:border-box;
  348. width:100%;
  349. }
  350. #u142587_text {
  351. border-width:0px;
  352. word-wrap:break-word;
  353. text-transform:none;
  354. visibility:hidden;
  355. }
  356. #u142588_div {
  357. border-width:0px;
  358. position:absolute;
  359. left:0px;
  360. top:0px;
  361. width:1402px;
  362. height:1200px;
  363. background:inherit;
  364. background-color:rgba(242, 242, 242, 1);
  365. border:none;
  366. border-radius:0px;
  367. -moz-box-shadow:none;
  368. -webkit-box-shadow:none;
  369. box-shadow:none;
  370. }
  371. #u142588 {
  372. border-width:0px;
  373. position:absolute;
  374. left:198px;
  375. top:50px;
  376. width:1402px;
  377. height:1200px;
  378. display:flex;
  379. }
  380. #u142588 .text {
  381. position:absolute;
  382. align-self:center;
  383. padding:2px 2px 2px 2px;
  384. box-sizing:border-box;
  385. width:100%;
  386. }
  387. #u142588_text {
  388. border-width:0px;
  389. word-wrap:break-word;
  390. text-transform:none;
  391. visibility:hidden;
  392. }
  393. #u142589 {
  394. border-width:0px;
  395. position:absolute;
  396. left:19px;
  397. top:77px;
  398. width:84px;
  399. height:140px;
  400. }
  401. #u142589_children {
  402. border-width:0px;
  403. position:absolute;
  404. left:0px;
  405. top:0px;
  406. width:0px;
  407. height:0px;
  408. }
  409. #u142590 {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:84px;
  415. height:20px;
  416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  417. font-weight:400;
  418. font-style:normal;
  419. font-size:14px;
  420. color:#FFFFFF;
  421. }
  422. #u142591_div {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:62px;
  428. height:20px;
  429. background:inherit;
  430. background-color:rgba(255, 255, 255, 0);
  431. border:none;
  432. border-radius:0px;
  433. -moz-box-shadow:none;
  434. -webkit-box-shadow:none;
  435. box-shadow:none;
  436. }
  437. #u142591 {
  438. border-width:0px;
  439. position:absolute;
  440. left:22px;
  441. top:0px;
  442. width:62px;
  443. height:20px;
  444. display:flex;
  445. }
  446. #u142591 .text {
  447. position:absolute;
  448. align-self:center;
  449. padding:2px 2px 2px 3px;
  450. box-sizing:border-box;
  451. width:100%;
  452. }
  453. #u142591_text {
  454. border-width:0px;
  455. white-space:nowrap;
  456. text-transform:none;
  457. }
  458. #u142592 {
  459. border-width:0px;
  460. position:absolute;
  461. left:0px;
  462. top:20px;
  463. width:84px;
  464. height:20px;
  465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  466. font-weight:400;
  467. font-style:normal;
  468. font-size:14px;
  469. color:#FFFFFF;
  470. }
  471. #u142593_div {
  472. border-width:0px;
  473. position:absolute;
  474. left:0px;
  475. top:0px;
  476. width:62px;
  477. height:20px;
  478. background:inherit;
  479. background-color:rgba(255, 255, 255, 0);
  480. border:none;
  481. border-radius:0px;
  482. -moz-box-shadow:none;
  483. -webkit-box-shadow:none;
  484. box-shadow:none;
  485. }
  486. #u142593 {
  487. border-width:0px;
  488. position:absolute;
  489. left:22px;
  490. top:0px;
  491. width:62px;
  492. height:20px;
  493. display:flex;
  494. }
  495. #u142593 .text {
  496. position:absolute;
  497. align-self:center;
  498. padding:2px 2px 2px 3px;
  499. box-sizing:border-box;
  500. width:100%;
  501. }
  502. #u142593_text {
  503. border-width:0px;
  504. white-space:nowrap;
  505. text-transform:none;
  506. }
  507. #u142594 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:40px;
  512. width:84px;
  513. height:20px;
  514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  515. font-weight:400;
  516. font-style:normal;
  517. font-size:14px;
  518. color:#FFFFFF;
  519. }
  520. #u142595_div {
  521. border-width:0px;
  522. position:absolute;
  523. left:0px;
  524. top:0px;
  525. width:62px;
  526. height:20px;
  527. background:inherit;
  528. background-color:rgba(255, 255, 255, 0);
  529. border:none;
  530. border-radius:0px;
  531. -moz-box-shadow:none;
  532. -webkit-box-shadow:none;
  533. box-shadow:none;
  534. }
  535. #u142595 {
  536. border-width:0px;
  537. position:absolute;
  538. left:22px;
  539. top:0px;
  540. width:62px;
  541. height:20px;
  542. display:flex;
  543. }
  544. #u142595 .text {
  545. position:absolute;
  546. align-self:center;
  547. padding:2px 2px 2px 3px;
  548. box-sizing:border-box;
  549. width:100%;
  550. }
  551. #u142595_text {
  552. border-width:0px;
  553. white-space:nowrap;
  554. text-transform:none;
  555. }
  556. #u142596 {
  557. border-width:0px;
  558. position:absolute;
  559. left:0px;
  560. top:60px;
  561. width:84px;
  562. height:20px;
  563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  564. font-weight:400;
  565. font-style:normal;
  566. font-size:14px;
  567. color:#FFFFFF;
  568. }
  569. #u142597_div {
  570. border-width:0px;
  571. position:absolute;
  572. left:0px;
  573. top:0px;
  574. width:62px;
  575. height:20px;
  576. background:inherit;
  577. background-color:rgba(255, 255, 255, 0);
  578. border:none;
  579. border-radius:0px;
  580. -moz-box-shadow:none;
  581. -webkit-box-shadow:none;
  582. box-shadow:none;
  583. }
  584. #u142597 {
  585. border-width:0px;
  586. position:absolute;
  587. left:22px;
  588. top:0px;
  589. width:62px;
  590. height:20px;
  591. display:flex;
  592. }
  593. #u142597 .text {
  594. position:absolute;
  595. align-self:center;
  596. padding:2px 2px 2px 3px;
  597. box-sizing:border-box;
  598. width:100%;
  599. }
  600. #u142597_text {
  601. border-width:0px;
  602. white-space:nowrap;
  603. text-transform:none;
  604. }
  605. #u142598 {
  606. border-width:0px;
  607. position:absolute;
  608. left:0px;
  609. top:80px;
  610. width:84px;
  611. height:20px;
  612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  613. font-weight:400;
  614. font-style:normal;
  615. font-size:14px;
  616. color:#FFFFFF;
  617. }
  618. #u142599_div {
  619. border-width:0px;
  620. position:absolute;
  621. left:0px;
  622. top:0px;
  623. width:62px;
  624. height:20px;
  625. background:inherit;
  626. background-color:rgba(255, 255, 255, 0);
  627. border:none;
  628. border-radius:0px;
  629. -moz-box-shadow:none;
  630. -webkit-box-shadow:none;
  631. box-shadow:none;
  632. }
  633. #u142599 {
  634. border-width:0px;
  635. position:absolute;
  636. left:22px;
  637. top:0px;
  638. width:62px;
  639. height:20px;
  640. display:flex;
  641. }
  642. #u142599 .text {
  643. position:absolute;
  644. align-self:center;
  645. padding:2px 2px 2px 3px;
  646. box-sizing:border-box;
  647. width:100%;
  648. }
  649. #u142599_text {
  650. border-width:0px;
  651. white-space:nowrap;
  652. text-transform:none;
  653. }
  654. #u142600 {
  655. border-width:0px;
  656. position:absolute;
  657. left:0px;
  658. top:100px;
  659. width:84px;
  660. height:20px;
  661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  662. font-weight:400;
  663. font-style:normal;
  664. font-size:14px;
  665. color:#FFFFFF;
  666. }
  667. #u142601_div {
  668. border-width:0px;
  669. position:absolute;
  670. left:0px;
  671. top:0px;
  672. width:62px;
  673. height:20px;
  674. background:inherit;
  675. background-color:rgba(255, 255, 255, 0);
  676. border:none;
  677. border-radius:0px;
  678. -moz-box-shadow:none;
  679. -webkit-box-shadow:none;
  680. box-shadow:none;
  681. }
  682. #u142601 {
  683. border-width:0px;
  684. position:absolute;
  685. left:22px;
  686. top:0px;
  687. width:62px;
  688. height:20px;
  689. display:flex;
  690. }
  691. #u142601 .text {
  692. position:absolute;
  693. align-self:center;
  694. padding:2px 2px 2px 3px;
  695. box-sizing:border-box;
  696. width:100%;
  697. }
  698. #u142601_text {
  699. border-width:0px;
  700. white-space:nowrap;
  701. text-transform:none;
  702. }
  703. #u142602 {
  704. border-width:0px;
  705. position:absolute;
  706. left:0px;
  707. top:120px;
  708. width:84px;
  709. height:20px;
  710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  711. font-weight:400;
  712. font-style:normal;
  713. font-size:14px;
  714. color:#FFFFFF;
  715. }
  716. #u142603_div {
  717. border-width:0px;
  718. position:absolute;
  719. left:0px;
  720. top:0px;
  721. width:62px;
  722. height:20px;
  723. background:inherit;
  724. background-color:rgba(255, 255, 255, 0);
  725. border:none;
  726. border-radius:0px;
  727. -moz-box-shadow:none;
  728. -webkit-box-shadow:none;
  729. box-shadow:none;
  730. }
  731. #u142603 {
  732. border-width:0px;
  733. position:absolute;
  734. left:22px;
  735. top:0px;
  736. width:62px;
  737. height:20px;
  738. display:flex;
  739. }
  740. #u142603 .text {
  741. position:absolute;
  742. align-self:center;
  743. padding:2px 2px 2px 3px;
  744. box-sizing:border-box;
  745. width:100%;
  746. }
  747. #u142603_text {
  748. border-width:0px;
  749. white-space:nowrap;
  750. text-transform:none;
  751. }
  752. #u142604_input {
  753. position:absolute;
  754. left:0px;
  755. top:0px;
  756. width:141px;
  757. height:22px;
  758. padding:2px 2px 2px 2px;
  759. font-family:'ArialMT', 'Arial', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:14px;
  763. letter-spacing:normal;
  764. color:#FFFFFF;
  765. vertical-align:none;
  766. text-align:left;
  767. text-transform:none;
  768. background-color:transparent;
  769. border-color:transparent;
  770. }
  771. #u142604_input.disabled {
  772. position:absolute;
  773. left:0px;
  774. top:0px;
  775. width:141px;
  776. height:22px;
  777. padding:2px 2px 2px 2px;
  778. font-family:'ArialMT', 'Arial', sans-serif;
  779. font-weight:400;
  780. font-style:normal;
  781. font-size:14px;
  782. letter-spacing:normal;
  783. color:#FFFFFF;
  784. vertical-align:none;
  785. text-align:left;
  786. text-transform:none;
  787. background-color:transparent;
  788. border-color:transparent;
  789. }
  790. #u142604_div {
  791. border-width:0px;
  792. position:absolute;
  793. left:0px;
  794. top:0px;
  795. width:141px;
  796. height:22px;
  797. background:inherit;
  798. background-color:rgba(255, 255, 255, 0);
  799. border:none;
  800. border-radius:0px;
  801. -moz-box-shadow:none;
  802. -webkit-box-shadow:none;
  803. box-shadow:none;
  804. font-size:14px;
  805. color:#FFFFFF;
  806. }
  807. #u142604 {
  808. border-width:0px;
  809. position:absolute;
  810. left:319px;
  811. top:13px;
  812. width:141px;
  813. height:22px;
  814. display:flex;
  815. font-size:14px;
  816. color:#FFFFFF;
  817. }
  818. #u142604 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:2px 2px 2px 2px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u142604_div.disabled {
  826. border-width:0px;
  827. position:absolute;
  828. left:0px;
  829. top:0px;
  830. width:141px;
  831. height:22px;
  832. background:inherit;
  833. background-color:rgba(240, 240, 240, 1);
  834. border:none;
  835. border-radius:0px;
  836. -moz-box-shadow:none;
  837. -webkit-box-shadow:none;
  838. box-shadow:none;
  839. font-size:14px;
  840. color:#FFFFFF;
  841. }
  842. #u142604.disabled {
  843. }
  844. .u142604_input_option {
  845. font-size:14px;
  846. }
  847. #u142605_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:22px;
  853. height:22px;
  854. }
  855. #u142605 {
  856. border-width:0px;
  857. position:absolute;
  858. left:292px;
  859. top:13px;
  860. width:22px;
  861. height:22px;
  862. display:flex;
  863. }
  864. #u142605 .text {
  865. position:absolute;
  866. align-self:center;
  867. padding:2px 2px 2px 2px;
  868. box-sizing:border-box;
  869. width:100%;
  870. }
  871. #u142605_text {
  872. border-width:0px;
  873. word-wrap:break-word;
  874. text-transform:none;
  875. visibility:hidden;
  876. }
  877. #u142606_div {
  878. border-width:0px;
  879. position:absolute;
  880. left:0px;
  881. top:0px;
  882. width:136px;
  883. height:16px;
  884. background:inherit;
  885. background-color:rgba(255, 255, 255, 0);
  886. border:none;
  887. border-radius:0px;
  888. -moz-box-shadow:none;
  889. -webkit-box-shadow:none;
  890. box-shadow:none;
  891. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  892. font-weight:200;
  893. font-style:normal;
  894. font-size:11px;
  895. color:#555555;
  896. }
  897. #u142606 {
  898. border-width:0px;
  899. position:absolute;
  900. left:208px;
  901. top:56px;
  902. width:136px;
  903. height:16px;
  904. display:flex;
  905. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  906. font-weight:200;
  907. font-style:normal;
  908. font-size:11px;
  909. color:#555555;
  910. }
  911. #u142606 .text {
  912. position:absolute;
  913. align-self:flex-start;
  914. padding:0px 0px 0px 0px;
  915. box-sizing:border-box;
  916. width:100%;
  917. }
  918. #u142606_text {
  919. border-width:0px;
  920. white-space:nowrap;
  921. text-transform:none;
  922. }
  923. #u142607 {
  924. border-width:0px;
  925. position:absolute;
  926. left:0px;
  927. top:0px;
  928. width:0px;
  929. height:0px;
  930. }
  931. #u142608_img {
  932. border-width:0px;
  933. position:absolute;
  934. left:0px;
  935. top:0px;
  936. width:17px;
  937. height:14px;
  938. }
  939. #u142608 {
  940. border-width:0px;
  941. position:absolute;
  942. left:211px;
  943. top:16px;
  944. width:17px;
  945. height:14px;
  946. display:flex;
  947. color:#FFFFFF;
  948. }
  949. #u142608 .text {
  950. position:absolute;
  951. align-self:center;
  952. padding:2px 2px 2px 2px;
  953. box-sizing:border-box;
  954. width:100%;
  955. }
  956. #u142608_text {
  957. border-width:0px;
  958. word-wrap:break-word;
  959. text-transform:none;
  960. visibility:hidden;
  961. }
  962. #u142609_div {
  963. border-width:0px;
  964. position:absolute;
  965. left:0px;
  966. top:0px;
  967. width:29px;
  968. height:20px;
  969. background:inherit;
  970. background-color:rgba(255, 255, 255, 0);
  971. border:none;
  972. border-radius:0px;
  973. -moz-box-shadow:none;
  974. -webkit-box-shadow:none;
  975. box-shadow:none;
  976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  977. font-weight:400;
  978. font-style:normal;
  979. color:#FFFFFF;
  980. }
  981. #u142609 {
  982. border-width:0px;
  983. position:absolute;
  984. left:233px;
  985. top:13px;
  986. width:29px;
  987. height:20px;
  988. display:flex;
  989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  990. font-weight:400;
  991. font-style:normal;
  992. color:#FFFFFF;
  993. }
  994. #u142609 .text {
  995. position:absolute;
  996. align-self:flex-start;
  997. padding:0px 0px 0px 0px;
  998. box-sizing:border-box;
  999. width:100%;
  1000. }
  1001. #u142609_text {
  1002. border-width:0px;
  1003. white-space:nowrap;
  1004. text-transform:none;
  1005. }
  1006. #u142610_div {
  1007. border-width:0px;
  1008. position:absolute;
  1009. left:0px;
  1010. top:0px;
  1011. width:1381px;
  1012. height:1426px;
  1013. background:inherit;
  1014. background-color:rgba(255, 255, 255, 1);
  1015. box-sizing:border-box;
  1016. border-width:1px;
  1017. border-style:solid;
  1018. border-color:rgba(242, 242, 242, 1);
  1019. border-radius:0px;
  1020. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1021. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1022. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1023. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  1024. font-weight:700;
  1025. font-style:normal;
  1026. }
  1027. #u142610 {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:208px;
  1031. top:83px;
  1032. width:1381px;
  1033. height:1426px;
  1034. display:flex;
  1035. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  1036. font-weight:700;
  1037. font-style:normal;
  1038. }
  1039. #u142610 .text {
  1040. position:absolute;
  1041. align-self:center;
  1042. padding:2px 2px 2px 2px;
  1043. box-sizing:border-box;
  1044. width:100%;
  1045. }
  1046. #u142610_text {
  1047. border-width:0px;
  1048. word-wrap:break-word;
  1049. text-transform:none;
  1050. visibility:hidden;
  1051. }
  1052. #u142611_img {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:0px;
  1056. top:0px;
  1057. width:1380px;
  1058. height:2px;
  1059. }
  1060. #u142611 {
  1061. border-width:0px;
  1062. position:absolute;
  1063. left:208px;
  1064. top:146px;
  1065. width:1379px;
  1066. height:1px;
  1067. display:flex;
  1068. }
  1069. #u142611 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:2px 2px 2px 2px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u142611_text {
  1077. border-width:0px;
  1078. word-wrap:break-word;
  1079. text-transform:none;
  1080. visibility:hidden;
  1081. }
  1082. #u142612_div {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:73px;
  1088. height:25px;
  1089. background:inherit;
  1090. background-color:rgba(255, 255, 255, 0);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1097. font-weight:400;
  1098. font-style:normal;
  1099. font-size:18px;
  1100. }
  1101. #u142612 {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:259px;
  1105. top:99px;
  1106. width:73px;
  1107. height:25px;
  1108. display:flex;
  1109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1110. font-weight:400;
  1111. font-style:normal;
  1112. font-size:18px;
  1113. }
  1114. #u142612 .text {
  1115. position:absolute;
  1116. align-self:flex-start;
  1117. padding:0px 0px 0px 0px;
  1118. box-sizing:border-box;
  1119. width:100%;
  1120. }
  1121. #u142612_text {
  1122. border-width:0px;
  1123. white-space:nowrap;
  1124. text-transform:none;
  1125. }
  1126. #u142613_img {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:0px;
  1130. top:0px;
  1131. width:8px;
  1132. height:14px;
  1133. }
  1134. #u142613 {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:229px;
  1138. top:104px;
  1139. width:8px;
  1140. height:14px;
  1141. display:flex;
  1142. }
  1143. #u142613 .text {
  1144. position:absolute;
  1145. align-self:center;
  1146. padding:2px 2px 2px 2px;
  1147. box-sizing:border-box;
  1148. width:100%;
  1149. }
  1150. #u142613_text {
  1151. border-width:0px;
  1152. word-wrap:break-word;
  1153. text-transform:none;
  1154. visibility:hidden;
  1155. }
  1156. #u142614_div {
  1157. border-width:0px;
  1158. position:absolute;
  1159. left:0px;
  1160. top:0px;
  1161. width:280px;
  1162. height:30px;
  1163. background:inherit;
  1164. background-color:rgba(255, 255, 255, 0);
  1165. border:none;
  1166. border-radius:0px;
  1167. -moz-box-shadow:none;
  1168. -webkit-box-shadow:none;
  1169. box-shadow:none;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. line-height:30px;
  1174. }
  1175. #u142614 {
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:259px;
  1179. top:221px;
  1180. width:280px;
  1181. height:30px;
  1182. display:flex;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. line-height:30px;
  1187. }
  1188. #u142614 .text {
  1189. position:absolute;
  1190. align-self:flex-start;
  1191. padding:0px 0px 0px 0px;
  1192. box-sizing:border-box;
  1193. width:100%;
  1194. }
  1195. #u142614_text {
  1196. border-width:0px;
  1197. word-wrap:break-word;
  1198. text-transform:none;
  1199. }
  1200. #u142615_div {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:0px;
  1204. top:0px;
  1205. width:280px;
  1206. height:30px;
  1207. background:inherit;
  1208. background-color:rgba(255, 255, 255, 0);
  1209. border:none;
  1210. border-radius:0px;
  1211. -moz-box-shadow:none;
  1212. -webkit-box-shadow:none;
  1213. box-shadow:none;
  1214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1215. font-weight:400;
  1216. font-style:normal;
  1217. line-height:30px;
  1218. }
  1219. #u142615 {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:914px;
  1223. top:221px;
  1224. width:280px;
  1225. height:30px;
  1226. display:flex;
  1227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1228. font-weight:400;
  1229. font-style:normal;
  1230. line-height:30px;
  1231. }
  1232. #u142615 .text {
  1233. position:absolute;
  1234. align-self:flex-start;
  1235. padding:0px 0px 0px 0px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u142615_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. }
  1244. #u142616_div {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:280px;
  1250. height:30px;
  1251. background:inherit;
  1252. background-color:rgba(255, 255, 255, 0);
  1253. border:none;
  1254. border-radius:0px;
  1255. -moz-box-shadow:none;
  1256. -webkit-box-shadow:none;
  1257. box-shadow:none;
  1258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1259. font-weight:400;
  1260. font-style:normal;
  1261. line-height:30px;
  1262. }
  1263. #u142616 {
  1264. border-width:0px;
  1265. position:absolute;
  1266. left:586px;
  1267. top:221px;
  1268. width:280px;
  1269. height:30px;
  1270. display:flex;
  1271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1272. font-weight:400;
  1273. font-style:normal;
  1274. line-height:30px;
  1275. }
  1276. #u142616 .text {
  1277. position:absolute;
  1278. align-self:flex-start;
  1279. padding:0px 0px 0px 0px;
  1280. box-sizing:border-box;
  1281. width:100%;
  1282. }
  1283. #u142616_text {
  1284. border-width:0px;
  1285. word-wrap:break-word;
  1286. text-transform:none;
  1287. }
  1288. #u142617_div {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:0px;
  1292. top:0px;
  1293. width:280px;
  1294. height:30px;
  1295. background:inherit;
  1296. background-color:rgba(255, 255, 255, 0);
  1297. border:none;
  1298. border-radius:0px;
  1299. -moz-box-shadow:none;
  1300. -webkit-box-shadow:none;
  1301. box-shadow:none;
  1302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1303. font-weight:400;
  1304. font-style:normal;
  1305. line-height:30px;
  1306. }
  1307. #u142617 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:1241px;
  1311. top:221px;
  1312. width:280px;
  1313. height:30px;
  1314. display:flex;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. line-height:30px;
  1319. }
  1320. #u142617 .text {
  1321. position:absolute;
  1322. align-self:flex-start;
  1323. padding:0px 0px 0px 0px;
  1324. box-sizing:border-box;
  1325. width:100%;
  1326. }
  1327. #u142617_text {
  1328. border-width:0px;
  1329. word-wrap:break-word;
  1330. text-transform:none;
  1331. }
  1332. #u142618_div {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:0px;
  1336. top:0px;
  1337. width:280px;
  1338. height:25px;
  1339. background:inherit;
  1340. background-color:rgba(255, 255, 255, 0);
  1341. box-sizing:border-box;
  1342. border-width:2px;
  1343. border-style:solid;
  1344. border-color:rgba(0, 0, 0, 1);
  1345. border-top:0px;
  1346. border-right:0px;
  1347. border-bottom:0px;
  1348. border-radius:0px;
  1349. border-top-left-radius:0px;
  1350. border-bottom-left-radius:0px;
  1351. -moz-box-shadow:none;
  1352. -webkit-box-shadow:none;
  1353. box-shadow:none;
  1354. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1355. font-weight:500;
  1356. font-style:normal;
  1357. font-size:18px;
  1358. color:#000000;
  1359. }
  1360. #u142618 {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:259px;
  1364. top:171px;
  1365. width:280px;
  1366. height:25px;
  1367. display:flex;
  1368. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1369. font-weight:500;
  1370. font-style:normal;
  1371. font-size:18px;
  1372. color:#000000;
  1373. }
  1374. #u142618 .text {
  1375. position:absolute;
  1376. align-self:flex-start;
  1377. padding:0px 0px 0px 10px;
  1378. box-sizing:border-box;
  1379. width:100%;
  1380. }
  1381. #u142618_text {
  1382. border-width:0px;
  1383. word-wrap:break-word;
  1384. text-transform:none;
  1385. }
  1386. #u142619_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:280px;
  1392. height:30px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. line-height:30px;
  1404. }
  1405. #u142619 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:914px;
  1409. top:1209px;
  1410. width:280px;
  1411. height:30px;
  1412. display:flex;
  1413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1414. font-weight:400;
  1415. font-style:normal;
  1416. line-height:30px;
  1417. }
  1418. #u142619 .text {
  1419. position:absolute;
  1420. align-self:flex-start;
  1421. padding:0px 0px 0px 0px;
  1422. box-sizing:border-box;
  1423. width:100%;
  1424. }
  1425. #u142619_text {
  1426. border-width:0px;
  1427. word-wrap:break-word;
  1428. text-transform:none;
  1429. }
  1430. #u142620_div {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:280px;
  1436. height:30px;
  1437. background:inherit;
  1438. background-color:rgba(255, 255, 255, 0);
  1439. border:none;
  1440. border-radius:0px;
  1441. -moz-box-shadow:none;
  1442. -webkit-box-shadow:none;
  1443. box-shadow:none;
  1444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1445. font-weight:400;
  1446. font-style:normal;
  1447. line-height:30px;
  1448. }
  1449. #u142620 {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:259px;
  1453. top:1319px;
  1454. width:280px;
  1455. height:30px;
  1456. display:flex;
  1457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1458. font-weight:400;
  1459. font-style:normal;
  1460. line-height:30px;
  1461. }
  1462. #u142620 .text {
  1463. position:absolute;
  1464. align-self:flex-start;
  1465. padding:0px 0px 0px 0px;
  1466. box-sizing:border-box;
  1467. width:100%;
  1468. }
  1469. #u142620_text {
  1470. border-width:0px;
  1471. word-wrap:break-word;
  1472. text-transform:none;
  1473. }
  1474. #u142621_div {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:280px;
  1480. height:30px;
  1481. background:inherit;
  1482. background-color:rgba(255, 255, 255, 0);
  1483. border:none;
  1484. border-radius:0px;
  1485. -moz-box-shadow:none;
  1486. -webkit-box-shadow:none;
  1487. box-shadow:none;
  1488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1489. font-weight:400;
  1490. font-style:normal;
  1491. line-height:30px;
  1492. }
  1493. #u142621 {
  1494. border-width:0px;
  1495. position:absolute;
  1496. left:586px;
  1497. top:1209px;
  1498. width:280px;
  1499. height:30px;
  1500. display:flex;
  1501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1502. font-weight:400;
  1503. font-style:normal;
  1504. line-height:30px;
  1505. }
  1506. #u142621 .text {
  1507. position:absolute;
  1508. align-self:flex-start;
  1509. padding:0px 0px 0px 0px;
  1510. box-sizing:border-box;
  1511. width:100%;
  1512. }
  1513. #u142621_text {
  1514. border-width:0px;
  1515. word-wrap:break-word;
  1516. text-transform:none;
  1517. }
  1518. #u142622_div {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:0px;
  1522. top:0px;
  1523. width:280px;
  1524. height:30px;
  1525. background:inherit;
  1526. background-color:rgba(255, 255, 255, 0);
  1527. border:none;
  1528. border-radius:0px;
  1529. -moz-box-shadow:none;
  1530. -webkit-box-shadow:none;
  1531. box-shadow:none;
  1532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1533. font-weight:400;
  1534. font-style:normal;
  1535. line-height:30px;
  1536. }
  1537. #u142622 {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:586px;
  1541. top:1319px;
  1542. width:280px;
  1543. height:30px;
  1544. display:flex;
  1545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1546. font-weight:400;
  1547. font-style:normal;
  1548. line-height:30px;
  1549. }
  1550. #u142622 .text {
  1551. position:absolute;
  1552. align-self:flex-start;
  1553. padding:0px 0px 0px 0px;
  1554. box-sizing:border-box;
  1555. width:100%;
  1556. }
  1557. #u142622_text {
  1558. border-width:0px;
  1559. word-wrap:break-word;
  1560. text-transform:none;
  1561. }
  1562. #u142623_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:280px;
  1568. height:25px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. box-sizing:border-box;
  1572. border-width:2px;
  1573. border-style:solid;
  1574. border-color:rgba(0, 0, 0, 1);
  1575. border-top:0px;
  1576. border-right:0px;
  1577. border-bottom:0px;
  1578. border-radius:0px;
  1579. border-top-left-radius:0px;
  1580. border-bottom-left-radius:0px;
  1581. -moz-box-shadow:none;
  1582. -webkit-box-shadow:none;
  1583. box-shadow:none;
  1584. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1585. font-weight:500;
  1586. font-style:normal;
  1587. font-size:18px;
  1588. color:#000000;
  1589. }
  1590. #u142623 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:259px;
  1594. top:1120px;
  1595. width:280px;
  1596. height:25px;
  1597. display:flex;
  1598. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1599. font-weight:500;
  1600. font-style:normal;
  1601. font-size:18px;
  1602. color:#000000;
  1603. }
  1604. #u142623 .text {
  1605. position:absolute;
  1606. align-self:flex-start;
  1607. padding:0px 0px 0px 10px;
  1608. box-sizing:border-box;
  1609. width:100%;
  1610. }
  1611. #u142623_text {
  1612. border-width:0px;
  1613. word-wrap:break-word;
  1614. text-transform:none;
  1615. }
  1616. #u142624_div {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:280px;
  1622. height:30px;
  1623. background:inherit;
  1624. background-color:rgba(255, 255, 255, 0);
  1625. border:none;
  1626. border-radius:0px;
  1627. -moz-box-shadow:none;
  1628. -webkit-box-shadow:none;
  1629. box-shadow:none;
  1630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1631. font-weight:400;
  1632. font-style:normal;
  1633. line-height:30px;
  1634. }
  1635. #u142624 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:1241px;
  1639. top:1169px;
  1640. width:280px;
  1641. height:30px;
  1642. display:flex;
  1643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. line-height:30px;
  1647. }
  1648. #u142624 .text {
  1649. position:absolute;
  1650. align-self:flex-start;
  1651. padding:0px 0px 0px 0px;
  1652. box-sizing:border-box;
  1653. width:100%;
  1654. }
  1655. #u142624_text {
  1656. border-width:0px;
  1657. word-wrap:break-word;
  1658. text-transform:none;
  1659. }
  1660. #u142625_div {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:0px;
  1664. top:0px;
  1665. width:280px;
  1666. height:30px;
  1667. background:inherit;
  1668. background-color:rgba(255, 255, 255, 0);
  1669. border:none;
  1670. border-radius:0px;
  1671. -moz-box-shadow:none;
  1672. -webkit-box-shadow:none;
  1673. box-shadow:none;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. line-height:30px;
  1678. }
  1679. #u142625 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:259px;
  1683. top:1169px;
  1684. width:280px;
  1685. height:30px;
  1686. display:flex;
  1687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1688. font-weight:400;
  1689. font-style:normal;
  1690. line-height:30px;
  1691. }
  1692. #u142625 .text {
  1693. position:absolute;
  1694. align-self:flex-start;
  1695. padding:0px 0px 0px 0px;
  1696. box-sizing:border-box;
  1697. width:100%;
  1698. }
  1699. #u142625_text {
  1700. border-width:0px;
  1701. word-wrap:break-word;
  1702. text-transform:none;
  1703. }
  1704. #u142626_div {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:280px;
  1710. height:30px;
  1711. background:inherit;
  1712. background-color:rgba(255, 255, 255, 0);
  1713. border:none;
  1714. border-radius:0px;
  1715. -moz-box-shadow:none;
  1716. -webkit-box-shadow:none;
  1717. box-shadow:none;
  1718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1719. font-weight:400;
  1720. font-style:normal;
  1721. line-height:30px;
  1722. }
  1723. #u142626 {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:586px;
  1727. top:1169px;
  1728. width:280px;
  1729. height:30px;
  1730. display:flex;
  1731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1732. font-weight:400;
  1733. font-style:normal;
  1734. line-height:30px;
  1735. }
  1736. #u142626 .text {
  1737. position:absolute;
  1738. align-self:flex-start;
  1739. padding:0px 0px 0px 0px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u142626_text {
  1744. border-width:0px;
  1745. word-wrap:break-word;
  1746. text-transform:none;
  1747. }
  1748. #u142627_div {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:280px;
  1754. height:25px;
  1755. background:inherit;
  1756. background-color:rgba(255, 255, 255, 0);
  1757. box-sizing:border-box;
  1758. border-width:2px;
  1759. border-style:solid;
  1760. border-color:rgba(0, 0, 0, 1);
  1761. border-top:0px;
  1762. border-right:0px;
  1763. border-bottom:0px;
  1764. border-radius:0px;
  1765. border-top-left-radius:0px;
  1766. border-bottom-left-radius:0px;
  1767. -moz-box-shadow:none;
  1768. -webkit-box-shadow:none;
  1769. box-shadow:none;
  1770. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1771. font-weight:500;
  1772. font-style:normal;
  1773. font-size:18px;
  1774. color:#000000;
  1775. }
  1776. #u142627 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:259px;
  1780. top:1269px;
  1781. width:280px;
  1782. height:25px;
  1783. display:flex;
  1784. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1785. font-weight:500;
  1786. font-style:normal;
  1787. font-size:18px;
  1788. color:#000000;
  1789. }
  1790. #u142627 .text {
  1791. position:absolute;
  1792. align-self:flex-start;
  1793. padding:0px 0px 0px 10px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u142627_text {
  1798. border-width:0px;
  1799. word-wrap:break-word;
  1800. text-transform:none;
  1801. }
  1802. #u142628_div {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:280px;
  1808. height:30px;
  1809. background:inherit;
  1810. background-color:rgba(255, 255, 255, 0);
  1811. border:none;
  1812. border-radius:0px;
  1813. -moz-box-shadow:none;
  1814. -webkit-box-shadow:none;
  1815. box-shadow:none;
  1816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1817. font-weight:400;
  1818. font-style:normal;
  1819. line-height:30px;
  1820. }
  1821. #u142628 {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:259px;
  1825. top:1429px;
  1826. width:280px;
  1827. height:30px;
  1828. display:flex;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. line-height:30px;
  1833. }
  1834. #u142628 .text {
  1835. position:absolute;
  1836. align-self:flex-start;
  1837. padding:0px 0px 0px 0px;
  1838. box-sizing:border-box;
  1839. width:100%;
  1840. }
  1841. #u142628_text {
  1842. border-width:0px;
  1843. word-wrap:break-word;
  1844. text-transform:none;
  1845. }
  1846. #u142629_div {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:280px;
  1852. height:25px;
  1853. background:inherit;
  1854. background-color:rgba(255, 255, 255, 0);
  1855. box-sizing:border-box;
  1856. border-width:2px;
  1857. border-style:solid;
  1858. border-color:rgba(0, 0, 0, 1);
  1859. border-top:0px;
  1860. border-right:0px;
  1861. border-bottom:0px;
  1862. border-radius:0px;
  1863. border-top-left-radius:0px;
  1864. border-bottom-left-radius:0px;
  1865. -moz-box-shadow:none;
  1866. -webkit-box-shadow:none;
  1867. box-shadow:none;
  1868. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1869. font-weight:500;
  1870. font-style:normal;
  1871. font-size:18px;
  1872. color:#000000;
  1873. }
  1874. #u142629 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:259px;
  1878. top:1379px;
  1879. width:280px;
  1880. height:25px;
  1881. display:flex;
  1882. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1883. font-weight:500;
  1884. font-style:normal;
  1885. font-size:18px;
  1886. color:#000000;
  1887. }
  1888. #u142629 .text {
  1889. position:absolute;
  1890. align-self:flex-start;
  1891. padding:0px 0px 0px 10px;
  1892. box-sizing:border-box;
  1893. width:100%;
  1894. }
  1895. #u142629_text {
  1896. border-width:0px;
  1897. word-wrap:break-word;
  1898. text-transform:none;
  1899. }
  1900. #u142630_div {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:280px;
  1906. height:30px;
  1907. background:inherit;
  1908. background-color:rgba(255, 255, 255, 0);
  1909. border:none;
  1910. border-radius:0px;
  1911. -moz-box-shadow:none;
  1912. -webkit-box-shadow:none;
  1913. box-shadow:none;
  1914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. line-height:30px;
  1918. }
  1919. #u142630 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:914px;
  1923. top:1169px;
  1924. width:280px;
  1925. height:30px;
  1926. display:flex;
  1927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1928. font-weight:400;
  1929. font-style:normal;
  1930. line-height:30px;
  1931. }
  1932. #u142630 .text {
  1933. position:absolute;
  1934. align-self:flex-start;
  1935. padding:0px 0px 0px 0px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u142630_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. }
  1944. #u142631_div {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:280px;
  1950. height:30px;
  1951. background:inherit;
  1952. background-color:rgba(255, 255, 255, 0);
  1953. border:none;
  1954. border-radius:0px;
  1955. -moz-box-shadow:none;
  1956. -webkit-box-shadow:none;
  1957. box-shadow:none;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. line-height:30px;
  1962. }
  1963. #u142631 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:259px;
  1967. top:261px;
  1968. width:280px;
  1969. height:30px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. line-height:30px;
  1975. }
  1976. #u142631 .text {
  1977. position:absolute;
  1978. align-self:flex-start;
  1979. padding:0px 0px 0px 0px;
  1980. box-sizing:border-box;
  1981. width:100%;
  1982. }
  1983. #u142631_text {
  1984. border-width:0px;
  1985. word-wrap:break-word;
  1986. text-transform:none;
  1987. }
  1988. #u142632_div {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:0px;
  1993. width:280px;
  1994. height:30px;
  1995. background:inherit;
  1996. background-color:rgba(255, 255, 255, 0);
  1997. border:none;
  1998. border-radius:0px;
  1999. -moz-box-shadow:none;
  2000. -webkit-box-shadow:none;
  2001. box-shadow:none;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. line-height:30px;
  2006. }
  2007. #u142632 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:586px;
  2011. top:261px;
  2012. width:280px;
  2013. height:30px;
  2014. display:flex;
  2015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2016. font-weight:400;
  2017. font-style:normal;
  2018. line-height:30px;
  2019. }
  2020. #u142632 .text {
  2021. position:absolute;
  2022. align-self:flex-start;
  2023. padding:0px 0px 0px 0px;
  2024. box-sizing:border-box;
  2025. width:100%;
  2026. }
  2027. #u142632_text {
  2028. border-width:0px;
  2029. word-wrap:break-word;
  2030. text-transform:none;
  2031. }
  2032. #u142633_div {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:57px;
  2038. height:30px;
  2039. background:inherit;
  2040. background-color:rgba(255, 255, 255, 0);
  2041. border:none;
  2042. border-radius:0px;
  2043. -moz-box-shadow:none;
  2044. -webkit-box-shadow:none;
  2045. box-shadow:none;
  2046. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2047. font-weight:500;
  2048. font-style:normal;
  2049. color:#000000;
  2050. line-height:30px;
  2051. }
  2052. #u142633 {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:259px;
  2056. top:366px;
  2057. width:57px;
  2058. height:30px;
  2059. display:flex;
  2060. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2061. font-weight:500;
  2062. font-style:normal;
  2063. color:#000000;
  2064. line-height:30px;
  2065. }
  2066. #u142633 .text {
  2067. position:absolute;
  2068. align-self:flex-start;
  2069. padding:0px 0px 0px 0px;
  2070. box-sizing:border-box;
  2071. width:100%;
  2072. }
  2073. #u142633_text {
  2074. border-width:0px;
  2075. white-space:nowrap;
  2076. text-transform:none;
  2077. }
  2078. #u142634 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:0px;
  2084. height:0px;
  2085. }
  2086. #u142635_img {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:1244px;
  2092. height:2px;
  2093. }
  2094. #u142635 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:259px;
  2098. top:455px;
  2099. width:1243px;
  2100. height:1px;
  2101. display:flex;
  2102. }
  2103. #u142635 .text {
  2104. position:absolute;
  2105. align-self:center;
  2106. padding:2px 2px 2px 2px;
  2107. box-sizing:border-box;
  2108. width:100%;
  2109. }
  2110. #u142635_text {
  2111. border-width:0px;
  2112. word-wrap:break-word;
  2113. text-transform:none;
  2114. visibility:hidden;
  2115. }
  2116. #u142636 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:0px;
  2122. height:0px;
  2123. }
  2124. #u142637_img {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:10px;
  2130. height:10px;
  2131. }
  2132. #u142637 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:326px;
  2136. top:451px;
  2137. width:10px;
  2138. height:10px;
  2139. display:flex;
  2140. font-size:12px;
  2141. }
  2142. #u142637 .text {
  2143. position:absolute;
  2144. align-self:center;
  2145. padding:2px 2px 2px 2px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u142637_text {
  2150. border-width:0px;
  2151. word-wrap:break-word;
  2152. text-transform:none;
  2153. visibility:hidden;
  2154. }
  2155. #u142638_div {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:49px;
  2161. height:30px;
  2162. background:inherit;
  2163. background-color:rgba(255, 255, 255, 0);
  2164. border:none;
  2165. border-radius:0px;
  2166. -moz-box-shadow:none;
  2167. -webkit-box-shadow:none;
  2168. box-shadow:none;
  2169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:12px;
  2173. line-height:30px;
  2174. }
  2175. #u142638 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:307px;
  2179. top:412px;
  2180. width:49px;
  2181. height:30px;
  2182. display:flex;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:12px;
  2187. line-height:30px;
  2188. }
  2189. #u142638 .text {
  2190. position:absolute;
  2191. align-self:flex-start;
  2192. padding:0px 0px 0px 0px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u142638_text {
  2197. border-width:0px;
  2198. white-space:nowrap;
  2199. text-transform:none;
  2200. }
  2201. #u142639_div {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:104px;
  2207. height:17px;
  2208. background:inherit;
  2209. background-color:rgba(255, 255, 255, 0);
  2210. border:none;
  2211. border-radius:0px;
  2212. -moz-box-shadow:none;
  2213. -webkit-box-shadow:none;
  2214. box-shadow:none;
  2215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2216. font-weight:400;
  2217. font-style:normal;
  2218. font-size:12px;
  2219. text-align:center;
  2220. }
  2221. #u142639 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:279px;
  2225. top:471px;
  2226. width:104px;
  2227. height:17px;
  2228. display:flex;
  2229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2230. font-weight:400;
  2231. font-style:normal;
  2232. font-size:12px;
  2233. text-align:center;
  2234. }
  2235. #u142639 .text {
  2236. position:absolute;
  2237. align-self:flex-start;
  2238. padding:0px 0px 0px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u142639_text {
  2243. border-width:0px;
  2244. white-space:nowrap;
  2245. text-transform:none;
  2246. }
  2247. #u142640 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:0px;
  2253. height:0px;
  2254. }
  2255. #u142641_img {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:10px;
  2261. height:10px;
  2262. }
  2263. #u142641 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:1406px;
  2267. top:451px;
  2268. width:10px;
  2269. height:10px;
  2270. display:flex;
  2271. font-size:12px;
  2272. }
  2273. #u142641 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 2px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u142641_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. visibility:hidden;
  2285. }
  2286. #u142642_div {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:49px;
  2292. height:30px;
  2293. background:inherit;
  2294. background-color:rgba(255, 255, 255, 0);
  2295. border:none;
  2296. border-radius:0px;
  2297. -moz-box-shadow:none;
  2298. -webkit-box-shadow:none;
  2299. box-shadow:none;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:12px;
  2304. line-height:30px;
  2305. }
  2306. #u142642 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:1387px;
  2310. top:417px;
  2311. width:49px;
  2312. height:30px;
  2313. display:flex;
  2314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:12px;
  2318. line-height:30px;
  2319. }
  2320. #u142642 .text {
  2321. position:absolute;
  2322. align-self:flex-start;
  2323. padding:0px 0px 0px 0px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u142642_text {
  2328. border-width:0px;
  2329. white-space:nowrap;
  2330. text-transform:none;
  2331. }
  2332. #u142643_div {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:0px;
  2336. top:0px;
  2337. width:102px;
  2338. height:17px;
  2339. background:inherit;
  2340. background-color:rgba(255, 255, 255, 0);
  2341. border:none;
  2342. border-radius:0px;
  2343. -moz-box-shadow:none;
  2344. -webkit-box-shadow:none;
  2345. box-shadow:none;
  2346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2347. font-weight:400;
  2348. font-style:normal;
  2349. font-size:12px;
  2350. text-align:center;
  2351. }
  2352. #u142643 {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:1360px;
  2356. top:466px;
  2357. width:102px;
  2358. height:17px;
  2359. display:flex;
  2360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. font-size:12px;
  2364. text-align:center;
  2365. }
  2366. #u142643 .text {
  2367. position:absolute;
  2368. align-self:flex-start;
  2369. padding:0px 0px 0px 0px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u142643_text {
  2374. border-width:0px;
  2375. white-space:nowrap;
  2376. text-transform:none;
  2377. }
  2378. #u142644 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:0px;
  2384. height:0px;
  2385. }
  2386. #u142645_img {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:10px;
  2392. height:10px;
  2393. }
  2394. #u142645 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:1223px;
  2398. top:451px;
  2399. width:10px;
  2400. height:10px;
  2401. display:flex;
  2402. font-size:12px;
  2403. }
  2404. #u142645 .text {
  2405. position:absolute;
  2406. align-self:center;
  2407. padding:2px 2px 2px 2px;
  2408. box-sizing:border-box;
  2409. width:100%;
  2410. }
  2411. #u142645_text {
  2412. border-width:0px;
  2413. word-wrap:break-word;
  2414. text-transform:none;
  2415. visibility:hidden;
  2416. }
  2417. #u142646_div {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:49px;
  2423. height:30px;
  2424. background:inherit;
  2425. background-color:rgba(255, 255, 255, 0);
  2426. border:none;
  2427. border-radius:0px;
  2428. -moz-box-shadow:none;
  2429. -webkit-box-shadow:none;
  2430. box-shadow:none;
  2431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2432. font-weight:400;
  2433. font-style:normal;
  2434. font-size:12px;
  2435. line-height:30px;
  2436. }
  2437. #u142646 {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:1204px;
  2441. top:417px;
  2442. width:49px;
  2443. height:30px;
  2444. display:flex;
  2445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2446. font-weight:400;
  2447. font-style:normal;
  2448. font-size:12px;
  2449. line-height:30px;
  2450. }
  2451. #u142646 .text {
  2452. position:absolute;
  2453. align-self:flex-start;
  2454. padding:0px 0px 0px 0px;
  2455. box-sizing:border-box;
  2456. width:100%;
  2457. }
  2458. #u142646_text {
  2459. border-width:0px;
  2460. white-space:nowrap;
  2461. text-transform:none;
  2462. }
  2463. #u142647_div {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:102px;
  2469. height:17px;
  2470. background:inherit;
  2471. background-color:rgba(255, 255, 255, 0);
  2472. border:none;
  2473. border-radius:0px;
  2474. -moz-box-shadow:none;
  2475. -webkit-box-shadow:none;
  2476. box-shadow:none;
  2477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2478. font-weight:400;
  2479. font-style:normal;
  2480. font-size:12px;
  2481. text-align:center;
  2482. }
  2483. #u142647 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:1177px;
  2487. top:471px;
  2488. width:102px;
  2489. height:17px;
  2490. display:flex;
  2491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2492. font-weight:400;
  2493. font-style:normal;
  2494. font-size:12px;
  2495. text-align:center;
  2496. }
  2497. #u142647 .text {
  2498. position:absolute;
  2499. align-self:flex-start;
  2500. padding:0px 0px 0px 0px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u142647_text {
  2505. border-width:0px;
  2506. white-space:nowrap;
  2507. text-transform:none;
  2508. }
  2509. #u142648_div {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:117px;
  2515. height:30px;
  2516. background:inherit;
  2517. background-color:rgba(255, 255, 255, 0);
  2518. border:none;
  2519. border-radius:0px;
  2520. -moz-box-shadow:none;
  2521. -webkit-box-shadow:none;
  2522. box-shadow:none;
  2523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2524. font-weight:400;
  2525. font-style:normal;
  2526. font-size:12px;
  2527. color:#0089FE;
  2528. text-align:center;
  2529. line-height:30px;
  2530. }
  2531. #u142648 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:273px;
  2535. top:488px;
  2536. width:117px;
  2537. height:30px;
  2538. display:flex;
  2539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:12px;
  2543. color:#0089FE;
  2544. text-align:center;
  2545. line-height:30px;
  2546. }
  2547. #u142648 .text {
  2548. position:absolute;
  2549. align-self:flex-start;
  2550. padding:0px 0px 0px 0px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u142648_text {
  2555. border-width:0px;
  2556. white-space:nowrap;
  2557. text-transform:none;
  2558. }
  2559. #u142649_div {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:49px;
  2565. height:30px;
  2566. background:inherit;
  2567. background-color:rgba(255, 255, 255, 0);
  2568. border:none;
  2569. border-radius:0px;
  2570. -moz-box-shadow:none;
  2571. -webkit-box-shadow:none;
  2572. box-shadow:none;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. font-size:12px;
  2577. color:#0089FE;
  2578. text-align:center;
  2579. line-height:30px;
  2580. }
  2581. #u142649 {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:1200px;
  2585. top:488px;
  2586. width:49px;
  2587. height:30px;
  2588. display:flex;
  2589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. font-size:12px;
  2593. color:#0089FE;
  2594. text-align:center;
  2595. line-height:30px;
  2596. }
  2597. #u142649 .text {
  2598. position:absolute;
  2599. align-self:flex-start;
  2600. padding:0px 0px 0px 0px;
  2601. box-sizing:border-box;
  2602. width:100%;
  2603. }
  2604. #u142649_text {
  2605. border-width:0px;
  2606. white-space:nowrap;
  2607. text-transform:none;
  2608. }
  2609. #u142650_div {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:117px;
  2615. height:30px;
  2616. background:inherit;
  2617. background-color:rgba(255, 255, 255, 0);
  2618. border:none;
  2619. border-radius:0px;
  2620. -moz-box-shadow:none;
  2621. -webkit-box-shadow:none;
  2622. box-shadow:none;
  2623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2624. font-weight:400;
  2625. font-style:normal;
  2626. font-size:12px;
  2627. color:#0089FE;
  2628. text-align:center;
  2629. line-height:30px;
  2630. }
  2631. #u142650 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:1353px;
  2635. top:487px;
  2636. width:117px;
  2637. height:30px;
  2638. display:flex;
  2639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2640. font-weight:400;
  2641. font-style:normal;
  2642. font-size:12px;
  2643. color:#0089FE;
  2644. text-align:center;
  2645. line-height:30px;
  2646. }
  2647. #u142650 .text {
  2648. position:absolute;
  2649. align-self:flex-start;
  2650. padding:0px 0px 0px 0px;
  2651. box-sizing:border-box;
  2652. width:100%;
  2653. }
  2654. #u142650_text {
  2655. border-width:0px;
  2656. white-space:nowrap;
  2657. text-transform:none;
  2658. }
  2659. #u142651 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:0px;
  2663. top:0px;
  2664. width:0px;
  2665. height:0px;
  2666. }
  2667. #u142652_img {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:10px;
  2673. height:10px;
  2674. }
  2675. #u142652 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:506px;
  2679. top:451px;
  2680. width:10px;
  2681. height:10px;
  2682. display:flex;
  2683. font-size:12px;
  2684. }
  2685. #u142652 .text {
  2686. position:absolute;
  2687. align-self:center;
  2688. padding:2px 2px 2px 2px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u142652_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. visibility:hidden;
  2697. }
  2698. #u142653_div {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:49px;
  2704. height:30px;
  2705. background:inherit;
  2706. background-color:rgba(255, 255, 255, 0);
  2707. border:none;
  2708. border-radius:0px;
  2709. -moz-box-shadow:none;
  2710. -webkit-box-shadow:none;
  2711. box-shadow:none;
  2712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2713. font-weight:400;
  2714. font-style:normal;
  2715. font-size:12px;
  2716. line-height:30px;
  2717. }
  2718. #u142653 {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:487px;
  2722. top:412px;
  2723. width:49px;
  2724. height:30px;
  2725. display:flex;
  2726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2727. font-weight:400;
  2728. font-style:normal;
  2729. font-size:12px;
  2730. line-height:30px;
  2731. }
  2732. #u142653 .text {
  2733. position:absolute;
  2734. align-self:flex-start;
  2735. padding:0px 0px 0px 0px;
  2736. box-sizing:border-box;
  2737. width:100%;
  2738. }
  2739. #u142653_text {
  2740. border-width:0px;
  2741. white-space:nowrap;
  2742. text-transform:none;
  2743. }
  2744. #u142654_div {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:0px;
  2748. top:0px;
  2749. width:104px;
  2750. height:17px;
  2751. background:inherit;
  2752. background-color:rgba(255, 255, 255, 0);
  2753. border:none;
  2754. border-radius:0px;
  2755. -moz-box-shadow:none;
  2756. -webkit-box-shadow:none;
  2757. box-shadow:none;
  2758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2759. font-weight:400;
  2760. font-style:normal;
  2761. font-size:12px;
  2762. text-align:center;
  2763. }
  2764. #u142654 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:459px;
  2768. top:471px;
  2769. width:104px;
  2770. height:17px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:12px;
  2776. text-align:center;
  2777. }
  2778. #u142654 .text {
  2779. position:absolute;
  2780. align-self:flex-start;
  2781. padding:0px 0px 0px 0px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u142654_text {
  2786. border-width:0px;
  2787. white-space:nowrap;
  2788. text-transform:none;
  2789. }
  2790. #u142655_div {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:144px;
  2796. height:30px;
  2797. background:inherit;
  2798. background-color:rgba(255, 255, 255, 0);
  2799. border:none;
  2800. border-radius:0px;
  2801. -moz-box-shadow:none;
  2802. -webkit-box-shadow:none;
  2803. box-shadow:none;
  2804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2805. font-weight:400;
  2806. font-style:normal;
  2807. font-size:12px;
  2808. color:#0089FE;
  2809. text-align:center;
  2810. line-height:30px;
  2811. }
  2812. #u142655 {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:439px;
  2816. top:488px;
  2817. width:144px;
  2818. height:30px;
  2819. display:flex;
  2820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2821. font-weight:400;
  2822. font-style:normal;
  2823. font-size:12px;
  2824. color:#0089FE;
  2825. text-align:center;
  2826. line-height:30px;
  2827. }
  2828. #u142655 .text {
  2829. position:absolute;
  2830. align-self:flex-start;
  2831. padding:0px 0px 0px 0px;
  2832. box-sizing:border-box;
  2833. width:100%;
  2834. }
  2835. #u142655_text {
  2836. border-width:0px;
  2837. white-space:nowrap;
  2838. text-transform:none;
  2839. }
  2840. #u142656 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:0px;
  2846. height:0px;
  2847. }
  2848. #u142657_img {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:10px;
  2854. height:10px;
  2855. }
  2856. #u142657 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:686px;
  2860. top:451px;
  2861. width:10px;
  2862. height:10px;
  2863. display:flex;
  2864. font-size:12px;
  2865. }
  2866. #u142657 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u142657_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u142658_div {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:73px;
  2885. height:30px;
  2886. background:inherit;
  2887. background-color:rgba(255, 255, 255, 0);
  2888. border:none;
  2889. border-radius:0px;
  2890. -moz-box-shadow:none;
  2891. -webkit-box-shadow:none;
  2892. box-shadow:none;
  2893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2894. font-weight:400;
  2895. font-style:normal;
  2896. font-size:12px;
  2897. line-height:30px;
  2898. }
  2899. #u142658 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:655px;
  2903. top:412px;
  2904. width:73px;
  2905. height:30px;
  2906. display:flex;
  2907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:12px;
  2911. line-height:30px;
  2912. }
  2913. #u142658 .text {
  2914. position:absolute;
  2915. align-self:flex-start;
  2916. padding:0px 0px 0px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u142658_text {
  2921. border-width:0px;
  2922. white-space:nowrap;
  2923. text-transform:none;
  2924. }
  2925. #u142659_div {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:107px;
  2931. height:17px;
  2932. background:inherit;
  2933. background-color:rgba(255, 255, 255, 0);
  2934. border:none;
  2935. border-radius:0px;
  2936. -moz-box-shadow:none;
  2937. -webkit-box-shadow:none;
  2938. box-shadow:none;
  2939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2940. font-weight:400;
  2941. font-style:normal;
  2942. font-size:12px;
  2943. text-align:center;
  2944. }
  2945. #u142659 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:638px;
  2949. top:471px;
  2950. width:107px;
  2951. height:17px;
  2952. display:flex;
  2953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:12px;
  2957. text-align:center;
  2958. }
  2959. #u142659 .text {
  2960. position:absolute;
  2961. align-self:flex-start;
  2962. padding:0px 0px 0px 0px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u142659_text {
  2967. border-width:0px;
  2968. white-space:nowrap;
  2969. text-transform:none;
  2970. }
  2971. #u142660_div {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:80px;
  2977. height:30px;
  2978. background:inherit;
  2979. background-color:rgba(255, 255, 255, 0);
  2980. border:none;
  2981. border-radius:0px;
  2982. -moz-box-shadow:none;
  2983. -webkit-box-shadow:none;
  2984. box-shadow:none;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:12px;
  2989. color:#0089FE;
  2990. text-align:center;
  2991. line-height:30px;
  2992. }
  2993. #u142660 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:655px;
  2997. top:488px;
  2998. width:80px;
  2999. height:30px;
  3000. display:flex;
  3001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:12px;
  3005. color:#0089FE;
  3006. text-align:center;
  3007. line-height:30px;
  3008. }
  3009. #u142660 .text {
  3010. position:absolute;
  3011. align-self:flex-start;
  3012. padding:0px 0px 0px 0px;
  3013. box-sizing:border-box;
  3014. width:100%;
  3015. }
  3016. #u142660_text {
  3017. border-width:0px;
  3018. white-space:nowrap;
  3019. text-transform:none;
  3020. }
  3021. #u142661 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:0px;
  3027. height:0px;
  3028. }
  3029. #u142662_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:10px;
  3035. height:10px;
  3036. }
  3037. #u142662 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:866px;
  3041. top:451px;
  3042. width:10px;
  3043. height:10px;
  3044. display:flex;
  3045. font-size:12px;
  3046. }
  3047. #u142662 .text {
  3048. position:absolute;
  3049. align-self:center;
  3050. padding:2px 2px 2px 2px;
  3051. box-sizing:border-box;
  3052. width:100%;
  3053. }
  3054. #u142662_text {
  3055. border-width:0px;
  3056. word-wrap:break-word;
  3057. text-transform:none;
  3058. visibility:hidden;
  3059. }
  3060. #u142663_div {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:0px;
  3064. top:0px;
  3065. width:73px;
  3066. height:30px;
  3067. background:inherit;
  3068. background-color:rgba(255, 255, 255, 0);
  3069. border:none;
  3070. border-radius:0px;
  3071. -moz-box-shadow:none;
  3072. -webkit-box-shadow:none;
  3073. box-shadow:none;
  3074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3075. font-weight:400;
  3076. font-style:normal;
  3077. font-size:12px;
  3078. line-height:30px;
  3079. }
  3080. #u142663 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:835px;
  3084. top:412px;
  3085. width:73px;
  3086. height:30px;
  3087. display:flex;
  3088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3089. font-weight:400;
  3090. font-style:normal;
  3091. font-size:12px;
  3092. line-height:30px;
  3093. }
  3094. #u142663 .text {
  3095. position:absolute;
  3096. align-self:flex-start;
  3097. padding:0px 0px 0px 0px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u142663_text {
  3102. border-width:0px;
  3103. white-space:nowrap;
  3104. text-transform:none;
  3105. }
  3106. #u142664_div {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:99px;
  3112. height:17px;
  3113. background:inherit;
  3114. background-color:rgba(255, 255, 255, 0);
  3115. border:none;
  3116. border-radius:0px;
  3117. -moz-box-shadow:none;
  3118. -webkit-box-shadow:none;
  3119. box-shadow:none;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. text-align:center;
  3125. }
  3126. #u142664 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:822px;
  3130. top:471px;
  3131. width:99px;
  3132. height:17px;
  3133. display:flex;
  3134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:12px;
  3138. text-align:center;
  3139. }
  3140. #u142664 .text {
  3141. position:absolute;
  3142. align-self:flex-start;
  3143. padding:0px 0px 0px 0px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u142664_text {
  3148. border-width:0px;
  3149. white-space:nowrap;
  3150. text-transform:none;
  3151. }
  3152. #u142665_div {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:80px;
  3158. height:30px;
  3159. background:inherit;
  3160. background-color:rgba(255, 255, 255, 0);
  3161. border:none;
  3162. border-radius:0px;
  3163. -moz-box-shadow:none;
  3164. -webkit-box-shadow:none;
  3165. box-shadow:none;
  3166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3167. font-weight:400;
  3168. font-style:normal;
  3169. font-size:12px;
  3170. color:#0089FE;
  3171. text-align:center;
  3172. line-height:30px;
  3173. }
  3174. #u142665 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:831px;
  3178. top:488px;
  3179. width:80px;
  3180. height:30px;
  3181. display:flex;
  3182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3183. font-weight:400;
  3184. font-style:normal;
  3185. font-size:12px;
  3186. color:#0089FE;
  3187. text-align:center;
  3188. line-height:30px;
  3189. }
  3190. #u142665 .text {
  3191. position:absolute;
  3192. align-self:flex-start;
  3193. padding:0px 0px 0px 0px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u142665_text {
  3198. border-width:0px;
  3199. white-space:nowrap;
  3200. text-transform:none;
  3201. }
  3202. #u142666 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:0px;
  3208. height:0px;
  3209. }
  3210. #u142667_img {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:10px;
  3216. height:10px;
  3217. }
  3218. #u142667 {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:1032px;
  3222. top:451px;
  3223. width:10px;
  3224. height:10px;
  3225. display:flex;
  3226. font-size:12px;
  3227. }
  3228. #u142667 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 2px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u142667_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u142668_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:49px;
  3247. height:30px;
  3248. background:inherit;
  3249. background-color:rgba(255, 255, 255, 0);
  3250. border:none;
  3251. border-radius:0px;
  3252. -moz-box-shadow:none;
  3253. -webkit-box-shadow:none;
  3254. box-shadow:none;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:12px;
  3259. line-height:30px;
  3260. }
  3261. #u142668 {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:1013px;
  3265. top:417px;
  3266. width:49px;
  3267. height:30px;
  3268. display:flex;
  3269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3270. font-weight:400;
  3271. font-style:normal;
  3272. font-size:12px;
  3273. line-height:30px;
  3274. }
  3275. #u142668 .text {
  3276. position:absolute;
  3277. align-self:flex-start;
  3278. padding:0px 0px 0px 0px;
  3279. box-sizing:border-box;
  3280. width:100%;
  3281. }
  3282. #u142668_text {
  3283. border-width:0px;
  3284. white-space:nowrap;
  3285. text-transform:none;
  3286. }
  3287. #u142669_div {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:102px;
  3293. height:17px;
  3294. background:inherit;
  3295. background-color:rgba(255, 255, 255, 0);
  3296. border:none;
  3297. border-radius:0px;
  3298. -moz-box-shadow:none;
  3299. -webkit-box-shadow:none;
  3300. box-shadow:none;
  3301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:12px;
  3305. text-align:center;
  3306. }
  3307. #u142669 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:986px;
  3311. top:466px;
  3312. width:102px;
  3313. height:17px;
  3314. display:flex;
  3315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3316. font-weight:400;
  3317. font-style:normal;
  3318. font-size:12px;
  3319. text-align:center;
  3320. }
  3321. #u142669 .text {
  3322. position:absolute;
  3323. align-self:flex-start;
  3324. padding:0px 0px 0px 0px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u142669_text {
  3329. border-width:0px;
  3330. white-space:nowrap;
  3331. text-transform:none;
  3332. }
  3333. #u142670_div {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:144px;
  3339. height:30px;
  3340. background:inherit;
  3341. background-color:rgba(255, 255, 255, 0);
  3342. border:none;
  3343. border-radius:0px;
  3344. -moz-box-shadow:none;
  3345. -webkit-box-shadow:none;
  3346. box-shadow:none;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:12px;
  3351. color:#0089FE;
  3352. text-align:center;
  3353. line-height:30px;
  3354. }
  3355. #u142670 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:965px;
  3359. top:487px;
  3360. width:144px;
  3361. height:30px;
  3362. display:flex;
  3363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3364. font-weight:400;
  3365. font-style:normal;
  3366. font-size:12px;
  3367. color:#0089FE;
  3368. text-align:center;
  3369. line-height:30px;
  3370. }
  3371. #u142670 .text {
  3372. position:absolute;
  3373. align-self:flex-start;
  3374. padding:0px 0px 0px 0px;
  3375. box-sizing:border-box;
  3376. width:100%;
  3377. }
  3378. #u142670_text {
  3379. border-width:0px;
  3380. white-space:nowrap;
  3381. text-transform:none;
  3382. }
  3383. #u142671_div {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:280px;
  3389. height:25px;
  3390. background:inherit;
  3391. background-color:rgba(255, 255, 255, 0);
  3392. box-sizing:border-box;
  3393. border-width:2px;
  3394. border-style:solid;
  3395. border-color:rgba(0, 0, 0, 1);
  3396. border-top:0px;
  3397. border-right:0px;
  3398. border-bottom:0px;
  3399. border-radius:0px;
  3400. border-top-left-radius:0px;
  3401. border-bottom-left-radius:0px;
  3402. -moz-box-shadow:none;
  3403. -webkit-box-shadow:none;
  3404. box-shadow:none;
  3405. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3406. font-weight:500;
  3407. font-style:normal;
  3408. font-size:18px;
  3409. color:#000000;
  3410. }
  3411. #u142671 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:259px;
  3415. top:321px;
  3416. width:280px;
  3417. height:25px;
  3418. display:flex;
  3419. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3420. font-weight:500;
  3421. font-style:normal;
  3422. font-size:18px;
  3423. color:#000000;
  3424. }
  3425. #u142671 .text {
  3426. position:absolute;
  3427. align-self:flex-start;
  3428. padding:0px 0px 0px 10px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u142671_text {
  3433. border-width:0px;
  3434. word-wrap:break-word;
  3435. text-transform:none;
  3436. }
  3437. #u142672 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:0px;
  3443. height:0px;
  3444. }
  3445. #u142673_div {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:0px;
  3449. top:0px;
  3450. width:1243px;
  3451. height:140px;
  3452. background:inherit;
  3453. background-color:rgba(242, 242, 242, 0.450980392156863);
  3454. border:none;
  3455. border-radius:0px;
  3456. -moz-box-shadow:none;
  3457. -webkit-box-shadow:none;
  3458. box-shadow:none;
  3459. }
  3460. #u142673 {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:259px;
  3464. top:528px;
  3465. width:1243px;
  3466. height:140px;
  3467. display:flex;
  3468. }
  3469. #u142673 .text {
  3470. position:absolute;
  3471. align-self:center;
  3472. padding:2px 2px 2px 2px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u142673_text {
  3477. border-width:0px;
  3478. word-wrap:break-word;
  3479. text-transform:none;
  3480. visibility:hidden;
  3481. }
  3482. #u142674_div {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:0px;
  3486. top:0px;
  3487. width:57px;
  3488. height:30px;
  3489. background:inherit;
  3490. background-color:rgba(255, 255, 255, 0);
  3491. border:none;
  3492. border-radius:0px;
  3493. -moz-box-shadow:none;
  3494. -webkit-box-shadow:none;
  3495. box-shadow:none;
  3496. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3497. font-weight:500;
  3498. font-style:normal;
  3499. line-height:30px;
  3500. }
  3501. #u142674 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:273px;
  3505. top:543px;
  3506. width:57px;
  3507. height:30px;
  3508. display:flex;
  3509. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3510. font-weight:500;
  3511. font-style:normal;
  3512. line-height:30px;
  3513. }
  3514. #u142674 .text {
  3515. position:absolute;
  3516. align-self:flex-start;
  3517. padding:0px 0px 0px 0px;
  3518. box-sizing:border-box;
  3519. width:100%;
  3520. }
  3521. #u142674_text {
  3522. border-width:0px;
  3523. white-space:nowrap;
  3524. text-transform:none;
  3525. }
  3526. #u142675_div {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:280px;
  3532. height:30px;
  3533. background:inherit;
  3534. background-color:rgba(255, 255, 255, 0);
  3535. border:none;
  3536. border-radius:0px;
  3537. -moz-box-shadow:none;
  3538. -webkit-box-shadow:none;
  3539. box-shadow:none;
  3540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3541. font-weight:400;
  3542. font-style:normal;
  3543. line-height:30px;
  3544. }
  3545. #u142675 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:279px;
  3549. top:578px;
  3550. width:280px;
  3551. height:30px;
  3552. display:flex;
  3553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3554. font-weight:400;
  3555. font-style:normal;
  3556. line-height:30px;
  3557. }
  3558. #u142675 .text {
  3559. position:absolute;
  3560. align-self:flex-start;
  3561. padding:0px 0px 0px 0px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u142675_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. }
  3570. #u142676_div {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:280px;
  3576. height:30px;
  3577. background:inherit;
  3578. background-color:rgba(255, 255, 255, 0);
  3579. border:none;
  3580. border-radius:0px;
  3581. -moz-box-shadow:none;
  3582. -webkit-box-shadow:none;
  3583. box-shadow:none;
  3584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3585. font-weight:400;
  3586. font-style:normal;
  3587. line-height:30px;
  3588. }
  3589. #u142676 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:908px;
  3593. top:578px;
  3594. width:280px;
  3595. height:30px;
  3596. display:flex;
  3597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3598. font-weight:400;
  3599. font-style:normal;
  3600. line-height:30px;
  3601. }
  3602. #u142676 .text {
  3603. position:absolute;
  3604. align-self:flex-start;
  3605. padding:0px 0px 0px 0px;
  3606. box-sizing:border-box;
  3607. width:100%;
  3608. }
  3609. #u142676_text {
  3610. border-width:0px;
  3611. word-wrap:break-word;
  3612. text-transform:none;
  3613. }
  3614. #u142677_div {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:280px;
  3620. height:30px;
  3621. background:inherit;
  3622. background-color:rgba(255, 255, 255, 0);
  3623. border:none;
  3624. border-radius:0px;
  3625. -moz-box-shadow:none;
  3626. -webkit-box-shadow:none;
  3627. box-shadow:none;
  3628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3629. font-weight:400;
  3630. font-style:normal;
  3631. line-height:30px;
  3632. }
  3633. #u142677 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:1222px;
  3637. top:578px;
  3638. width:280px;
  3639. height:30px;
  3640. display:flex;
  3641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3642. font-weight:400;
  3643. font-style:normal;
  3644. line-height:30px;
  3645. }
  3646. #u142677 .text {
  3647. position:absolute;
  3648. align-self:flex-start;
  3649. padding:0px 0px 0px 0px;
  3650. box-sizing:border-box;
  3651. width:100%;
  3652. }
  3653. #u142677_text {
  3654. border-width:0px;
  3655. word-wrap:break-word;
  3656. text-transform:none;
  3657. }
  3658. #u142678_div {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:280px;
  3664. height:30px;
  3665. background:inherit;
  3666. background-color:rgba(255, 255, 255, 0);
  3667. border:none;
  3668. border-radius:0px;
  3669. -moz-box-shadow:none;
  3670. -webkit-box-shadow:none;
  3671. box-shadow:none;
  3672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. line-height:30px;
  3676. }
  3677. #u142678 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:593px;
  3681. top:578px;
  3682. width:280px;
  3683. height:30px;
  3684. display:flex;
  3685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. line-height:30px;
  3689. }
  3690. #u142678 .text {
  3691. position:absolute;
  3692. align-self:flex-start;
  3693. padding:0px 0px 0px 0px;
  3694. box-sizing:border-box;
  3695. width:100%;
  3696. }
  3697. #u142678_text {
  3698. border-width:0px;
  3699. word-wrap:break-word;
  3700. text-transform:none;
  3701. }
  3702. #u142679_div {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:280px;
  3708. height:30px;
  3709. background:inherit;
  3710. background-color:rgba(255, 255, 255, 0);
  3711. border:none;
  3712. border-radius:0px;
  3713. -moz-box-shadow:none;
  3714. -webkit-box-shadow:none;
  3715. box-shadow:none;
  3716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. line-height:30px;
  3720. }
  3721. #u142679 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:279px;
  3725. top:618px;
  3726. width:280px;
  3727. height:30px;
  3728. display:flex;
  3729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. line-height:30px;
  3733. }
  3734. #u142679 .text {
  3735. position:absolute;
  3736. align-self:flex-start;
  3737. padding:0px 0px 0px 0px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u142679_text {
  3742. border-width:0px;
  3743. word-wrap:break-word;
  3744. text-transform:none;
  3745. }
  3746. #u142680_div {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:280px;
  3752. height:30px;
  3753. background:inherit;
  3754. background-color:rgba(255, 255, 255, 0);
  3755. border:none;
  3756. border-radius:0px;
  3757. -moz-box-shadow:none;
  3758. -webkit-box-shadow:none;
  3759. box-shadow:none;
  3760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3761. font-weight:400;
  3762. font-style:normal;
  3763. line-height:30px;
  3764. }
  3765. #u142680 {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:593px;
  3769. top:618px;
  3770. width:280px;
  3771. height:30px;
  3772. display:flex;
  3773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3774. font-weight:400;
  3775. font-style:normal;
  3776. line-height:30px;
  3777. }
  3778. #u142680 .text {
  3779. position:absolute;
  3780. align-self:flex-start;
  3781. padding:0px 0px 0px 0px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u142680_text {
  3786. border-width:0px;
  3787. word-wrap:break-word;
  3788. text-transform:none;
  3789. }
  3790. #u142681_div {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:280px;
  3796. height:30px;
  3797. background:inherit;
  3798. background-color:rgba(255, 255, 255, 0);
  3799. border:none;
  3800. border-radius:0px;
  3801. -moz-box-shadow:none;
  3802. -webkit-box-shadow:none;
  3803. box-shadow:none;
  3804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. line-height:30px;
  3808. }
  3809. #u142681 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:908px;
  3813. top:618px;
  3814. width:280px;
  3815. height:30px;
  3816. display:flex;
  3817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. line-height:30px;
  3821. }
  3822. #u142681 .text {
  3823. position:absolute;
  3824. align-self:flex-start;
  3825. padding:0px 0px 0px 0px;
  3826. box-sizing:border-box;
  3827. width:100%;
  3828. }
  3829. #u142681_text {
  3830. border-width:0px;
  3831. word-wrap:break-word;
  3832. text-transform:none;
  3833. }
  3834. #u142682_div {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:280px;
  3840. height:30px;
  3841. background:inherit;
  3842. background-color:rgba(255, 255, 255, 0);
  3843. border:none;
  3844. border-radius:0px;
  3845. -moz-box-shadow:none;
  3846. -webkit-box-shadow:none;
  3847. box-shadow:none;
  3848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3849. font-style:normal;
  3850. line-height:30px;
  3851. }
  3852. #u142682 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:1222px;
  3856. top:618px;
  3857. width:280px;
  3858. height:30px;
  3859. display:flex;
  3860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3861. font-style:normal;
  3862. line-height:30px;
  3863. }
  3864. #u142682 .text {
  3865. position:absolute;
  3866. align-self:flex-start;
  3867. padding:0px 0px 0px 0px;
  3868. box-sizing:border-box;
  3869. width:100%;
  3870. }
  3871. #u142682_text {
  3872. border-width:0px;
  3873. word-wrap:break-word;
  3874. text-transform:none;
  3875. }
  3876. #u142683_div {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:0px;
  3880. top:0px;
  3881. width:73px;
  3882. height:30px;
  3883. background:inherit;
  3884. background-color:rgba(255, 255, 255, 0);
  3885. border:none;
  3886. border-radius:0px;
  3887. -moz-box-shadow:none;
  3888. -webkit-box-shadow:none;
  3889. box-shadow:none;
  3890. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3891. font-weight:500;
  3892. font-style:normal;
  3893. font-size:18px;
  3894. line-height:30px;
  3895. }
  3896. #u142683 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:259px;
  3900. top:688px;
  3901. width:73px;
  3902. height:30px;
  3903. display:flex;
  3904. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3905. font-weight:500;
  3906. font-style:normal;
  3907. font-size:18px;
  3908. line-height:30px;
  3909. }
  3910. #u142683 .text {
  3911. position:absolute;
  3912. align-self:flex-start;
  3913. padding:0px 0px 0px 0px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u142683_text {
  3918. border-width:0px;
  3919. white-space:nowrap;
  3920. text-transform:none;
  3921. }
  3922. #u142684 {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:259px;
  3926. top:728px;
  3927. width:1243px;
  3928. height:158px;
  3929. }
  3930. #u142685_img {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:249px;
  3936. height:40px;
  3937. }
  3938. #u142685 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:249px;
  3944. height:40px;
  3945. display:flex;
  3946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:14px;
  3950. color:#FFFFFF;
  3951. }
  3952. #u142685 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:2px 2px 2px 2px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u142685_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. }
  3964. #u142686_img {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:249px;
  3970. height:40px;
  3971. }
  3972. #u142686 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:249px;
  3976. top:0px;
  3977. width:249px;
  3978. height:40px;
  3979. display:flex;
  3980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3981. font-weight:400;
  3982. font-style:normal;
  3983. font-size:14px;
  3984. color:#FFFFFF;
  3985. }
  3986. #u142686 .text {
  3987. position:absolute;
  3988. align-self:center;
  3989. padding:2px 2px 2px 2px;
  3990. box-sizing:border-box;
  3991. width:100%;
  3992. }
  3993. #u142686_text {
  3994. border-width:0px;
  3995. word-wrap:break-word;
  3996. text-transform:none;
  3997. }
  3998. #u142687_img {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:249px;
  4004. height:40px;
  4005. }
  4006. #u142687 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:498px;
  4010. top:0px;
  4011. width:249px;
  4012. height:40px;
  4013. display:flex;
  4014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:14px;
  4018. color:#FFFFFF;
  4019. }
  4020. #u142687 .text {
  4021. position:absolute;
  4022. align-self:center;
  4023. padding:2px 2px 2px 2px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u142687_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. }
  4032. #u142688_img {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:249px;
  4038. height:40px;
  4039. }
  4040. #u142688 {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:747px;
  4044. top:0px;
  4045. width:249px;
  4046. height:40px;
  4047. display:flex;
  4048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4049. font-weight:400;
  4050. font-style:normal;
  4051. font-size:14px;
  4052. color:#FFFFFF;
  4053. }
  4054. #u142688 .text {
  4055. position:absolute;
  4056. align-self:center;
  4057. padding:2px 2px 2px 2px;
  4058. box-sizing:border-box;
  4059. width:100%;
  4060. }
  4061. #u142688_text {
  4062. border-width:0px;
  4063. word-wrap:break-word;
  4064. text-transform:none;
  4065. }
  4066. #u142689_img {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:247px;
  4072. height:40px;
  4073. }
  4074. #u142689 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:996px;
  4078. top:0px;
  4079. width:247px;
  4080. height:40px;
  4081. display:flex;
  4082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4083. font-weight:400;
  4084. font-style:normal;
  4085. font-size:14px;
  4086. color:#FFFFFF;
  4087. }
  4088. #u142689 .text {
  4089. position:absolute;
  4090. align-self:center;
  4091. padding:2px 2px 2px 2px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u142689_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. }
  4100. #u142690_img {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:249px;
  4106. height:40px;
  4107. }
  4108. #u142690 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:40px;
  4113. width:249px;
  4114. height:40px;
  4115. display:flex;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:14px;
  4120. }
  4121. #u142690 .text {
  4122. position:absolute;
  4123. align-self:center;
  4124. padding:2px 2px 2px 2px;
  4125. box-sizing:border-box;
  4126. width:100%;
  4127. }
  4128. #u142690_text {
  4129. border-width:0px;
  4130. word-wrap:break-word;
  4131. text-transform:none;
  4132. }
  4133. #u142691_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:249px;
  4139. height:40px;
  4140. }
  4141. #u142691 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:249px;
  4145. top:40px;
  4146. width:249px;
  4147. height:40px;
  4148. display:flex;
  4149. font-size:14px;
  4150. }
  4151. #u142691 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 2px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u142691_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. }
  4163. #u142692_img {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:249px;
  4169. height:40px;
  4170. }
  4171. #u142692 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:498px;
  4175. top:40px;
  4176. width:249px;
  4177. height:40px;
  4178. display:flex;
  4179. font-size:14px;
  4180. }
  4181. #u142692 .text {
  4182. position:absolute;
  4183. align-self:center;
  4184. padding:2px 2px 2px 2px;
  4185. box-sizing:border-box;
  4186. width:100%;
  4187. }
  4188. #u142692_text {
  4189. border-width:0px;
  4190. word-wrap:break-word;
  4191. text-transform:none;
  4192. }
  4193. #u142693_img {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:249px;
  4199. height:40px;
  4200. }
  4201. #u142693 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:747px;
  4205. top:40px;
  4206. width:249px;
  4207. height:40px;
  4208. display:flex;
  4209. font-size:14px;
  4210. }
  4211. #u142693 .text {
  4212. position:absolute;
  4213. align-self:center;
  4214. padding:2px 2px 2px 2px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u142693_text {
  4219. border-width:0px;
  4220. word-wrap:break-word;
  4221. text-transform:none;
  4222. }
  4223. #u142694_img {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:247px;
  4229. height:40px;
  4230. }
  4231. #u142694 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:996px;
  4235. top:40px;
  4236. width:247px;
  4237. height:40px;
  4238. display:flex;
  4239. font-size:14px;
  4240. }
  4241. #u142694 .text {
  4242. position:absolute;
  4243. align-self:center;
  4244. padding:2px 2px 2px 2px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u142694_text {
  4249. border-width:0px;
  4250. word-wrap:break-word;
  4251. text-transform:none;
  4252. }
  4253. #u142695_img {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:249px;
  4259. height:40px;
  4260. }
  4261. #u142695 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:80px;
  4266. width:249px;
  4267. height:40px;
  4268. display:flex;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:14px;
  4273. }
  4274. #u142695 .text {
  4275. position:absolute;
  4276. align-self:center;
  4277. padding:2px 2px 2px 2px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u142695_text {
  4282. border-width:0px;
  4283. word-wrap:break-word;
  4284. text-transform:none;
  4285. }
  4286. #u142696_img {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:249px;
  4292. height:40px;
  4293. }
  4294. #u142696 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:249px;
  4298. top:80px;
  4299. width:249px;
  4300. height:40px;
  4301. display:flex;
  4302. font-size:14px;
  4303. }
  4304. #u142696 .text {
  4305. position:absolute;
  4306. align-self:center;
  4307. padding:2px 2px 2px 2px;
  4308. box-sizing:border-box;
  4309. width:100%;
  4310. }
  4311. #u142696_text {
  4312. border-width:0px;
  4313. word-wrap:break-word;
  4314. text-transform:none;
  4315. }
  4316. #u142697_img {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:249px;
  4322. height:40px;
  4323. }
  4324. #u142697 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:498px;
  4328. top:80px;
  4329. width:249px;
  4330. height:40px;
  4331. display:flex;
  4332. font-size:14px;
  4333. }
  4334. #u142697 .text {
  4335. position:absolute;
  4336. align-self:center;
  4337. padding:2px 2px 2px 2px;
  4338. box-sizing:border-box;
  4339. width:100%;
  4340. }
  4341. #u142697_text {
  4342. border-width:0px;
  4343. word-wrap:break-word;
  4344. text-transform:none;
  4345. }
  4346. #u142698_img {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:249px;
  4352. height:40px;
  4353. }
  4354. #u142698 {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:747px;
  4358. top:80px;
  4359. width:249px;
  4360. height:40px;
  4361. display:flex;
  4362. font-size:14px;
  4363. }
  4364. #u142698 .text {
  4365. position:absolute;
  4366. align-self:center;
  4367. padding:2px 2px 2px 2px;
  4368. box-sizing:border-box;
  4369. width:100%;
  4370. }
  4371. #u142698_text {
  4372. border-width:0px;
  4373. word-wrap:break-word;
  4374. text-transform:none;
  4375. }
  4376. #u142699_img {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:247px;
  4382. height:40px;
  4383. }
  4384. #u142699 {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:996px;
  4388. top:80px;
  4389. width:247px;
  4390. height:40px;
  4391. display:flex;
  4392. font-size:14px;
  4393. }
  4394. #u142699 .text {
  4395. position:absolute;
  4396. align-self:center;
  4397. padding:2px 2px 2px 2px;
  4398. box-sizing:border-box;
  4399. width:100%;
  4400. }
  4401. #u142699_text {
  4402. border-width:0px;
  4403. word-wrap:break-word;
  4404. text-transform:none;
  4405. }
  4406. #u142700_img {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:0px;
  4410. top:0px;
  4411. width:249px;
  4412. height:38px;
  4413. }
  4414. #u142700 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:120px;
  4419. width:249px;
  4420. height:38px;
  4421. display:flex;
  4422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4423. font-weight:400;
  4424. font-style:normal;
  4425. font-size:14px;
  4426. color:#0099FF;
  4427. }
  4428. #u142700 .text {
  4429. position:absolute;
  4430. align-self:center;
  4431. padding:2px 2px 2px 2px;
  4432. box-sizing:border-box;
  4433. width:100%;
  4434. }
  4435. #u142700_text {
  4436. border-width:0px;
  4437. word-wrap:break-word;
  4438. text-transform:none;
  4439. visibility:hidden;
  4440. }
  4441. #u142701_img {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:249px;
  4447. height:38px;
  4448. }
  4449. #u142701 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:249px;
  4453. top:120px;
  4454. width:249px;
  4455. height:38px;
  4456. display:flex;
  4457. font-size:14px;
  4458. color:#0099FF;
  4459. }
  4460. #u142701 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 2px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u142701_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u142702_img {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:249px;
  4479. height:38px;
  4480. }
  4481. #u142702 {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:498px;
  4485. top:120px;
  4486. width:249px;
  4487. height:38px;
  4488. display:flex;
  4489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:14px;
  4493. color:#0099FF;
  4494. }
  4495. #u142702 .text {
  4496. position:absolute;
  4497. align-self:center;
  4498. padding:2px 2px 2px 2px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u142702_text {
  4503. border-width:0px;
  4504. word-wrap:break-word;
  4505. text-transform:none;
  4506. visibility:hidden;
  4507. }
  4508. #u142703_img {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:249px;
  4514. height:38px;
  4515. }
  4516. #u142703 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:747px;
  4520. top:120px;
  4521. width:249px;
  4522. height:38px;
  4523. display:flex;
  4524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:14px;
  4528. color:#0099FF;
  4529. }
  4530. #u142703 .text {
  4531. position:absolute;
  4532. align-self:center;
  4533. padding:2px 2px 2px 2px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u142703_text {
  4538. border-width:0px;
  4539. word-wrap:break-word;
  4540. text-transform:none;
  4541. visibility:hidden;
  4542. }
  4543. #u142704_img {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:247px;
  4549. height:38px;
  4550. }
  4551. #u142704 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:996px;
  4555. top:120px;
  4556. width:247px;
  4557. height:38px;
  4558. display:flex;
  4559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:14px;
  4563. color:#0099FF;
  4564. }
  4565. #u142704 .text {
  4566. position:absolute;
  4567. align-self:center;
  4568. padding:2px 2px 2px 2px;
  4569. box-sizing:border-box;
  4570. width:100%;
  4571. }
  4572. #u142704_text {
  4573. border-width:0px;
  4574. word-wrap:break-word;
  4575. text-transform:none;
  4576. }
  4577. #u142706 {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:0px;
  4583. height:0px;
  4584. }
  4585. #u142707_div {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:33px;
  4591. height:22px;
  4592. background:inherit;
  4593. background-color:rgba(255, 255, 255, 0);
  4594. border:none;
  4595. border-radius:0px;
  4596. -moz-box-shadow:none;
  4597. -webkit-box-shadow:none;
  4598. box-shadow:none;
  4599. font-size:16px;
  4600. color:#FFFFFF;
  4601. }
  4602. #u142707 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:2799px;
  4606. top:16px;
  4607. width:33px;
  4608. height:22px;
  4609. display:flex;
  4610. font-size:16px;
  4611. color:#FFFFFF;
  4612. }
  4613. #u142707 .text {
  4614. position:absolute;
  4615. align-self:flex-start;
  4616. padding:0px 0px 0px 0px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u142707_text {
  4621. border-width:0px;
  4622. white-space:nowrap;
  4623. text-transform:none;
  4624. }
  4625. #u142708_div {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:1600px;
  4631. height:50px;
  4632. background:inherit;
  4633. background-color:rgba(30, 42, 68, 1);
  4634. border:none;
  4635. border-radius:0px;
  4636. -moz-box-shadow:none;
  4637. -webkit-box-shadow:none;
  4638. box-shadow:none;
  4639. color:#AFB3B6;
  4640. }
  4641. #u142708 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:1645px;
  4645. top:0px;
  4646. width:1600px;
  4647. height:50px;
  4648. display:flex;
  4649. color:#AFB3B6;
  4650. }
  4651. #u142708 .text {
  4652. position:absolute;
  4653. align-self:center;
  4654. padding:2px 2px 2px 2px;
  4655. box-sizing:border-box;
  4656. width:100%;
  4657. }
  4658. #u142708_text {
  4659. border-width:0px;
  4660. word-wrap:break-word;
  4661. text-transform:none;
  4662. visibility:hidden;
  4663. }
  4664. #u142709 {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:0px;
  4668. top:0px;
  4669. width:0px;
  4670. height:0px;
  4671. }
  4672. #u142710_img {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:31px;
  4678. height:31px;
  4679. }
  4680. #u142710 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:1664px;
  4684. top:8px;
  4685. width:31px;
  4686. height:31px;
  4687. display:flex;
  4688. }
  4689. #u142710 .text {
  4690. position:absolute;
  4691. align-self:center;
  4692. padding:2px 2px 2px 2px;
  4693. box-sizing:border-box;
  4694. width:100%;
  4695. }
  4696. #u142710_text {
  4697. border-width:0px;
  4698. word-wrap:break-word;
  4699. text-transform:none;
  4700. }
  4701. #u142711_div {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:129px;
  4707. height:22px;
  4708. background:inherit;
  4709. background-color:rgba(255, 255, 255, 0);
  4710. border:none;
  4711. border-radius:0px;
  4712. -moz-box-shadow:none;
  4713. -webkit-box-shadow:none;
  4714. box-shadow:none;
  4715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4716. font-weight:400;
  4717. font-style:normal;
  4718. font-size:16px;
  4719. color:#FFFFFF;
  4720. }
  4721. #u142711 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:1707px;
  4725. top:12px;
  4726. width:129px;
  4727. height:22px;
  4728. display:flex;
  4729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4730. font-weight:400;
  4731. font-style:normal;
  4732. font-size:16px;
  4733. color:#FFFFFF;
  4734. }
  4735. #u142711 .text {
  4736. position:absolute;
  4737. align-self:flex-start;
  4738. padding:0px 0px 0px 0px;
  4739. box-sizing:border-box;
  4740. width:100%;
  4741. }
  4742. #u142711_text {
  4743. border-width:0px;
  4744. white-space:nowrap;
  4745. text-transform:none;
  4746. }
  4747. #u142712_div {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:200px;
  4753. height:1200px;
  4754. background:inherit;
  4755. background-color:rgba(30, 42, 68, 1);
  4756. border:none;
  4757. border-radius:0px;
  4758. -moz-box-shadow:none;
  4759. -webkit-box-shadow:none;
  4760. box-shadow:none;
  4761. color:#AFB3B6;
  4762. }
  4763. #u142712 {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:1645px;
  4767. top:50px;
  4768. width:200px;
  4769. height:1200px;
  4770. display:flex;
  4771. color:#AFB3B6;
  4772. }
  4773. #u142712 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:2px 2px 2px 2px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u142712_text {
  4781. border-width:0px;
  4782. word-wrap:break-word;
  4783. text-transform:none;
  4784. visibility:hidden;
  4785. }
  4786. #u142713_img {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:15px;
  4792. height:15px;
  4793. }
  4794. #u142713 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:3168px;
  4798. top:17px;
  4799. width:15px;
  4800. height:15px;
  4801. display:flex;
  4802. }
  4803. #u142713 .text {
  4804. position:absolute;
  4805. align-self:center;
  4806. padding:2px 2px 2px 2px;
  4807. box-sizing:border-box;
  4808. width:100%;
  4809. }
  4810. #u142713_text {
  4811. border-width:0px;
  4812. word-wrap:break-word;
  4813. text-transform:none;
  4814. visibility:hidden;
  4815. }
  4816. #u142714_img {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:0px;
  4820. top:0px;
  4821. width:15px;
  4822. height:15px;
  4823. }
  4824. #u142714 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:3138px;
  4828. top:17px;
  4829. width:15px;
  4830. height:15px;
  4831. display:flex;
  4832. }
  4833. #u142714 .text {
  4834. position:absolute;
  4835. align-self:center;
  4836. padding:2px 2px 2px 2px;
  4837. box-sizing:border-box;
  4838. width:100%;
  4839. }
  4840. #u142714_text {
  4841. border-width:0px;
  4842. word-wrap:break-word;
  4843. text-transform:none;
  4844. visibility:hidden;
  4845. }
  4846. #u142715 {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:0px;
  4852. height:0px;
  4853. }
  4854. #u142716_img {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:14px;
  4860. height:14px;
  4861. }
  4862. #u142716 {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:3198px;
  4866. top:18px;
  4867. width:14px;
  4868. height:14px;
  4869. display:flex;
  4870. }
  4871. #u142716 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 2px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u142716_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. visibility:hidden;
  4883. }
  4884. #u142717_img {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:8px;
  4890. height:5px;
  4891. }
  4892. #u142717 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:3217px;
  4896. top:23px;
  4897. width:8px;
  4898. height:5px;
  4899. display:flex;
  4900. }
  4901. #u142717 .text {
  4902. position:absolute;
  4903. align-self:center;
  4904. padding:2px 2px 2px 2px;
  4905. box-sizing:border-box;
  4906. width:100%;
  4907. }
  4908. #u142717_text {
  4909. border-width:0px;
  4910. word-wrap:break-word;
  4911. text-transform:none;
  4912. visibility:hidden;
  4913. }
  4914. #u142718_div {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:1402px;
  4920. height:1200px;
  4921. background:inherit;
  4922. background-color:rgba(242, 242, 242, 1);
  4923. border:none;
  4924. border-radius:0px;
  4925. -moz-box-shadow:none;
  4926. -webkit-box-shadow:none;
  4927. box-shadow:none;
  4928. }
  4929. #u142718 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:1843px;
  4933. top:50px;
  4934. width:1402px;
  4935. height:1200px;
  4936. display:flex;
  4937. }
  4938. #u142718 .text {
  4939. position:absolute;
  4940. align-self:center;
  4941. padding:2px 2px 2px 2px;
  4942. box-sizing:border-box;
  4943. width:100%;
  4944. }
  4945. #u142718_text {
  4946. border-width:0px;
  4947. word-wrap:break-word;
  4948. text-transform:none;
  4949. visibility:hidden;
  4950. }
  4951. #u142719 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:1664px;
  4955. top:77px;
  4956. width:84px;
  4957. height:140px;
  4958. }
  4959. #u142719_children {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:0px;
  4963. top:0px;
  4964. width:0px;
  4965. height:0px;
  4966. }
  4967. #u142720 {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:84px;
  4973. height:20px;
  4974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4975. font-weight:400;
  4976. font-style:normal;
  4977. font-size:14px;
  4978. color:#FFFFFF;
  4979. }
  4980. #u142721_div {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:62px;
  4986. height:20px;
  4987. background:inherit;
  4988. background-color:rgba(255, 255, 255, 0);
  4989. border:none;
  4990. border-radius:0px;
  4991. -moz-box-shadow:none;
  4992. -webkit-box-shadow:none;
  4993. box-shadow:none;
  4994. }
  4995. #u142721 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:22px;
  4999. top:0px;
  5000. width:62px;
  5001. height:20px;
  5002. display:flex;
  5003. }
  5004. #u142721 .text {
  5005. position:absolute;
  5006. align-self:center;
  5007. padding:2px 2px 2px 3px;
  5008. box-sizing:border-box;
  5009. width:100%;
  5010. }
  5011. #u142721_text {
  5012. border-width:0px;
  5013. white-space:nowrap;
  5014. text-transform:none;
  5015. }
  5016. #u142722 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:20px;
  5021. width:84px;
  5022. height:20px;
  5023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. font-size:14px;
  5027. color:#FFFFFF;
  5028. }
  5029. #u142723_div {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:62px;
  5035. height:20px;
  5036. background:inherit;
  5037. background-color:rgba(255, 255, 255, 0);
  5038. border:none;
  5039. border-radius:0px;
  5040. -moz-box-shadow:none;
  5041. -webkit-box-shadow:none;
  5042. box-shadow:none;
  5043. }
  5044. #u142723 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:22px;
  5048. top:0px;
  5049. width:62px;
  5050. height:20px;
  5051. display:flex;
  5052. }
  5053. #u142723 .text {
  5054. position:absolute;
  5055. align-self:center;
  5056. padding:2px 2px 2px 3px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u142723_text {
  5061. border-width:0px;
  5062. white-space:nowrap;
  5063. text-transform:none;
  5064. }
  5065. #u142724 {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:0px;
  5069. top:40px;
  5070. width:84px;
  5071. height:20px;
  5072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:14px;
  5076. color:#FFFFFF;
  5077. }
  5078. #u142725_div {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:62px;
  5084. height:20px;
  5085. background:inherit;
  5086. background-color:rgba(255, 255, 255, 0);
  5087. border:none;
  5088. border-radius:0px;
  5089. -moz-box-shadow:none;
  5090. -webkit-box-shadow:none;
  5091. box-shadow:none;
  5092. }
  5093. #u142725 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:22px;
  5097. top:0px;
  5098. width:62px;
  5099. height:20px;
  5100. display:flex;
  5101. }
  5102. #u142725 .text {
  5103. position:absolute;
  5104. align-self:center;
  5105. padding:2px 2px 2px 3px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u142725_text {
  5110. border-width:0px;
  5111. white-space:nowrap;
  5112. text-transform:none;
  5113. }
  5114. #u142726 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:60px;
  5119. width:84px;
  5120. height:20px;
  5121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5122. font-weight:400;
  5123. font-style:normal;
  5124. font-size:14px;
  5125. color:#FFFFFF;
  5126. }
  5127. #u142727_div {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:0px;
  5131. top:0px;
  5132. width:62px;
  5133. height:20px;
  5134. background:inherit;
  5135. background-color:rgba(255, 255, 255, 0);
  5136. border:none;
  5137. border-radius:0px;
  5138. -moz-box-shadow:none;
  5139. -webkit-box-shadow:none;
  5140. box-shadow:none;
  5141. }
  5142. #u142727 {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:22px;
  5146. top:0px;
  5147. width:62px;
  5148. height:20px;
  5149. display:flex;
  5150. }
  5151. #u142727 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:2px 2px 2px 3px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u142727_text {
  5159. border-width:0px;
  5160. white-space:nowrap;
  5161. text-transform:none;
  5162. }
  5163. #u142728 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:80px;
  5168. width:84px;
  5169. height:20px;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:14px;
  5174. color:#FFFFFF;
  5175. }
  5176. #u142729_div {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:62px;
  5182. height:20px;
  5183. background:inherit;
  5184. background-color:rgba(255, 255, 255, 0);
  5185. border:none;
  5186. border-radius:0px;
  5187. -moz-box-shadow:none;
  5188. -webkit-box-shadow:none;
  5189. box-shadow:none;
  5190. }
  5191. #u142729 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:22px;
  5195. top:0px;
  5196. width:62px;
  5197. height:20px;
  5198. display:flex;
  5199. }
  5200. #u142729 .text {
  5201. position:absolute;
  5202. align-self:center;
  5203. padding:2px 2px 2px 3px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u142729_text {
  5208. border-width:0px;
  5209. white-space:nowrap;
  5210. text-transform:none;
  5211. }
  5212. #u142730 {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:0px;
  5216. top:100px;
  5217. width:84px;
  5218. height:20px;
  5219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5220. font-weight:400;
  5221. font-style:normal;
  5222. font-size:14px;
  5223. color:#FFFFFF;
  5224. }
  5225. #u142731_div {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:62px;
  5231. height:20px;
  5232. background:inherit;
  5233. background-color:rgba(255, 255, 255, 0);
  5234. border:none;
  5235. border-radius:0px;
  5236. -moz-box-shadow:none;
  5237. -webkit-box-shadow:none;
  5238. box-shadow:none;
  5239. }
  5240. #u142731 {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:22px;
  5244. top:0px;
  5245. width:62px;
  5246. height:20px;
  5247. display:flex;
  5248. }
  5249. #u142731 .text {
  5250. position:absolute;
  5251. align-self:center;
  5252. padding:2px 2px 2px 3px;
  5253. box-sizing:border-box;
  5254. width:100%;
  5255. }
  5256. #u142731_text {
  5257. border-width:0px;
  5258. white-space:nowrap;
  5259. text-transform:none;
  5260. }
  5261. #u142732 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:120px;
  5266. width:84px;
  5267. height:20px;
  5268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5269. font-weight:400;
  5270. font-style:normal;
  5271. font-size:14px;
  5272. color:#FFFFFF;
  5273. }
  5274. #u142733_div {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:62px;
  5280. height:20px;
  5281. background:inherit;
  5282. background-color:rgba(255, 255, 255, 0);
  5283. border:none;
  5284. border-radius:0px;
  5285. -moz-box-shadow:none;
  5286. -webkit-box-shadow:none;
  5287. box-shadow:none;
  5288. }
  5289. #u142733 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:22px;
  5293. top:0px;
  5294. width:62px;
  5295. height:20px;
  5296. display:flex;
  5297. }
  5298. #u142733 .text {
  5299. position:absolute;
  5300. align-self:center;
  5301. padding:2px 2px 2px 3px;
  5302. box-sizing:border-box;
  5303. width:100%;
  5304. }
  5305. #u142733_text {
  5306. border-width:0px;
  5307. white-space:nowrap;
  5308. text-transform:none;
  5309. }
  5310. #u142734_input {
  5311. position:absolute;
  5312. left:0px;
  5313. top:0px;
  5314. width:141px;
  5315. height:22px;
  5316. padding:2px 2px 2px 2px;
  5317. font-family:'ArialMT', 'Arial', sans-serif;
  5318. font-weight:400;
  5319. font-style:normal;
  5320. font-size:14px;
  5321. letter-spacing:normal;
  5322. color:#FFFFFF;
  5323. vertical-align:none;
  5324. text-align:left;
  5325. text-transform:none;
  5326. background-color:transparent;
  5327. border-color:transparent;
  5328. }
  5329. #u142734_input.disabled {
  5330. position:absolute;
  5331. left:0px;
  5332. top:0px;
  5333. width:141px;
  5334. height:22px;
  5335. padding:2px 2px 2px 2px;
  5336. font-family:'ArialMT', 'Arial', sans-serif;
  5337. font-weight:400;
  5338. font-style:normal;
  5339. font-size:14px;
  5340. letter-spacing:normal;
  5341. color:#FFFFFF;
  5342. vertical-align:none;
  5343. text-align:left;
  5344. text-transform:none;
  5345. background-color:transparent;
  5346. border-color:transparent;
  5347. }
  5348. #u142734_div {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:0px;
  5352. top:0px;
  5353. width:141px;
  5354. height:22px;
  5355. background:inherit;
  5356. background-color:rgba(255, 255, 255, 0);
  5357. border:none;
  5358. border-radius:0px;
  5359. -moz-box-shadow:none;
  5360. -webkit-box-shadow:none;
  5361. box-shadow:none;
  5362. font-size:14px;
  5363. color:#FFFFFF;
  5364. }
  5365. #u142734 {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:1964px;
  5369. top:13px;
  5370. width:141px;
  5371. height:22px;
  5372. display:flex;
  5373. font-size:14px;
  5374. color:#FFFFFF;
  5375. }
  5376. #u142734 .text {
  5377. position:absolute;
  5378. align-self:flex-start;
  5379. padding:2px 2px 2px 2px;
  5380. box-sizing:border-box;
  5381. width:100%;
  5382. }
  5383. #u142734_div.disabled {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:0px;
  5387. top:0px;
  5388. width:141px;
  5389. height:22px;
  5390. background:inherit;
  5391. background-color:rgba(240, 240, 240, 1);
  5392. border:none;
  5393. border-radius:0px;
  5394. -moz-box-shadow:none;
  5395. -webkit-box-shadow:none;
  5396. box-shadow:none;
  5397. font-size:14px;
  5398. color:#FFFFFF;
  5399. }
  5400. #u142734.disabled {
  5401. }
  5402. .u142734_input_option {
  5403. font-size:14px;
  5404. }
  5405. #u142735_img {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:22px;
  5411. height:22px;
  5412. }
  5413. #u142735 {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:1937px;
  5417. top:13px;
  5418. width:22px;
  5419. height:22px;
  5420. display:flex;
  5421. }
  5422. #u142735 .text {
  5423. position:absolute;
  5424. align-self:center;
  5425. padding:2px 2px 2px 2px;
  5426. box-sizing:border-box;
  5427. width:100%;
  5428. }
  5429. #u142735_text {
  5430. border-width:0px;
  5431. word-wrap:break-word;
  5432. text-transform:none;
  5433. visibility:hidden;
  5434. }
  5435. #u142736_div {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:136px;
  5441. height:16px;
  5442. background:inherit;
  5443. background-color:rgba(255, 255, 255, 0);
  5444. border:none;
  5445. border-radius:0px;
  5446. -moz-box-shadow:none;
  5447. -webkit-box-shadow:none;
  5448. box-shadow:none;
  5449. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  5450. font-weight:200;
  5451. font-style:normal;
  5452. font-size:11px;
  5453. color:#555555;
  5454. }
  5455. #u142736 {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:1853px;
  5459. top:56px;
  5460. width:136px;
  5461. height:16px;
  5462. display:flex;
  5463. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  5464. font-weight:200;
  5465. font-style:normal;
  5466. font-size:11px;
  5467. color:#555555;
  5468. }
  5469. #u142736 .text {
  5470. position:absolute;
  5471. align-self:flex-start;
  5472. padding:0px 0px 0px 0px;
  5473. box-sizing:border-box;
  5474. width:100%;
  5475. }
  5476. #u142736_text {
  5477. border-width:0px;
  5478. white-space:nowrap;
  5479. text-transform:none;
  5480. }
  5481. #u142737 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:0px;
  5487. height:0px;
  5488. }
  5489. #u142738_img {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:17px;
  5495. height:14px;
  5496. }
  5497. #u142738 {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:1856px;
  5501. top:16px;
  5502. width:17px;
  5503. height:14px;
  5504. display:flex;
  5505. color:#FFFFFF;
  5506. }
  5507. #u142738 .text {
  5508. position:absolute;
  5509. align-self:center;
  5510. padding:2px 2px 2px 2px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u142738_text {
  5515. border-width:0px;
  5516. word-wrap:break-word;
  5517. text-transform:none;
  5518. visibility:hidden;
  5519. }
  5520. #u142739_div {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:29px;
  5526. height:20px;
  5527. background:inherit;
  5528. background-color:rgba(255, 255, 255, 0);
  5529. border:none;
  5530. border-radius:0px;
  5531. -moz-box-shadow:none;
  5532. -webkit-box-shadow:none;
  5533. box-shadow:none;
  5534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5535. font-weight:400;
  5536. font-style:normal;
  5537. color:#FFFFFF;
  5538. }
  5539. #u142739 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:1878px;
  5543. top:13px;
  5544. width:29px;
  5545. height:20px;
  5546. display:flex;
  5547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. color:#FFFFFF;
  5551. }
  5552. #u142739 .text {
  5553. position:absolute;
  5554. align-self:flex-start;
  5555. padding:0px 0px 0px 0px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u142739_text {
  5560. border-width:0px;
  5561. white-space:nowrap;
  5562. text-transform:none;
  5563. }
  5564. #u142740_div {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:1381px;
  5570. height:1148px;
  5571. background:inherit;
  5572. background-color:rgba(255, 255, 255, 1);
  5573. box-sizing:border-box;
  5574. border-width:1px;
  5575. border-style:solid;
  5576. border-color:rgba(242, 242, 242, 1);
  5577. border-radius:0px;
  5578. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5579. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5580. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5581. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5582. font-weight:700;
  5583. font-style:normal;
  5584. }
  5585. #u142740 {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:1864px;
  5589. top:83px;
  5590. width:1381px;
  5591. height:1148px;
  5592. display:flex;
  5593. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  5594. font-weight:700;
  5595. font-style:normal;
  5596. }
  5597. #u142740 .text {
  5598. position:absolute;
  5599. align-self:center;
  5600. padding:2px 2px 2px 2px;
  5601. box-sizing:border-box;
  5602. width:100%;
  5603. }
  5604. #u142740_text {
  5605. border-width:0px;
  5606. word-wrap:break-word;
  5607. text-transform:none;
  5608. visibility:hidden;
  5609. }
  5610. #u142741_img {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:1380px;
  5616. height:2px;
  5617. }
  5618. #u142741 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:1864px;
  5622. top:146px;
  5623. width:1379px;
  5624. height:1px;
  5625. display:flex;
  5626. }
  5627. #u142741 .text {
  5628. position:absolute;
  5629. align-self:center;
  5630. padding:2px 2px 2px 2px;
  5631. box-sizing:border-box;
  5632. width:100%;
  5633. }
  5634. #u142741_text {
  5635. border-width:0px;
  5636. word-wrap:break-word;
  5637. text-transform:none;
  5638. visibility:hidden;
  5639. }
  5640. #u142742_div {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:0px;
  5644. top:0px;
  5645. width:73px;
  5646. height:25px;
  5647. background:inherit;
  5648. background-color:rgba(255, 255, 255, 0);
  5649. border:none;
  5650. border-radius:0px;
  5651. -moz-box-shadow:none;
  5652. -webkit-box-shadow:none;
  5653. box-shadow:none;
  5654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:18px;
  5658. }
  5659. #u142742 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:1915px;
  5663. top:99px;
  5664. width:73px;
  5665. height:25px;
  5666. display:flex;
  5667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:18px;
  5671. }
  5672. #u142742 .text {
  5673. position:absolute;
  5674. align-self:flex-start;
  5675. padding:0px 0px 0px 0px;
  5676. box-sizing:border-box;
  5677. width:100%;
  5678. }
  5679. #u142742_text {
  5680. border-width:0px;
  5681. white-space:nowrap;
  5682. text-transform:none;
  5683. }
  5684. #u142743_img {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:8px;
  5690. height:14px;
  5691. }
  5692. #u142743 {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:1885px;
  5696. top:104px;
  5697. width:8px;
  5698. height:14px;
  5699. display:flex;
  5700. }
  5701. #u142743 .text {
  5702. position:absolute;
  5703. align-self:center;
  5704. padding:2px 2px 2px 2px;
  5705. box-sizing:border-box;
  5706. width:100%;
  5707. }
  5708. #u142743_text {
  5709. border-width:0px;
  5710. word-wrap:break-word;
  5711. text-transform:none;
  5712. visibility:hidden;
  5713. }
  5714. #u142744_div {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:0px;
  5718. top:0px;
  5719. width:280px;
  5720. height:30px;
  5721. background:inherit;
  5722. background-color:rgba(255, 255, 255, 0);
  5723. border:none;
  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. line-height:30px;
  5732. }
  5733. #u142744 {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:1915px;
  5737. top:221px;
  5738. width:280px;
  5739. height:30px;
  5740. display:flex;
  5741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5742. font-weight:400;
  5743. font-style:normal;
  5744. line-height:30px;
  5745. }
  5746. #u142744 .text {
  5747. position:absolute;
  5748. align-self:flex-start;
  5749. padding:0px 0px 0px 0px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u142744_text {
  5754. border-width:0px;
  5755. word-wrap:break-word;
  5756. text-transform:none;
  5757. }
  5758. #u142745_div {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:280px;
  5764. height:30px;
  5765. background:inherit;
  5766. background-color:rgba(255, 255, 255, 0);
  5767. border:none;
  5768. border-radius:0px;
  5769. -moz-box-shadow:none;
  5770. -webkit-box-shadow:none;
  5771. box-shadow:none;
  5772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. line-height:30px;
  5776. }
  5777. #u142745 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:2570px;
  5781. top:221px;
  5782. width:280px;
  5783. height:30px;
  5784. display:flex;
  5785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. line-height:30px;
  5789. }
  5790. #u142745 .text {
  5791. position:absolute;
  5792. align-self:flex-start;
  5793. padding:0px 0px 0px 0px;
  5794. box-sizing:border-box;
  5795. width:100%;
  5796. }
  5797. #u142745_text {
  5798. border-width:0px;
  5799. word-wrap:break-word;
  5800. text-transform:none;
  5801. }
  5802. #u142746_div {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:280px;
  5808. height:30px;
  5809. background:inherit;
  5810. background-color:rgba(255, 255, 255, 0);
  5811. border:none;
  5812. border-radius:0px;
  5813. -moz-box-shadow:none;
  5814. -webkit-box-shadow:none;
  5815. box-shadow:none;
  5816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5817. font-weight:400;
  5818. font-style:normal;
  5819. line-height:30px;
  5820. }
  5821. #u142746 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:2242px;
  5825. top:221px;
  5826. width:280px;
  5827. height:30px;
  5828. display:flex;
  5829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. line-height:30px;
  5833. }
  5834. #u142746 .text {
  5835. position:absolute;
  5836. align-self:flex-start;
  5837. padding:0px 0px 0px 0px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u142746_text {
  5842. border-width:0px;
  5843. word-wrap:break-word;
  5844. text-transform:none;
  5845. }
  5846. #u142747_div {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:280px;
  5852. height:30px;
  5853. background:inherit;
  5854. background-color:rgba(255, 255, 255, 0);
  5855. border:none;
  5856. border-radius:0px;
  5857. -moz-box-shadow:none;
  5858. -webkit-box-shadow:none;
  5859. box-shadow:none;
  5860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5861. font-weight:400;
  5862. font-style:normal;
  5863. line-height:30px;
  5864. }
  5865. #u142747 {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:2897px;
  5869. top:221px;
  5870. width:280px;
  5871. height:30px;
  5872. display:flex;
  5873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5874. font-weight:400;
  5875. font-style:normal;
  5876. line-height:30px;
  5877. }
  5878. #u142747 .text {
  5879. position:absolute;
  5880. align-self:flex-start;
  5881. padding:0px 0px 0px 0px;
  5882. box-sizing:border-box;
  5883. width:100%;
  5884. }
  5885. #u142747_text {
  5886. border-width:0px;
  5887. word-wrap:break-word;
  5888. text-transform:none;
  5889. }
  5890. #u142748_div {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:280px;
  5896. height:25px;
  5897. background:inherit;
  5898. background-color:rgba(255, 255, 255, 0);
  5899. box-sizing:border-box;
  5900. border-width:2px;
  5901. border-style:solid;
  5902. border-color:rgba(0, 0, 0, 1);
  5903. border-top:0px;
  5904. border-right:0px;
  5905. border-bottom:0px;
  5906. border-radius:0px;
  5907. border-top-left-radius:0px;
  5908. border-bottom-left-radius:0px;
  5909. -moz-box-shadow:none;
  5910. -webkit-box-shadow:none;
  5911. box-shadow:none;
  5912. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5913. font-weight:500;
  5914. font-style:normal;
  5915. font-size:18px;
  5916. color:#000000;
  5917. }
  5918. #u142748 {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:1915px;
  5922. top:171px;
  5923. width:280px;
  5924. height:25px;
  5925. display:flex;
  5926. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5927. font-weight:500;
  5928. font-style:normal;
  5929. font-size:18px;
  5930. color:#000000;
  5931. }
  5932. #u142748 .text {
  5933. position:absolute;
  5934. align-self:flex-start;
  5935. padding:0px 0px 0px 10px;
  5936. box-sizing:border-box;
  5937. width:100%;
  5938. }
  5939. #u142748_text {
  5940. border-width:0px;
  5941. word-wrap:break-word;
  5942. text-transform:none;
  5943. }
  5944. #u142749_div {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:280px;
  5950. height:30px;
  5951. background:inherit;
  5952. background-color:rgba(255, 255, 255, 0);
  5953. border:none;
  5954. border-radius:0px;
  5955. -moz-box-shadow:none;
  5956. -webkit-box-shadow:none;
  5957. box-shadow:none;
  5958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. line-height:30px;
  5962. }
  5963. #u142749 {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:1915px;
  5967. top:261px;
  5968. width:280px;
  5969. height:30px;
  5970. display:flex;
  5971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. line-height:30px;
  5975. }
  5976. #u142749 .text {
  5977. position:absolute;
  5978. align-self:flex-start;
  5979. padding:0px 0px 0px 0px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. #u142749_text {
  5984. border-width:0px;
  5985. word-wrap:break-word;
  5986. text-transform:none;
  5987. }
  5988. #u142750_div {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:280px;
  5994. height:30px;
  5995. background:inherit;
  5996. background-color:rgba(255, 255, 255, 0);
  5997. border:none;
  5998. border-radius:0px;
  5999. -moz-box-shadow:none;
  6000. -webkit-box-shadow:none;
  6001. box-shadow:none;
  6002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. line-height:30px;
  6006. }
  6007. #u142750 {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:2242px;
  6011. top:261px;
  6012. width:280px;
  6013. height:30px;
  6014. display:flex;
  6015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6016. font-weight:400;
  6017. font-style:normal;
  6018. line-height:30px;
  6019. }
  6020. #u142750 .text {
  6021. position:absolute;
  6022. align-self:flex-start;
  6023. padding:0px 0px 0px 0px;
  6024. box-sizing:border-box;
  6025. width:100%;
  6026. }
  6027. #u142750_text {
  6028. border-width:0px;
  6029. word-wrap:break-word;
  6030. text-transform:none;
  6031. }
  6032. #u142751_div {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:57px;
  6038. height:30px;
  6039. background:inherit;
  6040. background-color:rgba(255, 255, 255, 0);
  6041. border:none;
  6042. border-radius:0px;
  6043. -moz-box-shadow:none;
  6044. -webkit-box-shadow:none;
  6045. box-shadow:none;
  6046. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6047. font-weight:500;
  6048. font-style:normal;
  6049. color:#000000;
  6050. line-height:30px;
  6051. }
  6052. #u142751 {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:1915px;
  6056. top:366px;
  6057. width:57px;
  6058. height:30px;
  6059. display:flex;
  6060. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6061. font-weight:500;
  6062. font-style:normal;
  6063. color:#000000;
  6064. line-height:30px;
  6065. }
  6066. #u142751 .text {
  6067. position:absolute;
  6068. align-self:flex-start;
  6069. padding:0px 0px 0px 0px;
  6070. box-sizing:border-box;
  6071. width:100%;
  6072. }
  6073. #u142751_text {
  6074. border-width:0px;
  6075. white-space:nowrap;
  6076. text-transform:none;
  6077. }
  6078. #u142752 {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:0px;
  6082. top:0px;
  6083. width:0px;
  6084. height:0px;
  6085. }
  6086. #u142753_img {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:0px;
  6090. top:0px;
  6091. width:1244px;
  6092. height:2px;
  6093. }
  6094. #u142753 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:1915px;
  6098. top:455px;
  6099. width:1243px;
  6100. height:1px;
  6101. display:flex;
  6102. }
  6103. #u142753 .text {
  6104. position:absolute;
  6105. align-self:center;
  6106. padding:2px 2px 2px 2px;
  6107. box-sizing:border-box;
  6108. width:100%;
  6109. }
  6110. #u142753_text {
  6111. border-width:0px;
  6112. word-wrap:break-word;
  6113. text-transform:none;
  6114. visibility:hidden;
  6115. }
  6116. #u142754 {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:0px;
  6122. height:0px;
  6123. }
  6124. #u142755_img {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:10px;
  6130. height:10px;
  6131. }
  6132. #u142755 {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:1982px;
  6136. top:451px;
  6137. width:10px;
  6138. height:10px;
  6139. display:flex;
  6140. font-size:12px;
  6141. }
  6142. #u142755 .text {
  6143. position:absolute;
  6144. align-self:center;
  6145. padding:2px 2px 2px 2px;
  6146. box-sizing:border-box;
  6147. width:100%;
  6148. }
  6149. #u142755_text {
  6150. border-width:0px;
  6151. word-wrap:break-word;
  6152. text-transform:none;
  6153. visibility:hidden;
  6154. }
  6155. #u142756_div {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:0px;
  6159. top:0px;
  6160. width:49px;
  6161. height:30px;
  6162. background:inherit;
  6163. background-color:rgba(255, 255, 255, 0);
  6164. border:none;
  6165. border-radius:0px;
  6166. -moz-box-shadow:none;
  6167. -webkit-box-shadow:none;
  6168. box-shadow:none;
  6169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:12px;
  6173. line-height:30px;
  6174. }
  6175. #u142756 {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:1963px;
  6179. top:412px;
  6180. width:49px;
  6181. height:30px;
  6182. display:flex;
  6183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:12px;
  6187. line-height:30px;
  6188. }
  6189. #u142756 .text {
  6190. position:absolute;
  6191. align-self:flex-start;
  6192. padding:0px 0px 0px 0px;
  6193. box-sizing:border-box;
  6194. width:100%;
  6195. }
  6196. #u142756_text {
  6197. border-width:0px;
  6198. white-space:nowrap;
  6199. text-transform:none;
  6200. }
  6201. #u142757_div {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:104px;
  6207. height:17px;
  6208. background:inherit;
  6209. background-color:rgba(255, 255, 255, 0);
  6210. border:none;
  6211. border-radius:0px;
  6212. -moz-box-shadow:none;
  6213. -webkit-box-shadow:none;
  6214. box-shadow:none;
  6215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6216. font-weight:400;
  6217. font-style:normal;
  6218. font-size:12px;
  6219. text-align:center;
  6220. }
  6221. #u142757 {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:1935px;
  6225. top:471px;
  6226. width:104px;
  6227. height:17px;
  6228. display:flex;
  6229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6230. font-weight:400;
  6231. font-style:normal;
  6232. font-size:12px;
  6233. text-align:center;
  6234. }
  6235. #u142757 .text {
  6236. position:absolute;
  6237. align-self:flex-start;
  6238. padding:0px 0px 0px 0px;
  6239. box-sizing:border-box;
  6240. width:100%;
  6241. }
  6242. #u142757_text {
  6243. border-width:0px;
  6244. white-space:nowrap;
  6245. text-transform:none;
  6246. }
  6247. #u142758 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:0px;
  6251. top:0px;
  6252. width:0px;
  6253. height:0px;
  6254. }
  6255. #u142759_img {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:10px;
  6261. height:10px;
  6262. }
  6263. #u142759 {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:3062px;
  6267. top:451px;
  6268. width:10px;
  6269. height:10px;
  6270. display:flex;
  6271. font-size:12px;
  6272. }
  6273. #u142759 .text {
  6274. position:absolute;
  6275. align-self:center;
  6276. padding:2px 2px 2px 2px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u142759_text {
  6281. border-width:0px;
  6282. word-wrap:break-word;
  6283. text-transform:none;
  6284. visibility:hidden;
  6285. }
  6286. #u142760_div {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:0px;
  6290. top:0px;
  6291. width:49px;
  6292. height:30px;
  6293. background:inherit;
  6294. background-color:rgba(255, 255, 255, 0);
  6295. border:none;
  6296. border-radius:0px;
  6297. -moz-box-shadow:none;
  6298. -webkit-box-shadow:none;
  6299. box-shadow:none;
  6300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6301. font-weight:400;
  6302. font-style:normal;
  6303. font-size:12px;
  6304. line-height:30px;
  6305. }
  6306. #u142760 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:3043px;
  6310. top:417px;
  6311. width:49px;
  6312. height:30px;
  6313. display:flex;
  6314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:12px;
  6318. line-height:30px;
  6319. }
  6320. #u142760 .text {
  6321. position:absolute;
  6322. align-self:flex-start;
  6323. padding:0px 0px 0px 0px;
  6324. box-sizing:border-box;
  6325. width:100%;
  6326. }
  6327. #u142760_text {
  6328. border-width:0px;
  6329. white-space:nowrap;
  6330. text-transform:none;
  6331. }
  6332. #u142761_div {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:0px;
  6336. top:0px;
  6337. width:102px;
  6338. height:17px;
  6339. background:inherit;
  6340. background-color:rgba(255, 255, 255, 0);
  6341. border:none;
  6342. border-radius:0px;
  6343. -moz-box-shadow:none;
  6344. -webkit-box-shadow:none;
  6345. box-shadow:none;
  6346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6347. font-weight:400;
  6348. font-style:normal;
  6349. font-size:12px;
  6350. text-align:center;
  6351. }
  6352. #u142761 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:3016px;
  6356. top:466px;
  6357. width:102px;
  6358. height:17px;
  6359. display:flex;
  6360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. font-size:12px;
  6364. text-align:center;
  6365. }
  6366. #u142761 .text {
  6367. position:absolute;
  6368. align-self:flex-start;
  6369. padding:0px 0px 0px 0px;
  6370. box-sizing:border-box;
  6371. width:100%;
  6372. }
  6373. #u142761_text {
  6374. border-width:0px;
  6375. white-space:nowrap;
  6376. text-transform:none;
  6377. }
  6378. #u142762 {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:0px;
  6384. height:0px;
  6385. }
  6386. #u142763_img {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:10px;
  6392. height:10px;
  6393. }
  6394. #u142763 {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:2879px;
  6398. top:451px;
  6399. width:10px;
  6400. height:10px;
  6401. display:flex;
  6402. font-size:12px;
  6403. }
  6404. #u142763 .text {
  6405. position:absolute;
  6406. align-self:center;
  6407. padding:2px 2px 2px 2px;
  6408. box-sizing:border-box;
  6409. width:100%;
  6410. }
  6411. #u142763_text {
  6412. border-width:0px;
  6413. word-wrap:break-word;
  6414. text-transform:none;
  6415. visibility:hidden;
  6416. }
  6417. #u142764_div {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:0px;
  6421. top:0px;
  6422. width:49px;
  6423. height:30px;
  6424. background:inherit;
  6425. background-color:rgba(255, 255, 255, 0);
  6426. border:none;
  6427. border-radius:0px;
  6428. -moz-box-shadow:none;
  6429. -webkit-box-shadow:none;
  6430. box-shadow:none;
  6431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6432. font-weight:400;
  6433. font-style:normal;
  6434. font-size:12px;
  6435. line-height:30px;
  6436. }
  6437. #u142764 {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:2860px;
  6441. top:417px;
  6442. width:49px;
  6443. height:30px;
  6444. display:flex;
  6445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6446. font-weight:400;
  6447. font-style:normal;
  6448. font-size:12px;
  6449. line-height:30px;
  6450. }
  6451. #u142764 .text {
  6452. position:absolute;
  6453. align-self:flex-start;
  6454. padding:0px 0px 0px 0px;
  6455. box-sizing:border-box;
  6456. width:100%;
  6457. }
  6458. #u142764_text {
  6459. border-width:0px;
  6460. white-space:nowrap;
  6461. text-transform:none;
  6462. }
  6463. #u142765_div {
  6464. border-width:0px;
  6465. position:absolute;
  6466. left:0px;
  6467. top:0px;
  6468. width:102px;
  6469. height:17px;
  6470. background:inherit;
  6471. background-color:rgba(255, 255, 255, 0);
  6472. border:none;
  6473. border-radius:0px;
  6474. -moz-box-shadow:none;
  6475. -webkit-box-shadow:none;
  6476. box-shadow:none;
  6477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6478. font-weight:400;
  6479. font-style:normal;
  6480. font-size:12px;
  6481. text-align:center;
  6482. }
  6483. #u142765 {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:2833px;
  6487. top:471px;
  6488. width:102px;
  6489. height:17px;
  6490. display:flex;
  6491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6492. font-weight:400;
  6493. font-style:normal;
  6494. font-size:12px;
  6495. text-align:center;
  6496. }
  6497. #u142765 .text {
  6498. position:absolute;
  6499. align-self:flex-start;
  6500. padding:0px 0px 0px 0px;
  6501. box-sizing:border-box;
  6502. width:100%;
  6503. }
  6504. #u142765_text {
  6505. border-width:0px;
  6506. white-space:nowrap;
  6507. text-transform:none;
  6508. }
  6509. #u142766_div {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:0px;
  6513. top:0px;
  6514. width:117px;
  6515. height:30px;
  6516. background:inherit;
  6517. background-color:rgba(255, 255, 255, 0);
  6518. border:none;
  6519. border-radius:0px;
  6520. -moz-box-shadow:none;
  6521. -webkit-box-shadow:none;
  6522. box-shadow:none;
  6523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6524. font-weight:400;
  6525. font-style:normal;
  6526. font-size:12px;
  6527. color:#0089FE;
  6528. text-align:center;
  6529. line-height:30px;
  6530. }
  6531. #u142766 {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:1929px;
  6535. top:488px;
  6536. width:117px;
  6537. height:30px;
  6538. display:flex;
  6539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6540. font-weight:400;
  6541. font-style:normal;
  6542. font-size:12px;
  6543. color:#0089FE;
  6544. text-align:center;
  6545. line-height:30px;
  6546. }
  6547. #u142766 .text {
  6548. position:absolute;
  6549. align-self:flex-start;
  6550. padding:0px 0px 0px 0px;
  6551. box-sizing:border-box;
  6552. width:100%;
  6553. }
  6554. #u142766_text {
  6555. border-width:0px;
  6556. white-space:nowrap;
  6557. text-transform:none;
  6558. }
  6559. #u142767_div {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:0px;
  6563. top:0px;
  6564. width:49px;
  6565. height:30px;
  6566. background:inherit;
  6567. background-color:rgba(255, 255, 255, 0);
  6568. border:none;
  6569. border-radius:0px;
  6570. -moz-box-shadow:none;
  6571. -webkit-box-shadow:none;
  6572. box-shadow:none;
  6573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6574. font-weight:400;
  6575. font-style:normal;
  6576. font-size:12px;
  6577. color:#0089FE;
  6578. text-align:center;
  6579. line-height:30px;
  6580. }
  6581. #u142767 {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:2856px;
  6585. top:488px;
  6586. width:49px;
  6587. height:30px;
  6588. display:flex;
  6589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6590. font-weight:400;
  6591. font-style:normal;
  6592. font-size:12px;
  6593. color:#0089FE;
  6594. text-align:center;
  6595. line-height:30px;
  6596. }
  6597. #u142767 .text {
  6598. position:absolute;
  6599. align-self:flex-start;
  6600. padding:0px 0px 0px 0px;
  6601. box-sizing:border-box;
  6602. width:100%;
  6603. }
  6604. #u142767_text {
  6605. border-width:0px;
  6606. white-space:nowrap;
  6607. text-transform:none;
  6608. }
  6609. #u142768_div {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:0px;
  6613. top:0px;
  6614. width:117px;
  6615. height:30px;
  6616. background:inherit;
  6617. background-color:rgba(255, 255, 255, 0);
  6618. border:none;
  6619. border-radius:0px;
  6620. -moz-box-shadow:none;
  6621. -webkit-box-shadow:none;
  6622. box-shadow:none;
  6623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6624. font-weight:400;
  6625. font-style:normal;
  6626. font-size:12px;
  6627. color:#0089FE;
  6628. text-align:center;
  6629. line-height:30px;
  6630. }
  6631. #u142768 {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:3009px;
  6635. top:487px;
  6636. width:117px;
  6637. height:30px;
  6638. display:flex;
  6639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6640. font-weight:400;
  6641. font-style:normal;
  6642. font-size:12px;
  6643. color:#0089FE;
  6644. text-align:center;
  6645. line-height:30px;
  6646. }
  6647. #u142768 .text {
  6648. position:absolute;
  6649. align-self:flex-start;
  6650. padding:0px 0px 0px 0px;
  6651. box-sizing:border-box;
  6652. width:100%;
  6653. }
  6654. #u142768_text {
  6655. border-width:0px;
  6656. white-space:nowrap;
  6657. text-transform:none;
  6658. }
  6659. #u142769 {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:0px;
  6664. width:0px;
  6665. height:0px;
  6666. }
  6667. #u142770_img {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:0px;
  6671. top:0px;
  6672. width:10px;
  6673. height:10px;
  6674. }
  6675. #u142770 {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:2162px;
  6679. top:451px;
  6680. width:10px;
  6681. height:10px;
  6682. display:flex;
  6683. font-size:12px;
  6684. }
  6685. #u142770 .text {
  6686. position:absolute;
  6687. align-self:center;
  6688. padding:2px 2px 2px 2px;
  6689. box-sizing:border-box;
  6690. width:100%;
  6691. }
  6692. #u142770_text {
  6693. border-width:0px;
  6694. word-wrap:break-word;
  6695. text-transform:none;
  6696. visibility:hidden;
  6697. }
  6698. #u142771_div {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:0px;
  6702. top:0px;
  6703. width:49px;
  6704. height:30px;
  6705. background:inherit;
  6706. background-color:rgba(255, 255, 255, 0);
  6707. border:none;
  6708. border-radius:0px;
  6709. -moz-box-shadow:none;
  6710. -webkit-box-shadow:none;
  6711. box-shadow:none;
  6712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6713. font-weight:400;
  6714. font-style:normal;
  6715. font-size:12px;
  6716. line-height:30px;
  6717. }
  6718. #u142771 {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:2143px;
  6722. top:412px;
  6723. width:49px;
  6724. height:30px;
  6725. display:flex;
  6726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6727. font-weight:400;
  6728. font-style:normal;
  6729. font-size:12px;
  6730. line-height:30px;
  6731. }
  6732. #u142771 .text {
  6733. position:absolute;
  6734. align-self:flex-start;
  6735. padding:0px 0px 0px 0px;
  6736. box-sizing:border-box;
  6737. width:100%;
  6738. }
  6739. #u142771_text {
  6740. border-width:0px;
  6741. white-space:nowrap;
  6742. text-transform:none;
  6743. }
  6744. #u142772_div {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:0px;
  6748. top:0px;
  6749. width:104px;
  6750. height:17px;
  6751. background:inherit;
  6752. background-color:rgba(255, 255, 255, 0);
  6753. border:none;
  6754. border-radius:0px;
  6755. -moz-box-shadow:none;
  6756. -webkit-box-shadow:none;
  6757. box-shadow:none;
  6758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6759. font-weight:400;
  6760. font-style:normal;
  6761. font-size:12px;
  6762. text-align:center;
  6763. }
  6764. #u142772 {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:2115px;
  6768. top:471px;
  6769. width:104px;
  6770. height:17px;
  6771. display:flex;
  6772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6773. font-weight:400;
  6774. font-style:normal;
  6775. font-size:12px;
  6776. text-align:center;
  6777. }
  6778. #u142772 .text {
  6779. position:absolute;
  6780. align-self:flex-start;
  6781. padding:0px 0px 0px 0px;
  6782. box-sizing:border-box;
  6783. width:100%;
  6784. }
  6785. #u142772_text {
  6786. border-width:0px;
  6787. white-space:nowrap;
  6788. text-transform:none;
  6789. }
  6790. #u142773_div {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:0px;
  6794. top:0px;
  6795. width:144px;
  6796. height:30px;
  6797. background:inherit;
  6798. background-color:rgba(255, 255, 255, 0);
  6799. border:none;
  6800. border-radius:0px;
  6801. -moz-box-shadow:none;
  6802. -webkit-box-shadow:none;
  6803. box-shadow:none;
  6804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:12px;
  6808. color:#0089FE;
  6809. text-align:center;
  6810. line-height:30px;
  6811. }
  6812. #u142773 {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:2095px;
  6816. top:488px;
  6817. width:144px;
  6818. height:30px;
  6819. display:flex;
  6820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6821. font-weight:400;
  6822. font-style:normal;
  6823. font-size:12px;
  6824. color:#0089FE;
  6825. text-align:center;
  6826. line-height:30px;
  6827. }
  6828. #u142773 .text {
  6829. position:absolute;
  6830. align-self:flex-start;
  6831. padding:0px 0px 0px 0px;
  6832. box-sizing:border-box;
  6833. width:100%;
  6834. }
  6835. #u142773_text {
  6836. border-width:0px;
  6837. white-space:nowrap;
  6838. text-transform:none;
  6839. }
  6840. #u142774 {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:0px;
  6844. top:0px;
  6845. width:0px;
  6846. height:0px;
  6847. }
  6848. #u142775_img {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:0px;
  6852. top:0px;
  6853. width:10px;
  6854. height:10px;
  6855. }
  6856. #u142775 {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:2342px;
  6860. top:451px;
  6861. width:10px;
  6862. height:10px;
  6863. display:flex;
  6864. font-size:12px;
  6865. }
  6866. #u142775 .text {
  6867. position:absolute;
  6868. align-self:center;
  6869. padding:2px 2px 2px 2px;
  6870. box-sizing:border-box;
  6871. width:100%;
  6872. }
  6873. #u142775_text {
  6874. border-width:0px;
  6875. word-wrap:break-word;
  6876. text-transform:none;
  6877. visibility:hidden;
  6878. }
  6879. #u142776_div {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:0px;
  6883. top:0px;
  6884. width:73px;
  6885. height:30px;
  6886. background:inherit;
  6887. background-color:rgba(255, 255, 255, 0);
  6888. border:none;
  6889. border-radius:0px;
  6890. -moz-box-shadow:none;
  6891. -webkit-box-shadow:none;
  6892. box-shadow:none;
  6893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6894. font-weight:400;
  6895. font-style:normal;
  6896. font-size:12px;
  6897. line-height:30px;
  6898. }
  6899. #u142776 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:2311px;
  6903. top:412px;
  6904. width:73px;
  6905. height:30px;
  6906. display:flex;
  6907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6908. font-weight:400;
  6909. font-style:normal;
  6910. font-size:12px;
  6911. line-height:30px;
  6912. }
  6913. #u142776 .text {
  6914. position:absolute;
  6915. align-self:flex-start;
  6916. padding:0px 0px 0px 0px;
  6917. box-sizing:border-box;
  6918. width:100%;
  6919. }
  6920. #u142776_text {
  6921. border-width:0px;
  6922. white-space:nowrap;
  6923. text-transform:none;
  6924. }
  6925. #u142777_div {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:0px;
  6929. top:0px;
  6930. width:107px;
  6931. height:17px;
  6932. background:inherit;
  6933. background-color:rgba(255, 255, 255, 0);
  6934. border:none;
  6935. border-radius:0px;
  6936. -moz-box-shadow:none;
  6937. -webkit-box-shadow:none;
  6938. box-shadow:none;
  6939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6940. font-weight:400;
  6941. font-style:normal;
  6942. font-size:12px;
  6943. text-align:center;
  6944. }
  6945. #u142777 {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:2294px;
  6949. top:471px;
  6950. width:107px;
  6951. height:17px;
  6952. display:flex;
  6953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6954. font-weight:400;
  6955. font-style:normal;
  6956. font-size:12px;
  6957. text-align:center;
  6958. }
  6959. #u142777 .text {
  6960. position:absolute;
  6961. align-self:flex-start;
  6962. padding:0px 0px 0px 0px;
  6963. box-sizing:border-box;
  6964. width:100%;
  6965. }
  6966. #u142777_text {
  6967. border-width:0px;
  6968. white-space:nowrap;
  6969. text-transform:none;
  6970. }
  6971. #u142778_div {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:0px;
  6975. top:0px;
  6976. width:80px;
  6977. height:30px;
  6978. background:inherit;
  6979. background-color:rgba(255, 255, 255, 0);
  6980. border:none;
  6981. border-radius:0px;
  6982. -moz-box-shadow:none;
  6983. -webkit-box-shadow:none;
  6984. box-shadow:none;
  6985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:12px;
  6989. color:#0089FE;
  6990. text-align:center;
  6991. line-height:30px;
  6992. }
  6993. #u142778 {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:2311px;
  6997. top:488px;
  6998. width:80px;
  6999. height:30px;
  7000. display:flex;
  7001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7002. font-weight:400;
  7003. font-style:normal;
  7004. font-size:12px;
  7005. color:#0089FE;
  7006. text-align:center;
  7007. line-height:30px;
  7008. }
  7009. #u142778 .text {
  7010. position:absolute;
  7011. align-self:flex-start;
  7012. padding:0px 0px 0px 0px;
  7013. box-sizing:border-box;
  7014. width:100%;
  7015. }
  7016. #u142778_text {
  7017. border-width:0px;
  7018. white-space:nowrap;
  7019. text-transform:none;
  7020. }
  7021. #u142779 {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:0px;
  7025. top:0px;
  7026. width:0px;
  7027. height:0px;
  7028. }
  7029. #u142780_img {
  7030. border-width:0px;
  7031. position:absolute;
  7032. left:0px;
  7033. top:0px;
  7034. width:10px;
  7035. height:10px;
  7036. }
  7037. #u142780 {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:2522px;
  7041. top:451px;
  7042. width:10px;
  7043. height:10px;
  7044. display:flex;
  7045. font-size:12px;
  7046. }
  7047. #u142780 .text {
  7048. position:absolute;
  7049. align-self:center;
  7050. padding:2px 2px 2px 2px;
  7051. box-sizing:border-box;
  7052. width:100%;
  7053. }
  7054. #u142780_text {
  7055. border-width:0px;
  7056. word-wrap:break-word;
  7057. text-transform:none;
  7058. visibility:hidden;
  7059. }
  7060. #u142781_div {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:73px;
  7066. height:30px;
  7067. background:inherit;
  7068. background-color:rgba(255, 255, 255, 0);
  7069. border:none;
  7070. border-radius:0px;
  7071. -moz-box-shadow:none;
  7072. -webkit-box-shadow:none;
  7073. box-shadow:none;
  7074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:12px;
  7078. line-height:30px;
  7079. }
  7080. #u142781 {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:2491px;
  7084. top:412px;
  7085. width:73px;
  7086. height:30px;
  7087. display:flex;
  7088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7089. font-weight:400;
  7090. font-style:normal;
  7091. font-size:12px;
  7092. line-height:30px;
  7093. }
  7094. #u142781 .text {
  7095. position:absolute;
  7096. align-self:flex-start;
  7097. padding:0px 0px 0px 0px;
  7098. box-sizing:border-box;
  7099. width:100%;
  7100. }
  7101. #u142781_text {
  7102. border-width:0px;
  7103. white-space:nowrap;
  7104. text-transform:none;
  7105. }
  7106. #u142782_div {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:99px;
  7112. height:17px;
  7113. background:inherit;
  7114. background-color:rgba(255, 255, 255, 0);
  7115. border:none;
  7116. border-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:12px;
  7124. text-align:center;
  7125. }
  7126. #u142782 {
  7127. border-width:0px;
  7128. position:absolute;
  7129. left:2478px;
  7130. top:471px;
  7131. width:99px;
  7132. height:17px;
  7133. display:flex;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:12px;
  7138. text-align:center;
  7139. }
  7140. #u142782 .text {
  7141. position:absolute;
  7142. align-self:flex-start;
  7143. padding:0px 0px 0px 0px;
  7144. box-sizing:border-box;
  7145. width:100%;
  7146. }
  7147. #u142782_text {
  7148. border-width:0px;
  7149. white-space:nowrap;
  7150. text-transform:none;
  7151. }
  7152. #u142783_div {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:0px;
  7156. top:0px;
  7157. width:80px;
  7158. height:30px;
  7159. background:inherit;
  7160. background-color:rgba(255, 255, 255, 0);
  7161. border:none;
  7162. border-radius:0px;
  7163. -moz-box-shadow:none;
  7164. -webkit-box-shadow:none;
  7165. box-shadow:none;
  7166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7167. font-weight:400;
  7168. font-style:normal;
  7169. font-size:12px;
  7170. color:#0089FE;
  7171. text-align:center;
  7172. line-height:30px;
  7173. }
  7174. #u142783 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:2487px;
  7178. top:488px;
  7179. width:80px;
  7180. height:30px;
  7181. display:flex;
  7182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. font-size:12px;
  7186. color:#0089FE;
  7187. text-align:center;
  7188. line-height:30px;
  7189. }
  7190. #u142783 .text {
  7191. position:absolute;
  7192. align-self:flex-start;
  7193. padding:0px 0px 0px 0px;
  7194. box-sizing:border-box;
  7195. width:100%;
  7196. }
  7197. #u142783_text {
  7198. border-width:0px;
  7199. white-space:nowrap;
  7200. text-transform:none;
  7201. }
  7202. #u142784 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:0px;
  7206. top:0px;
  7207. width:0px;
  7208. height:0px;
  7209. }
  7210. #u142785_img {
  7211. border-width:0px;
  7212. position:absolute;
  7213. left:0px;
  7214. top:0px;
  7215. width:10px;
  7216. height:10px;
  7217. }
  7218. #u142785 {
  7219. border-width:0px;
  7220. position:absolute;
  7221. left:2688px;
  7222. top:451px;
  7223. width:10px;
  7224. height:10px;
  7225. display:flex;
  7226. font-size:12px;
  7227. }
  7228. #u142785 .text {
  7229. position:absolute;
  7230. align-self:center;
  7231. padding:2px 2px 2px 2px;
  7232. box-sizing:border-box;
  7233. width:100%;
  7234. }
  7235. #u142785_text {
  7236. border-width:0px;
  7237. word-wrap:break-word;
  7238. text-transform:none;
  7239. visibility:hidden;
  7240. }
  7241. #u142786_div {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:0px;
  7245. top:0px;
  7246. width:49px;
  7247. height:30px;
  7248. background:inherit;
  7249. background-color:rgba(255, 255, 255, 0);
  7250. border:none;
  7251. border-radius:0px;
  7252. -moz-box-shadow:none;
  7253. -webkit-box-shadow:none;
  7254. box-shadow:none;
  7255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7256. font-weight:400;
  7257. font-style:normal;
  7258. font-size:12px;
  7259. line-height:30px;
  7260. }
  7261. #u142786 {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:2669px;
  7265. top:417px;
  7266. width:49px;
  7267. height:30px;
  7268. display:flex;
  7269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:12px;
  7273. line-height:30px;
  7274. }
  7275. #u142786 .text {
  7276. position:absolute;
  7277. align-self:flex-start;
  7278. padding:0px 0px 0px 0px;
  7279. box-sizing:border-box;
  7280. width:100%;
  7281. }
  7282. #u142786_text {
  7283. border-width:0px;
  7284. white-space:nowrap;
  7285. text-transform:none;
  7286. }
  7287. #u142787_div {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:0px;
  7291. top:0px;
  7292. width:102px;
  7293. height:17px;
  7294. background:inherit;
  7295. background-color:rgba(255, 255, 255, 0);
  7296. border:none;
  7297. border-radius:0px;
  7298. -moz-box-shadow:none;
  7299. -webkit-box-shadow:none;
  7300. box-shadow:none;
  7301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. font-size:12px;
  7305. text-align:center;
  7306. }
  7307. #u142787 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:2642px;
  7311. top:466px;
  7312. width:102px;
  7313. height:17px;
  7314. display:flex;
  7315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7316. font-weight:400;
  7317. font-style:normal;
  7318. font-size:12px;
  7319. text-align:center;
  7320. }
  7321. #u142787 .text {
  7322. position:absolute;
  7323. align-self:flex-start;
  7324. padding:0px 0px 0px 0px;
  7325. box-sizing:border-box;
  7326. width:100%;
  7327. }
  7328. #u142787_text {
  7329. border-width:0px;
  7330. white-space:nowrap;
  7331. text-transform:none;
  7332. }
  7333. #u142788_div {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:0px;
  7337. top:0px;
  7338. width:144px;
  7339. height:30px;
  7340. background:inherit;
  7341. background-color:rgba(255, 255, 255, 0);
  7342. border:none;
  7343. border-radius:0px;
  7344. -moz-box-shadow:none;
  7345. -webkit-box-shadow:none;
  7346. box-shadow:none;
  7347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7348. font-weight:400;
  7349. font-style:normal;
  7350. font-size:12px;
  7351. color:#0089FE;
  7352. text-align:center;
  7353. line-height:30px;
  7354. }
  7355. #u142788 {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:2621px;
  7359. top:487px;
  7360. width:144px;
  7361. height:30px;
  7362. display:flex;
  7363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7364. font-weight:400;
  7365. font-style:normal;
  7366. font-size:12px;
  7367. color:#0089FE;
  7368. text-align:center;
  7369. line-height:30px;
  7370. }
  7371. #u142788 .text {
  7372. position:absolute;
  7373. align-self:flex-start;
  7374. padding:0px 0px 0px 0px;
  7375. box-sizing:border-box;
  7376. width:100%;
  7377. }
  7378. #u142788_text {
  7379. border-width:0px;
  7380. white-space:nowrap;
  7381. text-transform:none;
  7382. }
  7383. #u142789_div {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:0px;
  7387. top:0px;
  7388. width:280px;
  7389. height:25px;
  7390. background:inherit;
  7391. background-color:rgba(255, 255, 255, 0);
  7392. box-sizing:border-box;
  7393. border-width:2px;
  7394. border-style:solid;
  7395. border-color:rgba(0, 0, 0, 1);
  7396. border-top:0px;
  7397. border-right:0px;
  7398. border-bottom:0px;
  7399. border-radius:0px;
  7400. border-top-left-radius:0px;
  7401. border-bottom-left-radius:0px;
  7402. -moz-box-shadow:none;
  7403. -webkit-box-shadow:none;
  7404. box-shadow:none;
  7405. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7406. font-weight:500;
  7407. font-style:normal;
  7408. font-size:18px;
  7409. color:#000000;
  7410. }
  7411. #u142789 {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:1915px;
  7415. top:321px;
  7416. width:280px;
  7417. height:25px;
  7418. display:flex;
  7419. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7420. font-weight:500;
  7421. font-style:normal;
  7422. font-size:18px;
  7423. color:#000000;
  7424. }
  7425. #u142789 .text {
  7426. position:absolute;
  7427. align-self:flex-start;
  7428. padding:0px 0px 0px 10px;
  7429. box-sizing:border-box;
  7430. width:100%;
  7431. }
  7432. #u142789_text {
  7433. border-width:0px;
  7434. word-wrap:break-word;
  7435. text-transform:none;
  7436. }
  7437. #u142790 {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:0px;
  7441. top:0px;
  7442. width:0px;
  7443. height:0px;
  7444. }
  7445. #u142791_div {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:0px;
  7449. top:0px;
  7450. width:1243px;
  7451. height:140px;
  7452. background:inherit;
  7453. background-color:rgba(242, 242, 242, 0.450980392156863);
  7454. border:none;
  7455. border-radius:0px;
  7456. -moz-box-shadow:none;
  7457. -webkit-box-shadow:none;
  7458. box-shadow:none;
  7459. }
  7460. #u142791 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:1915px;
  7464. top:528px;
  7465. width:1243px;
  7466. height:140px;
  7467. display:flex;
  7468. }
  7469. #u142791 .text {
  7470. position:absolute;
  7471. align-self:center;
  7472. padding:2px 2px 2px 2px;
  7473. box-sizing:border-box;
  7474. width:100%;
  7475. }
  7476. #u142791_text {
  7477. border-width:0px;
  7478. word-wrap:break-word;
  7479. text-transform:none;
  7480. visibility:hidden;
  7481. }
  7482. #u142792_div {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:0px;
  7486. top:0px;
  7487. width:57px;
  7488. height:30px;
  7489. background:inherit;
  7490. background-color:rgba(255, 255, 255, 0);
  7491. border:none;
  7492. border-radius:0px;
  7493. -moz-box-shadow:none;
  7494. -webkit-box-shadow:none;
  7495. box-shadow:none;
  7496. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7497. font-weight:500;
  7498. font-style:normal;
  7499. line-height:30px;
  7500. }
  7501. #u142792 {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:1929px;
  7505. top:543px;
  7506. width:57px;
  7507. height:30px;
  7508. display:flex;
  7509. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7510. font-weight:500;
  7511. font-style:normal;
  7512. line-height:30px;
  7513. }
  7514. #u142792 .text {
  7515. position:absolute;
  7516. align-self:flex-start;
  7517. padding:0px 0px 0px 0px;
  7518. box-sizing:border-box;
  7519. width:100%;
  7520. }
  7521. #u142792_text {
  7522. border-width:0px;
  7523. white-space:nowrap;
  7524. text-transform:none;
  7525. }
  7526. #u142793_div {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:280px;
  7532. height:30px;
  7533. background:inherit;
  7534. background-color:rgba(255, 255, 255, 0);
  7535. border:none;
  7536. border-radius:0px;
  7537. -moz-box-shadow:none;
  7538. -webkit-box-shadow:none;
  7539. box-shadow:none;
  7540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. line-height:30px;
  7544. }
  7545. #u142793 {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:1935px;
  7549. top:578px;
  7550. width:280px;
  7551. height:30px;
  7552. display:flex;
  7553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7554. font-weight:400;
  7555. font-style:normal;
  7556. line-height:30px;
  7557. }
  7558. #u142793 .text {
  7559. position:absolute;
  7560. align-self:flex-start;
  7561. padding:0px 0px 0px 0px;
  7562. box-sizing:border-box;
  7563. width:100%;
  7564. }
  7565. #u142793_text {
  7566. border-width:0px;
  7567. word-wrap:break-word;
  7568. text-transform:none;
  7569. }
  7570. #u142794_div {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:0px;
  7574. top:0px;
  7575. width:280px;
  7576. height:30px;
  7577. background:inherit;
  7578. background-color:rgba(255, 255, 255, 0);
  7579. border:none;
  7580. border-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. line-height:30px;
  7588. }
  7589. #u142794 {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:2564px;
  7593. top:578px;
  7594. width:280px;
  7595. height:30px;
  7596. display:flex;
  7597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7598. font-weight:400;
  7599. font-style:normal;
  7600. line-height:30px;
  7601. }
  7602. #u142794 .text {
  7603. position:absolute;
  7604. align-self:flex-start;
  7605. padding:0px 0px 0px 0px;
  7606. box-sizing:border-box;
  7607. width:100%;
  7608. }
  7609. #u142794_text {
  7610. border-width:0px;
  7611. word-wrap:break-word;
  7612. text-transform:none;
  7613. }
  7614. #u142795_div {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:0px;
  7618. top:0px;
  7619. width:280px;
  7620. height:30px;
  7621. background:inherit;
  7622. background-color:rgba(255, 255, 255, 0);
  7623. border:none;
  7624. border-radius:0px;
  7625. -moz-box-shadow:none;
  7626. -webkit-box-shadow:none;
  7627. box-shadow:none;
  7628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7629. font-weight:400;
  7630. font-style:normal;
  7631. line-height:30px;
  7632. }
  7633. #u142795 {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:2878px;
  7637. top:578px;
  7638. width:280px;
  7639. height:30px;
  7640. display:flex;
  7641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7642. font-weight:400;
  7643. font-style:normal;
  7644. line-height:30px;
  7645. }
  7646. #u142795 .text {
  7647. position:absolute;
  7648. align-self:flex-start;
  7649. padding:0px 0px 0px 0px;
  7650. box-sizing:border-box;
  7651. width:100%;
  7652. }
  7653. #u142795_text {
  7654. border-width:0px;
  7655. word-wrap:break-word;
  7656. text-transform:none;
  7657. }
  7658. #u142796_div {
  7659. border-width:0px;
  7660. position:absolute;
  7661. left:0px;
  7662. top:0px;
  7663. width:280px;
  7664. height:30px;
  7665. background:inherit;
  7666. background-color:rgba(255, 255, 255, 0);
  7667. border:none;
  7668. border-radius:0px;
  7669. -moz-box-shadow:none;
  7670. -webkit-box-shadow:none;
  7671. box-shadow:none;
  7672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7673. font-weight:400;
  7674. font-style:normal;
  7675. line-height:30px;
  7676. }
  7677. #u142796 {
  7678. border-width:0px;
  7679. position:absolute;
  7680. left:2249px;
  7681. top:578px;
  7682. width:280px;
  7683. height:30px;
  7684. display:flex;
  7685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7686. font-weight:400;
  7687. font-style:normal;
  7688. line-height:30px;
  7689. }
  7690. #u142796 .text {
  7691. position:absolute;
  7692. align-self:flex-start;
  7693. padding:0px 0px 0px 0px;
  7694. box-sizing:border-box;
  7695. width:100%;
  7696. }
  7697. #u142796_text {
  7698. border-width:0px;
  7699. word-wrap:break-word;
  7700. text-transform:none;
  7701. }
  7702. #u142797_div {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:280px;
  7708. height:30px;
  7709. background:inherit;
  7710. background-color:rgba(255, 255, 255, 0);
  7711. border:none;
  7712. border-radius:0px;
  7713. -moz-box-shadow:none;
  7714. -webkit-box-shadow:none;
  7715. box-shadow:none;
  7716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7717. font-weight:400;
  7718. font-style:normal;
  7719. line-height:30px;
  7720. }
  7721. #u142797 {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:1935px;
  7725. top:618px;
  7726. width:280px;
  7727. height:30px;
  7728. display:flex;
  7729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7730. font-weight:400;
  7731. font-style:normal;
  7732. line-height:30px;
  7733. }
  7734. #u142797 .text {
  7735. position:absolute;
  7736. align-self:flex-start;
  7737. padding:0px 0px 0px 0px;
  7738. box-sizing:border-box;
  7739. width:100%;
  7740. }
  7741. #u142797_text {
  7742. border-width:0px;
  7743. word-wrap:break-word;
  7744. text-transform:none;
  7745. }
  7746. #u142798_div {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:280px;
  7752. height:30px;
  7753. background:inherit;
  7754. background-color:rgba(255, 255, 255, 0);
  7755. border:none;
  7756. border-radius:0px;
  7757. -moz-box-shadow:none;
  7758. -webkit-box-shadow:none;
  7759. box-shadow:none;
  7760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7761. font-weight:400;
  7762. font-style:normal;
  7763. line-height:30px;
  7764. }
  7765. #u142798 {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:2249px;
  7769. top:618px;
  7770. width:280px;
  7771. height:30px;
  7772. display:flex;
  7773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7774. font-weight:400;
  7775. font-style:normal;
  7776. line-height:30px;
  7777. }
  7778. #u142798 .text {
  7779. position:absolute;
  7780. align-self:flex-start;
  7781. padding:0px 0px 0px 0px;
  7782. box-sizing:border-box;
  7783. width:100%;
  7784. }
  7785. #u142798_text {
  7786. border-width:0px;
  7787. word-wrap:break-word;
  7788. text-transform:none;
  7789. }
  7790. #u142799_div {
  7791. border-width:0px;
  7792. position:absolute;
  7793. left:0px;
  7794. top:0px;
  7795. width:280px;
  7796. height:30px;
  7797. background:inherit;
  7798. background-color:rgba(255, 255, 255, 0);
  7799. border:none;
  7800. border-radius:0px;
  7801. -moz-box-shadow:none;
  7802. -webkit-box-shadow:none;
  7803. box-shadow:none;
  7804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7805. font-weight:400;
  7806. font-style:normal;
  7807. line-height:30px;
  7808. }
  7809. #u142799 {
  7810. border-width:0px;
  7811. position:absolute;
  7812. left:2564px;
  7813. top:618px;
  7814. width:280px;
  7815. height:30px;
  7816. display:flex;
  7817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7818. font-weight:400;
  7819. font-style:normal;
  7820. line-height:30px;
  7821. }
  7822. #u142799 .text {
  7823. position:absolute;
  7824. align-self:flex-start;
  7825. padding:0px 0px 0px 0px;
  7826. box-sizing:border-box;
  7827. width:100%;
  7828. }
  7829. #u142799_text {
  7830. border-width:0px;
  7831. word-wrap:break-word;
  7832. text-transform:none;
  7833. }
  7834. #u142800_div {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:0px;
  7838. top:0px;
  7839. width:280px;
  7840. height:30px;
  7841. background:inherit;
  7842. background-color:rgba(255, 255, 255, 0);
  7843. border:none;
  7844. border-radius:0px;
  7845. -moz-box-shadow:none;
  7846. -webkit-box-shadow:none;
  7847. box-shadow:none;
  7848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7849. font-style:normal;
  7850. line-height:30px;
  7851. }
  7852. #u142800 {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:2878px;
  7856. top:618px;
  7857. width:280px;
  7858. height:30px;
  7859. display:flex;
  7860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7861. font-style:normal;
  7862. line-height:30px;
  7863. }
  7864. #u142800 .text {
  7865. position:absolute;
  7866. align-self:flex-start;
  7867. padding:0px 0px 0px 0px;
  7868. box-sizing:border-box;
  7869. width:100%;
  7870. }
  7871. #u142800_text {
  7872. border-width:0px;
  7873. word-wrap:break-word;
  7874. text-transform:none;
  7875. }
  7876. #u142801_div {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:0px;
  7880. top:0px;
  7881. width:73px;
  7882. height:30px;
  7883. background:inherit;
  7884. background-color:rgba(255, 255, 255, 0);
  7885. border:none;
  7886. border-radius:0px;
  7887. -moz-box-shadow:none;
  7888. -webkit-box-shadow:none;
  7889. box-shadow:none;
  7890. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7891. font-weight:500;
  7892. font-style:normal;
  7893. font-size:18px;
  7894. line-height:30px;
  7895. }
  7896. #u142801 {
  7897. border-width:0px;
  7898. position:absolute;
  7899. left:1915px;
  7900. top:688px;
  7901. width:73px;
  7902. height:30px;
  7903. display:flex;
  7904. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7905. font-weight:500;
  7906. font-style:normal;
  7907. font-size:18px;
  7908. line-height:30px;
  7909. }
  7910. #u142801 .text {
  7911. position:absolute;
  7912. align-self:flex-start;
  7913. padding:0px 0px 0px 0px;
  7914. box-sizing:border-box;
  7915. width:100%;
  7916. }
  7917. #u142801_text {
  7918. border-width:0px;
  7919. white-space:nowrap;
  7920. text-transform:none;
  7921. }
  7922. #u142802 {
  7923. border-width:0px;
  7924. position:absolute;
  7925. left:1915px;
  7926. top:728px;
  7927. width:1243px;
  7928. height:118px;
  7929. }
  7930. #u142803_img {
  7931. border-width:0px;
  7932. position:absolute;
  7933. left:0px;
  7934. top:0px;
  7935. width:249px;
  7936. height:40px;
  7937. }
  7938. #u142803 {
  7939. border-width:0px;
  7940. position:absolute;
  7941. left:0px;
  7942. top:0px;
  7943. width:249px;
  7944. height:40px;
  7945. display:flex;
  7946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7947. font-weight:400;
  7948. font-style:normal;
  7949. font-size:14px;
  7950. color:#FFFFFF;
  7951. }
  7952. #u142803 .text {
  7953. position:absolute;
  7954. align-self:center;
  7955. padding:2px 2px 2px 2px;
  7956. box-sizing:border-box;
  7957. width:100%;
  7958. }
  7959. #u142803_text {
  7960. border-width:0px;
  7961. word-wrap:break-word;
  7962. text-transform:none;
  7963. }
  7964. #u142804_img {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:0px;
  7968. top:0px;
  7969. width:249px;
  7970. height:40px;
  7971. }
  7972. #u142804 {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:249px;
  7976. top:0px;
  7977. width:249px;
  7978. height:40px;
  7979. display:flex;
  7980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7981. font-weight:400;
  7982. font-style:normal;
  7983. font-size:14px;
  7984. color:#FFFFFF;
  7985. }
  7986. #u142804 .text {
  7987. position:absolute;
  7988. align-self:center;
  7989. padding:2px 2px 2px 2px;
  7990. box-sizing:border-box;
  7991. width:100%;
  7992. }
  7993. #u142804_text {
  7994. border-width:0px;
  7995. word-wrap:break-word;
  7996. text-transform:none;
  7997. }
  7998. #u142805_img {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:0px;
  8002. top:0px;
  8003. width:249px;
  8004. height:40px;
  8005. }
  8006. #u142805 {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:498px;
  8010. top:0px;
  8011. width:249px;
  8012. height:40px;
  8013. display:flex;
  8014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8015. font-weight:400;
  8016. font-style:normal;
  8017. font-size:14px;
  8018. color:#FFFFFF;
  8019. }
  8020. #u142805 .text {
  8021. position:absolute;
  8022. align-self:center;
  8023. padding:2px 2px 2px 2px;
  8024. box-sizing:border-box;
  8025. width:100%;
  8026. }
  8027. #u142805_text {
  8028. border-width:0px;
  8029. word-wrap:break-word;
  8030. text-transform:none;
  8031. }
  8032. #u142806_img {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:0px;
  8036. top:0px;
  8037. width:249px;
  8038. height:40px;
  8039. }
  8040. #u142806 {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:747px;
  8044. top:0px;
  8045. width:249px;
  8046. height:40px;
  8047. display:flex;
  8048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8049. font-weight:400;
  8050. font-style:normal;
  8051. font-size:14px;
  8052. color:#FFFFFF;
  8053. }
  8054. #u142806 .text {
  8055. position:absolute;
  8056. align-self:center;
  8057. padding:2px 2px 2px 2px;
  8058. box-sizing:border-box;
  8059. width:100%;
  8060. }
  8061. #u142806_text {
  8062. border-width:0px;
  8063. word-wrap:break-word;
  8064. text-transform:none;
  8065. }
  8066. #u142807_img {
  8067. border-width:0px;
  8068. position:absolute;
  8069. left:0px;
  8070. top:0px;
  8071. width:247px;
  8072. height:40px;
  8073. }
  8074. #u142807 {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:996px;
  8078. top:0px;
  8079. width:247px;
  8080. height:40px;
  8081. display:flex;
  8082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8083. font-weight:400;
  8084. font-style:normal;
  8085. font-size:14px;
  8086. color:#FFFFFF;
  8087. }
  8088. #u142807 .text {
  8089. position:absolute;
  8090. align-self:center;
  8091. padding:2px 2px 2px 2px;
  8092. box-sizing:border-box;
  8093. width:100%;
  8094. }
  8095. #u142807_text {
  8096. border-width:0px;
  8097. word-wrap:break-word;
  8098. text-transform:none;
  8099. }
  8100. #u142808_img {
  8101. border-width:0px;
  8102. position:absolute;
  8103. left:0px;
  8104. top:0px;
  8105. width:249px;
  8106. height:40px;
  8107. }
  8108. #u142808 {
  8109. border-width:0px;
  8110. position:absolute;
  8111. left:0px;
  8112. top:40px;
  8113. width:249px;
  8114. height:40px;
  8115. display:flex;
  8116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8117. font-weight:400;
  8118. font-style:normal;
  8119. font-size:14px;
  8120. }
  8121. #u142808 .text {
  8122. position:absolute;
  8123. align-self:center;
  8124. padding:2px 2px 2px 2px;
  8125. box-sizing:border-box;
  8126. width:100%;
  8127. }
  8128. #u142808_text {
  8129. border-width:0px;
  8130. word-wrap:break-word;
  8131. text-transform:none;
  8132. }
  8133. #u142809_img {
  8134. border-width:0px;
  8135. position:absolute;
  8136. left:0px;
  8137. top:0px;
  8138. width:249px;
  8139. height:40px;
  8140. }
  8141. #u142809 {
  8142. border-width:0px;
  8143. position:absolute;
  8144. left:249px;
  8145. top:40px;
  8146. width:249px;
  8147. height:40px;
  8148. display:flex;
  8149. font-size:14px;
  8150. }
  8151. #u142809 .text {
  8152. position:absolute;
  8153. align-self:center;
  8154. padding:2px 2px 2px 2px;
  8155. box-sizing:border-box;
  8156. width:100%;
  8157. }
  8158. #u142809_text {
  8159. border-width:0px;
  8160. word-wrap:break-word;
  8161. text-transform:none;
  8162. }
  8163. #u142810_img {
  8164. border-width:0px;
  8165. position:absolute;
  8166. left:0px;
  8167. top:0px;
  8168. width:249px;
  8169. height:40px;
  8170. }
  8171. #u142810 {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:498px;
  8175. top:40px;
  8176. width:249px;
  8177. height:40px;
  8178. display:flex;
  8179. font-size:14px;
  8180. }
  8181. #u142810 .text {
  8182. position:absolute;
  8183. align-self:center;
  8184. padding:2px 2px 2px 2px;
  8185. box-sizing:border-box;
  8186. width:100%;
  8187. }
  8188. #u142810_text {
  8189. border-width:0px;
  8190. word-wrap:break-word;
  8191. text-transform:none;
  8192. }
  8193. #u142811_img {
  8194. border-width:0px;
  8195. position:absolute;
  8196. left:0px;
  8197. top:0px;
  8198. width:249px;
  8199. height:40px;
  8200. }
  8201. #u142811 {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:747px;
  8205. top:40px;
  8206. width:249px;
  8207. height:40px;
  8208. display:flex;
  8209. font-size:14px;
  8210. }
  8211. #u142811 .text {
  8212. position:absolute;
  8213. align-self:center;
  8214. padding:2px 2px 2px 2px;
  8215. box-sizing:border-box;
  8216. width:100%;
  8217. }
  8218. #u142811_text {
  8219. border-width:0px;
  8220. word-wrap:break-word;
  8221. text-transform:none;
  8222. }
  8223. #u142812_img {
  8224. border-width:0px;
  8225. position:absolute;
  8226. left:0px;
  8227. top:0px;
  8228. width:247px;
  8229. height:40px;
  8230. }
  8231. #u142812 {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:996px;
  8235. top:40px;
  8236. width:247px;
  8237. height:40px;
  8238. display:flex;
  8239. font-size:14px;
  8240. }
  8241. #u142812 .text {
  8242. position:absolute;
  8243. align-self:center;
  8244. padding:2px 2px 2px 2px;
  8245. box-sizing:border-box;
  8246. width:100%;
  8247. }
  8248. #u142812_text {
  8249. border-width:0px;
  8250. word-wrap:break-word;
  8251. text-transform:none;
  8252. }
  8253. #u142813_img {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:0px;
  8257. top:0px;
  8258. width:249px;
  8259. height:38px;
  8260. }
  8261. #u142813 {
  8262. border-width:0px;
  8263. position:absolute;
  8264. left:0px;
  8265. top:80px;
  8266. width:249px;
  8267. height:38px;
  8268. display:flex;
  8269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8270. font-weight:400;
  8271. font-style:normal;
  8272. font-size:14px;
  8273. color:#0099FF;
  8274. }
  8275. #u142813 .text {
  8276. position:absolute;
  8277. align-self:center;
  8278. padding:2px 2px 2px 2px;
  8279. box-sizing:border-box;
  8280. width:100%;
  8281. }
  8282. #u142813_text {
  8283. border-width:0px;
  8284. word-wrap:break-word;
  8285. text-transform:none;
  8286. visibility:hidden;
  8287. }
  8288. #u142814_img {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:0px;
  8292. top:0px;
  8293. width:249px;
  8294. height:38px;
  8295. }
  8296. #u142814 {
  8297. border-width:0px;
  8298. position:absolute;
  8299. left:249px;
  8300. top:80px;
  8301. width:249px;
  8302. height:38px;
  8303. display:flex;
  8304. font-size:14px;
  8305. color:#0099FF;
  8306. }
  8307. #u142814 .text {
  8308. position:absolute;
  8309. align-self:center;
  8310. padding:2px 2px 2px 2px;
  8311. box-sizing:border-box;
  8312. width:100%;
  8313. }
  8314. #u142814_text {
  8315. border-width:0px;
  8316. word-wrap:break-word;
  8317. text-transform:none;
  8318. visibility:hidden;
  8319. }
  8320. #u142815_img {
  8321. border-width:0px;
  8322. position:absolute;
  8323. left:0px;
  8324. top:0px;
  8325. width:249px;
  8326. height:38px;
  8327. }
  8328. #u142815 {
  8329. border-width:0px;
  8330. position:absolute;
  8331. left:498px;
  8332. top:80px;
  8333. width:249px;
  8334. height:38px;
  8335. display:flex;
  8336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8337. font-weight:400;
  8338. font-style:normal;
  8339. font-size:14px;
  8340. color:#0099FF;
  8341. }
  8342. #u142815 .text {
  8343. position:absolute;
  8344. align-self:center;
  8345. padding:2px 2px 2px 2px;
  8346. box-sizing:border-box;
  8347. width:100%;
  8348. }
  8349. #u142815_text {
  8350. border-width:0px;
  8351. word-wrap:break-word;
  8352. text-transform:none;
  8353. visibility:hidden;
  8354. }
  8355. #u142816_img {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:0px;
  8359. top:0px;
  8360. width:249px;
  8361. height:38px;
  8362. }
  8363. #u142816 {
  8364. border-width:0px;
  8365. position:absolute;
  8366. left:747px;
  8367. top:80px;
  8368. width:249px;
  8369. height:38px;
  8370. display:flex;
  8371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8372. font-weight:400;
  8373. font-style:normal;
  8374. font-size:14px;
  8375. color:#0099FF;
  8376. }
  8377. #u142816 .text {
  8378. position:absolute;
  8379. align-self:center;
  8380. padding:2px 2px 2px 2px;
  8381. box-sizing:border-box;
  8382. width:100%;
  8383. }
  8384. #u142816_text {
  8385. border-width:0px;
  8386. word-wrap:break-word;
  8387. text-transform:none;
  8388. visibility:hidden;
  8389. }
  8390. #u142817_img {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:0px;
  8394. top:0px;
  8395. width:247px;
  8396. height:38px;
  8397. }
  8398. #u142817 {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:996px;
  8402. top:80px;
  8403. width:247px;
  8404. height:38px;
  8405. display:flex;
  8406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8407. font-weight:400;
  8408. font-style:normal;
  8409. font-size:14px;
  8410. color:#0099FF;
  8411. }
  8412. #u142817 .text {
  8413. position:absolute;
  8414. align-self:center;
  8415. padding:2px 2px 2px 2px;
  8416. box-sizing:border-box;
  8417. width:100%;
  8418. }
  8419. #u142817_text {
  8420. border-width:0px;
  8421. word-wrap:break-word;
  8422. text-transform:none;
  8423. }
  8424. #u142818_div {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:280px;
  8430. height:30px;
  8431. background:inherit;
  8432. background-color:rgba(255, 255, 255, 0);
  8433. border:none;
  8434. border-radius:0px;
  8435. -moz-box-shadow:none;
  8436. -webkit-box-shadow:none;
  8437. box-shadow:none;
  8438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8439. font-weight:400;
  8440. font-style:normal;
  8441. line-height:30px;
  8442. }
  8443. #u142818 {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:259px;
  8447. top:1209px;
  8448. width:280px;
  8449. height:30px;
  8450. display:flex;
  8451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8452. font-weight:400;
  8453. font-style:normal;
  8454. line-height:30px;
  8455. }
  8456. #u142818 .text {
  8457. position:absolute;
  8458. align-self:flex-start;
  8459. padding:0px 0px 0px 0px;
  8460. box-sizing:border-box;
  8461. width:100%;
  8462. }
  8463. #u142818_text {
  8464. border-width:0px;
  8465. word-wrap:break-word;
  8466. text-transform:none;
  8467. }
  8468. #u142819 {
  8469. border-width:0px;
  8470. position:absolute;
  8471. left:259px;
  8472. top:946px;
  8473. width:1243px;
  8474. height:154px;
  8475. }
  8476. #u142820_img {
  8477. border-width:0px;
  8478. position:absolute;
  8479. left:0px;
  8480. top:0px;
  8481. width:829px;
  8482. height:50px;
  8483. }
  8484. #u142820 {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:0px;
  8488. top:0px;
  8489. width:829px;
  8490. height:50px;
  8491. display:flex;
  8492. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8493. font-weight:500;
  8494. font-style:normal;
  8495. font-size:14px;
  8496. text-align:left;
  8497. }
  8498. #u142820 .text {
  8499. position:absolute;
  8500. align-self:center;
  8501. padding:2px 2px 2px 20px;
  8502. box-sizing:border-box;
  8503. width:100%;
  8504. }
  8505. #u142820_text {
  8506. border-width:0px;
  8507. word-wrap:break-word;
  8508. text-transform:none;
  8509. }
  8510. #u142821_img {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:0px;
  8514. top:0px;
  8515. width:414px;
  8516. height:50px;
  8517. }
  8518. #u142821 {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:829px;
  8522. top:0px;
  8523. width:414px;
  8524. height:50px;
  8525. display:flex;
  8526. font-size:14px;
  8527. text-align:right;
  8528. }
  8529. #u142821 .text {
  8530. position:absolute;
  8531. align-self:center;
  8532. padding:2px 20px 2px 20px;
  8533. box-sizing:border-box;
  8534. width:100%;
  8535. }
  8536. #u142821_text {
  8537. border-width:0px;
  8538. word-wrap:break-word;
  8539. text-transform:none;
  8540. }
  8541. #u142822_img {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:0px;
  8545. top:0px;
  8546. width:829px;
  8547. height:50px;
  8548. }
  8549. #u142822 {
  8550. border-width:0px;
  8551. position:absolute;
  8552. left:0px;
  8553. top:50px;
  8554. width:829px;
  8555. height:50px;
  8556. display:flex;
  8557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8558. font-weight:400;
  8559. font-style:normal;
  8560. font-size:12px;
  8561. text-align:left;
  8562. }
  8563. #u142822 .text {
  8564. position:absolute;
  8565. align-self:center;
  8566. padding:2px 2px 2px 20px;
  8567. box-sizing:border-box;
  8568. width:100%;
  8569. }
  8570. #u142822_text {
  8571. border-width:0px;
  8572. word-wrap:break-word;
  8573. text-transform:none;
  8574. }
  8575. #u142823_img {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:0px;
  8579. top:0px;
  8580. width:414px;
  8581. height:50px;
  8582. }
  8583. #u142823 {
  8584. border-width:0px;
  8585. position:absolute;
  8586. left:829px;
  8587. top:50px;
  8588. width:414px;
  8589. height:50px;
  8590. display:flex;
  8591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8592. font-weight:400;
  8593. font-style:normal;
  8594. font-size:14px;
  8595. text-align:right;
  8596. }
  8597. #u142823 .text {
  8598. position:absolute;
  8599. align-self:center;
  8600. padding:2px 20px 2px 20px;
  8601. box-sizing:border-box;
  8602. width:100%;
  8603. }
  8604. #u142823_text {
  8605. border-width:0px;
  8606. word-wrap:break-word;
  8607. text-transform:none;
  8608. }
  8609. #u142824_img {
  8610. border-width:0px;
  8611. position:absolute;
  8612. left:0px;
  8613. top:0px;
  8614. width:829px;
  8615. height:54px;
  8616. }
  8617. #u142824 {
  8618. border-width:0px;
  8619. position:absolute;
  8620. left:0px;
  8621. top:100px;
  8622. width:829px;
  8623. height:54px;
  8624. display:flex;
  8625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8626. font-weight:400;
  8627. font-style:normal;
  8628. font-size:18px;
  8629. color:#0099FF;
  8630. text-align:left;
  8631. }
  8632. #u142824 .text {
  8633. position:absolute;
  8634. align-self:center;
  8635. padding:2px 2px 2px 20px;
  8636. box-sizing:border-box;
  8637. width:100%;
  8638. }
  8639. #u142824_text {
  8640. border-width:0px;
  8641. word-wrap:break-word;
  8642. text-transform:none;
  8643. visibility:hidden;
  8644. }
  8645. #u142825_img {
  8646. border-width:0px;
  8647. position:absolute;
  8648. left:0px;
  8649. top:0px;
  8650. width:414px;
  8651. height:54px;
  8652. }
  8653. #u142825 {
  8654. border-width:0px;
  8655. position:absolute;
  8656. left:829px;
  8657. top:100px;
  8658. width:414px;
  8659. height:54px;
  8660. display:flex;
  8661. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8662. font-weight:500;
  8663. font-style:normal;
  8664. font-size:18px;
  8665. color:#0099FF;
  8666. text-align:right;
  8667. }
  8668. #u142825 .text {
  8669. position:absolute;
  8670. align-self:center;
  8671. padding:2px 20px 2px 20px;
  8672. box-sizing:border-box;
  8673. width:100%;
  8674. }
  8675. #u142825_text {
  8676. border-width:0px;
  8677. word-wrap:break-word;
  8678. text-transform:none;
  8679. }
  8680. #u142826_div {
  8681. border-width:0px;
  8682. position:absolute;
  8683. left:0px;
  8684. top:0px;
  8685. width:280px;
  8686. height:25px;
  8687. background:inherit;
  8688. background-color:rgba(255, 255, 255, 0);
  8689. box-sizing:border-box;
  8690. border-width:2px;
  8691. border-style:solid;
  8692. border-color:rgba(0, 0, 0, 1);
  8693. border-top:0px;
  8694. border-right:0px;
  8695. border-bottom:0px;
  8696. border-radius:0px;
  8697. border-top-left-radius:0px;
  8698. border-bottom-left-radius:0px;
  8699. -moz-box-shadow:none;
  8700. -webkit-box-shadow:none;
  8701. box-shadow:none;
  8702. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8703. font-weight:500;
  8704. font-style:normal;
  8705. font-size:18px;
  8706. color:#000000;
  8707. }
  8708. #u142826 {
  8709. border-width:0px;
  8710. position:absolute;
  8711. left:259px;
  8712. top:921px;
  8713. width:280px;
  8714. height:25px;
  8715. display:flex;
  8716. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8717. font-weight:500;
  8718. font-style:normal;
  8719. font-size:18px;
  8720. color:#000000;
  8721. }
  8722. #u142826 .text {
  8723. position:absolute;
  8724. align-self:flex-start;
  8725. padding:0px 0px 0px 10px;
  8726. box-sizing:border-box;
  8727. width:100%;
  8728. }
  8729. #u142826_text {
  8730. border-width:0px;
  8731. word-wrap:break-word;
  8732. text-transform:none;
  8733. }