styles.css 214 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1371px;
  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. #u51612_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u51612 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u51612 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u51612_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u51613_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u51613 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u51613 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u51613_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u51614 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u51615_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u51615 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u51615 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u51615_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u51616 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u51617_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u51617 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u51617 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u51617_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u51618_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u51618 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u51618 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u51618_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u51619 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u51620_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u51620 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u51620 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u51620_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u51621_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u51621 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u51621 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u51621_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u51622_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u51622 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u51622 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u51622_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u51623_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u51623 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u51623 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u51623_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u51624_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u51624 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u51624 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u51624_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u51625_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u51625 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u51625 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u51625_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u51626 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u51627_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u51627 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u51627 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u51627_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u51628_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u51628 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u51628 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u51628_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u51629 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u51630_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u51630 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u51630 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u51630_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u51631_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u51631 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u51631 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u51631_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u51632_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u51632 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u51632 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u51632_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u51633 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u51634_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u51634 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u51634 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u51634_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u51635_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u51635 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u51635 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u51635_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u51636 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u51637_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u51637 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u51637 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u51637_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u51638_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u51638 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u51638 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u51638_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u51639_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(242, 242, 242, 1);
  792. border-radius:26px;
  793. border-top-left-radius:0px;
  794. border-top-right-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. }
  799. #u51639 {
  800. border-width:0px;
  801. position:absolute;
  802. left:29px;
  803. top:105px;
  804. width:375px;
  805. height:735px;
  806. display:flex;
  807. }
  808. #u51639 .text {
  809. position:absolute;
  810. align-self:center;
  811. padding:2px 2px 2px 2px;
  812. box-sizing:border-box;
  813. width:100%;
  814. }
  815. #u51639_text {
  816. border-width:0px;
  817. word-wrap:break-word;
  818. text-transform:none;
  819. visibility:hidden;
  820. }
  821. #u51640_div {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:375px;
  827. height:140px;
  828. background:inherit;
  829. background-color:rgba(242, 242, 242, 1);
  830. border:none;
  831. border-left:0px;
  832. border-top:0px;
  833. border-right:0px;
  834. border-radius:0px;
  835. border-bottom-right-radius:0px;
  836. border-bottom-left-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. }
  841. #u51640 {
  842. border-width:0px;
  843. position:absolute;
  844. left:29px;
  845. top:66px;
  846. width:375px;
  847. height:140px;
  848. display:flex;
  849. }
  850. #u51640 .text {
  851. position:absolute;
  852. align-self:center;
  853. padding:2px 2px 2px 2px;
  854. box-sizing:border-box;
  855. width:100%;
  856. }
  857. #u51640_text {
  858. border-width:0px;
  859. word-wrap:break-word;
  860. text-transform:none;
  861. visibility:hidden;
  862. }
  863. #u51641_img {
  864. border-width:0px;
  865. position:absolute;
  866. left:0px;
  867. top:0px;
  868. width:65px;
  869. height:65px;
  870. }
  871. #u51641 {
  872. border-width:0px;
  873. position:absolute;
  874. left:54px;
  875. top:113px;
  876. width:65px;
  877. height:65px;
  878. display:flex;
  879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  880. font-weight:400;
  881. font-style:normal;
  882. color:#FFFFFF;
  883. }
  884. #u51641 .text {
  885. position:absolute;
  886. align-self:center;
  887. padding:2px 2px 2px 2px;
  888. box-sizing:border-box;
  889. width:100%;
  890. }
  891. #u51641_text {
  892. border-width:0px;
  893. word-wrap:break-word;
  894. text-transform:none;
  895. }
  896. #u51642_div {
  897. border-width:0px;
  898. position:absolute;
  899. left:0px;
  900. top:0px;
  901. width:37px;
  902. height:25px;
  903. background:inherit;
  904. background-color:rgba(127, 127, 127, 0);
  905. border:none;
  906. border-radius:3px;
  907. -moz-box-shadow:none;
  908. -webkit-box-shadow:none;
  909. box-shadow:none;
  910. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  911. font-weight:650;
  912. font-style:normal;
  913. font-size:18px;
  914. color:#555555;
  915. }
  916. #u51642 {
  917. border-width:0px;
  918. position:absolute;
  919. left:136px;
  920. top:121px;
  921. width:37px;
  922. height:25px;
  923. display:flex;
  924. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  925. font-weight:650;
  926. font-style:normal;
  927. font-size:18px;
  928. color:#555555;
  929. }
  930. #u51642 .text {
  931. position:absolute;
  932. align-self:center;
  933. padding:0px 0px 0px 0px;
  934. box-sizing:border-box;
  935. width:100%;
  936. }
  937. #u51642_text {
  938. border-width:0px;
  939. white-space:nowrap;
  940. text-transform:none;
  941. }
  942. #u51643 {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:0px;
  948. height:0px;
  949. }
  950. #u51644_div {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:60px;
  956. height:20px;
  957. background:inherit;
  958. background-color:rgba(255, 255, 255, 1);
  959. box-sizing:border-box;
  960. border-width:1px;
  961. border-style:solid;
  962. border-color:rgba(215, 215, 215, 1);
  963. border-radius:2px;
  964. -moz-box-shadow:none;
  965. -webkit-box-shadow:none;
  966. box-shadow:none;
  967. }
  968. #u51644 {
  969. border-width:0px;
  970. position:absolute;
  971. left:193px;
  972. top:121px;
  973. width:60px;
  974. height:20px;
  975. display:flex;
  976. }
  977. #u51644 .text {
  978. position:absolute;
  979. align-self:center;
  980. padding:2px 2px 2px 2px;
  981. box-sizing:border-box;
  982. width:100%;
  983. }
  984. #u51644_text {
  985. border-width:0px;
  986. word-wrap:break-word;
  987. text-transform:none;
  988. visibility:hidden;
  989. }
  990. #u51645 {
  991. border-width:0px;
  992. position:absolute;
  993. left:0px;
  994. top:0px;
  995. width:0px;
  996. height:0px;
  997. }
  998. #u51646_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:37px;
  1004. height:17px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-left:0px;
  1009. border-top:0px;
  1010. border-right:0px;
  1011. border-radius:0px;
  1012. border-bottom-right-radius:0px;
  1013. border-bottom-left-radius:0px;
  1014. -moz-box-shadow:none;
  1015. -webkit-box-shadow:none;
  1016. box-shadow:none;
  1017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1018. font-weight:400;
  1019. font-style:normal;
  1020. font-size:12px;
  1021. color:#7F7F7F;
  1022. }
  1023. #u51646 {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:212px;
  1027. top:123px;
  1028. width:37px;
  1029. height:17px;
  1030. display:flex;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:12px;
  1035. color:#7F7F7F;
  1036. }
  1037. #u51646 .text {
  1038. position:absolute;
  1039. align-self:flex-start;
  1040. padding:0px 0px 0px 0px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u51646_text {
  1045. border-width:0px;
  1046. white-space:nowrap;
  1047. text-transform:none;
  1048. }
  1049. #u51647 {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:0px;
  1053. top:0px;
  1054. width:0px;
  1055. height:0px;
  1056. }
  1057. #u51648_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:12px;
  1063. height:12px;
  1064. }
  1065. #u51648 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:197px;
  1069. top:125px;
  1070. width:12px;
  1071. height:12px;
  1072. display:flex;
  1073. }
  1074. #u51648 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u51648_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u51649_img {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:4px;
  1093. height:5px;
  1094. }
  1095. #u51649 {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:201px;
  1099. top:129px;
  1100. width:4px;
  1101. height:5px;
  1102. display:flex;
  1103. }
  1104. #u51649 .text {
  1105. position:absolute;
  1106. align-self:center;
  1107. padding:2px 2px 2px 2px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u51649_text {
  1112. border-width:0px;
  1113. word-wrap:break-word;
  1114. text-transform:none;
  1115. visibility:hidden;
  1116. }
  1117. #u51650_img {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:0px;
  1121. top:0px;
  1122. width:20px;
  1123. height:20px;
  1124. }
  1125. #u51650 {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:44px;
  1129. top:76px;
  1130. width:20px;
  1131. height:20px;
  1132. display:flex;
  1133. }
  1134. #u51650 .text {
  1135. position:absolute;
  1136. align-self:center;
  1137. padding:2px 2px 2px 2px;
  1138. box-sizing:border-box;
  1139. width:100%;
  1140. }
  1141. #u51650_text {
  1142. border-width:0px;
  1143. word-wrap:break-word;
  1144. text-transform:none;
  1145. visibility:hidden;
  1146. }
  1147. #u51651 {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:0px;
  1153. height:0px;
  1154. }
  1155. #u51652_img {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:18px;
  1161. height:20px;
  1162. }
  1163. #u51652 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:88px;
  1167. top:76px;
  1168. width:18px;
  1169. height:20px;
  1170. display:flex;
  1171. }
  1172. #u51652 .text {
  1173. position:absolute;
  1174. align-self:center;
  1175. padding:2px 2px 2px 2px;
  1176. box-sizing:border-box;
  1177. width:100%;
  1178. }
  1179. #u51652_text {
  1180. border-width:0px;
  1181. word-wrap:break-word;
  1182. text-transform:none;
  1183. visibility:hidden;
  1184. }
  1185. #u51653_div {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:8px;
  1191. height:11px;
  1192. background:inherit;
  1193. background-color:rgba(217, 0, 27, 1);
  1194. border:none;
  1195. border-radius:4px;
  1196. -moz-box-shadow:none;
  1197. -webkit-box-shadow:none;
  1198. box-shadow:none;
  1199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1200. font-weight:400;
  1201. font-style:normal;
  1202. font-size:8px;
  1203. color:#FFFFFF;
  1204. text-align:center;
  1205. }
  1206. #u51653 {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:100px;
  1210. top:73px;
  1211. width:8px;
  1212. height:11px;
  1213. display:flex;
  1214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1215. font-weight:400;
  1216. font-style:normal;
  1217. font-size:8px;
  1218. color:#FFFFFF;
  1219. text-align:center;
  1220. }
  1221. #u51653 .text {
  1222. position:absolute;
  1223. align-self:flex-start;
  1224. padding:0px 0px 0px 0px;
  1225. box-sizing:border-box;
  1226. width:100%;
  1227. }
  1228. #u51653_text {
  1229. border-width:0px;
  1230. word-wrap:break-word;
  1231. text-transform:none;
  1232. }
  1233. #u51654 {
  1234. border-width:0px;
  1235. position:absolute;
  1236. left:0px;
  1237. top:0px;
  1238. width:0px;
  1239. height:0px;
  1240. }
  1241. #u51655_div {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:0px;
  1245. top:0px;
  1246. width:88px;
  1247. height:32px;
  1248. background:inherit;
  1249. background-color:rgba(255, 255, 255, 1);
  1250. box-sizing:border-box;
  1251. border-width:1px;
  1252. border-style:solid;
  1253. border-color:rgba(242, 242, 242, 1);
  1254. border-radius:33px;
  1255. -moz-box-shadow:none;
  1256. -webkit-box-shadow:none;
  1257. box-shadow:none;
  1258. }
  1259. #u51655 {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:306px;
  1263. top:72px;
  1264. width:88px;
  1265. height:32px;
  1266. display:flex;
  1267. }
  1268. #u51655 .text {
  1269. position:absolute;
  1270. align-self:center;
  1271. padding:2px 2px 2px 2px;
  1272. box-sizing:border-box;
  1273. width:100%;
  1274. }
  1275. #u51655_text {
  1276. border-width:0px;
  1277. word-wrap:break-word;
  1278. text-transform:none;
  1279. visibility:hidden;
  1280. }
  1281. #u51656 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:0px;
  1287. height:0px;
  1288. }
  1289. #u51657_img {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:18px;
  1295. height:18px;
  1296. }
  1297. #u51657 {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:369px;
  1301. top:79px;
  1302. width:18px;
  1303. height:18px;
  1304. display:flex;
  1305. }
  1306. #u51657 .text {
  1307. position:absolute;
  1308. align-self:center;
  1309. padding:2px 2px 2px 2px;
  1310. box-sizing:border-box;
  1311. width:100%;
  1312. }
  1313. #u51657_text {
  1314. border-width:0px;
  1315. word-wrap:break-word;
  1316. text-transform:none;
  1317. visibility:hidden;
  1318. }
  1319. #u51658_img {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:6px;
  1325. height:6px;
  1326. }
  1327. #u51658 {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:375px;
  1331. top:85px;
  1332. width:6px;
  1333. height:6px;
  1334. display:flex;
  1335. }
  1336. #u51658 .text {
  1337. position:absolute;
  1338. align-self:center;
  1339. padding:2px 2px 2px 2px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u51658_text {
  1344. border-width:0px;
  1345. word-wrap:break-word;
  1346. text-transform:none;
  1347. visibility:hidden;
  1348. }
  1349. #u51659 {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:0px;
  1353. top:0px;
  1354. width:0px;
  1355. height:0px;
  1356. }
  1357. #u51660_img {
  1358. border-width:0px;
  1359. position:absolute;
  1360. left:0px;
  1361. top:0px;
  1362. width:5px;
  1363. height:5px;
  1364. }
  1365. #u51660 {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:320px;
  1369. top:86px;
  1370. width:5px;
  1371. height:5px;
  1372. display:flex;
  1373. }
  1374. #u51660 .text {
  1375. position:absolute;
  1376. align-self:center;
  1377. padding:2px 2px 2px 2px;
  1378. box-sizing:border-box;
  1379. width:100%;
  1380. }
  1381. #u51660_text {
  1382. border-width:0px;
  1383. word-wrap:break-word;
  1384. text-transform:none;
  1385. visibility:hidden;
  1386. }
  1387. #u51661_img {
  1388. border-width:0px;
  1389. position:absolute;
  1390. left:0px;
  1391. top:0px;
  1392. width:5px;
  1393. height:5px;
  1394. }
  1395. #u51661 {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:336px;
  1399. top:86px;
  1400. width:5px;
  1401. height:5px;
  1402. display:flex;
  1403. }
  1404. #u51661 .text {
  1405. position:absolute;
  1406. align-self:center;
  1407. padding:2px 2px 2px 2px;
  1408. box-sizing:border-box;
  1409. width:100%;
  1410. }
  1411. #u51661_text {
  1412. border-width:0px;
  1413. word-wrap:break-word;
  1414. text-transform:none;
  1415. visibility:hidden;
  1416. }
  1417. #u51662_img {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:0px;
  1421. top:0px;
  1422. width:7px;
  1423. height:7px;
  1424. }
  1425. #u51662 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:327px;
  1429. top:85px;
  1430. width:7px;
  1431. height:7px;
  1432. display:flex;
  1433. }
  1434. #u51662 .text {
  1435. position:absolute;
  1436. align-self:center;
  1437. padding:2px 2px 2px 2px;
  1438. box-sizing:border-box;
  1439. width:100%;
  1440. }
  1441. #u51662_text {
  1442. border-width:0px;
  1443. word-wrap:break-word;
  1444. text-transform:none;
  1445. visibility:hidden;
  1446. }
  1447. #u51663_img {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:0px;
  1451. top:0px;
  1452. width:19px;
  1453. height:2px;
  1454. }
  1455. #u51663 {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:344px;
  1459. top:88px;
  1460. width:18px;
  1461. height:1px;
  1462. display:flex;
  1463. -webkit-transform:rotate(90deg);
  1464. -moz-transform:rotate(90deg);
  1465. -ms-transform:rotate(90deg);
  1466. transform:rotate(90deg);
  1467. }
  1468. #u51663 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u51663_text {
  1476. border-width:0px;
  1477. word-wrap:break-word;
  1478. text-transform:none;
  1479. visibility:hidden;
  1480. }
  1481. #u51664_div {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:0px;
  1485. top:0px;
  1486. width:84px;
  1487. height:20px;
  1488. background:inherit;
  1489. background-color:rgba(127, 127, 127, 0);
  1490. border:none;
  1491. border-radius:3px;
  1492. -moz-box-shadow:none;
  1493. -webkit-box-shadow:none;
  1494. box-shadow:none;
  1495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1496. font-weight:400;
  1497. font-style:normal;
  1498. font-size:14px;
  1499. color:#AAAAAA;
  1500. }
  1501. #u51664 {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:136px;
  1505. top:148px;
  1506. width:84px;
  1507. height:20px;
  1508. display:flex;
  1509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1510. font-weight:400;
  1511. font-style:normal;
  1512. font-size:14px;
  1513. color:#AAAAAA;
  1514. }
  1515. #u51664 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:0px 0px 0px 0px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u51664_text {
  1523. border-width:0px;
  1524. white-space:nowrap;
  1525. text-transform:none;
  1526. }
  1527. #u51665 {
  1528. border-width:0px;
  1529. position:absolute;
  1530. left:29px;
  1531. top:198px;
  1532. width:375px;
  1533. height:589px;
  1534. }
  1535. #u51665_state0 {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:375px;
  1541. height:589px;
  1542. overflow:auto;
  1543. -webkit-overflow-scrolling:touch;
  1544. -ms-overflow-x:hidden;
  1545. overflow-x:hidden;
  1546. background-image:none;
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u51665_state0_content {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:0px;
  1557. top:0px;
  1558. width:1px;
  1559. height:1px;
  1560. }
  1561. #u51666 {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:0px;
  1565. top:0px;
  1566. width:0px;
  1567. height:0px;
  1568. }
  1569. #u51667_div {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:0px;
  1573. top:0px;
  1574. width:355px;
  1575. height:130px;
  1576. background:inherit;
  1577. background-color:rgba(255, 255, 255, 1);
  1578. border:none;
  1579. border-radius:4px;
  1580. -moz-box-shadow:none;
  1581. -webkit-box-shadow:none;
  1582. box-shadow:none;
  1583. }
  1584. #u51667 {
  1585. border-width:0px;
  1586. position:absolute;
  1587. left:10px;
  1588. top:90px;
  1589. width:355px;
  1590. height:130px;
  1591. display:flex;
  1592. }
  1593. #u51667 .text {
  1594. position:absolute;
  1595. align-self:center;
  1596. padding:2px 2px 2px 2px;
  1597. box-sizing:border-box;
  1598. width:100%;
  1599. }
  1600. #u51667_text {
  1601. border-width:0px;
  1602. word-wrap:break-word;
  1603. text-transform:none;
  1604. visibility:hidden;
  1605. }
  1606. #u51668_div {
  1607. border-width:0px;
  1608. position:absolute;
  1609. left:0px;
  1610. top:0px;
  1611. width:57px;
  1612. height:20px;
  1613. background:inherit;
  1614. background-color:rgba(255, 255, 255, 0);
  1615. border:none;
  1616. border-left:0px;
  1617. border-top:0px;
  1618. border-right:0px;
  1619. border-radius:0px;
  1620. border-bottom-right-radius:0px;
  1621. border-bottom-left-radius:0px;
  1622. -moz-box-shadow:none;
  1623. -webkit-box-shadow:none;
  1624. box-shadow:none;
  1625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1626. font-weight:400;
  1627. font-style:normal;
  1628. font-size:14px;
  1629. }
  1630. #u51668 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:22px;
  1634. top:97px;
  1635. width:57px;
  1636. height:20px;
  1637. display:flex;
  1638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1639. font-weight:400;
  1640. font-style:normal;
  1641. font-size:14px;
  1642. }
  1643. #u51668 .text {
  1644. position:absolute;
  1645. align-self:flex-start;
  1646. padding:0px 0px 0px 0px;
  1647. box-sizing:border-box;
  1648. width:100%;
  1649. }
  1650. #u51668_text {
  1651. border-width:0px;
  1652. white-space:nowrap;
  1653. text-transform:none;
  1654. }
  1655. #u51669 {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:0px;
  1659. top:0px;
  1660. width:0px;
  1661. height:0px;
  1662. }
  1663. #u51670_div {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:9px;
  1669. height:9px;
  1670. background:inherit;
  1671. background-color:rgba(255, 255, 255, 0);
  1672. box-sizing:border-box;
  1673. border-width:1px;
  1674. border-style:solid;
  1675. border-color:rgba(170, 170, 170, 1);
  1676. border-right:0px;
  1677. border-bottom:0px;
  1678. border-radius:0px;
  1679. border-top-right-radius:0px;
  1680. border-bottom-left-radius:0px;
  1681. -moz-box-shadow:none;
  1682. -webkit-box-shadow:none;
  1683. box-shadow:none;
  1684. }
  1685. #u51670 {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:344px;
  1689. top:104px;
  1690. width:9px;
  1691. height:9px;
  1692. display:flex;
  1693. -webkit-transform:rotate(135deg);
  1694. -moz-transform:rotate(135deg);
  1695. -ms-transform:rotate(135deg);
  1696. transform:rotate(135deg);
  1697. }
  1698. #u51670 .text {
  1699. position:absolute;
  1700. align-self:center;
  1701. padding:2px 2px 2px 2px;
  1702. box-sizing:border-box;
  1703. width:100%;
  1704. }
  1705. #u51670_text {
  1706. border-width:0px;
  1707. word-wrap:break-word;
  1708. text-transform:none;
  1709. visibility:hidden;
  1710. }
  1711. #u51671_div {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:49px;
  1717. height:17px;
  1718. background:inherit;
  1719. background-color:rgba(255, 255, 255, 0);
  1720. border:none;
  1721. border-left:0px;
  1722. border-top:0px;
  1723. border-right:0px;
  1724. border-radius:0px;
  1725. border-bottom-right-radius:0px;
  1726. border-bottom-left-radius:0px;
  1727. -moz-box-shadow:none;
  1728. -webkit-box-shadow:none;
  1729. box-shadow:none;
  1730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1731. font-weight:400;
  1732. font-style:normal;
  1733. font-size:12px;
  1734. color:#AAAAAA;
  1735. }
  1736. #u51671 {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:288px;
  1740. top:100px;
  1741. width:49px;
  1742. height:17px;
  1743. display:flex;
  1744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. font-size:12px;
  1748. color:#AAAAAA;
  1749. }
  1750. #u51671 .text {
  1751. position:absolute;
  1752. align-self:flex-start;
  1753. padding:0px 0px 0px 0px;
  1754. box-sizing:border-box;
  1755. width:100%;
  1756. }
  1757. #u51671_text {
  1758. border-width:0px;
  1759. white-space:nowrap;
  1760. text-transform:none;
  1761. }
  1762. #u51672_img {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:0px;
  1766. top:0px;
  1767. width:71px;
  1768. height:55px;
  1769. }
  1770. #u51672 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:32px;
  1774. top:128px;
  1775. width:71px;
  1776. height:55px;
  1777. display:flex;
  1778. }
  1779. #u51672 .text {
  1780. position:absolute;
  1781. align-self:center;
  1782. padding:2px 2px 2px 2px;
  1783. box-sizing:border-box;
  1784. width:100%;
  1785. }
  1786. #u51672_text {
  1787. border-width:0px;
  1788. word-wrap:break-word;
  1789. text-transform:none;
  1790. visibility:hidden;
  1791. }
  1792. #u51673_div {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:79px;
  1798. height:20px;
  1799. background:inherit;
  1800. background-color:rgba(255, 255, 255, 0);
  1801. border:none;
  1802. border-left:0px;
  1803. border-top:0px;
  1804. border-right:0px;
  1805. border-radius:0px;
  1806. border-bottom-right-radius:0px;
  1807. border-bottom-left-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:14px;
  1815. }
  1816. #u51673 {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:119px;
  1820. top:132px;
  1821. width:79px;
  1822. height:20px;
  1823. display:flex;
  1824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1825. font-weight:400;
  1826. font-style:normal;
  1827. font-size:14px;
  1828. }
  1829. #u51673 .text {
  1830. position:absolute;
  1831. align-self:flex-start;
  1832. padding:0px 0px 0px 0px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u51673_text {
  1837. border-width:0px;
  1838. white-space:nowrap;
  1839. text-transform:none;
  1840. }
  1841. #u51674_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:141px;
  1847. height:17px;
  1848. background:inherit;
  1849. background-color:rgba(255, 255, 255, 0);
  1850. border:none;
  1851. border-left:0px;
  1852. border-top:0px;
  1853. border-right:0px;
  1854. border-radius:0px;
  1855. border-bottom-right-radius:0px;
  1856. border-bottom-left-radius:0px;
  1857. -moz-box-shadow:none;
  1858. -webkit-box-shadow:none;
  1859. box-shadow:none;
  1860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1861. font-weight:400;
  1862. font-style:normal;
  1863. font-size:12px;
  1864. color:#AAAAAA;
  1865. }
  1866. #u51674 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:119px;
  1870. top:162px;
  1871. width:141px;
  1872. height:17px;
  1873. display:flex;
  1874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1875. font-weight:400;
  1876. font-style:normal;
  1877. font-size:12px;
  1878. color:#AAAAAA;
  1879. }
  1880. #u51674 .text {
  1881. position:absolute;
  1882. align-self:flex-start;
  1883. padding:0px 0px 0px 0px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u51674_text {
  1888. border-width:0px;
  1889. white-space:nowrap;
  1890. text-transform:none;
  1891. }
  1892. #u51675_div {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:321px;
  1898. height:17px;
  1899. background:inherit;
  1900. background-color:rgba(255, 255, 255, 0);
  1901. border:none;
  1902. border-left:0px;
  1903. border-top:0px;
  1904. border-right:0px;
  1905. border-radius:0px;
  1906. border-bottom-right-radius:0px;
  1907. border-bottom-left-radius:0px;
  1908. -moz-box-shadow:none;
  1909. -webkit-box-shadow:none;
  1910. box-shadow:none;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:12px;
  1915. color:#AAAAAA;
  1916. }
  1917. #u51675 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:32px;
  1921. top:193px;
  1922. width:321px;
  1923. height:17px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:12px;
  1929. color:#AAAAAA;
  1930. }
  1931. #u51675 .text {
  1932. position:absolute;
  1933. align-self:flex-start;
  1934. padding:0px 0px 0px 0px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u51675_text {
  1939. border-width:0px;
  1940. white-space:nowrap;
  1941. text-transform:none;
  1942. }
  1943. #u51676 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:0px;
  1949. height:0px;
  1950. }
  1951. #u51677_div {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:375px;
  1957. height:80px;
  1958. background:inherit;
  1959. background-color:rgba(255, 255, 255, 1);
  1960. box-sizing:border-box;
  1961. border-width:1px;
  1962. border-style:solid;
  1963. border-color:rgba(242, 242, 242, 1);
  1964. border-left:0px;
  1965. border-top:0px;
  1966. border-right:0px;
  1967. border-radius:0px;
  1968. border-bottom-right-radius:0px;
  1969. border-bottom-left-radius:0px;
  1970. -moz-box-shadow:none;
  1971. -webkit-box-shadow:none;
  1972. box-shadow:none;
  1973. }
  1974. #u51677 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:375px;
  1980. height:80px;
  1981. display:flex;
  1982. }
  1983. #u51677 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:2px 2px 2px 2px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u51677_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. visibility:hidden;
  1995. }
  1996. #u51678 {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:0px;
  2002. height:0px;
  2003. }
  2004. #u51679_div {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:30px;
  2010. height:30px;
  2011. background:inherit;
  2012. background-color:rgba(51, 51, 51, 1);
  2013. box-sizing:border-box;
  2014. border-width:1px;
  2015. border-style:solid;
  2016. border-color:rgba(121, 121, 121, 1);
  2017. border-radius:4px;
  2018. -moz-box-shadow:none;
  2019. -webkit-box-shadow:none;
  2020. box-shadow:none;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:8px;
  2025. color:#FFFFFF;
  2026. }
  2027. #u51679 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:30px;
  2031. top:14px;
  2032. width:30px;
  2033. height:30px;
  2034. display:flex;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:8px;
  2039. color:#FFFFFF;
  2040. }
  2041. #u51679 .text {
  2042. position:absolute;
  2043. align-self:center;
  2044. padding:2px 2px 2px 2px;
  2045. box-sizing:border-box;
  2046. width:100%;
  2047. }
  2048. #u51679_text {
  2049. border-width:0px;
  2050. word-wrap:break-word;
  2051. text-transform:none;
  2052. }
  2053. #u51680_div {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:25px;
  2059. height:17px;
  2060. background:inherit;
  2061. background-color:rgba(255, 255, 255, 0);
  2062. border:none;
  2063. border-radius:0px;
  2064. -moz-box-shadow:none;
  2065. -webkit-box-shadow:none;
  2066. box-shadow:none;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:12px;
  2071. text-align:center;
  2072. }
  2073. #u51680 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:33px;
  2077. top:49px;
  2078. width:25px;
  2079. height:17px;
  2080. display:flex;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:12px;
  2085. text-align:center;
  2086. }
  2087. #u51680 .text {
  2088. position:absolute;
  2089. align-self:flex-start;
  2090. padding:0px 0px 0px 0px;
  2091. box-sizing:border-box;
  2092. width:100%;
  2093. }
  2094. #u51680_text {
  2095. border-width:0px;
  2096. white-space:nowrap;
  2097. text-transform:none;
  2098. }
  2099. #u51681 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:0px;
  2105. height:0px;
  2106. }
  2107. #u51682_div {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:30px;
  2113. height:30px;
  2114. background:inherit;
  2115. background-color:rgba(51, 51, 51, 1);
  2116. box-sizing:border-box;
  2117. border-width:1px;
  2118. border-style:solid;
  2119. border-color:rgba(121, 121, 121, 1);
  2120. border-radius:4px;
  2121. -moz-box-shadow:none;
  2122. -webkit-box-shadow:none;
  2123. box-shadow:none;
  2124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2125. font-weight:400;
  2126. font-style:normal;
  2127. font-size:8px;
  2128. color:#FFFFFF;
  2129. }
  2130. #u51682 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:119px;
  2134. top:14px;
  2135. width:30px;
  2136. height:30px;
  2137. display:flex;
  2138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2139. font-weight:400;
  2140. font-style:normal;
  2141. font-size:8px;
  2142. color:#FFFFFF;
  2143. }
  2144. #u51682 .text {
  2145. position:absolute;
  2146. align-self:center;
  2147. padding:2px 2px 2px 2px;
  2148. box-sizing:border-box;
  2149. width:100%;
  2150. }
  2151. #u51682_text {
  2152. border-width:0px;
  2153. word-wrap:break-word;
  2154. text-transform:none;
  2155. }
  2156. #u51683_div {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:25px;
  2162. height:17px;
  2163. background:inherit;
  2164. background-color:rgba(255, 255, 255, 0);
  2165. border:none;
  2166. border-radius:0px;
  2167. -moz-box-shadow:none;
  2168. -webkit-box-shadow:none;
  2169. box-shadow:none;
  2170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2171. font-weight:400;
  2172. font-style:normal;
  2173. font-size:12px;
  2174. text-align:center;
  2175. }
  2176. #u51683 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:122px;
  2180. top:49px;
  2181. width:25px;
  2182. height:17px;
  2183. display:flex;
  2184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. font-size:12px;
  2188. text-align:center;
  2189. }
  2190. #u51683 .text {
  2191. position:absolute;
  2192. align-self:flex-start;
  2193. padding:0px 0px 0px 0px;
  2194. box-sizing:border-box;
  2195. width:100%;
  2196. }
  2197. #u51683_text {
  2198. border-width:0px;
  2199. white-space:nowrap;
  2200. text-transform:none;
  2201. }
  2202. #u51684 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:0px;
  2208. height:0px;
  2209. }
  2210. #u51685_div {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:30px;
  2216. height:30px;
  2217. background:inherit;
  2218. background-color:rgba(51, 51, 51, 1);
  2219. box-sizing:border-box;
  2220. border-width:1px;
  2221. border-style:solid;
  2222. border-color:rgba(121, 121, 121, 1);
  2223. border-radius:4px;
  2224. -moz-box-shadow:none;
  2225. -webkit-box-shadow:none;
  2226. box-shadow:none;
  2227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:8px;
  2231. color:#FFFFFF;
  2232. }
  2233. #u51685 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:209px;
  2237. top:14px;
  2238. width:30px;
  2239. height:30px;
  2240. display:flex;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:8px;
  2245. color:#FFFFFF;
  2246. }
  2247. #u51685 .text {
  2248. position:absolute;
  2249. align-self:center;
  2250. padding:2px 2px 2px 2px;
  2251. box-sizing:border-box;
  2252. width:100%;
  2253. }
  2254. #u51685_text {
  2255. border-width:0px;
  2256. word-wrap:break-word;
  2257. text-transform:none;
  2258. }
  2259. #u51686_div {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:25px;
  2265. height:17px;
  2266. background:inherit;
  2267. background-color:rgba(255, 255, 255, 0);
  2268. border:none;
  2269. border-radius:0px;
  2270. -moz-box-shadow:none;
  2271. -webkit-box-shadow:none;
  2272. box-shadow:none;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:12px;
  2277. text-align:center;
  2278. }
  2279. #u51686 {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:212px;
  2283. top:49px;
  2284. width:25px;
  2285. height:17px;
  2286. display:flex;
  2287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:12px;
  2291. text-align:center;
  2292. }
  2293. #u51686 .text {
  2294. position:absolute;
  2295. align-self:flex-start;
  2296. padding:0px 0px 0px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u51686_text {
  2301. border-width:0px;
  2302. white-space:nowrap;
  2303. text-transform:none;
  2304. }
  2305. #u51687 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:0px;
  2311. height:0px;
  2312. }
  2313. #u51688_div {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:0px;
  2317. top:0px;
  2318. width:30px;
  2319. height:30px;
  2320. background:inherit;
  2321. background-color:rgba(51, 51, 51, 1);
  2322. box-sizing:border-box;
  2323. border-width:1px;
  2324. border-style:solid;
  2325. border-color:rgba(121, 121, 121, 1);
  2326. border-radius:4px;
  2327. -moz-box-shadow:none;
  2328. -webkit-box-shadow:none;
  2329. box-shadow:none;
  2330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2331. font-weight:400;
  2332. font-style:normal;
  2333. font-size:8px;
  2334. color:#FFFFFF;
  2335. }
  2336. #u51688 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:298px;
  2340. top:14px;
  2341. width:30px;
  2342. height:30px;
  2343. display:flex;
  2344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:8px;
  2348. color:#FFFFFF;
  2349. }
  2350. #u51688 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:2px 2px 2px 2px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u51688_text {
  2358. border-width:0px;
  2359. word-wrap:break-word;
  2360. text-transform:none;
  2361. }
  2362. #u51689_div {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:0px;
  2366. top:0px;
  2367. width:25px;
  2368. height:17px;
  2369. background:inherit;
  2370. background-color:rgba(255, 255, 255, 0);
  2371. border:none;
  2372. border-radius:0px;
  2373. -moz-box-shadow:none;
  2374. -webkit-box-shadow:none;
  2375. box-shadow:none;
  2376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2377. font-weight:400;
  2378. font-style:normal;
  2379. font-size:12px;
  2380. text-align:center;
  2381. }
  2382. #u51689 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:301px;
  2386. top:49px;
  2387. width:25px;
  2388. height:17px;
  2389. display:flex;
  2390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:12px;
  2394. text-align:center;
  2395. }
  2396. #u51689 .text {
  2397. position:absolute;
  2398. align-self:flex-start;
  2399. padding:0px 0px 0px 0px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u51689_text {
  2404. border-width:0px;
  2405. white-space:nowrap;
  2406. text-transform:none;
  2407. }
  2408. #u51690 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:0px;
  2414. height:0px;
  2415. }
  2416. #u51691_div {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:0px;
  2420. top:0px;
  2421. width:375px;
  2422. height:260px;
  2423. background:inherit;
  2424. background-color:rgba(255, 255, 255, 1);
  2425. box-sizing:border-box;
  2426. border-width:1px;
  2427. border-style:solid;
  2428. border-color:rgba(242, 242, 242, 1);
  2429. border-left:0px;
  2430. border-top:0px;
  2431. border-right:0px;
  2432. border-radius:0px;
  2433. border-bottom-right-radius:0px;
  2434. border-bottom-left-radius:0px;
  2435. -moz-box-shadow:none;
  2436. -webkit-box-shadow:none;
  2437. box-shadow:none;
  2438. }
  2439. #u51691 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:230px;
  2444. width:375px;
  2445. height:260px;
  2446. display:flex;
  2447. }
  2448. #u51691 .text {
  2449. position:absolute;
  2450. align-self:center;
  2451. padding:2px 2px 2px 2px;
  2452. box-sizing:border-box;
  2453. width:100%;
  2454. }
  2455. #u51691_text {
  2456. border-width:0px;
  2457. word-wrap:break-word;
  2458. text-transform:none;
  2459. visibility:hidden;
  2460. }
  2461. #u51692 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:0px;
  2467. height:0px;
  2468. }
  2469. #u51693_div {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:30px;
  2475. height:30px;
  2476. background:inherit;
  2477. background-color:rgba(255, 255, 255, 1);
  2478. box-sizing:border-box;
  2479. border-width:1px;
  2480. border-style:solid;
  2481. border-color:rgba(121, 121, 121, 1);
  2482. border-radius:4px;
  2483. -moz-box-shadow:none;
  2484. -webkit-box-shadow:none;
  2485. box-shadow:none;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:8px;
  2490. }
  2491. #u51693 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:39px;
  2495. top:275px;
  2496. width:30px;
  2497. height:30px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:8px;
  2503. }
  2504. #u51693 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 2px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u51693_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. }
  2516. #u51694_div {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:49px;
  2522. height:17px;
  2523. background:inherit;
  2524. background-color:rgba(255, 255, 255, 0);
  2525. border:none;
  2526. border-radius:0px;
  2527. -moz-box-shadow:none;
  2528. -webkit-box-shadow:none;
  2529. box-shadow:none;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:12px;
  2534. text-align:center;
  2535. }
  2536. #u51694 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:30px;
  2540. top:310px;
  2541. width:49px;
  2542. height:17px;
  2543. display:flex;
  2544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:12px;
  2548. text-align:center;
  2549. }
  2550. #u51694 .text {
  2551. position:absolute;
  2552. align-self:flex-start;
  2553. padding:0px 0px 0px 0px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u51694_text {
  2558. border-width:0px;
  2559. white-space:nowrap;
  2560. text-transform:none;
  2561. }
  2562. #u51695 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:0px;
  2568. height:0px;
  2569. }
  2570. #u51696_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:30px;
  2576. height:30px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 1);
  2579. box-sizing:border-box;
  2580. border-width:1px;
  2581. border-style:solid;
  2582. border-color:rgba(121, 121, 121, 1);
  2583. border-radius:4px;
  2584. -moz-box-shadow:none;
  2585. -webkit-box-shadow:none;
  2586. box-shadow:none;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:8px;
  2591. }
  2592. #u51696 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:218px;
  2596. top:347px;
  2597. width:30px;
  2598. height:30px;
  2599. display:flex;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:8px;
  2604. }
  2605. #u51696 .text {
  2606. position:absolute;
  2607. align-self:center;
  2608. padding:2px 2px 2px 2px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u51696_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. }
  2617. #u51697_div {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:49px;
  2623. height:17px;
  2624. background:inherit;
  2625. background-color:rgba(255, 255, 255, 0);
  2626. border:none;
  2627. border-radius:0px;
  2628. -moz-box-shadow:none;
  2629. -webkit-box-shadow:none;
  2630. box-shadow:none;
  2631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2632. font-weight:400;
  2633. font-style:normal;
  2634. font-size:12px;
  2635. text-align:center;
  2636. }
  2637. #u51697 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:208px;
  2641. top:382px;
  2642. width:49px;
  2643. height:17px;
  2644. display:flex;
  2645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2646. font-weight:400;
  2647. font-style:normal;
  2648. font-size:12px;
  2649. text-align:center;
  2650. }
  2651. #u51697 .text {
  2652. position:absolute;
  2653. align-self:flex-start;
  2654. padding:0px 0px 0px 0px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u51697_text {
  2659. border-width:0px;
  2660. white-space:nowrap;
  2661. text-transform:none;
  2662. }
  2663. #u51698 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:0px;
  2669. height:0px;
  2670. }
  2671. #u51699_div {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:30px;
  2677. height:30px;
  2678. background:inherit;
  2679. background-color:rgba(255, 255, 255, 1);
  2680. box-sizing:border-box;
  2681. border-width:1px;
  2682. border-style:solid;
  2683. border-color:rgba(121, 121, 121, 1);
  2684. border-radius:4px;
  2685. -moz-box-shadow:none;
  2686. -webkit-box-shadow:none;
  2687. box-shadow:none;
  2688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2689. font-weight:400;
  2690. font-style:normal;
  2691. font-size:8px;
  2692. }
  2693. #u51699 {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:306px;
  2697. top:347px;
  2698. width:30px;
  2699. height:30px;
  2700. display:flex;
  2701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:8px;
  2705. }
  2706. #u51699 .text {
  2707. position:absolute;
  2708. align-self:center;
  2709. padding:2px 2px 2px 2px;
  2710. box-sizing:border-box;
  2711. width:100%;
  2712. }
  2713. #u51699_text {
  2714. border-width:0px;
  2715. word-wrap:break-word;
  2716. text-transform:none;
  2717. }
  2718. #u51700_div {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:49px;
  2724. height:17px;
  2725. background:inherit;
  2726. background-color:rgba(255, 255, 255, 0);
  2727. border:none;
  2728. border-radius:0px;
  2729. -moz-box-shadow:none;
  2730. -webkit-box-shadow:none;
  2731. box-shadow:none;
  2732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2733. font-weight:400;
  2734. font-style:normal;
  2735. font-size:12px;
  2736. text-align:center;
  2737. }
  2738. #u51700 {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:296px;
  2742. top:382px;
  2743. width:49px;
  2744. height:17px;
  2745. display:flex;
  2746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2747. font-weight:400;
  2748. font-style:normal;
  2749. font-size:12px;
  2750. text-align:center;
  2751. }
  2752. #u51700 .text {
  2753. position:absolute;
  2754. align-self:flex-start;
  2755. padding:0px 0px 0px 0px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u51700_text {
  2760. border-width:0px;
  2761. white-space:nowrap;
  2762. text-transform:none;
  2763. }
  2764. #u51701_div {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:49px;
  2770. height:17px;
  2771. background:inherit;
  2772. background-color:rgba(255, 255, 255, 0);
  2773. border:none;
  2774. border-radius:0px;
  2775. -moz-box-shadow:none;
  2776. -webkit-box-shadow:none;
  2777. box-shadow:none;
  2778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2779. font-weight:400;
  2780. font-style:normal;
  2781. font-size:12px;
  2782. }
  2783. #u51701 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:18px;
  2787. top:243px;
  2788. width:49px;
  2789. height:17px;
  2790. display:flex;
  2791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2792. font-weight:400;
  2793. font-style:normal;
  2794. font-size:12px;
  2795. }
  2796. #u51701 .text {
  2797. position:absolute;
  2798. align-self:flex-start;
  2799. padding:0px 0px 0px 0px;
  2800. box-sizing:border-box;
  2801. width:100%;
  2802. }
  2803. #u51701_text {
  2804. border-width:0px;
  2805. white-space:nowrap;
  2806. text-transform:none;
  2807. }
  2808. #u51702 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:0px;
  2814. height:0px;
  2815. }
  2816. #u51703_div {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:0px;
  2820. top:0px;
  2821. width:30px;
  2822. height:30px;
  2823. background:inherit;
  2824. background-color:rgba(255, 255, 255, 1);
  2825. box-sizing:border-box;
  2826. border-width:1px;
  2827. border-style:solid;
  2828. border-color:rgba(121, 121, 121, 1);
  2829. border-radius:4px;
  2830. -moz-box-shadow:none;
  2831. -webkit-box-shadow:none;
  2832. box-shadow:none;
  2833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2834. font-weight:400;
  2835. font-style:normal;
  2836. font-size:8px;
  2837. }
  2838. #u51703 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:217px;
  2842. top:275px;
  2843. width:30px;
  2844. height:30px;
  2845. display:flex;
  2846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2847. font-weight:400;
  2848. font-style:normal;
  2849. font-size:8px;
  2850. }
  2851. #u51703 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 2px 2px 2px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u51703_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. }
  2863. #u51704_div {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:49px;
  2869. height:17px;
  2870. background:inherit;
  2871. background-color:rgba(255, 255, 255, 0);
  2872. border:none;
  2873. border-radius:0px;
  2874. -moz-box-shadow:none;
  2875. -webkit-box-shadow:none;
  2876. box-shadow:none;
  2877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. font-size:12px;
  2881. text-align:center;
  2882. }
  2883. #u51704 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:208px;
  2887. top:310px;
  2888. width:49px;
  2889. height:17px;
  2890. display:flex;
  2891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2892. font-weight:400;
  2893. font-style:normal;
  2894. font-size:12px;
  2895. text-align:center;
  2896. }
  2897. #u51704 .text {
  2898. position:absolute;
  2899. align-self:flex-start;
  2900. padding:0px 0px 0px 0px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u51704_text {
  2905. border-width:0px;
  2906. white-space:nowrap;
  2907. text-transform:none;
  2908. }
  2909. #u51705 {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:0px;
  2915. height:0px;
  2916. }
  2917. #u51706_div {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:30px;
  2923. height:30px;
  2924. background:inherit;
  2925. background-color:rgba(255, 255, 255, 1);
  2926. box-sizing:border-box;
  2927. border-width:1px;
  2928. border-style:solid;
  2929. border-color:rgba(121, 121, 121, 1);
  2930. border-radius:4px;
  2931. -moz-box-shadow:none;
  2932. -webkit-box-shadow:none;
  2933. box-shadow:none;
  2934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2935. font-weight:400;
  2936. font-style:normal;
  2937. font-size:8px;
  2938. }
  2939. #u51706 {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:305px;
  2943. top:275px;
  2944. width:30px;
  2945. height:30px;
  2946. display:flex;
  2947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2948. font-weight:400;
  2949. font-style:normal;
  2950. font-size:8px;
  2951. }
  2952. #u51706 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:2px 2px 2px 2px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u51706_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. }
  2964. #u51707_div {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:49px;
  2970. height:17px;
  2971. background:inherit;
  2972. background-color:rgba(255, 255, 255, 0);
  2973. border:none;
  2974. border-radius:0px;
  2975. -moz-box-shadow:none;
  2976. -webkit-box-shadow:none;
  2977. box-shadow:none;
  2978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2979. font-weight:400;
  2980. font-style:normal;
  2981. font-size:12px;
  2982. text-align:center;
  2983. }
  2984. #u51707 {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:296px;
  2988. top:310px;
  2989. width:49px;
  2990. height:17px;
  2991. display:flex;
  2992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2993. font-weight:400;
  2994. font-style:normal;
  2995. font-size:12px;
  2996. text-align:center;
  2997. }
  2998. #u51707 .text {
  2999. position:absolute;
  3000. align-self:flex-start;
  3001. padding:0px 0px 0px 0px;
  3002. box-sizing:border-box;
  3003. width:100%;
  3004. }
  3005. #u51707_text {
  3006. border-width:0px;
  3007. white-space:nowrap;
  3008. text-transform:none;
  3009. }
  3010. #u51708 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:0px;
  3016. height:0px;
  3017. }
  3018. #u51709_div {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:30px;
  3024. height:30px;
  3025. background:inherit;
  3026. background-color:rgba(255, 255, 255, 1);
  3027. box-sizing:border-box;
  3028. border-width:1px;
  3029. border-style:solid;
  3030. border-color:rgba(121, 121, 121, 1);
  3031. border-radius:4px;
  3032. -moz-box-shadow:none;
  3033. -webkit-box-shadow:none;
  3034. box-shadow:none;
  3035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:8px;
  3039. }
  3040. #u51709 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:39px;
  3044. top:347px;
  3045. width:30px;
  3046. height:30px;
  3047. display:flex;
  3048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3049. font-weight:400;
  3050. font-style:normal;
  3051. font-size:8px;
  3052. }
  3053. #u51709 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 2px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u51709_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. }
  3065. #u51710_div {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:49px;
  3071. height:17px;
  3072. background:inherit;
  3073. background-color:rgba(255, 255, 255, 0);
  3074. border:none;
  3075. border-radius:0px;
  3076. -moz-box-shadow:none;
  3077. -webkit-box-shadow:none;
  3078. box-shadow:none;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:12px;
  3083. text-align:center;
  3084. }
  3085. #u51710 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:30px;
  3089. top:382px;
  3090. width:49px;
  3091. height:17px;
  3092. display:flex;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:12px;
  3097. text-align:center;
  3098. }
  3099. #u51710 .text {
  3100. position:absolute;
  3101. align-self:flex-start;
  3102. padding:0px 0px 0px 0px;
  3103. box-sizing:border-box;
  3104. width:100%;
  3105. }
  3106. #u51710_text {
  3107. border-width:0px;
  3108. white-space:nowrap;
  3109. text-transform:none;
  3110. }
  3111. #u51711 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:0px;
  3115. top:0px;
  3116. width:0px;
  3117. height:0px;
  3118. }
  3119. #u51712_div {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:30px;
  3125. height:30px;
  3126. background:inherit;
  3127. background-color:rgba(255, 255, 255, 1);
  3128. box-sizing:border-box;
  3129. border-width:1px;
  3130. border-style:solid;
  3131. border-color:rgba(121, 121, 121, 1);
  3132. border-radius:4px;
  3133. -moz-box-shadow:none;
  3134. -webkit-box-shadow:none;
  3135. box-shadow:none;
  3136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:8px;
  3140. }
  3141. #u51712 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:129px;
  3145. top:347px;
  3146. width:30px;
  3147. height:30px;
  3148. display:flex;
  3149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3150. font-weight:400;
  3151. font-style:normal;
  3152. font-size:8px;
  3153. }
  3154. #u51712 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 2px 2px 2px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u51712_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. }
  3166. #u51713_div {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:0px;
  3170. top:0px;
  3171. width:49px;
  3172. height:17px;
  3173. background:inherit;
  3174. background-color:rgba(255, 255, 255, 0);
  3175. border:none;
  3176. border-radius:0px;
  3177. -moz-box-shadow:none;
  3178. -webkit-box-shadow:none;
  3179. box-shadow:none;
  3180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3181. font-weight:400;
  3182. font-style:normal;
  3183. font-size:12px;
  3184. text-align:center;
  3185. }
  3186. #u51713 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:119px;
  3190. top:382px;
  3191. width:49px;
  3192. height:17px;
  3193. display:flex;
  3194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. text-align:center;
  3199. }
  3200. #u51713 .text {
  3201. position:absolute;
  3202. align-self:flex-start;
  3203. padding:0px 0px 0px 0px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u51713_text {
  3208. border-width:0px;
  3209. white-space:nowrap;
  3210. text-transform:none;
  3211. }
  3212. #u51714 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:0px;
  3218. height:0px;
  3219. }
  3220. #u51715_div {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:30px;
  3226. height:30px;
  3227. background:inherit;
  3228. background-color:rgba(215, 215, 215, 1);
  3229. box-sizing:border-box;
  3230. border-width:1px;
  3231. border-style:solid;
  3232. border-color:rgba(121, 121, 121, 1);
  3233. border-radius:4px;
  3234. -moz-box-shadow:none;
  3235. -webkit-box-shadow:none;
  3236. box-shadow:none;
  3237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3238. font-weight:400;
  3239. font-style:normal;
  3240. font-size:8px;
  3241. }
  3242. #u51715 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:40px;
  3246. top:419px;
  3247. width:30px;
  3248. height:30px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:8px;
  3254. }
  3255. #u51715 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 2px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u51715_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. }
  3267. #u51716_div {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:49px;
  3273. height:17px;
  3274. background:inherit;
  3275. background-color:rgba(255, 255, 255, 0);
  3276. border:none;
  3277. border-radius:0px;
  3278. -moz-box-shadow:none;
  3279. -webkit-box-shadow:none;
  3280. box-shadow:none;
  3281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3282. font-weight:400;
  3283. font-style:normal;
  3284. font-size:12px;
  3285. text-align:center;
  3286. }
  3287. #u51716 {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:30px;
  3291. top:454px;
  3292. width:49px;
  3293. height:17px;
  3294. display:flex;
  3295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3296. font-weight:400;
  3297. font-style:normal;
  3298. font-size:12px;
  3299. text-align:center;
  3300. }
  3301. #u51716 .text {
  3302. position:absolute;
  3303. align-self:flex-start;
  3304. padding:0px 0px 0px 0px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u51716_text {
  3309. border-width:0px;
  3310. white-space:nowrap;
  3311. text-transform:none;
  3312. }
  3313. #u51717 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:0px;
  3319. height:0px;
  3320. }
  3321. #u51718_div {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:0px;
  3325. top:0px;
  3326. width:30px;
  3327. height:30px;
  3328. background:inherit;
  3329. background-color:rgba(255, 255, 255, 1);
  3330. box-sizing:border-box;
  3331. border-width:1px;
  3332. border-style:solid;
  3333. border-color:rgba(121, 121, 121, 1);
  3334. border-radius:4px;
  3335. -moz-box-shadow:none;
  3336. -webkit-box-shadow:none;
  3337. box-shadow:none;
  3338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:8px;
  3342. }
  3343. #u51718 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:128px;
  3347. top:275px;
  3348. width:30px;
  3349. height:30px;
  3350. display:flex;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:8px;
  3355. }
  3356. #u51718 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 2px 2px 2px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u51718_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. }
  3368. #u51719_div {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:49px;
  3374. height:17px;
  3375. background:inherit;
  3376. background-color:rgba(255, 255, 255, 0);
  3377. border:none;
  3378. border-radius:0px;
  3379. -moz-box-shadow:none;
  3380. -webkit-box-shadow:none;
  3381. box-shadow:none;
  3382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:12px;
  3386. text-align:center;
  3387. }
  3388. #u51719 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:119px;
  3392. top:310px;
  3393. width:49px;
  3394. height:17px;
  3395. display:flex;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:12px;
  3400. text-align:center;
  3401. }
  3402. #u51719 .text {
  3403. position:absolute;
  3404. align-self:flex-start;
  3405. padding:0px 0px 0px 0px;
  3406. box-sizing:border-box;
  3407. width:100%;
  3408. }
  3409. #u51719_text {
  3410. border-width:0px;
  3411. white-space:nowrap;
  3412. text-transform:none;
  3413. }
  3414. #u51720 {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:0px;
  3418. top:0px;
  3419. width:0px;
  3420. height:0px;
  3421. }
  3422. #u51721_div {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:30px;
  3428. height:30px;
  3429. background:inherit;
  3430. background-color:rgba(255, 255, 255, 1);
  3431. box-sizing:border-box;
  3432. border-width:1px;
  3433. border-style:solid;
  3434. border-color:rgba(121, 121, 121, 1);
  3435. border-radius:4px;
  3436. -moz-box-shadow:none;
  3437. -webkit-box-shadow:none;
  3438. box-shadow:none;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:8px;
  3443. }
  3444. #u51721 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:129px;
  3448. top:419px;
  3449. width:30px;
  3450. height:30px;
  3451. display:flex;
  3452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:8px;
  3456. }
  3457. #u51721 .text {
  3458. position:absolute;
  3459. align-self:center;
  3460. padding:2px 2px 2px 2px;
  3461. box-sizing:border-box;
  3462. width:100%;
  3463. }
  3464. #u51721_text {
  3465. border-width:0px;
  3466. word-wrap:break-word;
  3467. text-transform:none;
  3468. }
  3469. #u51722_div {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:73px;
  3475. height:17px;
  3476. background:inherit;
  3477. background-color:rgba(255, 255, 255, 0);
  3478. border:none;
  3479. border-radius:0px;
  3480. -moz-box-shadow:none;
  3481. -webkit-box-shadow:none;
  3482. box-shadow:none;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:12px;
  3487. text-align:center;
  3488. }
  3489. #u51722 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:107px;
  3493. top:454px;
  3494. width:73px;
  3495. height:17px;
  3496. display:flex;
  3497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:12px;
  3501. text-align:center;
  3502. }
  3503. #u51722 .text {
  3504. position:absolute;
  3505. align-self:flex-start;
  3506. padding:0px 0px 0px 0px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u51722_text {
  3511. border-width:0px;
  3512. white-space:nowrap;
  3513. text-transform:none;
  3514. }
  3515. #u51723 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:0px;
  3521. height:0px;
  3522. }
  3523. #u51724_div {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:375px;
  3529. height:120px;
  3530. background:inherit;
  3531. background-color:rgba(255, 255, 255, 1);
  3532. box-sizing:border-box;
  3533. border-width:1px;
  3534. border-style:solid;
  3535. border-color:rgba(242, 242, 242, 1);
  3536. border-left:0px;
  3537. border-top:0px;
  3538. border-right:0px;
  3539. border-radius:0px;
  3540. border-bottom-right-radius:0px;
  3541. border-bottom-left-radius:0px;
  3542. -moz-box-shadow:none;
  3543. -webkit-box-shadow:none;
  3544. box-shadow:none;
  3545. }
  3546. #u51724 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:0px;
  3550. top:630px;
  3551. width:375px;
  3552. height:120px;
  3553. display:flex;
  3554. }
  3555. #u51724 .text {
  3556. position:absolute;
  3557. align-self:center;
  3558. padding:2px 2px 2px 2px;
  3559. box-sizing:border-box;
  3560. width:100%;
  3561. }
  3562. #u51724_text {
  3563. border-width:0px;
  3564. word-wrap:break-word;
  3565. text-transform:none;
  3566. visibility:hidden;
  3567. }
  3568. #u51725 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:0px;
  3574. height:0px;
  3575. }
  3576. #u51726_div {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:30px;
  3582. height:30px;
  3583. background:inherit;
  3584. background-color:rgba(51, 51, 51, 1);
  3585. box-sizing:border-box;
  3586. border-width:1px;
  3587. border-style:solid;
  3588. border-color:rgba(121, 121, 121, 1);
  3589. border-radius:4px;
  3590. -moz-box-shadow:none;
  3591. -webkit-box-shadow:none;
  3592. box-shadow:none;
  3593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3594. font-weight:400;
  3595. font-style:normal;
  3596. font-size:8px;
  3597. color:#FFFFFF;
  3598. }
  3599. #u51726 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:39px;
  3603. top:675px;
  3604. width:30px;
  3605. height:30px;
  3606. display:flex;
  3607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:8px;
  3611. color:#FFFFFF;
  3612. }
  3613. #u51726 .text {
  3614. position:absolute;
  3615. align-self:center;
  3616. padding:2px 2px 2px 2px;
  3617. box-sizing:border-box;
  3618. width:100%;
  3619. }
  3620. #u51726_text {
  3621. border-width:0px;
  3622. word-wrap:break-word;
  3623. text-transform:none;
  3624. }
  3625. #u51727_div {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:49px;
  3631. height:17px;
  3632. background:inherit;
  3633. background-color:rgba(255, 255, 255, 0);
  3634. border:none;
  3635. border-radius:0px;
  3636. -moz-box-shadow:none;
  3637. -webkit-box-shadow:none;
  3638. box-shadow:none;
  3639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3640. font-weight:400;
  3641. font-style:normal;
  3642. font-size:12px;
  3643. text-align:center;
  3644. }
  3645. #u51727 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:30px;
  3649. top:710px;
  3650. width:49px;
  3651. height:17px;
  3652. display:flex;
  3653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:12px;
  3657. text-align:center;
  3658. }
  3659. #u51727 .text {
  3660. position:absolute;
  3661. align-self:flex-start;
  3662. padding:0px 0px 0px 0px;
  3663. box-sizing:border-box;
  3664. width:100%;
  3665. }
  3666. #u51727_text {
  3667. border-width:0px;
  3668. white-space:nowrap;
  3669. text-transform:none;
  3670. }
  3671. #u51728 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:0px;
  3677. height:0px;
  3678. }
  3679. #u51729_div {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:30px;
  3685. height:30px;
  3686. background:inherit;
  3687. background-color:rgba(255, 255, 255, 1);
  3688. box-sizing:border-box;
  3689. border-width:1px;
  3690. border-style:solid;
  3691. border-color:rgba(121, 121, 121, 1);
  3692. border-radius:4px;
  3693. -moz-box-shadow:none;
  3694. -webkit-box-shadow:none;
  3695. box-shadow:none;
  3696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3697. font-weight:400;
  3698. font-style:normal;
  3699. font-size:8px;
  3700. }
  3701. #u51729 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:124px;
  3705. top:675px;
  3706. width:30px;
  3707. height:30px;
  3708. display:flex;
  3709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3710. font-weight:400;
  3711. font-style:normal;
  3712. font-size:8px;
  3713. }
  3714. #u51729 .text {
  3715. position:absolute;
  3716. align-self:center;
  3717. padding:2px 2px 2px 2px;
  3718. box-sizing:border-box;
  3719. width:100%;
  3720. }
  3721. #u51729_text {
  3722. border-width:0px;
  3723. word-wrap:break-word;
  3724. text-transform:none;
  3725. }
  3726. #u51730_div {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:49px;
  3732. height:17px;
  3733. background:inherit;
  3734. background-color:rgba(255, 255, 255, 0);
  3735. border:none;
  3736. border-radius:0px;
  3737. -moz-box-shadow:none;
  3738. -webkit-box-shadow:none;
  3739. box-shadow:none;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. font-size:12px;
  3744. text-align:center;
  3745. }
  3746. #u51730 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:115px;
  3750. top:710px;
  3751. width:49px;
  3752. height:17px;
  3753. display:flex;
  3754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. font-size:12px;
  3758. text-align:center;
  3759. }
  3760. #u51730 .text {
  3761. position:absolute;
  3762. align-self:flex-start;
  3763. padding:0px 0px 0px 0px;
  3764. box-sizing:border-box;
  3765. width:100%;
  3766. }
  3767. #u51730_text {
  3768. border-width:0px;
  3769. white-space:nowrap;
  3770. text-transform:none;
  3771. }
  3772. #u51731_div {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:0px;
  3776. top:0px;
  3777. width:49px;
  3778. height:17px;
  3779. background:inherit;
  3780. background-color:rgba(255, 255, 255, 0);
  3781. border:none;
  3782. border-radius:0px;
  3783. -moz-box-shadow:none;
  3784. -webkit-box-shadow:none;
  3785. box-shadow:none;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:12px;
  3790. }
  3791. #u51731 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:18px;
  3795. top:642px;
  3796. width:49px;
  3797. height:17px;
  3798. display:flex;
  3799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:12px;
  3803. }
  3804. #u51731 .text {
  3805. position:absolute;
  3806. align-self:flex-start;
  3807. padding:0px 0px 0px 0px;
  3808. box-sizing:border-box;
  3809. width:100%;
  3810. }
  3811. #u51731_text {
  3812. border-width:0px;
  3813. white-space:nowrap;
  3814. text-transform:none;
  3815. }
  3816. #u51732 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:0px;
  3820. top:0px;
  3821. width:0px;
  3822. height:0px;
  3823. }
  3824. #u51733_div {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:30px;
  3830. height:30px;
  3831. background:inherit;
  3832. background-color:rgba(51, 51, 51, 1);
  3833. box-sizing:border-box;
  3834. border-width:1px;
  3835. border-style:solid;
  3836. border-color:rgba(121, 121, 121, 1);
  3837. border-radius:4px;
  3838. -moz-box-shadow:none;
  3839. -webkit-box-shadow:none;
  3840. box-shadow:none;
  3841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:8px;
  3845. color:#FFFFFF;
  3846. }
  3847. #u51733 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:214px;
  3851. top:675px;
  3852. width:30px;
  3853. height:30px;
  3854. display:flex;
  3855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. font-size:8px;
  3859. color:#FFFFFF;
  3860. }
  3861. #u51733 .text {
  3862. position:absolute;
  3863. align-self:center;
  3864. padding:2px 2px 2px 2px;
  3865. box-sizing:border-box;
  3866. width:100%;
  3867. }
  3868. #u51733_text {
  3869. border-width:0px;
  3870. word-wrap:break-word;
  3871. text-transform:none;
  3872. }
  3873. #u51734_div {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:49px;
  3879. height:17px;
  3880. background:inherit;
  3881. background-color:rgba(255, 255, 255, 0);
  3882. border:none;
  3883. border-radius:0px;
  3884. -moz-box-shadow:none;
  3885. -webkit-box-shadow:none;
  3886. box-shadow:none;
  3887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:12px;
  3891. text-align:center;
  3892. }
  3893. #u51734 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:205px;
  3897. top:710px;
  3898. width:49px;
  3899. height:17px;
  3900. display:flex;
  3901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3902. font-weight:400;
  3903. font-style:normal;
  3904. font-size:12px;
  3905. text-align:center;
  3906. }
  3907. #u51734 .text {
  3908. position:absolute;
  3909. align-self:flex-start;
  3910. padding:0px 0px 0px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u51734_text {
  3915. border-width:0px;
  3916. white-space:nowrap;
  3917. text-transform:none;
  3918. }
  3919. #u51735 {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:0px;
  3925. height:0px;
  3926. }
  3927. #u51736_div {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:0px;
  3931. top:0px;
  3932. width:375px;
  3933. height:80px;
  3934. background:inherit;
  3935. background-color:rgba(255, 255, 255, 1);
  3936. box-sizing:border-box;
  3937. border-width:1px;
  3938. border-style:solid;
  3939. border-color:rgba(242, 242, 242, 1);
  3940. border-left:0px;
  3941. border-top:0px;
  3942. border-right:0px;
  3943. border-radius:0px;
  3944. border-bottom-right-radius:0px;
  3945. border-bottom-left-radius:0px;
  3946. -moz-box-shadow:none;
  3947. -webkit-box-shadow:none;
  3948. box-shadow:none;
  3949. }
  3950. #u51736 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:760px;
  3955. width:375px;
  3956. height:80px;
  3957. display:flex;
  3958. }
  3959. #u51736 .text {
  3960. position:absolute;
  3961. align-self:center;
  3962. padding:2px 2px 2px 2px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u51736_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. visibility:hidden;
  3971. }
  3972. #u51737 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:0px;
  3978. height:0px;
  3979. }
  3980. #u51738_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:30px;
  3986. height:30px;
  3987. background:inherit;
  3988. background-color:rgba(51, 51, 51, 1);
  3989. box-sizing:border-box;
  3990. border-width:1px;
  3991. border-style:solid;
  3992. border-color:rgba(121, 121, 121, 1);
  3993. border-radius:4px;
  3994. -moz-box-shadow:none;
  3995. -webkit-box-shadow:none;
  3996. box-shadow:none;
  3997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3998. font-weight:400;
  3999. font-style:normal;
  4000. font-size:8px;
  4001. color:#FFFFFF;
  4002. }
  4003. #u51738 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:38px;
  4007. top:775px;
  4008. width:30px;
  4009. height:30px;
  4010. display:flex;
  4011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4012. font-weight:400;
  4013. font-style:normal;
  4014. font-size:8px;
  4015. color:#FFFFFF;
  4016. }
  4017. #u51738 .text {
  4018. position:absolute;
  4019. align-self:center;
  4020. padding:2px 2px 2px 2px;
  4021. box-sizing:border-box;
  4022. width:100%;
  4023. }
  4024. #u51738_text {
  4025. border-width:0px;
  4026. word-wrap:break-word;
  4027. text-transform:none;
  4028. }
  4029. #u51739_div {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:55px;
  4035. height:17px;
  4036. background:inherit;
  4037. background-color:rgba(255, 255, 255, 0);
  4038. border:none;
  4039. border-radius:0px;
  4040. -moz-box-shadow:none;
  4041. -webkit-box-shadow:none;
  4042. box-shadow:none;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:12px;
  4047. text-align:center;
  4048. }
  4049. #u51739 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:24px;
  4053. top:810px;
  4054. width:55px;
  4055. height:17px;
  4056. display:flex;
  4057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:12px;
  4061. text-align:center;
  4062. }
  4063. #u51739 .text {
  4064. position:absolute;
  4065. align-self:flex-start;
  4066. padding:0px 0px 0px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u51739_text {
  4071. border-width:0px;
  4072. white-space:nowrap;
  4073. text-transform:none;
  4074. }
  4075. #u51740 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:0px;
  4081. height:0px;
  4082. }
  4083. #u51741_div {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:30px;
  4089. height:30px;
  4090. background:inherit;
  4091. background-color:rgba(255, 255, 255, 1);
  4092. box-sizing:border-box;
  4093. border-width:1px;
  4094. border-style:solid;
  4095. border-color:rgba(121, 121, 121, 1);
  4096. border-radius:4px;
  4097. -moz-box-shadow:none;
  4098. -webkit-box-shadow:none;
  4099. box-shadow:none;
  4100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4101. font-weight:400;
  4102. font-style:normal;
  4103. font-size:8px;
  4104. }
  4105. #u51741 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:124px;
  4109. top:775px;
  4110. width:30px;
  4111. height:30px;
  4112. display:flex;
  4113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4114. font-weight:400;
  4115. font-style:normal;
  4116. font-size:8px;
  4117. }
  4118. #u51741 .text {
  4119. position:absolute;
  4120. align-self:center;
  4121. padding:2px 2px 2px 2px;
  4122. box-sizing:border-box;
  4123. width:100%;
  4124. }
  4125. #u51741_text {
  4126. border-width:0px;
  4127. word-wrap:break-word;
  4128. text-transform:none;
  4129. }
  4130. #u51742_div {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:61px;
  4136. height:17px;
  4137. background:inherit;
  4138. background-color:rgba(255, 255, 255, 0);
  4139. border:none;
  4140. border-radius:0px;
  4141. -moz-box-shadow:none;
  4142. -webkit-box-shadow:none;
  4143. box-shadow:none;
  4144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. font-size:12px;
  4148. text-align:center;
  4149. }
  4150. #u51742 {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:109px;
  4154. top:810px;
  4155. width:61px;
  4156. height:17px;
  4157. display:flex;
  4158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4159. font-weight:400;
  4160. font-style:normal;
  4161. font-size:12px;
  4162. text-align:center;
  4163. }
  4164. #u51742 .text {
  4165. position:absolute;
  4166. align-self:flex-start;
  4167. padding:0px 0px 0px 0px;
  4168. box-sizing:border-box;
  4169. width:100%;
  4170. }
  4171. #u51742_text {
  4172. border-width:0px;
  4173. white-space:nowrap;
  4174. text-transform:none;
  4175. }
  4176. #u51743 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:0px;
  4182. height:0px;
  4183. }
  4184. #u51744_div {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:375px;
  4190. height:120px;
  4191. background:inherit;
  4192. background-color:rgba(255, 255, 255, 1);
  4193. box-sizing:border-box;
  4194. border-width:1px;
  4195. border-style:solid;
  4196. border-color:rgba(242, 242, 242, 1);
  4197. border-left:0px;
  4198. border-top:0px;
  4199. border-right:0px;
  4200. border-radius:0px;
  4201. border-bottom-right-radius:0px;
  4202. border-bottom-left-radius:0px;
  4203. -moz-box-shadow:none;
  4204. -webkit-box-shadow:none;
  4205. box-shadow:none;
  4206. }
  4207. #u51744 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:0px;
  4211. top:500px;
  4212. width:375px;
  4213. height:120px;
  4214. display:flex;
  4215. }
  4216. #u51744 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:2px 2px 2px 2px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u51744_text {
  4224. border-width:0px;
  4225. word-wrap:break-word;
  4226. text-transform:none;
  4227. visibility:hidden;
  4228. }
  4229. #u51745_div {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:49px;
  4235. height:17px;
  4236. background:inherit;
  4237. background-color:rgba(255, 255, 255, 0);
  4238. border:none;
  4239. border-radius:0px;
  4240. -moz-box-shadow:none;
  4241. -webkit-box-shadow:none;
  4242. box-shadow:none;
  4243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4244. font-weight:400;
  4245. font-style:normal;
  4246. font-size:12px;
  4247. }
  4248. #u51745 {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:18px;
  4252. top:512px;
  4253. width:49px;
  4254. height:17px;
  4255. display:flex;
  4256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4257. font-weight:400;
  4258. font-style:normal;
  4259. font-size:12px;
  4260. }
  4261. #u51745 .text {
  4262. position:absolute;
  4263. align-self:flex-start;
  4264. padding:0px 0px 0px 0px;
  4265. box-sizing:border-box;
  4266. width:100%;
  4267. }
  4268. #u51745_text {
  4269. border-width:0px;
  4270. white-space:nowrap;
  4271. text-transform:none;
  4272. }
  4273. #u51746 {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:0px;
  4279. height:0px;
  4280. }
  4281. #u51747_div {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:30px;
  4287. height:30px;
  4288. background:inherit;
  4289. background-color:rgba(255, 255, 255, 1);
  4290. box-sizing:border-box;
  4291. border-width:1px;
  4292. border-style:solid;
  4293. border-color:rgba(121, 121, 121, 1);
  4294. border-radius:4px;
  4295. -moz-box-shadow:none;
  4296. -webkit-box-shadow:none;
  4297. box-shadow:none;
  4298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4299. font-weight:400;
  4300. font-style:normal;
  4301. font-size:8px;
  4302. }
  4303. #u51747 {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:39px;
  4307. top:545px;
  4308. width:30px;
  4309. height:30px;
  4310. display:flex;
  4311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4312. font-weight:400;
  4313. font-style:normal;
  4314. font-size:8px;
  4315. }
  4316. #u51747 .text {
  4317. position:absolute;
  4318. align-self:center;
  4319. padding:2px 2px 2px 2px;
  4320. box-sizing:border-box;
  4321. width:100%;
  4322. }
  4323. #u51747_text {
  4324. border-width:0px;
  4325. word-wrap:break-word;
  4326. text-transform:none;
  4327. }
  4328. #u51748_div {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:0px;
  4332. top:0px;
  4333. width:49px;
  4334. height:17px;
  4335. background:inherit;
  4336. background-color:rgba(255, 255, 255, 0);
  4337. border:none;
  4338. border-radius:0px;
  4339. -moz-box-shadow:none;
  4340. -webkit-box-shadow:none;
  4341. box-shadow:none;
  4342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4343. font-weight:400;
  4344. font-style:normal;
  4345. font-size:12px;
  4346. text-align:center;
  4347. }
  4348. #u51748 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:30px;
  4352. top:580px;
  4353. width:49px;
  4354. height:17px;
  4355. display:flex;
  4356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4357. font-weight:400;
  4358. font-style:normal;
  4359. font-size:12px;
  4360. text-align:center;
  4361. }
  4362. #u51748 .text {
  4363. position:absolute;
  4364. align-self:flex-start;
  4365. padding:0px 0px 0px 0px;
  4366. box-sizing:border-box;
  4367. width:100%;
  4368. }
  4369. #u51748_text {
  4370. border-width:0px;
  4371. white-space:nowrap;
  4372. text-transform:none;
  4373. }
  4374. #u51750_img {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:433px;
  4380. height:865px;
  4381. }
  4382. #u51750 {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:463px;
  4386. top:1px;
  4387. width:433px;
  4388. height:865px;
  4389. display:flex;
  4390. }
  4391. #u51750 .text {
  4392. position:absolute;
  4393. align-self:center;
  4394. padding:2px 2px 2px 2px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u51750_text {
  4399. border-width:0px;
  4400. word-wrap:break-word;
  4401. text-transform:none;
  4402. visibility:hidden;
  4403. }
  4404. #u51751_div {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:375px;
  4410. height:40px;
  4411. background:inherit;
  4412. background-color:rgba(255, 255, 255, 1);
  4413. box-sizing:border-box;
  4414. border-width:1px;
  4415. border-style:solid;
  4416. border-color:rgba(215, 215, 215, 1);
  4417. border-left:0px;
  4418. border-top:0px;
  4419. border-right:0px;
  4420. border-radius:0px;
  4421. border-bottom-right-radius:0px;
  4422. border-bottom-left-radius:0px;
  4423. -moz-box-shadow:none;
  4424. -webkit-box-shadow:none;
  4425. box-shadow:none;
  4426. }
  4427. #u51751 {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:492px;
  4431. top:68px;
  4432. width:375px;
  4433. height:40px;
  4434. display:flex;
  4435. }
  4436. #u51751 .text {
  4437. position:absolute;
  4438. align-self:center;
  4439. padding:2px 2px 2px 2px;
  4440. box-sizing:border-box;
  4441. width:100%;
  4442. }
  4443. #u51751_text {
  4444. border-width:0px;
  4445. word-wrap:break-word;
  4446. text-transform:none;
  4447. visibility:hidden;
  4448. }
  4449. #u51752 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:0px;
  4453. top:0px;
  4454. width:0px;
  4455. height:0px;
  4456. }
  4457. #u51753_div {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:0px;
  4461. top:0px;
  4462. width:88px;
  4463. height:32px;
  4464. background:inherit;
  4465. background-color:rgba(255, 255, 255, 1);
  4466. box-sizing:border-box;
  4467. border-width:1px;
  4468. border-style:solid;
  4469. border-color:rgba(242, 242, 242, 1);
  4470. border-radius:33px;
  4471. -moz-box-shadow:none;
  4472. -webkit-box-shadow:none;
  4473. box-shadow:none;
  4474. }
  4475. #u51753 {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:772px;
  4479. top:72px;
  4480. width:88px;
  4481. height:32px;
  4482. display:flex;
  4483. }
  4484. #u51753 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:2px 2px 2px 2px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u51753_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u51754 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:0px;
  4503. height:0px;
  4504. }
  4505. #u51755_img {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:0px;
  4509. top:0px;
  4510. width:18px;
  4511. height:18px;
  4512. }
  4513. #u51755 {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:835px;
  4517. top:79px;
  4518. width:18px;
  4519. height:18px;
  4520. display:flex;
  4521. }
  4522. #u51755 .text {
  4523. position:absolute;
  4524. align-self:center;
  4525. padding:2px 2px 2px 2px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u51755_text {
  4530. border-width:0px;
  4531. word-wrap:break-word;
  4532. text-transform:none;
  4533. visibility:hidden;
  4534. }
  4535. #u51756_img {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:0px;
  4539. top:0px;
  4540. width:6px;
  4541. height:6px;
  4542. }
  4543. #u51756 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:841px;
  4547. top:85px;
  4548. width:6px;
  4549. height:6px;
  4550. display:flex;
  4551. }
  4552. #u51756 .text {
  4553. position:absolute;
  4554. align-self:center;
  4555. padding:2px 2px 2px 2px;
  4556. box-sizing:border-box;
  4557. width:100%;
  4558. }
  4559. #u51756_text {
  4560. border-width:0px;
  4561. word-wrap:break-word;
  4562. text-transform:none;
  4563. visibility:hidden;
  4564. }
  4565. #u51757 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:0px;
  4571. height:0px;
  4572. }
  4573. #u51758_img {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:5px;
  4579. height:5px;
  4580. }
  4581. #u51758 {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:786px;
  4585. top:86px;
  4586. width:5px;
  4587. height:5px;
  4588. display:flex;
  4589. }
  4590. #u51758 .text {
  4591. position:absolute;
  4592. align-self:center;
  4593. padding:2px 2px 2px 2px;
  4594. box-sizing:border-box;
  4595. width:100%;
  4596. }
  4597. #u51758_text {
  4598. border-width:0px;
  4599. word-wrap:break-word;
  4600. text-transform:none;
  4601. visibility:hidden;
  4602. }
  4603. #u51759_img {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:5px;
  4609. height:5px;
  4610. }
  4611. #u51759 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:802px;
  4615. top:86px;
  4616. width:5px;
  4617. height:5px;
  4618. display:flex;
  4619. }
  4620. #u51759 .text {
  4621. position:absolute;
  4622. align-self:center;
  4623. padding:2px 2px 2px 2px;
  4624. box-sizing:border-box;
  4625. width:100%;
  4626. }
  4627. #u51759_text {
  4628. border-width:0px;
  4629. word-wrap:break-word;
  4630. text-transform:none;
  4631. visibility:hidden;
  4632. }
  4633. #u51760_img {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:0px;
  4637. top:0px;
  4638. width:7px;
  4639. height:7px;
  4640. }
  4641. #u51760 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:793px;
  4645. top:85px;
  4646. width:7px;
  4647. height:7px;
  4648. display:flex;
  4649. }
  4650. #u51760 .text {
  4651. position:absolute;
  4652. align-self:center;
  4653. padding:2px 2px 2px 2px;
  4654. box-sizing:border-box;
  4655. width:100%;
  4656. }
  4657. #u51760_text {
  4658. border-width:0px;
  4659. word-wrap:break-word;
  4660. text-transform:none;
  4661. visibility:hidden;
  4662. }
  4663. #u51761_img {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:19px;
  4669. height:2px;
  4670. }
  4671. #u51761 {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:810px;
  4675. top:88px;
  4676. width:18px;
  4677. height:1px;
  4678. display:flex;
  4679. -webkit-transform:rotate(90deg);
  4680. -moz-transform:rotate(90deg);
  4681. -ms-transform:rotate(90deg);
  4682. transform:rotate(90deg);
  4683. }
  4684. #u51761 .text {
  4685. position:absolute;
  4686. align-self:center;
  4687. padding:2px 2px 2px 2px;
  4688. box-sizing:border-box;
  4689. width:100%;
  4690. }
  4691. #u51761_text {
  4692. border-width:0px;
  4693. word-wrap:break-word;
  4694. text-transform:none;
  4695. visibility:hidden;
  4696. }
  4697. #u51762_img {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:0px;
  4701. top:0px;
  4702. width:375px;
  4703. height:44px;
  4704. }
  4705. #u51762 {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:492px;
  4709. top:25px;
  4710. width:375px;
  4711. height:44px;
  4712. display:flex;
  4713. }
  4714. #u51762 .text {
  4715. position:absolute;
  4716. align-self:center;
  4717. padding:2px 2px 2px 2px;
  4718. box-sizing:border-box;
  4719. width:100%;
  4720. }
  4721. #u51762_text {
  4722. border-width:0px;
  4723. word-wrap:break-word;
  4724. text-transform:none;
  4725. visibility:hidden;
  4726. }
  4727. #u51763_div {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:375px;
  4733. height:50px;
  4734. background:inherit;
  4735. background-color:rgba(255, 255, 255, 1);
  4736. box-sizing:border-box;
  4737. border-width:1px;
  4738. border-style:solid;
  4739. border-color:rgba(242, 242, 242, 1);
  4740. border-radius:26px;
  4741. border-top-left-radius:0px;
  4742. border-top-right-radius:0px;
  4743. -moz-box-shadow:none;
  4744. -webkit-box-shadow:none;
  4745. box-shadow:none;
  4746. }
  4747. #u51763 {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:492px;
  4751. top:789px;
  4752. width:375px;
  4753. height:50px;
  4754. display:flex;
  4755. }
  4756. #u51763 .text {
  4757. position:absolute;
  4758. align-self:center;
  4759. padding:2px 2px 2px 2px;
  4760. box-sizing:border-box;
  4761. width:100%;
  4762. }
  4763. #u51763_text {
  4764. border-width:0px;
  4765. word-wrap:break-word;
  4766. text-transform:none;
  4767. visibility:hidden;
  4768. }
  4769. #u51764 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:0px;
  4775. height:0px;
  4776. }
  4777. #u51765_img {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:24px;
  4783. height:24px;
  4784. }
  4785. #u51765 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:532px;
  4789. top:793px;
  4790. width:24px;
  4791. height:24px;
  4792. display:flex;
  4793. font-size:8px;
  4794. }
  4795. #u51765 .text {
  4796. position:absolute;
  4797. align-self:center;
  4798. padding:2px 2px 2px 2px;
  4799. box-sizing:border-box;
  4800. width:100%;
  4801. }
  4802. #u51765_text {
  4803. border-width:0px;
  4804. word-wrap:break-word;
  4805. text-transform:none;
  4806. }
  4807. #u51766_div {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:25px;
  4813. height:17px;
  4814. background:inherit;
  4815. background-color:rgba(255, 255, 255, 0);
  4816. border:none;
  4817. border-radius:0px;
  4818. -moz-box-shadow:none;
  4819. -webkit-box-shadow:none;
  4820. box-shadow:none;
  4821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4822. font-weight:400;
  4823. font-style:normal;
  4824. font-size:12px;
  4825. }
  4826. #u51766 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:532px;
  4830. top:818px;
  4831. width:25px;
  4832. height:17px;
  4833. display:flex;
  4834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4835. font-weight:400;
  4836. font-style:normal;
  4837. font-size:12px;
  4838. }
  4839. #u51766 .text {
  4840. position:absolute;
  4841. align-self:flex-start;
  4842. padding:0px 0px 0px 0px;
  4843. box-sizing:border-box;
  4844. width:100%;
  4845. }
  4846. #u51766_text {
  4847. border-width:0px;
  4848. white-space:nowrap;
  4849. text-transform:none;
  4850. }
  4851. #u51767 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:0px;
  4857. height:0px;
  4858. }
  4859. #u51768_img {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:24px;
  4865. height:24px;
  4866. }
  4867. #u51768 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:802px;
  4871. top:795px;
  4872. width:24px;
  4873. height:24px;
  4874. display:flex;
  4875. font-size:8px;
  4876. }
  4877. #u51768 .text {
  4878. position:absolute;
  4879. align-self:center;
  4880. padding:2px 2px 2px 2px;
  4881. box-sizing:border-box;
  4882. width:100%;
  4883. }
  4884. #u51768_text {
  4885. border-width:0px;
  4886. word-wrap:break-word;
  4887. text-transform:none;
  4888. }
  4889. #u51769_div {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:25px;
  4895. height:17px;
  4896. background:inherit;
  4897. background-color:rgba(255, 255, 255, 0);
  4898. border:none;
  4899. border-radius:0px;
  4900. -moz-box-shadow:none;
  4901. -webkit-box-shadow:none;
  4902. box-shadow:none;
  4903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4904. font-weight:400;
  4905. font-style:normal;
  4906. font-size:12px;
  4907. }
  4908. #u51769 {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:802px;
  4912. top:820px;
  4913. width:25px;
  4914. height:17px;
  4915. display:flex;
  4916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. font-size:12px;
  4920. }
  4921. #u51769 .text {
  4922. position:absolute;
  4923. align-self:flex-start;
  4924. padding:0px 0px 0px 0px;
  4925. box-sizing:border-box;
  4926. width:100%;
  4927. }
  4928. #u51769_text {
  4929. border-width:0px;
  4930. white-space:nowrap;
  4931. text-transform:none;
  4932. }
  4933. #u51770_div {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:375px;
  4939. height:681px;
  4940. background:inherit;
  4941. background-color:rgba(242, 242, 242, 0.462745098039216);
  4942. border:none;
  4943. border-radius:0px;
  4944. -moz-box-shadow:none;
  4945. -webkit-box-shadow:none;
  4946. box-shadow:none;
  4947. }
  4948. #u51770 {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:492px;
  4952. top:108px;
  4953. width:375px;
  4954. height:681px;
  4955. display:flex;
  4956. }
  4957. #u51770 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 2px 2px 2px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u51770_text {
  4965. border-width:0px;
  4966. word-wrap:break-word;
  4967. text-transform:none;
  4968. visibility:hidden;
  4969. }
  4970. #u51771 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:0px;
  4976. height:0px;
  4977. }
  4978. #u51772_img {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:0px;
  4982. top:0px;
  4983. width:24px;
  4984. height:24px;
  4985. }
  4986. #u51772 {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:714px;
  4990. top:793px;
  4991. width:24px;
  4992. height:24px;
  4993. display:flex;
  4994. font-size:8px;
  4995. }
  4996. #u51772 .text {
  4997. position:absolute;
  4998. align-self:center;
  4999. padding:2px 2px 2px 2px;
  5000. box-sizing:border-box;
  5001. width:100%;
  5002. }
  5003. #u51772_text {
  5004. border-width:0px;
  5005. word-wrap:break-word;
  5006. text-transform:none;
  5007. }
  5008. #u51773_div {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:37px;
  5014. height:17px;
  5015. background:inherit;
  5016. background-color:rgba(255, 255, 255, 0);
  5017. border:none;
  5018. border-radius:0px;
  5019. -moz-box-shadow:none;
  5020. -webkit-box-shadow:none;
  5021. box-shadow:none;
  5022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5023. font-weight:400;
  5024. font-style:normal;
  5025. font-size:12px;
  5026. }
  5027. #u51773 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:708px;
  5031. top:818px;
  5032. width:37px;
  5033. height:17px;
  5034. display:flex;
  5035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5036. font-weight:400;
  5037. font-style:normal;
  5038. font-size:12px;
  5039. }
  5040. #u51773 .text {
  5041. position:absolute;
  5042. align-self:flex-start;
  5043. padding:0px 0px 0px 0px;
  5044. box-sizing:border-box;
  5045. width:100%;
  5046. }
  5047. #u51773_text {
  5048. border-width:0px;
  5049. white-space:nowrap;
  5050. text-transform:none;
  5051. }
  5052. #u51774 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:0px;
  5058. height:0px;
  5059. }
  5060. #u51775_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:24px;
  5066. height:24px;
  5067. }
  5068. #u51775 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:620px;
  5072. top:793px;
  5073. width:24px;
  5074. height:24px;
  5075. display:flex;
  5076. font-size:8px;
  5077. }
  5078. #u51775 .text {
  5079. position:absolute;
  5080. align-self:center;
  5081. padding:2px 2px 2px 2px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u51775_text {
  5086. border-width:0px;
  5087. word-wrap:break-word;
  5088. text-transform:none;
  5089. }
  5090. #u51776_div {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:0px;
  5094. top:0px;
  5095. width:37px;
  5096. height:17px;
  5097. background:inherit;
  5098. background-color:rgba(255, 255, 255, 0);
  5099. border:none;
  5100. border-radius:0px;
  5101. -moz-box-shadow:none;
  5102. -webkit-box-shadow:none;
  5103. box-shadow:none;
  5104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:12px;
  5108. }
  5109. #u51776 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:614px;
  5113. top:818px;
  5114. width:37px;
  5115. height:17px;
  5116. display:flex;
  5117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:12px;
  5121. }
  5122. #u51776 .text {
  5123. position:absolute;
  5124. align-self:flex-start;
  5125. padding:0px 0px 0px 0px;
  5126. box-sizing:border-box;
  5127. width:100%;
  5128. }
  5129. #u51776_text {
  5130. border-width:0px;
  5131. white-space:nowrap;
  5132. text-transform:none;
  5133. }
  5134. #u51777_div {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:375px;
  5140. height:732px;
  5141. background:inherit;
  5142. background-color:rgba(242, 242, 242, 1);
  5143. box-sizing:border-box;
  5144. border-width:1px;
  5145. border-style:solid;
  5146. border-color:rgba(242, 242, 242, 1);
  5147. border-radius:26px;
  5148. border-top-left-radius:0px;
  5149. border-top-right-radius:0px;
  5150. -moz-box-shadow:none;
  5151. -webkit-box-shadow:none;
  5152. box-shadow:none;
  5153. }
  5154. #u51777 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:492px;
  5158. top:106px;
  5159. width:375px;
  5160. height:732px;
  5161. display:flex;
  5162. }
  5163. #u51777 .text {
  5164. position:absolute;
  5165. align-self:center;
  5166. padding:2px 2px 2px 2px;
  5167. box-sizing:border-box;
  5168. width:100%;
  5169. }
  5170. #u51777_text {
  5171. border-width:0px;
  5172. word-wrap:break-word;
  5173. text-transform:none;
  5174. visibility:hidden;
  5175. }
  5176. #u51778_div {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:375px;
  5182. height:140px;
  5183. background:inherit;
  5184. background-color:rgba(242, 242, 242, 1);
  5185. border:none;
  5186. border-left:0px;
  5187. border-top:0px;
  5188. border-right:0px;
  5189. border-radius:0px;
  5190. border-bottom-right-radius:0px;
  5191. border-bottom-left-radius:0px;
  5192. -moz-box-shadow:none;
  5193. -webkit-box-shadow:none;
  5194. box-shadow:none;
  5195. }
  5196. #u51778 {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:492px;
  5200. top:67px;
  5201. width:375px;
  5202. height:140px;
  5203. display:flex;
  5204. }
  5205. #u51778 .text {
  5206. position:absolute;
  5207. align-self:center;
  5208. padding:2px 2px 2px 2px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u51778_text {
  5213. border-width:0px;
  5214. word-wrap:break-word;
  5215. text-transform:none;
  5216. visibility:hidden;
  5217. }
  5218. #u51779_img {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:0px;
  5222. top:0px;
  5223. width:65px;
  5224. height:65px;
  5225. }
  5226. #u51779 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:517px;
  5230. top:114px;
  5231. width:65px;
  5232. height:65px;
  5233. display:flex;
  5234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5235. font-weight:400;
  5236. font-style:normal;
  5237. color:#FFFFFF;
  5238. }
  5239. #u51779 .text {
  5240. position:absolute;
  5241. align-self:center;
  5242. padding:2px 2px 2px 2px;
  5243. box-sizing:border-box;
  5244. width:100%;
  5245. }
  5246. #u51779_text {
  5247. border-width:0px;
  5248. word-wrap:break-word;
  5249. text-transform:none;
  5250. }
  5251. #u51780_div {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:37px;
  5257. height:25px;
  5258. background:inherit;
  5259. background-color:rgba(127, 127, 127, 0);
  5260. border:none;
  5261. border-radius:3px;
  5262. -moz-box-shadow:none;
  5263. -webkit-box-shadow:none;
  5264. box-shadow:none;
  5265. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5266. font-weight:650;
  5267. font-style:normal;
  5268. font-size:18px;
  5269. color:#555555;
  5270. }
  5271. #u51780 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:599px;
  5275. top:122px;
  5276. width:37px;
  5277. height:25px;
  5278. display:flex;
  5279. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5280. font-weight:650;
  5281. font-style:normal;
  5282. font-size:18px;
  5283. color:#555555;
  5284. }
  5285. #u51780 .text {
  5286. position:absolute;
  5287. align-self:center;
  5288. padding:0px 0px 0px 0px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u51780_text {
  5293. border-width:0px;
  5294. white-space:nowrap;
  5295. text-transform:none;
  5296. }
  5297. #u51781 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:0px;
  5303. height:0px;
  5304. }
  5305. #u51782_div {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:60px;
  5311. height:20px;
  5312. background:inherit;
  5313. background-color:rgba(255, 255, 255, 1);
  5314. box-sizing:border-box;
  5315. border-width:1px;
  5316. border-style:solid;
  5317. border-color:rgba(215, 215, 215, 1);
  5318. border-radius:2px;
  5319. -moz-box-shadow:none;
  5320. -webkit-box-shadow:none;
  5321. box-shadow:none;
  5322. }
  5323. #u51782 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:656px;
  5327. top:122px;
  5328. width:60px;
  5329. height:20px;
  5330. display:flex;
  5331. }
  5332. #u51782 .text {
  5333. position:absolute;
  5334. align-self:center;
  5335. padding:2px 2px 2px 2px;
  5336. box-sizing:border-box;
  5337. width:100%;
  5338. }
  5339. #u51782_text {
  5340. border-width:0px;
  5341. word-wrap:break-word;
  5342. text-transform:none;
  5343. visibility:hidden;
  5344. }
  5345. #u51783 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:0px;
  5351. height:0px;
  5352. }
  5353. #u51784_div {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:0px;
  5357. top:0px;
  5358. width:37px;
  5359. height:17px;
  5360. background:inherit;
  5361. background-color:rgba(255, 255, 255, 0);
  5362. border:none;
  5363. border-left:0px;
  5364. border-top:0px;
  5365. border-right:0px;
  5366. border-radius:0px;
  5367. border-bottom-right-radius:0px;
  5368. border-bottom-left-radius:0px;
  5369. -moz-box-shadow:none;
  5370. -webkit-box-shadow:none;
  5371. box-shadow:none;
  5372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:12px;
  5376. color:#7F7F7F;
  5377. }
  5378. #u51784 {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:675px;
  5382. top:124px;
  5383. width:37px;
  5384. height:17px;
  5385. display:flex;
  5386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5387. font-weight:400;
  5388. font-style:normal;
  5389. font-size:12px;
  5390. color:#7F7F7F;
  5391. }
  5392. #u51784 .text {
  5393. position:absolute;
  5394. align-self:flex-start;
  5395. padding:0px 0px 0px 0px;
  5396. box-sizing:border-box;
  5397. width:100%;
  5398. }
  5399. #u51784_text {
  5400. border-width:0px;
  5401. white-space:nowrap;
  5402. text-transform:none;
  5403. }
  5404. #u51785 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:0px;
  5410. height:0px;
  5411. }
  5412. #u51786_img {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:12px;
  5418. height:12px;
  5419. }
  5420. #u51786 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:660px;
  5424. top:126px;
  5425. width:12px;
  5426. height:12px;
  5427. display:flex;
  5428. }
  5429. #u51786 .text {
  5430. position:absolute;
  5431. align-self:center;
  5432. padding:2px 2px 2px 2px;
  5433. box-sizing:border-box;
  5434. width:100%;
  5435. }
  5436. #u51786_text {
  5437. border-width:0px;
  5438. word-wrap:break-word;
  5439. text-transform:none;
  5440. visibility:hidden;
  5441. }
  5442. #u51787_img {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:0px;
  5446. top:0px;
  5447. width:4px;
  5448. height:5px;
  5449. }
  5450. #u51787 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:664px;
  5454. top:130px;
  5455. width:4px;
  5456. height:5px;
  5457. display:flex;
  5458. }
  5459. #u51787 .text {
  5460. position:absolute;
  5461. align-self:center;
  5462. padding:2px 2px 2px 2px;
  5463. box-sizing:border-box;
  5464. width:100%;
  5465. }
  5466. #u51787_text {
  5467. border-width:0px;
  5468. word-wrap:break-word;
  5469. text-transform:none;
  5470. visibility:hidden;
  5471. }
  5472. #u51788_img {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:20px;
  5478. height:20px;
  5479. }
  5480. #u51788 {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:507px;
  5484. top:77px;
  5485. width:20px;
  5486. height:20px;
  5487. display:flex;
  5488. }
  5489. #u51788 .text {
  5490. position:absolute;
  5491. align-self:center;
  5492. padding:2px 2px 2px 2px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u51788_text {
  5497. border-width:0px;
  5498. word-wrap:break-word;
  5499. text-transform:none;
  5500. visibility:hidden;
  5501. }
  5502. #u51789 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:0px;
  5508. height:0px;
  5509. }
  5510. #u51790_img {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:18px;
  5516. height:20px;
  5517. }
  5518. #u51790 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:551px;
  5522. top:77px;
  5523. width:18px;
  5524. height:20px;
  5525. display:flex;
  5526. }
  5527. #u51790 .text {
  5528. position:absolute;
  5529. align-self:center;
  5530. padding:2px 2px 2px 2px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u51790_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. visibility:hidden;
  5539. }
  5540. #u51791_div {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:8px;
  5546. height:11px;
  5547. background:inherit;
  5548. background-color:rgba(217, 0, 27, 1);
  5549. border:none;
  5550. border-radius:4px;
  5551. -moz-box-shadow:none;
  5552. -webkit-box-shadow:none;
  5553. box-shadow:none;
  5554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5555. font-weight:400;
  5556. font-style:normal;
  5557. font-size:8px;
  5558. color:#FFFFFF;
  5559. text-align:center;
  5560. }
  5561. #u51791 {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:563px;
  5565. top:74px;
  5566. width:8px;
  5567. height:11px;
  5568. display:flex;
  5569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:8px;
  5573. color:#FFFFFF;
  5574. text-align:center;
  5575. }
  5576. #u51791 .text {
  5577. position:absolute;
  5578. align-self:flex-start;
  5579. padding:0px 0px 0px 0px;
  5580. box-sizing:border-box;
  5581. width:100%;
  5582. }
  5583. #u51791_text {
  5584. border-width:0px;
  5585. word-wrap:break-word;
  5586. text-transform:none;
  5587. }
  5588. #u51792 {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:0px;
  5592. top:0px;
  5593. width:0px;
  5594. height:0px;
  5595. }
  5596. #u51793_div {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:0px;
  5600. top:0px;
  5601. width:88px;
  5602. height:32px;
  5603. background:inherit;
  5604. background-color:rgba(255, 255, 255, 1);
  5605. box-sizing:border-box;
  5606. border-width:1px;
  5607. border-style:solid;
  5608. border-color:rgba(242, 242, 242, 1);
  5609. border-radius:33px;
  5610. -moz-box-shadow:none;
  5611. -webkit-box-shadow:none;
  5612. box-shadow:none;
  5613. }
  5614. #u51793 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:769px;
  5618. top:73px;
  5619. width:88px;
  5620. height:32px;
  5621. display:flex;
  5622. }
  5623. #u51793 .text {
  5624. position:absolute;
  5625. align-self:center;
  5626. padding:2px 2px 2px 2px;
  5627. box-sizing:border-box;
  5628. width:100%;
  5629. }
  5630. #u51793_text {
  5631. border-width:0px;
  5632. word-wrap:break-word;
  5633. text-transform:none;
  5634. visibility:hidden;
  5635. }
  5636. #u51794 {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:0px;
  5640. top:0px;
  5641. width:0px;
  5642. height:0px;
  5643. }
  5644. #u51795_img {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:18px;
  5650. height:18px;
  5651. }
  5652. #u51795 {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:832px;
  5656. top:80px;
  5657. width:18px;
  5658. height:18px;
  5659. display:flex;
  5660. }
  5661. #u51795 .text {
  5662. position:absolute;
  5663. align-self:center;
  5664. padding:2px 2px 2px 2px;
  5665. box-sizing:border-box;
  5666. width:100%;
  5667. }
  5668. #u51795_text {
  5669. border-width:0px;
  5670. word-wrap:break-word;
  5671. text-transform:none;
  5672. visibility:hidden;
  5673. }
  5674. #u51796_img {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:0px;
  5678. top:0px;
  5679. width:6px;
  5680. height:6px;
  5681. }
  5682. #u51796 {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:838px;
  5686. top:86px;
  5687. width:6px;
  5688. height:6px;
  5689. display:flex;
  5690. }
  5691. #u51796 .text {
  5692. position:absolute;
  5693. align-self:center;
  5694. padding:2px 2px 2px 2px;
  5695. box-sizing:border-box;
  5696. width:100%;
  5697. }
  5698. #u51796_text {
  5699. border-width:0px;
  5700. word-wrap:break-word;
  5701. text-transform:none;
  5702. visibility:hidden;
  5703. }
  5704. #u51797 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:0px;
  5710. height:0px;
  5711. }
  5712. #u51798_img {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:5px;
  5718. height:5px;
  5719. }
  5720. #u51798 {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:783px;
  5724. top:87px;
  5725. width:5px;
  5726. height:5px;
  5727. display:flex;
  5728. }
  5729. #u51798 .text {
  5730. position:absolute;
  5731. align-self:center;
  5732. padding:2px 2px 2px 2px;
  5733. box-sizing:border-box;
  5734. width:100%;
  5735. }
  5736. #u51798_text {
  5737. border-width:0px;
  5738. word-wrap:break-word;
  5739. text-transform:none;
  5740. visibility:hidden;
  5741. }
  5742. #u51799_img {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:5px;
  5748. height:5px;
  5749. }
  5750. #u51799 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:799px;
  5754. top:87px;
  5755. width:5px;
  5756. height:5px;
  5757. display:flex;
  5758. }
  5759. #u51799 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 2px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u51799_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. visibility:hidden;
  5771. }
  5772. #u51800_img {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:7px;
  5778. height:7px;
  5779. }
  5780. #u51800 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:790px;
  5784. top:86px;
  5785. width:7px;
  5786. height:7px;
  5787. display:flex;
  5788. }
  5789. #u51800 .text {
  5790. position:absolute;
  5791. align-self:center;
  5792. padding:2px 2px 2px 2px;
  5793. box-sizing:border-box;
  5794. width:100%;
  5795. }
  5796. #u51800_text {
  5797. border-width:0px;
  5798. word-wrap:break-word;
  5799. text-transform:none;
  5800. visibility:hidden;
  5801. }
  5802. #u51801_img {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:19px;
  5808. height:2px;
  5809. }
  5810. #u51801 {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:807px;
  5814. top:89px;
  5815. width:18px;
  5816. height:1px;
  5817. display:flex;
  5818. -webkit-transform:rotate(90deg);
  5819. -moz-transform:rotate(90deg);
  5820. -ms-transform:rotate(90deg);
  5821. transform:rotate(90deg);
  5822. }
  5823. #u51801 .text {
  5824. position:absolute;
  5825. align-self:center;
  5826. padding:2px 2px 2px 2px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u51801_text {
  5831. border-width:0px;
  5832. word-wrap:break-word;
  5833. text-transform:none;
  5834. visibility:hidden;
  5835. }
  5836. #u51802_div {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:84px;
  5842. height:20px;
  5843. background:inherit;
  5844. background-color:rgba(127, 127, 127, 0);
  5845. border:none;
  5846. border-radius:3px;
  5847. -moz-box-shadow:none;
  5848. -webkit-box-shadow:none;
  5849. box-shadow:none;
  5850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5851. font-weight:400;
  5852. font-style:normal;
  5853. font-size:14px;
  5854. color:#AAAAAA;
  5855. }
  5856. #u51802 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:599px;
  5860. top:149px;
  5861. width:84px;
  5862. height:20px;
  5863. display:flex;
  5864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:14px;
  5868. color:#AAAAAA;
  5869. }
  5870. #u51802 .text {
  5871. position:absolute;
  5872. align-self:center;
  5873. padding:0px 0px 0px 0px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u51802_text {
  5878. border-width:0px;
  5879. white-space:nowrap;
  5880. text-transform:none;
  5881. }
  5882. #u51803_div {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:0px;
  5886. top:0px;
  5887. width:355px;
  5888. height:100px;
  5889. background:inherit;
  5890. background-color:rgba(255, 255, 255, 1);
  5891. border:none;
  5892. border-radius:4px;
  5893. -moz-box-shadow:none;
  5894. -webkit-box-shadow:none;
  5895. box-shadow:none;
  5896. }
  5897. #u51803 {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:502px;
  5901. top:289px;
  5902. width:355px;
  5903. height:100px;
  5904. display:flex;
  5905. }
  5906. #u51803 .text {
  5907. position:absolute;
  5908. align-self:center;
  5909. padding:2px 2px 2px 2px;
  5910. box-sizing:border-box;
  5911. width:100%;
  5912. }
  5913. #u51803_text {
  5914. border-width:0px;
  5915. word-wrap:break-word;
  5916. text-transform:none;
  5917. visibility:hidden;
  5918. }
  5919. #u51804_div {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:0px;
  5923. top:0px;
  5924. width:57px;
  5925. height:20px;
  5926. background:inherit;
  5927. background-color:rgba(255, 255, 255, 0);
  5928. border:none;
  5929. border-left:0px;
  5930. border-top:0px;
  5931. border-right:0px;
  5932. border-radius:0px;
  5933. border-bottom-right-radius:0px;
  5934. border-bottom-left-radius:0px;
  5935. -moz-box-shadow:none;
  5936. -webkit-box-shadow:none;
  5937. box-shadow:none;
  5938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5939. font-weight:400;
  5940. font-style:normal;
  5941. font-size:14px;
  5942. }
  5943. #u51804 {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:514px;
  5947. top:296px;
  5948. width:57px;
  5949. height:20px;
  5950. display:flex;
  5951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5952. font-weight:400;
  5953. font-style:normal;
  5954. font-size:14px;
  5955. }
  5956. #u51804 .text {
  5957. position:absolute;
  5958. align-self:flex-start;
  5959. padding:0px 0px 0px 0px;
  5960. box-sizing:border-box;
  5961. width:100%;
  5962. }
  5963. #u51804_text {
  5964. border-width:0px;
  5965. white-space:nowrap;
  5966. text-transform:none;
  5967. }
  5968. #u51805_div {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:0px;
  5972. top:0px;
  5973. width:71px;
  5974. height:20px;
  5975. background:inherit;
  5976. background-color:rgba(255, 255, 255, 0);
  5977. border:none;
  5978. border-left:0px;
  5979. border-top:0px;
  5980. border-right:0px;
  5981. border-radius:0px;
  5982. border-bottom-right-radius:0px;
  5983. border-bottom-left-radius:0px;
  5984. -moz-box-shadow:none;
  5985. -webkit-box-shadow:none;
  5986. box-shadow:none;
  5987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5988. font-weight:400;
  5989. font-style:normal;
  5990. font-size:14px;
  5991. color:#AAAAAA;
  5992. }
  5993. #u51805 {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:638px;
  5997. top:323px;
  5998. width:71px;
  5999. height:20px;
  6000. display:flex;
  6001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6002. font-weight:400;
  6003. font-style:normal;
  6004. font-size:14px;
  6005. color:#AAAAAA;
  6006. }
  6007. #u51805 .text {
  6008. position:absolute;
  6009. align-self:flex-start;
  6010. padding:0px 0px 0px 0px;
  6011. box-sizing:border-box;
  6012. width:100%;
  6013. }
  6014. #u51805_text {
  6015. border-width:0px;
  6016. white-space:nowrap;
  6017. text-transform:none;
  6018. }
  6019. #u51806_div {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:57px;
  6025. height:20px;
  6026. background:inherit;
  6027. background-color:rgba(255, 255, 255, 0);
  6028. border:none;
  6029. border-left:0px;
  6030. border-top:0px;
  6031. border-right:0px;
  6032. border-radius:0px;
  6033. border-bottom-right-radius:0px;
  6034. border-bottom-left-radius:0px;
  6035. -moz-box-shadow:none;
  6036. -webkit-box-shadow:none;
  6037. box-shadow:none;
  6038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. font-size:14px;
  6042. color:#1890FF;
  6043. }
  6044. #u51806 {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:645px;
  6048. top:351px;
  6049. width:57px;
  6050. height:20px;
  6051. display:flex;
  6052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6053. font-weight:400;
  6054. font-style:normal;
  6055. font-size:14px;
  6056. color:#1890FF;
  6057. }
  6058. #u51806 .text {
  6059. position:absolute;
  6060. align-self:flex-start;
  6061. padding:0px 0px 0px 0px;
  6062. box-sizing:border-box;
  6063. width:100%;
  6064. }
  6065. #u51806_text {
  6066. border-width:0px;
  6067. white-space:nowrap;
  6068. text-transform:none;
  6069. }
  6070. #u51808_img {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:0px;
  6074. top:0px;
  6075. width:433px;
  6076. height:865px;
  6077. }
  6078. #u51808 {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:938px;
  6082. top:1px;
  6083. width:433px;
  6084. height:865px;
  6085. display:flex;
  6086. }
  6087. #u51808 .text {
  6088. position:absolute;
  6089. align-self:center;
  6090. padding:2px 2px 2px 2px;
  6091. box-sizing:border-box;
  6092. width:100%;
  6093. }
  6094. #u51808_text {
  6095. border-width:0px;
  6096. word-wrap:break-word;
  6097. text-transform:none;
  6098. visibility:hidden;
  6099. }
  6100. #u51809_div {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:375px;
  6106. height:40px;
  6107. background:inherit;
  6108. background-color:rgba(255, 255, 255, 1);
  6109. box-sizing:border-box;
  6110. border-width:1px;
  6111. border-style:solid;
  6112. border-color:rgba(215, 215, 215, 1);
  6113. border-left:0px;
  6114. border-top:0px;
  6115. border-right:0px;
  6116. border-radius:0px;
  6117. border-bottom-right-radius:0px;
  6118. border-bottom-left-radius:0px;
  6119. -moz-box-shadow:none;
  6120. -webkit-box-shadow:none;
  6121. box-shadow:none;
  6122. }
  6123. #u51809 {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:967px;
  6127. top:68px;
  6128. width:375px;
  6129. height:40px;
  6130. display:flex;
  6131. }
  6132. #u51809 .text {
  6133. position:absolute;
  6134. align-self:center;
  6135. padding:2px 2px 2px 2px;
  6136. box-sizing:border-box;
  6137. width:100%;
  6138. }
  6139. #u51809_text {
  6140. border-width:0px;
  6141. word-wrap:break-word;
  6142. text-transform:none;
  6143. visibility:hidden;
  6144. }
  6145. #u51810 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:0px;
  6151. height:0px;
  6152. }
  6153. #u51811_div {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:88px;
  6159. height:32px;
  6160. background:inherit;
  6161. background-color:rgba(255, 255, 255, 1);
  6162. box-sizing:border-box;
  6163. border-width:1px;
  6164. border-style:solid;
  6165. border-color:rgba(242, 242, 242, 1);
  6166. border-radius:33px;
  6167. -moz-box-shadow:none;
  6168. -webkit-box-shadow:none;
  6169. box-shadow:none;
  6170. }
  6171. #u51811 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:1247px;
  6175. top:72px;
  6176. width:88px;
  6177. height:32px;
  6178. display:flex;
  6179. }
  6180. #u51811 .text {
  6181. position:absolute;
  6182. align-self:center;
  6183. padding:2px 2px 2px 2px;
  6184. box-sizing:border-box;
  6185. width:100%;
  6186. }
  6187. #u51811_text {
  6188. border-width:0px;
  6189. word-wrap:break-word;
  6190. text-transform:none;
  6191. visibility:hidden;
  6192. }
  6193. #u51812 {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:0px;
  6197. top:0px;
  6198. width:0px;
  6199. height:0px;
  6200. }
  6201. #u51813_img {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:18px;
  6207. height:18px;
  6208. }
  6209. #u51813 {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:1310px;
  6213. top:79px;
  6214. width:18px;
  6215. height:18px;
  6216. display:flex;
  6217. }
  6218. #u51813 .text {
  6219. position:absolute;
  6220. align-self:center;
  6221. padding:2px 2px 2px 2px;
  6222. box-sizing:border-box;
  6223. width:100%;
  6224. }
  6225. #u51813_text {
  6226. border-width:0px;
  6227. word-wrap:break-word;
  6228. text-transform:none;
  6229. visibility:hidden;
  6230. }
  6231. #u51814_img {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:0px;
  6235. top:0px;
  6236. width:6px;
  6237. height:6px;
  6238. }
  6239. #u51814 {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:1316px;
  6243. top:85px;
  6244. width:6px;
  6245. height:6px;
  6246. display:flex;
  6247. }
  6248. #u51814 .text {
  6249. position:absolute;
  6250. align-self:center;
  6251. padding:2px 2px 2px 2px;
  6252. box-sizing:border-box;
  6253. width:100%;
  6254. }
  6255. #u51814_text {
  6256. border-width:0px;
  6257. word-wrap:break-word;
  6258. text-transform:none;
  6259. visibility:hidden;
  6260. }
  6261. #u51815 {
  6262. border-width:0px;
  6263. position:absolute;
  6264. left:0px;
  6265. top:0px;
  6266. width:0px;
  6267. height:0px;
  6268. }
  6269. #u51816_img {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:0px;
  6273. top:0px;
  6274. width:5px;
  6275. height:5px;
  6276. }
  6277. #u51816 {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:1261px;
  6281. top:86px;
  6282. width:5px;
  6283. height:5px;
  6284. display:flex;
  6285. }
  6286. #u51816 .text {
  6287. position:absolute;
  6288. align-self:center;
  6289. padding:2px 2px 2px 2px;
  6290. box-sizing:border-box;
  6291. width:100%;
  6292. }
  6293. #u51816_text {
  6294. border-width:0px;
  6295. word-wrap:break-word;
  6296. text-transform:none;
  6297. visibility:hidden;
  6298. }
  6299. #u51817_img {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:5px;
  6305. height:5px;
  6306. }
  6307. #u51817 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:1277px;
  6311. top:86px;
  6312. width:5px;
  6313. height:5px;
  6314. display:flex;
  6315. }
  6316. #u51817 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:2px 2px 2px 2px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u51817_text {
  6324. border-width:0px;
  6325. word-wrap:break-word;
  6326. text-transform:none;
  6327. visibility:hidden;
  6328. }
  6329. #u51818_img {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:7px;
  6335. height:7px;
  6336. }
  6337. #u51818 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:1268px;
  6341. top:85px;
  6342. width:7px;
  6343. height:7px;
  6344. display:flex;
  6345. }
  6346. #u51818 .text {
  6347. position:absolute;
  6348. align-self:center;
  6349. padding:2px 2px 2px 2px;
  6350. box-sizing:border-box;
  6351. width:100%;
  6352. }
  6353. #u51818_text {
  6354. border-width:0px;
  6355. word-wrap:break-word;
  6356. text-transform:none;
  6357. visibility:hidden;
  6358. }
  6359. #u51819_img {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:0px;
  6363. top:0px;
  6364. width:19px;
  6365. height:2px;
  6366. }
  6367. #u51819 {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:1285px;
  6371. top:88px;
  6372. width:18px;
  6373. height:1px;
  6374. display:flex;
  6375. -webkit-transform:rotate(90deg);
  6376. -moz-transform:rotate(90deg);
  6377. -ms-transform:rotate(90deg);
  6378. transform:rotate(90deg);
  6379. }
  6380. #u51819 .text {
  6381. position:absolute;
  6382. align-self:center;
  6383. padding:2px 2px 2px 2px;
  6384. box-sizing:border-box;
  6385. width:100%;
  6386. }
  6387. #u51819_text {
  6388. border-width:0px;
  6389. word-wrap:break-word;
  6390. text-transform:none;
  6391. visibility:hidden;
  6392. }
  6393. #u51820_img {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:375px;
  6399. height:44px;
  6400. }
  6401. #u51820 {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:967px;
  6405. top:25px;
  6406. width:375px;
  6407. height:44px;
  6408. display:flex;
  6409. }
  6410. #u51820 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:2px 2px 2px 2px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u51820_text {
  6418. border-width:0px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. visibility:hidden;
  6422. }
  6423. #u51821_div {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:375px;
  6429. height:50px;
  6430. background:inherit;
  6431. background-color:rgba(255, 255, 255, 1);
  6432. box-sizing:border-box;
  6433. border-width:1px;
  6434. border-style:solid;
  6435. border-color:rgba(242, 242, 242, 1);
  6436. border-radius:26px;
  6437. border-top-left-radius:0px;
  6438. border-top-right-radius:0px;
  6439. -moz-box-shadow:none;
  6440. -webkit-box-shadow:none;
  6441. box-shadow:none;
  6442. }
  6443. #u51821 {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:967px;
  6447. top:789px;
  6448. width:375px;
  6449. height:50px;
  6450. display:flex;
  6451. }
  6452. #u51821 .text {
  6453. position:absolute;
  6454. align-self:center;
  6455. padding:2px 2px 2px 2px;
  6456. box-sizing:border-box;
  6457. width:100%;
  6458. }
  6459. #u51821_text {
  6460. border-width:0px;
  6461. word-wrap:break-word;
  6462. text-transform:none;
  6463. visibility:hidden;
  6464. }
  6465. #u51822 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:0px;
  6469. top:0px;
  6470. width:0px;
  6471. height:0px;
  6472. }
  6473. #u51823_img {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:24px;
  6479. height:24px;
  6480. }
  6481. #u51823 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:1007px;
  6485. top:793px;
  6486. width:24px;
  6487. height:24px;
  6488. display:flex;
  6489. font-size:8px;
  6490. }
  6491. #u51823 .text {
  6492. position:absolute;
  6493. align-self:center;
  6494. padding:2px 2px 2px 2px;
  6495. box-sizing:border-box;
  6496. width:100%;
  6497. }
  6498. #u51823_text {
  6499. border-width:0px;
  6500. word-wrap:break-word;
  6501. text-transform:none;
  6502. }
  6503. #u51824_div {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:0px;
  6507. top:0px;
  6508. width:25px;
  6509. height:17px;
  6510. background:inherit;
  6511. background-color:rgba(255, 255, 255, 0);
  6512. border:none;
  6513. border-radius:0px;
  6514. -moz-box-shadow:none;
  6515. -webkit-box-shadow:none;
  6516. box-shadow:none;
  6517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6518. font-weight:400;
  6519. font-style:normal;
  6520. font-size:12px;
  6521. }
  6522. #u51824 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:1007px;
  6526. top:818px;
  6527. width:25px;
  6528. height:17px;
  6529. display:flex;
  6530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. font-size:12px;
  6534. }
  6535. #u51824 .text {
  6536. position:absolute;
  6537. align-self:flex-start;
  6538. padding:0px 0px 0px 0px;
  6539. box-sizing:border-box;
  6540. width:100%;
  6541. }
  6542. #u51824_text {
  6543. border-width:0px;
  6544. white-space:nowrap;
  6545. text-transform:none;
  6546. }
  6547. #u51825 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:0px;
  6551. top:0px;
  6552. width:0px;
  6553. height:0px;
  6554. }
  6555. #u51826_img {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:24px;
  6561. height:24px;
  6562. }
  6563. #u51826 {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:1277px;
  6567. top:795px;
  6568. width:24px;
  6569. height:24px;
  6570. display:flex;
  6571. font-size:8px;
  6572. }
  6573. #u51826 .text {
  6574. position:absolute;
  6575. align-self:center;
  6576. padding:2px 2px 2px 2px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u51826_text {
  6581. border-width:0px;
  6582. word-wrap:break-word;
  6583. text-transform:none;
  6584. }
  6585. #u51827_div {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:25px;
  6591. height:17px;
  6592. background:inherit;
  6593. background-color:rgba(255, 255, 255, 0);
  6594. border:none;
  6595. border-radius:0px;
  6596. -moz-box-shadow:none;
  6597. -webkit-box-shadow:none;
  6598. box-shadow:none;
  6599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:12px;
  6603. }
  6604. #u51827 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:1277px;
  6608. top:820px;
  6609. width:25px;
  6610. height:17px;
  6611. display:flex;
  6612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:12px;
  6616. }
  6617. #u51827 .text {
  6618. position:absolute;
  6619. align-self:flex-start;
  6620. padding:0px 0px 0px 0px;
  6621. box-sizing:border-box;
  6622. width:100%;
  6623. }
  6624. #u51827_text {
  6625. border-width:0px;
  6626. white-space:nowrap;
  6627. text-transform:none;
  6628. }
  6629. #u51828_div {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:0px;
  6633. top:0px;
  6634. width:375px;
  6635. height:681px;
  6636. background:inherit;
  6637. background-color:rgba(242, 242, 242, 0.462745098039216);
  6638. border:none;
  6639. border-radius:0px;
  6640. -moz-box-shadow:none;
  6641. -webkit-box-shadow:none;
  6642. box-shadow:none;
  6643. }
  6644. #u51828 {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:967px;
  6648. top:108px;
  6649. width:375px;
  6650. height:681px;
  6651. display:flex;
  6652. }
  6653. #u51828 .text {
  6654. position:absolute;
  6655. align-self:center;
  6656. padding:2px 2px 2px 2px;
  6657. box-sizing:border-box;
  6658. width:100%;
  6659. }
  6660. #u51828_text {
  6661. border-width:0px;
  6662. word-wrap:break-word;
  6663. text-transform:none;
  6664. visibility:hidden;
  6665. }
  6666. #u51829 {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:0px;
  6672. height:0px;
  6673. }
  6674. #u51830_img {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:0px;
  6678. top:0px;
  6679. width:24px;
  6680. height:24px;
  6681. }
  6682. #u51830 {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:1189px;
  6686. top:793px;
  6687. width:24px;
  6688. height:24px;
  6689. display:flex;
  6690. font-size:8px;
  6691. }
  6692. #u51830 .text {
  6693. position:absolute;
  6694. align-self:center;
  6695. padding:2px 2px 2px 2px;
  6696. box-sizing:border-box;
  6697. width:100%;
  6698. }
  6699. #u51830_text {
  6700. border-width:0px;
  6701. word-wrap:break-word;
  6702. text-transform:none;
  6703. }
  6704. #u51831_div {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:0px;
  6708. top:0px;
  6709. width:37px;
  6710. height:17px;
  6711. background:inherit;
  6712. background-color:rgba(255, 255, 255, 0);
  6713. border:none;
  6714. border-radius:0px;
  6715. -moz-box-shadow:none;
  6716. -webkit-box-shadow:none;
  6717. box-shadow:none;
  6718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6719. font-weight:400;
  6720. font-style:normal;
  6721. font-size:12px;
  6722. }
  6723. #u51831 {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:1183px;
  6727. top:818px;
  6728. width:37px;
  6729. height:17px;
  6730. display:flex;
  6731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. font-size:12px;
  6735. }
  6736. #u51831 .text {
  6737. position:absolute;
  6738. align-self:flex-start;
  6739. padding:0px 0px 0px 0px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u51831_text {
  6744. border-width:0px;
  6745. white-space:nowrap;
  6746. text-transform:none;
  6747. }
  6748. #u51832 {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:0px;
  6754. height:0px;
  6755. }
  6756. #u51833_img {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:24px;
  6762. height:24px;
  6763. }
  6764. #u51833 {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:1095px;
  6768. top:793px;
  6769. width:24px;
  6770. height:24px;
  6771. display:flex;
  6772. font-size:8px;
  6773. }
  6774. #u51833 .text {
  6775. position:absolute;
  6776. align-self:center;
  6777. padding:2px 2px 2px 2px;
  6778. box-sizing:border-box;
  6779. width:100%;
  6780. }
  6781. #u51833_text {
  6782. border-width:0px;
  6783. word-wrap:break-word;
  6784. text-transform:none;
  6785. }
  6786. #u51834_div {
  6787. border-width:0px;
  6788. position:absolute;
  6789. left:0px;
  6790. top:0px;
  6791. width:37px;
  6792. height:17px;
  6793. background:inherit;
  6794. background-color:rgba(255, 255, 255, 0);
  6795. border:none;
  6796. border-radius:0px;
  6797. -moz-box-shadow:none;
  6798. -webkit-box-shadow:none;
  6799. box-shadow:none;
  6800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6801. font-weight:400;
  6802. font-style:normal;
  6803. font-size:12px;
  6804. }
  6805. #u51834 {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:1089px;
  6809. top:818px;
  6810. width:37px;
  6811. height:17px;
  6812. display:flex;
  6813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6814. font-weight:400;
  6815. font-style:normal;
  6816. font-size:12px;
  6817. }
  6818. #u51834 .text {
  6819. position:absolute;
  6820. align-self:flex-start;
  6821. padding:0px 0px 0px 0px;
  6822. box-sizing:border-box;
  6823. width:100%;
  6824. }
  6825. #u51834_text {
  6826. border-width:0px;
  6827. white-space:nowrap;
  6828. text-transform:none;
  6829. }
  6830. #u51835_div {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:0px;
  6834. top:0px;
  6835. width:375px;
  6836. height:730px;
  6837. background:inherit;
  6838. background-color:rgba(242, 242, 242, 1);
  6839. box-sizing:border-box;
  6840. border-width:1px;
  6841. border-style:solid;
  6842. border-color:rgba(242, 242, 242, 1);
  6843. border-radius:26px;
  6844. border-top-left-radius:0px;
  6845. border-top-right-radius:0px;
  6846. -moz-box-shadow:none;
  6847. -webkit-box-shadow:none;
  6848. box-shadow:none;
  6849. }
  6850. #u51835 {
  6851. border-width:0px;
  6852. position:absolute;
  6853. left:967px;
  6854. top:106px;
  6855. width:375px;
  6856. height:730px;
  6857. display:flex;
  6858. }
  6859. #u51835 .text {
  6860. position:absolute;
  6861. align-self:center;
  6862. padding:2px 2px 2px 2px;
  6863. box-sizing:border-box;
  6864. width:100%;
  6865. }
  6866. #u51835_text {
  6867. border-width:0px;
  6868. word-wrap:break-word;
  6869. text-transform:none;
  6870. visibility:hidden;
  6871. }
  6872. #u51836_div {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:0px;
  6876. top:0px;
  6877. width:375px;
  6878. height:140px;
  6879. background:inherit;
  6880. background-color:rgba(242, 242, 242, 1);
  6881. border:none;
  6882. border-left:0px;
  6883. border-top:0px;
  6884. border-right:0px;
  6885. border-radius:0px;
  6886. border-bottom-right-radius:0px;
  6887. border-bottom-left-radius:0px;
  6888. -moz-box-shadow:none;
  6889. -webkit-box-shadow:none;
  6890. box-shadow:none;
  6891. }
  6892. #u51836 {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:967px;
  6896. top:67px;
  6897. width:375px;
  6898. height:140px;
  6899. display:flex;
  6900. }
  6901. #u51836 .text {
  6902. position:absolute;
  6903. align-self:center;
  6904. padding:2px 2px 2px 2px;
  6905. box-sizing:border-box;
  6906. width:100%;
  6907. }
  6908. #u51836_text {
  6909. border-width:0px;
  6910. word-wrap:break-word;
  6911. text-transform:none;
  6912. visibility:hidden;
  6913. }
  6914. #u51837_div {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:0px;
  6918. top:0px;
  6919. width:73px;
  6920. height:25px;
  6921. background:inherit;
  6922. background-color:rgba(127, 127, 127, 0);
  6923. border:none;
  6924. border-radius:3px;
  6925. -moz-box-shadow:none;
  6926. -webkit-box-shadow:none;
  6927. box-shadow:none;
  6928. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6929. font-weight:650;
  6930. font-style:normal;
  6931. font-size:18px;
  6932. color:#555555;
  6933. }
  6934. #u51837 {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:1076px;
  6938. top:137px;
  6939. width:73px;
  6940. height:25px;
  6941. display:flex;
  6942. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6943. font-weight:650;
  6944. font-style:normal;
  6945. font-size:18px;
  6946. color:#555555;
  6947. }
  6948. #u51837 .text {
  6949. position:absolute;
  6950. align-self:center;
  6951. padding:0px 0px 0px 0px;
  6952. box-sizing:border-box;
  6953. width:100%;
  6954. }
  6955. #u51837_text {
  6956. border-width:0px;
  6957. white-space:nowrap;
  6958. text-transform:none;
  6959. }
  6960. #u51838_img {
  6961. border-width:0px;
  6962. position:absolute;
  6963. left:0px;
  6964. top:0px;
  6965. width:20px;
  6966. height:20px;
  6967. }
  6968. #u51838 {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:982px;
  6972. top:77px;
  6973. width:20px;
  6974. height:20px;
  6975. display:flex;
  6976. }
  6977. #u51838 .text {
  6978. position:absolute;
  6979. align-self:center;
  6980. padding:2px 2px 2px 2px;
  6981. box-sizing:border-box;
  6982. width:100%;
  6983. }
  6984. #u51838_text {
  6985. border-width:0px;
  6986. word-wrap:break-word;
  6987. text-transform:none;
  6988. visibility:hidden;
  6989. }
  6990. #u51839 {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:0px;
  6994. top:0px;
  6995. width:0px;
  6996. height:0px;
  6997. }
  6998. #u51840_img {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:0px;
  7003. width:18px;
  7004. height:20px;
  7005. }
  7006. #u51840 {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:1026px;
  7010. top:77px;
  7011. width:18px;
  7012. height:20px;
  7013. display:flex;
  7014. }
  7015. #u51840 .text {
  7016. position:absolute;
  7017. align-self:center;
  7018. padding:2px 2px 2px 2px;
  7019. box-sizing:border-box;
  7020. width:100%;
  7021. }
  7022. #u51840_text {
  7023. border-width:0px;
  7024. word-wrap:break-word;
  7025. text-transform:none;
  7026. visibility:hidden;
  7027. }
  7028. #u51841_div {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:0px;
  7032. top:0px;
  7033. width:8px;
  7034. height:11px;
  7035. background:inherit;
  7036. background-color:rgba(217, 0, 27, 1);
  7037. border:none;
  7038. border-radius:4px;
  7039. -moz-box-shadow:none;
  7040. -webkit-box-shadow:none;
  7041. box-shadow:none;
  7042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7043. font-weight:400;
  7044. font-style:normal;
  7045. font-size:8px;
  7046. color:#FFFFFF;
  7047. text-align:center;
  7048. }
  7049. #u51841 {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:1038px;
  7053. top:74px;
  7054. width:8px;
  7055. height:11px;
  7056. display:flex;
  7057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7058. font-weight:400;
  7059. font-style:normal;
  7060. font-size:8px;
  7061. color:#FFFFFF;
  7062. text-align:center;
  7063. }
  7064. #u51841 .text {
  7065. position:absolute;
  7066. align-self:flex-start;
  7067. padding:0px 0px 0px 0px;
  7068. box-sizing:border-box;
  7069. width:100%;
  7070. }
  7071. #u51841_text {
  7072. border-width:0px;
  7073. word-wrap:break-word;
  7074. text-transform:none;
  7075. }
  7076. #u51842 {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:0px;
  7080. top:0px;
  7081. width:0px;
  7082. height:0px;
  7083. }
  7084. #u51843_div {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:0px;
  7088. top:0px;
  7089. width:88px;
  7090. height:32px;
  7091. background:inherit;
  7092. background-color:rgba(255, 255, 255, 1);
  7093. box-sizing:border-box;
  7094. border-width:1px;
  7095. border-style:solid;
  7096. border-color:rgba(242, 242, 242, 1);
  7097. border-radius:33px;
  7098. -moz-box-shadow:none;
  7099. -webkit-box-shadow:none;
  7100. box-shadow:none;
  7101. }
  7102. #u51843 {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:1244px;
  7106. top:73px;
  7107. width:88px;
  7108. height:32px;
  7109. display:flex;
  7110. }
  7111. #u51843 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:2px 2px 2px 2px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u51843_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. visibility:hidden;
  7123. }
  7124. #u51844 {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:0px;
  7130. height:0px;
  7131. }
  7132. #u51845_img {
  7133. border-width:0px;
  7134. position:absolute;
  7135. left:0px;
  7136. top:0px;
  7137. width:18px;
  7138. height:18px;
  7139. }
  7140. #u51845 {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:1307px;
  7144. top:80px;
  7145. width:18px;
  7146. height:18px;
  7147. display:flex;
  7148. }
  7149. #u51845 .text {
  7150. position:absolute;
  7151. align-self:center;
  7152. padding:2px 2px 2px 2px;
  7153. box-sizing:border-box;
  7154. width:100%;
  7155. }
  7156. #u51845_text {
  7157. border-width:0px;
  7158. word-wrap:break-word;
  7159. text-transform:none;
  7160. visibility:hidden;
  7161. }
  7162. #u51846_img {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:0px;
  7166. top:0px;
  7167. width:6px;
  7168. height:6px;
  7169. }
  7170. #u51846 {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:1313px;
  7174. top:86px;
  7175. width:6px;
  7176. height:6px;
  7177. display:flex;
  7178. }
  7179. #u51846 .text {
  7180. position:absolute;
  7181. align-self:center;
  7182. padding:2px 2px 2px 2px;
  7183. box-sizing:border-box;
  7184. width:100%;
  7185. }
  7186. #u51846_text {
  7187. border-width:0px;
  7188. word-wrap:break-word;
  7189. text-transform:none;
  7190. visibility:hidden;
  7191. }
  7192. #u51847 {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:0px;
  7196. top:0px;
  7197. width:0px;
  7198. height:0px;
  7199. }
  7200. #u51848_img {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:5px;
  7206. height:5px;
  7207. }
  7208. #u51848 {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:1258px;
  7212. top:87px;
  7213. width:5px;
  7214. height:5px;
  7215. display:flex;
  7216. }
  7217. #u51848 .text {
  7218. position:absolute;
  7219. align-self:center;
  7220. padding:2px 2px 2px 2px;
  7221. box-sizing:border-box;
  7222. width:100%;
  7223. }
  7224. #u51848_text {
  7225. border-width:0px;
  7226. word-wrap:break-word;
  7227. text-transform:none;
  7228. visibility:hidden;
  7229. }
  7230. #u51849_img {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:0px;
  7234. top:0px;
  7235. width:5px;
  7236. height:5px;
  7237. }
  7238. #u51849 {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:1274px;
  7242. top:87px;
  7243. width:5px;
  7244. height:5px;
  7245. display:flex;
  7246. }
  7247. #u51849 .text {
  7248. position:absolute;
  7249. align-self:center;
  7250. padding:2px 2px 2px 2px;
  7251. box-sizing:border-box;
  7252. width:100%;
  7253. }
  7254. #u51849_text {
  7255. border-width:0px;
  7256. word-wrap:break-word;
  7257. text-transform:none;
  7258. visibility:hidden;
  7259. }
  7260. #u51850_img {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:7px;
  7266. height:7px;
  7267. }
  7268. #u51850 {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:1265px;
  7272. top:86px;
  7273. width:7px;
  7274. height:7px;
  7275. display:flex;
  7276. }
  7277. #u51850 .text {
  7278. position:absolute;
  7279. align-self:center;
  7280. padding:2px 2px 2px 2px;
  7281. box-sizing:border-box;
  7282. width:100%;
  7283. }
  7284. #u51850_text {
  7285. border-width:0px;
  7286. word-wrap:break-word;
  7287. text-transform:none;
  7288. visibility:hidden;
  7289. }
  7290. #u51851_img {
  7291. border-width:0px;
  7292. position:absolute;
  7293. left:0px;
  7294. top:0px;
  7295. width:19px;
  7296. height:2px;
  7297. }
  7298. #u51851 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:1282px;
  7302. top:89px;
  7303. width:18px;
  7304. height:1px;
  7305. display:flex;
  7306. -webkit-transform:rotate(90deg);
  7307. -moz-transform:rotate(90deg);
  7308. -ms-transform:rotate(90deg);
  7309. transform:rotate(90deg);
  7310. }
  7311. #u51851 .text {
  7312. position:absolute;
  7313. align-self:center;
  7314. padding:2px 2px 2px 2px;
  7315. box-sizing:border-box;
  7316. width:100%;
  7317. }
  7318. #u51851_text {
  7319. border-width:0px;
  7320. word-wrap:break-word;
  7321. text-transform:none;
  7322. visibility:hidden;
  7323. }
  7324. #u51852 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:0px;
  7328. top:0px;
  7329. width:0px;
  7330. height:0px;
  7331. }
  7332. #u51853_div {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:0px;
  7336. top:0px;
  7337. width:355px;
  7338. height:100px;
  7339. background:inherit;
  7340. background-color:rgba(255, 255, 255, 1);
  7341. border:none;
  7342. border-radius:4px;
  7343. -moz-box-shadow:none;
  7344. -webkit-box-shadow:none;
  7345. box-shadow:none;
  7346. }
  7347. #u51853 {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:977px;
  7351. top:289px;
  7352. width:355px;
  7353. height:100px;
  7354. display:flex;
  7355. }
  7356. #u51853 .text {
  7357. position:absolute;
  7358. align-self:center;
  7359. padding:2px 2px 2px 2px;
  7360. box-sizing:border-box;
  7361. width:100%;
  7362. }
  7363. #u51853_text {
  7364. border-width:0px;
  7365. word-wrap:break-word;
  7366. text-transform:none;
  7367. visibility:hidden;
  7368. }
  7369. #u51854_div {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:0px;
  7373. top:0px;
  7374. width:57px;
  7375. height:20px;
  7376. background:inherit;
  7377. background-color:rgba(255, 255, 255, 0);
  7378. border:none;
  7379. border-left:0px;
  7380. border-top:0px;
  7381. border-right:0px;
  7382. border-radius:0px;
  7383. border-bottom-right-radius:0px;
  7384. border-bottom-left-radius:0px;
  7385. -moz-box-shadow:none;
  7386. -webkit-box-shadow:none;
  7387. box-shadow:none;
  7388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7389. font-weight:400;
  7390. font-style:normal;
  7391. font-size:14px;
  7392. }
  7393. #u51854 {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:989px;
  7397. top:296px;
  7398. width:57px;
  7399. height:20px;
  7400. display:flex;
  7401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7402. font-weight:400;
  7403. font-style:normal;
  7404. font-size:14px;
  7405. }
  7406. #u51854 .text {
  7407. position:absolute;
  7408. align-self:flex-start;
  7409. padding:0px 0px 0px 0px;
  7410. box-sizing:border-box;
  7411. width:100%;
  7412. }
  7413. #u51854_text {
  7414. border-width:0px;
  7415. white-space:nowrap;
  7416. text-transform:none;
  7417. }
  7418. #u51855_div {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:0px;
  7422. top:0px;
  7423. width:71px;
  7424. height:20px;
  7425. background:inherit;
  7426. background-color:rgba(255, 255, 255, 0);
  7427. border:none;
  7428. border-left:0px;
  7429. border-top:0px;
  7430. border-right:0px;
  7431. border-radius:0px;
  7432. border-bottom-right-radius:0px;
  7433. border-bottom-left-radius:0px;
  7434. -moz-box-shadow:none;
  7435. -webkit-box-shadow:none;
  7436. box-shadow:none;
  7437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7438. font-weight:400;
  7439. font-style:normal;
  7440. font-size:14px;
  7441. color:#AAAAAA;
  7442. }
  7443. #u51855 {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:1113px;
  7447. top:323px;
  7448. width:71px;
  7449. height:20px;
  7450. display:flex;
  7451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7452. font-weight:400;
  7453. font-style:normal;
  7454. font-size:14px;
  7455. color:#AAAAAA;
  7456. }
  7457. #u51855 .text {
  7458. position:absolute;
  7459. align-self:flex-start;
  7460. padding:0px 0px 0px 0px;
  7461. box-sizing:border-box;
  7462. width:100%;
  7463. }
  7464. #u51855_text {
  7465. border-width:0px;
  7466. white-space:nowrap;
  7467. text-transform:none;
  7468. }
  7469. #u51856_div {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:0px;
  7473. top:0px;
  7474. width:57px;
  7475. height:20px;
  7476. background:inherit;
  7477. background-color:rgba(255, 255, 255, 0);
  7478. border:none;
  7479. border-left:0px;
  7480. border-top:0px;
  7481. border-right:0px;
  7482. border-radius:0px;
  7483. border-bottom-right-radius:0px;
  7484. border-bottom-left-radius:0px;
  7485. -moz-box-shadow:none;
  7486. -webkit-box-shadow:none;
  7487. box-shadow:none;
  7488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7489. font-weight:400;
  7490. font-style:normal;
  7491. font-size:14px;
  7492. color:#1890FF;
  7493. }
  7494. #u51856 {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:1120px;
  7498. top:351px;
  7499. width:57px;
  7500. height:20px;
  7501. display:flex;
  7502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7503. font-weight:400;
  7504. font-style:normal;
  7505. font-size:14px;
  7506. color:#1890FF;
  7507. }
  7508. #u51856 .text {
  7509. position:absolute;
  7510. align-self:flex-start;
  7511. padding:0px 0px 0px 0px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u51856_text {
  7516. border-width:0px;
  7517. white-space:nowrap;
  7518. text-transform:none;
  7519. }
  7520. #u51857 {
  7521. border-width:0px;
  7522. position:absolute;
  7523. left:0px;
  7524. top:0px;
  7525. width:0px;
  7526. height:0px;
  7527. }
  7528. #u51858_img {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:0px;
  7533. width:65px;
  7534. height:65px;
  7535. }
  7536. #u51858 {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:993px;
  7540. top:114px;
  7541. width:65px;
  7542. height:65px;
  7543. display:flex;
  7544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7545. font-weight:400;
  7546. font-style:normal;
  7547. color:#FFFFFF;
  7548. }
  7549. #u51858 .text {
  7550. position:absolute;
  7551. align-self:center;
  7552. padding:2px 2px 2px 2px;
  7553. box-sizing:border-box;
  7554. width:100%;
  7555. }
  7556. #u51858_text {
  7557. border-width:0px;
  7558. word-wrap:break-word;
  7559. text-transform:none;
  7560. visibility:hidden;
  7561. }
  7562. #u51859_img {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:0px;
  7566. top:0px;
  7567. width:30px;
  7568. height:35px;
  7569. }
  7570. #u51859 {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:1010px;
  7574. top:129px;
  7575. width:30px;
  7576. height:35px;
  7577. display:flex;
  7578. }
  7579. #u51859 .text {
  7580. position:absolute;
  7581. align-self:center;
  7582. padding:2px 2px 2px 2px;
  7583. box-sizing:border-box;
  7584. width:100%;
  7585. }
  7586. #u51859_text {
  7587. border-width:0px;
  7588. word-wrap:break-word;
  7589. text-transform:none;
  7590. visibility:hidden;
  7591. }
  7592. #u51860 {
  7593. border-width:0px;
  7594. position:absolute;
  7595. left:0px;
  7596. top:0px;
  7597. width:0px;
  7598. height:0px;
  7599. }
  7600. #u51861_div {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:0px;
  7604. top:0px;
  7605. width:375px;
  7606. height:50px;
  7607. background:inherit;
  7608. background-color:rgba(255, 255, 255, 1);
  7609. box-sizing:border-box;
  7610. border-width:1px;
  7611. border-style:solid;
  7612. border-color:rgba(242, 242, 242, 1);
  7613. border-radius:26px;
  7614. border-top-left-radius:0px;
  7615. border-top-right-radius:0px;
  7616. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7617. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7618. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7619. }
  7620. #u51861 {
  7621. border-width:0px;
  7622. position:absolute;
  7623. left:29px;
  7624. top:787px;
  7625. width:375px;
  7626. height:50px;
  7627. display:flex;
  7628. }
  7629. #u51861 .text {
  7630. position:absolute;
  7631. align-self:center;
  7632. padding:2px 2px 2px 2px;
  7633. box-sizing:border-box;
  7634. width:100%;
  7635. }
  7636. #u51861_text {
  7637. border-width:0px;
  7638. word-wrap:break-word;
  7639. text-transform:none;
  7640. visibility:hidden;
  7641. }
  7642. #u51862 {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:0px;
  7646. top:0px;
  7647. width:0px;
  7648. height:0px;
  7649. }
  7650. #u51863_div {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:0px;
  7654. top:0px;
  7655. width:77px;
  7656. height:50px;
  7657. background:inherit;
  7658. background-color:rgba(255, 255, 255, 1);
  7659. border:none;
  7660. border-radius:0px;
  7661. border-top-left-radius:0px;
  7662. border-top-right-radius:0px;
  7663. -moz-box-shadow:none;
  7664. -webkit-box-shadow:none;
  7665. box-shadow:none;
  7666. }
  7667. #u51863 {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:178px;
  7671. top:787px;
  7672. width:77px;
  7673. height:50px;
  7674. display:flex;
  7675. }
  7676. #u51863 .text {
  7677. position:absolute;
  7678. align-self:center;
  7679. padding:2px 2px 2px 2px;
  7680. box-sizing:border-box;
  7681. width:100%;
  7682. }
  7683. #u51863_text {
  7684. border-width:0px;
  7685. word-wrap:break-word;
  7686. text-transform:none;
  7687. visibility:hidden;
  7688. }
  7689. #u51864 {
  7690. border-width:0px;
  7691. position:absolute;
  7692. left:0px;
  7693. top:0px;
  7694. width:0px;
  7695. height:0px;
  7696. }
  7697. #u51865_img {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:0px;
  7701. top:0px;
  7702. width:38px;
  7703. height:38px;
  7704. }
  7705. #u51865 {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:198px;
  7709. top:777px;
  7710. width:38px;
  7711. height:38px;
  7712. display:flex;
  7713. font-size:12px;
  7714. color:#FFFFFF;
  7715. }
  7716. #u51865 .text {
  7717. position:absolute;
  7718. align-self:center;
  7719. padding:2px 2px 2px 2px;
  7720. box-sizing:border-box;
  7721. width:100%;
  7722. }
  7723. #u51865_text {
  7724. border-width:0px;
  7725. word-wrap:break-word;
  7726. text-transform:none;
  7727. }
  7728. #u51866_div {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:0px;
  7732. top:0px;
  7733. width:49px;
  7734. height:17px;
  7735. background:inherit;
  7736. background-color:rgba(255, 255, 255, 0);
  7737. border:none;
  7738. border-radius:0px;
  7739. -moz-box-shadow:none;
  7740. -webkit-box-shadow:none;
  7741. box-shadow:none;
  7742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7743. font-weight:400;
  7744. font-style:normal;
  7745. font-size:12px;
  7746. }
  7747. #u51866 {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:192px;
  7751. top:816px;
  7752. width:49px;
  7753. height:17px;
  7754. display:flex;
  7755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7756. font-weight:400;
  7757. font-style:normal;
  7758. font-size:12px;
  7759. }
  7760. #u51866 .text {
  7761. position:absolute;
  7762. align-self:flex-start;
  7763. padding:0px 0px 0px 0px;
  7764. box-sizing:border-box;
  7765. width:100%;
  7766. }
  7767. #u51866_text {
  7768. border-width:0px;
  7769. white-space:nowrap;
  7770. text-transform:none;
  7771. }
  7772. #u51867 {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:0px;
  7776. top:0px;
  7777. width:0px;
  7778. height:0px;
  7779. }
  7780. #u51868_div {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:75px;
  7786. height:50px;
  7787. background:inherit;
  7788. background-color:rgba(255, 255, 255, 1);
  7789. border:none;
  7790. border-right:0px;
  7791. border-radius:26px;
  7792. border-top-left-radius:0px;
  7793. border-top-right-radius:0px;
  7794. border-bottom-right-radius:0px;
  7795. -moz-box-shadow:none;
  7796. -webkit-box-shadow:none;
  7797. box-shadow:none;
  7798. }
  7799. #u51868 {
  7800. border-width:0px;
  7801. position:absolute;
  7802. left:29px;
  7803. top:787px;
  7804. width:75px;
  7805. height:50px;
  7806. display:flex;
  7807. }
  7808. #u51868 .text {
  7809. position:absolute;
  7810. align-self:center;
  7811. padding:2px 2px 2px 2px;
  7812. box-sizing:border-box;
  7813. width:100%;
  7814. }
  7815. #u51868_text {
  7816. border-width:0px;
  7817. word-wrap:break-word;
  7818. text-transform:none;
  7819. visibility:hidden;
  7820. }
  7821. #u51869 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:0px;
  7825. top:0px;
  7826. width:0px;
  7827. height:0px;
  7828. }
  7829. #u51870_img {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:0px;
  7833. top:0px;
  7834. width:24px;
  7835. height:24px;
  7836. }
  7837. #u51870 {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:54px;
  7841. top:791px;
  7842. width:24px;
  7843. height:24px;
  7844. display:flex;
  7845. font-size:8px;
  7846. }
  7847. #u51870 .text {
  7848. position:absolute;
  7849. align-self:center;
  7850. padding:2px 2px 2px 2px;
  7851. box-sizing:border-box;
  7852. width:100%;
  7853. }
  7854. #u51870_text {
  7855. border-width:0px;
  7856. word-wrap:break-word;
  7857. text-transform:none;
  7858. }
  7859. #u51871_div {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:25px;
  7865. height:17px;
  7866. background:inherit;
  7867. background-color:rgba(255, 255, 255, 0);
  7868. border:none;
  7869. border-radius:0px;
  7870. -moz-box-shadow:none;
  7871. -webkit-box-shadow:none;
  7872. box-shadow:none;
  7873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7874. font-weight:400;
  7875. font-style:normal;
  7876. font-size:12px;
  7877. }
  7878. #u51871 {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:54px;
  7882. top:816px;
  7883. width:25px;
  7884. height:17px;
  7885. display:flex;
  7886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7887. font-weight:400;
  7888. font-style:normal;
  7889. font-size:12px;
  7890. }
  7891. #u51871 .text {
  7892. position:absolute;
  7893. align-self:flex-start;
  7894. padding:0px 0px 0px 0px;
  7895. box-sizing:border-box;
  7896. width:100%;
  7897. }
  7898. #u51871_text {
  7899. border-width:0px;
  7900. white-space:nowrap;
  7901. text-transform:none;
  7902. }
  7903. #u51872 {
  7904. border-width:0px;
  7905. position:absolute;
  7906. left:0px;
  7907. top:0px;
  7908. width:0px;
  7909. height:0px;
  7910. }
  7911. #u51873_div {
  7912. border-width:0px;
  7913. position:absolute;
  7914. left:0px;
  7915. top:0px;
  7916. width:75px;
  7917. height:50px;
  7918. background:inherit;
  7919. background-color:rgba(0, 137, 254, 1);
  7920. border:none;
  7921. border-left:0px;
  7922. border-radius:26px;
  7923. border-top-left-radius:0px;
  7924. border-top-right-radius:0px;
  7925. border-bottom-left-radius:0px;
  7926. -moz-box-shadow:none;
  7927. -webkit-box-shadow:none;
  7928. box-shadow:none;
  7929. }
  7930. #u51873 {
  7931. border-width:0px;
  7932. position:absolute;
  7933. left:329px;
  7934. top:787px;
  7935. width:75px;
  7936. height:50px;
  7937. display:flex;
  7938. }
  7939. #u51873 .text {
  7940. position:absolute;
  7941. align-self:center;
  7942. padding:2px 2px 2px 2px;
  7943. box-sizing:border-box;
  7944. width:100%;
  7945. }
  7946. #u51873_text {
  7947. border-width:0px;
  7948. word-wrap:break-word;
  7949. text-transform:none;
  7950. visibility:hidden;
  7951. }
  7952. #u51874 {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:0px;
  7956. top:0px;
  7957. width:0px;
  7958. height:0px;
  7959. }
  7960. #u51875_img {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:0px;
  7964. top:0px;
  7965. width:24px;
  7966. height:24px;
  7967. }
  7968. #u51875 {
  7969. border-width:0px;
  7970. position:absolute;
  7971. left:354px;
  7972. top:793px;
  7973. width:24px;
  7974. height:24px;
  7975. display:flex;
  7976. font-size:8px;
  7977. }
  7978. #u51875 .text {
  7979. position:absolute;
  7980. align-self:center;
  7981. padding:2px 2px 2px 2px;
  7982. box-sizing:border-box;
  7983. width:100%;
  7984. }
  7985. #u51875_text {
  7986. border-width:0px;
  7987. word-wrap:break-word;
  7988. text-transform:none;
  7989. }
  7990. #u51876_div {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:0px;
  7994. top:0px;
  7995. width:25px;
  7996. height:17px;
  7997. background:inherit;
  7998. background-color:rgba(255, 255, 255, 0);
  7999. border:none;
  8000. border-radius:0px;
  8001. -moz-box-shadow:none;
  8002. -webkit-box-shadow:none;
  8003. box-shadow:none;
  8004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8005. font-weight:400;
  8006. font-style:normal;
  8007. font-size:12px;
  8008. }
  8009. #u51876 {
  8010. border-width:0px;
  8011. position:absolute;
  8012. left:354px;
  8013. top:818px;
  8014. width:25px;
  8015. height:17px;
  8016. display:flex;
  8017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8018. font-weight:400;
  8019. font-style:normal;
  8020. font-size:12px;
  8021. }
  8022. #u51876 .text {
  8023. position:absolute;
  8024. align-self:flex-start;
  8025. padding:0px 0px 0px 0px;
  8026. box-sizing:border-box;
  8027. width:100%;
  8028. }
  8029. #u51876_text {
  8030. border-width:0px;
  8031. white-space:nowrap;
  8032. text-transform:none;
  8033. }
  8034. #u51877 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:0px;
  8040. height:0px;
  8041. }
  8042. #u51878_div {
  8043. border-width:0px;
  8044. position:absolute;
  8045. left:0px;
  8046. top:0px;
  8047. width:75px;
  8048. height:50px;
  8049. background:inherit;
  8050. background-color:rgba(255, 255, 255, 1);
  8051. border:none;
  8052. border-radius:0px;
  8053. border-top-left-radius:0px;
  8054. border-top-right-radius:0px;
  8055. -moz-box-shadow:none;
  8056. -webkit-box-shadow:none;
  8057. box-shadow:none;
  8058. }
  8059. #u51878 {
  8060. border-width:0px;
  8061. position:absolute;
  8062. left:254px;
  8063. top:787px;
  8064. width:75px;
  8065. height:50px;
  8066. display:flex;
  8067. }
  8068. #u51878 .text {
  8069. position:absolute;
  8070. align-self:center;
  8071. padding:2px 2px 2px 2px;
  8072. box-sizing:border-box;
  8073. width:100%;
  8074. }
  8075. #u51878_text {
  8076. border-width:0px;
  8077. word-wrap:break-word;
  8078. text-transform:none;
  8079. visibility:hidden;
  8080. }
  8081. #u51879 {
  8082. border-width:0px;
  8083. position:absolute;
  8084. left:0px;
  8085. top:0px;
  8086. width:0px;
  8087. height:0px;
  8088. }
  8089. #u51880_img {
  8090. border-width:0px;
  8091. position:absolute;
  8092. left:0px;
  8093. top:0px;
  8094. width:24px;
  8095. height:24px;
  8096. }
  8097. #u51880 {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:279px;
  8101. top:791px;
  8102. width:24px;
  8103. height:24px;
  8104. display:flex;
  8105. font-size:8px;
  8106. }
  8107. #u51880 .text {
  8108. position:absolute;
  8109. align-self:center;
  8110. padding:2px 2px 2px 2px;
  8111. box-sizing:border-box;
  8112. width:100%;
  8113. }
  8114. #u51880_text {
  8115. border-width:0px;
  8116. word-wrap:break-word;
  8117. text-transform:none;
  8118. }
  8119. #u51881_div {
  8120. border-width:0px;
  8121. position:absolute;
  8122. left:0px;
  8123. top:0px;
  8124. width:25px;
  8125. height:17px;
  8126. background:inherit;
  8127. background-color:rgba(255, 255, 255, 0);
  8128. border:none;
  8129. border-radius:0px;
  8130. -moz-box-shadow:none;
  8131. -webkit-box-shadow:none;
  8132. box-shadow:none;
  8133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8134. font-weight:400;
  8135. font-style:normal;
  8136. font-size:12px;
  8137. }
  8138. #u51881 {
  8139. border-width:0px;
  8140. position:absolute;
  8141. left:279px;
  8142. top:816px;
  8143. width:25px;
  8144. height:17px;
  8145. display:flex;
  8146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8147. font-weight:400;
  8148. font-style:normal;
  8149. font-size:12px;
  8150. }
  8151. #u51881 .text {
  8152. position:absolute;
  8153. align-self:flex-start;
  8154. padding:0px 0px 0px 0px;
  8155. box-sizing:border-box;
  8156. width:100%;
  8157. }
  8158. #u51881_text {
  8159. border-width:0px;
  8160. white-space:nowrap;
  8161. text-transform:none;
  8162. }
  8163. #u51882 {
  8164. border-width:0px;
  8165. position:absolute;
  8166. left:0px;
  8167. top:0px;
  8168. width:0px;
  8169. height:0px;
  8170. }
  8171. #u51883_div {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:75px;
  8177. height:50px;
  8178. background:inherit;
  8179. background-color:rgba(255, 255, 255, 1);
  8180. border:none;
  8181. border-radius:0px;
  8182. border-top-left-radius:0px;
  8183. border-top-right-radius:0px;
  8184. -moz-box-shadow:none;
  8185. -webkit-box-shadow:none;
  8186. box-shadow:none;
  8187. }
  8188. #u51883 {
  8189. border-width:0px;
  8190. position:absolute;
  8191. left:104px;
  8192. top:787px;
  8193. width:75px;
  8194. height:50px;
  8195. display:flex;
  8196. }
  8197. #u51883 .text {
  8198. position:absolute;
  8199. align-self:center;
  8200. padding:2px 2px 2px 2px;
  8201. box-sizing:border-box;
  8202. width:100%;
  8203. }
  8204. #u51883_text {
  8205. border-width:0px;
  8206. word-wrap:break-word;
  8207. text-transform:none;
  8208. visibility:hidden;
  8209. }
  8210. #u51884 {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:0px;
  8214. top:0px;
  8215. width:0px;
  8216. height:0px;
  8217. }
  8218. #u51885_img {
  8219. border-width:0px;
  8220. position:absolute;
  8221. left:0px;
  8222. top:0px;
  8223. width:24px;
  8224. height:24px;
  8225. }
  8226. #u51885 {
  8227. border-width:0px;
  8228. position:absolute;
  8229. left:129px;
  8230. top:791px;
  8231. width:24px;
  8232. height:24px;
  8233. display:flex;
  8234. font-size:8px;
  8235. }
  8236. #u51885 .text {
  8237. position:absolute;
  8238. align-self:center;
  8239. padding:2px 2px 2px 2px;
  8240. box-sizing:border-box;
  8241. width:100%;
  8242. }
  8243. #u51885_text {
  8244. border-width:0px;
  8245. word-wrap:break-word;
  8246. text-transform:none;
  8247. }
  8248. #u51886_div {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:0px;
  8252. top:0px;
  8253. width:37px;
  8254. height:17px;
  8255. background:inherit;
  8256. background-color:rgba(255, 255, 255, 0);
  8257. border:none;
  8258. border-radius:0px;
  8259. -moz-box-shadow:none;
  8260. -webkit-box-shadow:none;
  8261. box-shadow:none;
  8262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8263. font-weight:400;
  8264. font-style:normal;
  8265. font-size:12px;
  8266. }
  8267. #u51886 {
  8268. border-width:0px;
  8269. position:absolute;
  8270. left:123px;
  8271. top:816px;
  8272. width:37px;
  8273. height:17px;
  8274. display:flex;
  8275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8276. font-weight:400;
  8277. font-style:normal;
  8278. font-size:12px;
  8279. }
  8280. #u51886 .text {
  8281. position:absolute;
  8282. align-self:flex-start;
  8283. padding:0px 0px 0px 0px;
  8284. box-sizing:border-box;
  8285. width:100%;
  8286. }
  8287. #u51886_text {
  8288. border-width:0px;
  8289. white-space:nowrap;
  8290. text-transform:none;
  8291. }
  8292. #u51887 {
  8293. border-width:0px;
  8294. position:absolute;
  8295. left:0px;
  8296. top:0px;
  8297. width:0px;
  8298. height:0px;
  8299. }
  8300. #u51888_div {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:0px;
  8304. top:0px;
  8305. width:375px;
  8306. height:50px;
  8307. background:inherit;
  8308. background-color:rgba(255, 255, 255, 1);
  8309. box-sizing:border-box;
  8310. border-width:1px;
  8311. border-style:solid;
  8312. border-color:rgba(242, 242, 242, 1);
  8313. border-radius:26px;
  8314. border-top-left-radius:0px;
  8315. border-top-right-radius:0px;
  8316. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8317. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8318. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8319. }
  8320. #u51888 {
  8321. border-width:0px;
  8322. position:absolute;
  8323. left:492px;
  8324. top:790px;
  8325. width:375px;
  8326. height:50px;
  8327. display:flex;
  8328. }
  8329. #u51888 .text {
  8330. position:absolute;
  8331. align-self:center;
  8332. padding:2px 2px 2px 2px;
  8333. box-sizing:border-box;
  8334. width:100%;
  8335. }
  8336. #u51888_text {
  8337. border-width:0px;
  8338. word-wrap:break-word;
  8339. text-transform:none;
  8340. visibility:hidden;
  8341. }
  8342. #u51889 {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:0px;
  8346. top:0px;
  8347. width:0px;
  8348. height:0px;
  8349. }
  8350. #u51890_div {
  8351. border-width:0px;
  8352. position:absolute;
  8353. left:0px;
  8354. top:0px;
  8355. width:77px;
  8356. height:50px;
  8357. background:inherit;
  8358. background-color:rgba(255, 255, 255, 1);
  8359. border:none;
  8360. border-radius:0px;
  8361. border-top-left-radius:0px;
  8362. border-top-right-radius:0px;
  8363. -moz-box-shadow:none;
  8364. -webkit-box-shadow:none;
  8365. box-shadow:none;
  8366. }
  8367. #u51890 {
  8368. border-width:0px;
  8369. position:absolute;
  8370. left:641px;
  8371. top:790px;
  8372. width:77px;
  8373. height:50px;
  8374. display:flex;
  8375. }
  8376. #u51890 .text {
  8377. position:absolute;
  8378. align-self:center;
  8379. padding:2px 2px 2px 2px;
  8380. box-sizing:border-box;
  8381. width:100%;
  8382. }
  8383. #u51890_text {
  8384. border-width:0px;
  8385. word-wrap:break-word;
  8386. text-transform:none;
  8387. visibility:hidden;
  8388. }
  8389. #u51891 {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:0px;
  8393. top:0px;
  8394. width:0px;
  8395. height:0px;
  8396. }
  8397. #u51892_img {
  8398. border-width:0px;
  8399. position:absolute;
  8400. left:0px;
  8401. top:0px;
  8402. width:38px;
  8403. height:38px;
  8404. }
  8405. #u51892 {
  8406. border-width:0px;
  8407. position:absolute;
  8408. left:661px;
  8409. top:780px;
  8410. width:38px;
  8411. height:38px;
  8412. display:flex;
  8413. font-size:12px;
  8414. color:#FFFFFF;
  8415. }
  8416. #u51892 .text {
  8417. position:absolute;
  8418. align-self:center;
  8419. padding:2px 2px 2px 2px;
  8420. box-sizing:border-box;
  8421. width:100%;
  8422. }
  8423. #u51892_text {
  8424. border-width:0px;
  8425. word-wrap:break-word;
  8426. text-transform:none;
  8427. }
  8428. #u51893_div {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:0px;
  8432. top:0px;
  8433. width:49px;
  8434. height:17px;
  8435. background:inherit;
  8436. background-color:rgba(255, 255, 255, 0);
  8437. border:none;
  8438. border-radius:0px;
  8439. -moz-box-shadow:none;
  8440. -webkit-box-shadow:none;
  8441. box-shadow:none;
  8442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8443. font-weight:400;
  8444. font-style:normal;
  8445. font-size:12px;
  8446. }
  8447. #u51893 {
  8448. border-width:0px;
  8449. position:absolute;
  8450. left:655px;
  8451. top:819px;
  8452. width:49px;
  8453. height:17px;
  8454. display:flex;
  8455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8456. font-weight:400;
  8457. font-style:normal;
  8458. font-size:12px;
  8459. }
  8460. #u51893 .text {
  8461. position:absolute;
  8462. align-self:flex-start;
  8463. padding:0px 0px 0px 0px;
  8464. box-sizing:border-box;
  8465. width:100%;
  8466. }
  8467. #u51893_text {
  8468. border-width:0px;
  8469. white-space:nowrap;
  8470. text-transform:none;
  8471. }
  8472. #u51894 {
  8473. border-width:0px;
  8474. position:absolute;
  8475. left:0px;
  8476. top:0px;
  8477. width:0px;
  8478. height:0px;
  8479. }
  8480. #u51895_div {
  8481. border-width:0px;
  8482. position:absolute;
  8483. left:0px;
  8484. top:0px;
  8485. width:75px;
  8486. height:50px;
  8487. background:inherit;
  8488. background-color:rgba(255, 255, 255, 1);
  8489. border:none;
  8490. border-right:0px;
  8491. border-radius:26px;
  8492. border-top-left-radius:0px;
  8493. border-top-right-radius:0px;
  8494. border-bottom-right-radius:0px;
  8495. -moz-box-shadow:none;
  8496. -webkit-box-shadow:none;
  8497. box-shadow:none;
  8498. }
  8499. #u51895 {
  8500. border-width:0px;
  8501. position:absolute;
  8502. left:492px;
  8503. top:790px;
  8504. width:75px;
  8505. height:50px;
  8506. display:flex;
  8507. }
  8508. #u51895 .text {
  8509. position:absolute;
  8510. align-self:center;
  8511. padding:2px 2px 2px 2px;
  8512. box-sizing:border-box;
  8513. width:100%;
  8514. }
  8515. #u51895_text {
  8516. border-width:0px;
  8517. word-wrap:break-word;
  8518. text-transform:none;
  8519. visibility:hidden;
  8520. }
  8521. #u51896 {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:0px;
  8525. top:0px;
  8526. width:0px;
  8527. height:0px;
  8528. }
  8529. #u51897_img {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:0px;
  8533. top:0px;
  8534. width:24px;
  8535. height:24px;
  8536. }
  8537. #u51897 {
  8538. border-width:0px;
  8539. position:absolute;
  8540. left:517px;
  8541. top:794px;
  8542. width:24px;
  8543. height:24px;
  8544. display:flex;
  8545. font-size:8px;
  8546. }
  8547. #u51897 .text {
  8548. position:absolute;
  8549. align-self:center;
  8550. padding:2px 2px 2px 2px;
  8551. box-sizing:border-box;
  8552. width:100%;
  8553. }
  8554. #u51897_text {
  8555. border-width:0px;
  8556. word-wrap:break-word;
  8557. text-transform:none;
  8558. }
  8559. #u51898_div {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:0px;
  8563. top:0px;
  8564. width:25px;
  8565. height:17px;
  8566. background:inherit;
  8567. background-color:rgba(255, 255, 255, 0);
  8568. border:none;
  8569. border-radius:0px;
  8570. -moz-box-shadow:none;
  8571. -webkit-box-shadow:none;
  8572. box-shadow:none;
  8573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8574. font-weight:400;
  8575. font-style:normal;
  8576. font-size:12px;
  8577. }
  8578. #u51898 {
  8579. border-width:0px;
  8580. position:absolute;
  8581. left:517px;
  8582. top:819px;
  8583. width:25px;
  8584. height:17px;
  8585. display:flex;
  8586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8587. font-weight:400;
  8588. font-style:normal;
  8589. font-size:12px;
  8590. }
  8591. #u51898 .text {
  8592. position:absolute;
  8593. align-self:flex-start;
  8594. padding:0px 0px 0px 0px;
  8595. box-sizing:border-box;
  8596. width:100%;
  8597. }
  8598. #u51898_text {
  8599. border-width:0px;
  8600. white-space:nowrap;
  8601. text-transform:none;
  8602. }
  8603. #u51899 {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:0px;
  8607. top:0px;
  8608. width:0px;
  8609. height:0px;
  8610. }
  8611. #u51900_div {
  8612. border-width:0px;
  8613. position:absolute;
  8614. left:0px;
  8615. top:0px;
  8616. width:75px;
  8617. height:50px;
  8618. background:inherit;
  8619. background-color:rgba(0, 137, 254, 1);
  8620. border:none;
  8621. border-left:0px;
  8622. border-radius:26px;
  8623. border-top-left-radius:0px;
  8624. border-top-right-radius:0px;
  8625. border-bottom-left-radius:0px;
  8626. -moz-box-shadow:none;
  8627. -webkit-box-shadow:none;
  8628. box-shadow:none;
  8629. }
  8630. #u51900 {
  8631. border-width:0px;
  8632. position:absolute;
  8633. left:792px;
  8634. top:790px;
  8635. width:75px;
  8636. height:50px;
  8637. display:flex;
  8638. }
  8639. #u51900 .text {
  8640. position:absolute;
  8641. align-self:center;
  8642. padding:2px 2px 2px 2px;
  8643. box-sizing:border-box;
  8644. width:100%;
  8645. }
  8646. #u51900_text {
  8647. border-width:0px;
  8648. word-wrap:break-word;
  8649. text-transform:none;
  8650. visibility:hidden;
  8651. }
  8652. #u51901 {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:0px;
  8656. top:0px;
  8657. width:0px;
  8658. height:0px;
  8659. }
  8660. #u51902_img {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:0px;
  8664. top:0px;
  8665. width:24px;
  8666. height:24px;
  8667. }
  8668. #u51902 {
  8669. border-width:0px;
  8670. position:absolute;
  8671. left:817px;
  8672. top:796px;
  8673. width:24px;
  8674. height:24px;
  8675. display:flex;
  8676. font-size:8px;
  8677. }
  8678. #u51902 .text {
  8679. position:absolute;
  8680. align-self:center;
  8681. padding:2px 2px 2px 2px;
  8682. box-sizing:border-box;
  8683. width:100%;
  8684. }
  8685. #u51902_text {
  8686. border-width:0px;
  8687. word-wrap:break-word;
  8688. text-transform:none;
  8689. }
  8690. #u51903_div {
  8691. border-width:0px;
  8692. position:absolute;
  8693. left:0px;
  8694. top:0px;
  8695. width:25px;
  8696. height:17px;
  8697. background:inherit;
  8698. background-color:rgba(255, 255, 255, 0);
  8699. border:none;
  8700. border-radius:0px;
  8701. -moz-box-shadow:none;
  8702. -webkit-box-shadow:none;
  8703. box-shadow:none;
  8704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8705. font-weight:400;
  8706. font-style:normal;
  8707. font-size:12px;
  8708. }
  8709. #u51903 {
  8710. border-width:0px;
  8711. position:absolute;
  8712. left:817px;
  8713. top:821px;
  8714. width:25px;
  8715. height:17px;
  8716. display:flex;
  8717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8718. font-weight:400;
  8719. font-style:normal;
  8720. font-size:12px;
  8721. }
  8722. #u51903 .text {
  8723. position:absolute;
  8724. align-self:flex-start;
  8725. padding:0px 0px 0px 0px;
  8726. box-sizing:border-box;
  8727. width:100%;
  8728. }
  8729. #u51903_text {
  8730. border-width:0px;
  8731. white-space:nowrap;
  8732. text-transform:none;
  8733. }
  8734. #u51904 {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:0px;
  8738. top:0px;
  8739. width:0px;
  8740. height:0px;
  8741. }
  8742. #u51905_div {
  8743. border-width:0px;
  8744. position:absolute;
  8745. left:0px;
  8746. top:0px;
  8747. width:75px;
  8748. height:50px;
  8749. background:inherit;
  8750. background-color:rgba(255, 255, 255, 1);
  8751. border:none;
  8752. border-radius:0px;
  8753. border-top-left-radius:0px;
  8754. border-top-right-radius:0px;
  8755. -moz-box-shadow:none;
  8756. -webkit-box-shadow:none;
  8757. box-shadow:none;
  8758. }
  8759. #u51905 {
  8760. border-width:0px;
  8761. position:absolute;
  8762. left:717px;
  8763. top:790px;
  8764. width:75px;
  8765. height:50px;
  8766. display:flex;
  8767. }
  8768. #u51905 .text {
  8769. position:absolute;
  8770. align-self:center;
  8771. padding:2px 2px 2px 2px;
  8772. box-sizing:border-box;
  8773. width:100%;
  8774. }
  8775. #u51905_text {
  8776. border-width:0px;
  8777. word-wrap:break-word;
  8778. text-transform:none;
  8779. visibility:hidden;
  8780. }
  8781. #u51906 {
  8782. border-width:0px;
  8783. position:absolute;
  8784. left:0px;
  8785. top:0px;
  8786. width:0px;
  8787. height:0px;
  8788. }
  8789. #u51907_img {
  8790. border-width:0px;
  8791. position:absolute;
  8792. left:0px;
  8793. top:0px;
  8794. width:24px;
  8795. height:24px;
  8796. }
  8797. #u51907 {
  8798. border-width:0px;
  8799. position:absolute;
  8800. left:742px;
  8801. top:794px;
  8802. width:24px;
  8803. height:24px;
  8804. display:flex;
  8805. font-size:8px;
  8806. }
  8807. #u51907 .text {
  8808. position:absolute;
  8809. align-self:center;
  8810. padding:2px 2px 2px 2px;
  8811. box-sizing:border-box;
  8812. width:100%;
  8813. }
  8814. #u51907_text {
  8815. border-width:0px;
  8816. word-wrap:break-word;
  8817. text-transform:none;
  8818. }
  8819. #u51908_div {
  8820. border-width:0px;
  8821. position:absolute;
  8822. left:0px;
  8823. top:0px;
  8824. width:25px;
  8825. height:17px;
  8826. background:inherit;
  8827. background-color:rgba(255, 255, 255, 0);
  8828. border:none;
  8829. border-radius:0px;
  8830. -moz-box-shadow:none;
  8831. -webkit-box-shadow:none;
  8832. box-shadow:none;
  8833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8834. font-weight:400;
  8835. font-style:normal;
  8836. font-size:12px;
  8837. }
  8838. #u51908 {
  8839. border-width:0px;
  8840. position:absolute;
  8841. left:742px;
  8842. top:819px;
  8843. width:25px;
  8844. height:17px;
  8845. display:flex;
  8846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8847. font-weight:400;
  8848. font-style:normal;
  8849. font-size:12px;
  8850. }
  8851. #u51908 .text {
  8852. position:absolute;
  8853. align-self:flex-start;
  8854. padding:0px 0px 0px 0px;
  8855. box-sizing:border-box;
  8856. width:100%;
  8857. }
  8858. #u51908_text {
  8859. border-width:0px;
  8860. white-space:nowrap;
  8861. text-transform:none;
  8862. }
  8863. #u51909 {
  8864. border-width:0px;
  8865. position:absolute;
  8866. left:0px;
  8867. top:0px;
  8868. width:0px;
  8869. height:0px;
  8870. }
  8871. #u51910_div {
  8872. border-width:0px;
  8873. position:absolute;
  8874. left:0px;
  8875. top:0px;
  8876. width:75px;
  8877. height:50px;
  8878. background:inherit;
  8879. background-color:rgba(255, 255, 255, 1);
  8880. border:none;
  8881. border-radius:0px;
  8882. border-top-left-radius:0px;
  8883. border-top-right-radius:0px;
  8884. -moz-box-shadow:none;
  8885. -webkit-box-shadow:none;
  8886. box-shadow:none;
  8887. }
  8888. #u51910 {
  8889. border-width:0px;
  8890. position:absolute;
  8891. left:567px;
  8892. top:790px;
  8893. width:75px;
  8894. height:50px;
  8895. display:flex;
  8896. }
  8897. #u51910 .text {
  8898. position:absolute;
  8899. align-self:center;
  8900. padding:2px 2px 2px 2px;
  8901. box-sizing:border-box;
  8902. width:100%;
  8903. }
  8904. #u51910_text {
  8905. border-width:0px;
  8906. word-wrap:break-word;
  8907. text-transform:none;
  8908. visibility:hidden;
  8909. }
  8910. #u51911 {
  8911. border-width:0px;
  8912. position:absolute;
  8913. left:0px;
  8914. top:0px;
  8915. width:0px;
  8916. height:0px;
  8917. }
  8918. #u51912_img {
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:0px;
  8922. top:0px;
  8923. width:24px;
  8924. height:24px;
  8925. }
  8926. #u51912 {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:592px;
  8930. top:794px;
  8931. width:24px;
  8932. height:24px;
  8933. display:flex;
  8934. font-size:8px;
  8935. }
  8936. #u51912 .text {
  8937. position:absolute;
  8938. align-self:center;
  8939. padding:2px 2px 2px 2px;
  8940. box-sizing:border-box;
  8941. width:100%;
  8942. }
  8943. #u51912_text {
  8944. border-width:0px;
  8945. word-wrap:break-word;
  8946. text-transform:none;
  8947. }
  8948. #u51913_div {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:0px;
  8952. top:0px;
  8953. width:37px;
  8954. height:17px;
  8955. background:inherit;
  8956. background-color:rgba(255, 255, 255, 0);
  8957. border:none;
  8958. border-radius:0px;
  8959. -moz-box-shadow:none;
  8960. -webkit-box-shadow:none;
  8961. box-shadow:none;
  8962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8963. font-weight:400;
  8964. font-style:normal;
  8965. font-size:12px;
  8966. }
  8967. #u51913 {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:586px;
  8971. top:819px;
  8972. width:37px;
  8973. height:17px;
  8974. display:flex;
  8975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8976. font-weight:400;
  8977. font-style:normal;
  8978. font-size:12px;
  8979. }
  8980. #u51913 .text {
  8981. position:absolute;
  8982. align-self:flex-start;
  8983. padding:0px 0px 0px 0px;
  8984. box-sizing:border-box;
  8985. width:100%;
  8986. }
  8987. #u51913_text {
  8988. border-width:0px;
  8989. white-space:nowrap;
  8990. text-transform:none;
  8991. }
  8992. #u51914 {
  8993. border-width:0px;
  8994. position:absolute;
  8995. left:0px;
  8996. top:0px;
  8997. width:0px;
  8998. height:0px;
  8999. }
  9000. #u51915_div {
  9001. border-width:0px;
  9002. position:absolute;
  9003. left:0px;
  9004. top:0px;
  9005. width:375px;
  9006. height:50px;
  9007. background:inherit;
  9008. background-color:rgba(255, 255, 255, 1);
  9009. box-sizing:border-box;
  9010. border-width:1px;
  9011. border-style:solid;
  9012. border-color:rgba(242, 242, 242, 1);
  9013. border-radius:26px;
  9014. border-top-left-radius:0px;
  9015. border-top-right-radius:0px;
  9016. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9017. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9018. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9019. }
  9020. #u51915 {
  9021. border-width:0px;
  9022. position:absolute;
  9023. left:967px;
  9024. top:792px;
  9025. width:375px;
  9026. height:50px;
  9027. display:flex;
  9028. }
  9029. #u51915 .text {
  9030. position:absolute;
  9031. align-self:center;
  9032. padding:2px 2px 2px 2px;
  9033. box-sizing:border-box;
  9034. width:100%;
  9035. }
  9036. #u51915_text {
  9037. border-width:0px;
  9038. word-wrap:break-word;
  9039. text-transform:none;
  9040. visibility:hidden;
  9041. }
  9042. #u51916 {
  9043. border-width:0px;
  9044. position:absolute;
  9045. left:0px;
  9046. top:0px;
  9047. width:0px;
  9048. height:0px;
  9049. }
  9050. #u51917_div {
  9051. border-width:0px;
  9052. position:absolute;
  9053. left:0px;
  9054. top:0px;
  9055. width:77px;
  9056. height:50px;
  9057. background:inherit;
  9058. background-color:rgba(255, 255, 255, 1);
  9059. border:none;
  9060. border-radius:0px;
  9061. border-top-left-radius:0px;
  9062. border-top-right-radius:0px;
  9063. -moz-box-shadow:none;
  9064. -webkit-box-shadow:none;
  9065. box-shadow:none;
  9066. }
  9067. #u51917 {
  9068. border-width:0px;
  9069. position:absolute;
  9070. left:1116px;
  9071. top:792px;
  9072. width:77px;
  9073. height:50px;
  9074. display:flex;
  9075. }
  9076. #u51917 .text {
  9077. position:absolute;
  9078. align-self:center;
  9079. padding:2px 2px 2px 2px;
  9080. box-sizing:border-box;
  9081. width:100%;
  9082. }
  9083. #u51917_text {
  9084. border-width:0px;
  9085. word-wrap:break-word;
  9086. text-transform:none;
  9087. visibility:hidden;
  9088. }
  9089. #u51918 {
  9090. border-width:0px;
  9091. position:absolute;
  9092. left:0px;
  9093. top:0px;
  9094. width:0px;
  9095. height:0px;
  9096. }
  9097. #u51919_img {
  9098. border-width:0px;
  9099. position:absolute;
  9100. left:0px;
  9101. top:0px;
  9102. width:38px;
  9103. height:38px;
  9104. }
  9105. #u51919 {
  9106. border-width:0px;
  9107. position:absolute;
  9108. left:1136px;
  9109. top:782px;
  9110. width:38px;
  9111. height:38px;
  9112. display:flex;
  9113. font-size:12px;
  9114. color:#FFFFFF;
  9115. }
  9116. #u51919 .text {
  9117. position:absolute;
  9118. align-self:center;
  9119. padding:2px 2px 2px 2px;
  9120. box-sizing:border-box;
  9121. width:100%;
  9122. }
  9123. #u51919_text {
  9124. border-width:0px;
  9125. word-wrap:break-word;
  9126. text-transform:none;
  9127. }
  9128. #u51920_div {
  9129. border-width:0px;
  9130. position:absolute;
  9131. left:0px;
  9132. top:0px;
  9133. width:49px;
  9134. height:17px;
  9135. background:inherit;
  9136. background-color:rgba(255, 255, 255, 0);
  9137. border:none;
  9138. border-radius:0px;
  9139. -moz-box-shadow:none;
  9140. -webkit-box-shadow:none;
  9141. box-shadow:none;
  9142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9143. font-weight:400;
  9144. font-style:normal;
  9145. font-size:12px;
  9146. }
  9147. #u51920 {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:1130px;
  9151. top:821px;
  9152. width:49px;
  9153. height:17px;
  9154. display:flex;
  9155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9156. font-weight:400;
  9157. font-style:normal;
  9158. font-size:12px;
  9159. }
  9160. #u51920 .text {
  9161. position:absolute;
  9162. align-self:flex-start;
  9163. padding:0px 0px 0px 0px;
  9164. box-sizing:border-box;
  9165. width:100%;
  9166. }
  9167. #u51920_text {
  9168. border-width:0px;
  9169. white-space:nowrap;
  9170. text-transform:none;
  9171. }
  9172. #u51921 {
  9173. border-width:0px;
  9174. position:absolute;
  9175. left:0px;
  9176. top:0px;
  9177. width:0px;
  9178. height:0px;
  9179. }
  9180. #u51922_div {
  9181. border-width:0px;
  9182. position:absolute;
  9183. left:0px;
  9184. top:0px;
  9185. width:75px;
  9186. height:50px;
  9187. background:inherit;
  9188. background-color:rgba(255, 255, 255, 1);
  9189. border:none;
  9190. border-right:0px;
  9191. border-radius:26px;
  9192. border-top-left-radius:0px;
  9193. border-top-right-radius:0px;
  9194. border-bottom-right-radius:0px;
  9195. -moz-box-shadow:none;
  9196. -webkit-box-shadow:none;
  9197. box-shadow:none;
  9198. }
  9199. #u51922 {
  9200. border-width:0px;
  9201. position:absolute;
  9202. left:967px;
  9203. top:792px;
  9204. width:75px;
  9205. height:50px;
  9206. display:flex;
  9207. }
  9208. #u51922 .text {
  9209. position:absolute;
  9210. align-self:center;
  9211. padding:2px 2px 2px 2px;
  9212. box-sizing:border-box;
  9213. width:100%;
  9214. }
  9215. #u51922_text {
  9216. border-width:0px;
  9217. word-wrap:break-word;
  9218. text-transform:none;
  9219. visibility:hidden;
  9220. }
  9221. #u51923 {
  9222. border-width:0px;
  9223. position:absolute;
  9224. left:0px;
  9225. top:0px;
  9226. width:0px;
  9227. height:0px;
  9228. }
  9229. #u51924_img {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:0px;
  9233. top:0px;
  9234. width:24px;
  9235. height:24px;
  9236. }
  9237. #u51924 {
  9238. border-width:0px;
  9239. position:absolute;
  9240. left:992px;
  9241. top:796px;
  9242. width:24px;
  9243. height:24px;
  9244. display:flex;
  9245. font-size:8px;
  9246. }
  9247. #u51924 .text {
  9248. position:absolute;
  9249. align-self:center;
  9250. padding:2px 2px 2px 2px;
  9251. box-sizing:border-box;
  9252. width:100%;
  9253. }
  9254. #u51924_text {
  9255. border-width:0px;
  9256. word-wrap:break-word;
  9257. text-transform:none;
  9258. }
  9259. #u51925_div {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:0px;
  9263. top:0px;
  9264. width:25px;
  9265. height:17px;
  9266. background:inherit;
  9267. background-color:rgba(255, 255, 255, 0);
  9268. border:none;
  9269. border-radius:0px;
  9270. -moz-box-shadow:none;
  9271. -webkit-box-shadow:none;
  9272. box-shadow:none;
  9273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9274. font-weight:400;
  9275. font-style:normal;
  9276. font-size:12px;
  9277. }
  9278. #u51925 {
  9279. border-width:0px;
  9280. position:absolute;
  9281. left:992px;
  9282. top:821px;
  9283. width:25px;
  9284. height:17px;
  9285. display:flex;
  9286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9287. font-weight:400;
  9288. font-style:normal;
  9289. font-size:12px;
  9290. }
  9291. #u51925 .text {
  9292. position:absolute;
  9293. align-self:flex-start;
  9294. padding:0px 0px 0px 0px;
  9295. box-sizing:border-box;
  9296. width:100%;
  9297. }
  9298. #u51925_text {
  9299. border-width:0px;
  9300. white-space:nowrap;
  9301. text-transform:none;
  9302. }
  9303. #u51926 {
  9304. border-width:0px;
  9305. position:absolute;
  9306. left:0px;
  9307. top:0px;
  9308. width:0px;
  9309. height:0px;
  9310. }
  9311. #u51927_div {
  9312. border-width:0px;
  9313. position:absolute;
  9314. left:0px;
  9315. top:0px;
  9316. width:75px;
  9317. height:50px;
  9318. background:inherit;
  9319. background-color:rgba(0, 137, 254, 1);
  9320. border:none;
  9321. border-left:0px;
  9322. border-radius:26px;
  9323. border-top-left-radius:0px;
  9324. border-top-right-radius:0px;
  9325. border-bottom-left-radius:0px;
  9326. -moz-box-shadow:none;
  9327. -webkit-box-shadow:none;
  9328. box-shadow:none;
  9329. }
  9330. #u51927 {
  9331. border-width:0px;
  9332. position:absolute;
  9333. left:1267px;
  9334. top:792px;
  9335. width:75px;
  9336. height:50px;
  9337. display:flex;
  9338. }
  9339. #u51927 .text {
  9340. position:absolute;
  9341. align-self:center;
  9342. padding:2px 2px 2px 2px;
  9343. box-sizing:border-box;
  9344. width:100%;
  9345. }
  9346. #u51927_text {
  9347. border-width:0px;
  9348. word-wrap:break-word;
  9349. text-transform:none;
  9350. visibility:hidden;
  9351. }
  9352. #u51928 {
  9353. border-width:0px;
  9354. position:absolute;
  9355. left:0px;
  9356. top:0px;
  9357. width:0px;
  9358. height:0px;
  9359. }
  9360. #u51929_img {
  9361. border-width:0px;
  9362. position:absolute;
  9363. left:0px;
  9364. top:0px;
  9365. width:24px;
  9366. height:24px;
  9367. }
  9368. #u51929 {
  9369. border-width:0px;
  9370. position:absolute;
  9371. left:1292px;
  9372. top:798px;
  9373. width:24px;
  9374. height:24px;
  9375. display:flex;
  9376. font-size:8px;
  9377. }
  9378. #u51929 .text {
  9379. position:absolute;
  9380. align-self:center;
  9381. padding:2px 2px 2px 2px;
  9382. box-sizing:border-box;
  9383. width:100%;
  9384. }
  9385. #u51929_text {
  9386. border-width:0px;
  9387. word-wrap:break-word;
  9388. text-transform:none;
  9389. }
  9390. #u51930_div {
  9391. border-width:0px;
  9392. position:absolute;
  9393. left:0px;
  9394. top:0px;
  9395. width:25px;
  9396. height:17px;
  9397. background:inherit;
  9398. background-color:rgba(255, 255, 255, 0);
  9399. border:none;
  9400. border-radius:0px;
  9401. -moz-box-shadow:none;
  9402. -webkit-box-shadow:none;
  9403. box-shadow:none;
  9404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9405. font-weight:400;
  9406. font-style:normal;
  9407. font-size:12px;
  9408. }
  9409. #u51930 {
  9410. border-width:0px;
  9411. position:absolute;
  9412. left:1292px;
  9413. top:823px;
  9414. width:25px;
  9415. height:17px;
  9416. display:flex;
  9417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9418. font-weight:400;
  9419. font-style:normal;
  9420. font-size:12px;
  9421. }
  9422. #u51930 .text {
  9423. position:absolute;
  9424. align-self:flex-start;
  9425. padding:0px 0px 0px 0px;
  9426. box-sizing:border-box;
  9427. width:100%;
  9428. }
  9429. #u51930_text {
  9430. border-width:0px;
  9431. white-space:nowrap;
  9432. text-transform:none;
  9433. }
  9434. #u51931 {
  9435. border-width:0px;
  9436. position:absolute;
  9437. left:0px;
  9438. top:0px;
  9439. width:0px;
  9440. height:0px;
  9441. }
  9442. #u51932_div {
  9443. border-width:0px;
  9444. position:absolute;
  9445. left:0px;
  9446. top:0px;
  9447. width:75px;
  9448. height:50px;
  9449. background:inherit;
  9450. background-color:rgba(255, 255, 255, 1);
  9451. border:none;
  9452. border-radius:0px;
  9453. border-top-left-radius:0px;
  9454. border-top-right-radius:0px;
  9455. -moz-box-shadow:none;
  9456. -webkit-box-shadow:none;
  9457. box-shadow:none;
  9458. }
  9459. #u51932 {
  9460. border-width:0px;
  9461. position:absolute;
  9462. left:1192px;
  9463. top:792px;
  9464. width:75px;
  9465. height:50px;
  9466. display:flex;
  9467. }
  9468. #u51932 .text {
  9469. position:absolute;
  9470. align-self:center;
  9471. padding:2px 2px 2px 2px;
  9472. box-sizing:border-box;
  9473. width:100%;
  9474. }
  9475. #u51932_text {
  9476. border-width:0px;
  9477. word-wrap:break-word;
  9478. text-transform:none;
  9479. visibility:hidden;
  9480. }
  9481. #u51933 {
  9482. border-width:0px;
  9483. position:absolute;
  9484. left:0px;
  9485. top:0px;
  9486. width:0px;
  9487. height:0px;
  9488. }
  9489. #u51934_img {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:0px;
  9493. top:0px;
  9494. width:24px;
  9495. height:24px;
  9496. }
  9497. #u51934 {
  9498. border-width:0px;
  9499. position:absolute;
  9500. left:1217px;
  9501. top:796px;
  9502. width:24px;
  9503. height:24px;
  9504. display:flex;
  9505. font-size:8px;
  9506. }
  9507. #u51934 .text {
  9508. position:absolute;
  9509. align-self:center;
  9510. padding:2px 2px 2px 2px;
  9511. box-sizing:border-box;
  9512. width:100%;
  9513. }
  9514. #u51934_text {
  9515. border-width:0px;
  9516. word-wrap:break-word;
  9517. text-transform:none;
  9518. }
  9519. #u51935_div {
  9520. border-width:0px;
  9521. position:absolute;
  9522. left:0px;
  9523. top:0px;
  9524. width:25px;
  9525. height:17px;
  9526. background:inherit;
  9527. background-color:rgba(255, 255, 255, 0);
  9528. border:none;
  9529. border-radius:0px;
  9530. -moz-box-shadow:none;
  9531. -webkit-box-shadow:none;
  9532. box-shadow:none;
  9533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9534. font-weight:400;
  9535. font-style:normal;
  9536. font-size:12px;
  9537. }
  9538. #u51935 {
  9539. border-width:0px;
  9540. position:absolute;
  9541. left:1217px;
  9542. top:821px;
  9543. width:25px;
  9544. height:17px;
  9545. display:flex;
  9546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9547. font-weight:400;
  9548. font-style:normal;
  9549. font-size:12px;
  9550. }
  9551. #u51935 .text {
  9552. position:absolute;
  9553. align-self:flex-start;
  9554. padding:0px 0px 0px 0px;
  9555. box-sizing:border-box;
  9556. width:100%;
  9557. }
  9558. #u51935_text {
  9559. border-width:0px;
  9560. white-space:nowrap;
  9561. text-transform:none;
  9562. }
  9563. #u51936 {
  9564. border-width:0px;
  9565. position:absolute;
  9566. left:0px;
  9567. top:0px;
  9568. width:0px;
  9569. height:0px;
  9570. }
  9571. #u51937_div {
  9572. border-width:0px;
  9573. position:absolute;
  9574. left:0px;
  9575. top:0px;
  9576. width:75px;
  9577. height:50px;
  9578. background:inherit;
  9579. background-color:rgba(255, 255, 255, 1);
  9580. border:none;
  9581. border-radius:0px;
  9582. border-top-left-radius:0px;
  9583. border-top-right-radius:0px;
  9584. -moz-box-shadow:none;
  9585. -webkit-box-shadow:none;
  9586. box-shadow:none;
  9587. }
  9588. #u51937 {
  9589. border-width:0px;
  9590. position:absolute;
  9591. left:1042px;
  9592. top:792px;
  9593. width:75px;
  9594. height:50px;
  9595. display:flex;
  9596. }
  9597. #u51937 .text {
  9598. position:absolute;
  9599. align-self:center;
  9600. padding:2px 2px 2px 2px;
  9601. box-sizing:border-box;
  9602. width:100%;
  9603. }
  9604. #u51937_text {
  9605. border-width:0px;
  9606. word-wrap:break-word;
  9607. text-transform:none;
  9608. visibility:hidden;
  9609. }
  9610. #u51938 {
  9611. border-width:0px;
  9612. position:absolute;
  9613. left:0px;
  9614. top:0px;
  9615. width:0px;
  9616. height:0px;
  9617. }
  9618. #u51939_img {
  9619. border-width:0px;
  9620. position:absolute;
  9621. left:0px;
  9622. top:0px;
  9623. width:24px;
  9624. height:24px;
  9625. }
  9626. #u51939 {
  9627. border-width:0px;
  9628. position:absolute;
  9629. left:1067px;
  9630. top:796px;
  9631. width:24px;
  9632. height:24px;
  9633. display:flex;
  9634. font-size:8px;
  9635. }
  9636. #u51939 .text {
  9637. position:absolute;
  9638. align-self:center;
  9639. padding:2px 2px 2px 2px;
  9640. box-sizing:border-box;
  9641. width:100%;
  9642. }
  9643. #u51939_text {
  9644. border-width:0px;
  9645. word-wrap:break-word;
  9646. text-transform:none;
  9647. }
  9648. #u51940_div {
  9649. border-width:0px;
  9650. position:absolute;
  9651. left:0px;
  9652. top:0px;
  9653. width:37px;
  9654. height:17px;
  9655. background:inherit;
  9656. background-color:rgba(255, 255, 255, 0);
  9657. border:none;
  9658. border-radius:0px;
  9659. -moz-box-shadow:none;
  9660. -webkit-box-shadow:none;
  9661. box-shadow:none;
  9662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9663. font-weight:400;
  9664. font-style:normal;
  9665. font-size:12px;
  9666. }
  9667. #u51940 {
  9668. border-width:0px;
  9669. position:absolute;
  9670. left:1061px;
  9671. top:821px;
  9672. width:37px;
  9673. height:17px;
  9674. display:flex;
  9675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9676. font-weight:400;
  9677. font-style:normal;
  9678. font-size:12px;
  9679. }
  9680. #u51940 .text {
  9681. position:absolute;
  9682. align-self:flex-start;
  9683. padding:0px 0px 0px 0px;
  9684. box-sizing:border-box;
  9685. width:100%;
  9686. }
  9687. #u51940_text {
  9688. border-width:0px;
  9689. white-space:nowrap;
  9690. text-transform:none;
  9691. }
  9692. #u51941 {
  9693. border-width:0px;
  9694. position:absolute;
  9695. left:0px;
  9696. top:0px;
  9697. width:0px;
  9698. height:0px;
  9699. }
  9700. #u51942_div {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:0px;
  9704. top:0px;
  9705. width:375px;
  9706. height:80px;
  9707. background:inherit;
  9708. background-color:rgba(255, 255, 255, 1);
  9709. box-sizing:border-box;
  9710. border-width:1px;
  9711. border-style:solid;
  9712. border-color:rgba(242, 242, 242, 1);
  9713. border-left:0px;
  9714. border-top:0px;
  9715. border-right:0px;
  9716. border-radius:0px;
  9717. border-bottom-right-radius:0px;
  9718. border-bottom-left-radius:0px;
  9719. -moz-box-shadow:none;
  9720. -webkit-box-shadow:none;
  9721. box-shadow:none;
  9722. }
  9723. #u51942 {
  9724. border-width:0px;
  9725. position:absolute;
  9726. left:492px;
  9727. top:198px;
  9728. width:375px;
  9729. height:80px;
  9730. display:flex;
  9731. }
  9732. #u51942 .text {
  9733. position:absolute;
  9734. align-self:center;
  9735. padding:2px 2px 2px 2px;
  9736. box-sizing:border-box;
  9737. width:100%;
  9738. }
  9739. #u51942_text {
  9740. border-width:0px;
  9741. word-wrap:break-word;
  9742. text-transform:none;
  9743. visibility:hidden;
  9744. }
  9745. #u51943 {
  9746. border-width:0px;
  9747. position:absolute;
  9748. left:0px;
  9749. top:0px;
  9750. width:0px;
  9751. height:0px;
  9752. }
  9753. #u51944_div {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:30px;
  9759. height:30px;
  9760. background:inherit;
  9761. background-color:rgba(51, 51, 51, 1);
  9762. box-sizing:border-box;
  9763. border-width:1px;
  9764. border-style:solid;
  9765. border-color:rgba(121, 121, 121, 1);
  9766. border-radius:4px;
  9767. -moz-box-shadow:none;
  9768. -webkit-box-shadow:none;
  9769. box-shadow:none;
  9770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9771. font-weight:400;
  9772. font-style:normal;
  9773. font-size:8px;
  9774. color:#FFFFFF;
  9775. }
  9776. #u51944 {
  9777. border-width:0px;
  9778. position:absolute;
  9779. left:522px;
  9780. top:212px;
  9781. width:30px;
  9782. height:30px;
  9783. display:flex;
  9784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9785. font-weight:400;
  9786. font-style:normal;
  9787. font-size:8px;
  9788. color:#FFFFFF;
  9789. }
  9790. #u51944 .text {
  9791. position:absolute;
  9792. align-self:center;
  9793. padding:2px 2px 2px 2px;
  9794. box-sizing:border-box;
  9795. width:100%;
  9796. }
  9797. #u51944_text {
  9798. border-width:0px;
  9799. word-wrap:break-word;
  9800. text-transform:none;
  9801. }
  9802. #u51945_div {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:0px;
  9806. top:0px;
  9807. width:25px;
  9808. height:17px;
  9809. background:inherit;
  9810. background-color:rgba(255, 255, 255, 0);
  9811. border:none;
  9812. border-radius:0px;
  9813. -moz-box-shadow:none;
  9814. -webkit-box-shadow:none;
  9815. box-shadow:none;
  9816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9817. font-weight:400;
  9818. font-style:normal;
  9819. font-size:12px;
  9820. text-align:center;
  9821. }
  9822. #u51945 {
  9823. border-width:0px;
  9824. position:absolute;
  9825. left:525px;
  9826. top:247px;
  9827. width:25px;
  9828. height:17px;
  9829. display:flex;
  9830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9831. font-weight:400;
  9832. font-style:normal;
  9833. font-size:12px;
  9834. text-align:center;
  9835. }
  9836. #u51945 .text {
  9837. position:absolute;
  9838. align-self:flex-start;
  9839. padding:0px 0px 0px 0px;
  9840. box-sizing:border-box;
  9841. width:100%;
  9842. }
  9843. #u51945_text {
  9844. border-width:0px;
  9845. white-space:nowrap;
  9846. text-transform:none;
  9847. }
  9848. #u51946 {
  9849. border-width:0px;
  9850. position:absolute;
  9851. left:0px;
  9852. top:0px;
  9853. width:0px;
  9854. height:0px;
  9855. }
  9856. #u51947_div {
  9857. border-width:0px;
  9858. position:absolute;
  9859. left:0px;
  9860. top:0px;
  9861. width:30px;
  9862. height:30px;
  9863. background:inherit;
  9864. background-color:rgba(51, 51, 51, 1);
  9865. box-sizing:border-box;
  9866. border-width:1px;
  9867. border-style:solid;
  9868. border-color:rgba(121, 121, 121, 1);
  9869. border-radius:4px;
  9870. -moz-box-shadow:none;
  9871. -webkit-box-shadow:none;
  9872. box-shadow:none;
  9873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9874. font-weight:400;
  9875. font-style:normal;
  9876. font-size:8px;
  9877. color:#FFFFFF;
  9878. }
  9879. #u51947 {
  9880. border-width:0px;
  9881. position:absolute;
  9882. left:611px;
  9883. top:212px;
  9884. width:30px;
  9885. height:30px;
  9886. display:flex;
  9887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9888. font-weight:400;
  9889. font-style:normal;
  9890. font-size:8px;
  9891. color:#FFFFFF;
  9892. }
  9893. #u51947 .text {
  9894. position:absolute;
  9895. align-self:center;
  9896. padding:2px 2px 2px 2px;
  9897. box-sizing:border-box;
  9898. width:100%;
  9899. }
  9900. #u51947_text {
  9901. border-width:0px;
  9902. word-wrap:break-word;
  9903. text-transform:none;
  9904. }
  9905. #u51948_div {
  9906. border-width:0px;
  9907. position:absolute;
  9908. left:0px;
  9909. top:0px;
  9910. width:25px;
  9911. height:17px;
  9912. background:inherit;
  9913. background-color:rgba(255, 255, 255, 0);
  9914. border:none;
  9915. border-radius:0px;
  9916. -moz-box-shadow:none;
  9917. -webkit-box-shadow:none;
  9918. box-shadow:none;
  9919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9920. font-weight:400;
  9921. font-style:normal;
  9922. font-size:12px;
  9923. text-align:center;
  9924. }
  9925. #u51948 {
  9926. border-width:0px;
  9927. position:absolute;
  9928. left:614px;
  9929. top:247px;
  9930. width:25px;
  9931. height:17px;
  9932. display:flex;
  9933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9934. font-weight:400;
  9935. font-style:normal;
  9936. font-size:12px;
  9937. text-align:center;
  9938. }
  9939. #u51948 .text {
  9940. position:absolute;
  9941. align-self:flex-start;
  9942. padding:0px 0px 0px 0px;
  9943. box-sizing:border-box;
  9944. width:100%;
  9945. }
  9946. #u51948_text {
  9947. border-width:0px;
  9948. white-space:nowrap;
  9949. text-transform:none;
  9950. }
  9951. #u51949 {
  9952. border-width:0px;
  9953. position:absolute;
  9954. left:0px;
  9955. top:0px;
  9956. width:0px;
  9957. height:0px;
  9958. }
  9959. #u51950_div {
  9960. border-width:0px;
  9961. position:absolute;
  9962. left:0px;
  9963. top:0px;
  9964. width:30px;
  9965. height:30px;
  9966. background:inherit;
  9967. background-color:rgba(51, 51, 51, 1);
  9968. box-sizing:border-box;
  9969. border-width:1px;
  9970. border-style:solid;
  9971. border-color:rgba(121, 121, 121, 1);
  9972. border-radius:4px;
  9973. -moz-box-shadow:none;
  9974. -webkit-box-shadow:none;
  9975. box-shadow:none;
  9976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9977. font-weight:400;
  9978. font-style:normal;
  9979. font-size:8px;
  9980. color:#FFFFFF;
  9981. }
  9982. #u51950 {
  9983. border-width:0px;
  9984. position:absolute;
  9985. left:701px;
  9986. top:212px;
  9987. width:30px;
  9988. height:30px;
  9989. display:flex;
  9990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9991. font-weight:400;
  9992. font-style:normal;
  9993. font-size:8px;
  9994. color:#FFFFFF;
  9995. }
  9996. #u51950 .text {
  9997. position:absolute;
  9998. align-self:center;
  9999. padding:2px 2px 2px 2px;
  10000. box-sizing:border-box;
  10001. width:100%;
  10002. }
  10003. #u51950_text {
  10004. border-width:0px;
  10005. word-wrap:break-word;
  10006. text-transform:none;
  10007. }
  10008. #u51951_div {
  10009. border-width:0px;
  10010. position:absolute;
  10011. left:0px;
  10012. top:0px;
  10013. width:25px;
  10014. height:17px;
  10015. background:inherit;
  10016. background-color:rgba(255, 255, 255, 0);
  10017. border:none;
  10018. border-radius:0px;
  10019. -moz-box-shadow:none;
  10020. -webkit-box-shadow:none;
  10021. box-shadow:none;
  10022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10023. font-weight:400;
  10024. font-style:normal;
  10025. font-size:12px;
  10026. text-align:center;
  10027. }
  10028. #u51951 {
  10029. border-width:0px;
  10030. position:absolute;
  10031. left:704px;
  10032. top:247px;
  10033. width:25px;
  10034. height:17px;
  10035. display:flex;
  10036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10037. font-weight:400;
  10038. font-style:normal;
  10039. font-size:12px;
  10040. text-align:center;
  10041. }
  10042. #u51951 .text {
  10043. position:absolute;
  10044. align-self:flex-start;
  10045. padding:0px 0px 0px 0px;
  10046. box-sizing:border-box;
  10047. width:100%;
  10048. }
  10049. #u51951_text {
  10050. border-width:0px;
  10051. white-space:nowrap;
  10052. text-transform:none;
  10053. }
  10054. #u51952 {
  10055. border-width:0px;
  10056. position:absolute;
  10057. left:0px;
  10058. top:0px;
  10059. width:0px;
  10060. height:0px;
  10061. }
  10062. #u51953_div {
  10063. border-width:0px;
  10064. position:absolute;
  10065. left:0px;
  10066. top:0px;
  10067. width:30px;
  10068. height:30px;
  10069. background:inherit;
  10070. background-color:rgba(51, 51, 51, 1);
  10071. box-sizing:border-box;
  10072. border-width:1px;
  10073. border-style:solid;
  10074. border-color:rgba(121, 121, 121, 1);
  10075. border-radius:4px;
  10076. -moz-box-shadow:none;
  10077. -webkit-box-shadow:none;
  10078. box-shadow:none;
  10079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10080. font-weight:400;
  10081. font-style:normal;
  10082. font-size:8px;
  10083. color:#FFFFFF;
  10084. }
  10085. #u51953 {
  10086. border-width:0px;
  10087. position:absolute;
  10088. left:790px;
  10089. top:212px;
  10090. width:30px;
  10091. height:30px;
  10092. display:flex;
  10093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10094. font-weight:400;
  10095. font-style:normal;
  10096. font-size:8px;
  10097. color:#FFFFFF;
  10098. }
  10099. #u51953 .text {
  10100. position:absolute;
  10101. align-self:center;
  10102. padding:2px 2px 2px 2px;
  10103. box-sizing:border-box;
  10104. width:100%;
  10105. }
  10106. #u51953_text {
  10107. border-width:0px;
  10108. word-wrap:break-word;
  10109. text-transform:none;
  10110. }
  10111. #u51954_div {
  10112. border-width:0px;
  10113. position:absolute;
  10114. left:0px;
  10115. top:0px;
  10116. width:25px;
  10117. height:17px;
  10118. background:inherit;
  10119. background-color:rgba(255, 255, 255, 0);
  10120. border:none;
  10121. border-radius:0px;
  10122. -moz-box-shadow:none;
  10123. -webkit-box-shadow:none;
  10124. box-shadow:none;
  10125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10126. font-weight:400;
  10127. font-style:normal;
  10128. font-size:12px;
  10129. text-align:center;
  10130. }
  10131. #u51954 {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:793px;
  10135. top:247px;
  10136. width:25px;
  10137. height:17px;
  10138. display:flex;
  10139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10140. font-weight:400;
  10141. font-style:normal;
  10142. font-size:12px;
  10143. text-align:center;
  10144. }
  10145. #u51954 .text {
  10146. position:absolute;
  10147. align-self:flex-start;
  10148. padding:0px 0px 0px 0px;
  10149. box-sizing:border-box;
  10150. width:100%;
  10151. }
  10152. #u51954_text {
  10153. border-width:0px;
  10154. white-space:nowrap;
  10155. text-transform:none;
  10156. }
  10157. #u51955 {
  10158. border-width:0px;
  10159. position:absolute;
  10160. left:0px;
  10161. top:0px;
  10162. width:0px;
  10163. height:0px;
  10164. }
  10165. #u51956_div {
  10166. border-width:0px;
  10167. position:absolute;
  10168. left:0px;
  10169. top:0px;
  10170. width:375px;
  10171. height:80px;
  10172. background:inherit;
  10173. background-color:rgba(255, 255, 255, 1);
  10174. box-sizing:border-box;
  10175. border-width:1px;
  10176. border-style:solid;
  10177. border-color:rgba(242, 242, 242, 1);
  10178. border-left:0px;
  10179. border-top:0px;
  10180. border-right:0px;
  10181. border-radius:0px;
  10182. border-bottom-right-radius:0px;
  10183. border-bottom-left-radius:0px;
  10184. -moz-box-shadow:none;
  10185. -webkit-box-shadow:none;
  10186. box-shadow:none;
  10187. }
  10188. #u51956 {
  10189. border-width:0px;
  10190. position:absolute;
  10191. left:967px;
  10192. top:198px;
  10193. width:375px;
  10194. height:80px;
  10195. display:flex;
  10196. }
  10197. #u51956 .text {
  10198. position:absolute;
  10199. align-self:center;
  10200. padding:2px 2px 2px 2px;
  10201. box-sizing:border-box;
  10202. width:100%;
  10203. }
  10204. #u51956_text {
  10205. border-width:0px;
  10206. word-wrap:break-word;
  10207. text-transform:none;
  10208. visibility:hidden;
  10209. }
  10210. #u51957 {
  10211. border-width:0px;
  10212. position:absolute;
  10213. left:0px;
  10214. top:0px;
  10215. width:0px;
  10216. height:0px;
  10217. }
  10218. #u51958_div {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:0px;
  10222. top:0px;
  10223. width:30px;
  10224. height:30px;
  10225. background:inherit;
  10226. background-color:rgba(51, 51, 51, 1);
  10227. box-sizing:border-box;
  10228. border-width:1px;
  10229. border-style:solid;
  10230. border-color:rgba(121, 121, 121, 1);
  10231. border-radius:4px;
  10232. -moz-box-shadow:none;
  10233. -webkit-box-shadow:none;
  10234. box-shadow:none;
  10235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10236. font-weight:400;
  10237. font-style:normal;
  10238. font-size:8px;
  10239. color:#FFFFFF;
  10240. }
  10241. #u51958 {
  10242. border-width:0px;
  10243. position:absolute;
  10244. left:997px;
  10245. top:212px;
  10246. width:30px;
  10247. height:30px;
  10248. display:flex;
  10249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10250. font-weight:400;
  10251. font-style:normal;
  10252. font-size:8px;
  10253. color:#FFFFFF;
  10254. }
  10255. #u51958 .text {
  10256. position:absolute;
  10257. align-self:center;
  10258. padding:2px 2px 2px 2px;
  10259. box-sizing:border-box;
  10260. width:100%;
  10261. }
  10262. #u51958_text {
  10263. border-width:0px;
  10264. word-wrap:break-word;
  10265. text-transform:none;
  10266. }
  10267. #u51959_div {
  10268. border-width:0px;
  10269. position:absolute;
  10270. left:0px;
  10271. top:0px;
  10272. width:25px;
  10273. height:17px;
  10274. background:inherit;
  10275. background-color:rgba(255, 255, 255, 0);
  10276. border:none;
  10277. border-radius:0px;
  10278. -moz-box-shadow:none;
  10279. -webkit-box-shadow:none;
  10280. box-shadow:none;
  10281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10282. font-weight:400;
  10283. font-style:normal;
  10284. font-size:12px;
  10285. text-align:center;
  10286. }
  10287. #u51959 {
  10288. border-width:0px;
  10289. position:absolute;
  10290. left:1000px;
  10291. top:247px;
  10292. width:25px;
  10293. height:17px;
  10294. display:flex;
  10295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10296. font-weight:400;
  10297. font-style:normal;
  10298. font-size:12px;
  10299. text-align:center;
  10300. }
  10301. #u51959 .text {
  10302. position:absolute;
  10303. align-self:flex-start;
  10304. padding:0px 0px 0px 0px;
  10305. box-sizing:border-box;
  10306. width:100%;
  10307. }
  10308. #u51959_text {
  10309. border-width:0px;
  10310. white-space:nowrap;
  10311. text-transform:none;
  10312. }
  10313. #u51960 {
  10314. border-width:0px;
  10315. position:absolute;
  10316. left:0px;
  10317. top:0px;
  10318. width:0px;
  10319. height:0px;
  10320. }
  10321. #u51961_div {
  10322. border-width:0px;
  10323. position:absolute;
  10324. left:0px;
  10325. top:0px;
  10326. width:30px;
  10327. height:30px;
  10328. background:inherit;
  10329. background-color:rgba(51, 51, 51, 1);
  10330. box-sizing:border-box;
  10331. border-width:1px;
  10332. border-style:solid;
  10333. border-color:rgba(121, 121, 121, 1);
  10334. border-radius:4px;
  10335. -moz-box-shadow:none;
  10336. -webkit-box-shadow:none;
  10337. box-shadow:none;
  10338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10339. font-weight:400;
  10340. font-style:normal;
  10341. font-size:8px;
  10342. color:#FFFFFF;
  10343. }
  10344. #u51961 {
  10345. border-width:0px;
  10346. position:absolute;
  10347. left:1086px;
  10348. top:212px;
  10349. width:30px;
  10350. height:30px;
  10351. display:flex;
  10352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10353. font-weight:400;
  10354. font-style:normal;
  10355. font-size:8px;
  10356. color:#FFFFFF;
  10357. }
  10358. #u51961 .text {
  10359. position:absolute;
  10360. align-self:center;
  10361. padding:2px 2px 2px 2px;
  10362. box-sizing:border-box;
  10363. width:100%;
  10364. }
  10365. #u51961_text {
  10366. border-width:0px;
  10367. word-wrap:break-word;
  10368. text-transform:none;
  10369. }
  10370. #u51962_div {
  10371. border-width:0px;
  10372. position:absolute;
  10373. left:0px;
  10374. top:0px;
  10375. width:25px;
  10376. height:17px;
  10377. background:inherit;
  10378. background-color:rgba(255, 255, 255, 0);
  10379. border:none;
  10380. border-radius:0px;
  10381. -moz-box-shadow:none;
  10382. -webkit-box-shadow:none;
  10383. box-shadow:none;
  10384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10385. font-weight:400;
  10386. font-style:normal;
  10387. font-size:12px;
  10388. text-align:center;
  10389. }
  10390. #u51962 {
  10391. border-width:0px;
  10392. position:absolute;
  10393. left:1089px;
  10394. top:247px;
  10395. width:25px;
  10396. height:17px;
  10397. display:flex;
  10398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10399. font-weight:400;
  10400. font-style:normal;
  10401. font-size:12px;
  10402. text-align:center;
  10403. }
  10404. #u51962 .text {
  10405. position:absolute;
  10406. align-self:flex-start;
  10407. padding:0px 0px 0px 0px;
  10408. box-sizing:border-box;
  10409. width:100%;
  10410. }
  10411. #u51962_text {
  10412. border-width:0px;
  10413. white-space:nowrap;
  10414. text-transform:none;
  10415. }
  10416. #u51963 {
  10417. border-width:0px;
  10418. position:absolute;
  10419. left:0px;
  10420. top:0px;
  10421. width:0px;
  10422. height:0px;
  10423. }
  10424. #u51964_div {
  10425. border-width:0px;
  10426. position:absolute;
  10427. left:0px;
  10428. top:0px;
  10429. width:30px;
  10430. height:30px;
  10431. background:inherit;
  10432. background-color:rgba(51, 51, 51, 1);
  10433. box-sizing:border-box;
  10434. border-width:1px;
  10435. border-style:solid;
  10436. border-color:rgba(121, 121, 121, 1);
  10437. border-radius:4px;
  10438. -moz-box-shadow:none;
  10439. -webkit-box-shadow:none;
  10440. box-shadow:none;
  10441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10442. font-weight:400;
  10443. font-style:normal;
  10444. font-size:8px;
  10445. color:#FFFFFF;
  10446. }
  10447. #u51964 {
  10448. border-width:0px;
  10449. position:absolute;
  10450. left:1176px;
  10451. top:212px;
  10452. width:30px;
  10453. height:30px;
  10454. display:flex;
  10455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10456. font-weight:400;
  10457. font-style:normal;
  10458. font-size:8px;
  10459. color:#FFFFFF;
  10460. }
  10461. #u51964 .text {
  10462. position:absolute;
  10463. align-self:center;
  10464. padding:2px 2px 2px 2px;
  10465. box-sizing:border-box;
  10466. width:100%;
  10467. }
  10468. #u51964_text {
  10469. border-width:0px;
  10470. word-wrap:break-word;
  10471. text-transform:none;
  10472. }
  10473. #u51965_div {
  10474. border-width:0px;
  10475. position:absolute;
  10476. left:0px;
  10477. top:0px;
  10478. width:25px;
  10479. height:17px;
  10480. background:inherit;
  10481. background-color:rgba(255, 255, 255, 0);
  10482. border:none;
  10483. border-radius:0px;
  10484. -moz-box-shadow:none;
  10485. -webkit-box-shadow:none;
  10486. box-shadow:none;
  10487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10488. font-weight:400;
  10489. font-style:normal;
  10490. font-size:12px;
  10491. text-align:center;
  10492. }
  10493. #u51965 {
  10494. border-width:0px;
  10495. position:absolute;
  10496. left:1179px;
  10497. top:247px;
  10498. width:25px;
  10499. height:17px;
  10500. display:flex;
  10501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10502. font-weight:400;
  10503. font-style:normal;
  10504. font-size:12px;
  10505. text-align:center;
  10506. }
  10507. #u51965 .text {
  10508. position:absolute;
  10509. align-self:flex-start;
  10510. padding:0px 0px 0px 0px;
  10511. box-sizing:border-box;
  10512. width:100%;
  10513. }
  10514. #u51965_text {
  10515. border-width:0px;
  10516. white-space:nowrap;
  10517. text-transform:none;
  10518. }
  10519. #u51966 {
  10520. border-width:0px;
  10521. position:absolute;
  10522. left:0px;
  10523. top:0px;
  10524. width:0px;
  10525. height:0px;
  10526. }
  10527. #u51967_div {
  10528. border-width:0px;
  10529. position:absolute;
  10530. left:0px;
  10531. top:0px;
  10532. width:30px;
  10533. height:30px;
  10534. background:inherit;
  10535. background-color:rgba(51, 51, 51, 1);
  10536. box-sizing:border-box;
  10537. border-width:1px;
  10538. border-style:solid;
  10539. border-color:rgba(121, 121, 121, 1);
  10540. border-radius:4px;
  10541. -moz-box-shadow:none;
  10542. -webkit-box-shadow:none;
  10543. box-shadow:none;
  10544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10545. font-weight:400;
  10546. font-style:normal;
  10547. font-size:8px;
  10548. color:#FFFFFF;
  10549. }
  10550. #u51967 {
  10551. border-width:0px;
  10552. position:absolute;
  10553. left:1265px;
  10554. top:212px;
  10555. width:30px;
  10556. height:30px;
  10557. display:flex;
  10558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10559. font-weight:400;
  10560. font-style:normal;
  10561. font-size:8px;
  10562. color:#FFFFFF;
  10563. }
  10564. #u51967 .text {
  10565. position:absolute;
  10566. align-self:center;
  10567. padding:2px 2px 2px 2px;
  10568. box-sizing:border-box;
  10569. width:100%;
  10570. }
  10571. #u51967_text {
  10572. border-width:0px;
  10573. word-wrap:break-word;
  10574. text-transform:none;
  10575. }
  10576. #u51968_div {
  10577. border-width:0px;
  10578. position:absolute;
  10579. left:0px;
  10580. top:0px;
  10581. width:25px;
  10582. height:17px;
  10583. background:inherit;
  10584. background-color:rgba(255, 255, 255, 0);
  10585. border:none;
  10586. border-radius:0px;
  10587. -moz-box-shadow:none;
  10588. -webkit-box-shadow:none;
  10589. box-shadow:none;
  10590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10591. font-weight:400;
  10592. font-style:normal;
  10593. font-size:12px;
  10594. text-align:center;
  10595. }
  10596. #u51968 {
  10597. border-width:0px;
  10598. position:absolute;
  10599. left:1268px;
  10600. top:247px;
  10601. width:25px;
  10602. height:17px;
  10603. display:flex;
  10604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10605. font-weight:400;
  10606. font-style:normal;
  10607. font-size:12px;
  10608. text-align:center;
  10609. }
  10610. #u51968 .text {
  10611. position:absolute;
  10612. align-self:flex-start;
  10613. padding:0px 0px 0px 0px;
  10614. box-sizing:border-box;
  10615. width:100%;
  10616. }
  10617. #u51968_text {
  10618. border-width:0px;
  10619. white-space:nowrap;
  10620. text-transform:none;
  10621. }
  10622. #u51969 {
  10623. border-width:0px;
  10624. position:absolute;
  10625. left:0px;
  10626. top:0px;
  10627. width:0px;
  10628. height:0px;
  10629. }
  10630. #u51970_div {
  10631. border-width:0px;
  10632. position:absolute;
  10633. left:0px;
  10634. top:0px;
  10635. width:375px;
  10636. height:120px;
  10637. background:inherit;
  10638. background-color:rgba(255, 255, 255, 1);
  10639. box-sizing:border-box;
  10640. border-width:1px;
  10641. border-style:solid;
  10642. border-color:rgba(242, 242, 242, 1);
  10643. border-left:0px;
  10644. border-top:0px;
  10645. border-right:0px;
  10646. border-radius:0px;
  10647. border-bottom-right-radius:0px;
  10648. border-bottom-left-radius:0px;
  10649. -moz-box-shadow:none;
  10650. -webkit-box-shadow:none;
  10651. box-shadow:none;
  10652. }
  10653. #u51970 {
  10654. border-width:0px;
  10655. position:absolute;
  10656. left:492px;
  10657. top:529px;
  10658. width:375px;
  10659. height:120px;
  10660. display:flex;
  10661. }
  10662. #u51970 .text {
  10663. position:absolute;
  10664. align-self:center;
  10665. padding:2px 2px 2px 2px;
  10666. box-sizing:border-box;
  10667. width:100%;
  10668. }
  10669. #u51970_text {
  10670. border-width:0px;
  10671. word-wrap:break-word;
  10672. text-transform:none;
  10673. visibility:hidden;
  10674. }
  10675. #u51971 {
  10676. border-width:0px;
  10677. position:absolute;
  10678. left:0px;
  10679. top:0px;
  10680. width:0px;
  10681. height:0px;
  10682. }
  10683. #u51972_div {
  10684. border-width:0px;
  10685. position:absolute;
  10686. left:0px;
  10687. top:0px;
  10688. width:30px;
  10689. height:30px;
  10690. background:inherit;
  10691. background-color:rgba(51, 51, 51, 1);
  10692. box-sizing:border-box;
  10693. border-width:1px;
  10694. border-style:solid;
  10695. border-color:rgba(121, 121, 121, 1);
  10696. border-radius:4px;
  10697. -moz-box-shadow:none;
  10698. -webkit-box-shadow:none;
  10699. box-shadow:none;
  10700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10701. font-weight:400;
  10702. font-style:normal;
  10703. font-size:8px;
  10704. color:#FFFFFF;
  10705. }
  10706. #u51972 {
  10707. border-width:0px;
  10708. position:absolute;
  10709. left:531px;
  10710. top:574px;
  10711. width:30px;
  10712. height:30px;
  10713. display:flex;
  10714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10715. font-weight:400;
  10716. font-style:normal;
  10717. font-size:8px;
  10718. color:#FFFFFF;
  10719. }
  10720. #u51972 .text {
  10721. position:absolute;
  10722. align-self:center;
  10723. padding:2px 2px 2px 2px;
  10724. box-sizing:border-box;
  10725. width:100%;
  10726. }
  10727. #u51972_text {
  10728. border-width:0px;
  10729. word-wrap:break-word;
  10730. text-transform:none;
  10731. }
  10732. #u51973_div {
  10733. border-width:0px;
  10734. position:absolute;
  10735. left:0px;
  10736. top:0px;
  10737. width:49px;
  10738. height:17px;
  10739. background:inherit;
  10740. background-color:rgba(255, 255, 255, 0);
  10741. border:none;
  10742. border-radius:0px;
  10743. -moz-box-shadow:none;
  10744. -webkit-box-shadow:none;
  10745. box-shadow:none;
  10746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10747. font-weight:400;
  10748. font-style:normal;
  10749. font-size:12px;
  10750. text-align:center;
  10751. }
  10752. #u51973 {
  10753. border-width:0px;
  10754. position:absolute;
  10755. left:522px;
  10756. top:609px;
  10757. width:49px;
  10758. height:17px;
  10759. display:flex;
  10760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10761. font-weight:400;
  10762. font-style:normal;
  10763. font-size:12px;
  10764. text-align:center;
  10765. }
  10766. #u51973 .text {
  10767. position:absolute;
  10768. align-self:flex-start;
  10769. padding:0px 0px 0px 0px;
  10770. box-sizing:border-box;
  10771. width:100%;
  10772. }
  10773. #u51973_text {
  10774. border-width:0px;
  10775. white-space:nowrap;
  10776. text-transform:none;
  10777. }
  10778. #u51974 {
  10779. border-width:0px;
  10780. position:absolute;
  10781. left:0px;
  10782. top:0px;
  10783. width:0px;
  10784. height:0px;
  10785. }
  10786. #u51975_div {
  10787. border-width:0px;
  10788. position:absolute;
  10789. left:0px;
  10790. top:0px;
  10791. width:30px;
  10792. height:30px;
  10793. background:inherit;
  10794. background-color:rgba(255, 255, 255, 1);
  10795. box-sizing:border-box;
  10796. border-width:1px;
  10797. border-style:solid;
  10798. border-color:rgba(121, 121, 121, 1);
  10799. border-radius:4px;
  10800. -moz-box-shadow:none;
  10801. -webkit-box-shadow:none;
  10802. box-shadow:none;
  10803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10804. font-weight:400;
  10805. font-style:normal;
  10806. font-size:8px;
  10807. }
  10808. #u51975 {
  10809. border-width:0px;
  10810. position:absolute;
  10811. left:616px;
  10812. top:574px;
  10813. width:30px;
  10814. height:30px;
  10815. display:flex;
  10816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10817. font-weight:400;
  10818. font-style:normal;
  10819. font-size:8px;
  10820. }
  10821. #u51975 .text {
  10822. position:absolute;
  10823. align-self:center;
  10824. padding:2px 2px 2px 2px;
  10825. box-sizing:border-box;
  10826. width:100%;
  10827. }
  10828. #u51975_text {
  10829. border-width:0px;
  10830. word-wrap:break-word;
  10831. text-transform:none;
  10832. }
  10833. #u51976_div {
  10834. border-width:0px;
  10835. position:absolute;
  10836. left:0px;
  10837. top:0px;
  10838. width:49px;
  10839. height:17px;
  10840. background:inherit;
  10841. background-color:rgba(255, 255, 255, 0);
  10842. border:none;
  10843. border-radius:0px;
  10844. -moz-box-shadow:none;
  10845. -webkit-box-shadow:none;
  10846. box-shadow:none;
  10847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10848. font-weight:400;
  10849. font-style:normal;
  10850. font-size:12px;
  10851. text-align:center;
  10852. }
  10853. #u51976 {
  10854. border-width:0px;
  10855. position:absolute;
  10856. left:607px;
  10857. top:609px;
  10858. width:49px;
  10859. height:17px;
  10860. display:flex;
  10861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10862. font-weight:400;
  10863. font-style:normal;
  10864. font-size:12px;
  10865. text-align:center;
  10866. }
  10867. #u51976 .text {
  10868. position:absolute;
  10869. align-self:flex-start;
  10870. padding:0px 0px 0px 0px;
  10871. box-sizing:border-box;
  10872. width:100%;
  10873. }
  10874. #u51976_text {
  10875. border-width:0px;
  10876. white-space:nowrap;
  10877. text-transform:none;
  10878. }
  10879. #u51977_div {
  10880. border-width:0px;
  10881. position:absolute;
  10882. left:0px;
  10883. top:0px;
  10884. width:49px;
  10885. height:17px;
  10886. background:inherit;
  10887. background-color:rgba(255, 255, 255, 0);
  10888. border:none;
  10889. border-radius:0px;
  10890. -moz-box-shadow:none;
  10891. -webkit-box-shadow:none;
  10892. box-shadow:none;
  10893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10894. font-weight:400;
  10895. font-style:normal;
  10896. font-size:12px;
  10897. }
  10898. #u51977 {
  10899. border-width:0px;
  10900. position:absolute;
  10901. left:510px;
  10902. top:541px;
  10903. width:49px;
  10904. height:17px;
  10905. display:flex;
  10906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10907. font-weight:400;
  10908. font-style:normal;
  10909. font-size:12px;
  10910. }
  10911. #u51977 .text {
  10912. position:absolute;
  10913. align-self:flex-start;
  10914. padding:0px 0px 0px 0px;
  10915. box-sizing:border-box;
  10916. width:100%;
  10917. }
  10918. #u51977_text {
  10919. border-width:0px;
  10920. white-space:nowrap;
  10921. text-transform:none;
  10922. }
  10923. #u51978 {
  10924. border-width:0px;
  10925. position:absolute;
  10926. left:0px;
  10927. top:0px;
  10928. width:0px;
  10929. height:0px;
  10930. }
  10931. #u51979_div {
  10932. border-width:0px;
  10933. position:absolute;
  10934. left:0px;
  10935. top:0px;
  10936. width:30px;
  10937. height:30px;
  10938. background:inherit;
  10939. background-color:rgba(51, 51, 51, 1);
  10940. box-sizing:border-box;
  10941. border-width:1px;
  10942. border-style:solid;
  10943. border-color:rgba(121, 121, 121, 1);
  10944. border-radius:4px;
  10945. -moz-box-shadow:none;
  10946. -webkit-box-shadow:none;
  10947. box-shadow:none;
  10948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10949. font-weight:400;
  10950. font-style:normal;
  10951. font-size:8px;
  10952. color:#FFFFFF;
  10953. }
  10954. #u51979 {
  10955. border-width:0px;
  10956. position:absolute;
  10957. left:706px;
  10958. top:574px;
  10959. width:30px;
  10960. height:30px;
  10961. display:flex;
  10962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10963. font-weight:400;
  10964. font-style:normal;
  10965. font-size:8px;
  10966. color:#FFFFFF;
  10967. }
  10968. #u51979 .text {
  10969. position:absolute;
  10970. align-self:center;
  10971. padding:2px 2px 2px 2px;
  10972. box-sizing:border-box;
  10973. width:100%;
  10974. }
  10975. #u51979_text {
  10976. border-width:0px;
  10977. word-wrap:break-word;
  10978. text-transform:none;
  10979. }
  10980. #u51980_div {
  10981. border-width:0px;
  10982. position:absolute;
  10983. left:0px;
  10984. top:0px;
  10985. width:49px;
  10986. height:17px;
  10987. background:inherit;
  10988. background-color:rgba(255, 255, 255, 0);
  10989. border:none;
  10990. border-radius:0px;
  10991. -moz-box-shadow:none;
  10992. -webkit-box-shadow:none;
  10993. box-shadow:none;
  10994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10995. font-weight:400;
  10996. font-style:normal;
  10997. font-size:12px;
  10998. text-align:center;
  10999. }
  11000. #u51980 {
  11001. border-width:0px;
  11002. position:absolute;
  11003. left:697px;
  11004. top:609px;
  11005. width:49px;
  11006. height:17px;
  11007. display:flex;
  11008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11009. font-weight:400;
  11010. font-style:normal;
  11011. font-size:12px;
  11012. text-align:center;
  11013. }
  11014. #u51980 .text {
  11015. position:absolute;
  11016. align-self:flex-start;
  11017. padding:0px 0px 0px 0px;
  11018. box-sizing:border-box;
  11019. width:100%;
  11020. }
  11021. #u51980_text {
  11022. border-width:0px;
  11023. white-space:nowrap;
  11024. text-transform:none;
  11025. }
  11026. #u51981 {
  11027. border-width:0px;
  11028. position:absolute;
  11029. left:0px;
  11030. top:0px;
  11031. width:0px;
  11032. height:0px;
  11033. }
  11034. #u51982_div {
  11035. border-width:0px;
  11036. position:absolute;
  11037. left:0px;
  11038. top:0px;
  11039. width:375px;
  11040. height:80px;
  11041. background:inherit;
  11042. background-color:rgba(255, 255, 255, 1);
  11043. box-sizing:border-box;
  11044. border-width:1px;
  11045. border-style:solid;
  11046. border-color:rgba(242, 242, 242, 1);
  11047. border-left:0px;
  11048. border-top:0px;
  11049. border-right:0px;
  11050. border-radius:0px;
  11051. border-bottom-right-radius:0px;
  11052. border-bottom-left-radius:0px;
  11053. -moz-box-shadow:none;
  11054. -webkit-box-shadow:none;
  11055. box-shadow:none;
  11056. }
  11057. #u51982 {
  11058. border-width:0px;
  11059. position:absolute;
  11060. left:492px;
  11061. top:659px;
  11062. width:375px;
  11063. height:80px;
  11064. display:flex;
  11065. }
  11066. #u51982 .text {
  11067. position:absolute;
  11068. align-self:center;
  11069. padding:2px 2px 2px 2px;
  11070. box-sizing:border-box;
  11071. width:100%;
  11072. }
  11073. #u51982_text {
  11074. border-width:0px;
  11075. word-wrap:break-word;
  11076. text-transform:none;
  11077. visibility:hidden;
  11078. }
  11079. #u51983 {
  11080. border-width:0px;
  11081. position:absolute;
  11082. left:0px;
  11083. top:0px;
  11084. width:0px;
  11085. height:0px;
  11086. }
  11087. #u51984_div {
  11088. border-width:0px;
  11089. position:absolute;
  11090. left:0px;
  11091. top:0px;
  11092. width:30px;
  11093. height:30px;
  11094. background:inherit;
  11095. background-color:rgba(51, 51, 51, 1);
  11096. box-sizing:border-box;
  11097. border-width:1px;
  11098. border-style:solid;
  11099. border-color:rgba(121, 121, 121, 1);
  11100. border-radius:4px;
  11101. -moz-box-shadow:none;
  11102. -webkit-box-shadow:none;
  11103. box-shadow:none;
  11104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11105. font-weight:400;
  11106. font-style:normal;
  11107. font-size:8px;
  11108. color:#FFFFFF;
  11109. }
  11110. #u51984 {
  11111. border-width:0px;
  11112. position:absolute;
  11113. left:530px;
  11114. top:674px;
  11115. width:30px;
  11116. height:30px;
  11117. display:flex;
  11118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11119. font-weight:400;
  11120. font-style:normal;
  11121. font-size:8px;
  11122. color:#FFFFFF;
  11123. }
  11124. #u51984 .text {
  11125. position:absolute;
  11126. align-self:center;
  11127. padding:2px 2px 2px 2px;
  11128. box-sizing:border-box;
  11129. width:100%;
  11130. }
  11131. #u51984_text {
  11132. border-width:0px;
  11133. word-wrap:break-word;
  11134. text-transform:none;
  11135. }
  11136. #u51985_div {
  11137. border-width:0px;
  11138. position:absolute;
  11139. left:0px;
  11140. top:0px;
  11141. width:55px;
  11142. height:17px;
  11143. background:inherit;
  11144. background-color:rgba(255, 255, 255, 0);
  11145. border:none;
  11146. border-radius:0px;
  11147. -moz-box-shadow:none;
  11148. -webkit-box-shadow:none;
  11149. box-shadow:none;
  11150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11151. font-weight:400;
  11152. font-style:normal;
  11153. font-size:12px;
  11154. text-align:center;
  11155. }
  11156. #u51985 {
  11157. border-width:0px;
  11158. position:absolute;
  11159. left:516px;
  11160. top:709px;
  11161. width:55px;
  11162. height:17px;
  11163. display:flex;
  11164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11165. font-weight:400;
  11166. font-style:normal;
  11167. font-size:12px;
  11168. text-align:center;
  11169. }
  11170. #u51985 .text {
  11171. position:absolute;
  11172. align-self:flex-start;
  11173. padding:0px 0px 0px 0px;
  11174. box-sizing:border-box;
  11175. width:100%;
  11176. }
  11177. #u51985_text {
  11178. border-width:0px;
  11179. white-space:nowrap;
  11180. text-transform:none;
  11181. }
  11182. #u51986 {
  11183. border-width:0px;
  11184. position:absolute;
  11185. left:0px;
  11186. top:0px;
  11187. width:0px;
  11188. height:0px;
  11189. }
  11190. #u51987_div {
  11191. border-width:0px;
  11192. position:absolute;
  11193. left:0px;
  11194. top:0px;
  11195. width:30px;
  11196. height:30px;
  11197. background:inherit;
  11198. background-color:rgba(255, 255, 255, 1);
  11199. box-sizing:border-box;
  11200. border-width:1px;
  11201. border-style:solid;
  11202. border-color:rgba(121, 121, 121, 1);
  11203. border-radius:4px;
  11204. -moz-box-shadow:none;
  11205. -webkit-box-shadow:none;
  11206. box-shadow:none;
  11207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11208. font-weight:400;
  11209. font-style:normal;
  11210. font-size:8px;
  11211. }
  11212. #u51987 {
  11213. border-width:0px;
  11214. position:absolute;
  11215. left:616px;
  11216. top:674px;
  11217. width:30px;
  11218. height:30px;
  11219. display:flex;
  11220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11221. font-weight:400;
  11222. font-style:normal;
  11223. font-size:8px;
  11224. }
  11225. #u51987 .text {
  11226. position:absolute;
  11227. align-self:center;
  11228. padding:2px 2px 2px 2px;
  11229. box-sizing:border-box;
  11230. width:100%;
  11231. }
  11232. #u51987_text {
  11233. border-width:0px;
  11234. word-wrap:break-word;
  11235. text-transform:none;
  11236. }
  11237. #u51988_div {
  11238. border-width:0px;
  11239. position:absolute;
  11240. left:0px;
  11241. top:0px;
  11242. width:61px;
  11243. height:17px;
  11244. background:inherit;
  11245. background-color:rgba(255, 255, 255, 0);
  11246. border:none;
  11247. border-radius:0px;
  11248. -moz-box-shadow:none;
  11249. -webkit-box-shadow:none;
  11250. box-shadow:none;
  11251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11252. font-weight:400;
  11253. font-style:normal;
  11254. font-size:12px;
  11255. text-align:center;
  11256. }
  11257. #u51988 {
  11258. border-width:0px;
  11259. position:absolute;
  11260. left:601px;
  11261. top:709px;
  11262. width:61px;
  11263. height:17px;
  11264. display:flex;
  11265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11266. font-weight:400;
  11267. font-style:normal;
  11268. font-size:12px;
  11269. text-align:center;
  11270. }
  11271. #u51988 .text {
  11272. position:absolute;
  11273. align-self:flex-start;
  11274. padding:0px 0px 0px 0px;
  11275. box-sizing:border-box;
  11276. width:100%;
  11277. }
  11278. #u51988_text {
  11279. border-width:0px;
  11280. white-space:nowrap;
  11281. text-transform:none;
  11282. }
  11283. #u51989 {
  11284. border-width:0px;
  11285. position:absolute;
  11286. left:0px;
  11287. top:0px;
  11288. width:0px;
  11289. height:0px;
  11290. }
  11291. #u51990_div {
  11292. border-width:0px;
  11293. position:absolute;
  11294. left:0px;
  11295. top:0px;
  11296. width:375px;
  11297. height:120px;
  11298. background:inherit;
  11299. background-color:rgba(255, 255, 255, 1);
  11300. box-sizing:border-box;
  11301. border-width:1px;
  11302. border-style:solid;
  11303. border-color:rgba(242, 242, 242, 1);
  11304. border-left:0px;
  11305. border-top:0px;
  11306. border-right:0px;
  11307. border-radius:0px;
  11308. border-bottom-right-radius:0px;
  11309. border-bottom-left-radius:0px;
  11310. -moz-box-shadow:none;
  11311. -webkit-box-shadow:none;
  11312. box-shadow:none;
  11313. }
  11314. #u51990 {
  11315. border-width:0px;
  11316. position:absolute;
  11317. left:492px;
  11318. top:399px;
  11319. width:375px;
  11320. height:120px;
  11321. display:flex;
  11322. }
  11323. #u51990 .text {
  11324. position:absolute;
  11325. align-self:center;
  11326. padding:2px 2px 2px 2px;
  11327. box-sizing:border-box;
  11328. width:100%;
  11329. }
  11330. #u51990_text {
  11331. border-width:0px;
  11332. word-wrap:break-word;
  11333. text-transform:none;
  11334. visibility:hidden;
  11335. }
  11336. #u51991_div {
  11337. border-width:0px;
  11338. position:absolute;
  11339. left:0px;
  11340. top:0px;
  11341. width:49px;
  11342. height:17px;
  11343. background:inherit;
  11344. background-color:rgba(255, 255, 255, 0);
  11345. border:none;
  11346. border-radius:0px;
  11347. -moz-box-shadow:none;
  11348. -webkit-box-shadow:none;
  11349. box-shadow:none;
  11350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11351. font-weight:400;
  11352. font-style:normal;
  11353. font-size:12px;
  11354. }
  11355. #u51991 {
  11356. border-width:0px;
  11357. position:absolute;
  11358. left:510px;
  11359. top:411px;
  11360. width:49px;
  11361. height:17px;
  11362. display:flex;
  11363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11364. font-weight:400;
  11365. font-style:normal;
  11366. font-size:12px;
  11367. }
  11368. #u51991 .text {
  11369. position:absolute;
  11370. align-self:flex-start;
  11371. padding:0px 0px 0px 0px;
  11372. box-sizing:border-box;
  11373. width:100%;
  11374. }
  11375. #u51991_text {
  11376. border-width:0px;
  11377. white-space:nowrap;
  11378. text-transform:none;
  11379. }
  11380. #u51992 {
  11381. border-width:0px;
  11382. position:absolute;
  11383. left:0px;
  11384. top:0px;
  11385. width:0px;
  11386. height:0px;
  11387. }
  11388. #u51993_div {
  11389. border-width:0px;
  11390. position:absolute;
  11391. left:0px;
  11392. top:0px;
  11393. width:30px;
  11394. height:30px;
  11395. background:inherit;
  11396. background-color:rgba(255, 255, 255, 1);
  11397. box-sizing:border-box;
  11398. border-width:1px;
  11399. border-style:solid;
  11400. border-color:rgba(121, 121, 121, 1);
  11401. border-radius:4px;
  11402. -moz-box-shadow:none;
  11403. -webkit-box-shadow:none;
  11404. box-shadow:none;
  11405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11406. font-weight:400;
  11407. font-style:normal;
  11408. font-size:8px;
  11409. }
  11410. #u51993 {
  11411. border-width:0px;
  11412. position:absolute;
  11413. left:531px;
  11414. top:444px;
  11415. width:30px;
  11416. height:30px;
  11417. display:flex;
  11418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11419. font-weight:400;
  11420. font-style:normal;
  11421. font-size:8px;
  11422. }
  11423. #u51993 .text {
  11424. position:absolute;
  11425. align-self:center;
  11426. padding:2px 2px 2px 2px;
  11427. box-sizing:border-box;
  11428. width:100%;
  11429. }
  11430. #u51993_text {
  11431. border-width:0px;
  11432. word-wrap:break-word;
  11433. text-transform:none;
  11434. }
  11435. #u51994_div {
  11436. border-width:0px;
  11437. position:absolute;
  11438. left:0px;
  11439. top:0px;
  11440. width:49px;
  11441. height:17px;
  11442. background:inherit;
  11443. background-color:rgba(255, 255, 255, 0);
  11444. border:none;
  11445. border-radius:0px;
  11446. -moz-box-shadow:none;
  11447. -webkit-box-shadow:none;
  11448. box-shadow:none;
  11449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11450. font-weight:400;
  11451. font-style:normal;
  11452. font-size:12px;
  11453. text-align:center;
  11454. }
  11455. #u51994 {
  11456. border-width:0px;
  11457. position:absolute;
  11458. left:522px;
  11459. top:479px;
  11460. width:49px;
  11461. height:17px;
  11462. display:flex;
  11463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11464. font-weight:400;
  11465. font-style:normal;
  11466. font-size:12px;
  11467. text-align:center;
  11468. }
  11469. #u51994 .text {
  11470. position:absolute;
  11471. align-self:flex-start;
  11472. padding:0px 0px 0px 0px;
  11473. box-sizing:border-box;
  11474. width:100%;
  11475. }
  11476. #u51994_text {
  11477. border-width:0px;
  11478. white-space:nowrap;
  11479. text-transform:none;
  11480. }
  11481. #u51995 {
  11482. border-width:0px;
  11483. position:absolute;
  11484. left:0px;
  11485. top:0px;
  11486. width:0px;
  11487. height:0px;
  11488. }
  11489. #u51996_div {
  11490. border-width:0px;
  11491. position:absolute;
  11492. left:0px;
  11493. top:0px;
  11494. width:375px;
  11495. height:120px;
  11496. background:inherit;
  11497. background-color:rgba(255, 255, 255, 1);
  11498. box-sizing:border-box;
  11499. border-width:1px;
  11500. border-style:solid;
  11501. border-color:rgba(242, 242, 242, 1);
  11502. border-left:0px;
  11503. border-top:0px;
  11504. border-right:0px;
  11505. border-radius:0px;
  11506. border-bottom-right-radius:0px;
  11507. border-bottom-left-radius:0px;
  11508. -moz-box-shadow:none;
  11509. -webkit-box-shadow:none;
  11510. box-shadow:none;
  11511. }
  11512. #u51996 {
  11513. border-width:0px;
  11514. position:absolute;
  11515. left:967px;
  11516. top:399px;
  11517. width:375px;
  11518. height:120px;
  11519. display:flex;
  11520. }
  11521. #u51996 .text {
  11522. position:absolute;
  11523. align-self:center;
  11524. padding:2px 2px 2px 2px;
  11525. box-sizing:border-box;
  11526. width:100%;
  11527. }
  11528. #u51996_text {
  11529. border-width:0px;
  11530. word-wrap:break-word;
  11531. text-transform:none;
  11532. visibility:hidden;
  11533. }
  11534. #u51997 {
  11535. border-width:0px;
  11536. position:absolute;
  11537. left:0px;
  11538. top:0px;
  11539. width:0px;
  11540. height:0px;
  11541. }
  11542. #u51998_div {
  11543. border-width:0px;
  11544. position:absolute;
  11545. left:0px;
  11546. top:0px;
  11547. width:30px;
  11548. height:30px;
  11549. background:inherit;
  11550. background-color:rgba(51, 51, 51, 1);
  11551. box-sizing:border-box;
  11552. border-width:1px;
  11553. border-style:solid;
  11554. border-color:rgba(121, 121, 121, 1);
  11555. border-radius:4px;
  11556. -moz-box-shadow:none;
  11557. -webkit-box-shadow:none;
  11558. box-shadow:none;
  11559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11560. font-weight:400;
  11561. font-style:normal;
  11562. font-size:8px;
  11563. color:#FFFFFF;
  11564. }
  11565. #u51998 {
  11566. border-width:0px;
  11567. position:absolute;
  11568. left:1006px;
  11569. top:444px;
  11570. width:30px;
  11571. height:30px;
  11572. display:flex;
  11573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11574. font-weight:400;
  11575. font-style:normal;
  11576. font-size:8px;
  11577. color:#FFFFFF;
  11578. }
  11579. #u51998 .text {
  11580. position:absolute;
  11581. align-self:center;
  11582. padding:2px 2px 2px 2px;
  11583. box-sizing:border-box;
  11584. width:100%;
  11585. }
  11586. #u51998_text {
  11587. border-width:0px;
  11588. word-wrap:break-word;
  11589. text-transform:none;
  11590. }
  11591. #u51999_div {
  11592. border-width:0px;
  11593. position:absolute;
  11594. left:0px;
  11595. top:0px;
  11596. width:49px;
  11597. height:17px;
  11598. background:inherit;
  11599. background-color:rgba(255, 255, 255, 0);
  11600. border:none;
  11601. border-radius:0px;
  11602. -moz-box-shadow:none;
  11603. -webkit-box-shadow:none;
  11604. box-shadow:none;
  11605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11606. font-weight:400;
  11607. font-style:normal;
  11608. font-size:12px;
  11609. text-align:center;
  11610. }
  11611. #u51999 {
  11612. border-width:0px;
  11613. position:absolute;
  11614. left:997px;
  11615. top:479px;
  11616. width:49px;
  11617. height:17px;
  11618. display:flex;
  11619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11620. font-weight:400;
  11621. font-style:normal;
  11622. font-size:12px;
  11623. text-align:center;
  11624. }
  11625. #u51999 .text {
  11626. position:absolute;
  11627. align-self:flex-start;
  11628. padding:0px 0px 0px 0px;
  11629. box-sizing:border-box;
  11630. width:100%;
  11631. }
  11632. #u51999_text {
  11633. border-width:0px;
  11634. white-space:nowrap;
  11635. text-transform:none;
  11636. }
  11637. #u52000 {
  11638. border-width:0px;
  11639. position:absolute;
  11640. left:0px;
  11641. top:0px;
  11642. width:0px;
  11643. height:0px;
  11644. }
  11645. #u52001_div {
  11646. border-width:0px;
  11647. position:absolute;
  11648. left:0px;
  11649. top:0px;
  11650. width:30px;
  11651. height:30px;
  11652. background:inherit;
  11653. background-color:rgba(255, 255, 255, 1);
  11654. box-sizing:border-box;
  11655. border-width:1px;
  11656. border-style:solid;
  11657. border-color:rgba(121, 121, 121, 1);
  11658. border-radius:4px;
  11659. -moz-box-shadow:none;
  11660. -webkit-box-shadow:none;
  11661. box-shadow:none;
  11662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11663. font-weight:400;
  11664. font-style:normal;
  11665. font-size:8px;
  11666. }
  11667. #u52001 {
  11668. border-width:0px;
  11669. position:absolute;
  11670. left:1091px;
  11671. top:444px;
  11672. width:30px;
  11673. height:30px;
  11674. display:flex;
  11675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11676. font-weight:400;
  11677. font-style:normal;
  11678. font-size:8px;
  11679. }
  11680. #u52001 .text {
  11681. position:absolute;
  11682. align-self:center;
  11683. padding:2px 2px 2px 2px;
  11684. box-sizing:border-box;
  11685. width:100%;
  11686. }
  11687. #u52001_text {
  11688. border-width:0px;
  11689. word-wrap:break-word;
  11690. text-transform:none;
  11691. }
  11692. #u52002_div {
  11693. border-width:0px;
  11694. position:absolute;
  11695. left:0px;
  11696. top:0px;
  11697. width:49px;
  11698. height:17px;
  11699. background:inherit;
  11700. background-color:rgba(255, 255, 255, 0);
  11701. border:none;
  11702. border-radius:0px;
  11703. -moz-box-shadow:none;
  11704. -webkit-box-shadow:none;
  11705. box-shadow:none;
  11706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11707. font-weight:400;
  11708. font-style:normal;
  11709. font-size:12px;
  11710. text-align:center;
  11711. }
  11712. #u52002 {
  11713. border-width:0px;
  11714. position:absolute;
  11715. left:1082px;
  11716. top:479px;
  11717. width:49px;
  11718. height:17px;
  11719. display:flex;
  11720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11721. font-weight:400;
  11722. font-style:normal;
  11723. font-size:12px;
  11724. text-align:center;
  11725. }
  11726. #u52002 .text {
  11727. position:absolute;
  11728. align-self:flex-start;
  11729. padding:0px 0px 0px 0px;
  11730. box-sizing:border-box;
  11731. width:100%;
  11732. }
  11733. #u52002_text {
  11734. border-width:0px;
  11735. white-space:nowrap;
  11736. text-transform:none;
  11737. }
  11738. #u52003_div {
  11739. border-width:0px;
  11740. position:absolute;
  11741. left:0px;
  11742. top:0px;
  11743. width:49px;
  11744. height:17px;
  11745. background:inherit;
  11746. background-color:rgba(255, 255, 255, 0);
  11747. border:none;
  11748. border-radius:0px;
  11749. -moz-box-shadow:none;
  11750. -webkit-box-shadow:none;
  11751. box-shadow:none;
  11752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11753. font-weight:400;
  11754. font-style:normal;
  11755. font-size:12px;
  11756. }
  11757. #u52003 {
  11758. border-width:0px;
  11759. position:absolute;
  11760. left:985px;
  11761. top:411px;
  11762. width:49px;
  11763. height:17px;
  11764. display:flex;
  11765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11766. font-weight:400;
  11767. font-style:normal;
  11768. font-size:12px;
  11769. }
  11770. #u52003 .text {
  11771. position:absolute;
  11772. align-self:flex-start;
  11773. padding:0px 0px 0px 0px;
  11774. box-sizing:border-box;
  11775. width:100%;
  11776. }
  11777. #u52003_text {
  11778. border-width:0px;
  11779. white-space:nowrap;
  11780. text-transform:none;
  11781. }
  11782. #u52004 {
  11783. border-width:0px;
  11784. position:absolute;
  11785. left:0px;
  11786. top:0px;
  11787. width:0px;
  11788. height:0px;
  11789. }
  11790. #u52005_div {
  11791. border-width:0px;
  11792. position:absolute;
  11793. left:0px;
  11794. top:0px;
  11795. width:30px;
  11796. height:30px;
  11797. background:inherit;
  11798. background-color:rgba(51, 51, 51, 1);
  11799. box-sizing:border-box;
  11800. border-width:1px;
  11801. border-style:solid;
  11802. border-color:rgba(121, 121, 121, 1);
  11803. border-radius:4px;
  11804. -moz-box-shadow:none;
  11805. -webkit-box-shadow:none;
  11806. box-shadow:none;
  11807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11808. font-weight:400;
  11809. font-style:normal;
  11810. font-size:8px;
  11811. color:#FFFFFF;
  11812. }
  11813. #u52005 {
  11814. border-width:0px;
  11815. position:absolute;
  11816. left:1181px;
  11817. top:444px;
  11818. width:30px;
  11819. height:30px;
  11820. display:flex;
  11821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11822. font-weight:400;
  11823. font-style:normal;
  11824. font-size:8px;
  11825. color:#FFFFFF;
  11826. }
  11827. #u52005 .text {
  11828. position:absolute;
  11829. align-self:center;
  11830. padding:2px 2px 2px 2px;
  11831. box-sizing:border-box;
  11832. width:100%;
  11833. }
  11834. #u52005_text {
  11835. border-width:0px;
  11836. word-wrap:break-word;
  11837. text-transform:none;
  11838. }
  11839. #u52006_div {
  11840. border-width:0px;
  11841. position:absolute;
  11842. left:0px;
  11843. top:0px;
  11844. width:49px;
  11845. height:17px;
  11846. background:inherit;
  11847. background-color:rgba(255, 255, 255, 0);
  11848. border:none;
  11849. border-radius:0px;
  11850. -moz-box-shadow:none;
  11851. -webkit-box-shadow:none;
  11852. box-shadow:none;
  11853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11854. font-weight:400;
  11855. font-style:normal;
  11856. font-size:12px;
  11857. text-align:center;
  11858. }
  11859. #u52006 {
  11860. border-width:0px;
  11861. position:absolute;
  11862. left:1172px;
  11863. top:479px;
  11864. width:49px;
  11865. height:17px;
  11866. display:flex;
  11867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11868. font-weight:400;
  11869. font-style:normal;
  11870. font-size:12px;
  11871. text-align:center;
  11872. }
  11873. #u52006 .text {
  11874. position:absolute;
  11875. align-self:flex-start;
  11876. padding:0px 0px 0px 0px;
  11877. box-sizing:border-box;
  11878. width:100%;
  11879. }
  11880. #u52006_text {
  11881. border-width:0px;
  11882. white-space:nowrap;
  11883. text-transform:none;
  11884. }
  11885. #u52007 {
  11886. border-width:0px;
  11887. position:absolute;
  11888. left:0px;
  11889. top:0px;
  11890. width:0px;
  11891. height:0px;
  11892. }
  11893. #u52008_div {
  11894. border-width:0px;
  11895. position:absolute;
  11896. left:0px;
  11897. top:0px;
  11898. width:375px;
  11899. height:80px;
  11900. background:inherit;
  11901. background-color:rgba(255, 255, 255, 1);
  11902. box-sizing:border-box;
  11903. border-width:1px;
  11904. border-style:solid;
  11905. border-color:rgba(242, 242, 242, 1);
  11906. border-left:0px;
  11907. border-top:0px;
  11908. border-right:0px;
  11909. border-radius:0px;
  11910. border-bottom-right-radius:0px;
  11911. border-bottom-left-radius:0px;
  11912. -moz-box-shadow:none;
  11913. -webkit-box-shadow:none;
  11914. box-shadow:none;
  11915. }
  11916. #u52008 {
  11917. border-width:0px;
  11918. position:absolute;
  11919. left:967px;
  11920. top:529px;
  11921. width:375px;
  11922. height:80px;
  11923. display:flex;
  11924. }
  11925. #u52008 .text {
  11926. position:absolute;
  11927. align-self:center;
  11928. padding:2px 2px 2px 2px;
  11929. box-sizing:border-box;
  11930. width:100%;
  11931. }
  11932. #u52008_text {
  11933. border-width:0px;
  11934. word-wrap:break-word;
  11935. text-transform:none;
  11936. visibility:hidden;
  11937. }
  11938. #u52009 {
  11939. border-width:0px;
  11940. position:absolute;
  11941. left:0px;
  11942. top:0px;
  11943. width:0px;
  11944. height:0px;
  11945. }
  11946. #u52010_div {
  11947. border-width:0px;
  11948. position:absolute;
  11949. left:0px;
  11950. top:0px;
  11951. width:30px;
  11952. height:30px;
  11953. background:inherit;
  11954. background-color:rgba(51, 51, 51, 1);
  11955. box-sizing:border-box;
  11956. border-width:1px;
  11957. border-style:solid;
  11958. border-color:rgba(121, 121, 121, 1);
  11959. border-radius:4px;
  11960. -moz-box-shadow:none;
  11961. -webkit-box-shadow:none;
  11962. box-shadow:none;
  11963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11964. font-weight:400;
  11965. font-style:normal;
  11966. font-size:8px;
  11967. color:#FFFFFF;
  11968. }
  11969. #u52010 {
  11970. border-width:0px;
  11971. position:absolute;
  11972. left:1005px;
  11973. top:544px;
  11974. width:30px;
  11975. height:30px;
  11976. display:flex;
  11977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11978. font-weight:400;
  11979. font-style:normal;
  11980. font-size:8px;
  11981. color:#FFFFFF;
  11982. }
  11983. #u52010 .text {
  11984. position:absolute;
  11985. align-self:center;
  11986. padding:2px 2px 2px 2px;
  11987. box-sizing:border-box;
  11988. width:100%;
  11989. }
  11990. #u52010_text {
  11991. border-width:0px;
  11992. word-wrap:break-word;
  11993. text-transform:none;
  11994. }
  11995. #u52011_div {
  11996. border-width:0px;
  11997. position:absolute;
  11998. left:0px;
  11999. top:0px;
  12000. width:55px;
  12001. height:17px;
  12002. background:inherit;
  12003. background-color:rgba(255, 255, 255, 0);
  12004. border:none;
  12005. border-radius:0px;
  12006. -moz-box-shadow:none;
  12007. -webkit-box-shadow:none;
  12008. box-shadow:none;
  12009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12010. font-weight:400;
  12011. font-style:normal;
  12012. font-size:12px;
  12013. text-align:center;
  12014. }
  12015. #u52011 {
  12016. border-width:0px;
  12017. position:absolute;
  12018. left:991px;
  12019. top:579px;
  12020. width:55px;
  12021. height:17px;
  12022. display:flex;
  12023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12024. font-weight:400;
  12025. font-style:normal;
  12026. font-size:12px;
  12027. text-align:center;
  12028. }
  12029. #u52011 .text {
  12030. position:absolute;
  12031. align-self:flex-start;
  12032. padding:0px 0px 0px 0px;
  12033. box-sizing:border-box;
  12034. width:100%;
  12035. }
  12036. #u52011_text {
  12037. border-width:0px;
  12038. white-space:nowrap;
  12039. text-transform:none;
  12040. }
  12041. #u52012 {
  12042. border-width:0px;
  12043. position:absolute;
  12044. left:0px;
  12045. top:0px;
  12046. width:0px;
  12047. height:0px;
  12048. }
  12049. #u52013_div {
  12050. border-width:0px;
  12051. position:absolute;
  12052. left:0px;
  12053. top:0px;
  12054. width:30px;
  12055. height:30px;
  12056. background:inherit;
  12057. background-color:rgba(255, 255, 255, 1);
  12058. box-sizing:border-box;
  12059. border-width:1px;
  12060. border-style:solid;
  12061. border-color:rgba(121, 121, 121, 1);
  12062. border-radius:4px;
  12063. -moz-box-shadow:none;
  12064. -webkit-box-shadow:none;
  12065. box-shadow:none;
  12066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12067. font-weight:400;
  12068. font-style:normal;
  12069. font-size:8px;
  12070. }
  12071. #u52013 {
  12072. border-width:0px;
  12073. position:absolute;
  12074. left:1091px;
  12075. top:544px;
  12076. width:30px;
  12077. height:30px;
  12078. display:flex;
  12079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12080. font-weight:400;
  12081. font-style:normal;
  12082. font-size:8px;
  12083. }
  12084. #u52013 .text {
  12085. position:absolute;
  12086. align-self:center;
  12087. padding:2px 2px 2px 2px;
  12088. box-sizing:border-box;
  12089. width:100%;
  12090. }
  12091. #u52013_text {
  12092. border-width:0px;
  12093. word-wrap:break-word;
  12094. text-transform:none;
  12095. }
  12096. #u52014_div {
  12097. border-width:0px;
  12098. position:absolute;
  12099. left:0px;
  12100. top:0px;
  12101. width:61px;
  12102. height:17px;
  12103. background:inherit;
  12104. background-color:rgba(255, 255, 255, 0);
  12105. border:none;
  12106. border-radius:0px;
  12107. -moz-box-shadow:none;
  12108. -webkit-box-shadow:none;
  12109. box-shadow:none;
  12110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12111. font-weight:400;
  12112. font-style:normal;
  12113. font-size:12px;
  12114. text-align:center;
  12115. }
  12116. #u52014 {
  12117. border-width:0px;
  12118. position:absolute;
  12119. left:1076px;
  12120. top:579px;
  12121. width:61px;
  12122. height:17px;
  12123. display:flex;
  12124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12125. font-weight:400;
  12126. font-style:normal;
  12127. font-size:12px;
  12128. text-align:center;
  12129. }
  12130. #u52014 .text {
  12131. position:absolute;
  12132. align-self:flex-start;
  12133. padding:0px 0px 0px 0px;
  12134. box-sizing:border-box;
  12135. width:100%;
  12136. }
  12137. #u52014_text {
  12138. border-width:0px;
  12139. white-space:nowrap;
  12140. text-transform:none;
  12141. }