styles.css 108 KB

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