styles.css 209 KB

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