styles.css 219 KB

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