styles.css 111 KB

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