styles.css 215 KB

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