styles.css 120 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u137536_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u137536 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u137536 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u137536_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u137537_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u137537 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u137537 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u137537_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u137538_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u137538 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u137538 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u137538_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u137539 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u137540_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u137540 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u137540 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u137540_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u137541_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u137541 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u137541 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u137541_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u137542_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u137542 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u137542 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u137542_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u137543 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u137544_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u137544_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u137544_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u137544 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u137544 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u137544_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u137544.disabled {
  356. }
  357. .u137544_input_option {
  358. font-size:14px;
  359. }
  360. #u137545_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u137545 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u137545 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u137545_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u137546_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u137546 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u137546 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u137546_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u137547_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u137547 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u137547 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u137547_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u137548 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u137549_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u137549 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u137549 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u137549_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u137550_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u137550 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u137550 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u137550_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u137551 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u137552_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u137552 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u137552 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u137552_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u137553_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u137553 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u137553 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u137553_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u137554 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u137555_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u137555 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u137555 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u137555_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u137556_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u137556 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u137556 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u137556_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u137557 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u137558_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u137558 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u137558 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u137558_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u137559_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u137559 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u137559 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u137559_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u137560 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u137561_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u137561 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u137561 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u137561_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u137562_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u137562 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u137562 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u137562_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u137563 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u137564_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u137564 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u137564 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u137564_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u137565_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u137565 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u137565 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u137565_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u137566 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u137567_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u137567 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u137567 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u137567_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u137568_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u137568 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u137568 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u137568_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u137569 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u137570_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u137570 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u137570 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u137570_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u137571_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u137571 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u137571 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u137571_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u137572 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u137573_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u137573 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u137573 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u137573_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u137574_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u137574 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u137574 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u137574_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u137575 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u137576_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u137576 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u137576 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u137576_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u137577_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u137577 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u137577 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u137577_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u137578_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u137578 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u137578 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u137578_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u137579_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u137579 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u137579 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u137579_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u137580_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u137580 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u137580 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u137580_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u137581_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u137581 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u137581 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u137581_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u137582 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u137583_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u137583 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u137583 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u137583_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u137584_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u137584 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u137584 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u137584_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u137585 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u137586_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u137586 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u137586 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u137586_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u137587_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u137587 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u137587 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u137587_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u137588_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1265px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. color:#1890FF;
  1653. }
  1654. #u137588 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:330px;
  1658. top:50px;
  1659. width:1265px;
  1660. height:1180px;
  1661. display:flex;
  1662. color:#1890FF;
  1663. }
  1664. #u137588 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u137588_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u137589_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:73px;
  1683. height:25px;
  1684. background:inherit;
  1685. background-color:rgba(255, 255, 255, 0);
  1686. border:none;
  1687. border-radius:0px;
  1688. -moz-box-shadow:none;
  1689. -webkit-box-shadow:none;
  1690. box-shadow:none;
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:18px;
  1695. }
  1696. #u137589 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:350px;
  1700. top:60px;
  1701. width:73px;
  1702. height:25px;
  1703. display:flex;
  1704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. font-size:18px;
  1708. }
  1709. #u137589 .text {
  1710. position:absolute;
  1711. align-self:flex-start;
  1712. padding:0px 0px 0px 0px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u137589_text {
  1717. border-width:0px;
  1718. white-space:nowrap;
  1719. text-transform:none;
  1720. }
  1721. #u137590 {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:0px;
  1727. height:0px;
  1728. }
  1729. #u137591_div {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:200px;
  1735. height:1180px;
  1736. background:inherit;
  1737. background-color:rgba(255, 255, 255, 1);
  1738. border:none;
  1739. border-radius:0px;
  1740. -moz-box-shadow:none;
  1741. -webkit-box-shadow:none;
  1742. box-shadow:none;
  1743. }
  1744. #u137591 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:120px;
  1748. top:51px;
  1749. width:200px;
  1750. height:1180px;
  1751. display:flex;
  1752. }
  1753. #u137591 .text {
  1754. position:absolute;
  1755. align-self:center;
  1756. padding:2px 2px 2px 2px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u137591_text {
  1761. border-width:0px;
  1762. word-wrap:break-word;
  1763. text-transform:none;
  1764. visibility:hidden;
  1765. }
  1766. #u137592_div {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:0px;
  1770. top:0px;
  1771. width:200px;
  1772. height:60px;
  1773. background:inherit;
  1774. background-color:rgba(224, 231, 247, 1);
  1775. border:none;
  1776. border-radius:0px;
  1777. -moz-box-shadow:none;
  1778. -webkit-box-shadow:none;
  1779. box-shadow:none;
  1780. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1781. font-weight:500;
  1782. font-style:normal;
  1783. font-size:18px;
  1784. }
  1785. #u137592 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:120px;
  1789. top:51px;
  1790. width:200px;
  1791. height:60px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1794. font-weight:500;
  1795. font-style:normal;
  1796. font-size:18px;
  1797. }
  1798. #u137592 .text {
  1799. position:absolute;
  1800. align-self:center;
  1801. padding:0px 0px 0px 20px;
  1802. box-sizing:border-box;
  1803. width:100%;
  1804. }
  1805. #u137592_text {
  1806. border-width:0px;
  1807. word-wrap:break-word;
  1808. text-transform:none;
  1809. }
  1810. #u137593_div {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:0px;
  1814. top:0px;
  1815. width:65px;
  1816. height:22px;
  1817. background:inherit;
  1818. background-color:rgba(255, 255, 255, 0);
  1819. border:none;
  1820. border-radius:0px;
  1821. -moz-box-shadow:none;
  1822. -webkit-box-shadow:none;
  1823. box-shadow:none;
  1824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1825. font-weight:400;
  1826. font-style:normal;
  1827. font-size:16px;
  1828. color:#1890FF;
  1829. }
  1830. #u137593 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:147px;
  1834. top:162px;
  1835. width:65px;
  1836. height:22px;
  1837. display:flex;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. font-size:16px;
  1842. color:#1890FF;
  1843. }
  1844. #u137593 .text {
  1845. position:absolute;
  1846. align-self:flex-start;
  1847. padding:0px 0px 0px 0px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u137593_text {
  1852. border-width:0px;
  1853. white-space:nowrap;
  1854. text-transform:none;
  1855. }
  1856. #u137594_div {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:49px;
  1862. height:17px;
  1863. background:inherit;
  1864. background-color:rgba(255, 255, 255, 0);
  1865. border:none;
  1866. border-radius:0px;
  1867. -moz-box-shadow:none;
  1868. -webkit-box-shadow:none;
  1869. box-shadow:none;
  1870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1871. font-weight:400;
  1872. font-style:normal;
  1873. font-size:12px;
  1874. color:#AAAAAA;
  1875. }
  1876. #u137594 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:147px;
  1880. top:126px;
  1881. width:49px;
  1882. height:17px;
  1883. display:flex;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:12px;
  1888. color:#AAAAAA;
  1889. }
  1890. #u137594 .text {
  1891. position:absolute;
  1892. align-self:flex-start;
  1893. padding:0px 0px 0px 0px;
  1894. box-sizing:border-box;
  1895. width:100%;
  1896. }
  1897. #u137594_text {
  1898. border-width:0px;
  1899. white-space:nowrap;
  1900. text-transform:none;
  1901. }
  1902. #u137595_img {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:0px;
  1906. top:0px;
  1907. width:201px;
  1908. height:2px;
  1909. }
  1910. #u137595 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:120px;
  1914. top:296px;
  1915. width:200px;
  1916. height:1px;
  1917. display:flex;
  1918. }
  1919. #u137595 .text {
  1920. position:absolute;
  1921. align-self:center;
  1922. padding:2px 2px 2px 2px;
  1923. box-sizing:border-box;
  1924. width:100%;
  1925. }
  1926. #u137595_text {
  1927. border-width:0px;
  1928. word-wrap:break-word;
  1929. text-transform:none;
  1930. visibility:hidden;
  1931. }
  1932. #u137596_div {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:0px;
  1937. width:65px;
  1938. height:22px;
  1939. background:inherit;
  1940. background-color:rgba(255, 255, 255, 0);
  1941. border:none;
  1942. border-radius:0px;
  1943. -moz-box-shadow:none;
  1944. -webkit-box-shadow:none;
  1945. box-shadow:none;
  1946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1947. font-weight:400;
  1948. font-style:normal;
  1949. font-size:16px;
  1950. }
  1951. #u137596 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:147px;
  1955. top:353px;
  1956. width:65px;
  1957. height:22px;
  1958. display:flex;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:16px;
  1963. }
  1964. #u137596 .text {
  1965. position:absolute;
  1966. align-self:flex-start;
  1967. padding:0px 0px 0px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u137596_text {
  1972. border-width:0px;
  1973. white-space:nowrap;
  1974. text-transform:none;
  1975. }
  1976. #u137597_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:49px;
  1982. height:17px;
  1983. background:inherit;
  1984. background-color:rgba(255, 255, 255, 0);
  1985. border:none;
  1986. border-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:12px;
  1994. color:#AAAAAA;
  1995. }
  1996. #u137597 {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:147px;
  2000. top:317px;
  2001. width:49px;
  2002. height:17px;
  2003. display:flex;
  2004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2005. font-weight:400;
  2006. font-style:normal;
  2007. font-size:12px;
  2008. color:#AAAAAA;
  2009. }
  2010. #u137597 .text {
  2011. position:absolute;
  2012. align-self:flex-start;
  2013. padding:0px 0px 0px 0px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u137597_text {
  2018. border-width:0px;
  2019. white-space:nowrap;
  2020. text-transform:none;
  2021. }
  2022. #u137598_div {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:65px;
  2028. height:22px;
  2029. background:inherit;
  2030. background-color:rgba(255, 255, 255, 0);
  2031. border:none;
  2032. border-radius:0px;
  2033. -moz-box-shadow:none;
  2034. -webkit-box-shadow:none;
  2035. box-shadow:none;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:16px;
  2040. }
  2041. #u137598 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:147px;
  2045. top:204px;
  2046. width:65px;
  2047. height:22px;
  2048. display:flex;
  2049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2050. font-weight:400;
  2051. font-style:normal;
  2052. font-size:16px;
  2053. }
  2054. #u137598 .text {
  2055. position:absolute;
  2056. align-self:flex-start;
  2057. padding:0px 0px 0px 0px;
  2058. box-sizing:border-box;
  2059. width:100%;
  2060. }
  2061. #u137598_text {
  2062. border-width:0px;
  2063. white-space:nowrap;
  2064. text-transform:none;
  2065. }
  2066. #u137599_div {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:0px;
  2070. top:0px;
  2071. width:65px;
  2072. height:22px;
  2073. background:inherit;
  2074. background-color:rgba(255, 255, 255, 0);
  2075. border:none;
  2076. border-radius:0px;
  2077. -moz-box-shadow:none;
  2078. -webkit-box-shadow:none;
  2079. box-shadow:none;
  2080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2081. font-weight:400;
  2082. font-style:normal;
  2083. font-size:16px;
  2084. }
  2085. #u137599 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:147px;
  2089. top:395px;
  2090. width:65px;
  2091. height:22px;
  2092. display:flex;
  2093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2094. font-weight:400;
  2095. font-style:normal;
  2096. font-size:16px;
  2097. }
  2098. #u137599 .text {
  2099. position:absolute;
  2100. align-self:flex-start;
  2101. padding:0px 0px 0px 0px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u137599_text {
  2106. border-width:0px;
  2107. white-space:nowrap;
  2108. text-transform:none;
  2109. }
  2110. #u137600_div {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:65px;
  2116. height:22px;
  2117. background:inherit;
  2118. background-color:rgba(255, 255, 255, 0);
  2119. border:none;
  2120. border-radius:0px;
  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:16px;
  2128. }
  2129. #u137600 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:147px;
  2133. top:246px;
  2134. width:65px;
  2135. height:22px;
  2136. display:flex;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:16px;
  2141. }
  2142. #u137600 .text {
  2143. position:absolute;
  2144. align-self:flex-start;
  2145. padding:0px 0px 0px 0px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u137600_text {
  2150. border-width:0px;
  2151. white-space:nowrap;
  2152. text-transform:none;
  2153. }
  2154. #u137601_div {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:65px;
  2160. height:22px;
  2161. background:inherit;
  2162. background-color:rgba(255, 255, 255, 0);
  2163. border:none;
  2164. border-radius:0px;
  2165. -moz-box-shadow:none;
  2166. -webkit-box-shadow:none;
  2167. box-shadow:none;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:16px;
  2172. }
  2173. #u137601 {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:147px;
  2177. top:483px;
  2178. width:65px;
  2179. height:22px;
  2180. display:flex;
  2181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2182. font-weight:400;
  2183. font-style:normal;
  2184. font-size:16px;
  2185. }
  2186. #u137601 .text {
  2187. position:absolute;
  2188. align-self:flex-start;
  2189. padding:0px 0px 0px 0px;
  2190. box-sizing:border-box;
  2191. width:100%;
  2192. }
  2193. #u137601_text {
  2194. border-width:0px;
  2195. white-space:nowrap;
  2196. text-transform:none;
  2197. }
  2198. #u137602_div {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:49px;
  2204. height:17px;
  2205. background:inherit;
  2206. background-color:rgba(255, 255, 255, 0);
  2207. border:none;
  2208. border-radius:0px;
  2209. -moz-box-shadow:none;
  2210. -webkit-box-shadow:none;
  2211. box-shadow:none;
  2212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2213. font-weight:400;
  2214. font-style:normal;
  2215. font-size:12px;
  2216. color:#AAAAAA;
  2217. }
  2218. #u137602 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:147px;
  2222. top:447px;
  2223. width:49px;
  2224. height:17px;
  2225. display:flex;
  2226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2227. font-weight:400;
  2228. font-style:normal;
  2229. font-size:12px;
  2230. color:#AAAAAA;
  2231. }
  2232. #u137602 .text {
  2233. position:absolute;
  2234. align-self:flex-start;
  2235. padding:0px 0px 0px 0px;
  2236. box-sizing:border-box;
  2237. width:100%;
  2238. }
  2239. #u137602_text {
  2240. border-width:0px;
  2241. white-space:nowrap;
  2242. text-transform:none;
  2243. }
  2244. #u137603_div {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:65px;
  2250. height:22px;
  2251. background:inherit;
  2252. background-color:rgba(255, 255, 255, 0);
  2253. border:none;
  2254. border-radius:0px;
  2255. -moz-box-shadow:none;
  2256. -webkit-box-shadow:none;
  2257. box-shadow:none;
  2258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2259. font-weight:400;
  2260. font-style:normal;
  2261. font-size:16px;
  2262. }
  2263. #u137603 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:147px;
  2267. top:525px;
  2268. width:65px;
  2269. height:22px;
  2270. display:flex;
  2271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2272. font-weight:400;
  2273. font-style:normal;
  2274. font-size:16px;
  2275. }
  2276. #u137603 .text {
  2277. position:absolute;
  2278. align-self:flex-start;
  2279. padding:0px 0px 0px 0px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u137603_text {
  2284. border-width:0px;
  2285. white-space:nowrap;
  2286. text-transform:none;
  2287. }
  2288. #u137604_img {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:302px;
  2294. height:661px;
  2295. }
  2296. #u137604 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:-918px;
  2300. top:-58px;
  2301. width:302px;
  2302. height:661px;
  2303. display:flex;
  2304. }
  2305. #u137604 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 2px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u137604_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. visibility:hidden;
  2317. }
  2318. #u137605_img {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:299px;
  2324. height:655px;
  2325. }
  2326. #u137605 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:-616px;
  2330. top:-58px;
  2331. width:299px;
  2332. height:655px;
  2333. display:flex;
  2334. }
  2335. #u137605 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:2px 2px 2px 2px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u137605_text {
  2343. border-width:0px;
  2344. word-wrap:break-word;
  2345. text-transform:none;
  2346. visibility:hidden;
  2347. }
  2348. #u137606 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:0px;
  2354. height:0px;
  2355. }
  2356. #u137607_div {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:140px;
  2362. height:30px;
  2363. background:inherit;
  2364. background-color:rgba(255, 255, 255, 1);
  2365. box-sizing:border-box;
  2366. border-width:1px;
  2367. border-style:solid;
  2368. border-color:rgba(215, 215, 215, 1);
  2369. border-radius:4px;
  2370. -moz-box-shadow:none;
  2371. -webkit-box-shadow:none;
  2372. box-shadow:none;
  2373. font-size:11px;
  2374. }
  2375. #u137607 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:1424px;
  2379. top:60px;
  2380. width:140px;
  2381. height:30px;
  2382. display:flex;
  2383. font-size:11px;
  2384. }
  2385. #u137607 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:2px 2px 2px 2px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u137607_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. visibility:hidden;
  2397. }
  2398. #u137608_input {
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:120px;
  2403. height:23px;
  2404. padding:2px 2px 2px 2px;
  2405. font-family:'ArialMT', 'Arial', sans-serif;
  2406. font-weight:400;
  2407. font-style:normal;
  2408. font-size:11px;
  2409. letter-spacing:normal;
  2410. color:#AAAAAA;
  2411. vertical-align:none;
  2412. text-align:left;
  2413. text-transform:none;
  2414. background-color:transparent;
  2415. border-color:transparent;
  2416. }
  2417. #u137608_input.disabled {
  2418. position:absolute;
  2419. left:0px;
  2420. top:0px;
  2421. width:120px;
  2422. height:23px;
  2423. padding:2px 2px 2px 2px;
  2424. font-family:'ArialMT', 'Arial', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:11px;
  2428. letter-spacing:normal;
  2429. color:#AAAAAA;
  2430. vertical-align:none;
  2431. text-align:left;
  2432. text-transform:none;
  2433. background-color:transparent;
  2434. border-color:transparent;
  2435. }
  2436. #u137608_div {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:120px;
  2442. height:23px;
  2443. background:inherit;
  2444. background-color:rgba(255, 255, 255, 1);
  2445. border:none;
  2446. border-radius:0px;
  2447. -moz-box-shadow:none;
  2448. -webkit-box-shadow:none;
  2449. box-shadow:none;
  2450. font-size:11px;
  2451. color:#AAAAAA;
  2452. }
  2453. #u137608 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:1431px;
  2457. top:62px;
  2458. width:120px;
  2459. height:23px;
  2460. display:flex;
  2461. font-size:11px;
  2462. color:#AAAAAA;
  2463. }
  2464. #u137608 .text {
  2465. position:absolute;
  2466. align-self:flex-start;
  2467. padding:2px 2px 2px 2px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u137608_div.disabled {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:120px;
  2477. height:23px;
  2478. background:inherit;
  2479. background-color:rgba(240, 240, 240, 1);
  2480. border:none;
  2481. border-radius:0px;
  2482. -moz-box-shadow:none;
  2483. -webkit-box-shadow:none;
  2484. box-shadow:none;
  2485. font-size:11px;
  2486. color:#AAAAAA;
  2487. }
  2488. #u137608.disabled {
  2489. }
  2490. .u137608_input_option {
  2491. font-size:11px;
  2492. }
  2493. #u137609 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:0px;
  2499. height:0px;
  2500. }
  2501. #u137610_div {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:292px;
  2507. height:159px;
  2508. background:inherit;
  2509. background-color:rgba(242, 242, 242, 1);
  2510. border:none;
  2511. border-radius:0px;
  2512. -moz-box-shadow:none;
  2513. -webkit-box-shadow:none;
  2514. box-shadow:none;
  2515. }
  2516. #u137610 {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:350px;
  2520. top:105px;
  2521. width:292px;
  2522. height:159px;
  2523. display:flex;
  2524. }
  2525. #u137610 .text {
  2526. position:absolute;
  2527. align-self:center;
  2528. padding:2px 2px 2px 2px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u137610_text {
  2533. border-width:0px;
  2534. word-wrap:break-word;
  2535. text-transform:none;
  2536. visibility:hidden;
  2537. }
  2538. #u137611_div {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:134px;
  2544. height:23px;
  2545. background:inherit;
  2546. background-color:rgba(255, 255, 255, 0);
  2547. border:none;
  2548. border-radius:0px;
  2549. -moz-box-shadow:none;
  2550. -webkit-box-shadow:none;
  2551. box-shadow:none;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:12px;
  2556. }
  2557. #u137611 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:363px;
  2561. top:118px;
  2562. width:134px;
  2563. height:23px;
  2564. display:flex;
  2565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2566. font-weight:400;
  2567. font-style:normal;
  2568. font-size:12px;
  2569. }
  2570. #u137611 .text {
  2571. position:absolute;
  2572. align-self:flex-start;
  2573. padding:0px 0px 0px 0px;
  2574. box-sizing:border-box;
  2575. width:100%;
  2576. }
  2577. #u137611_text {
  2578. border-width:0px;
  2579. word-wrap:break-word;
  2580. text-transform:none;
  2581. }
  2582. #u137612_div {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:106px;
  2588. height:53px;
  2589. background:inherit;
  2590. background-color:rgba(255, 255, 255, 0);
  2591. border:none;
  2592. border-radius:0px;
  2593. -moz-box-shadow:none;
  2594. -webkit-box-shadow:none;
  2595. box-shadow:none;
  2596. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2597. font-weight:500;
  2598. font-style:normal;
  2599. font-size:28px;
  2600. }
  2601. #u137612 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:373px;
  2605. top:198px;
  2606. width:106px;
  2607. height:53px;
  2608. display:flex;
  2609. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2610. font-weight:500;
  2611. font-style:normal;
  2612. font-size:28px;
  2613. }
  2614. #u137612 .text {
  2615. position:absolute;
  2616. align-self:flex-start;
  2617. padding:0px 0px 0px 0px;
  2618. box-sizing:border-box;
  2619. width:100%;
  2620. }
  2621. #u137612_text {
  2622. border-width:0px;
  2623. word-wrap:break-word;
  2624. text-transform:none;
  2625. }
  2626. #u137613_div {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:97px;
  2632. height:33px;
  2633. background:inherit;
  2634. background-color:rgba(255, 255, 255, 0);
  2635. border:none;
  2636. border-radius:0px;
  2637. -moz-box-shadow:none;
  2638. -webkit-box-shadow:none;
  2639. box-shadow:none;
  2640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2641. font-weight:400;
  2642. font-style:normal;
  2643. font-size:18px;
  2644. }
  2645. #u137613 {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:371px;
  2649. top:167px;
  2650. width:97px;
  2651. height:33px;
  2652. display:flex;
  2653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2654. font-weight:400;
  2655. font-style:normal;
  2656. font-size:18px;
  2657. }
  2658. #u137613 .text {
  2659. position:absolute;
  2660. align-self:flex-start;
  2661. padding:0px 0px 0px 0px;
  2662. box-sizing:border-box;
  2663. width:100%;
  2664. }
  2665. #u137613_text {
  2666. border-width:0px;
  2667. word-wrap:break-word;
  2668. text-transform:none;
  2669. }
  2670. #u137614_div {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:0px;
  2674. top:0px;
  2675. width:80px;
  2676. height:80px;
  2677. background:inherit;
  2678. background-color:rgba(255, 255, 255, 0);
  2679. border:none;
  2680. border-radius:0px;
  2681. -moz-box-shadow:none;
  2682. -webkit-box-shadow:none;
  2683. box-shadow:none;
  2684. font-size:12px;
  2685. line-height:30px;
  2686. }
  2687. #u137614 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:536px;
  2691. top:167px;
  2692. width:80px;
  2693. height:80px;
  2694. display:flex;
  2695. font-size:12px;
  2696. line-height:30px;
  2697. }
  2698. #u137614 .text {
  2699. position:absolute;
  2700. align-self:flex-start;
  2701. padding:0px 0px 0px 0px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u137614_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. }
  2710. #u137615 {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:0px;
  2716. height:0px;
  2717. }
  2718. #u137616_div {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:292px;
  2724. height:159px;
  2725. background:inherit;
  2726. background-color:rgba(242, 242, 242, 1);
  2727. border:none;
  2728. border-radius:0px;
  2729. -moz-box-shadow:none;
  2730. -webkit-box-shadow:none;
  2731. box-shadow:none;
  2732. }
  2733. #u137616 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:656px;
  2737. top:105px;
  2738. width:292px;
  2739. height:159px;
  2740. display:flex;
  2741. }
  2742. #u137616 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:2px 2px 2px 2px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u137616_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. visibility:hidden;
  2754. }
  2755. #u137617_div {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:65px;
  2761. height:23px;
  2762. background:inherit;
  2763. background-color:rgba(255, 255, 255, 0);
  2764. border:none;
  2765. border-radius:0px;
  2766. -moz-box-shadow:none;
  2767. -webkit-box-shadow:none;
  2768. box-shadow:none;
  2769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:12px;
  2773. }
  2774. #u137617 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:669px;
  2778. top:118px;
  2779. width:65px;
  2780. height:23px;
  2781. display:flex;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:12px;
  2786. }
  2787. #u137617 .text {
  2788. position:absolute;
  2789. align-self:flex-start;
  2790. padding:0px 0px 0px 0px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u137617_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. }
  2799. #u137618_div {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:106px;
  2805. height:53px;
  2806. background:inherit;
  2807. background-color:rgba(255, 255, 255, 0);
  2808. border:none;
  2809. border-radius:0px;
  2810. -moz-box-shadow:none;
  2811. -webkit-box-shadow:none;
  2812. box-shadow:none;
  2813. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2814. font-weight:500;
  2815. font-style:normal;
  2816. font-size:28px;
  2817. }
  2818. #u137618 {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:678px;
  2822. top:198px;
  2823. width:106px;
  2824. height:53px;
  2825. display:flex;
  2826. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2827. font-weight:500;
  2828. font-style:normal;
  2829. font-size:28px;
  2830. }
  2831. #u137618 .text {
  2832. position:absolute;
  2833. align-self:flex-start;
  2834. padding:0px 0px 0px 0px;
  2835. box-sizing:border-box;
  2836. width:100%;
  2837. }
  2838. #u137618_text {
  2839. border-width:0px;
  2840. word-wrap:break-word;
  2841. text-transform:none;
  2842. }
  2843. #u137619_div {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:97px;
  2849. height:33px;
  2850. background:inherit;
  2851. background-color:rgba(255, 255, 255, 0);
  2852. border:none;
  2853. border-radius:0px;
  2854. -moz-box-shadow:none;
  2855. -webkit-box-shadow:none;
  2856. box-shadow:none;
  2857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. font-size:18px;
  2861. }
  2862. #u137619 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:677px;
  2866. top:167px;
  2867. width:97px;
  2868. height:33px;
  2869. display:flex;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:18px;
  2874. }
  2875. #u137619 .text {
  2876. position:absolute;
  2877. align-self:flex-start;
  2878. padding:0px 0px 0px 0px;
  2879. box-sizing:border-box;
  2880. width:100%;
  2881. }
  2882. #u137619_text {
  2883. border-width:0px;
  2884. word-wrap:break-word;
  2885. text-transform:none;
  2886. }
  2887. #u137620_div {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:80px;
  2893. height:80px;
  2894. background:inherit;
  2895. background-color:rgba(255, 255, 255, 0);
  2896. border:none;
  2897. border-radius:0px;
  2898. -moz-box-shadow:none;
  2899. -webkit-box-shadow:none;
  2900. box-shadow:none;
  2901. font-size:12px;
  2902. line-height:30px;
  2903. }
  2904. #u137620 {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:842px;
  2908. top:167px;
  2909. width:80px;
  2910. height:80px;
  2911. display:flex;
  2912. font-size:12px;
  2913. line-height:30px;
  2914. }
  2915. #u137620 .text {
  2916. position:absolute;
  2917. align-self:flex-start;
  2918. padding:0px 0px 0px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u137620_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. }
  2927. #u137621 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:0px;
  2933. height:0px;
  2934. }
  2935. #u137622_div {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:292px;
  2941. height:159px;
  2942. background:inherit;
  2943. background-color:rgba(242, 242, 242, 1);
  2944. border:none;
  2945. border-radius:0px;
  2946. -moz-box-shadow:none;
  2947. -webkit-box-shadow:none;
  2948. box-shadow:none;
  2949. }
  2950. #u137622 {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:961px;
  2954. top:105px;
  2955. width:292px;
  2956. height:159px;
  2957. display:flex;
  2958. }
  2959. #u137622 .text {
  2960. position:absolute;
  2961. align-self:center;
  2962. padding:2px 2px 2px 2px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u137622_text {
  2967. border-width:0px;
  2968. word-wrap:break-word;
  2969. text-transform:none;
  2970. visibility:hidden;
  2971. }
  2972. #u137623_div {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:121px;
  2978. height:23px;
  2979. background:inherit;
  2980. background-color:rgba(255, 255, 255, 0);
  2981. border:none;
  2982. border-radius:0px;
  2983. -moz-box-shadow:none;
  2984. -webkit-box-shadow:none;
  2985. box-shadow:none;
  2986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2987. font-weight:400;
  2988. font-style:normal;
  2989. font-size:12px;
  2990. }
  2991. #u137623 {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:975px;
  2995. top:118px;
  2996. width:121px;
  2997. height:23px;
  2998. display:flex;
  2999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3000. font-weight:400;
  3001. font-style:normal;
  3002. font-size:12px;
  3003. }
  3004. #u137623 .text {
  3005. position:absolute;
  3006. align-self:flex-start;
  3007. padding:0px 0px 0px 0px;
  3008. box-sizing:border-box;
  3009. width:100%;
  3010. }
  3011. #u137623_text {
  3012. border-width:0px;
  3013. word-wrap:break-word;
  3014. text-transform:none;
  3015. }
  3016. #u137624_div {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:106px;
  3022. height:53px;
  3023. background:inherit;
  3024. background-color:rgba(255, 255, 255, 0);
  3025. border:none;
  3026. border-radius:0px;
  3027. -moz-box-shadow:none;
  3028. -webkit-box-shadow:none;
  3029. box-shadow:none;
  3030. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3031. font-weight:500;
  3032. font-style:normal;
  3033. font-size:28px;
  3034. }
  3035. #u137624 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:984px;
  3039. top:198px;
  3040. width:106px;
  3041. height:53px;
  3042. display:flex;
  3043. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3044. font-weight:500;
  3045. font-style:normal;
  3046. font-size:28px;
  3047. }
  3048. #u137624 .text {
  3049. position:absolute;
  3050. align-self:flex-start;
  3051. padding:0px 0px 0px 0px;
  3052. box-sizing:border-box;
  3053. width:100%;
  3054. }
  3055. #u137624_text {
  3056. border-width:0px;
  3057. word-wrap:break-word;
  3058. text-transform:none;
  3059. }
  3060. #u137625_div {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:0px;
  3064. top:0px;
  3065. width:97px;
  3066. height:33px;
  3067. background:inherit;
  3068. background-color:rgba(255, 255, 255, 0);
  3069. border:none;
  3070. border-radius:0px;
  3071. -moz-box-shadow:none;
  3072. -webkit-box-shadow:none;
  3073. box-shadow:none;
  3074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3075. font-weight:400;
  3076. font-style:normal;
  3077. font-size:18px;
  3078. }
  3079. #u137625 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:983px;
  3083. top:167px;
  3084. width:97px;
  3085. height:33px;
  3086. display:flex;
  3087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3088. font-weight:400;
  3089. font-style:normal;
  3090. font-size:18px;
  3091. }
  3092. #u137625 .text {
  3093. position:absolute;
  3094. align-self:flex-start;
  3095. padding:0px 0px 0px 0px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u137625_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. }
  3104. #u137626_div {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:80px;
  3110. height:80px;
  3111. background:inherit;
  3112. background-color:rgba(255, 255, 255, 0);
  3113. border:none;
  3114. border-radius:0px;
  3115. -moz-box-shadow:none;
  3116. -webkit-box-shadow:none;
  3117. box-shadow:none;
  3118. font-size:12px;
  3119. line-height:30px;
  3120. }
  3121. #u137626 {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:1147px;
  3125. top:167px;
  3126. width:80px;
  3127. height:80px;
  3128. display:flex;
  3129. font-size:12px;
  3130. line-height:30px;
  3131. }
  3132. #u137626 .text {
  3133. position:absolute;
  3134. align-self:flex-start;
  3135. padding:0px 0px 0px 0px;
  3136. box-sizing:border-box;
  3137. width:100%;
  3138. }
  3139. #u137626_text {
  3140. border-width:0px;
  3141. word-wrap:break-word;
  3142. text-transform:none;
  3143. }
  3144. #u137627 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:0px;
  3150. height:0px;
  3151. }
  3152. #u137628_div {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:292px;
  3158. height:159px;
  3159. background:inherit;
  3160. background-color:rgba(242, 242, 242, 1);
  3161. border:none;
  3162. border-radius:0px;
  3163. -moz-box-shadow:none;
  3164. -webkit-box-shadow:none;
  3165. box-shadow:none;
  3166. }
  3167. #u137628 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:1267px;
  3171. top:105px;
  3172. width:292px;
  3173. height:159px;
  3174. display:flex;
  3175. }
  3176. #u137628 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:2px 2px 2px 2px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u137628_text {
  3184. border-width:0px;
  3185. word-wrap:break-word;
  3186. text-transform:none;
  3187. visibility:hidden;
  3188. }
  3189. #u137629_div {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:121px;
  3195. height:23px;
  3196. background:inherit;
  3197. background-color:rgba(255, 255, 255, 0);
  3198. border:none;
  3199. border-radius:0px;
  3200. -moz-box-shadow:none;
  3201. -webkit-box-shadow:none;
  3202. box-shadow:none;
  3203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3204. font-weight:400;
  3205. font-style:normal;
  3206. font-size:12px;
  3207. }
  3208. #u137629 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:1280px;
  3212. top:118px;
  3213. width:121px;
  3214. height:23px;
  3215. display:flex;
  3216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. font-size:12px;
  3220. }
  3221. #u137629 .text {
  3222. position:absolute;
  3223. align-self:flex-start;
  3224. padding:0px 0px 0px 0px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u137629_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. }
  3233. #u137630_div {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:106px;
  3239. height:53px;
  3240. background:inherit;
  3241. background-color:rgba(255, 255, 255, 0);
  3242. border:none;
  3243. border-radius:0px;
  3244. -moz-box-shadow:none;
  3245. -webkit-box-shadow:none;
  3246. box-shadow:none;
  3247. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3248. font-weight:500;
  3249. font-style:normal;
  3250. font-size:28px;
  3251. }
  3252. #u137630 {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:1290px;
  3256. top:198px;
  3257. width:106px;
  3258. height:53px;
  3259. display:flex;
  3260. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3261. font-weight:500;
  3262. font-style:normal;
  3263. font-size:28px;
  3264. }
  3265. #u137630 .text {
  3266. position:absolute;
  3267. align-self:flex-start;
  3268. padding:0px 0px 0px 0px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u137630_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. }
  3277. #u137631_div {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:97px;
  3283. height:33px;
  3284. background:inherit;
  3285. background-color:rgba(255, 255, 255, 0);
  3286. border:none;
  3287. border-radius:0px;
  3288. -moz-box-shadow:none;
  3289. -webkit-box-shadow:none;
  3290. box-shadow:none;
  3291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3292. font-weight:400;
  3293. font-style:normal;
  3294. font-size:18px;
  3295. }
  3296. #u137631 {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:1290px;
  3300. top:167px;
  3301. width:97px;
  3302. height:33px;
  3303. display:flex;
  3304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3305. font-weight:400;
  3306. font-style:normal;
  3307. font-size:18px;
  3308. }
  3309. #u137631 .text {
  3310. position:absolute;
  3311. align-self:flex-start;
  3312. padding:0px 0px 0px 0px;
  3313. box-sizing:border-box;
  3314. width:100%;
  3315. }
  3316. #u137631_text {
  3317. border-width:0px;
  3318. word-wrap:break-word;
  3319. text-transform:none;
  3320. }
  3321. #u137632_div {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:0px;
  3325. top:0px;
  3326. width:80px;
  3327. height:80px;
  3328. background:inherit;
  3329. background-color:rgba(255, 255, 255, 0);
  3330. border:none;
  3331. border-radius:0px;
  3332. -moz-box-shadow:none;
  3333. -webkit-box-shadow:none;
  3334. box-shadow:none;
  3335. font-size:12px;
  3336. line-height:30px;
  3337. }
  3338. #u137632 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:1453px;
  3342. top:167px;
  3343. width:80px;
  3344. height:80px;
  3345. display:flex;
  3346. font-size:12px;
  3347. line-height:30px;
  3348. }
  3349. #u137632 .text {
  3350. position:absolute;
  3351. align-self:flex-start;
  3352. padding:0px 0px 0px 0px;
  3353. box-sizing:border-box;
  3354. width:100%;
  3355. }
  3356. #u137632_text {
  3357. border-width:0px;
  3358. word-wrap:break-word;
  3359. text-transform:none;
  3360. }
  3361. #u137633 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:0px;
  3367. height:0px;
  3368. }
  3369. #u137634_div {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:392px;
  3375. height:312px;
  3376. background:inherit;
  3377. background-color:rgba(242, 242, 242, 1);
  3378. border:none;
  3379. border-radius:0px;
  3380. -moz-box-shadow:none;
  3381. -webkit-box-shadow:none;
  3382. box-shadow:none;
  3383. }
  3384. #u137634 {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:350px;
  3388. top:274px;
  3389. width:392px;
  3390. height:312px;
  3391. display:flex;
  3392. }
  3393. #u137634 .text {
  3394. position:absolute;
  3395. align-self:center;
  3396. padding:2px 2px 2px 2px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u137634_text {
  3401. border-width:0px;
  3402. word-wrap:break-word;
  3403. text-transform:none;
  3404. visibility:hidden;
  3405. }
  3406. #u137635_div {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:127px;
  3412. height:25px;
  3413. background:inherit;
  3414. background-color:rgba(255, 255, 255, 0);
  3415. border:none;
  3416. border-radius:0px;
  3417. -moz-box-shadow:none;
  3418. -webkit-box-shadow:none;
  3419. box-shadow:none;
  3420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:18px;
  3424. }
  3425. #u137635 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:370px;
  3429. top:294px;
  3430. width:127px;
  3431. height:25px;
  3432. display:flex;
  3433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:18px;
  3437. }
  3438. #u137635 .text {
  3439. position:absolute;
  3440. align-self:flex-start;
  3441. padding:0px 0px 0px 0px;
  3442. box-sizing:border-box;
  3443. width:100%;
  3444. }
  3445. #u137635_text {
  3446. border-width:0px;
  3447. white-space:nowrap;
  3448. text-transform:none;
  3449. }
  3450. #u137636_div {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:40px;
  3456. height:20px;
  3457. background:inherit;
  3458. background-color:rgba(51, 51, 51, 1);
  3459. border:none;
  3460. border-radius:0px;
  3461. -moz-box-shadow:none;
  3462. -webkit-box-shadow:none;
  3463. box-shadow:none;
  3464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:12px;
  3468. color:#FFFFFF;
  3469. text-align:center;
  3470. }
  3471. #u137636 {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:603px;
  3475. top:294px;
  3476. width:40px;
  3477. height:20px;
  3478. display:flex;
  3479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3480. font-weight:400;
  3481. font-style:normal;
  3482. font-size:12px;
  3483. color:#FFFFFF;
  3484. text-align:center;
  3485. }
  3486. #u137636 .text {
  3487. position:absolute;
  3488. align-self:center;
  3489. padding:0px 0px 0px 0px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u137636_text {
  3494. border-width:0px;
  3495. word-wrap:break-word;
  3496. text-transform:none;
  3497. }
  3498. #u137637_div {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:0px;
  3502. top:0px;
  3503. width:40px;
  3504. height:20px;
  3505. background:inherit;
  3506. background-color:rgba(242, 242, 242, 1);
  3507. border:none;
  3508. border-radius:0px;
  3509. -moz-box-shadow:none;
  3510. -webkit-box-shadow:none;
  3511. box-shadow:none;
  3512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. font-size:12px;
  3516. color:#7F7F7F;
  3517. text-align:center;
  3518. }
  3519. #u137637 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:643px;
  3523. top:294px;
  3524. width:40px;
  3525. height:20px;
  3526. display:flex;
  3527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:12px;
  3531. color:#7F7F7F;
  3532. text-align:center;
  3533. }
  3534. #u137637 .text {
  3535. position:absolute;
  3536. align-self:center;
  3537. padding:0px 0px 0px 0px;
  3538. box-sizing:border-box;
  3539. width:100%;
  3540. }
  3541. #u137637_text {
  3542. border-width:0px;
  3543. word-wrap:break-word;
  3544. text-transform:none;
  3545. }
  3546. #u137638_div {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:0px;
  3550. top:0px;
  3551. width:40px;
  3552. height:20px;
  3553. background:inherit;
  3554. background-color:rgba(242, 242, 242, 1);
  3555. border:none;
  3556. border-radius:0px;
  3557. -moz-box-shadow:none;
  3558. -webkit-box-shadow:none;
  3559. box-shadow:none;
  3560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3561. font-weight:400;
  3562. font-style:normal;
  3563. font-size:12px;
  3564. color:#7F7F7F;
  3565. text-align:center;
  3566. }
  3567. #u137638 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:683px;
  3571. top:294px;
  3572. width:40px;
  3573. height:20px;
  3574. display:flex;
  3575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:12px;
  3579. color:#7F7F7F;
  3580. text-align:center;
  3581. }
  3582. #u137638 .text {
  3583. position:absolute;
  3584. align-self:center;
  3585. padding:0px 0px 0px 0px;
  3586. box-sizing:border-box;
  3587. width:100%;
  3588. }
  3589. #u137638_text {
  3590. border-width:0px;
  3591. word-wrap:break-word;
  3592. text-transform:none;
  3593. }
  3594. #u137639 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:0px;
  3600. height:0px;
  3601. }
  3602. #u137640_div {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:19px;
  3608. height:25px;
  3609. background:inherit;
  3610. background-color:rgba(255, 255, 255, 0);
  3611. border:none;
  3612. border-radius:0px;
  3613. -moz-box-shadow:none;
  3614. -webkit-box-shadow:none;
  3615. box-shadow:none;
  3616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3617. font-weight:400;
  3618. font-style:normal;
  3619. font-size:18px;
  3620. }
  3621. #u137640 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:410px;
  3625. top:344px;
  3626. width:19px;
  3627. height:25px;
  3628. display:flex;
  3629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:18px;
  3633. }
  3634. #u137640 .text {
  3635. position:absolute;
  3636. align-self:flex-start;
  3637. padding:0px 0px 0px 0px;
  3638. box-sizing:border-box;
  3639. width:100%;
  3640. }
  3641. #u137640_text {
  3642. border-width:0px;
  3643. white-space:nowrap;
  3644. text-transform:none;
  3645. }
  3646. #u137641_div {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:30px;
  3652. height:30px;
  3653. background:inherit;
  3654. background-color:rgba(170, 170, 170, 1);
  3655. border:none;
  3656. border-radius:15px;
  3657. -moz-box-shadow:none;
  3658. -webkit-box-shadow:none;
  3659. box-shadow:none;
  3660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3661. font-weight:400;
  3662. font-style:normal;
  3663. font-size:18px;
  3664. text-align:center;
  3665. }
  3666. #u137641 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:370px;
  3670. top:341px;
  3671. width:30px;
  3672. height:30px;
  3673. display:flex;
  3674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:18px;
  3678. text-align:center;
  3679. }
  3680. #u137641 .text {
  3681. position:absolute;
  3682. align-self:center;
  3683. padding:0px 0px 0px 0px;
  3684. box-sizing:border-box;
  3685. width:100%;
  3686. }
  3687. #u137641_text {
  3688. border-width:0px;
  3689. word-wrap:break-word;
  3690. text-transform:none;
  3691. }
  3692. #u137642_div {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:132px;
  3698. height:15px;
  3699. background:inherit;
  3700. background-color:rgba(51, 51, 51, 1);
  3701. border:none;
  3702. border-radius:0px;
  3703. -moz-box-shadow:none;
  3704. -webkit-box-shadow:none;
  3705. box-shadow:none;
  3706. }
  3707. #u137642 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:480px;
  3711. top:350px;
  3712. width:132px;
  3713. height:15px;
  3714. display:flex;
  3715. }
  3716. #u137642 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 2px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u137642_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u137643_div {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:96px;
  3735. height:20px;
  3736. background:inherit;
  3737. background-color:rgba(255, 255, 255, 0);
  3738. border:none;
  3739. border-radius:0px;
  3740. -moz-box-shadow:none;
  3741. -webkit-box-shadow:none;
  3742. box-shadow:none;
  3743. font-size:12px;
  3744. }
  3745. #u137643 {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:627px;
  3749. top:348px;
  3750. width:96px;
  3751. height:20px;
  3752. display:flex;
  3753. font-size:12px;
  3754. }
  3755. #u137643 .text {
  3756. position:absolute;
  3757. align-self:flex-start;
  3758. padding:0px 0px 0px 0px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u137643_text {
  3763. border-width:0px;
  3764. white-space:nowrap;
  3765. text-transform:none;
  3766. }
  3767. #u137644 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:0px;
  3773. height:0px;
  3774. }
  3775. #u137645_div {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:0px;
  3779. top:0px;
  3780. width:23px;
  3781. height:25px;
  3782. background:inherit;
  3783. background-color:rgba(255, 255, 255, 0);
  3784. border:none;
  3785. border-radius:0px;
  3786. -moz-box-shadow:none;
  3787. -webkit-box-shadow:none;
  3788. box-shadow:none;
  3789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:18px;
  3793. }
  3794. #u137645 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:410px;
  3798. top:394px;
  3799. width:23px;
  3800. height:25px;
  3801. display:flex;
  3802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3803. font-weight:400;
  3804. font-style:normal;
  3805. font-size:18px;
  3806. }
  3807. #u137645 .text {
  3808. position:absolute;
  3809. align-self:flex-start;
  3810. padding:0px 0px 0px 0px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u137645_text {
  3815. border-width:0px;
  3816. white-space:nowrap;
  3817. text-transform:none;
  3818. }
  3819. #u137646_div {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:30px;
  3825. height:30px;
  3826. background:inherit;
  3827. background-color:rgba(170, 170, 170, 1);
  3828. border:none;
  3829. border-radius:15px;
  3830. -moz-box-shadow:none;
  3831. -webkit-box-shadow:none;
  3832. box-shadow:none;
  3833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3834. font-weight:400;
  3835. font-style:normal;
  3836. font-size:18px;
  3837. text-align:center;
  3838. }
  3839. #u137646 {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:370px;
  3843. top:391px;
  3844. width:30px;
  3845. height:30px;
  3846. display:flex;
  3847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3848. font-weight:400;
  3849. font-style:normal;
  3850. font-size:18px;
  3851. text-align:center;
  3852. }
  3853. #u137646 .text {
  3854. position:absolute;
  3855. align-self:center;
  3856. padding:0px 0px 0px 0px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u137646_text {
  3861. border-width:0px;
  3862. word-wrap:break-word;
  3863. text-transform:none;
  3864. }
  3865. #u137647_div {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:119px;
  3871. height:15px;
  3872. background:inherit;
  3873. background-color:rgba(51, 51, 51, 1);
  3874. border:none;
  3875. border-radius:0px;
  3876. -moz-box-shadow:none;
  3877. -webkit-box-shadow:none;
  3878. box-shadow:none;
  3879. }
  3880. #u137647 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:480px;
  3884. top:400px;
  3885. width:119px;
  3886. height:15px;
  3887. display:flex;
  3888. }
  3889. #u137647 .text {
  3890. position:absolute;
  3891. align-self:center;
  3892. padding:2px 2px 2px 2px;
  3893. box-sizing:border-box;
  3894. width:100%;
  3895. }
  3896. #u137647_text {
  3897. border-width:0px;
  3898. word-wrap:break-word;
  3899. text-transform:none;
  3900. visibility:hidden;
  3901. }
  3902. #u137648_div {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:0px;
  3906. top:0px;
  3907. width:96px;
  3908. height:20px;
  3909. background:inherit;
  3910. background-color:rgba(255, 255, 255, 0);
  3911. border:none;
  3912. border-radius:0px;
  3913. -moz-box-shadow:none;
  3914. -webkit-box-shadow:none;
  3915. box-shadow:none;
  3916. font-size:12px;
  3917. }
  3918. #u137648 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:627px;
  3922. top:398px;
  3923. width:96px;
  3924. height:20px;
  3925. display:flex;
  3926. font-size:12px;
  3927. }
  3928. #u137648 .text {
  3929. position:absolute;
  3930. align-self:flex-start;
  3931. padding:0px 0px 0px 0px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u137648_text {
  3936. border-width:0px;
  3937. white-space:nowrap;
  3938. text-transform:none;
  3939. }
  3940. #u137649 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:0px;
  3946. height:0px;
  3947. }
  3948. #u137650_div {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:0px;
  3952. top:0px;
  3953. width:23px;
  3954. height:25px;
  3955. background:inherit;
  3956. background-color:rgba(255, 255, 255, 0);
  3957. border:none;
  3958. border-radius:0px;
  3959. -moz-box-shadow:none;
  3960. -webkit-box-shadow:none;
  3961. box-shadow:none;
  3962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3963. font-weight:400;
  3964. font-style:normal;
  3965. font-size:18px;
  3966. }
  3967. #u137650 {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:410px;
  3971. top:444px;
  3972. width:23px;
  3973. height:25px;
  3974. display:flex;
  3975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3976. font-weight:400;
  3977. font-style:normal;
  3978. font-size:18px;
  3979. }
  3980. #u137650 .text {
  3981. position:absolute;
  3982. align-self:flex-start;
  3983. padding:0px 0px 0px 0px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u137650_text {
  3988. border-width:0px;
  3989. white-space:nowrap;
  3990. text-transform:none;
  3991. }
  3992. #u137651_div {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:30px;
  3998. height:30px;
  3999. background:inherit;
  4000. background-color:rgba(170, 170, 170, 1);
  4001. border:none;
  4002. border-radius:15px;
  4003. -moz-box-shadow:none;
  4004. -webkit-box-shadow:none;
  4005. box-shadow:none;
  4006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4007. font-weight:400;
  4008. font-style:normal;
  4009. font-size:18px;
  4010. text-align:center;
  4011. }
  4012. #u137651 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:370px;
  4016. top:441px;
  4017. width:30px;
  4018. height:30px;
  4019. display:flex;
  4020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:18px;
  4024. text-align:center;
  4025. }
  4026. #u137651 .text {
  4027. position:absolute;
  4028. align-self:center;
  4029. padding:0px 0px 0px 0px;
  4030. box-sizing:border-box;
  4031. width:100%;
  4032. }
  4033. #u137651_text {
  4034. border-width:0px;
  4035. word-wrap:break-word;
  4036. text-transform:none;
  4037. }
  4038. #u137652_div {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:0px;
  4042. top:0px;
  4043. width:101px;
  4044. height:15px;
  4045. background:inherit;
  4046. background-color:rgba(51, 51, 51, 1);
  4047. border:none;
  4048. border-radius:0px;
  4049. -moz-box-shadow:none;
  4050. -webkit-box-shadow:none;
  4051. box-shadow:none;
  4052. }
  4053. #u137652 {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:480px;
  4057. top:450px;
  4058. width:101px;
  4059. height:15px;
  4060. display:flex;
  4061. }
  4062. #u137652 .text {
  4063. position:absolute;
  4064. align-self:center;
  4065. padding:2px 2px 2px 2px;
  4066. box-sizing:border-box;
  4067. width:100%;
  4068. }
  4069. #u137652_text {
  4070. border-width:0px;
  4071. word-wrap:break-word;
  4072. text-transform:none;
  4073. visibility:hidden;
  4074. }
  4075. #u137653_div {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:96px;
  4081. height:20px;
  4082. background:inherit;
  4083. background-color:rgba(255, 255, 255, 0);
  4084. border:none;
  4085. border-radius:0px;
  4086. -moz-box-shadow:none;
  4087. -webkit-box-shadow:none;
  4088. box-shadow:none;
  4089. font-size:12px;
  4090. }
  4091. #u137653 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:627px;
  4095. top:448px;
  4096. width:96px;
  4097. height:20px;
  4098. display:flex;
  4099. font-size:12px;
  4100. }
  4101. #u137653 .text {
  4102. position:absolute;
  4103. align-self:flex-start;
  4104. padding:0px 0px 0px 0px;
  4105. box-sizing:border-box;
  4106. width:100%;
  4107. }
  4108. #u137653_text {
  4109. border-width:0px;
  4110. white-space:nowrap;
  4111. text-transform:none;
  4112. }
  4113. #u137654 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:0px;
  4119. height:0px;
  4120. }
  4121. #u137655_div {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:37px;
  4127. height:25px;
  4128. background:inherit;
  4129. background-color:rgba(255, 255, 255, 0);
  4130. border:none;
  4131. border-radius:0px;
  4132. -moz-box-shadow:none;
  4133. -webkit-box-shadow:none;
  4134. box-shadow:none;
  4135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:18px;
  4139. }
  4140. #u137655 {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:410px;
  4144. top:494px;
  4145. width:37px;
  4146. height:25px;
  4147. display:flex;
  4148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4149. font-weight:400;
  4150. font-style:normal;
  4151. font-size:18px;
  4152. }
  4153. #u137655 .text {
  4154. position:absolute;
  4155. align-self:flex-start;
  4156. padding:0px 0px 0px 0px;
  4157. box-sizing:border-box;
  4158. width:100%;
  4159. }
  4160. #u137655_text {
  4161. border-width:0px;
  4162. white-space:nowrap;
  4163. text-transform:none;
  4164. }
  4165. #u137656_div {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:30px;
  4171. height:30px;
  4172. background:inherit;
  4173. background-color:rgba(170, 170, 170, 1);
  4174. border:none;
  4175. border-radius:15px;
  4176. -moz-box-shadow:none;
  4177. -webkit-box-shadow:none;
  4178. box-shadow:none;
  4179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4180. font-weight:400;
  4181. font-style:normal;
  4182. font-size:18px;
  4183. text-align:center;
  4184. }
  4185. #u137656 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:370px;
  4189. top:491px;
  4190. width:30px;
  4191. height:30px;
  4192. display:flex;
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:18px;
  4197. text-align:center;
  4198. }
  4199. #u137656 .text {
  4200. position:absolute;
  4201. align-self:center;
  4202. padding:0px 0px 0px 0px;
  4203. box-sizing:border-box;
  4204. width:100%;
  4205. }
  4206. #u137656_text {
  4207. border-width:0px;
  4208. word-wrap:break-word;
  4209. text-transform:none;
  4210. }
  4211. #u137657_div {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:90px;
  4217. height:15px;
  4218. background:inherit;
  4219. background-color:rgba(51, 51, 51, 1);
  4220. border:none;
  4221. border-radius:0px;
  4222. -moz-box-shadow:none;
  4223. -webkit-box-shadow:none;
  4224. box-shadow:none;
  4225. }
  4226. #u137657 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:480px;
  4230. top:500px;
  4231. width:90px;
  4232. height:15px;
  4233. display:flex;
  4234. }
  4235. #u137657 .text {
  4236. position:absolute;
  4237. align-self:center;
  4238. padding:2px 2px 2px 2px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u137657_text {
  4243. border-width:0px;
  4244. word-wrap:break-word;
  4245. text-transform:none;
  4246. visibility:hidden;
  4247. }
  4248. #u137658_div {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:96px;
  4254. height:20px;
  4255. background:inherit;
  4256. background-color:rgba(255, 255, 255, 0);
  4257. border:none;
  4258. border-radius:0px;
  4259. -moz-box-shadow:none;
  4260. -webkit-box-shadow:none;
  4261. box-shadow:none;
  4262. font-size:12px;
  4263. }
  4264. #u137658 {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:627px;
  4268. top:498px;
  4269. width:96px;
  4270. height:20px;
  4271. display:flex;
  4272. font-size:12px;
  4273. }
  4274. #u137658 .text {
  4275. position:absolute;
  4276. align-self:flex-start;
  4277. padding:0px 0px 0px 0px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u137658_text {
  4282. border-width:0px;
  4283. white-space:nowrap;
  4284. text-transform:none;
  4285. }
  4286. #u137659 {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:0px;
  4292. height:0px;
  4293. }
  4294. #u137660_div {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:37px;
  4300. height:25px;
  4301. background:inherit;
  4302. background-color:rgba(255, 255, 255, 0);
  4303. border:none;
  4304. border-radius:0px;
  4305. -moz-box-shadow:none;
  4306. -webkit-box-shadow:none;
  4307. box-shadow:none;
  4308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4309. font-weight:400;
  4310. font-style:normal;
  4311. font-size:18px;
  4312. }
  4313. #u137660 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:410px;
  4317. top:544px;
  4318. width:37px;
  4319. height:25px;
  4320. display:flex;
  4321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4322. font-weight:400;
  4323. font-style:normal;
  4324. font-size:18px;
  4325. }
  4326. #u137660 .text {
  4327. position:absolute;
  4328. align-self:flex-start;
  4329. padding:0px 0px 0px 0px;
  4330. box-sizing:border-box;
  4331. width:100%;
  4332. }
  4333. #u137660_text {
  4334. border-width:0px;
  4335. white-space:nowrap;
  4336. text-transform:none;
  4337. }
  4338. #u137661_div {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:30px;
  4344. height:30px;
  4345. background:inherit;
  4346. background-color:rgba(170, 170, 170, 1);
  4347. border:none;
  4348. border-radius:15px;
  4349. -moz-box-shadow:none;
  4350. -webkit-box-shadow:none;
  4351. box-shadow:none;
  4352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4353. font-weight:400;
  4354. font-style:normal;
  4355. font-size:18px;
  4356. text-align:center;
  4357. }
  4358. #u137661 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:370px;
  4362. top:541px;
  4363. width:30px;
  4364. height:30px;
  4365. display:flex;
  4366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:18px;
  4370. text-align:center;
  4371. }
  4372. #u137661 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:0px 0px 0px 0px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u137661_text {
  4380. border-width:0px;
  4381. word-wrap:break-word;
  4382. text-transform:none;
  4383. }
  4384. #u137662_div {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:80px;
  4390. height:15px;
  4391. background:inherit;
  4392. background-color:rgba(51, 51, 51, 1);
  4393. border:none;
  4394. border-radius:0px;
  4395. -moz-box-shadow:none;
  4396. -webkit-box-shadow:none;
  4397. box-shadow:none;
  4398. }
  4399. #u137662 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:480px;
  4403. top:550px;
  4404. width:80px;
  4405. height:15px;
  4406. display:flex;
  4407. }
  4408. #u137662 .text {
  4409. position:absolute;
  4410. align-self:center;
  4411. padding:2px 2px 2px 2px;
  4412. box-sizing:border-box;
  4413. width:100%;
  4414. }
  4415. #u137662_text {
  4416. border-width:0px;
  4417. word-wrap:break-word;
  4418. text-transform:none;
  4419. visibility:hidden;
  4420. }
  4421. #u137663_div {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:96px;
  4427. height:20px;
  4428. background:inherit;
  4429. background-color:rgba(255, 255, 255, 0);
  4430. border:none;
  4431. border-radius:0px;
  4432. -moz-box-shadow:none;
  4433. -webkit-box-shadow:none;
  4434. box-shadow:none;
  4435. font-size:12px;
  4436. }
  4437. #u137663 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:627px;
  4441. top:548px;
  4442. width:96px;
  4443. height:20px;
  4444. display:flex;
  4445. font-size:12px;
  4446. }
  4447. #u137663 .text {
  4448. position:absolute;
  4449. align-self:flex-start;
  4450. padding:0px 0px 0px 0px;
  4451. box-sizing:border-box;
  4452. width:100%;
  4453. }
  4454. #u137663_text {
  4455. border-width:0px;
  4456. white-space:nowrap;
  4457. text-transform:none;
  4458. }
  4459. #u137664_img {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:0px;
  4463. top:0px;
  4464. width:301px;
  4465. height:442px;
  4466. }
  4467. #u137664 {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:1657px;
  4471. top:24px;
  4472. width:301px;
  4473. height:442px;
  4474. display:flex;
  4475. }
  4476. #u137664 .text {
  4477. position:absolute;
  4478. align-self:center;
  4479. padding:2px 2px 2px 2px;
  4480. box-sizing:border-box;
  4481. width:100%;
  4482. }
  4483. #u137664_text {
  4484. border-width:0px;
  4485. word-wrap:break-word;
  4486. text-transform:none;
  4487. visibility:hidden;
  4488. }
  4489. #u137665 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:0px;
  4495. height:0px;
  4496. }
  4497. #u137666_div {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:392px;
  4503. height:312px;
  4504. background:inherit;
  4505. background-color:rgba(242, 242, 242, 1);
  4506. border:none;
  4507. border-radius:0px;
  4508. -moz-box-shadow:none;
  4509. -webkit-box-shadow:none;
  4510. box-shadow:none;
  4511. }
  4512. #u137666 {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:759px;
  4516. top:274px;
  4517. width:392px;
  4518. height:312px;
  4519. display:flex;
  4520. }
  4521. #u137666 .text {
  4522. position:absolute;
  4523. align-self:center;
  4524. padding:2px 2px 2px 2px;
  4525. box-sizing:border-box;
  4526. width:100%;
  4527. }
  4528. #u137666_text {
  4529. border-width:0px;
  4530. word-wrap:break-word;
  4531. text-transform:none;
  4532. visibility:hidden;
  4533. }
  4534. #u137667_div {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:127px;
  4540. height:25px;
  4541. background:inherit;
  4542. background-color:rgba(255, 255, 255, 0);
  4543. border:none;
  4544. border-radius:0px;
  4545. -moz-box-shadow:none;
  4546. -webkit-box-shadow:none;
  4547. box-shadow:none;
  4548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. font-size:18px;
  4552. }
  4553. #u137667 {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:779px;
  4557. top:294px;
  4558. width:127px;
  4559. height:25px;
  4560. display:flex;
  4561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4562. font-weight:400;
  4563. font-style:normal;
  4564. font-size:18px;
  4565. }
  4566. #u137667 .text {
  4567. position:absolute;
  4568. align-self:flex-start;
  4569. padding:0px 0px 0px 0px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u137667_text {
  4574. border-width:0px;
  4575. white-space:nowrap;
  4576. text-transform:none;
  4577. }
  4578. #u137668_div {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:0px;
  4583. width:40px;
  4584. height:20px;
  4585. background:inherit;
  4586. background-color:rgba(51, 51, 51, 1);
  4587. border:none;
  4588. border-radius:0px;
  4589. -moz-box-shadow:none;
  4590. -webkit-box-shadow:none;
  4591. box-shadow:none;
  4592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4593. font-weight:400;
  4594. font-style:normal;
  4595. font-size:12px;
  4596. color:#FFFFFF;
  4597. text-align:center;
  4598. }
  4599. #u137668 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:1012px;
  4603. top:294px;
  4604. width:40px;
  4605. height:20px;
  4606. display:flex;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:12px;
  4611. color:#FFFFFF;
  4612. text-align:center;
  4613. }
  4614. #u137668 .text {
  4615. position:absolute;
  4616. align-self:center;
  4617. padding:0px 0px 0px 0px;
  4618. box-sizing:border-box;
  4619. width:100%;
  4620. }
  4621. #u137668_text {
  4622. border-width:0px;
  4623. word-wrap:break-word;
  4624. text-transform:none;
  4625. }
  4626. #u137669_div {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:40px;
  4632. height:20px;
  4633. background:inherit;
  4634. background-color:rgba(242, 242, 242, 1);
  4635. border:none;
  4636. border-radius:0px;
  4637. -moz-box-shadow:none;
  4638. -webkit-box-shadow:none;
  4639. box-shadow:none;
  4640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:12px;
  4644. color:#7F7F7F;
  4645. text-align:center;
  4646. }
  4647. #u137669 {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:1052px;
  4651. top:294px;
  4652. width:40px;
  4653. height:20px;
  4654. display:flex;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:12px;
  4659. color:#7F7F7F;
  4660. text-align:center;
  4661. }
  4662. #u137669 .text {
  4663. position:absolute;
  4664. align-self:center;
  4665. padding:0px 0px 0px 0px;
  4666. box-sizing:border-box;
  4667. width:100%;
  4668. }
  4669. #u137669_text {
  4670. border-width:0px;
  4671. word-wrap:break-word;
  4672. text-transform:none;
  4673. }
  4674. #u137670_div {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:0px;
  4678. top:0px;
  4679. width:40px;
  4680. height:20px;
  4681. background:inherit;
  4682. background-color:rgba(242, 242, 242, 1);
  4683. border:none;
  4684. border-radius:0px;
  4685. -moz-box-shadow:none;
  4686. -webkit-box-shadow:none;
  4687. box-shadow:none;
  4688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:12px;
  4692. color:#7F7F7F;
  4693. text-align:center;
  4694. }
  4695. #u137670 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:1092px;
  4699. top:294px;
  4700. width:40px;
  4701. height:20px;
  4702. display:flex;
  4703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:12px;
  4707. color:#7F7F7F;
  4708. text-align:center;
  4709. }
  4710. #u137670 .text {
  4711. position:absolute;
  4712. align-self:center;
  4713. padding:0px 0px 0px 0px;
  4714. box-sizing:border-box;
  4715. width:100%;
  4716. }
  4717. #u137670_text {
  4718. border-width:0px;
  4719. word-wrap:break-word;
  4720. text-transform:none;
  4721. }
  4722. #u137671 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:0px;
  4728. height:0px;
  4729. }
  4730. #u137672_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:19px;
  4736. height:25px;
  4737. background:inherit;
  4738. background-color:rgba(255, 255, 255, 0);
  4739. border:none;
  4740. border-radius:0px;
  4741. -moz-box-shadow:none;
  4742. -webkit-box-shadow:none;
  4743. box-shadow:none;
  4744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:18px;
  4748. }
  4749. #u137672 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:819px;
  4753. top:344px;
  4754. width:19px;
  4755. height:25px;
  4756. display:flex;
  4757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4758. font-weight:400;
  4759. font-style:normal;
  4760. font-size:18px;
  4761. }
  4762. #u137672 .text {
  4763. position:absolute;
  4764. align-self:flex-start;
  4765. padding:0px 0px 0px 0px;
  4766. box-sizing:border-box;
  4767. width:100%;
  4768. }
  4769. #u137672_text {
  4770. border-width:0px;
  4771. white-space:nowrap;
  4772. text-transform:none;
  4773. }
  4774. #u137673_div {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:30px;
  4780. height:30px;
  4781. background:inherit;
  4782. background-color:rgba(170, 170, 170, 1);
  4783. border:none;
  4784. border-radius:15px;
  4785. -moz-box-shadow:none;
  4786. -webkit-box-shadow:none;
  4787. box-shadow:none;
  4788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4789. font-weight:400;
  4790. font-style:normal;
  4791. font-size:18px;
  4792. text-align:center;
  4793. }
  4794. #u137673 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:779px;
  4798. top:341px;
  4799. width:30px;
  4800. height:30px;
  4801. display:flex;
  4802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4803. font-weight:400;
  4804. font-style:normal;
  4805. font-size:18px;
  4806. text-align:center;
  4807. }
  4808. #u137673 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:0px 0px 0px 0px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u137673_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. }
  4820. #u137674_div {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:132px;
  4826. height:15px;
  4827. background:inherit;
  4828. background-color:rgba(51, 51, 51, 1);
  4829. border:none;
  4830. border-radius:0px;
  4831. -moz-box-shadow:none;
  4832. -webkit-box-shadow:none;
  4833. box-shadow:none;
  4834. }
  4835. #u137674 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:889px;
  4839. top:350px;
  4840. width:132px;
  4841. height:15px;
  4842. display:flex;
  4843. }
  4844. #u137674 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 2px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u137674_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u137675_div {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:96px;
  4863. height:20px;
  4864. background:inherit;
  4865. background-color:rgba(255, 255, 255, 0);
  4866. border:none;
  4867. border-radius:0px;
  4868. -moz-box-shadow:none;
  4869. -webkit-box-shadow:none;
  4870. box-shadow:none;
  4871. font-size:12px;
  4872. }
  4873. #u137675 {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:1036px;
  4877. top:348px;
  4878. width:96px;
  4879. height:20px;
  4880. display:flex;
  4881. font-size:12px;
  4882. }
  4883. #u137675 .text {
  4884. position:absolute;
  4885. align-self:flex-start;
  4886. padding:0px 0px 0px 0px;
  4887. box-sizing:border-box;
  4888. width:100%;
  4889. }
  4890. #u137675_text {
  4891. border-width:0px;
  4892. white-space:nowrap;
  4893. text-transform:none;
  4894. }
  4895. #u137676 {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:0px;
  4901. height:0px;
  4902. }
  4903. #u137677_div {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:23px;
  4909. height:25px;
  4910. background:inherit;
  4911. background-color:rgba(255, 255, 255, 0);
  4912. border:none;
  4913. border-radius:0px;
  4914. -moz-box-shadow:none;
  4915. -webkit-box-shadow:none;
  4916. box-shadow:none;
  4917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:18px;
  4921. }
  4922. #u137677 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:819px;
  4926. top:394px;
  4927. width:23px;
  4928. height:25px;
  4929. display:flex;
  4930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4931. font-weight:400;
  4932. font-style:normal;
  4933. font-size:18px;
  4934. }
  4935. #u137677 .text {
  4936. position:absolute;
  4937. align-self:flex-start;
  4938. padding:0px 0px 0px 0px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u137677_text {
  4943. border-width:0px;
  4944. white-space:nowrap;
  4945. text-transform:none;
  4946. }
  4947. #u137678_div {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:30px;
  4953. height:30px;
  4954. background:inherit;
  4955. background-color:rgba(170, 170, 170, 1);
  4956. border:none;
  4957. border-radius:15px;
  4958. -moz-box-shadow:none;
  4959. -webkit-box-shadow:none;
  4960. box-shadow:none;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:18px;
  4965. text-align:center;
  4966. }
  4967. #u137678 {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:779px;
  4971. top:391px;
  4972. width:30px;
  4973. height:30px;
  4974. display:flex;
  4975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4976. font-weight:400;
  4977. font-style:normal;
  4978. font-size:18px;
  4979. text-align:center;
  4980. }
  4981. #u137678 .text {
  4982. position:absolute;
  4983. align-self:center;
  4984. padding:0px 0px 0px 0px;
  4985. box-sizing:border-box;
  4986. width:100%;
  4987. }
  4988. #u137678_text {
  4989. border-width:0px;
  4990. word-wrap:break-word;
  4991. text-transform:none;
  4992. }
  4993. #u137679_div {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:0px;
  4997. top:0px;
  4998. width:119px;
  4999. height:15px;
  5000. background:inherit;
  5001. background-color:rgba(51, 51, 51, 1);
  5002. border:none;
  5003. border-radius:0px;
  5004. -moz-box-shadow:none;
  5005. -webkit-box-shadow:none;
  5006. box-shadow:none;
  5007. }
  5008. #u137679 {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:889px;
  5012. top:400px;
  5013. width:119px;
  5014. height:15px;
  5015. display:flex;
  5016. }
  5017. #u137679 .text {
  5018. position:absolute;
  5019. align-self:center;
  5020. padding:2px 2px 2px 2px;
  5021. box-sizing:border-box;
  5022. width:100%;
  5023. }
  5024. #u137679_text {
  5025. border-width:0px;
  5026. word-wrap:break-word;
  5027. text-transform:none;
  5028. visibility:hidden;
  5029. }
  5030. #u137680_div {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:96px;
  5036. height:20px;
  5037. background:inherit;
  5038. background-color:rgba(255, 255, 255, 0);
  5039. border:none;
  5040. border-radius:0px;
  5041. -moz-box-shadow:none;
  5042. -webkit-box-shadow:none;
  5043. box-shadow:none;
  5044. font-size:12px;
  5045. }
  5046. #u137680 {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:1036px;
  5050. top:398px;
  5051. width:96px;
  5052. height:20px;
  5053. display:flex;
  5054. font-size:12px;
  5055. }
  5056. #u137680 .text {
  5057. position:absolute;
  5058. align-self:flex-start;
  5059. padding:0px 0px 0px 0px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u137680_text {
  5064. border-width:0px;
  5065. white-space:nowrap;
  5066. text-transform:none;
  5067. }
  5068. #u137681 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:0px;
  5074. height:0px;
  5075. }
  5076. #u137682_div {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:0px;
  5080. top:0px;
  5081. width:23px;
  5082. height:25px;
  5083. background:inherit;
  5084. background-color:rgba(255, 255, 255, 0);
  5085. border:none;
  5086. border-radius:0px;
  5087. -moz-box-shadow:none;
  5088. -webkit-box-shadow:none;
  5089. box-shadow:none;
  5090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. font-size:18px;
  5094. }
  5095. #u137682 {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:819px;
  5099. top:444px;
  5100. width:23px;
  5101. height:25px;
  5102. display:flex;
  5103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5104. font-weight:400;
  5105. font-style:normal;
  5106. font-size:18px;
  5107. }
  5108. #u137682 .text {
  5109. position:absolute;
  5110. align-self:flex-start;
  5111. padding:0px 0px 0px 0px;
  5112. box-sizing:border-box;
  5113. width:100%;
  5114. }
  5115. #u137682_text {
  5116. border-width:0px;
  5117. white-space:nowrap;
  5118. text-transform:none;
  5119. }
  5120. #u137683_div {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:0px;
  5124. top:0px;
  5125. width:30px;
  5126. height:30px;
  5127. background:inherit;
  5128. background-color:rgba(170, 170, 170, 1);
  5129. border:none;
  5130. border-radius:15px;
  5131. -moz-box-shadow:none;
  5132. -webkit-box-shadow:none;
  5133. box-shadow:none;
  5134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5135. font-weight:400;
  5136. font-style:normal;
  5137. font-size:18px;
  5138. text-align:center;
  5139. }
  5140. #u137683 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:779px;
  5144. top:441px;
  5145. width:30px;
  5146. height:30px;
  5147. display:flex;
  5148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5149. font-weight:400;
  5150. font-style:normal;
  5151. font-size:18px;
  5152. text-align:center;
  5153. }
  5154. #u137683 .text {
  5155. position:absolute;
  5156. align-self:center;
  5157. padding:0px 0px 0px 0px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u137683_text {
  5162. border-width:0px;
  5163. word-wrap:break-word;
  5164. text-transform:none;
  5165. }
  5166. #u137684_div {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:101px;
  5172. height:15px;
  5173. background:inherit;
  5174. background-color:rgba(51, 51, 51, 1);
  5175. border:none;
  5176. border-radius:0px;
  5177. -moz-box-shadow:none;
  5178. -webkit-box-shadow:none;
  5179. box-shadow:none;
  5180. }
  5181. #u137684 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:889px;
  5185. top:450px;
  5186. width:101px;
  5187. height:15px;
  5188. display:flex;
  5189. }
  5190. #u137684 .text {
  5191. position:absolute;
  5192. align-self:center;
  5193. padding:2px 2px 2px 2px;
  5194. box-sizing:border-box;
  5195. width:100%;
  5196. }
  5197. #u137684_text {
  5198. border-width:0px;
  5199. word-wrap:break-word;
  5200. text-transform:none;
  5201. visibility:hidden;
  5202. }
  5203. #u137685_div {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:0px;
  5207. top:0px;
  5208. width:96px;
  5209. height:20px;
  5210. background:inherit;
  5211. background-color:rgba(255, 255, 255, 0);
  5212. border:none;
  5213. border-radius:0px;
  5214. -moz-box-shadow:none;
  5215. -webkit-box-shadow:none;
  5216. box-shadow:none;
  5217. font-size:12px;
  5218. }
  5219. #u137685 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:1036px;
  5223. top:448px;
  5224. width:96px;
  5225. height:20px;
  5226. display:flex;
  5227. font-size:12px;
  5228. }
  5229. #u137685 .text {
  5230. position:absolute;
  5231. align-self:flex-start;
  5232. padding:0px 0px 0px 0px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u137685_text {
  5237. border-width:0px;
  5238. white-space:nowrap;
  5239. text-transform:none;
  5240. }
  5241. #u137686 {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:0px;
  5247. height:0px;
  5248. }
  5249. #u137687_div {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:37px;
  5255. height:25px;
  5256. background:inherit;
  5257. background-color:rgba(255, 255, 255, 0);
  5258. border:none;
  5259. border-radius:0px;
  5260. -moz-box-shadow:none;
  5261. -webkit-box-shadow:none;
  5262. box-shadow:none;
  5263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5264. font-weight:400;
  5265. font-style:normal;
  5266. font-size:18px;
  5267. }
  5268. #u137687 {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:819px;
  5272. top:494px;
  5273. width:37px;
  5274. height:25px;
  5275. display:flex;
  5276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:18px;
  5280. }
  5281. #u137687 .text {
  5282. position:absolute;
  5283. align-self:flex-start;
  5284. padding:0px 0px 0px 0px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u137687_text {
  5289. border-width:0px;
  5290. white-space:nowrap;
  5291. text-transform:none;
  5292. }
  5293. #u137688_div {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:30px;
  5299. height:30px;
  5300. background:inherit;
  5301. background-color:rgba(170, 170, 170, 1);
  5302. border:none;
  5303. border-radius:15px;
  5304. -moz-box-shadow:none;
  5305. -webkit-box-shadow:none;
  5306. box-shadow:none;
  5307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5308. font-weight:400;
  5309. font-style:normal;
  5310. font-size:18px;
  5311. text-align:center;
  5312. }
  5313. #u137688 {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:779px;
  5317. top:491px;
  5318. width:30px;
  5319. height:30px;
  5320. display:flex;
  5321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5322. font-weight:400;
  5323. font-style:normal;
  5324. font-size:18px;
  5325. text-align:center;
  5326. }
  5327. #u137688 .text {
  5328. position:absolute;
  5329. align-self:center;
  5330. padding:0px 0px 0px 0px;
  5331. box-sizing:border-box;
  5332. width:100%;
  5333. }
  5334. #u137688_text {
  5335. border-width:0px;
  5336. word-wrap:break-word;
  5337. text-transform:none;
  5338. }
  5339. #u137689_div {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:0px;
  5343. top:0px;
  5344. width:90px;
  5345. height:15px;
  5346. background:inherit;
  5347. background-color:rgba(51, 51, 51, 1);
  5348. border:none;
  5349. border-radius:0px;
  5350. -moz-box-shadow:none;
  5351. -webkit-box-shadow:none;
  5352. box-shadow:none;
  5353. }
  5354. #u137689 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:889px;
  5358. top:500px;
  5359. width:90px;
  5360. height:15px;
  5361. display:flex;
  5362. }
  5363. #u137689 .text {
  5364. position:absolute;
  5365. align-self:center;
  5366. padding:2px 2px 2px 2px;
  5367. box-sizing:border-box;
  5368. width:100%;
  5369. }
  5370. #u137689_text {
  5371. border-width:0px;
  5372. word-wrap:break-word;
  5373. text-transform:none;
  5374. visibility:hidden;
  5375. }
  5376. #u137690_div {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:96px;
  5382. height:20px;
  5383. background:inherit;
  5384. background-color:rgba(255, 255, 255, 0);
  5385. border:none;
  5386. border-radius:0px;
  5387. -moz-box-shadow:none;
  5388. -webkit-box-shadow:none;
  5389. box-shadow:none;
  5390. font-size:12px;
  5391. }
  5392. #u137690 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:1036px;
  5396. top:498px;
  5397. width:96px;
  5398. height:20px;
  5399. display:flex;
  5400. font-size:12px;
  5401. }
  5402. #u137690 .text {
  5403. position:absolute;
  5404. align-self:flex-start;
  5405. padding:0px 0px 0px 0px;
  5406. box-sizing:border-box;
  5407. width:100%;
  5408. }
  5409. #u137690_text {
  5410. border-width:0px;
  5411. white-space:nowrap;
  5412. text-transform:none;
  5413. }
  5414. #u137691 {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:0px;
  5418. top:0px;
  5419. width:0px;
  5420. height:0px;
  5421. }
  5422. #u137692_div {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:0px;
  5426. top:0px;
  5427. width:37px;
  5428. height:25px;
  5429. background:inherit;
  5430. background-color:rgba(255, 255, 255, 0);
  5431. border:none;
  5432. border-radius:0px;
  5433. -moz-box-shadow:none;
  5434. -webkit-box-shadow:none;
  5435. box-shadow:none;
  5436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5437. font-weight:400;
  5438. font-style:normal;
  5439. font-size:18px;
  5440. }
  5441. #u137692 {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:819px;
  5445. top:544px;
  5446. width:37px;
  5447. height:25px;
  5448. display:flex;
  5449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5450. font-weight:400;
  5451. font-style:normal;
  5452. font-size:18px;
  5453. }
  5454. #u137692 .text {
  5455. position:absolute;
  5456. align-self:flex-start;
  5457. padding:0px 0px 0px 0px;
  5458. box-sizing:border-box;
  5459. width:100%;
  5460. }
  5461. #u137692_text {
  5462. border-width:0px;
  5463. white-space:nowrap;
  5464. text-transform:none;
  5465. }
  5466. #u137693_div {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:30px;
  5472. height:30px;
  5473. background:inherit;
  5474. background-color:rgba(170, 170, 170, 1);
  5475. border:none;
  5476. border-radius:15px;
  5477. -moz-box-shadow:none;
  5478. -webkit-box-shadow:none;
  5479. box-shadow:none;
  5480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5481. font-weight:400;
  5482. font-style:normal;
  5483. font-size:18px;
  5484. text-align:center;
  5485. }
  5486. #u137693 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:779px;
  5490. top:541px;
  5491. width:30px;
  5492. height:30px;
  5493. display:flex;
  5494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5495. font-weight:400;
  5496. font-style:normal;
  5497. font-size:18px;
  5498. text-align:center;
  5499. }
  5500. #u137693 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:0px 0px 0px 0px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u137693_text {
  5508. border-width:0px;
  5509. word-wrap:break-word;
  5510. text-transform:none;
  5511. }
  5512. #u137694_div {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:80px;
  5518. height:15px;
  5519. background:inherit;
  5520. background-color:rgba(51, 51, 51, 1);
  5521. border:none;
  5522. border-radius:0px;
  5523. -moz-box-shadow:none;
  5524. -webkit-box-shadow:none;
  5525. box-shadow:none;
  5526. }
  5527. #u137694 {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:889px;
  5531. top:550px;
  5532. width:80px;
  5533. height:15px;
  5534. display:flex;
  5535. }
  5536. #u137694 .text {
  5537. position:absolute;
  5538. align-self:center;
  5539. padding:2px 2px 2px 2px;
  5540. box-sizing:border-box;
  5541. width:100%;
  5542. }
  5543. #u137694_text {
  5544. border-width:0px;
  5545. word-wrap:break-word;
  5546. text-transform:none;
  5547. visibility:hidden;
  5548. }
  5549. #u137695_div {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:0px;
  5553. top:0px;
  5554. width:96px;
  5555. height:20px;
  5556. background:inherit;
  5557. background-color:rgba(255, 255, 255, 0);
  5558. border:none;
  5559. border-radius:0px;
  5560. -moz-box-shadow:none;
  5561. -webkit-box-shadow:none;
  5562. box-shadow:none;
  5563. font-size:12px;
  5564. }
  5565. #u137695 {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:1036px;
  5569. top:548px;
  5570. width:96px;
  5571. height:20px;
  5572. display:flex;
  5573. font-size:12px;
  5574. }
  5575. #u137695 .text {
  5576. position:absolute;
  5577. align-self:flex-start;
  5578. padding:0px 0px 0px 0px;
  5579. box-sizing:border-box;
  5580. width:100%;
  5581. }
  5582. #u137695_text {
  5583. border-width:0px;
  5584. white-space:nowrap;
  5585. text-transform:none;
  5586. }
  5587. #u137696 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:0px;
  5593. height:0px;
  5594. }
  5595. #u137697_div {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:0px;
  5599. top:0px;
  5600. width:392px;
  5601. height:312px;
  5602. background:inherit;
  5603. background-color:rgba(242, 242, 242, 1);
  5604. border:none;
  5605. border-radius:0px;
  5606. -moz-box-shadow:none;
  5607. -webkit-box-shadow:none;
  5608. box-shadow:none;
  5609. }
  5610. #u137697 {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:1167px;
  5614. top:274px;
  5615. width:392px;
  5616. height:312px;
  5617. display:flex;
  5618. }
  5619. #u137697 .text {
  5620. position:absolute;
  5621. align-self:center;
  5622. padding:2px 2px 2px 2px;
  5623. box-sizing:border-box;
  5624. width:100%;
  5625. }
  5626. #u137697_text {
  5627. border-width:0px;
  5628. word-wrap:break-word;
  5629. text-transform:none;
  5630. visibility:hidden;
  5631. }
  5632. #u137698_div {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:109px;
  5638. height:25px;
  5639. background:inherit;
  5640. background-color:rgba(255, 255, 255, 0);
  5641. border:none;
  5642. border-radius:0px;
  5643. -moz-box-shadow:none;
  5644. -webkit-box-shadow:none;
  5645. box-shadow:none;
  5646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5647. font-weight:400;
  5648. font-style:normal;
  5649. font-size:18px;
  5650. }
  5651. #u137698 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:1187px;
  5655. top:294px;
  5656. width:109px;
  5657. height:25px;
  5658. display:flex;
  5659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:18px;
  5663. }
  5664. #u137698 .text {
  5665. position:absolute;
  5666. align-self:flex-start;
  5667. padding:0px 0px 0px 0px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u137698_text {
  5672. border-width:0px;
  5673. white-space:nowrap;
  5674. text-transform:none;
  5675. }
  5676. #u137699_div {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:40px;
  5682. height:20px;
  5683. background:inherit;
  5684. background-color:rgba(51, 51, 51, 1);
  5685. border:none;
  5686. border-radius:0px;
  5687. -moz-box-shadow:none;
  5688. -webkit-box-shadow:none;
  5689. box-shadow:none;
  5690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. font-size:12px;
  5694. color:#FFFFFF;
  5695. text-align:center;
  5696. }
  5697. #u137699 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:1420px;
  5701. top:294px;
  5702. width:40px;
  5703. height:20px;
  5704. display:flex;
  5705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5706. font-weight:400;
  5707. font-style:normal;
  5708. font-size:12px;
  5709. color:#FFFFFF;
  5710. text-align:center;
  5711. }
  5712. #u137699 .text {
  5713. position:absolute;
  5714. align-self:center;
  5715. padding:0px 0px 0px 0px;
  5716. box-sizing:border-box;
  5717. width:100%;
  5718. }
  5719. #u137699_text {
  5720. border-width:0px;
  5721. word-wrap:break-word;
  5722. text-transform:none;
  5723. }
  5724. #u137700_div {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:0px;
  5728. top:0px;
  5729. width:40px;
  5730. height:20px;
  5731. background:inherit;
  5732. background-color:rgba(242, 242, 242, 1);
  5733. border:none;
  5734. border-radius:0px;
  5735. -moz-box-shadow:none;
  5736. -webkit-box-shadow:none;
  5737. box-shadow:none;
  5738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. font-size:12px;
  5742. color:#7F7F7F;
  5743. text-align:center;
  5744. }
  5745. #u137700 {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:1460px;
  5749. top:294px;
  5750. width:40px;
  5751. height:20px;
  5752. display:flex;
  5753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:12px;
  5757. color:#7F7F7F;
  5758. text-align:center;
  5759. }
  5760. #u137700 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:0px 0px 0px 0px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u137700_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. }
  5772. #u137701_div {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:40px;
  5778. height:20px;
  5779. background:inherit;
  5780. background-color:rgba(242, 242, 242, 1);
  5781. border:none;
  5782. border-radius:0px;
  5783. -moz-box-shadow:none;
  5784. -webkit-box-shadow:none;
  5785. box-shadow:none;
  5786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5787. font-weight:400;
  5788. font-style:normal;
  5789. font-size:12px;
  5790. color:#7F7F7F;
  5791. text-align:center;
  5792. }
  5793. #u137701 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:1500px;
  5797. top:294px;
  5798. width:40px;
  5799. height:20px;
  5800. display:flex;
  5801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5802. font-weight:400;
  5803. font-style:normal;
  5804. font-size:12px;
  5805. color:#7F7F7F;
  5806. text-align:center;
  5807. }
  5808. #u137701 .text {
  5809. position:absolute;
  5810. align-self:center;
  5811. padding:0px 0px 0px 0px;
  5812. box-sizing:border-box;
  5813. width:100%;
  5814. }
  5815. #u137701_text {
  5816. border-width:0px;
  5817. word-wrap:break-word;
  5818. text-transform:none;
  5819. }
  5820. #u137702 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:0px;
  5826. height:0px;
  5827. }
  5828. #u137703_div {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:19px;
  5834. height:25px;
  5835. background:inherit;
  5836. background-color:rgba(255, 255, 255, 0);
  5837. border:none;
  5838. border-radius:0px;
  5839. -moz-box-shadow:none;
  5840. -webkit-box-shadow:none;
  5841. box-shadow:none;
  5842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:18px;
  5846. }
  5847. #u137703 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:1227px;
  5851. top:344px;
  5852. width:19px;
  5853. height:25px;
  5854. display:flex;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:18px;
  5859. }
  5860. #u137703 .text {
  5861. position:absolute;
  5862. align-self:flex-start;
  5863. padding:0px 0px 0px 0px;
  5864. box-sizing:border-box;
  5865. width:100%;
  5866. }
  5867. #u137703_text {
  5868. border-width:0px;
  5869. white-space:nowrap;
  5870. text-transform:none;
  5871. }
  5872. #u137704_div {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:30px;
  5878. height:30px;
  5879. background:inherit;
  5880. background-color:rgba(170, 170, 170, 1);
  5881. border:none;
  5882. border-radius:15px;
  5883. -moz-box-shadow:none;
  5884. -webkit-box-shadow:none;
  5885. box-shadow:none;
  5886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5887. font-weight:400;
  5888. font-style:normal;
  5889. font-size:18px;
  5890. text-align:center;
  5891. }
  5892. #u137704 {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:1187px;
  5896. top:341px;
  5897. width:30px;
  5898. height:30px;
  5899. display:flex;
  5900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:18px;
  5904. text-align:center;
  5905. }
  5906. #u137704 .text {
  5907. position:absolute;
  5908. align-self:center;
  5909. padding:0px 0px 0px 0px;
  5910. box-sizing:border-box;
  5911. width:100%;
  5912. }
  5913. #u137704_text {
  5914. border-width:0px;
  5915. word-wrap:break-word;
  5916. text-transform:none;
  5917. }
  5918. #u137705_div {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:132px;
  5924. height:15px;
  5925. background:inherit;
  5926. background-color:rgba(51, 51, 51, 1);
  5927. border:none;
  5928. border-radius:0px;
  5929. -moz-box-shadow:none;
  5930. -webkit-box-shadow:none;
  5931. box-shadow:none;
  5932. }
  5933. #u137705 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:1297px;
  5937. top:350px;
  5938. width:132px;
  5939. height:15px;
  5940. display:flex;
  5941. }
  5942. #u137705 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:2px 2px 2px 2px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u137705_text {
  5950. border-width:0px;
  5951. word-wrap:break-word;
  5952. text-transform:none;
  5953. visibility:hidden;
  5954. }
  5955. #u137706_div {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:96px;
  5961. height:20px;
  5962. background:inherit;
  5963. background-color:rgba(255, 255, 255, 0);
  5964. border:none;
  5965. border-radius:0px;
  5966. -moz-box-shadow:none;
  5967. -webkit-box-shadow:none;
  5968. box-shadow:none;
  5969. font-size:12px;
  5970. }
  5971. #u137706 {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:1444px;
  5975. top:348px;
  5976. width:96px;
  5977. height:20px;
  5978. display:flex;
  5979. font-size:12px;
  5980. }
  5981. #u137706 .text {
  5982. position:absolute;
  5983. align-self:flex-start;
  5984. padding:0px 0px 0px 0px;
  5985. box-sizing:border-box;
  5986. width:100%;
  5987. }
  5988. #u137706_text {
  5989. border-width:0px;
  5990. white-space:nowrap;
  5991. text-transform:none;
  5992. }
  5993. #u137707 {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:0px;
  5997. top:0px;
  5998. width:0px;
  5999. height:0px;
  6000. }
  6001. #u137708_div {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:0px;
  6005. top:0px;
  6006. width:23px;
  6007. height:25px;
  6008. background:inherit;
  6009. background-color:rgba(255, 255, 255, 0);
  6010. border:none;
  6011. border-radius:0px;
  6012. -moz-box-shadow:none;
  6013. -webkit-box-shadow:none;
  6014. box-shadow:none;
  6015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6016. font-weight:400;
  6017. font-style:normal;
  6018. font-size:18px;
  6019. }
  6020. #u137708 {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:1227px;
  6024. top:394px;
  6025. width:23px;
  6026. height:25px;
  6027. display:flex;
  6028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6029. font-weight:400;
  6030. font-style:normal;
  6031. font-size:18px;
  6032. }
  6033. #u137708 .text {
  6034. position:absolute;
  6035. align-self:flex-start;
  6036. padding:0px 0px 0px 0px;
  6037. box-sizing:border-box;
  6038. width:100%;
  6039. }
  6040. #u137708_text {
  6041. border-width:0px;
  6042. white-space:nowrap;
  6043. text-transform:none;
  6044. }
  6045. #u137709_div {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:0px;
  6049. top:0px;
  6050. width:30px;
  6051. height:30px;
  6052. background:inherit;
  6053. background-color:rgba(170, 170, 170, 1);
  6054. border:none;
  6055. border-radius:15px;
  6056. -moz-box-shadow:none;
  6057. -webkit-box-shadow:none;
  6058. box-shadow:none;
  6059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6060. font-weight:400;
  6061. font-style:normal;
  6062. font-size:18px;
  6063. text-align:center;
  6064. }
  6065. #u137709 {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:1187px;
  6069. top:391px;
  6070. width:30px;
  6071. height:30px;
  6072. display:flex;
  6073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6074. font-weight:400;
  6075. font-style:normal;
  6076. font-size:18px;
  6077. text-align:center;
  6078. }
  6079. #u137709 .text {
  6080. position:absolute;
  6081. align-self:center;
  6082. padding:0px 0px 0px 0px;
  6083. box-sizing:border-box;
  6084. width:100%;
  6085. }
  6086. #u137709_text {
  6087. border-width:0px;
  6088. word-wrap:break-word;
  6089. text-transform:none;
  6090. }
  6091. #u137710_div {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:119px;
  6097. height:15px;
  6098. background:inherit;
  6099. background-color:rgba(51, 51, 51, 1);
  6100. border:none;
  6101. border-radius:0px;
  6102. -moz-box-shadow:none;
  6103. -webkit-box-shadow:none;
  6104. box-shadow:none;
  6105. }
  6106. #u137710 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:1297px;
  6110. top:400px;
  6111. width:119px;
  6112. height:15px;
  6113. display:flex;
  6114. }
  6115. #u137710 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:2px 2px 2px 2px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u137710_text {
  6123. border-width:0px;
  6124. word-wrap:break-word;
  6125. text-transform:none;
  6126. visibility:hidden;
  6127. }
  6128. #u137711_div {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:96px;
  6134. height:20px;
  6135. background:inherit;
  6136. background-color:rgba(255, 255, 255, 0);
  6137. border:none;
  6138. border-radius:0px;
  6139. -moz-box-shadow:none;
  6140. -webkit-box-shadow:none;
  6141. box-shadow:none;
  6142. font-size:12px;
  6143. }
  6144. #u137711 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:1444px;
  6148. top:398px;
  6149. width:96px;
  6150. height:20px;
  6151. display:flex;
  6152. font-size:12px;
  6153. }
  6154. #u137711 .text {
  6155. position:absolute;
  6156. align-self:flex-start;
  6157. padding:0px 0px 0px 0px;
  6158. box-sizing:border-box;
  6159. width:100%;
  6160. }
  6161. #u137711_text {
  6162. border-width:0px;
  6163. white-space:nowrap;
  6164. text-transform:none;
  6165. }
  6166. #u137712 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:0px;
  6172. height:0px;
  6173. }
  6174. #u137713_div {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:23px;
  6180. height:25px;
  6181. background:inherit;
  6182. background-color:rgba(255, 255, 255, 0);
  6183. border:none;
  6184. border-radius:0px;
  6185. -moz-box-shadow:none;
  6186. -webkit-box-shadow:none;
  6187. box-shadow:none;
  6188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6189. font-weight:400;
  6190. font-style:normal;
  6191. font-size:18px;
  6192. }
  6193. #u137713 {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:1227px;
  6197. top:444px;
  6198. width:23px;
  6199. height:25px;
  6200. display:flex;
  6201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6202. font-weight:400;
  6203. font-style:normal;
  6204. font-size:18px;
  6205. }
  6206. #u137713 .text {
  6207. position:absolute;
  6208. align-self:flex-start;
  6209. padding:0px 0px 0px 0px;
  6210. box-sizing:border-box;
  6211. width:100%;
  6212. }
  6213. #u137713_text {
  6214. border-width:0px;
  6215. white-space:nowrap;
  6216. text-transform:none;
  6217. }
  6218. #u137714_div {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:30px;
  6224. height:30px;
  6225. background:inherit;
  6226. background-color:rgba(170, 170, 170, 1);
  6227. border:none;
  6228. border-radius:15px;
  6229. -moz-box-shadow:none;
  6230. -webkit-box-shadow:none;
  6231. box-shadow:none;
  6232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6233. font-weight:400;
  6234. font-style:normal;
  6235. font-size:18px;
  6236. text-align:center;
  6237. }
  6238. #u137714 {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:1187px;
  6242. top:441px;
  6243. width:30px;
  6244. height:30px;
  6245. display:flex;
  6246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6247. font-weight:400;
  6248. font-style:normal;
  6249. font-size:18px;
  6250. text-align:center;
  6251. }
  6252. #u137714 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:0px 0px 0px 0px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u137714_text {
  6260. border-width:0px;
  6261. word-wrap:break-word;
  6262. text-transform:none;
  6263. }
  6264. #u137715_div {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:0px;
  6268. top:0px;
  6269. width:101px;
  6270. height:15px;
  6271. background:inherit;
  6272. background-color:rgba(51, 51, 51, 1);
  6273. border:none;
  6274. border-radius:0px;
  6275. -moz-box-shadow:none;
  6276. -webkit-box-shadow:none;
  6277. box-shadow:none;
  6278. }
  6279. #u137715 {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:1297px;
  6283. top:450px;
  6284. width:101px;
  6285. height:15px;
  6286. display:flex;
  6287. }
  6288. #u137715 .text {
  6289. position:absolute;
  6290. align-self:center;
  6291. padding:2px 2px 2px 2px;
  6292. box-sizing:border-box;
  6293. width:100%;
  6294. }
  6295. #u137715_text {
  6296. border-width:0px;
  6297. word-wrap:break-word;
  6298. text-transform:none;
  6299. visibility:hidden;
  6300. }
  6301. #u137716_div {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:0px;
  6305. top:0px;
  6306. width:96px;
  6307. height:20px;
  6308. background:inherit;
  6309. background-color:rgba(255, 255, 255, 0);
  6310. border:none;
  6311. border-radius:0px;
  6312. -moz-box-shadow:none;
  6313. -webkit-box-shadow:none;
  6314. box-shadow:none;
  6315. font-size:12px;
  6316. }
  6317. #u137716 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:1444px;
  6321. top:448px;
  6322. width:96px;
  6323. height:20px;
  6324. display:flex;
  6325. font-size:12px;
  6326. }
  6327. #u137716 .text {
  6328. position:absolute;
  6329. align-self:flex-start;
  6330. padding:0px 0px 0px 0px;
  6331. box-sizing:border-box;
  6332. width:100%;
  6333. }
  6334. #u137716_text {
  6335. border-width:0px;
  6336. white-space:nowrap;
  6337. text-transform:none;
  6338. }
  6339. #u137717 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:0px;
  6343. top:0px;
  6344. width:0px;
  6345. height:0px;
  6346. }
  6347. #u137718_div {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:37px;
  6353. height:25px;
  6354. background:inherit;
  6355. background-color:rgba(255, 255, 255, 0);
  6356. border:none;
  6357. border-radius:0px;
  6358. -moz-box-shadow:none;
  6359. -webkit-box-shadow:none;
  6360. box-shadow:none;
  6361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6362. font-weight:400;
  6363. font-style:normal;
  6364. font-size:18px;
  6365. }
  6366. #u137718 {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:1227px;
  6370. top:494px;
  6371. width:37px;
  6372. height:25px;
  6373. display:flex;
  6374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6375. font-weight:400;
  6376. font-style:normal;
  6377. font-size:18px;
  6378. }
  6379. #u137718 .text {
  6380. position:absolute;
  6381. align-self:flex-start;
  6382. padding:0px 0px 0px 0px;
  6383. box-sizing:border-box;
  6384. width:100%;
  6385. }
  6386. #u137718_text {
  6387. border-width:0px;
  6388. white-space:nowrap;
  6389. text-transform:none;
  6390. }
  6391. #u137719_div {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:0px;
  6395. top:0px;
  6396. width:30px;
  6397. height:30px;
  6398. background:inherit;
  6399. background-color:rgba(170, 170, 170, 1);
  6400. border:none;
  6401. border-radius:15px;
  6402. -moz-box-shadow:none;
  6403. -webkit-box-shadow:none;
  6404. box-shadow:none;
  6405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6406. font-weight:400;
  6407. font-style:normal;
  6408. font-size:18px;
  6409. text-align:center;
  6410. }
  6411. #u137719 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:1187px;
  6415. top:491px;
  6416. width:30px;
  6417. height:30px;
  6418. display:flex;
  6419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:18px;
  6423. text-align:center;
  6424. }
  6425. #u137719 .text {
  6426. position:absolute;
  6427. align-self:center;
  6428. padding:0px 0px 0px 0px;
  6429. box-sizing:border-box;
  6430. width:100%;
  6431. }
  6432. #u137719_text {
  6433. border-width:0px;
  6434. word-wrap:break-word;
  6435. text-transform:none;
  6436. }
  6437. #u137720_div {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:90px;
  6443. height:15px;
  6444. background:inherit;
  6445. background-color:rgba(51, 51, 51, 1);
  6446. border:none;
  6447. border-radius:0px;
  6448. -moz-box-shadow:none;
  6449. -webkit-box-shadow:none;
  6450. box-shadow:none;
  6451. }
  6452. #u137720 {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:1297px;
  6456. top:500px;
  6457. width:90px;
  6458. height:15px;
  6459. display:flex;
  6460. }
  6461. #u137720 .text {
  6462. position:absolute;
  6463. align-self:center;
  6464. padding:2px 2px 2px 2px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u137720_text {
  6469. border-width:0px;
  6470. word-wrap:break-word;
  6471. text-transform:none;
  6472. visibility:hidden;
  6473. }
  6474. #u137721_div {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:96px;
  6480. height:20px;
  6481. background:inherit;
  6482. background-color:rgba(255, 255, 255, 0);
  6483. border:none;
  6484. border-radius:0px;
  6485. -moz-box-shadow:none;
  6486. -webkit-box-shadow:none;
  6487. box-shadow:none;
  6488. font-size:12px;
  6489. }
  6490. #u137721 {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:1444px;
  6494. top:498px;
  6495. width:96px;
  6496. height:20px;
  6497. display:flex;
  6498. font-size:12px;
  6499. }
  6500. #u137721 .text {
  6501. position:absolute;
  6502. align-self:flex-start;
  6503. padding:0px 0px 0px 0px;
  6504. box-sizing:border-box;
  6505. width:100%;
  6506. }
  6507. #u137721_text {
  6508. border-width:0px;
  6509. white-space:nowrap;
  6510. text-transform:none;
  6511. }
  6512. #u137722 {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:0px;
  6516. top:0px;
  6517. width:0px;
  6518. height:0px;
  6519. }
  6520. #u137723_div {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:0px;
  6524. top:0px;
  6525. width:37px;
  6526. height:25px;
  6527. background:inherit;
  6528. background-color:rgba(255, 255, 255, 0);
  6529. border:none;
  6530. border-radius:0px;
  6531. -moz-box-shadow:none;
  6532. -webkit-box-shadow:none;
  6533. box-shadow:none;
  6534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6535. font-weight:400;
  6536. font-style:normal;
  6537. font-size:18px;
  6538. }
  6539. #u137723 {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:1227px;
  6543. top:544px;
  6544. width:37px;
  6545. height:25px;
  6546. display:flex;
  6547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6548. font-weight:400;
  6549. font-style:normal;
  6550. font-size:18px;
  6551. }
  6552. #u137723 .text {
  6553. position:absolute;
  6554. align-self:flex-start;
  6555. padding:0px 0px 0px 0px;
  6556. box-sizing:border-box;
  6557. width:100%;
  6558. }
  6559. #u137723_text {
  6560. border-width:0px;
  6561. white-space:nowrap;
  6562. text-transform:none;
  6563. }
  6564. #u137724_div {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:30px;
  6570. height:30px;
  6571. background:inherit;
  6572. background-color:rgba(170, 170, 170, 1);
  6573. border:none;
  6574. border-radius:15px;
  6575. -moz-box-shadow:none;
  6576. -webkit-box-shadow:none;
  6577. box-shadow:none;
  6578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6579. font-weight:400;
  6580. font-style:normal;
  6581. font-size:18px;
  6582. text-align:center;
  6583. }
  6584. #u137724 {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:1187px;
  6588. top:541px;
  6589. width:30px;
  6590. height:30px;
  6591. display:flex;
  6592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6593. font-weight:400;
  6594. font-style:normal;
  6595. font-size:18px;
  6596. text-align:center;
  6597. }
  6598. #u137724 .text {
  6599. position:absolute;
  6600. align-self:center;
  6601. padding:0px 0px 0px 0px;
  6602. box-sizing:border-box;
  6603. width:100%;
  6604. }
  6605. #u137724_text {
  6606. border-width:0px;
  6607. word-wrap:break-word;
  6608. text-transform:none;
  6609. }
  6610. #u137725_div {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:0px;
  6614. top:0px;
  6615. width:80px;
  6616. height:15px;
  6617. background:inherit;
  6618. background-color:rgba(51, 51, 51, 1);
  6619. border:none;
  6620. border-radius:0px;
  6621. -moz-box-shadow:none;
  6622. -webkit-box-shadow:none;
  6623. box-shadow:none;
  6624. }
  6625. #u137725 {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:1297px;
  6629. top:550px;
  6630. width:80px;
  6631. height:15px;
  6632. display:flex;
  6633. }
  6634. #u137725 .text {
  6635. position:absolute;
  6636. align-self:center;
  6637. padding:2px 2px 2px 2px;
  6638. box-sizing:border-box;
  6639. width:100%;
  6640. }
  6641. #u137725_text {
  6642. border-width:0px;
  6643. word-wrap:break-word;
  6644. text-transform:none;
  6645. visibility:hidden;
  6646. }
  6647. #u137726_div {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:96px;
  6653. height:20px;
  6654. background:inherit;
  6655. background-color:rgba(255, 255, 255, 0);
  6656. border:none;
  6657. border-radius:0px;
  6658. -moz-box-shadow:none;
  6659. -webkit-box-shadow:none;
  6660. box-shadow:none;
  6661. font-size:12px;
  6662. }
  6663. #u137726 {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:1444px;
  6667. top:548px;
  6668. width:96px;
  6669. height:20px;
  6670. display:flex;
  6671. font-size:12px;
  6672. }
  6673. #u137726 .text {
  6674. position:absolute;
  6675. align-self:flex-start;
  6676. padding:0px 0px 0px 0px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u137726_text {
  6681. border-width:0px;
  6682. white-space:nowrap;
  6683. text-transform:none;
  6684. }