styles.css 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:433px;
  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. #u149805_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u149805 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u149805 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u149805_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u149806_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. #u149806 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u149806 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u149806_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u149807 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u149808_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. #u149808 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u149808 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u149808_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u149809 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u149810_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u149810 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u149810 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u149810_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u149811_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u149811 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u149811 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u149811_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u149812 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u149813_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u149813 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u149813 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u149813_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u149814_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u149814 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u149814 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u149814_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u149815_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u149815 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u149815 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u149815_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u149816_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u149816 {
  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. #u149816 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u149816_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u149817_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u149817 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u149817 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u149817_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u149818_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. #u149818 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u149818 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u149818_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u149819 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u149820_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u149820 {
  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. #u149820 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u149820_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u149821_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. #u149821 {
  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. #u149821 .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. #u149821_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u149822 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u149823_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u149823 {
  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. #u149823 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u149823_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u149824_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. #u149824 {
  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. #u149824 .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. #u149824_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u149825_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. #u149825 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u149825 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u149825_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u149826 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u149827_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u149827 {
  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. #u149827 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u149827_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u149828_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. #u149828 {
  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. #u149828 .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. #u149828_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u149829 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u149830_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u149830 {
  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. #u149830 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u149830_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u149831_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. #u149831 {
  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. #u149831 .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. #u149831_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u149832_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:40px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(215, 215, 215, 1);
  792. border-left:0px;
  793. border-top:0px;
  794. border-right:0px;
  795. border-radius:0px;
  796. border-bottom-right-radius:0px;
  797. border-bottom-left-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. }
  802. #u149832 {
  803. border-width:0px;
  804. position:absolute;
  805. left:29px;
  806. top:67px;
  807. width:375px;
  808. height:40px;
  809. display:flex;
  810. }
  811. #u149832 .text {
  812. position:absolute;
  813. align-self:center;
  814. padding:2px 2px 2px 2px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u149832_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. visibility:hidden;
  823. }
  824. #u149833_img {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:375px;
  830. height:44px;
  831. }
  832. #u149833 {
  833. border-width:0px;
  834. position:absolute;
  835. left:29px;
  836. top:24px;
  837. width:375px;
  838. height:44px;
  839. display:flex;
  840. }
  841. #u149833 .text {
  842. position:absolute;
  843. align-self:center;
  844. padding:2px 2px 2px 2px;
  845. box-sizing:border-box;
  846. width:100%;
  847. }
  848. #u149833_text {
  849. border-width:0px;
  850. word-wrap:break-word;
  851. text-transform:none;
  852. visibility:hidden;
  853. }
  854. #u149834 {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:0px;
  860. height:0px;
  861. }
  862. #u149835_div {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:88px;
  868. height:32px;
  869. background:inherit;
  870. background-color:rgba(255, 255, 255, 1);
  871. box-sizing:border-box;
  872. border-width:1px;
  873. border-style:solid;
  874. border-color:rgba(242, 242, 242, 1);
  875. border-radius:33px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. }
  880. #u149835 {
  881. border-width:0px;
  882. position:absolute;
  883. left:309px;
  884. top:71px;
  885. width:88px;
  886. height:32px;
  887. display:flex;
  888. }
  889. #u149835 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u149835_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u149836 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u149837_img {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:18px;
  916. height:18px;
  917. }
  918. #u149837 {
  919. border-width:0px;
  920. position:absolute;
  921. left:372px;
  922. top:78px;
  923. width:18px;
  924. height:18px;
  925. display:flex;
  926. }
  927. #u149837 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 2px 2px 2px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u149837_text {
  935. border-width:0px;
  936. word-wrap:break-word;
  937. text-transform:none;
  938. visibility:hidden;
  939. }
  940. #u149838_img {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:6px;
  946. height:6px;
  947. }
  948. #u149838 {
  949. border-width:0px;
  950. position:absolute;
  951. left:378px;
  952. top:84px;
  953. width:6px;
  954. height:6px;
  955. display:flex;
  956. }
  957. #u149838 .text {
  958. position:absolute;
  959. align-self:center;
  960. padding:2px 2px 2px 2px;
  961. box-sizing:border-box;
  962. width:100%;
  963. }
  964. #u149838_text {
  965. border-width:0px;
  966. word-wrap:break-word;
  967. text-transform:none;
  968. visibility:hidden;
  969. }
  970. #u149839 {
  971. border-width:0px;
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:0px;
  976. height:0px;
  977. }
  978. #u149840_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:5px;
  984. height:5px;
  985. }
  986. #u149840 {
  987. border-width:0px;
  988. position:absolute;
  989. left:323px;
  990. top:85px;
  991. width:5px;
  992. height:5px;
  993. display:flex;
  994. }
  995. #u149840 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:2px 2px 2px 2px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u149840_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. visibility:hidden;
  1007. }
  1008. #u149841_img {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:5px;
  1014. height:5px;
  1015. }
  1016. #u149841 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:339px;
  1020. top:85px;
  1021. width:5px;
  1022. height:5px;
  1023. display:flex;
  1024. }
  1025. #u149841 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u149841_text {
  1033. border-width:0px;
  1034. word-wrap:break-word;
  1035. text-transform:none;
  1036. visibility:hidden;
  1037. }
  1038. #u149842_img {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:7px;
  1044. height:7px;
  1045. }
  1046. #u149842 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:330px;
  1050. top:84px;
  1051. width:7px;
  1052. height:7px;
  1053. display:flex;
  1054. }
  1055. #u149842 .text {
  1056. position:absolute;
  1057. align-self:center;
  1058. padding:2px 2px 2px 2px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u149842_text {
  1063. border-width:0px;
  1064. word-wrap:break-word;
  1065. text-transform:none;
  1066. visibility:hidden;
  1067. }
  1068. #u149843_img {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:0px;
  1072. top:0px;
  1073. width:19px;
  1074. height:2px;
  1075. }
  1076. #u149843 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:347px;
  1080. top:87px;
  1081. width:18px;
  1082. height:1px;
  1083. display:flex;
  1084. -webkit-transform:rotate(90deg);
  1085. -moz-transform:rotate(90deg);
  1086. -ms-transform:rotate(90deg);
  1087. transform:rotate(90deg);
  1088. }
  1089. #u149843 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u149843_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u149844_div {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:65px;
  1108. height:22px;
  1109. background:inherit;
  1110. background-color:rgba(255, 255, 255, 0);
  1111. border:none;
  1112. border-radius:0px;
  1113. -moz-box-shadow:none;
  1114. -webkit-box-shadow:none;
  1115. box-shadow:none;
  1116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1117. font-weight:400;
  1118. font-style:normal;
  1119. font-size:16px;
  1120. color:#000000;
  1121. }
  1122. #u149844 {
  1123. border-width:0px;
  1124. position:absolute;
  1125. left:187px;
  1126. top:78px;
  1127. width:65px;
  1128. height:22px;
  1129. display:flex;
  1130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1131. font-weight:400;
  1132. font-style:normal;
  1133. font-size:16px;
  1134. color:#000000;
  1135. }
  1136. #u149844 .text {
  1137. position:absolute;
  1138. align-self:flex-start;
  1139. padding:0px 0px 0px 0px;
  1140. box-sizing:border-box;
  1141. width:100%;
  1142. }
  1143. #u149844_text {
  1144. border-width:0px;
  1145. white-space:nowrap;
  1146. text-transform:none;
  1147. }
  1148. #u149845_div {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:0px;
  1152. top:0px;
  1153. width:12px;
  1154. height:12px;
  1155. background:inherit;
  1156. background-color:rgba(255, 255, 255, 0);
  1157. box-sizing:border-box;
  1158. border-width:2px;
  1159. border-style:solid;
  1160. border-color:rgba(51, 51, 51, 1);
  1161. border-right:0px;
  1162. border-bottom:0px;
  1163. border-radius:0px;
  1164. border-top-right-radius:0px;
  1165. border-bottom-left-radius:0px;
  1166. -moz-box-shadow:none;
  1167. -webkit-box-shadow:none;
  1168. box-shadow:none;
  1169. }
  1170. #u149845 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:41px;
  1174. top:78px;
  1175. width:12px;
  1176. height:12px;
  1177. display:flex;
  1178. -webkit-transform:rotate(315deg);
  1179. -moz-transform:rotate(315deg);
  1180. -ms-transform:rotate(315deg);
  1181. transform:rotate(315deg);
  1182. }
  1183. #u149845 .text {
  1184. position:absolute;
  1185. align-self:center;
  1186. padding:2px 2px 2px 2px;
  1187. box-sizing:border-box;
  1188. width:100%;
  1189. }
  1190. #u149845_text {
  1191. border-width:0px;
  1192. word-wrap:break-word;
  1193. text-transform:none;
  1194. visibility:hidden;
  1195. }
  1196. #u149846_img {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:23px;
  1202. height:23px;
  1203. }
  1204. #u149846 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:68px;
  1208. top:73px;
  1209. width:23px;
  1210. height:23px;
  1211. display:flex;
  1212. }
  1213. #u149846 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:2px 2px 2px 2px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u149846_text {
  1221. border-width:0px;
  1222. word-wrap:break-word;
  1223. text-transform:none;
  1224. visibility:hidden;
  1225. }
  1226. #u149847_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:375px;
  1232. height:1111px;
  1233. background:inherit;
  1234. background-color:rgba(242, 242, 242, 0.996078431372549);
  1235. border:none;
  1236. border-radius:0px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. }
  1241. #u149847 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:29px;
  1245. top:106px;
  1246. width:375px;
  1247. height:1111px;
  1248. display:flex;
  1249. }
  1250. #u149847 .text {
  1251. position:absolute;
  1252. align-self:center;
  1253. padding:2px 2px 2px 2px;
  1254. box-sizing:border-box;
  1255. width:100%;
  1256. }
  1257. #u149847_text {
  1258. border-width:0px;
  1259. word-wrap:break-word;
  1260. text-transform:none;
  1261. visibility:hidden;
  1262. }
  1263. #u149848_div {
  1264. border-width:0px;
  1265. position:absolute;
  1266. left:0px;
  1267. top:0px;
  1268. width:376px;
  1269. height:221px;
  1270. background:inherit;
  1271. background-color:rgba(255, 255, 255, 1);
  1272. border:none;
  1273. border-radius:0px;
  1274. -moz-box-shadow:none;
  1275. -webkit-box-shadow:none;
  1276. box-shadow:none;
  1277. }
  1278. #u149848 {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:31px;
  1282. top:726px;
  1283. width:376px;
  1284. height:221px;
  1285. display:flex;
  1286. }
  1287. #u149848 .text {
  1288. position:absolute;
  1289. align-self:center;
  1290. padding:2px 2px 2px 2px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u149848_text {
  1295. border-width:0px;
  1296. word-wrap:break-word;
  1297. text-transform:none;
  1298. visibility:hidden;
  1299. }
  1300. #u149849_div {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:324px;
  1306. height:120px;
  1307. background:inherit;
  1308. background-color:rgba(255, 255, 255, 1);
  1309. box-sizing:border-box;
  1310. border-width:1px;
  1311. border-style:solid;
  1312. border-color:rgba(121, 121, 121, 1);
  1313. border-top:0px;
  1314. border-right:0px;
  1315. border-radius:0px;
  1316. border-top-left-radius:0px;
  1317. border-bottom-right-radius:0px;
  1318. -moz-box-shadow:none;
  1319. -webkit-box-shadow:none;
  1320. box-shadow:none;
  1321. }
  1322. #u149849 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:62px;
  1326. top:789px;
  1327. width:324px;
  1328. height:120px;
  1329. display:flex;
  1330. }
  1331. #u149849 .text {
  1332. position:absolute;
  1333. align-self:center;
  1334. padding:2px 2px 2px 2px;
  1335. box-sizing:border-box;
  1336. width:100%;
  1337. }
  1338. #u149849_text {
  1339. border-width:0px;
  1340. word-wrap:break-word;
  1341. text-transform:none;
  1342. visibility:hidden;
  1343. }
  1344. #u149850_div {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:0px;
  1348. top:0px;
  1349. width:30px;
  1350. height:120px;
  1351. background:inherit;
  1352. background-color:rgba(51, 51, 51, 0.298039215686275);
  1353. border:none;
  1354. border-radius:0px;
  1355. -moz-box-shadow:none;
  1356. -webkit-box-shadow:none;
  1357. box-shadow:none;
  1358. }
  1359. #u149850 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:166px;
  1363. top:789px;
  1364. width:30px;
  1365. height:120px;
  1366. display:flex;
  1367. }
  1368. #u149850 .text {
  1369. position:absolute;
  1370. align-self:center;
  1371. padding:2px 2px 2px 2px;
  1372. box-sizing:border-box;
  1373. width:100%;
  1374. }
  1375. #u149850_text {
  1376. border-width:0px;
  1377. word-wrap:break-word;
  1378. text-transform:none;
  1379. visibility:hidden;
  1380. }
  1381. #u149851 {
  1382. border-width:0px;
  1383. position:absolute;
  1384. left:0px;
  1385. top:0px;
  1386. width:0px;
  1387. height:0px;
  1388. }
  1389. #u149852_div {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:0px;
  1393. top:0px;
  1394. width:375px;
  1395. height:180px;
  1396. background:inherit;
  1397. background-color:rgba(24, 144, 255, 1);
  1398. border:none;
  1399. border-radius:0px;
  1400. -moz-box-shadow:none;
  1401. -webkit-box-shadow:none;
  1402. box-shadow:none;
  1403. }
  1404. #u149852 {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:29px;
  1408. top:157px;
  1409. width:375px;
  1410. height:180px;
  1411. display:flex;
  1412. }
  1413. #u149852 .text {
  1414. position:absolute;
  1415. align-self:center;
  1416. padding:2px 2px 2px 2px;
  1417. box-sizing:border-box;
  1418. width:100%;
  1419. }
  1420. #u149852_text {
  1421. border-width:0px;
  1422. word-wrap:break-word;
  1423. text-transform:none;
  1424. visibility:hidden;
  1425. }
  1426. #u149853 {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:0px;
  1432. height:0px;
  1433. }
  1434. #u149854_div {
  1435. border-width:0px;
  1436. position:absolute;
  1437. left:0px;
  1438. top:0px;
  1439. width:94px;
  1440. height:25px;
  1441. background:inherit;
  1442. background-color:rgba(255, 255, 255, 0);
  1443. border:none;
  1444. border-radius:0px;
  1445. -moz-box-shadow:none;
  1446. -webkit-box-shadow:none;
  1447. box-shadow:none;
  1448. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1449. font-weight:500;
  1450. font-style:normal;
  1451. font-size:18px;
  1452. color:#FFFFFF;
  1453. text-align:center;
  1454. }
  1455. #u149854 {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:70px;
  1459. top:270px;
  1460. width:94px;
  1461. height:25px;
  1462. display:flex;
  1463. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1464. font-weight:500;
  1465. font-style:normal;
  1466. font-size:18px;
  1467. color:#FFFFFF;
  1468. text-align:center;
  1469. }
  1470. #u149854 .text {
  1471. position:absolute;
  1472. align-self:flex-start;
  1473. padding:0px 0px 0px 0px;
  1474. box-sizing:border-box;
  1475. width:100%;
  1476. }
  1477. #u149854_text {
  1478. border-width:0px;
  1479. white-space:nowrap;
  1480. text-transform:none;
  1481. }
  1482. #u149855_div {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:81px;
  1488. height:17px;
  1489. background:inherit;
  1490. background-color:rgba(255, 255, 255, 0);
  1491. border:none;
  1492. border-radius:0px;
  1493. -moz-box-shadow:none;
  1494. -webkit-box-shadow:none;
  1495. box-shadow:none;
  1496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1497. font-weight:400;
  1498. font-style:normal;
  1499. font-size:12px;
  1500. color:#FFFFFF;
  1501. text-align:center;
  1502. }
  1503. #u149855 {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:77px;
  1507. top:303px;
  1508. width:81px;
  1509. height:17px;
  1510. display:flex;
  1511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1512. font-weight:400;
  1513. font-style:normal;
  1514. font-size:12px;
  1515. color:#FFFFFF;
  1516. text-align:center;
  1517. }
  1518. #u149855 .text {
  1519. position:absolute;
  1520. align-self:flex-start;
  1521. padding:0px 0px 0px 0px;
  1522. box-sizing:border-box;
  1523. width:100%;
  1524. }
  1525. #u149855_text {
  1526. border-width:0px;
  1527. white-space:nowrap;
  1528. text-transform:none;
  1529. }
  1530. #u149856_div {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:0px;
  1534. top:0px;
  1535. width:376px;
  1536. height:120px;
  1537. background:inherit;
  1538. background-color:rgba(255, 255, 255, 1);
  1539. border:none;
  1540. border-radius:0px;
  1541. -moz-box-shadow:none;
  1542. -webkit-box-shadow:none;
  1543. box-shadow:none;
  1544. }
  1545. #u149856 {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:29px;
  1549. top:337px;
  1550. width:376px;
  1551. height:120px;
  1552. display:flex;
  1553. }
  1554. #u149856 .text {
  1555. position:absolute;
  1556. align-self:center;
  1557. padding:2px 2px 2px 2px;
  1558. box-sizing:border-box;
  1559. width:100%;
  1560. }
  1561. #u149856_text {
  1562. border-width:0px;
  1563. word-wrap:break-word;
  1564. text-transform:none;
  1565. visibility:hidden;
  1566. }
  1567. #u149857_div {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:0px;
  1571. top:0px;
  1572. width:65px;
  1573. height:22px;
  1574. background:inherit;
  1575. background-color:rgba(255, 255, 255, 0);
  1576. border:none;
  1577. border-radius:0px;
  1578. -moz-box-shadow:none;
  1579. -webkit-box-shadow:none;
  1580. box-shadow:none;
  1581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1582. font-weight:400;
  1583. font-style:normal;
  1584. font-size:16px;
  1585. color:#000000;
  1586. }
  1587. #u149857 {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:50px;
  1591. top:351px;
  1592. width:65px;
  1593. height:22px;
  1594. display:flex;
  1595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1596. font-weight:400;
  1597. font-style:normal;
  1598. font-size:16px;
  1599. color:#000000;
  1600. }
  1601. #u149857 .text {
  1602. position:absolute;
  1603. align-self:flex-start;
  1604. padding:0px 0px 0px 0px;
  1605. box-sizing:border-box;
  1606. width:100%;
  1607. }
  1608. #u149857_text {
  1609. border-width:0px;
  1610. white-space:nowrap;
  1611. text-transform:none;
  1612. }
  1613. #u149858 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:0px;
  1617. top:0px;
  1618. width:0px;
  1619. height:0px;
  1620. }
  1621. #u149859_div {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:80px;
  1627. height:20px;
  1628. background:inherit;
  1629. background-color:rgba(255, 255, 255, 0);
  1630. border:none;
  1631. border-radius:0px;
  1632. -moz-box-shadow:none;
  1633. -webkit-box-shadow:none;
  1634. box-shadow:none;
  1635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1636. font-weight:400;
  1637. font-style:normal;
  1638. color:#000000;
  1639. }
  1640. #u149859 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:50px;
  1644. top:422px;
  1645. width:80px;
  1646. height:20px;
  1647. display:flex;
  1648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1649. font-weight:400;
  1650. font-style:normal;
  1651. color:#000000;
  1652. }
  1653. #u149859 .text {
  1654. position:absolute;
  1655. align-self:flex-start;
  1656. padding:0px 0px 0px 0px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u149859_text {
  1661. border-width:0px;
  1662. white-space:nowrap;
  1663. text-transform:none;
  1664. }
  1665. #u149860_div {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:0px;
  1669. top:0px;
  1670. width:49px;
  1671. height:25px;
  1672. background:inherit;
  1673. background-color:rgba(255, 255, 255, 0);
  1674. border:none;
  1675. border-radius:0px;
  1676. -moz-box-shadow:none;
  1677. -webkit-box-shadow:none;
  1678. box-shadow:none;
  1679. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1680. font-weight:500;
  1681. font-style:normal;
  1682. font-size:18px;
  1683. color:#000000;
  1684. }
  1685. #u149860 {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:65px;
  1689. top:395px;
  1690. width:49px;
  1691. height:25px;
  1692. display:flex;
  1693. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1694. font-weight:500;
  1695. font-style:normal;
  1696. font-size:18px;
  1697. color:#000000;
  1698. }
  1699. #u149860 .text {
  1700. position:absolute;
  1701. align-self:flex-start;
  1702. padding:0px 0px 0px 0px;
  1703. box-sizing:border-box;
  1704. width:100%;
  1705. }
  1706. #u149860_text {
  1707. border-width:0px;
  1708. white-space:nowrap;
  1709. text-transform:none;
  1710. }
  1711. #u149861 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:0px;
  1717. height:0px;
  1718. }
  1719. #u149862_div {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:94px;
  1725. height:20px;
  1726. background:inherit;
  1727. background-color:rgba(255, 255, 255, 0);
  1728. border:none;
  1729. border-radius:0px;
  1730. -moz-box-shadow:none;
  1731. -webkit-box-shadow:none;
  1732. box-shadow:none;
  1733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. color:#000000;
  1737. }
  1738. #u149862 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:168px;
  1742. top:422px;
  1743. width:94px;
  1744. height:20px;
  1745. display:flex;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. color:#000000;
  1750. }
  1751. #u149862 .text {
  1752. position:absolute;
  1753. align-self:flex-start;
  1754. padding:0px 0px 0px 0px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u149862_text {
  1759. border-width:0px;
  1760. white-space:nowrap;
  1761. text-transform:none;
  1762. }
  1763. #u149863_div {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:38px;
  1769. height:25px;
  1770. background:inherit;
  1771. background-color:rgba(255, 255, 255, 0);
  1772. border:none;
  1773. border-radius:0px;
  1774. -moz-box-shadow:none;
  1775. -webkit-box-shadow:none;
  1776. box-shadow:none;
  1777. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1778. font-weight:500;
  1779. font-style:normal;
  1780. font-size:18px;
  1781. color:#000000;
  1782. }
  1783. #u149863 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:196px;
  1787. top:395px;
  1788. width:38px;
  1789. height:25px;
  1790. display:flex;
  1791. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1792. font-weight:500;
  1793. font-style:normal;
  1794. font-size:18px;
  1795. color:#000000;
  1796. }
  1797. #u149863 .text {
  1798. position:absolute;
  1799. align-self:flex-start;
  1800. padding:0px 0px 0px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u149863_text {
  1805. border-width:0px;
  1806. white-space:nowrap;
  1807. text-transform:none;
  1808. }
  1809. #u149864 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:0px;
  1815. height:0px;
  1816. }
  1817. #u149865_div {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:83px;
  1823. height:25px;
  1824. background:inherit;
  1825. background-color:rgba(255, 255, 255, 0);
  1826. border:none;
  1827. border-radius:0px;
  1828. -moz-box-shadow:none;
  1829. -webkit-box-shadow:none;
  1830. box-shadow:none;
  1831. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1832. font-weight:500;
  1833. font-style:normal;
  1834. font-size:18px;
  1835. color:#FFFFFF;
  1836. }
  1837. #u149865 {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:54px;
  1841. top:179px;
  1842. width:83px;
  1843. height:25px;
  1844. display:flex;
  1845. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1846. font-weight:500;
  1847. font-style:normal;
  1848. font-size:18px;
  1849. color:#FFFFFF;
  1850. }
  1851. #u149865 .text {
  1852. position:absolute;
  1853. align-self:flex-start;
  1854. padding:0px 0px 0px 0px;
  1855. box-sizing:border-box;
  1856. width:100%;
  1857. }
  1858. #u149865_text {
  1859. border-width:0px;
  1860. white-space:nowrap;
  1861. text-transform:none;
  1862. }
  1863. #u149866_div {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:93px;
  1869. height:17px;
  1870. background:inherit;
  1871. background-color:rgba(255, 255, 255, 0);
  1872. border:none;
  1873. border-radius:0px;
  1874. -moz-box-shadow:none;
  1875. -webkit-box-shadow:none;
  1876. box-shadow:none;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1878. font-weight:400;
  1879. font-style:normal;
  1880. font-size:12px;
  1881. color:#FFFFFF;
  1882. }
  1883. #u149866 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:49px;
  1887. top:212px;
  1888. width:93px;
  1889. height:17px;
  1890. display:flex;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:12px;
  1895. color:#FFFFFF;
  1896. }
  1897. #u149866 .text {
  1898. position:absolute;
  1899. align-self:flex-start;
  1900. padding:0px 0px 0px 0px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u149866_text {
  1905. border-width:0px;
  1906. white-space:nowrap;
  1907. text-transform:none;
  1908. }
  1909. #u149867 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:0px;
  1915. height:0px;
  1916. }
  1917. #u149868_div {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:76px;
  1923. height:25px;
  1924. background:inherit;
  1925. background-color:rgba(255, 255, 255, 0);
  1926. border:none;
  1927. border-radius:0px;
  1928. -moz-box-shadow:none;
  1929. -webkit-box-shadow:none;
  1930. box-shadow:none;
  1931. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1932. font-weight:500;
  1933. font-style:normal;
  1934. font-size:18px;
  1935. color:#FFFFFF;
  1936. text-align:center;
  1937. }
  1938. #u149868 {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:179px;
  1942. top:179px;
  1943. width:76px;
  1944. height:25px;
  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:18px;
  1950. color:#FFFFFF;
  1951. text-align:center;
  1952. }
  1953. #u149868 .text {
  1954. position:absolute;
  1955. align-self:flex-start;
  1956. padding:0px 0px 0px 0px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u149868_text {
  1961. border-width:0px;
  1962. white-space:nowrap;
  1963. text-transform:none;
  1964. }
  1965. #u149869_div {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:93px;
  1971. height:17px;
  1972. background:inherit;
  1973. background-color:rgba(255, 255, 255, 0);
  1974. border:none;
  1975. border-radius:0px;
  1976. -moz-box-shadow:none;
  1977. -webkit-box-shadow:none;
  1978. box-shadow:none;
  1979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1980. font-weight:400;
  1981. font-style:normal;
  1982. font-size:12px;
  1983. color:#FFFFFF;
  1984. text-align:center;
  1985. }
  1986. #u149869 {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:171px;
  1990. top:212px;
  1991. width:93px;
  1992. height:17px;
  1993. display:flex;
  1994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1995. font-weight:400;
  1996. font-style:normal;
  1997. font-size:12px;
  1998. color:#FFFFFF;
  1999. text-align:center;
  2000. }
  2001. #u149869 .text {
  2002. position:absolute;
  2003. align-self:flex-start;
  2004. padding:0px 0px 0px 0px;
  2005. box-sizing:border-box;
  2006. width:100%;
  2007. }
  2008. #u149869_text {
  2009. border-width:0px;
  2010. white-space:nowrap;
  2011. text-transform:none;
  2012. }
  2013. #u149870 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:0px;
  2019. height:0px;
  2020. }
  2021. #u149871_div {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:72px;
  2027. height:25px;
  2028. background:inherit;
  2029. background-color:rgba(255, 255, 255, 0);
  2030. border:none;
  2031. border-radius:0px;
  2032. -moz-box-shadow:none;
  2033. -webkit-box-shadow:none;
  2034. box-shadow:none;
  2035. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2036. font-weight:500;
  2037. font-style:normal;
  2038. font-size:18px;
  2039. color:#FFFFFF;
  2040. text-align:center;
  2041. }
  2042. #u149871 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:302px;
  2046. top:179px;
  2047. width:72px;
  2048. height:25px;
  2049. display:flex;
  2050. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2051. font-weight:500;
  2052. font-style:normal;
  2053. font-size:18px;
  2054. color:#FFFFFF;
  2055. text-align:center;
  2056. }
  2057. #u149871 .text {
  2058. position:absolute;
  2059. align-self:flex-start;
  2060. padding:0px 0px 0px 0px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u149871_text {
  2065. border-width:0px;
  2066. white-space:nowrap;
  2067. text-transform:none;
  2068. }
  2069. #u149872_div {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:93px;
  2075. height:17px;
  2076. background:inherit;
  2077. background-color:rgba(255, 255, 255, 0);
  2078. border:none;
  2079. border-radius:0px;
  2080. -moz-box-shadow:none;
  2081. -webkit-box-shadow:none;
  2082. box-shadow:none;
  2083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2084. font-weight:400;
  2085. font-style:normal;
  2086. font-size:12px;
  2087. color:#FFFFFF;
  2088. text-align:center;
  2089. }
  2090. #u149872 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:292px;
  2094. top:212px;
  2095. width:93px;
  2096. height:17px;
  2097. display:flex;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:12px;
  2102. color:#FFFFFF;
  2103. text-align:center;
  2104. }
  2105. #u149872 .text {
  2106. position:absolute;
  2107. align-self:flex-start;
  2108. padding:0px 0px 0px 0px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u149872_text {
  2113. border-width:0px;
  2114. white-space:nowrap;
  2115. text-transform:none;
  2116. }
  2117. #u149873 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:0px;
  2123. height:0px;
  2124. }
  2125. #u149874_div {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:76px;
  2131. height:25px;
  2132. background:inherit;
  2133. background-color:rgba(255, 255, 255, 0);
  2134. border:none;
  2135. border-radius:0px;
  2136. -moz-box-shadow:none;
  2137. -webkit-box-shadow:none;
  2138. box-shadow:none;
  2139. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2140. font-weight:500;
  2141. font-style:normal;
  2142. font-size:18px;
  2143. color:#FFFFFF;
  2144. text-align:center;
  2145. }
  2146. #u149874 {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:279px;
  2150. top:270px;
  2151. width:76px;
  2152. height:25px;
  2153. display:flex;
  2154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2155. font-weight:500;
  2156. font-style:normal;
  2157. font-size:18px;
  2158. color:#FFFFFF;
  2159. text-align:center;
  2160. }
  2161. #u149874 .text {
  2162. position:absolute;
  2163. align-self:flex-start;
  2164. padding:0px 0px 0px 0px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u149874_text {
  2169. border-width:0px;
  2170. white-space:nowrap;
  2171. text-transform:none;
  2172. }
  2173. #u149875_div {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:93px;
  2179. height:17px;
  2180. background:inherit;
  2181. background-color:rgba(255, 255, 255, 0);
  2182. border:none;
  2183. border-radius:0px;
  2184. -moz-box-shadow:none;
  2185. -webkit-box-shadow:none;
  2186. box-shadow:none;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:12px;
  2191. color:#FFFFFF;
  2192. text-align:center;
  2193. }
  2194. #u149875 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:271px;
  2198. top:302px;
  2199. width:93px;
  2200. height:17px;
  2201. display:flex;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:12px;
  2206. color:#FFFFFF;
  2207. text-align:center;
  2208. }
  2209. #u149875 .text {
  2210. position:absolute;
  2211. align-self:flex-start;
  2212. padding:0px 0px 0px 0px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u149875_text {
  2217. border-width:0px;
  2218. white-space:nowrap;
  2219. text-transform:none;
  2220. }
  2221. #u149876_img {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:337px;
  2227. height:2px;
  2228. }
  2229. #u149876 {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:50px;
  2233. top:254px;
  2234. width:336px;
  2235. height:1px;
  2236. display:flex;
  2237. }
  2238. #u149876 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:2px 2px 2px 2px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u149876_text {
  2246. border-width:0px;
  2247. word-wrap:break-word;
  2248. text-transform:none;
  2249. visibility:hidden;
  2250. }
  2251. #u149877 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:0px;
  2257. height:0px;
  2258. }
  2259. #u149878_div {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:94px;
  2265. height:20px;
  2266. background:inherit;
  2267. background-color:rgba(255, 255, 255, 0);
  2268. border:none;
  2269. border-radius:0px;
  2270. -moz-box-shadow:none;
  2271. -webkit-box-shadow:none;
  2272. box-shadow:none;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. color:#000000;
  2277. }
  2278. #u149878 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:299px;
  2282. top:422px;
  2283. width:94px;
  2284. height:20px;
  2285. display:flex;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. color:#000000;
  2290. }
  2291. #u149878 .text {
  2292. position:absolute;
  2293. align-self:flex-start;
  2294. padding:0px 0px 0px 0px;
  2295. box-sizing:border-box;
  2296. width:100%;
  2297. }
  2298. #u149878_text {
  2299. border-width:0px;
  2300. white-space:nowrap;
  2301. text-transform:none;
  2302. }
  2303. #u149879_div {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:38px;
  2309. height:25px;
  2310. background:inherit;
  2311. background-color:rgba(255, 255, 255, 0);
  2312. border:none;
  2313. border-radius:0px;
  2314. -moz-box-shadow:none;
  2315. -webkit-box-shadow:none;
  2316. box-shadow:none;
  2317. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2318. font-weight:500;
  2319. font-style:normal;
  2320. font-size:18px;
  2321. color:#000000;
  2322. }
  2323. #u149879 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:327px;
  2327. top:395px;
  2328. width:38px;
  2329. height:25px;
  2330. display:flex;
  2331. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2332. font-weight:500;
  2333. font-style:normal;
  2334. font-size:18px;
  2335. color:#000000;
  2336. }
  2337. #u149879 .text {
  2338. position:absolute;
  2339. align-self:flex-start;
  2340. padding:0px 0px 0px 0px;
  2341. box-sizing:border-box;
  2342. width:100%;
  2343. }
  2344. #u149879_text {
  2345. border-width:0px;
  2346. white-space:nowrap;
  2347. text-transform:none;
  2348. }
  2349. #u149880_div {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:376px;
  2355. height:207px;
  2356. background:inherit;
  2357. background-color:rgba(255, 255, 255, 1);
  2358. border:none;
  2359. border-radius:0px;
  2360. -moz-box-shadow:none;
  2361. -webkit-box-shadow:none;
  2362. box-shadow:none;
  2363. }
  2364. #u149880 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:30px;
  2368. top:517px;
  2369. width:376px;
  2370. height:207px;
  2371. display:flex;
  2372. }
  2373. #u149880 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 2px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u149880_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. visibility:hidden;
  2385. }
  2386. #u149881_div {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:65px;
  2392. height:22px;
  2393. background:inherit;
  2394. background-color:rgba(255, 255, 255, 0);
  2395. border:none;
  2396. border-radius:0px;
  2397. -moz-box-shadow:none;
  2398. -webkit-box-shadow:none;
  2399. box-shadow:none;
  2400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:16px;
  2404. color:#000000;
  2405. }
  2406. #u149881 {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:51px;
  2410. top:531px;
  2411. width:65px;
  2412. height:22px;
  2413. display:flex;
  2414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2415. font-weight:400;
  2416. font-style:normal;
  2417. font-size:16px;
  2418. color:#000000;
  2419. }
  2420. #u149881 .text {
  2421. position:absolute;
  2422. align-self:flex-start;
  2423. padding:0px 0px 0px 0px;
  2424. box-sizing:border-box;
  2425. width:100%;
  2426. }
  2427. #u149881_text {
  2428. border-width:0px;
  2429. white-space:nowrap;
  2430. text-transform:none;
  2431. }
  2432. #u149882_div {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:324px;
  2438. height:120px;
  2439. background:inherit;
  2440. background-color:rgba(255, 255, 255, 1);
  2441. box-sizing:border-box;
  2442. border-width:1px;
  2443. border-style:solid;
  2444. border-color:rgba(121, 121, 121, 1);
  2445. border-top:0px;
  2446. border-right:0px;
  2447. border-radius:0px;
  2448. border-top-left-radius:0px;
  2449. border-bottom-right-radius:0px;
  2450. -moz-box-shadow:none;
  2451. -webkit-box-shadow:none;
  2452. box-shadow:none;
  2453. }
  2454. #u149882 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:61px;
  2458. top:580px;
  2459. width:324px;
  2460. height:120px;
  2461. display:flex;
  2462. }
  2463. #u149882 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 2px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u149882_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. visibility:hidden;
  2475. }
  2476. #u149883_div {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:45px;
  2482. height:17px;
  2483. background:inherit;
  2484. background-color:rgba(255, 255, 255, 0);
  2485. border:none;
  2486. border-radius:0px;
  2487. -moz-box-shadow:none;
  2488. -webkit-box-shadow:none;
  2489. box-shadow:none;
  2490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2491. font-weight:400;
  2492. font-style:normal;
  2493. font-size:12px;
  2494. color:#000000;
  2495. }
  2496. #u149883 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:61px;
  2500. top:558px;
  2501. width:45px;
  2502. height:17px;
  2503. display:flex;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:12px;
  2508. color:#000000;
  2509. }
  2510. #u149883 .text {
  2511. position:absolute;
  2512. align-self:flex-start;
  2513. padding:0px 0px 0px 0px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u149883_text {
  2518. border-width:0px;
  2519. white-space:nowrap;
  2520. text-transform:none;
  2521. }
  2522. #u149884_img {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:-1px;
  2526. top:-1px;
  2527. width:275px;
  2528. height:44px;
  2529. }
  2530. #u149884 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:77px;
  2534. top:614px;
  2535. width:272px;
  2536. height:41px;
  2537. display:flex;
  2538. }
  2539. #u149884 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 2px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u149884_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. visibility:hidden;
  2551. }
  2552. #u149885_div {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:65px;
  2558. height:22px;
  2559. background:inherit;
  2560. background-color:rgba(255, 255, 255, 0);
  2561. border:none;
  2562. border-radius:0px;
  2563. -moz-box-shadow:none;
  2564. -webkit-box-shadow:none;
  2565. box-shadow:none;
  2566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:16px;
  2570. color:#000000;
  2571. }
  2572. #u149885 {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:52px;
  2576. top:740px;
  2577. width:65px;
  2578. height:22px;
  2579. display:flex;
  2580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2581. font-weight:400;
  2582. font-style:normal;
  2583. font-size:16px;
  2584. color:#000000;
  2585. }
  2586. #u149885 .text {
  2587. position:absolute;
  2588. align-self:flex-start;
  2589. padding:0px 0px 0px 0px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u149885_text {
  2594. border-width:0px;
  2595. white-space:nowrap;
  2596. text-transform:none;
  2597. }
  2598. #u149886_div {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:45px;
  2604. height:17px;
  2605. background:inherit;
  2606. background-color:rgba(255, 255, 255, 0);
  2607. border:none;
  2608. border-radius:0px;
  2609. -moz-box-shadow:none;
  2610. -webkit-box-shadow:none;
  2611. box-shadow:none;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:12px;
  2616. color:#000000;
  2617. }
  2618. #u149886 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:62px;
  2622. top:767px;
  2623. width:45px;
  2624. height:17px;
  2625. display:flex;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:12px;
  2630. color:#000000;
  2631. }
  2632. #u149886 .text {
  2633. position:absolute;
  2634. align-self:flex-start;
  2635. padding:0px 0px 0px 0px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u149886_text {
  2640. border-width:0px;
  2641. white-space:nowrap;
  2642. text-transform:none;
  2643. }
  2644. #u149887 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:0px;
  2648. top:0px;
  2649. width:0px;
  2650. height:0px;
  2651. }
  2652. #u149888_div {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:376px;
  2658. height:240px;
  2659. background:inherit;
  2660. background-color:rgba(255, 255, 255, 1);
  2661. border:none;
  2662. border-radius:0px;
  2663. -moz-box-shadow:none;
  2664. -webkit-box-shadow:none;
  2665. box-shadow:none;
  2666. }
  2667. #u149888 {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:31px;
  2671. top:957px;
  2672. width:376px;
  2673. height:240px;
  2674. display:flex;
  2675. }
  2676. #u149888 .text {
  2677. position:absolute;
  2678. align-self:center;
  2679. padding:2px 2px 2px 2px;
  2680. box-sizing:border-box;
  2681. width:100%;
  2682. }
  2683. #u149888_text {
  2684. border-width:0px;
  2685. word-wrap:break-word;
  2686. text-transform:none;
  2687. visibility:hidden;
  2688. }
  2689. #u149889_div {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:97px;
  2695. height:22px;
  2696. background:inherit;
  2697. background-color:rgba(255, 255, 255, 0);
  2698. border:none;
  2699. border-radius:0px;
  2700. -moz-box-shadow:none;
  2701. -webkit-box-shadow:none;
  2702. box-shadow:none;
  2703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2704. font-weight:400;
  2705. font-style:normal;
  2706. font-size:16px;
  2707. color:#000000;
  2708. }
  2709. #u149889 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:52px;
  2713. top:971px;
  2714. width:97px;
  2715. height:22px;
  2716. display:flex;
  2717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2718. font-weight:400;
  2719. font-style:normal;
  2720. font-size:16px;
  2721. color:#000000;
  2722. }
  2723. #u149889 .text {
  2724. position:absolute;
  2725. align-self:flex-start;
  2726. padding:0px 0px 0px 0px;
  2727. box-sizing:border-box;
  2728. width:100%;
  2729. }
  2730. #u149889_text {
  2731. border-width:0px;
  2732. white-space:nowrap;
  2733. text-transform:none;
  2734. }
  2735. #u149890 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:0px;
  2741. height:0px;
  2742. }
  2743. #u149891_div {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:341px;
  2749. height:40px;
  2750. background:inherit;
  2751. background-color:rgba(255, 255, 255, 1);
  2752. box-sizing:border-box;
  2753. border-width:1px;
  2754. border-style:solid;
  2755. border-color:rgba(242, 242, 242, 1);
  2756. border-left:0px;
  2757. border-right:0px;
  2758. border-radius:0px;
  2759. border-top-left-radius:0px;
  2760. border-top-right-radius:0px;
  2761. border-bottom-right-radius:0px;
  2762. border-bottom-left-radius:0px;
  2763. -moz-box-shadow:none;
  2764. -webkit-box-shadow:none;
  2765. box-shadow:none;
  2766. }
  2767. #u149891 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:51px;
  2771. top:1009px;
  2772. width:341px;
  2773. height:40px;
  2774. display:flex;
  2775. }
  2776. #u149891 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:2px 2px 2px 2px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u149891_text {
  2784. border-width:0px;
  2785. word-wrap:break-word;
  2786. text-transform:none;
  2787. visibility:hidden;
  2788. }
  2789. #u149892_div {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:162px;
  2795. height:22px;
  2796. background:inherit;
  2797. background-color:rgba(255, 255, 255, 0);
  2798. border:none;
  2799. border-radius:0px;
  2800. -moz-box-shadow:none;
  2801. -webkit-box-shadow:none;
  2802. box-shadow:none;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:16px;
  2807. color:#000000;
  2808. }
  2809. #u149892 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:61px;
  2813. top:1017px;
  2814. width:162px;
  2815. height:22px;
  2816. display:flex;
  2817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2818. font-weight:400;
  2819. font-style:normal;
  2820. font-size:16px;
  2821. color:#000000;
  2822. }
  2823. #u149892 .text {
  2824. position:absolute;
  2825. align-self:flex-start;
  2826. padding:0px 0px 0px 0px;
  2827. box-sizing:border-box;
  2828. width:100%;
  2829. }
  2830. #u149892_text {
  2831. border-width:0px;
  2832. white-space:nowrap;
  2833. text-transform:none;
  2834. }
  2835. #u149893_div {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:83px;
  2841. height:22px;
  2842. background:inherit;
  2843. background-color:rgba(255, 255, 255, 0);
  2844. border:none;
  2845. border-radius:0px;
  2846. -moz-box-shadow:none;
  2847. -webkit-box-shadow:none;
  2848. box-shadow:none;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:16px;
  2853. color:#000000;
  2854. text-align:right;
  2855. }
  2856. #u149893 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:309px;
  2860. top:1021px;
  2861. width:83px;
  2862. height:22px;
  2863. display:flex;
  2864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2865. font-weight:400;
  2866. font-style:normal;
  2867. font-size:16px;
  2868. color:#000000;
  2869. text-align:right;
  2870. }
  2871. #u149893 .text {
  2872. position:absolute;
  2873. align-self:flex-start;
  2874. padding:0px 0px 0px 0px;
  2875. box-sizing:border-box;
  2876. width:100%;
  2877. }
  2878. #u149893_text {
  2879. border-width:0px;
  2880. white-space:nowrap;
  2881. text-transform:none;
  2882. }
  2883. #u149894 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:0px;
  2889. height:0px;
  2890. }
  2891. #u149895_div {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:341px;
  2897. height:40px;
  2898. background:inherit;
  2899. background-color:rgba(255, 255, 255, 1);
  2900. box-sizing:border-box;
  2901. border-width:1px;
  2902. border-style:solid;
  2903. border-color:rgba(242, 242, 242, 1);
  2904. border-left:0px;
  2905. border-right:0px;
  2906. border-radius:0px;
  2907. border-top-left-radius:0px;
  2908. border-top-right-radius:0px;
  2909. border-bottom-right-radius:0px;
  2910. border-bottom-left-radius:0px;
  2911. -moz-box-shadow:none;
  2912. -webkit-box-shadow:none;
  2913. box-shadow:none;
  2914. }
  2915. #u149895 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:51px;
  2919. top:1049px;
  2920. width:341px;
  2921. height:40px;
  2922. display:flex;
  2923. }
  2924. #u149895 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 2px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u149895_text {
  2932. border-width:0px;
  2933. word-wrap:break-word;
  2934. text-transform:none;
  2935. visibility:hidden;
  2936. }
  2937. #u149896_div {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:224px;
  2943. height:22px;
  2944. background:inherit;
  2945. background-color:rgba(255, 255, 255, 0);
  2946. border:none;
  2947. border-radius:0px;
  2948. -moz-box-shadow:none;
  2949. -webkit-box-shadow:none;
  2950. box-shadow:none;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:16px;
  2955. color:#000000;
  2956. }
  2957. #u149896 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:61px;
  2961. top:1057px;
  2962. width:224px;
  2963. height:22px;
  2964. display:flex;
  2965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2966. font-weight:400;
  2967. font-style:normal;
  2968. font-size:16px;
  2969. color:#000000;
  2970. }
  2971. #u149896 .text {
  2972. position:absolute;
  2973. align-self:flex-start;
  2974. padding:0px 0px 0px 0px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u149896_text {
  2979. border-width:0px;
  2980. white-space:nowrap;
  2981. text-transform:none;
  2982. }
  2983. #u149897_div {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:66px;
  2989. height:22px;
  2990. background:inherit;
  2991. background-color:rgba(255, 255, 255, 0);
  2992. border:none;
  2993. border-radius:0px;
  2994. -moz-box-shadow:none;
  2995. -webkit-box-shadow:none;
  2996. box-shadow:none;
  2997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:16px;
  3001. color:#000000;
  3002. text-align:right;
  3003. }
  3004. #u149897 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:326px;
  3008. top:1061px;
  3009. width:66px;
  3010. height:22px;
  3011. display:flex;
  3012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3013. font-weight:400;
  3014. font-style:normal;
  3015. font-size:16px;
  3016. color:#000000;
  3017. text-align:right;
  3018. }
  3019. #u149897 .text {
  3020. position:absolute;
  3021. align-self:flex-start;
  3022. padding:0px 0px 0px 0px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u149897_text {
  3027. border-width:0px;
  3028. white-space:nowrap;
  3029. text-transform:none;
  3030. }
  3031. #u149898 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:0px;
  3037. height:0px;
  3038. }
  3039. #u149899_div {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:341px;
  3045. height:40px;
  3046. background:inherit;
  3047. background-color:rgba(255, 255, 255, 1);
  3048. box-sizing:border-box;
  3049. border-width:1px;
  3050. border-style:solid;
  3051. border-color:rgba(242, 242, 242, 1);
  3052. border-left:0px;
  3053. border-right:0px;
  3054. border-radius:0px;
  3055. border-top-left-radius:0px;
  3056. border-top-right-radius:0px;
  3057. border-bottom-right-radius:0px;
  3058. border-bottom-left-radius:0px;
  3059. -moz-box-shadow:none;
  3060. -webkit-box-shadow:none;
  3061. box-shadow:none;
  3062. }
  3063. #u149899 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:51px;
  3067. top:1089px;
  3068. width:341px;
  3069. height:40px;
  3070. display:flex;
  3071. }
  3072. #u149899 .text {
  3073. position:absolute;
  3074. align-self:center;
  3075. padding:2px 2px 2px 2px;
  3076. box-sizing:border-box;
  3077. width:100%;
  3078. }
  3079. #u149899_text {
  3080. border-width:0px;
  3081. word-wrap:break-word;
  3082. text-transform:none;
  3083. visibility:hidden;
  3084. }
  3085. #u149900_div {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:224px;
  3091. height:22px;
  3092. background:inherit;
  3093. background-color:rgba(255, 255, 255, 0);
  3094. border:none;
  3095. border-radius:0px;
  3096. -moz-box-shadow:none;
  3097. -webkit-box-shadow:none;
  3098. box-shadow:none;
  3099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3100. font-weight:400;
  3101. font-style:normal;
  3102. font-size:16px;
  3103. color:#000000;
  3104. }
  3105. #u149900 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:61px;
  3109. top:1097px;
  3110. width:224px;
  3111. height:22px;
  3112. display:flex;
  3113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3114. font-weight:400;
  3115. font-style:normal;
  3116. font-size:16px;
  3117. color:#000000;
  3118. }
  3119. #u149900 .text {
  3120. position:absolute;
  3121. align-self:flex-start;
  3122. padding:0px 0px 0px 0px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u149900_text {
  3127. border-width:0px;
  3128. white-space:nowrap;
  3129. text-transform:none;
  3130. }
  3131. #u149901_div {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:60px;
  3137. height:22px;
  3138. background:inherit;
  3139. background-color:rgba(255, 255, 255, 0);
  3140. border:none;
  3141. border-radius:0px;
  3142. -moz-box-shadow:none;
  3143. -webkit-box-shadow:none;
  3144. box-shadow:none;
  3145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:16px;
  3149. color:#000000;
  3150. text-align:right;
  3151. }
  3152. #u149901 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:332px;
  3156. top:1101px;
  3157. width:60px;
  3158. height:22px;
  3159. display:flex;
  3160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3161. font-weight:400;
  3162. font-style:normal;
  3163. font-size:16px;
  3164. color:#000000;
  3165. text-align:right;
  3166. }
  3167. #u149901 .text {
  3168. position:absolute;
  3169. align-self:flex-start;
  3170. padding:0px 0px 0px 0px;
  3171. box-sizing:border-box;
  3172. width:100%;
  3173. }
  3174. #u149901_text {
  3175. border-width:0px;
  3176. white-space:nowrap;
  3177. text-transform:none;
  3178. }
  3179. #u149902 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:0px;
  3185. height:0px;
  3186. }
  3187. #u149903_div {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:341px;
  3193. height:40px;
  3194. background:inherit;
  3195. background-color:rgba(255, 255, 255, 1);
  3196. box-sizing:border-box;
  3197. border-width:1px;
  3198. border-style:solid;
  3199. border-color:rgba(242, 242, 242, 1);
  3200. border-left:0px;
  3201. border-right:0px;
  3202. border-radius:0px;
  3203. border-top-left-radius:0px;
  3204. border-top-right-radius:0px;
  3205. border-bottom-right-radius:0px;
  3206. border-bottom-left-radius:0px;
  3207. -moz-box-shadow:none;
  3208. -webkit-box-shadow:none;
  3209. box-shadow:none;
  3210. }
  3211. #u149903 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:51px;
  3215. top:1129px;
  3216. width:341px;
  3217. height:40px;
  3218. display:flex;
  3219. }
  3220. #u149903 .text {
  3221. position:absolute;
  3222. align-self:center;
  3223. padding:2px 2px 2px 2px;
  3224. box-sizing:border-box;
  3225. width:100%;
  3226. }
  3227. #u149903_text {
  3228. border-width:0px;
  3229. word-wrap:break-word;
  3230. text-transform:none;
  3231. visibility:hidden;
  3232. }
  3233. #u149904_div {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:208px;
  3239. height:22px;
  3240. background:inherit;
  3241. background-color:rgba(255, 255, 255, 0);
  3242. border:none;
  3243. border-radius:0px;
  3244. -moz-box-shadow:none;
  3245. -webkit-box-shadow:none;
  3246. box-shadow:none;
  3247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:16px;
  3251. color:#000000;
  3252. }
  3253. #u149904 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:61px;
  3257. top:1137px;
  3258. width:208px;
  3259. height:22px;
  3260. display:flex;
  3261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:16px;
  3265. color:#000000;
  3266. }
  3267. #u149904 .text {
  3268. position:absolute;
  3269. align-self:flex-start;
  3270. padding:0px 0px 0px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u149904_text {
  3275. border-width:0px;
  3276. white-space:nowrap;
  3277. text-transform:none;
  3278. }
  3279. #u149905_div {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:50px;
  3285. height:22px;
  3286. background:inherit;
  3287. background-color:rgba(255, 255, 255, 0);
  3288. border:none;
  3289. border-radius:0px;
  3290. -moz-box-shadow:none;
  3291. -webkit-box-shadow:none;
  3292. box-shadow:none;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:16px;
  3297. color:#000000;
  3298. text-align:right;
  3299. }
  3300. #u149905 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:342px;
  3304. top:1141px;
  3305. width:50px;
  3306. height:22px;
  3307. display:flex;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:16px;
  3312. color:#000000;
  3313. text-align:right;
  3314. }
  3315. #u149905 .text {
  3316. position:absolute;
  3317. align-self:flex-start;
  3318. padding:0px 0px 0px 0px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u149905_text {
  3323. border-width:0px;
  3324. white-space:nowrap;
  3325. text-transform:none;
  3326. }
  3327. #u149906_img {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:0px;
  3331. top:0px;
  3332. width:2px;
  3333. height:98px;
  3334. }
  3335. #u149906 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:261px;
  3339. top:603px;
  3340. width:1px;
  3341. height:97px;
  3342. display:flex;
  3343. }
  3344. #u149906 .text {
  3345. position:absolute;
  3346. align-self:center;
  3347. padding:2px 2px 2px 2px;
  3348. box-sizing:border-box;
  3349. width:100%;
  3350. }
  3351. #u149906_text {
  3352. border-width:0px;
  3353. word-wrap:break-word;
  3354. text-transform:none;
  3355. visibility:hidden;
  3356. }
  3357. #u149907 {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:0px;
  3363. height:0px;
  3364. }
  3365. #u149908_div {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:146px;
  3371. height:40px;
  3372. background:inherit;
  3373. background-color:rgba(0, 0, 0, 0.498039215686275);
  3374. border:none;
  3375. border-radius:4px;
  3376. -moz-box-shadow:none;
  3377. -webkit-box-shadow:none;
  3378. box-shadow:none;
  3379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:16px;
  3383. color:#FFFFFF;
  3384. }
  3385. #u149908 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:245px;
  3389. top:640px;
  3390. width:146px;
  3391. height:40px;
  3392. display:flex;
  3393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:16px;
  3397. color:#FFFFFF;
  3398. }
  3399. #u149908 .text {
  3400. position:absolute;
  3401. align-self:center;
  3402. padding:0px 20px 0px 25px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u149908_text {
  3407. border-width:0px;
  3408. white-space:nowrap;
  3409. text-transform:none;
  3410. }
  3411. #u149909_img {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:0px;
  3415. top:0px;
  3416. width:7px;
  3417. height:7px;
  3418. }
  3419. #u149909 {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:259px;
  3423. top:657px;
  3424. width:7px;
  3425. height:7px;
  3426. display:flex;
  3427. }
  3428. #u149909 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:2px 2px 2px 2px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u149909_text {
  3436. border-width:0px;
  3437. word-wrap:break-word;
  3438. text-transform:none;
  3439. visibility:hidden;
  3440. }
  3441. #u149910 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:0px;
  3447. height:0px;
  3448. }
  3449. #u149911_div {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:14px;
  3455. height:51px;
  3456. background:inherit;
  3457. background-color:rgba(24, 144, 255, 1);
  3458. border:none;
  3459. border-radius:0px;
  3460. -moz-box-shadow:none;
  3461. -webkit-box-shadow:none;
  3462. box-shadow:none;
  3463. }
  3464. #u149911 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:85px;
  3468. top:858px;
  3469. width:14px;
  3470. height:51px;
  3471. display:flex;
  3472. }
  3473. #u149911 .text {
  3474. position:absolute;
  3475. align-self:center;
  3476. padding:2px 2px 2px 2px;
  3477. box-sizing:border-box;
  3478. width:100%;
  3479. }
  3480. #u149911_text {
  3481. border-width:0px;
  3482. word-wrap:break-word;
  3483. text-transform:none;
  3484. visibility:hidden;
  3485. }
  3486. #u149912_div {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:14px;
  3492. height:26px;
  3493. background:inherit;
  3494. background-color:rgba(80, 227, 193, 1);
  3495. border:none;
  3496. border-radius:0px;
  3497. -moz-box-shadow:none;
  3498. -webkit-box-shadow:none;
  3499. box-shadow:none;
  3500. }
  3501. #u149912 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:85px;
  3505. top:832px;
  3506. width:14px;
  3507. height:26px;
  3508. display:flex;
  3509. }
  3510. #u149912 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 2px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u149912_text {
  3518. border-width:0px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. visibility:hidden;
  3522. }
  3523. #u149913_div {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:14px;
  3529. height:26px;
  3530. background:inherit;
  3531. background-color:rgba(250, 205, 145, 1);
  3532. border:none;
  3533. border-radius:0px;
  3534. -moz-box-shadow:none;
  3535. -webkit-box-shadow:none;
  3536. box-shadow:none;
  3537. }
  3538. #u149913 {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:85px;
  3542. top:806px;
  3543. width:14px;
  3544. height:26px;
  3545. display:flex;
  3546. }
  3547. #u149913 .text {
  3548. position:absolute;
  3549. align-self:center;
  3550. padding:2px 2px 2px 2px;
  3551. box-sizing:border-box;
  3552. width:100%;
  3553. }
  3554. #u149913_text {
  3555. border-width:0px;
  3556. word-wrap:break-word;
  3557. text-transform:none;
  3558. visibility:hidden;
  3559. }
  3560. #u149914 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:0px;
  3566. height:0px;
  3567. }
  3568. #u149915_div {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:14px;
  3574. height:51px;
  3575. background:inherit;
  3576. background-color:rgba(24, 144, 255, 1);
  3577. border:none;
  3578. border-radius:0px;
  3579. -moz-box-shadow:none;
  3580. -webkit-box-shadow:none;
  3581. box-shadow:none;
  3582. }
  3583. #u149915 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:130px;
  3587. top:858px;
  3588. width:14px;
  3589. height:51px;
  3590. display:flex;
  3591. }
  3592. #u149915 .text {
  3593. position:absolute;
  3594. align-self:center;
  3595. padding:2px 2px 2px 2px;
  3596. box-sizing:border-box;
  3597. width:100%;
  3598. }
  3599. #u149915_text {
  3600. border-width:0px;
  3601. word-wrap:break-word;
  3602. text-transform:none;
  3603. visibility:hidden;
  3604. }
  3605. #u149916_div {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:14px;
  3611. height:26px;
  3612. background:inherit;
  3613. background-color:rgba(80, 227, 193, 1);
  3614. border:none;
  3615. border-radius:0px;
  3616. -moz-box-shadow:none;
  3617. -webkit-box-shadow:none;
  3618. box-shadow:none;
  3619. }
  3620. #u149916 {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:130px;
  3624. top:832px;
  3625. width:14px;
  3626. height:26px;
  3627. display:flex;
  3628. }
  3629. #u149916 .text {
  3630. position:absolute;
  3631. align-self:center;
  3632. padding:2px 2px 2px 2px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u149916_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. visibility:hidden;
  3641. }
  3642. #u149917 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:0px;
  3648. height:0px;
  3649. }
  3650. #u149918_div {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:14px;
  3656. height:51px;
  3657. background:inherit;
  3658. background-color:rgba(24, 144, 255, 1);
  3659. border:none;
  3660. border-radius:0px;
  3661. -moz-box-shadow:none;
  3662. -webkit-box-shadow:none;
  3663. box-shadow:none;
  3664. }
  3665. #u149918 {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:174px;
  3669. top:858px;
  3670. width:14px;
  3671. height:51px;
  3672. display:flex;
  3673. }
  3674. #u149918 .text {
  3675. position:absolute;
  3676. align-self:center;
  3677. padding:2px 2px 2px 2px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u149918_text {
  3682. border-width:0px;
  3683. word-wrap:break-word;
  3684. text-transform:none;
  3685. visibility:hidden;
  3686. }
  3687. #u149919_div {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:14px;
  3693. height:26px;
  3694. background:inherit;
  3695. background-color:rgba(80, 227, 193, 1);
  3696. border:none;
  3697. border-radius:0px;
  3698. -moz-box-shadow:none;
  3699. -webkit-box-shadow:none;
  3700. box-shadow:none;
  3701. }
  3702. #u149919 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:174px;
  3706. top:834px;
  3707. width:14px;
  3708. height:26px;
  3709. display:flex;
  3710. }
  3711. #u149919 .text {
  3712. position:absolute;
  3713. align-self:center;
  3714. padding:2px 2px 2px 2px;
  3715. box-sizing:border-box;
  3716. width:100%;
  3717. }
  3718. #u149919_text {
  3719. border-width:0px;
  3720. word-wrap:break-word;
  3721. text-transform:none;
  3722. visibility:hidden;
  3723. }
  3724. #u149920_div {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:14px;
  3730. height:8px;
  3731. background:inherit;
  3732. background-color:rgba(250, 205, 145, 1);
  3733. border:none;
  3734. border-radius:0px;
  3735. -moz-box-shadow:none;
  3736. -webkit-box-shadow:none;
  3737. box-shadow:none;
  3738. }
  3739. #u149920 {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:174px;
  3743. top:829px;
  3744. width:14px;
  3745. height:8px;
  3746. display:flex;
  3747. }
  3748. #u149920 .text {
  3749. position:absolute;
  3750. align-self:center;
  3751. padding:2px 2px 2px 2px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u149920_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. visibility:hidden;
  3760. }
  3761. #u149921 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:0px;
  3767. height:0px;
  3768. }
  3769. #u149922_div {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:14px;
  3775. height:51px;
  3776. background:inherit;
  3777. background-color:rgba(24, 144, 255, 1);
  3778. border:none;
  3779. border-radius:0px;
  3780. -moz-box-shadow:none;
  3781. -webkit-box-shadow:none;
  3782. box-shadow:none;
  3783. }
  3784. #u149922 {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:219px;
  3788. top:858px;
  3789. width:14px;
  3790. height:51px;
  3791. display:flex;
  3792. }
  3793. #u149922 .text {
  3794. position:absolute;
  3795. align-self:center;
  3796. padding:2px 2px 2px 2px;
  3797. box-sizing:border-box;
  3798. width:100%;
  3799. }
  3800. #u149922_text {
  3801. border-width:0px;
  3802. word-wrap:break-word;
  3803. text-transform:none;
  3804. visibility:hidden;
  3805. }
  3806. #u149923_div {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:14px;
  3812. height:26px;
  3813. background:inherit;
  3814. background-color:rgba(80, 227, 193, 1);
  3815. border:none;
  3816. border-radius:0px;
  3817. -moz-box-shadow:none;
  3818. -webkit-box-shadow:none;
  3819. box-shadow:none;
  3820. }
  3821. #u149923 {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:219px;
  3825. top:832px;
  3826. width:14px;
  3827. height:26px;
  3828. display:flex;
  3829. }
  3830. #u149923 .text {
  3831. position:absolute;
  3832. align-self:center;
  3833. padding:2px 2px 2px 2px;
  3834. box-sizing:border-box;
  3835. width:100%;
  3836. }
  3837. #u149923_text {
  3838. border-width:0px;
  3839. word-wrap:break-word;
  3840. text-transform:none;
  3841. visibility:hidden;
  3842. }
  3843. #u149924 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:0px;
  3849. height:0px;
  3850. }
  3851. #u149925_div {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:14px;
  3857. height:64px;
  3858. background:inherit;
  3859. background-color:rgba(24, 144, 255, 1);
  3860. border:none;
  3861. border-radius:0px;
  3862. -moz-box-shadow:none;
  3863. -webkit-box-shadow:none;
  3864. box-shadow:none;
  3865. }
  3866. #u149925 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:264px;
  3870. top:845px;
  3871. width:14px;
  3872. height:64px;
  3873. display:flex;
  3874. }
  3875. #u149925 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 2px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u149925_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u149926_div {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:14px;
  3894. height:13px;
  3895. background:inherit;
  3896. background-color:rgba(80, 227, 193, 1);
  3897. border:none;
  3898. border-radius:0px;
  3899. -moz-box-shadow:none;
  3900. -webkit-box-shadow:none;
  3901. box-shadow:none;
  3902. }
  3903. #u149926 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:264px;
  3907. top:832px;
  3908. width:14px;
  3909. height:13px;
  3910. display:flex;
  3911. }
  3912. #u149926 .text {
  3913. position:absolute;
  3914. align-self:center;
  3915. padding:2px 2px 2px 2px;
  3916. box-sizing:border-box;
  3917. width:100%;
  3918. }
  3919. #u149926_text {
  3920. border-width:0px;
  3921. word-wrap:break-word;
  3922. text-transform:none;
  3923. visibility:hidden;
  3924. }
  3925. #u149927_div {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:14px;
  3931. height:8px;
  3932. background:inherit;
  3933. background-color:rgba(250, 205, 145, 1);
  3934. border:none;
  3935. border-radius:0px;
  3936. -moz-box-shadow:none;
  3937. -webkit-box-shadow:none;
  3938. box-shadow:none;
  3939. }
  3940. #u149927 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:264px;
  3944. top:824px;
  3945. width:14px;
  3946. height:8px;
  3947. display:flex;
  3948. }
  3949. #u149927 .text {
  3950. position:absolute;
  3951. align-self:center;
  3952. padding:2px 2px 2px 2px;
  3953. box-sizing:border-box;
  3954. width:100%;
  3955. }
  3956. #u149927_text {
  3957. border-width:0px;
  3958. word-wrap:break-word;
  3959. text-transform:none;
  3960. visibility:hidden;
  3961. }
  3962. #u149928 {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:0px;
  3966. top:0px;
  3967. width:0px;
  3968. height:0px;
  3969. }
  3970. #u149929_div {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:0px;
  3974. top:0px;
  3975. width:14px;
  3976. height:39px;
  3977. background:inherit;
  3978. background-color:rgba(24, 144, 255, 1);
  3979. border:none;
  3980. border-radius:0px;
  3981. -moz-box-shadow:none;
  3982. -webkit-box-shadow:none;
  3983. box-shadow:none;
  3984. }
  3985. #u149929 {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:308px;
  3989. top:870px;
  3990. width:14px;
  3991. height:39px;
  3992. display:flex;
  3993. }
  3994. #u149929 .text {
  3995. position:absolute;
  3996. align-self:center;
  3997. padding:2px 2px 2px 2px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u149929_text {
  4002. border-width:0px;
  4003. word-wrap:break-word;
  4004. text-transform:none;
  4005. visibility:hidden;
  4006. }
  4007. #u149930_div {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:14px;
  4013. height:20px;
  4014. background:inherit;
  4015. background-color:rgba(80, 227, 193, 1);
  4016. border:none;
  4017. border-radius:0px;
  4018. -moz-box-shadow:none;
  4019. -webkit-box-shadow:none;
  4020. box-shadow:none;
  4021. }
  4022. #u149930 {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:308px;
  4026. top:850px;
  4027. width:14px;
  4028. height:20px;
  4029. display:flex;
  4030. }
  4031. #u149930 .text {
  4032. position:absolute;
  4033. align-self:center;
  4034. padding:2px 2px 2px 2px;
  4035. box-sizing:border-box;
  4036. width:100%;
  4037. }
  4038. #u149930_text {
  4039. border-width:0px;
  4040. word-wrap:break-word;
  4041. text-transform:none;
  4042. visibility:hidden;
  4043. }
  4044. #u149931_div {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:14px;
  4050. height:20px;
  4051. background:inherit;
  4052. background-color:rgba(250, 205, 145, 1);
  4053. border:none;
  4054. border-radius:0px;
  4055. -moz-box-shadow:none;
  4056. -webkit-box-shadow:none;
  4057. box-shadow:none;
  4058. }
  4059. #u149931 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:308px;
  4063. top:830px;
  4064. width:14px;
  4065. height:20px;
  4066. display:flex;
  4067. }
  4068. #u149931 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 2px 2px 2px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u149931_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u149932 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:0px;
  4087. height:0px;
  4088. }
  4089. #u149933_div {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:14px;
  4095. height:60px;
  4096. background:inherit;
  4097. background-color:rgba(24, 144, 255, 1);
  4098. border:none;
  4099. border-radius:0px;
  4100. -moz-box-shadow:none;
  4101. -webkit-box-shadow:none;
  4102. box-shadow:none;
  4103. }
  4104. #u149933 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:353px;
  4108. top:849px;
  4109. width:14px;
  4110. height:60px;
  4111. display:flex;
  4112. }
  4113. #u149933 .text {
  4114. position:absolute;
  4115. align-self:center;
  4116. padding:2px 2px 2px 2px;
  4117. box-sizing:border-box;
  4118. width:100%;
  4119. }
  4120. #u149933_text {
  4121. border-width:0px;
  4122. word-wrap:break-word;
  4123. text-transform:none;
  4124. visibility:hidden;
  4125. }
  4126. #u149934_div {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:14px;
  4132. height:26px;
  4133. background:inherit;
  4134. background-color:rgba(80, 227, 193, 1);
  4135. border:none;
  4136. border-radius:0px;
  4137. -moz-box-shadow:none;
  4138. -webkit-box-shadow:none;
  4139. box-shadow:none;
  4140. }
  4141. #u149934 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:353px;
  4145. top:830px;
  4146. width:14px;
  4147. height:26px;
  4148. display:flex;
  4149. }
  4150. #u149934 .text {
  4151. position:absolute;
  4152. align-self:center;
  4153. padding:2px 2px 2px 2px;
  4154. box-sizing:border-box;
  4155. width:100%;
  4156. }
  4157. #u149934_text {
  4158. border-width:0px;
  4159. word-wrap:break-word;
  4160. text-transform:none;
  4161. visibility:hidden;
  4162. }
  4163. #u149935 {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:0px;
  4169. height:0px;
  4170. }
  4171. #u149936_div {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:153px;
  4177. height:80px;
  4178. background:inherit;
  4179. background-color:rgba(0, 0, 0, 0.498039215686275);
  4180. border:none;
  4181. border-radius:4px;
  4182. -moz-box-shadow:none;
  4183. -webkit-box-shadow:none;
  4184. box-shadow:none;
  4185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4186. font-weight:400;
  4187. font-style:normal;
  4188. font-size:16px;
  4189. color:#FFFFFF;
  4190. }
  4191. #u149936 {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:200px;
  4195. top:799px;
  4196. width:153px;
  4197. height:80px;
  4198. display:flex;
  4199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4200. font-weight:400;
  4201. font-style:normal;
  4202. font-size:16px;
  4203. color:#FFFFFF;
  4204. }
  4205. #u149936 .text {
  4206. position:absolute;
  4207. align-self:center;
  4208. padding:0px 20px 0px 25px;
  4209. box-sizing:border-box;
  4210. width:100%;
  4211. }
  4212. #u149936_text {
  4213. border-width:0px;
  4214. white-space:nowrap;
  4215. text-transform:none;
  4216. }
  4217. #u149937_img {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:7px;
  4223. height:7px;
  4224. }
  4225. #u149937 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:214px;
  4229. top:815px;
  4230. width:7px;
  4231. height:7px;
  4232. display:flex;
  4233. }
  4234. #u149937 .text {
  4235. position:absolute;
  4236. align-self:center;
  4237. padding:2px 2px 2px 2px;
  4238. box-sizing:border-box;
  4239. width:100%;
  4240. }
  4241. #u149937_text {
  4242. border-width:0px;
  4243. word-wrap:break-word;
  4244. text-transform:none;
  4245. visibility:hidden;
  4246. }
  4247. #u149938_img {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:7px;
  4253. height:7px;
  4254. }
  4255. #u149938 {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:214px;
  4259. top:837px;
  4260. width:7px;
  4261. height:7px;
  4262. display:flex;
  4263. }
  4264. #u149938 .text {
  4265. position:absolute;
  4266. align-self:center;
  4267. padding:2px 2px 2px 2px;
  4268. box-sizing:border-box;
  4269. width:100%;
  4270. }
  4271. #u149938_text {
  4272. border-width:0px;
  4273. word-wrap:break-word;
  4274. text-transform:none;
  4275. visibility:hidden;
  4276. }
  4277. #u149939_img {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:0px;
  4281. top:0px;
  4282. width:7px;
  4283. height:7px;
  4284. }
  4285. #u149939 {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:214px;
  4289. top:861px;
  4290. width:7px;
  4291. height:7px;
  4292. display:flex;
  4293. }
  4294. #u149939 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:2px 2px 2px 2px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u149939_text {
  4302. border-width:0px;
  4303. word-wrap:break-word;
  4304. text-transform:none;
  4305. visibility:hidden;
  4306. }
  4307. #u149940 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:0px;
  4313. height:0px;
  4314. }
  4315. #u149941_div {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:28px;
  4321. height:14px;
  4322. background:inherit;
  4323. background-color:rgba(255, 255, 255, 0);
  4324. border:none;
  4325. border-radius:0px;
  4326. -moz-box-shadow:none;
  4327. -webkit-box-shadow:none;
  4328. box-shadow:none;
  4329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4330. font-weight:400;
  4331. font-style:normal;
  4332. font-size:10px;
  4333. color:#000000;
  4334. text-align:center;
  4335. }
  4336. #u149941 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:77px;
  4340. top:915px;
  4341. width:28px;
  4342. height:14px;
  4343. display:flex;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:10px;
  4348. color:#000000;
  4349. text-align:center;
  4350. }
  4351. #u149941 .text {
  4352. position:absolute;
  4353. align-self:flex-start;
  4354. padding:0px 0px 0px 0px;
  4355. box-sizing:border-box;
  4356. width:100%;
  4357. }
  4358. #u149941_text {
  4359. border-width:0px;
  4360. white-space:nowrap;
  4361. text-transform:none;
  4362. }
  4363. #u149942_div {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:28px;
  4369. height:14px;
  4370. background:inherit;
  4371. background-color:rgba(255, 255, 255, 0);
  4372. border:none;
  4373. border-radius:0px;
  4374. -moz-box-shadow:none;
  4375. -webkit-box-shadow:none;
  4376. box-shadow:none;
  4377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4378. font-weight:400;
  4379. font-style:normal;
  4380. font-size:10px;
  4381. color:#000000;
  4382. text-align:center;
  4383. }
  4384. #u149942 {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:121px;
  4388. top:915px;
  4389. width:28px;
  4390. height:14px;
  4391. display:flex;
  4392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4393. font-weight:400;
  4394. font-style:normal;
  4395. font-size:10px;
  4396. color:#000000;
  4397. text-align:center;
  4398. }
  4399. #u149942 .text {
  4400. position:absolute;
  4401. align-self:flex-start;
  4402. padding:0px 0px 0px 0px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u149942_text {
  4407. border-width:0px;
  4408. white-space:nowrap;
  4409. text-transform:none;
  4410. }
  4411. #u149943_div {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:28px;
  4417. height:14px;
  4418. background:inherit;
  4419. background-color:rgba(255, 255, 255, 0);
  4420. border:none;
  4421. border-radius:0px;
  4422. -moz-box-shadow:none;
  4423. -webkit-box-shadow:none;
  4424. box-shadow:none;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:10px;
  4429. color:#000000;
  4430. text-align:center;
  4431. }
  4432. #u149943 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:166px;
  4436. top:915px;
  4437. width:28px;
  4438. height:14px;
  4439. display:flex;
  4440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:10px;
  4444. color:#000000;
  4445. text-align:center;
  4446. }
  4447. #u149943 .text {
  4448. position:absolute;
  4449. align-self:flex-start;
  4450. padding:0px 0px 0px 0px;
  4451. box-sizing:border-box;
  4452. width:100%;
  4453. }
  4454. #u149943_text {
  4455. border-width:0px;
  4456. white-space:nowrap;
  4457. text-transform:none;
  4458. }
  4459. #u149944_div {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:0px;
  4463. top:0px;
  4464. width:27px;
  4465. height:14px;
  4466. background:inherit;
  4467. background-color:rgba(255, 255, 255, 0);
  4468. border:none;
  4469. border-radius:0px;
  4470. -moz-box-shadow:none;
  4471. -webkit-box-shadow:none;
  4472. box-shadow:none;
  4473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4474. font-weight:400;
  4475. font-style:normal;
  4476. font-size:10px;
  4477. color:#000000;
  4478. text-align:center;
  4479. }
  4480. #u149944 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:210px;
  4484. top:915px;
  4485. width:27px;
  4486. height:14px;
  4487. display:flex;
  4488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. font-size:10px;
  4492. color:#000000;
  4493. text-align:center;
  4494. }
  4495. #u149944 .text {
  4496. position:absolute;
  4497. align-self:flex-start;
  4498. padding:0px 0px 0px 0px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u149944_text {
  4503. border-width:0px;
  4504. white-space:nowrap;
  4505. text-transform:none;
  4506. }
  4507. #u149945_div {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:28px;
  4513. height:14px;
  4514. background:inherit;
  4515. background-color:rgba(255, 255, 255, 0);
  4516. border:none;
  4517. border-radius:0px;
  4518. -moz-box-shadow:none;
  4519. -webkit-box-shadow:none;
  4520. box-shadow:none;
  4521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4522. font-weight:400;
  4523. font-style:normal;
  4524. font-size:10px;
  4525. color:#000000;
  4526. text-align:center;
  4527. }
  4528. #u149945 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:257px;
  4532. top:915px;
  4533. width:28px;
  4534. height:14px;
  4535. display:flex;
  4536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. font-size:10px;
  4540. color:#000000;
  4541. text-align:center;
  4542. }
  4543. #u149945 .text {
  4544. position:absolute;
  4545. align-self:flex-start;
  4546. padding:0px 0px 0px 0px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u149945_text {
  4551. border-width:0px;
  4552. white-space:nowrap;
  4553. text-transform:none;
  4554. }
  4555. #u149946_div {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:28px;
  4561. height:14px;
  4562. background:inherit;
  4563. background-color:rgba(255, 255, 255, 0);
  4564. border:none;
  4565. border-radius:0px;
  4566. -moz-box-shadow:none;
  4567. -webkit-box-shadow:none;
  4568. box-shadow:none;
  4569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:10px;
  4573. color:#000000;
  4574. text-align:center;
  4575. }
  4576. #u149946 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:301px;
  4580. top:915px;
  4581. width:28px;
  4582. height:14px;
  4583. display:flex;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:10px;
  4588. color:#000000;
  4589. text-align:center;
  4590. }
  4591. #u149946 .text {
  4592. position:absolute;
  4593. align-self:flex-start;
  4594. padding:0px 0px 0px 0px;
  4595. box-sizing:border-box;
  4596. width:100%;
  4597. }
  4598. #u149946_text {
  4599. border-width:0px;
  4600. white-space:nowrap;
  4601. text-transform:none;
  4602. }
  4603. #u149947_div {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:30px;
  4609. height:14px;
  4610. background:inherit;
  4611. background-color:rgba(255, 255, 255, 0);
  4612. border:none;
  4613. border-radius:0px;
  4614. -moz-box-shadow:none;
  4615. -webkit-box-shadow:none;
  4616. box-shadow:none;
  4617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4618. font-weight:400;
  4619. font-style:normal;
  4620. font-size:10px;
  4621. color:#000000;
  4622. text-align:center;
  4623. }
  4624. #u149947 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:344px;
  4628. top:915px;
  4629. width:30px;
  4630. height:14px;
  4631. display:flex;
  4632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4633. font-weight:400;
  4634. font-style:normal;
  4635. font-size:10px;
  4636. color:#000000;
  4637. text-align:center;
  4638. }
  4639. #u149947 .text {
  4640. position:absolute;
  4641. align-self:flex-start;
  4642. padding:0px 0px 0px 0px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u149947_text {
  4647. border-width:0px;
  4648. white-space:nowrap;
  4649. text-transform:none;
  4650. }
  4651. #u149948 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:0px;
  4657. height:0px;
  4658. }
  4659. #u149949_div {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:0px;
  4663. top:0px;
  4664. width:28px;
  4665. height:14px;
  4666. background:inherit;
  4667. background-color:rgba(255, 255, 255, 0);
  4668. border:none;
  4669. border-radius:0px;
  4670. -moz-box-shadow:none;
  4671. -webkit-box-shadow:none;
  4672. box-shadow:none;
  4673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4674. font-weight:400;
  4675. font-style:normal;
  4676. font-size:10px;
  4677. color:#000000;
  4678. text-align:center;
  4679. }
  4680. #u149949 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:77px;
  4684. top:700px;
  4685. width:28px;
  4686. height:14px;
  4687. display:flex;
  4688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:10px;
  4692. color:#000000;
  4693. text-align:center;
  4694. }
  4695. #u149949 .text {
  4696. position:absolute;
  4697. align-self:flex-start;
  4698. padding:0px 0px 0px 0px;
  4699. box-sizing:border-box;
  4700. width:100%;
  4701. }
  4702. #u149949_text {
  4703. border-width:0px;
  4704. white-space:nowrap;
  4705. text-transform:none;
  4706. }
  4707. #u149950_div {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:0px;
  4711. top:0px;
  4712. width:28px;
  4713. height:14px;
  4714. background:inherit;
  4715. background-color:rgba(255, 255, 255, 0);
  4716. border:none;
  4717. border-radius:0px;
  4718. -moz-box-shadow:none;
  4719. -webkit-box-shadow:none;
  4720. box-shadow:none;
  4721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4722. font-weight:400;
  4723. font-style:normal;
  4724. font-size:10px;
  4725. color:#000000;
  4726. text-align:center;
  4727. }
  4728. #u149950 {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:121px;
  4732. top:700px;
  4733. width:28px;
  4734. height:14px;
  4735. display:flex;
  4736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4737. font-weight:400;
  4738. font-style:normal;
  4739. font-size:10px;
  4740. color:#000000;
  4741. text-align:center;
  4742. }
  4743. #u149950 .text {
  4744. position:absolute;
  4745. align-self:flex-start;
  4746. padding:0px 0px 0px 0px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u149950_text {
  4751. border-width:0px;
  4752. white-space:nowrap;
  4753. text-transform:none;
  4754. }
  4755. #u149951_div {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:0px;
  4759. top:0px;
  4760. width:28px;
  4761. height:14px;
  4762. background:inherit;
  4763. background-color:rgba(255, 255, 255, 0);
  4764. border:none;
  4765. border-radius:0px;
  4766. -moz-box-shadow:none;
  4767. -webkit-box-shadow:none;
  4768. box-shadow:none;
  4769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:10px;
  4773. color:#000000;
  4774. text-align:center;
  4775. }
  4776. #u149951 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:166px;
  4780. top:700px;
  4781. width:28px;
  4782. height:14px;
  4783. display:flex;
  4784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4785. font-weight:400;
  4786. font-style:normal;
  4787. font-size:10px;
  4788. color:#000000;
  4789. text-align:center;
  4790. }
  4791. #u149951 .text {
  4792. position:absolute;
  4793. align-self:flex-start;
  4794. padding:0px 0px 0px 0px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u149951_text {
  4799. border-width:0px;
  4800. white-space:nowrap;
  4801. text-transform:none;
  4802. }
  4803. #u149952_div {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:27px;
  4809. height:14px;
  4810. background:inherit;
  4811. background-color:rgba(255, 255, 255, 0);
  4812. border:none;
  4813. border-radius:0px;
  4814. -moz-box-shadow:none;
  4815. -webkit-box-shadow:none;
  4816. box-shadow:none;
  4817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4818. font-weight:400;
  4819. font-style:normal;
  4820. font-size:10px;
  4821. color:#000000;
  4822. text-align:center;
  4823. }
  4824. #u149952 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:210px;
  4828. top:700px;
  4829. width:27px;
  4830. height:14px;
  4831. display:flex;
  4832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4833. font-weight:400;
  4834. font-style:normal;
  4835. font-size:10px;
  4836. color:#000000;
  4837. text-align:center;
  4838. }
  4839. #u149952 .text {
  4840. position:absolute;
  4841. align-self:flex-start;
  4842. padding:0px 0px 0px 0px;
  4843. box-sizing:border-box;
  4844. width:100%;
  4845. }
  4846. #u149952_text {
  4847. border-width:0px;
  4848. white-space:nowrap;
  4849. text-transform:none;
  4850. }
  4851. #u149953_div {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:28px;
  4857. height:14px;
  4858. background:inherit;
  4859. background-color:rgba(255, 255, 255, 0);
  4860. border:none;
  4861. border-radius:0px;
  4862. -moz-box-shadow:none;
  4863. -webkit-box-shadow:none;
  4864. box-shadow:none;
  4865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:10px;
  4869. color:#000000;
  4870. text-align:center;
  4871. }
  4872. #u149953 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:257px;
  4876. top:700px;
  4877. width:28px;
  4878. height:14px;
  4879. display:flex;
  4880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4881. font-weight:400;
  4882. font-style:normal;
  4883. font-size:10px;
  4884. color:#000000;
  4885. text-align:center;
  4886. }
  4887. #u149953 .text {
  4888. position:absolute;
  4889. align-self:flex-start;
  4890. padding:0px 0px 0px 0px;
  4891. box-sizing:border-box;
  4892. width:100%;
  4893. }
  4894. #u149953_text {
  4895. border-width:0px;
  4896. white-space:nowrap;
  4897. text-transform:none;
  4898. }
  4899. #u149954_div {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:0px;
  4903. top:0px;
  4904. width:28px;
  4905. height:14px;
  4906. background:inherit;
  4907. background-color:rgba(255, 255, 255, 0);
  4908. border:none;
  4909. border-radius:0px;
  4910. -moz-box-shadow:none;
  4911. -webkit-box-shadow:none;
  4912. box-shadow:none;
  4913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4914. font-weight:400;
  4915. font-style:normal;
  4916. font-size:10px;
  4917. color:#000000;
  4918. text-align:center;
  4919. }
  4920. #u149954 {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:301px;
  4924. top:700px;
  4925. width:28px;
  4926. height:14px;
  4927. display:flex;
  4928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4929. font-weight:400;
  4930. font-style:normal;
  4931. font-size:10px;
  4932. color:#000000;
  4933. text-align:center;
  4934. }
  4935. #u149954 .text {
  4936. position:absolute;
  4937. align-self:flex-start;
  4938. padding:0px 0px 0px 0px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u149954_text {
  4943. border-width:0px;
  4944. white-space:nowrap;
  4945. text-transform:none;
  4946. }
  4947. #u149955_div {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:30px;
  4953. height:14px;
  4954. background:inherit;
  4955. background-color:rgba(255, 255, 255, 0);
  4956. border:none;
  4957. border-radius:0px;
  4958. -moz-box-shadow:none;
  4959. -webkit-box-shadow:none;
  4960. box-shadow:none;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:10px;
  4965. color:#000000;
  4966. text-align:center;
  4967. }
  4968. #u149955 {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:344px;
  4972. top:700px;
  4973. width:30px;
  4974. height:14px;
  4975. display:flex;
  4976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4977. font-weight:400;
  4978. font-style:normal;
  4979. font-size:10px;
  4980. color:#000000;
  4981. text-align:center;
  4982. }
  4983. #u149955 .text {
  4984. position:absolute;
  4985. align-self:flex-start;
  4986. padding:0px 0px 0px 0px;
  4987. box-sizing:border-box;
  4988. width:100%;
  4989. }
  4990. #u149955_text {
  4991. border-width:0px;
  4992. white-space:nowrap;
  4993. text-transform:none;
  4994. }
  4995. #u149956 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:0px;
  5001. height:0px;
  5002. }
  5003. #u149957_div {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:375px;
  5009. height:50px;
  5010. background:inherit;
  5011. background-color:rgba(255, 255, 255, 1);
  5012. border:none;
  5013. border-radius:0px;
  5014. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5015. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5016. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  5017. }
  5018. #u149957 {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:29px;
  5022. top:467px;
  5023. width:375px;
  5024. height:50px;
  5025. display:flex;
  5026. }
  5027. #u149957 .text {
  5028. position:absolute;
  5029. align-self:center;
  5030. padding:2px 2px 2px 2px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u149957_text {
  5035. border-width:0px;
  5036. word-wrap:break-word;
  5037. text-transform:none;
  5038. visibility:hidden;
  5039. }
  5040. #u149958_div {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:0px;
  5044. top:0px;
  5045. width:73px;
  5046. height:17px;
  5047. background:inherit;
  5048. background-color:rgba(255, 255, 255, 0);
  5049. border:none;
  5050. border-radius:0px;
  5051. -moz-box-shadow:none;
  5052. -webkit-box-shadow:none;
  5053. box-shadow:none;
  5054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5055. font-weight:400;
  5056. font-style:normal;
  5057. font-size:12px;
  5058. color:#000000;
  5059. }
  5060. #u149958 {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:44px;
  5064. top:482px;
  5065. width:73px;
  5066. height:17px;
  5067. display:flex;
  5068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5069. font-weight:400;
  5070. font-style:normal;
  5071. font-size:12px;
  5072. color:#000000;
  5073. }
  5074. #u149958 .text {
  5075. position:absolute;
  5076. align-self:flex-start;
  5077. padding:0px 0px 0px 0px;
  5078. box-sizing:border-box;
  5079. width:100%;
  5080. }
  5081. #u149958_text {
  5082. border-width:0px;
  5083. white-space:nowrap;
  5084. text-transform:none;
  5085. }
  5086. #u149959_div {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:25px;
  5092. height:17px;
  5093. background:inherit;
  5094. background-color:rgba(24, 144, 255, 1);
  5095. border:none;
  5096. border-radius:0px;
  5097. -moz-box-shadow:none;
  5098. -webkit-box-shadow:none;
  5099. box-shadow:none;
  5100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5101. font-weight:400;
  5102. font-style:normal;
  5103. font-size:12px;
  5104. color:#FFFFFF;
  5105. }
  5106. #u149959 {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:213px;
  5110. top:483px;
  5111. width:25px;
  5112. height:17px;
  5113. display:flex;
  5114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. font-size:12px;
  5118. color:#FFFFFF;
  5119. }
  5120. #u149959 .text {
  5121. position:absolute;
  5122. align-self:flex-start;
  5123. padding:0px 0px 0px 0px;
  5124. box-sizing:border-box;
  5125. width:100%;
  5126. }
  5127. #u149959_text {
  5128. border-width:0px;
  5129. white-space:nowrap;
  5130. text-transform:none;
  5131. }
  5132. #u149960_div {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:0px;
  5136. top:0px;
  5137. width:25px;
  5138. height:17px;
  5139. background:inherit;
  5140. background-color:rgba(255, 255, 255, 0);
  5141. border:none;
  5142. border-radius:0px;
  5143. -moz-box-shadow:none;
  5144. -webkit-box-shadow:none;
  5145. box-shadow:none;
  5146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:12px;
  5150. color:#000000;
  5151. }
  5152. #u149960 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:247px;
  5156. top:483px;
  5157. width:25px;
  5158. height:17px;
  5159. display:flex;
  5160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5161. font-weight:400;
  5162. font-style:normal;
  5163. font-size:12px;
  5164. color:#000000;
  5165. }
  5166. #u149960 .text {
  5167. position:absolute;
  5168. align-self:flex-start;
  5169. padding:0px 0px 0px 0px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u149960_text {
  5174. border-width:0px;
  5175. white-space:nowrap;
  5176. text-transform:none;
  5177. }
  5178. #u149961_div {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:0px;
  5182. top:0px;
  5183. width:25px;
  5184. height:17px;
  5185. background:inherit;
  5186. background-color:rgba(255, 255, 255, 0);
  5187. border:none;
  5188. border-radius:0px;
  5189. -moz-box-shadow:none;
  5190. -webkit-box-shadow:none;
  5191. box-shadow:none;
  5192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5193. font-weight:400;
  5194. font-style:normal;
  5195. font-size:12px;
  5196. color:#000000;
  5197. }
  5198. #u149961 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:282px;
  5202. top:483px;
  5203. width:25px;
  5204. height:17px;
  5205. display:flex;
  5206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5207. font-weight:400;
  5208. font-style:normal;
  5209. font-size:12px;
  5210. color:#000000;
  5211. }
  5212. #u149961 .text {
  5213. position:absolute;
  5214. align-self:flex-start;
  5215. padding:0px 0px 0px 0px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u149961_text {
  5220. border-width:0px;
  5221. white-space:nowrap;
  5222. text-transform:none;
  5223. }
  5224. #u149962_div {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:0px;
  5228. top:0px;
  5229. width:25px;
  5230. height:17px;
  5231. background:inherit;
  5232. background-color:rgba(255, 255, 255, 0);
  5233. border:none;
  5234. border-radius:0px;
  5235. -moz-box-shadow:none;
  5236. -webkit-box-shadow:none;
  5237. box-shadow:none;
  5238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:12px;
  5242. color:#000000;
  5243. }
  5244. #u149962 {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:316px;
  5248. top:483px;
  5249. width:25px;
  5250. height:17px;
  5251. display:flex;
  5252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5253. font-weight:400;
  5254. font-style:normal;
  5255. font-size:12px;
  5256. color:#000000;
  5257. }
  5258. #u149962 .text {
  5259. position:absolute;
  5260. align-self:flex-start;
  5261. padding:0px 0px 0px 0px;
  5262. box-sizing:border-box;
  5263. width:100%;
  5264. }
  5265. #u149962_text {
  5266. border-width:0px;
  5267. white-space:nowrap;
  5268. text-transform:none;
  5269. }
  5270. #u149963 {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:0px;
  5274. top:0px;
  5275. width:0px;
  5276. height:0px;
  5277. }
  5278. #u149964_div {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:34px;
  5284. height:14px;
  5285. background:inherit;
  5286. background-color:rgba(255, 255, 255, 0);
  5287. border:none;
  5288. border-radius:0px;
  5289. -moz-box-shadow:none;
  5290. -webkit-box-shadow:none;
  5291. box-shadow:none;
  5292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:10px;
  5296. color:#000000;
  5297. }
  5298. #u149964 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:360px;
  5302. top:484px;
  5303. width:34px;
  5304. height:14px;
  5305. display:flex;
  5306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:10px;
  5310. color:#000000;
  5311. }
  5312. #u149964 .text {
  5313. position:absolute;
  5314. align-self:flex-start;
  5315. padding:0px 0px 0px 0px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u149964_text {
  5320. border-width:0px;
  5321. white-space:nowrap;
  5322. text-transform:none;
  5323. }
  5324. #u149965_img {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:8px;
  5330. height:8px;
  5331. }
  5332. #u149965 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:350px;
  5336. top:488px;
  5337. width:8px;
  5338. height:8px;
  5339. display:flex;
  5340. }
  5341. #u149965 .text {
  5342. position:absolute;
  5343. align-self:center;
  5344. padding:2px 2px 2px 2px;
  5345. box-sizing:border-box;
  5346. width:100%;
  5347. }
  5348. #u149965_text {
  5349. border-width:0px;
  5350. word-wrap:break-word;
  5351. text-transform:none;
  5352. visibility:hidden;
  5353. }
  5354. #u149966 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:0px;
  5360. height:0px;
  5361. }
  5362. #u149967_div {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:375px;
  5368. height:50px;
  5369. background:inherit;
  5370. background-color:rgba(255, 255, 255, 1);
  5371. border:none;
  5372. border-radius:0px;
  5373. -moz-box-shadow:none;
  5374. -webkit-box-shadow:none;
  5375. box-shadow:none;
  5376. }
  5377. #u149967 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:29px;
  5381. top:107px;
  5382. width:375px;
  5383. height:50px;
  5384. display:flex;
  5385. }
  5386. #u149967 .text {
  5387. position:absolute;
  5388. align-self:center;
  5389. padding:2px 2px 2px 2px;
  5390. box-sizing:border-box;
  5391. width:100%;
  5392. }
  5393. #u149967_text {
  5394. border-width:0px;
  5395. word-wrap:break-word;
  5396. text-transform:none;
  5397. visibility:hidden;
  5398. }
  5399. #u149968 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:0px;
  5403. top:0px;
  5404. width:0px;
  5405. height:0px;
  5406. }
  5407. #u149969 {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:0px;
  5413. height:0px;
  5414. }
  5415. #u149970_div {
  5416. border-width:0px;
  5417. position:absolute;
  5418. left:0px;
  5419. top:0px;
  5420. width:135px;
  5421. height:30px;
  5422. background:inherit;
  5423. background-color:rgba(242, 242, 242, 1);
  5424. border:none;
  5425. border-radius:20px;
  5426. -moz-box-shadow:none;
  5427. -webkit-box-shadow:none;
  5428. box-shadow:none;
  5429. }
  5430. #u149970 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:42px;
  5434. top:117px;
  5435. width:135px;
  5436. height:30px;
  5437. display:flex;
  5438. }
  5439. #u149970 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 2px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u149970_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u149971_input {
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:122px;
  5457. height:22px;
  5458. padding:2px 2px 2px 2px;
  5459. font-family:'ArialMT', 'Arial', sans-serif;
  5460. font-weight:400;
  5461. font-style:normal;
  5462. font-size:12px;
  5463. letter-spacing:normal;
  5464. color:#7F7F7F;
  5465. vertical-align:none;
  5466. text-align:left;
  5467. text-transform:none;
  5468. background-color:transparent;
  5469. border-color:transparent;
  5470. }
  5471. #u149971_input.disabled {
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:122px;
  5476. height:22px;
  5477. padding:2px 2px 2px 2px;
  5478. font-family:'ArialMT', 'Arial', sans-serif;
  5479. font-weight:400;
  5480. font-style:normal;
  5481. font-size:12px;
  5482. letter-spacing:normal;
  5483. color:#7F7F7F;
  5484. vertical-align:none;
  5485. text-align:left;
  5486. text-transform:none;
  5487. background-color:transparent;
  5488. border-color:transparent;
  5489. }
  5490. #u149971_div {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:122px;
  5496. height:22px;
  5497. background:inherit;
  5498. background-color:rgba(255, 255, 255, 0);
  5499. border:none;
  5500. border-radius:0px;
  5501. -moz-box-shadow:none;
  5502. -webkit-box-shadow:none;
  5503. box-shadow:none;
  5504. font-size:12px;
  5505. color:#7F7F7F;
  5506. }
  5507. #u149971 {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:49px;
  5511. top:121px;
  5512. width:122px;
  5513. height:22px;
  5514. display:flex;
  5515. font-size:12px;
  5516. color:#7F7F7F;
  5517. }
  5518. #u149971 .text {
  5519. position:absolute;
  5520. align-self:flex-start;
  5521. padding:2px 2px 2px 2px;
  5522. box-sizing:border-box;
  5523. width:100%;
  5524. }
  5525. #u149971_div.disabled {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:0px;
  5529. top:0px;
  5530. width:122px;
  5531. height:22px;
  5532. background:inherit;
  5533. background-color:rgba(240, 240, 240, 1);
  5534. border:none;
  5535. border-radius:0px;
  5536. -moz-box-shadow:none;
  5537. -webkit-box-shadow:none;
  5538. box-shadow:none;
  5539. font-size:12px;
  5540. color:#7F7F7F;
  5541. }
  5542. #u149971.disabled {
  5543. }
  5544. .u149971_input_option {
  5545. font-size:12px;
  5546. }
  5547. #u149972_div {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:64px;
  5553. height:30px;
  5554. background:inherit;
  5555. background-color:rgba(255, 255, 255, 0);
  5556. border:none;
  5557. border-left:0px;
  5558. border-top:0px;
  5559. border-right:0px;
  5560. border-radius:0px;
  5561. border-bottom-right-radius:0px;
  5562. border-bottom-left-radius:0px;
  5563. -moz-box-shadow:none;
  5564. -webkit-box-shadow:none;
  5565. box-shadow:none;
  5566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5567. font-weight:400;
  5568. font-style:normal;
  5569. font-size:12px;
  5570. color:#1890FF;
  5571. line-height:30px;
  5572. }
  5573. #u149972 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:332px;
  5577. top:117px;
  5578. width:64px;
  5579. height:30px;
  5580. display:flex;
  5581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:12px;
  5585. color:#1890FF;
  5586. line-height:30px;
  5587. }
  5588. #u149972 .text {
  5589. position:absolute;
  5590. align-self:flex-start;
  5591. padding:0px 0px 0px 0px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u149972_text {
  5596. border-width:0px;
  5597. white-space:nowrap;
  5598. text-transform:none;
  5599. }
  5600. #u149973 {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:0px;
  5606. height:0px;
  5607. }
  5608. #u149974_div {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:135px;
  5614. height:30px;
  5615. background:inherit;
  5616. background-color:rgba(242, 242, 242, 1);
  5617. border:none;
  5618. border-radius:20px;
  5619. -moz-box-shadow:none;
  5620. -webkit-box-shadow:none;
  5621. box-shadow:none;
  5622. }
  5623. #u149974 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:187px;
  5627. top:117px;
  5628. width:135px;
  5629. height:30px;
  5630. display:flex;
  5631. }
  5632. #u149974 .text {
  5633. position:absolute;
  5634. align-self:center;
  5635. padding:2px 2px 2px 2px;
  5636. box-sizing:border-box;
  5637. width:100%;
  5638. }
  5639. #u149974_text {
  5640. border-width:0px;
  5641. word-wrap:break-word;
  5642. text-transform:none;
  5643. visibility:hidden;
  5644. }
  5645. #u149975_input {
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:122px;
  5650. height:22px;
  5651. padding:2px 2px 2px 2px;
  5652. font-family:'ArialMT', 'Arial', sans-serif;
  5653. font-weight:400;
  5654. font-style:normal;
  5655. font-size:12px;
  5656. letter-spacing:normal;
  5657. color:#7F7F7F;
  5658. vertical-align:none;
  5659. text-align:left;
  5660. text-transform:none;
  5661. background-color:transparent;
  5662. border-color:transparent;
  5663. }
  5664. #u149975_input.disabled {
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:122px;
  5669. height:22px;
  5670. padding:2px 2px 2px 2px;
  5671. font-family:'ArialMT', 'Arial', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:12px;
  5675. letter-spacing:normal;
  5676. color:#7F7F7F;
  5677. vertical-align:none;
  5678. text-align:left;
  5679. text-transform:none;
  5680. background-color:transparent;
  5681. border-color:transparent;
  5682. }
  5683. #u149975_div {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:122px;
  5689. height:22px;
  5690. background:inherit;
  5691. background-color:rgba(255, 255, 255, 0);
  5692. border:none;
  5693. border-radius:0px;
  5694. -moz-box-shadow:none;
  5695. -webkit-box-shadow:none;
  5696. box-shadow:none;
  5697. font-size:12px;
  5698. color:#7F7F7F;
  5699. }
  5700. #u149975 {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:194px;
  5704. top:121px;
  5705. width:122px;
  5706. height:22px;
  5707. display:flex;
  5708. font-size:12px;
  5709. color:#7F7F7F;
  5710. }
  5711. #u149975 .text {
  5712. position:absolute;
  5713. align-self:flex-start;
  5714. padding:2px 2px 2px 2px;
  5715. box-sizing:border-box;
  5716. width:100%;
  5717. }
  5718. #u149975_div.disabled {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:122px;
  5724. height:22px;
  5725. background:inherit;
  5726. background-color:rgba(240, 240, 240, 1);
  5727. border:none;
  5728. border-radius:0px;
  5729. -moz-box-shadow:none;
  5730. -webkit-box-shadow:none;
  5731. box-shadow:none;
  5732. font-size:12px;
  5733. color:#7F7F7F;
  5734. }
  5735. #u149975.disabled {
  5736. }
  5737. .u149975_input_option {
  5738. font-size:12px;
  5739. }
  5740. #u149976 {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:0px;
  5744. top:0px;
  5745. width:0px;
  5746. height:0px;
  5747. }
  5748. #u149977_div {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:375px;
  5754. height:50px;
  5755. background:inherit;
  5756. background-color:rgba(255, 255, 255, 1);
  5757. box-sizing:border-box;
  5758. border-width:1px;
  5759. border-style:solid;
  5760. border-color:rgba(242, 242, 242, 1);
  5761. border-radius:26px;
  5762. border-top-left-radius:0px;
  5763. border-top-right-radius:0px;
  5764. -moz-box-shadow:none;
  5765. -webkit-box-shadow:none;
  5766. box-shadow:none;
  5767. }
  5768. #u149977 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:31px;
  5772. top:1217px;
  5773. width:375px;
  5774. height:50px;
  5775. display:flex;
  5776. }
  5777. #u149977 .text {
  5778. position:absolute;
  5779. align-self:center;
  5780. padding:2px 2px 2px 2px;
  5781. box-sizing:border-box;
  5782. width:100%;
  5783. }
  5784. #u149977_text {
  5785. border-width:0px;
  5786. word-wrap:break-word;
  5787. text-transform:none;
  5788. visibility:hidden;
  5789. }
  5790. #u149978 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:0px;
  5794. top:0px;
  5795. width:0px;
  5796. height:0px;
  5797. }
  5798. #u149979_img {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:24px;
  5804. height:24px;
  5805. }
  5806. #u149979 {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:329px;
  5810. top:1221px;
  5811. width:24px;
  5812. height:24px;
  5813. display:flex;
  5814. font-size:8px;
  5815. }
  5816. #u149979 .text {
  5817. position:absolute;
  5818. align-self:center;
  5819. padding:2px 2px 2px 2px;
  5820. box-sizing:border-box;
  5821. width:100%;
  5822. }
  5823. #u149979_text {
  5824. border-width:0px;
  5825. word-wrap:break-word;
  5826. text-transform:none;
  5827. }
  5828. #u149980_div {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:49px;
  5834. height:17px;
  5835. background:inherit;
  5836. background-color:rgba(255, 255, 255, 0);
  5837. border:none;
  5838. border-radius:0px;
  5839. -moz-box-shadow:none;
  5840. -webkit-box-shadow:none;
  5841. box-shadow:none;
  5842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:12px;
  5846. }
  5847. #u149980 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:317px;
  5851. top:1246px;
  5852. width:49px;
  5853. height:17px;
  5854. display:flex;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:12px;
  5859. }
  5860. #u149980 .text {
  5861. position:absolute;
  5862. align-self:flex-start;
  5863. padding:0px 0px 0px 0px;
  5864. box-sizing:border-box;
  5865. width:100%;
  5866. }
  5867. #u149980_text {
  5868. border-width:0px;
  5869. white-space:nowrap;
  5870. text-transform:none;
  5871. }
  5872. #u149981 {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:0px;
  5878. height:0px;
  5879. }
  5880. #u149982_img {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:0px;
  5884. top:0px;
  5885. width:24px;
  5886. height:24px;
  5887. }
  5888. #u149982 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:207px;
  5892. top:1221px;
  5893. width:24px;
  5894. height:24px;
  5895. display:flex;
  5896. font-size:8px;
  5897. color:#FFFFFF;
  5898. }
  5899. #u149982 .text {
  5900. position:absolute;
  5901. align-self:center;
  5902. padding:2px 2px 2px 2px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u149982_text {
  5907. border-width:0px;
  5908. word-wrap:break-word;
  5909. text-transform:none;
  5910. }
  5911. #u149983_div {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:0px;
  5915. top:0px;
  5916. width:49px;
  5917. height:17px;
  5918. background:inherit;
  5919. background-color:rgba(255, 255, 255, 0);
  5920. border:none;
  5921. border-radius:0px;
  5922. -moz-box-shadow:none;
  5923. -webkit-box-shadow:none;
  5924. box-shadow:none;
  5925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:12px;
  5929. }
  5930. #u149983 {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:194px;
  5934. top:1246px;
  5935. width:49px;
  5936. height:17px;
  5937. display:flex;
  5938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5939. font-weight:400;
  5940. font-style:normal;
  5941. font-size:12px;
  5942. }
  5943. #u149983 .text {
  5944. position:absolute;
  5945. align-self:flex-start;
  5946. padding:0px 0px 0px 0px;
  5947. box-sizing:border-box;
  5948. width:100%;
  5949. }
  5950. #u149983_text {
  5951. border-width:0px;
  5952. white-space:nowrap;
  5953. text-transform:none;
  5954. }
  5955. #u149984 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:0px;
  5961. height:0px;
  5962. }
  5963. #u149985_img {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:0px;
  5967. top:0px;
  5968. width:24px;
  5969. height:24px;
  5970. }
  5971. #u149985 {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:83px;
  5975. top:1221px;
  5976. width:24px;
  5977. height:24px;
  5978. display:flex;
  5979. font-size:8px;
  5980. }
  5981. #u149985 .text {
  5982. position:absolute;
  5983. align-self:center;
  5984. padding:2px 2px 2px 2px;
  5985. box-sizing:border-box;
  5986. width:100%;
  5987. }
  5988. #u149985_text {
  5989. border-width:0px;
  5990. word-wrap:break-word;
  5991. text-transform:none;
  5992. }
  5993. #u149986_div {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:0px;
  5997. top:0px;
  5998. width:49px;
  5999. height:17px;
  6000. background:inherit;
  6001. background-color:rgba(255, 255, 255, 0);
  6002. border:none;
  6003. border-radius:0px;
  6004. -moz-box-shadow:none;
  6005. -webkit-box-shadow:none;
  6006. box-shadow:none;
  6007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. font-size:12px;
  6011. }
  6012. #u149986 {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:71px;
  6016. top:1246px;
  6017. width:49px;
  6018. height:17px;
  6019. display:flex;
  6020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:12px;
  6024. }
  6025. #u149986 .text {
  6026. position:absolute;
  6027. align-self:flex-start;
  6028. padding:0px 0px 0px 0px;
  6029. box-sizing:border-box;
  6030. width:100%;
  6031. }
  6032. #u149986_text {
  6033. border-width:0px;
  6034. white-space:nowrap;
  6035. text-transform:none;
  6036. }