styles.css 153 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1343px;
  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. #u54712 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u54713_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:375px;
  33. height:736px;
  34. background:inherit;
  35. background-color:rgba(51, 51, 51, 0.5333333333333333);
  36. border-top:0px;
  37. border-radius:25px;
  38. border-top-left-radius:0px;
  39. border-top-right-radius:0px;
  40. filter:drop-shadow(none);
  41. transition:none;
  42. }
  43. #u54713 {
  44. border-width:0px;
  45. position:absolute;
  46. left:473px;
  47. top:117px;
  48. width:375px;
  49. height:736px;
  50. display:flex;
  51. transition:none;
  52. transform-origin:50% 50%;
  53. }
  54. #u54713 .text {
  55. position:absolute;
  56. align-self:center;
  57. padding:2px 2px 2px 2px;
  58. box-sizing:border-box;
  59. width:100%;
  60. }
  61. #u54713_text {
  62. border-width:0px;
  63. word-wrap:break-word;
  64. text-transform:none;
  65. visibility:hidden;
  66. }
  67. #u54714_div {
  68. border-width:0px;
  69. position:absolute;
  70. left:0px;
  71. top:0px;
  72. width:375px;
  73. height:248px;
  74. background:inherit;
  75. background-color:rgba(242, 242, 242, 1);
  76. border-top:0px;
  77. border-radius:25px;
  78. border-top-left-radius:0px;
  79. border-top-right-radius:0px;
  80. filter:drop-shadow(none);
  81. transition:none;
  82. }
  83. #u54714 {
  84. border-width:0px;
  85. position:absolute;
  86. left:473px;
  87. top:605px;
  88. width:375px;
  89. height:248px;
  90. display:flex;
  91. transition:none;
  92. transform-origin:50% 50%;
  93. }
  94. #u54714 .text {
  95. position:absolute;
  96. align-self:center;
  97. padding:2px 2px 2px 2px;
  98. box-sizing:border-box;
  99. width:100%;
  100. }
  101. #u54714_text {
  102. border-width:0px;
  103. word-wrap:break-word;
  104. text-transform:none;
  105. visibility:hidden;
  106. }
  107. #u54715 {
  108. border-width:0px;
  109. position:absolute;
  110. left:0px;
  111. top:0px;
  112. width:0px;
  113. height:0px;
  114. }
  115. #u54716_div {
  116. border-width:0px;
  117. position:absolute;
  118. left:0px;
  119. top:0px;
  120. width:375px;
  121. height:60px;
  122. background:inherit;
  123. background-color:rgba(255, 255, 255, 1);
  124. box-sizing:border-box;
  125. border-width:1px;
  126. border-style:solid;
  127. border-color:rgba(242, 242, 242, 1);
  128. border-left:0px;
  129. border-right:0px;
  130. border-radius:0px;
  131. border-top-left-radius:0px;
  132. border-top-right-radius:0px;
  133. border-bottom-right-radius:0px;
  134. border-bottom-left-radius:0px;
  135. filter:drop-shadow(none);
  136. transition:none;
  137. }
  138. #u54716 {
  139. border-width:0px;
  140. position:absolute;
  141. left:473px;
  142. top:665px;
  143. width:375px;
  144. height:60px;
  145. display:flex;
  146. transition:none;
  147. transform-origin:50% 50%;
  148. }
  149. #u54716 .text {
  150. position:absolute;
  151. align-self:center;
  152. padding:2px 2px 2px 2px;
  153. box-sizing:border-box;
  154. width:100%;
  155. }
  156. #u54716_text {
  157. border-width:0px;
  158. word-wrap:break-word;
  159. text-transform:none;
  160. visibility:hidden;
  161. }
  162. #u54717_div {
  163. border-width:0px;
  164. position:absolute;
  165. left:0px;
  166. top:0px;
  167. width:29px;
  168. height:30px;
  169. background:inherit;
  170. background-color:rgba(255, 255, 255, 0);
  171. border-left:0px;
  172. border-top:0px;
  173. border-right:0px;
  174. border-radius:0px;
  175. border-bottom-right-radius:0px;
  176. border-bottom-left-radius:0px;
  177. filter:drop-shadow(none);
  178. transition:none;
  179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  180. font-weight:400;
  181. font-style:normal;
  182. font-size:14px;
  183. line-height:30px;
  184. }
  185. #u54717 {
  186. border-width:0px;
  187. position:absolute;
  188. left:646px;
  189. top:680px;
  190. width:29px;
  191. height:30px;
  192. display:flex;
  193. transition:none;
  194. transform-origin:50% 50%;
  195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  196. font-weight:400;
  197. font-style:normal;
  198. font-size:14px;
  199. line-height:30px;
  200. }
  201. #u54717 .text {
  202. position:absolute;
  203. align-self:flex-start;
  204. padding:0px 0px 0px 0px;
  205. box-sizing:border-box;
  206. width:100%;
  207. }
  208. #u54717_text {
  209. border-width:0px;
  210. white-space:nowrap;
  211. text-transform:none;
  212. }
  213. #u54718 {
  214. border-width:0px;
  215. position:absolute;
  216. left:0px;
  217. top:0px;
  218. width:0px;
  219. height:0px;
  220. }
  221. #u54719_div {
  222. border-width:0px;
  223. position:absolute;
  224. left:0px;
  225. top:0px;
  226. width:375px;
  227. height:60px;
  228. background:inherit;
  229. background-color:rgba(255, 255, 255, 1);
  230. box-sizing:border-box;
  231. border-width:1px;
  232. border-style:solid;
  233. border-color:rgba(242, 242, 242, 1);
  234. border-left:0px;
  235. border-right:0px;
  236. border-radius:0px;
  237. border-top-left-radius:0px;
  238. border-top-right-radius:0px;
  239. border-bottom-right-radius:0px;
  240. border-bottom-left-radius:0px;
  241. filter:drop-shadow(none);
  242. transition:none;
  243. }
  244. #u54719 {
  245. border-width:0px;
  246. position:absolute;
  247. left:473px;
  248. top:724px;
  249. width:375px;
  250. height:60px;
  251. display:flex;
  252. transition:none;
  253. transform-origin:50% 50%;
  254. }
  255. #u54719 .text {
  256. position:absolute;
  257. align-self:center;
  258. padding:2px 2px 2px 2px;
  259. box-sizing:border-box;
  260. width:100%;
  261. }
  262. #u54719_text {
  263. border-width:0px;
  264. word-wrap:break-word;
  265. text-transform:none;
  266. visibility:hidden;
  267. }
  268. #u54720_div {
  269. border-width:0px;
  270. position:absolute;
  271. left:0px;
  272. top:0px;
  273. width:29px;
  274. height:30px;
  275. background:inherit;
  276. background-color:rgba(255, 255, 255, 0);
  277. border-left:0px;
  278. border-top:0px;
  279. border-right:0px;
  280. border-radius:0px;
  281. border-bottom-right-radius:0px;
  282. border-bottom-left-radius:0px;
  283. filter:drop-shadow(none);
  284. transition:none;
  285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  286. font-weight:400;
  287. font-style:normal;
  288. font-size:14px;
  289. line-height:30px;
  290. }
  291. #u54720 {
  292. border-width:0px;
  293. position:absolute;
  294. left:646px;
  295. top:739px;
  296. width:29px;
  297. height:30px;
  298. display:flex;
  299. transition:none;
  300. transform-origin:50% 50%;
  301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  302. font-weight:400;
  303. font-style:normal;
  304. font-size:14px;
  305. line-height:30px;
  306. }
  307. #u54720 .text {
  308. position:absolute;
  309. align-self:flex-start;
  310. padding:0px 0px 0px 0px;
  311. box-sizing:border-box;
  312. width:100%;
  313. }
  314. #u54720_text {
  315. border-width:0px;
  316. white-space:nowrap;
  317. text-transform:none;
  318. }
  319. #u54721 {
  320. border-width:0px;
  321. position:absolute;
  322. left:0px;
  323. top:0px;
  324. width:0px;
  325. height:0px;
  326. }
  327. #u54722_div {
  328. border-width:0px;
  329. position:absolute;
  330. left:0px;
  331. top:0px;
  332. width:375px;
  333. height:60px;
  334. background:inherit;
  335. background-color:rgba(255, 255, 255, 1);
  336. box-sizing:border-box;
  337. border-width:1px;
  338. border-style:solid;
  339. border-color:rgba(242, 242, 242, 1);
  340. border-top:0px;
  341. border-radius:20px;
  342. border-top-left-radius:0px;
  343. border-top-right-radius:0px;
  344. filter:drop-shadow(none);
  345. transition:none;
  346. }
  347. #u54722 {
  348. border-width:0px;
  349. position:absolute;
  350. left:473px;
  351. top:793px;
  352. width:375px;
  353. height:60px;
  354. display:flex;
  355. transition:none;
  356. transform-origin:50% 50%;
  357. }
  358. #u54722 .text {
  359. position:absolute;
  360. align-self:center;
  361. padding:2px 2px 2px 2px;
  362. box-sizing:border-box;
  363. width:100%;
  364. }
  365. #u54722_text {
  366. border-width:0px;
  367. word-wrap:break-word;
  368. text-transform:none;
  369. visibility:hidden;
  370. }
  371. #u54723_div {
  372. border-width:0px;
  373. position:absolute;
  374. left:0px;
  375. top:0px;
  376. width:29px;
  377. height:30px;
  378. background:inherit;
  379. background-color:rgba(255, 255, 255, 0);
  380. border-left:0px;
  381. border-top:0px;
  382. border-right:0px;
  383. border-radius:0px;
  384. border-bottom-right-radius:0px;
  385. border-bottom-left-radius:0px;
  386. filter:drop-shadow(none);
  387. transition:none;
  388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  389. font-weight:400;
  390. font-style:normal;
  391. font-size:14px;
  392. line-height:30px;
  393. }
  394. #u54723 {
  395. border-width:0px;
  396. position:absolute;
  397. left:646px;
  398. top:808px;
  399. width:29px;
  400. height:30px;
  401. display:flex;
  402. transition:none;
  403. transform-origin:50% 50%;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. font-size:14px;
  408. line-height:30px;
  409. }
  410. #u54723 .text {
  411. position:absolute;
  412. align-self:flex-start;
  413. padding:0px 0px 0px 0px;
  414. box-sizing:border-box;
  415. width:100%;
  416. }
  417. #u54723_text {
  418. border-width:0px;
  419. white-space:nowrap;
  420. text-transform:none;
  421. }
  422. #u54724 {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:0px;
  428. height:0px;
  429. }
  430. #u54725_div {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:375px;
  436. height:60px;
  437. background:inherit;
  438. background-color:rgba(255, 255, 255, 1);
  439. box-sizing:border-box;
  440. border-width:1px;
  441. border-style:solid;
  442. border-color:rgba(242, 242, 242, 1);
  443. border-left:0px;
  444. border-right:0px;
  445. border-radius:0px;
  446. border-top-left-radius:0px;
  447. border-top-right-radius:0px;
  448. border-bottom-right-radius:0px;
  449. border-bottom-left-radius:0px;
  450. filter:drop-shadow(none);
  451. transition:none;
  452. }
  453. #u54725 {
  454. border-width:0px;
  455. position:absolute;
  456. left:473px;
  457. top:605px;
  458. width:375px;
  459. height:60px;
  460. display:flex;
  461. transition:none;
  462. transform-origin:50% 50%;
  463. }
  464. #u54725 .text {
  465. position:absolute;
  466. align-self:center;
  467. padding:2px 2px 2px 2px;
  468. box-sizing:border-box;
  469. width:100%;
  470. }
  471. #u54725_text {
  472. border-width:0px;
  473. word-wrap:break-word;
  474. text-transform:none;
  475. visibility:hidden;
  476. }
  477. #u54726_div {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:29px;
  483. height:30px;
  484. background:inherit;
  485. background-color:rgba(255, 255, 255, 0);
  486. border-left:0px;
  487. border-top:0px;
  488. border-right:0px;
  489. border-radius:0px;
  490. border-bottom-right-radius:0px;
  491. border-bottom-left-radius:0px;
  492. filter:drop-shadow(none);
  493. transition:none;
  494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  495. font-weight:400;
  496. font-style:normal;
  497. font-size:14px;
  498. line-height:30px;
  499. }
  500. #u54726 {
  501. border-width:0px;
  502. position:absolute;
  503. left:646px;
  504. top:620px;
  505. width:29px;
  506. height:30px;
  507. display:flex;
  508. transition:none;
  509. transform-origin:50% 50%;
  510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  511. font-weight:400;
  512. font-style:normal;
  513. font-size:14px;
  514. line-height:30px;
  515. }
  516. #u54726 .text {
  517. position:absolute;
  518. align-self:flex-start;
  519. padding:0px 0px 0px 0px;
  520. box-sizing:border-box;
  521. width:100%;
  522. }
  523. #u54726_text {
  524. border-width:0px;
  525. white-space:nowrap;
  526. text-transform:none;
  527. }
  528. #u54727 {
  529. border-width:0px;
  530. position:absolute;
  531. left:0px;
  532. top:0px;
  533. width:0px;
  534. height:0px;
  535. }
  536. #u54728_div {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:374px;
  542. height:620px;
  543. background:inherit;
  544. background-color:rgba(255, 255, 255, 1);
  545. border-radius:0px;
  546. filter:drop-shadow(none);
  547. transition:none;
  548. }
  549. #u54728 {
  550. border-width:0px;
  551. position:absolute;
  552. left:-436px;
  553. top:164px;
  554. width:374px;
  555. height:620px;
  556. display:flex;
  557. transition:none;
  558. transform-origin:50% 50%;
  559. }
  560. #u54728 .text {
  561. position:absolute;
  562. align-self:center;
  563. padding:2px 2px 2px 2px;
  564. box-sizing:border-box;
  565. width:100%;
  566. }
  567. #u54728_text {
  568. border-width:0px;
  569. word-wrap:break-word;
  570. text-transform:none;
  571. visibility:hidden;
  572. }
  573. #u54729_div {
  574. border-width:0px;
  575. position:absolute;
  576. left:0px;
  577. top:0px;
  578. width:46px;
  579. height:30px;
  580. background:inherit;
  581. background-color:rgba(255, 255, 255, 0);
  582. border-left:0px;
  583. border-top:0px;
  584. border-right:0px;
  585. border-radius:0px;
  586. border-bottom-right-radius:0px;
  587. border-bottom-left-radius:0px;
  588. filter:drop-shadow(none);
  589. transition:none;
  590. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  591. font-weight:500;
  592. font-style:normal;
  593. font-size:14px;
  594. line-height:30px;
  595. }
  596. #u54729 {
  597. border-width:0px;
  598. position:absolute;
  599. left:-344px;
  600. top:209px;
  601. width:46px;
  602. height:30px;
  603. display:flex;
  604. transition:none;
  605. transform-origin:50% 50%;
  606. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  607. font-weight:500;
  608. font-style:normal;
  609. font-size:14px;
  610. line-height:30px;
  611. }
  612. #u54729 .text {
  613. position:absolute;
  614. align-self:flex-start;
  615. padding:0px 0px 0px 0px;
  616. box-sizing:border-box;
  617. width:100%;
  618. }
  619. #u54729_text {
  620. border-width:0px;
  621. white-space:nowrap;
  622. text-transform:none;
  623. }
  624. #u54730_div {
  625. border-width:0px;
  626. position:absolute;
  627. left:0px;
  628. top:0px;
  629. width:71px;
  630. height:30px;
  631. background:inherit;
  632. background-color:rgba(255, 255, 255, 0);
  633. border-left:0px;
  634. border-top:0px;
  635. border-right:0px;
  636. border-radius:0px;
  637. border-bottom-right-radius:0px;
  638. border-bottom-left-radius:0px;
  639. filter:drop-shadow(none);
  640. transition:none;
  641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  642. font-weight:400;
  643. font-style:normal;
  644. font-size:14px;
  645. line-height:30px;
  646. }
  647. #u54730 {
  648. border-width:0px;
  649. position:absolute;
  650. left:-415px;
  651. top:209px;
  652. width:71px;
  653. height:30px;
  654. display:flex;
  655. transition:none;
  656. transform-origin:50% 50%;
  657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  658. font-weight:400;
  659. font-style:normal;
  660. font-size:14px;
  661. line-height:30px;
  662. }
  663. #u54730 .text {
  664. position:absolute;
  665. align-self:flex-start;
  666. padding:0px 0px 0px 0px;
  667. box-sizing:border-box;
  668. width:100%;
  669. }
  670. #u54730_text {
  671. border-width:0px;
  672. white-space:nowrap;
  673. text-transform:none;
  674. }
  675. #u54731_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:113px;
  681. height:30px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-left:0px;
  685. border-top:0px;
  686. border-right:0px;
  687. border-radius:0px;
  688. border-bottom-right-radius:0px;
  689. border-bottom-left-radius:0px;
  690. filter:drop-shadow(none);
  691. transition:none;
  692. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  693. font-weight:500;
  694. font-style:normal;
  695. font-size:14px;
  696. line-height:30px;
  697. }
  698. #u54731 {
  699. border-width:0px;
  700. position:absolute;
  701. left:-344px;
  702. top:179px;
  703. width:113px;
  704. height:30px;
  705. display:flex;
  706. transition:none;
  707. transform-origin:50% 50%;
  708. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  709. font-weight:500;
  710. font-style:normal;
  711. font-size:14px;
  712. line-height:30px;
  713. }
  714. #u54731 .text {
  715. position:absolute;
  716. align-self:flex-start;
  717. padding:0px 0px 0px 0px;
  718. box-sizing:border-box;
  719. width:100%;
  720. }
  721. #u54731_text {
  722. border-width:0px;
  723. white-space:nowrap;
  724. text-transform:none;
  725. }
  726. #u54732_div {
  727. border-width:0px;
  728. position:absolute;
  729. left:0px;
  730. top:0px;
  731. width:71px;
  732. height:30px;
  733. background:inherit;
  734. background-color:rgba(255, 255, 255, 0);
  735. border-left:0px;
  736. border-top:0px;
  737. border-right:0px;
  738. border-radius:0px;
  739. border-bottom-right-radius:0px;
  740. border-bottom-left-radius:0px;
  741. filter:drop-shadow(none);
  742. transition:none;
  743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  744. font-weight:400;
  745. font-style:normal;
  746. font-size:14px;
  747. line-height:30px;
  748. }
  749. #u54732 {
  750. border-width:0px;
  751. position:absolute;
  752. left:-415px;
  753. top:179px;
  754. width:71px;
  755. height:30px;
  756. display:flex;
  757. transition:none;
  758. transform-origin:50% 50%;
  759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  760. font-weight:400;
  761. font-style:normal;
  762. font-size:14px;
  763. line-height:30px;
  764. }
  765. #u54732 .text {
  766. position:absolute;
  767. align-self:flex-start;
  768. padding:0px 0px 0px 0px;
  769. box-sizing:border-box;
  770. width:100%;
  771. }
  772. #u54732_text {
  773. border-width:0px;
  774. white-space:nowrap;
  775. text-transform:none;
  776. }
  777. #u54733 {
  778. border-width:0px;
  779. position:absolute;
  780. left:-245px;
  781. top:549px;
  782. width:140px;
  783. height:90px;
  784. display:flex;
  785. transition:none;
  786. }
  787. #u54733 .text {
  788. position:absolute;
  789. align-self:center;
  790. padding:2px 2px 2px 2px;
  791. box-sizing:border-box;
  792. width:100%;
  793. }
  794. #u54733_img {
  795. border-width:0px;
  796. position:absolute;
  797. left:0px;
  798. top:0px;
  799. width:140px;
  800. height:90px;
  801. }
  802. #u54733_text {
  803. border-width:0px;
  804. word-wrap:break-word;
  805. text-transform:none;
  806. visibility:hidden;
  807. }
  808. #u54734_div {
  809. border-width:0px;
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:57px;
  814. height:30px;
  815. background:inherit;
  816. background-color:rgba(255, 255, 255, 0);
  817. border-left:0px;
  818. border-top:0px;
  819. border-right:0px;
  820. border-radius:0px;
  821. border-bottom-right-radius:0px;
  822. border-bottom-left-radius:0px;
  823. filter:drop-shadow(none);
  824. transition:none;
  825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  826. font-weight:400;
  827. font-style:normal;
  828. font-size:14px;
  829. line-height:30px;
  830. }
  831. #u54734 {
  832. border-width:0px;
  833. position:absolute;
  834. left:-415px;
  835. top:519px;
  836. width:57px;
  837. height:30px;
  838. display:flex;
  839. transition:none;
  840. transform-origin:50% 50%;
  841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  842. font-weight:400;
  843. font-style:normal;
  844. font-size:14px;
  845. line-height:30px;
  846. }
  847. #u54734 .text {
  848. position:absolute;
  849. align-self:flex-start;
  850. padding:0px 0px 0px 0px;
  851. box-sizing:border-box;
  852. width:100%;
  853. }
  854. #u54734_text {
  855. border-width:0px;
  856. white-space:nowrap;
  857. text-transform:none;
  858. }
  859. #u54735 {
  860. border-width:0px;
  861. position:absolute;
  862. left:-415px;
  863. top:549px;
  864. width:140px;
  865. height:90px;
  866. display:flex;
  867. transition:none;
  868. }
  869. #u54735 .text {
  870. position:absolute;
  871. align-self:center;
  872. padding:2px 2px 2px 2px;
  873. box-sizing:border-box;
  874. width:100%;
  875. }
  876. #u54735_img {
  877. border-width:0px;
  878. position:absolute;
  879. left:0px;
  880. top:0px;
  881. width:140px;
  882. height:90px;
  883. }
  884. #u54735_text {
  885. border-width:0px;
  886. word-wrap:break-word;
  887. text-transform:none;
  888. visibility:hidden;
  889. }
  890. #u54736 {
  891. border-width:0px;
  892. position:absolute;
  893. left:-300px;
  894. top:690px;
  895. width:104px;
  896. height:75px;
  897. display:flex;
  898. transition:none;
  899. }
  900. #u54736 .text {
  901. position:absolute;
  902. align-self:center;
  903. padding:2px 2px 2px 2px;
  904. box-sizing:border-box;
  905. width:100%;
  906. }
  907. #u54736_img {
  908. border-width:0px;
  909. position:absolute;
  910. left:0px;
  911. top:0px;
  912. width:104px;
  913. height:75px;
  914. }
  915. #u54736_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. visibility:hidden;
  920. }
  921. #u54737_div {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:57px;
  927. height:30px;
  928. background:inherit;
  929. background-color:rgba(255, 255, 255, 0);
  930. border-left:0px;
  931. border-top:0px;
  932. border-right:0px;
  933. border-radius:0px;
  934. border-bottom-right-radius:0px;
  935. border-bottom-left-radius:0px;
  936. filter:drop-shadow(none);
  937. transition:none;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:14px;
  942. line-height:30px;
  943. }
  944. #u54737 {
  945. border-width:0px;
  946. position:absolute;
  947. left:-415px;
  948. top:659px;
  949. width:57px;
  950. height:30px;
  951. display:flex;
  952. transition:none;
  953. transform-origin:50% 50%;
  954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  955. font-weight:400;
  956. font-style:normal;
  957. font-size:14px;
  958. line-height:30px;
  959. }
  960. #u54737 .text {
  961. position:absolute;
  962. align-self:flex-start;
  963. padding:0px 0px 0px 0px;
  964. box-sizing:border-box;
  965. width:100%;
  966. }
  967. #u54737_text {
  968. border-width:0px;
  969. white-space:nowrap;
  970. text-transform:none;
  971. }
  972. #u54738 {
  973. border-width:0px;
  974. position:absolute;
  975. left:-415px;
  976. top:689px;
  977. width:105px;
  978. height:76px;
  979. display:flex;
  980. transition:none;
  981. }
  982. #u54738 .text {
  983. position:absolute;
  984. align-self:center;
  985. padding:2px 2px 2px 2px;
  986. box-sizing:border-box;
  987. width:100%;
  988. }
  989. #u54738_img {
  990. border-width:0px;
  991. position:absolute;
  992. left:0px;
  993. top:0px;
  994. width:105px;
  995. height:76px;
  996. }
  997. #u54738_text {
  998. border-width:0px;
  999. word-wrap:break-word;
  1000. text-transform:none;
  1001. visibility:hidden;
  1002. }
  1003. #u54739 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:0px;
  1009. height:0px;
  1010. }
  1011. #u54740_div {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:348px;
  1017. height:190px;
  1018. background:inherit;
  1019. background-color:rgba(242, 242, 242, 1);
  1020. box-sizing:border-box;
  1021. border-width:1px;
  1022. border-style:solid;
  1023. border-color:rgba(242, 242, 242, 1);
  1024. border-radius:5px;
  1025. border-top-left-radius:0px;
  1026. border-top-right-radius:0px;
  1027. filter:drop-shadow(none);
  1028. transition:none;
  1029. }
  1030. #u54740 {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:-423px;
  1034. top:314px;
  1035. width:348px;
  1036. height:190px;
  1037. display:flex;
  1038. filter:blur(4px);
  1039. backdrop-filter:blur(4px);
  1040. transition:none;
  1041. transform-origin:50% 50%;
  1042. }
  1043. #u54740 .text {
  1044. position:absolute;
  1045. align-self:center;
  1046. padding:2px 2px 2px 2px;
  1047. box-sizing:border-box;
  1048. width:100%;
  1049. }
  1050. #u54740_text {
  1051. border-width:0px;
  1052. word-wrap:break-word;
  1053. text-transform:none;
  1054. visibility:hidden;
  1055. }
  1056. #u54741_div {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:57px;
  1062. height:30px;
  1063. background:inherit;
  1064. background-color:rgba(255, 255, 255, 0);
  1065. border-left:0px;
  1066. border-top:0px;
  1067. border-right:0px;
  1068. border-radius:0px;
  1069. border-bottom-right-radius:0px;
  1070. border-bottom-left-radius:0px;
  1071. filter:drop-shadow(none);
  1072. transition:none;
  1073. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1074. font-weight:500;
  1075. font-style:normal;
  1076. font-size:14px;
  1077. line-height:30px;
  1078. }
  1079. #u54741 {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:-409px;
  1083. top:324px;
  1084. width:57px;
  1085. height:30px;
  1086. display:flex;
  1087. transition:none;
  1088. transform-origin:50% 50%;
  1089. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1090. font-weight:500;
  1091. font-style:normal;
  1092. font-size:14px;
  1093. line-height:30px;
  1094. }
  1095. #u54741 .text {
  1096. position:absolute;
  1097. align-self:flex-start;
  1098. padding:0px 0px 0px 0px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u54741_text {
  1103. border-width:0px;
  1104. white-space:nowrap;
  1105. text-transform:none;
  1106. }
  1107. #u54742_div {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:29px;
  1113. height:30px;
  1114. background:inherit;
  1115. background-color:rgba(255, 255, 255, 0);
  1116. border-left:0px;
  1117. border-top:0px;
  1118. border-right:0px;
  1119. border-radius:0px;
  1120. border-bottom-right-radius:0px;
  1121. border-bottom-left-radius:0px;
  1122. filter:drop-shadow(none);
  1123. transition:none;
  1124. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1125. font-weight:500;
  1126. font-style:normal;
  1127. font-size:14px;
  1128. line-height:30px;
  1129. }
  1130. #u54742 {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:-198px;
  1134. top:364px;
  1135. width:29px;
  1136. height:30px;
  1137. display:flex;
  1138. transition:none;
  1139. transform-origin:50% 50%;
  1140. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1141. font-weight:500;
  1142. font-style:normal;
  1143. font-size:14px;
  1144. line-height:30px;
  1145. }
  1146. #u54742 .text {
  1147. position:absolute;
  1148. align-self:flex-start;
  1149. padding:0px 0px 0px 0px;
  1150. box-sizing:border-box;
  1151. width:100%;
  1152. }
  1153. #u54742_text {
  1154. border-width:0px;
  1155. white-space:nowrap;
  1156. text-transform:none;
  1157. }
  1158. #u54743_div {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:0px;
  1162. top:0px;
  1163. width:71px;
  1164. height:30px;
  1165. background:inherit;
  1166. background-color:rgba(255, 255, 255, 0);
  1167. border-left:0px;
  1168. border-top:0px;
  1169. border-right:0px;
  1170. border-radius:0px;
  1171. border-bottom-right-radius:0px;
  1172. border-bottom-left-radius:0px;
  1173. filter:drop-shadow(none);
  1174. transition:none;
  1175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1176. font-weight:400;
  1177. font-style:normal;
  1178. font-size:14px;
  1179. line-height:30px;
  1180. }
  1181. #u54743 {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:-269px;
  1185. top:364px;
  1186. width:71px;
  1187. height:30px;
  1188. display:flex;
  1189. transition:none;
  1190. transform-origin:50% 50%;
  1191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1192. font-weight:400;
  1193. font-style:normal;
  1194. font-size:14px;
  1195. line-height:30px;
  1196. }
  1197. #u54743 .text {
  1198. position:absolute;
  1199. align-self:flex-start;
  1200. padding:0px 0px 0px 0px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u54743_text {
  1205. border-width:0px;
  1206. white-space:nowrap;
  1207. text-transform:none;
  1208. }
  1209. #u54744_div {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:0px;
  1213. top:0px;
  1214. width:43px;
  1215. height:30px;
  1216. background:inherit;
  1217. background-color:rgba(255, 255, 255, 0);
  1218. border-left:0px;
  1219. border-top:0px;
  1220. border-right:0px;
  1221. border-radius:0px;
  1222. border-bottom-right-radius:0px;
  1223. border-bottom-left-radius:0px;
  1224. filter:drop-shadow(none);
  1225. transition:none;
  1226. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1227. font-weight:500;
  1228. font-style:normal;
  1229. font-size:14px;
  1230. line-height:30px;
  1231. }
  1232. #u54744 {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:-198px;
  1236. top:394px;
  1237. width:43px;
  1238. height:30px;
  1239. display:flex;
  1240. transition:none;
  1241. transform-origin:50% 50%;
  1242. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1243. font-weight:500;
  1244. font-style:normal;
  1245. font-size:14px;
  1246. line-height:30px;
  1247. }
  1248. #u54744 .text {
  1249. position:absolute;
  1250. align-self:flex-start;
  1251. padding:0px 0px 0px 0px;
  1252. box-sizing:border-box;
  1253. width:100%;
  1254. }
  1255. #u54744_text {
  1256. border-width:0px;
  1257. white-space:nowrap;
  1258. text-transform:none;
  1259. }
  1260. #u54745_div {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:0px;
  1264. top:0px;
  1265. width:71px;
  1266. height:30px;
  1267. background:inherit;
  1268. background-color:rgba(255, 255, 255, 0);
  1269. border-left:0px;
  1270. border-top:0px;
  1271. border-right:0px;
  1272. border-radius:0px;
  1273. border-bottom-right-radius:0px;
  1274. border-bottom-left-radius:0px;
  1275. filter:drop-shadow(none);
  1276. transition:none;
  1277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1278. font-weight:400;
  1279. font-style:normal;
  1280. font-size:14px;
  1281. line-height:30px;
  1282. }
  1283. #u54745 {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:-269px;
  1287. top:394px;
  1288. width:71px;
  1289. height:30px;
  1290. display:flex;
  1291. transition:none;
  1292. transform-origin:50% 50%;
  1293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1294. font-weight:400;
  1295. font-style:normal;
  1296. font-size:14px;
  1297. line-height:30px;
  1298. }
  1299. #u54745 .text {
  1300. position:absolute;
  1301. align-self:flex-start;
  1302. padding:0px 0px 0px 0px;
  1303. box-sizing:border-box;
  1304. width:100%;
  1305. }
  1306. #u54745_text {
  1307. border-width:0px;
  1308. white-space:nowrap;
  1309. text-transform:none;
  1310. }
  1311. #u54746_div {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:57px;
  1317. height:30px;
  1318. background:inherit;
  1319. background-color:rgba(255, 255, 255, 0);
  1320. border-left:0px;
  1321. border-top:0px;
  1322. border-right:0px;
  1323. border-radius:0px;
  1324. border-bottom-right-radius:0px;
  1325. border-bottom-left-radius:0px;
  1326. filter:drop-shadow(none);
  1327. transition:none;
  1328. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1329. font-weight:500;
  1330. font-style:normal;
  1331. font-size:14px;
  1332. line-height:30px;
  1333. }
  1334. #u54746 {
  1335. border-width:0px;
  1336. position:absolute;
  1337. left:-198px;
  1338. top:424px;
  1339. width:57px;
  1340. height:30px;
  1341. display:flex;
  1342. transition:none;
  1343. transform-origin:50% 50%;
  1344. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1345. font-weight:500;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. line-height:30px;
  1349. }
  1350. #u54746 .text {
  1351. position:absolute;
  1352. align-self:flex-start;
  1353. padding:0px 0px 0px 0px;
  1354. box-sizing:border-box;
  1355. width:100%;
  1356. }
  1357. #u54746_text {
  1358. border-width:0px;
  1359. white-space:nowrap;
  1360. text-transform:none;
  1361. }
  1362. #u54747_div {
  1363. border-width:0px;
  1364. position:absolute;
  1365. left:0px;
  1366. top:0px;
  1367. width:71px;
  1368. height:30px;
  1369. background:inherit;
  1370. background-color:rgba(255, 255, 255, 0);
  1371. border-left:0px;
  1372. border-top:0px;
  1373. border-right:0px;
  1374. border-radius:0px;
  1375. border-bottom-right-radius:0px;
  1376. border-bottom-left-radius:0px;
  1377. filter:drop-shadow(none);
  1378. transition:none;
  1379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1380. font-weight:400;
  1381. font-style:normal;
  1382. font-size:14px;
  1383. line-height:30px;
  1384. }
  1385. #u54747 {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:-269px;
  1389. top:424px;
  1390. width:71px;
  1391. height:30px;
  1392. display:flex;
  1393. transition:none;
  1394. transform-origin:50% 50%;
  1395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1396. font-weight:400;
  1397. font-style:normal;
  1398. font-size:14px;
  1399. line-height:30px;
  1400. }
  1401. #u54747 .text {
  1402. position:absolute;
  1403. align-self:flex-start;
  1404. padding:0px 0px 0px 0px;
  1405. box-sizing:border-box;
  1406. width:100%;
  1407. }
  1408. #u54747_text {
  1409. border-width:0px;
  1410. white-space:nowrap;
  1411. text-transform:none;
  1412. }
  1413. #u54748_div {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:82px;
  1419. height:30px;
  1420. background:inherit;
  1421. background-color:rgba(255, 255, 255, 0);
  1422. border-left:0px;
  1423. border-top:0px;
  1424. border-right:0px;
  1425. border-radius:0px;
  1426. border-bottom-right-radius:0px;
  1427. border-bottom-left-radius:0px;
  1428. filter:drop-shadow(none);
  1429. transition:none;
  1430. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1431. font-weight:500;
  1432. font-style:normal;
  1433. font-size:14px;
  1434. line-height:30px;
  1435. }
  1436. #u54748 {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:-198px;
  1440. top:454px;
  1441. width:82px;
  1442. height:30px;
  1443. display:flex;
  1444. transition:none;
  1445. transform-origin:50% 50%;
  1446. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1447. font-weight:500;
  1448. font-style:normal;
  1449. font-size:14px;
  1450. line-height:30px;
  1451. }
  1452. #u54748 .text {
  1453. position:absolute;
  1454. align-self:flex-start;
  1455. padding:0px 0px 0px 0px;
  1456. box-sizing:border-box;
  1457. width:100%;
  1458. }
  1459. #u54748_text {
  1460. border-width:0px;
  1461. white-space:nowrap;
  1462. text-transform:none;
  1463. }
  1464. #u54749_div {
  1465. border-width:0px;
  1466. position:absolute;
  1467. left:0px;
  1468. top:0px;
  1469. width:71px;
  1470. height:30px;
  1471. background:inherit;
  1472. background-color:rgba(255, 255, 255, 0);
  1473. border-left:0px;
  1474. border-top:0px;
  1475. border-right:0px;
  1476. border-radius:0px;
  1477. border-bottom-right-radius:0px;
  1478. border-bottom-left-radius:0px;
  1479. filter:drop-shadow(none);
  1480. transition:none;
  1481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1482. font-weight:400;
  1483. font-style:normal;
  1484. font-size:14px;
  1485. line-height:30px;
  1486. }
  1487. #u54749 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:-269px;
  1491. top:454px;
  1492. width:71px;
  1493. height:30px;
  1494. display:flex;
  1495. transition:none;
  1496. transform-origin:50% 50%;
  1497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1498. font-weight:400;
  1499. font-style:normal;
  1500. font-size:14px;
  1501. line-height:30px;
  1502. }
  1503. #u54749 .text {
  1504. position:absolute;
  1505. align-self:flex-start;
  1506. padding:0px 0px 0px 0px;
  1507. box-sizing:border-box;
  1508. width:100%;
  1509. }
  1510. #u54749_text {
  1511. border-width:0px;
  1512. white-space:nowrap;
  1513. text-transform:none;
  1514. }
  1515. #u54750 {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:-409px;
  1519. top:364px;
  1520. width:114px;
  1521. height:120px;
  1522. display:flex;
  1523. transition:none;
  1524. }
  1525. #u54750 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u54750_img {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:114px;
  1538. height:120px;
  1539. }
  1540. #u54750_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u54751_div {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:80px;
  1552. height:30px;
  1553. background:inherit;
  1554. background-color:rgba(255, 255, 255, 0);
  1555. border-left:0px;
  1556. border-top:0px;
  1557. border-right:0px;
  1558. border-radius:0px;
  1559. border-bottom-right-radius:0px;
  1560. border-bottom-left-radius:0px;
  1561. filter:drop-shadow(none);
  1562. transition:none;
  1563. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1564. font-weight:500;
  1565. font-style:normal;
  1566. font-size:14px;
  1567. line-height:30px;
  1568. }
  1569. #u54751 {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:-344px;
  1573. top:239px;
  1574. width:80px;
  1575. height:30px;
  1576. display:flex;
  1577. transition:none;
  1578. transform-origin:50% 50%;
  1579. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1580. font-weight:500;
  1581. font-style:normal;
  1582. font-size:14px;
  1583. line-height:30px;
  1584. }
  1585. #u54751 .text {
  1586. position:absolute;
  1587. align-self:flex-start;
  1588. padding:0px 0px 0px 0px;
  1589. box-sizing:border-box;
  1590. width:100%;
  1591. }
  1592. #u54751_text {
  1593. border-width:0px;
  1594. white-space:nowrap;
  1595. text-transform:none;
  1596. }
  1597. #u54752_div {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:0px;
  1601. top:0px;
  1602. width:71px;
  1603. height:30px;
  1604. background:inherit;
  1605. background-color:rgba(255, 255, 255, 0);
  1606. border-left:0px;
  1607. border-top:0px;
  1608. border-right:0px;
  1609. border-radius:0px;
  1610. border-bottom-right-radius:0px;
  1611. border-bottom-left-radius:0px;
  1612. filter:drop-shadow(none);
  1613. transition:none;
  1614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1615. font-weight:400;
  1616. font-style:normal;
  1617. font-size:14px;
  1618. line-height:30px;
  1619. }
  1620. #u54752 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:-415px;
  1624. top:239px;
  1625. width:71px;
  1626. height:30px;
  1627. display:flex;
  1628. transition:none;
  1629. transform-origin:50% 50%;
  1630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1631. font-weight:400;
  1632. font-style:normal;
  1633. font-size:14px;
  1634. line-height:30px;
  1635. }
  1636. #u54752 .text {
  1637. position:absolute;
  1638. align-self:flex-start;
  1639. padding:0px 0px 0px 0px;
  1640. box-sizing:border-box;
  1641. width:100%;
  1642. }
  1643. #u54752_text {
  1644. border-width:0px;
  1645. white-space:nowrap;
  1646. text-transform:none;
  1647. }
  1648. #u54753_div {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:0px;
  1652. top:0px;
  1653. width:143px;
  1654. height:30px;
  1655. background:inherit;
  1656. background-color:rgba(255, 255, 255, 0);
  1657. border-left:0px;
  1658. border-top:0px;
  1659. border-right:0px;
  1660. border-radius:0px;
  1661. border-bottom-right-radius:0px;
  1662. border-bottom-left-radius:0px;
  1663. filter:drop-shadow(none);
  1664. transition:none;
  1665. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1666. font-weight:500;
  1667. font-style:normal;
  1668. font-size:14px;
  1669. line-height:30px;
  1670. }
  1671. #u54753 {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:-344px;
  1675. top:269px;
  1676. width:143px;
  1677. height:30px;
  1678. display:flex;
  1679. transition:none;
  1680. transform-origin:50% 50%;
  1681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1682. font-weight:500;
  1683. font-style:normal;
  1684. font-size:14px;
  1685. line-height:30px;
  1686. }
  1687. #u54753 .text {
  1688. position:absolute;
  1689. align-self:flex-start;
  1690. padding:0px 0px 0px 0px;
  1691. box-sizing:border-box;
  1692. width:100%;
  1693. }
  1694. #u54753_text {
  1695. border-width:0px;
  1696. white-space:nowrap;
  1697. text-transform:none;
  1698. }
  1699. #u54754_div {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:71px;
  1705. height:30px;
  1706. background:inherit;
  1707. background-color:rgba(255, 255, 255, 0);
  1708. border-left:0px;
  1709. border-top:0px;
  1710. border-right:0px;
  1711. border-radius:0px;
  1712. border-bottom-right-radius:0px;
  1713. border-bottom-left-radius:0px;
  1714. filter:drop-shadow(none);
  1715. transition:none;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:14px;
  1720. line-height:30px;
  1721. }
  1722. #u54754 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:-415px;
  1726. top:269px;
  1727. width:71px;
  1728. height:30px;
  1729. display:flex;
  1730. transition:none;
  1731. transform-origin:50% 50%;
  1732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1733. font-weight:400;
  1734. font-style:normal;
  1735. font-size:14px;
  1736. line-height:30px;
  1737. }
  1738. #u54754 .text {
  1739. position:absolute;
  1740. align-self:flex-start;
  1741. padding:0px 0px 0px 0px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u54754_text {
  1746. border-width:0px;
  1747. white-space:nowrap;
  1748. text-transform:none;
  1749. }
  1750. #u54755 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:0px;
  1756. height:0px;
  1757. }
  1758. #u54756 {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:433px;
  1764. height:865px;
  1765. }
  1766. #u54757 {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:0px;
  1770. top:0px;
  1771. width:433px;
  1772. height:865px;
  1773. display:flex;
  1774. transition:none;
  1775. }
  1776. #u54757 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u54757_img {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:0px;
  1787. top:0px;
  1788. width:433px;
  1789. height:865px;
  1790. }
  1791. #u54757_text {
  1792. border-width:0px;
  1793. word-wrap:break-word;
  1794. text-transform:none;
  1795. visibility:hidden;
  1796. }
  1797. #u54758_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:375px;
  1803. height:40px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 1);
  1806. box-sizing:border-box;
  1807. border-width:1px;
  1808. border-style:solid;
  1809. border-color:rgba(215, 215, 215, 1);
  1810. border-left:0px;
  1811. border-top:0px;
  1812. border-right:0px;
  1813. border-radius:0px;
  1814. border-bottom-right-radius:0px;
  1815. border-bottom-left-radius:0px;
  1816. filter:drop-shadow(none);
  1817. transition:none;
  1818. }
  1819. #u54758 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:29px;
  1823. top:67px;
  1824. width:375px;
  1825. height:40px;
  1826. display:flex;
  1827. transition:none;
  1828. transform-origin:50% 50%;
  1829. }
  1830. #u54758 .text {
  1831. position:absolute;
  1832. align-self:center;
  1833. padding:2px 2px 2px 2px;
  1834. box-sizing:border-box;
  1835. width:100%;
  1836. }
  1837. #u54758_text {
  1838. border-width:0px;
  1839. word-wrap:break-word;
  1840. text-transform:none;
  1841. visibility:hidden;
  1842. }
  1843. #u54759 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:0px;
  1849. height:0px;
  1850. }
  1851. #u54760_div {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:0px;
  1855. top:0px;
  1856. width:88px;
  1857. height:32px;
  1858. background:inherit;
  1859. background-color:rgba(255, 255, 255, 1);
  1860. box-sizing:border-box;
  1861. border-width:1px;
  1862. border-style:solid;
  1863. border-color:rgba(242, 242, 242, 1);
  1864. border-radius:33px;
  1865. filter:drop-shadow(none);
  1866. transition:none;
  1867. }
  1868. #u54760 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:309px;
  1872. top:71px;
  1873. width:88px;
  1874. height:32px;
  1875. display:flex;
  1876. transition:none;
  1877. transform-origin:50% 50%;
  1878. }
  1879. #u54760 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 2px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u54760_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. visibility:hidden;
  1891. }
  1892. #u54761 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:0px;
  1898. height:0px;
  1899. }
  1900. #u54762 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:372px;
  1904. top:78px;
  1905. width:18px;
  1906. height:18px;
  1907. display:flex;
  1908. transition:none;
  1909. }
  1910. #u54762 .text {
  1911. position:absolute;
  1912. align-self:center;
  1913. padding:2px 2px 2px 2px;
  1914. box-sizing:border-box;
  1915. width:100%;
  1916. }
  1917. #u54762_img {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:18px;
  1923. height:18px;
  1924. }
  1925. #u54762_text {
  1926. border-width:0px;
  1927. word-wrap:break-word;
  1928. text-transform:none;
  1929. visibility:hidden;
  1930. }
  1931. #u54763 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:378px;
  1935. top:84px;
  1936. width:6px;
  1937. height:6px;
  1938. display:flex;
  1939. transition:none;
  1940. }
  1941. #u54763 .text {
  1942. position:absolute;
  1943. align-self:center;
  1944. padding:2px 2px 2px 2px;
  1945. box-sizing:border-box;
  1946. width:100%;
  1947. }
  1948. #u54763_img {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:6px;
  1954. height:6px;
  1955. }
  1956. #u54763_text {
  1957. border-width:0px;
  1958. word-wrap:break-word;
  1959. text-transform:none;
  1960. visibility:hidden;
  1961. }
  1962. #u54764 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:0px;
  1968. height:0px;
  1969. }
  1970. #u54765 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:323px;
  1974. top:85px;
  1975. width:5px;
  1976. height:5px;
  1977. display:flex;
  1978. transition:none;
  1979. }
  1980. #u54765 .text {
  1981. position:absolute;
  1982. align-self:center;
  1983. padding:2px 2px 2px 2px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u54765_img {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:5px;
  1993. height:5px;
  1994. }
  1995. #u54765_text {
  1996. border-width:0px;
  1997. word-wrap:break-word;
  1998. text-transform:none;
  1999. visibility:hidden;
  2000. }
  2001. #u54766 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:339px;
  2005. top:85px;
  2006. width:5px;
  2007. height:5px;
  2008. display:flex;
  2009. transition:none;
  2010. }
  2011. #u54766 .text {
  2012. position:absolute;
  2013. align-self:center;
  2014. padding:2px 2px 2px 2px;
  2015. box-sizing:border-box;
  2016. width:100%;
  2017. }
  2018. #u54766_img {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:5px;
  2024. height:5px;
  2025. }
  2026. #u54766_text {
  2027. border-width:0px;
  2028. word-wrap:break-word;
  2029. text-transform:none;
  2030. visibility:hidden;
  2031. }
  2032. #u54767 {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:330px;
  2036. top:84px;
  2037. width:7px;
  2038. height:7px;
  2039. display:flex;
  2040. transition:none;
  2041. }
  2042. #u54767 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 2px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u54767_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:7px;
  2055. height:7px;
  2056. }
  2057. #u54767_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. visibility:hidden;
  2062. }
  2063. #u54768 {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:347px;
  2067. top:87px;
  2068. width:18px;
  2069. height:1px;
  2070. display:flex;
  2071. -webkit-transform:rotate(90deg);
  2072. -moz-transform:rotate(90deg);
  2073. -ms-transform:rotate(90deg);
  2074. transform:rotate(90deg);
  2075. transition:none;
  2076. }
  2077. #u54768 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:2px 2px 2px 2px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u54768_img {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:19px;
  2090. height:2px;
  2091. }
  2092. #u54768_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. visibility:hidden;
  2097. }
  2098. #u54769 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:29px;
  2102. top:24px;
  2103. width:375px;
  2104. height:44px;
  2105. display:flex;
  2106. transition:none;
  2107. }
  2108. #u54769 .text {
  2109. position:absolute;
  2110. align-self:center;
  2111. padding:2px 2px 2px 2px;
  2112. box-sizing:border-box;
  2113. width:100%;
  2114. }
  2115. #u54769_img {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:375px;
  2121. height:44px;
  2122. }
  2123. #u54769_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. visibility:hidden;
  2128. }
  2129. #u54770_div {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:375px;
  2135. height:50px;
  2136. background:inherit;
  2137. background-color:rgba(255, 255, 255, 1);
  2138. box-sizing:border-box;
  2139. border-width:1px;
  2140. border-style:solid;
  2141. border-color:rgba(242, 242, 242, 1);
  2142. border-radius:26px;
  2143. border-top-left-radius:0px;
  2144. border-top-right-radius:0px;
  2145. filter:drop-shadow(none);
  2146. transition:none;
  2147. }
  2148. #u54770 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:29px;
  2152. top:788px;
  2153. width:375px;
  2154. height:50px;
  2155. display:flex;
  2156. transition:none;
  2157. transform-origin:50% 50%;
  2158. }
  2159. #u54770 .text {
  2160. position:absolute;
  2161. align-self:center;
  2162. padding:2px 2px 2px 2px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u54770_text {
  2167. border-width:0px;
  2168. word-wrap:break-word;
  2169. text-transform:none;
  2170. visibility:hidden;
  2171. }
  2172. #u54771 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:0px;
  2178. height:0px;
  2179. }
  2180. #u54772 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:69px;
  2184. top:792px;
  2185. width:24px;
  2186. height:24px;
  2187. display:flex;
  2188. transition:none;
  2189. font-size:8px;
  2190. }
  2191. #u54772 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:2px 2px 2px 2px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u54772_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:24px;
  2204. height:24px;
  2205. }
  2206. #u54772_text {
  2207. border-width:0px;
  2208. word-wrap:break-word;
  2209. text-transform:none;
  2210. }
  2211. #u54773_div {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:25px;
  2217. height:17px;
  2218. background:inherit;
  2219. background-color:rgba(255, 255, 255, 0);
  2220. border-radius:0px;
  2221. filter:drop-shadow(none);
  2222. transition:none;
  2223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:12px;
  2227. }
  2228. #u54773 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:69px;
  2232. top:817px;
  2233. width:25px;
  2234. height:17px;
  2235. display:flex;
  2236. transition:none;
  2237. transform-origin:50% 50%;
  2238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2239. font-weight:400;
  2240. font-style:normal;
  2241. font-size:12px;
  2242. }
  2243. #u54773 .text {
  2244. position:absolute;
  2245. align-self:flex-start;
  2246. padding:0px 0px 0px 0px;
  2247. box-sizing:border-box;
  2248. width:100%;
  2249. }
  2250. #u54773_text {
  2251. border-width:0px;
  2252. white-space:nowrap;
  2253. text-transform:none;
  2254. }
  2255. #u54774 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:0px;
  2261. height:0px;
  2262. }
  2263. #u54775 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:339px;
  2267. top:794px;
  2268. width:24px;
  2269. height:24px;
  2270. display:flex;
  2271. transition:none;
  2272. font-size:8px;
  2273. }
  2274. #u54775 .text {
  2275. position:absolute;
  2276. align-self:center;
  2277. padding:2px 2px 2px 2px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u54775_img {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:24px;
  2287. height:24px;
  2288. }
  2289. #u54775_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. }
  2294. #u54776_div {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:25px;
  2300. height:17px;
  2301. background:inherit;
  2302. background-color:rgba(255, 255, 255, 0);
  2303. border-radius:0px;
  2304. filter:drop-shadow(none);
  2305. transition:none;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:12px;
  2310. }
  2311. #u54776 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:339px;
  2315. top:819px;
  2316. width:25px;
  2317. height:17px;
  2318. display:flex;
  2319. transition:none;
  2320. transform-origin:50% 50%;
  2321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2322. font-weight:400;
  2323. font-style:normal;
  2324. font-size:12px;
  2325. }
  2326. #u54776 .text {
  2327. position:absolute;
  2328. align-self:flex-start;
  2329. padding:0px 0px 0px 0px;
  2330. box-sizing:border-box;
  2331. width:100%;
  2332. }
  2333. #u54776_text {
  2334. border-width:0px;
  2335. white-space:nowrap;
  2336. text-transform:none;
  2337. }
  2338. #u54777_div {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:375px;
  2344. height:681px;
  2345. background:inherit;
  2346. background-color:rgba(242, 242, 242, 0.4627450980392157);
  2347. border-radius:0px;
  2348. filter:drop-shadow(none);
  2349. transition:none;
  2350. }
  2351. #u54777 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:29px;
  2355. top:107px;
  2356. width:375px;
  2357. height:681px;
  2358. display:flex;
  2359. transition:none;
  2360. transform-origin:50% 50%;
  2361. }
  2362. #u54777 .text {
  2363. position:absolute;
  2364. align-self:center;
  2365. padding:2px 2px 2px 2px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u54777_text {
  2370. border-width:0px;
  2371. word-wrap:break-word;
  2372. text-transform:none;
  2373. visibility:hidden;
  2374. }
  2375. #u54778 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:0px;
  2381. height:0px;
  2382. }
  2383. #u54779 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:251px;
  2387. top:792px;
  2388. width:24px;
  2389. height:24px;
  2390. display:flex;
  2391. transition:none;
  2392. font-size:8px;
  2393. }
  2394. #u54779 .text {
  2395. position:absolute;
  2396. align-self:center;
  2397. padding:2px 2px 2px 2px;
  2398. box-sizing:border-box;
  2399. width:100%;
  2400. }
  2401. #u54779_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:24px;
  2407. height:24px;
  2408. }
  2409. #u54779_text {
  2410. border-width:0px;
  2411. word-wrap:break-word;
  2412. text-transform:none;
  2413. }
  2414. #u54780_div {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:37px;
  2420. height:17px;
  2421. background:inherit;
  2422. background-color:rgba(255, 255, 255, 0);
  2423. border-radius:0px;
  2424. filter:drop-shadow(none);
  2425. transition:none;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:12px;
  2430. }
  2431. #u54780 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:245px;
  2435. top:817px;
  2436. width:37px;
  2437. height:17px;
  2438. display:flex;
  2439. transition:none;
  2440. transform-origin:50% 50%;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:12px;
  2445. }
  2446. #u54780 .text {
  2447. position:absolute;
  2448. align-self:flex-start;
  2449. padding:0px 0px 0px 0px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u54780_text {
  2454. border-width:0px;
  2455. white-space:nowrap;
  2456. text-transform:none;
  2457. }
  2458. #u54781 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:0px;
  2464. height:0px;
  2465. }
  2466. #u54782 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:157px;
  2470. top:792px;
  2471. width:24px;
  2472. height:24px;
  2473. display:flex;
  2474. transition:none;
  2475. font-size:8px;
  2476. }
  2477. #u54782 .text {
  2478. position:absolute;
  2479. align-self:center;
  2480. padding:2px 2px 2px 2px;
  2481. box-sizing:border-box;
  2482. width:100%;
  2483. }
  2484. #u54782_img {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:0px;
  2488. top:0px;
  2489. width:24px;
  2490. height:24px;
  2491. }
  2492. #u54782_text {
  2493. border-width:0px;
  2494. word-wrap:break-word;
  2495. text-transform:none;
  2496. }
  2497. #u54783_div {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:37px;
  2503. height:17px;
  2504. background:inherit;
  2505. background-color:rgba(255, 255, 255, 0);
  2506. border-radius:0px;
  2507. filter:drop-shadow(none);
  2508. transition:none;
  2509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. font-size:12px;
  2513. }
  2514. #u54783 {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:151px;
  2518. top:817px;
  2519. width:37px;
  2520. height:17px;
  2521. display:flex;
  2522. transition:none;
  2523. transform-origin:50% 50%;
  2524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2525. font-weight:400;
  2526. font-style:normal;
  2527. font-size:12px;
  2528. }
  2529. #u54783 .text {
  2530. position:absolute;
  2531. align-self:flex-start;
  2532. padding:0px 0px 0px 0px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u54783_text {
  2537. border-width:0px;
  2538. white-space:nowrap;
  2539. text-transform:none;
  2540. }
  2541. #u54784_div {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:375px;
  2547. height:734px;
  2548. background:inherit;
  2549. background-color:rgba(242, 242, 242, 0.996078431372549);
  2550. border-top:0px;
  2551. border-radius:28px;
  2552. border-top-left-radius:0px;
  2553. border-top-right-radius:0px;
  2554. filter:drop-shadow(none);
  2555. transition:none;
  2556. }
  2557. #u54784 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:29px;
  2561. top:107px;
  2562. width:375px;
  2563. height:734px;
  2564. display:flex;
  2565. transition:none;
  2566. transform-origin:50% 50%;
  2567. }
  2568. #u54784 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:2px 2px 2px 2px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u54784_text {
  2576. border-width:0px;
  2577. word-wrap:break-word;
  2578. text-transform:none;
  2579. visibility:hidden;
  2580. }
  2581. #u54785_div {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:375px;
  2587. height:40px;
  2588. background:inherit;
  2589. background-color:rgba(255, 255, 255, 1);
  2590. box-sizing:border-box;
  2591. border-width:1px;
  2592. border-style:solid;
  2593. border-color:rgba(215, 215, 215, 1);
  2594. border-left:0px;
  2595. border-top:0px;
  2596. border-right:0px;
  2597. border-radius:0px;
  2598. border-bottom-right-radius:0px;
  2599. border-bottom-left-radius:0px;
  2600. filter:drop-shadow(none);
  2601. transition:none;
  2602. }
  2603. #u54785 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:29px;
  2607. top:67px;
  2608. width:375px;
  2609. height:40px;
  2610. display:flex;
  2611. transition:none;
  2612. transform-origin:50% 50%;
  2613. }
  2614. #u54785 .text {
  2615. position:absolute;
  2616. align-self:center;
  2617. padding:2px 2px 2px 2px;
  2618. box-sizing:border-box;
  2619. width:100%;
  2620. }
  2621. #u54785_text {
  2622. border-width:0px;
  2623. word-wrap:break-word;
  2624. text-transform:none;
  2625. visibility:hidden;
  2626. }
  2627. #u54786 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:29px;
  2631. top:24px;
  2632. width:375px;
  2633. height:44px;
  2634. display:flex;
  2635. transition:none;
  2636. }
  2637. #u54786 .text {
  2638. position:absolute;
  2639. align-self:center;
  2640. padding:2px 2px 2px 2px;
  2641. box-sizing:border-box;
  2642. width:100%;
  2643. }
  2644. #u54786_img {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:0px;
  2648. top:0px;
  2649. width:375px;
  2650. height:44px;
  2651. }
  2652. #u54786_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. visibility:hidden;
  2657. }
  2658. #u54787 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:0px;
  2664. height:0px;
  2665. }
  2666. #u54788_div {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:88px;
  2672. height:32px;
  2673. background:inherit;
  2674. background-color:rgba(255, 255, 255, 1);
  2675. box-sizing:border-box;
  2676. border-width:1px;
  2677. border-style:solid;
  2678. border-color:rgba(242, 242, 242, 1);
  2679. border-radius:33px;
  2680. filter:drop-shadow(none);
  2681. transition:none;
  2682. }
  2683. #u54788 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:309px;
  2687. top:71px;
  2688. width:88px;
  2689. height:32px;
  2690. display:flex;
  2691. transition:none;
  2692. transform-origin:50% 50%;
  2693. }
  2694. #u54788 .text {
  2695. position:absolute;
  2696. align-self:center;
  2697. padding:2px 2px 2px 2px;
  2698. box-sizing:border-box;
  2699. width:100%;
  2700. }
  2701. #u54788_text {
  2702. border-width:0px;
  2703. word-wrap:break-word;
  2704. text-transform:none;
  2705. visibility:hidden;
  2706. }
  2707. #u54789 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:0px;
  2713. height:0px;
  2714. }
  2715. #u54790 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:372px;
  2719. top:78px;
  2720. width:18px;
  2721. height:18px;
  2722. display:flex;
  2723. transition:none;
  2724. }
  2725. #u54790 .text {
  2726. position:absolute;
  2727. align-self:center;
  2728. padding:2px 2px 2px 2px;
  2729. box-sizing:border-box;
  2730. width:100%;
  2731. }
  2732. #u54790_img {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:0px;
  2736. top:0px;
  2737. width:18px;
  2738. height:18px;
  2739. }
  2740. #u54790_text {
  2741. border-width:0px;
  2742. word-wrap:break-word;
  2743. text-transform:none;
  2744. visibility:hidden;
  2745. }
  2746. #u54791 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:378px;
  2750. top:84px;
  2751. width:6px;
  2752. height:6px;
  2753. display:flex;
  2754. transition:none;
  2755. }
  2756. #u54791 .text {
  2757. position:absolute;
  2758. align-self:center;
  2759. padding:2px 2px 2px 2px;
  2760. box-sizing:border-box;
  2761. width:100%;
  2762. }
  2763. #u54791_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:6px;
  2769. height:6px;
  2770. }
  2771. #u54791_text {
  2772. border-width:0px;
  2773. word-wrap:break-word;
  2774. text-transform:none;
  2775. visibility:hidden;
  2776. }
  2777. #u54792 {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:0px;
  2781. top:0px;
  2782. width:0px;
  2783. height:0px;
  2784. }
  2785. #u54793 {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:323px;
  2789. top:85px;
  2790. width:5px;
  2791. height:5px;
  2792. display:flex;
  2793. transition:none;
  2794. }
  2795. #u54793 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:2px 2px 2px 2px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u54793_img {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:5px;
  2808. height:5px;
  2809. }
  2810. #u54793_text {
  2811. border-width:0px;
  2812. word-wrap:break-word;
  2813. text-transform:none;
  2814. visibility:hidden;
  2815. }
  2816. #u54794 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:339px;
  2820. top:85px;
  2821. width:5px;
  2822. height:5px;
  2823. display:flex;
  2824. transition:none;
  2825. }
  2826. #u54794 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 2px 2px 2px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u54794_img {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:5px;
  2839. height:5px;
  2840. }
  2841. #u54794_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. visibility:hidden;
  2846. }
  2847. #u54795 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:330px;
  2851. top:84px;
  2852. width:7px;
  2853. height:7px;
  2854. display:flex;
  2855. transition:none;
  2856. }
  2857. #u54795 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:2px 2px 2px 2px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u54795_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:7px;
  2870. height:7px;
  2871. }
  2872. #u54795_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u54796 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:347px;
  2882. top:87px;
  2883. width:18px;
  2884. height:1px;
  2885. display:flex;
  2886. -webkit-transform:rotate(90deg);
  2887. -moz-transform:rotate(90deg);
  2888. -ms-transform:rotate(90deg);
  2889. transform:rotate(90deg);
  2890. transition:none;
  2891. }
  2892. #u54796 .text {
  2893. position:absolute;
  2894. align-self:center;
  2895. padding:2px 2px 2px 2px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u54796_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:19px;
  2905. height:2px;
  2906. }
  2907. #u54796_text {
  2908. border-width:0px;
  2909. word-wrap:break-word;
  2910. text-transform:none;
  2911. visibility:hidden;
  2912. }
  2913. #u54797_div {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:65px;
  2919. height:22px;
  2920. background:inherit;
  2921. background-color:rgba(255, 255, 255, 0);
  2922. border-radius:0px;
  2923. filter:drop-shadow(none);
  2924. transition:none;
  2925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2926. font-weight:400;
  2927. font-style:normal;
  2928. font-size:16px;
  2929. color:#000000;
  2930. }
  2931. #u54797 {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:58px;
  2935. top:76px;
  2936. width:65px;
  2937. height:22px;
  2938. display:flex;
  2939. transition:none;
  2940. transform-origin:50% 50%;
  2941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:16px;
  2945. color:#000000;
  2946. }
  2947. #u54797 .text {
  2948. position:absolute;
  2949. align-self:flex-start;
  2950. padding:0px 0px 0px 0px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u54797_text {
  2955. border-width:0px;
  2956. white-space:nowrap;
  2957. text-transform:none;
  2958. }
  2959. #u54798_div {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:12px;
  2965. height:12px;
  2966. background:inherit;
  2967. background-color:rgba(255, 255, 255, 0);
  2968. box-sizing:border-box;
  2969. border-width:2px;
  2970. border-style:solid;
  2971. border-color:rgba(51, 51, 51, 1);
  2972. border-right:0px;
  2973. border-bottom:0px;
  2974. border-radius:0px;
  2975. border-top-right-radius:0px;
  2976. border-bottom-left-radius:0px;
  2977. filter:drop-shadow(none);
  2978. transition:none;
  2979. }
  2980. #u54798 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:44px;
  2984. top:81px;
  2985. width:12px;
  2986. height:12px;
  2987. display:flex;
  2988. -webkit-transform:rotate(315deg);
  2989. -moz-transform:rotate(315deg);
  2990. -ms-transform:rotate(315deg);
  2991. transform:rotate(315deg);
  2992. transition:none;
  2993. transform-origin:50% 50%;
  2994. }
  2995. #u54798 .text {
  2996. position:absolute;
  2997. align-self:center;
  2998. padding:2px 2px 2px 2px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u54798_text {
  3003. border-width:0px;
  3004. word-wrap:break-word;
  3005. text-transform:none;
  3006. visibility:hidden;
  3007. }
  3008. #u54799_div {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:375px;
  3014. height:100px;
  3015. background:inherit;
  3016. background-color:rgba(255, 255, 255, 1);
  3017. border-left:0px;
  3018. border-top:0px;
  3019. border-right:0px;
  3020. border-radius:0px;
  3021. border-bottom-right-radius:0px;
  3022. border-bottom-left-radius:0px;
  3023. filter:drop-shadow(none);
  3024. transition:none;
  3025. }
  3026. #u54799 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:29px;
  3030. top:107px;
  3031. width:375px;
  3032. height:100px;
  3033. display:flex;
  3034. transition:none;
  3035. transform-origin:50% 50%;
  3036. }
  3037. #u54799 .text {
  3038. position:absolute;
  3039. align-self:center;
  3040. padding:2px 2px 2px 2px;
  3041. box-sizing:border-box;
  3042. width:100%;
  3043. }
  3044. #u54799_text {
  3045. border-width:0px;
  3046. word-wrap:break-word;
  3047. text-transform:none;
  3048. visibility:hidden;
  3049. }
  3050. #u54800_div {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:0px;
  3055. width:197px;
  3056. height:30px;
  3057. background:inherit;
  3058. background-color:rgba(255, 255, 255, 0);
  3059. border-left:0px;
  3060. border-top:0px;
  3061. border-right:0px;
  3062. border-radius:0px;
  3063. border-bottom-right-radius:0px;
  3064. border-bottom-left-radius:0px;
  3065. filter:drop-shadow(none);
  3066. transition:none;
  3067. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3068. font-weight:500;
  3069. font-style:normal;
  3070. font-size:14px;
  3071. line-height:30px;
  3072. }
  3073. #u54800 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:46px;
  3077. top:117px;
  3078. width:197px;
  3079. height:30px;
  3080. display:flex;
  3081. transition:none;
  3082. transform-origin:50% 50%;
  3083. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3084. font-weight:500;
  3085. font-style:normal;
  3086. font-size:14px;
  3087. line-height:30px;
  3088. }
  3089. #u54800 .text {
  3090. position:absolute;
  3091. align-self:flex-start;
  3092. padding:0px 0px 0px 0px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u54800_text {
  3097. border-width:0px;
  3098. white-space:nowrap;
  3099. text-transform:none;
  3100. }
  3101. #u54801_div {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:325px;
  3107. height:50px;
  3108. background:inherit;
  3109. background-color:rgba(255, 255, 255, 0);
  3110. border-left:0px;
  3111. border-top:0px;
  3112. border-right:0px;
  3113. border-radius:0px;
  3114. border-bottom-right-radius:0px;
  3115. border-bottom-left-radius:0px;
  3116. filter:drop-shadow(none);
  3117. transition:none;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:12px;
  3122. line-height:25px;
  3123. }
  3124. #u54801 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:56px;
  3128. top:147px;
  3129. width:325px;
  3130. height:50px;
  3131. display:flex;
  3132. transition:none;
  3133. transform-origin:50% 50%;
  3134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:12px;
  3138. line-height:25px;
  3139. }
  3140. #u54801 .text {
  3141. position:absolute;
  3142. align-self:flex-start;
  3143. padding:0px 0px 0px 0px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u54801_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. }
  3152. #u54802_div {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:375px;
  3158. height:355px;
  3159. background:inherit;
  3160. background-color:rgba(255, 255, 255, 1);
  3161. border-left:0px;
  3162. border-top:0px;
  3163. border-right:0px;
  3164. border-radius:0px;
  3165. border-bottom-right-radius:0px;
  3166. border-bottom-left-radius:0px;
  3167. filter:drop-shadow(none);
  3168. transition:none;
  3169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3170. font-weight:400;
  3171. font-style:normal;
  3172. }
  3173. #u54802 {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:29px;
  3177. top:217px;
  3178. width:375px;
  3179. height:355px;
  3180. display:flex;
  3181. transition:none;
  3182. transform-origin:50% 50%;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. }
  3187. #u54802 .text {
  3188. position:absolute;
  3189. align-self:center;
  3190. padding:2px 2px 2px 2px;
  3191. box-sizing:border-box;
  3192. width:100%;
  3193. }
  3194. #u54802_text {
  3195. border-width:0px;
  3196. word-wrap:break-word;
  3197. text-transform:none;
  3198. }
  3199. #u54803 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:0px;
  3205. height:0px;
  3206. }
  3207. #u54804_div {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:0px;
  3211. top:0px;
  3212. width:375px;
  3213. height:60px;
  3214. background:inherit;
  3215. background-color:rgba(255, 255, 255, 1);
  3216. border-top:0px;
  3217. border-radius:28px;
  3218. border-top-left-radius:0px;
  3219. border-top-right-radius:0px;
  3220. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  3221. transition:none;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:14px;
  3226. color:#FFFFFF;
  3227. }
  3228. #u54804 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:29px;
  3232. top:781px;
  3233. width:375px;
  3234. height:60px;
  3235. display:flex;
  3236. transition:none;
  3237. transform-origin:50% 50%;
  3238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3239. font-weight:400;
  3240. font-style:normal;
  3241. font-size:14px;
  3242. color:#FFFFFF;
  3243. }
  3244. #u54804 .text {
  3245. position:absolute;
  3246. align-self:center;
  3247. padding:2px 2px 2px 2px;
  3248. box-sizing:border-box;
  3249. width:100%;
  3250. }
  3251. #u54804_text {
  3252. border-width:0px;
  3253. word-wrap:break-word;
  3254. text-transform:none;
  3255. visibility:hidden;
  3256. }
  3257. #u54805_div {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:80px;
  3263. height:40px;
  3264. background:inherit;
  3265. background-color:rgba(24, 144, 255, 1);
  3266. border-radius:27px;
  3267. filter:drop-shadow(none);
  3268. transition:none;
  3269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3270. font-weight:400;
  3271. font-style:normal;
  3272. color:#FFFFFF;
  3273. text-align:center;
  3274. }
  3275. #u54805 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:304px;
  3279. top:791px;
  3280. width:80px;
  3281. height:40px;
  3282. display:flex;
  3283. transition:none;
  3284. transform-origin:50% 50%;
  3285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. color:#FFFFFF;
  3289. text-align:center;
  3290. }
  3291. #u54805 .text {
  3292. position:absolute;
  3293. align-self:center;
  3294. padding:2px 3px 2px 3px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u54805_text {
  3299. border-width:0px;
  3300. word-wrap:break-word;
  3301. text-transform:none;
  3302. }
  3303. #u54806_div {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:80px;
  3309. height:40px;
  3310. background:inherit;
  3311. background-color:rgba(215, 215, 215, 1);
  3312. border-radius:27px;
  3313. filter:drop-shadow(none);
  3314. transition:none;
  3315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3316. font-weight:400;
  3317. font-style:normal;
  3318. text-align:center;
  3319. }
  3320. #u54806 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:214px;
  3324. top:791px;
  3325. width:80px;
  3326. height:40px;
  3327. display:flex;
  3328. transition:none;
  3329. transform-origin:50% 50%;
  3330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. text-align:center;
  3334. }
  3335. #u54806 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 3px 2px 3px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u54806_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. }
  3347. #u54807_div {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:31px;
  3353. height:21px;
  3354. background:inherit;
  3355. background-color:rgba(215, 215, 215, 0);
  3356. border-radius:27px;
  3357. filter:drop-shadow(none);
  3358. transition:none;
  3359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3360. font-weight:400;
  3361. font-style:normal;
  3362. font-size:12px;
  3363. color:#7F7F7F;
  3364. text-align:center;
  3365. }
  3366. #u54807 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:172px;
  3370. top:801px;
  3371. width:31px;
  3372. height:21px;
  3373. display:flex;
  3374. transition:none;
  3375. transform-origin:50% 50%;
  3376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3377. font-weight:400;
  3378. font-style:normal;
  3379. font-size:12px;
  3380. color:#7F7F7F;
  3381. text-align:center;
  3382. }
  3383. #u54807 .text {
  3384. position:absolute;
  3385. align-self:center;
  3386. padding:2px 3px 2px 3px;
  3387. box-sizing:border-box;
  3388. width:100%;
  3389. }
  3390. #u54807_text {
  3391. border-width:0px;
  3392. white-space:nowrap;
  3393. text-transform:none;
  3394. }
  3395. #u54808 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:0px;
  3399. top:0px;
  3400. width:0px;
  3401. height:0px;
  3402. }
  3403. #u54809_div {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:355px;
  3409. height:192px;
  3410. background:inherit;
  3411. background-color:rgba(255, 255, 255, 1);
  3412. border-radius:0px;
  3413. filter:drop-shadow(none);
  3414. transition:none;
  3415. }
  3416. #u54809 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:39px;
  3420. top:579px;
  3421. width:355px;
  3422. height:192px;
  3423. display:flex;
  3424. transition:none;
  3425. transform-origin:50% 50%;
  3426. }
  3427. #u54809 .text {
  3428. position:absolute;
  3429. align-self:center;
  3430. padding:2px 2px 2px 2px;
  3431. box-sizing:border-box;
  3432. width:100%;
  3433. }
  3434. #u54809_text {
  3435. border-width:0px;
  3436. word-wrap:break-word;
  3437. text-transform:none;
  3438. visibility:hidden;
  3439. }
  3440. #u54810_div {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:103px;
  3446. height:24px;
  3447. background:inherit;
  3448. background-color:rgba(255, 255, 255, 0);
  3449. border-top:0px;
  3450. border-right:0px;
  3451. border-bottom:0px;
  3452. border-radius:0px;
  3453. border-top-left-radius:0px;
  3454. border-bottom-left-radius:0px;
  3455. filter:drop-shadow(none);
  3456. transition:none;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:10px;
  3461. color:#AAAAAA;
  3462. }
  3463. #u54810 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:274px;
  3467. top:629px;
  3468. width:103px;
  3469. height:24px;
  3470. display:flex;
  3471. transition:none;
  3472. transform-origin:50% 50%;
  3473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3474. font-weight:400;
  3475. font-style:normal;
  3476. font-size:10px;
  3477. color:#AAAAAA;
  3478. }
  3479. #u54810 .text {
  3480. position:absolute;
  3481. align-self:flex-start;
  3482. padding:5px 0px 5px 0px;
  3483. box-sizing:border-box;
  3484. width:100%;
  3485. }
  3486. #u54810_text {
  3487. border-width:0px;
  3488. white-space:nowrap;
  3489. text-transform:none;
  3490. }
  3491. #u54811 {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:0px;
  3497. height:0px;
  3498. }
  3499. #u54812_div {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:43px;
  3505. height:30px;
  3506. background:inherit;
  3507. background-color:rgba(255, 255, 255, 0);
  3508. border-top:0px;
  3509. border-right:0px;
  3510. border-bottom:0px;
  3511. border-radius:0px;
  3512. border-top-left-radius:0px;
  3513. border-bottom-left-radius:0px;
  3514. filter:drop-shadow(none);
  3515. transition:none;
  3516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:14px;
  3520. }
  3521. #u54812 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:107px;
  3525. top:631px;
  3526. width:43px;
  3527. height:30px;
  3528. display:flex;
  3529. transition:none;
  3530. transform-origin:50% 50%;
  3531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:14px;
  3535. }
  3536. #u54812 .text {
  3537. position:absolute;
  3538. align-self:flex-start;
  3539. padding:0px 0px 0px 0px;
  3540. box-sizing:border-box;
  3541. width:100%;
  3542. }
  3543. #u54812_text {
  3544. border-width:0px;
  3545. white-space:nowrap;
  3546. text-transform:none;
  3547. }
  3548. #u54813_div {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:63px;
  3554. height:16px;
  3555. background:inherit;
  3556. background-color:rgba(255, 255, 255, 0);
  3557. border-top:0px;
  3558. border-right:0px;
  3559. border-bottom:0px;
  3560. border-radius:0px;
  3561. border-top-left-radius:0px;
  3562. border-bottom-left-radius:0px;
  3563. filter:drop-shadow(none);
  3564. transition:none;
  3565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3566. font-weight:400;
  3567. font-style:normal;
  3568. font-size:11px;
  3569. color:#AAAAAA;
  3570. }
  3571. #u54813 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:107px;
  3575. top:659px;
  3576. width:63px;
  3577. height:16px;
  3578. display:flex;
  3579. transition:none;
  3580. transform-origin:50% 50%;
  3581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3582. font-weight:400;
  3583. font-style:normal;
  3584. font-size:11px;
  3585. color:#AAAAAA;
  3586. }
  3587. #u54813 .text {
  3588. position:absolute;
  3589. align-self:flex-start;
  3590. padding:0px 0px 0px 0px;
  3591. box-sizing:border-box;
  3592. width:100%;
  3593. }
  3594. #u54813_text {
  3595. border-width:0px;
  3596. white-space:nowrap;
  3597. text-transform:none;
  3598. }
  3599. #u54814_div {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:0px;
  3603. top:0px;
  3604. width:43px;
  3605. height:20px;
  3606. background:inherit;
  3607. background-color:rgba(255, 255, 255, 0);
  3608. border-top:0px;
  3609. border-right:0px;
  3610. border-bottom:0px;
  3611. border-radius:0px;
  3612. border-top-left-radius:0px;
  3613. border-bottom-left-radius:0px;
  3614. filter:drop-shadow(none);
  3615. transition:none;
  3616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3617. font-weight:400;
  3618. font-style:normal;
  3619. font-size:14px;
  3620. }
  3621. #u54814 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:107px;
  3625. top:701px;
  3626. width:43px;
  3627. height:20px;
  3628. display:flex;
  3629. transition:none;
  3630. transform-origin:50% 50%;
  3631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3632. font-weight:400;
  3633. font-style:normal;
  3634. font-size:14px;
  3635. }
  3636. #u54814 .text {
  3637. position:absolute;
  3638. align-self:flex-start;
  3639. padding:0px 0px 0px 0px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u54814_text {
  3644. border-width:0px;
  3645. white-space:nowrap;
  3646. text-transform:none;
  3647. }
  3648. #u54815_div {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:80px;
  3654. height:26px;
  3655. background:inherit;
  3656. background-color:rgba(255, 255, 255, 0);
  3657. border-top:0px;
  3658. border-right:0px;
  3659. border-bottom:0px;
  3660. border-radius:0px;
  3661. border-top-left-radius:0px;
  3662. border-bottom-left-radius:0px;
  3663. filter:drop-shadow(none);
  3664. transition:none;
  3665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3666. font-weight:400;
  3667. font-style:normal;
  3668. font-size:11px;
  3669. color:#AAAAAA;
  3670. }
  3671. #u54815 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:107px;
  3675. top:729px;
  3676. width:80px;
  3677. height:26px;
  3678. display:flex;
  3679. transition:none;
  3680. transform-origin:50% 50%;
  3681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:11px;
  3685. color:#AAAAAA;
  3686. }
  3687. #u54815 .text {
  3688. position:absolute;
  3689. align-self:flex-start;
  3690. padding:0px 0px 0px 0px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u54815_text {
  3695. border-width:0px;
  3696. word-wrap:break-word;
  3697. text-transform:none;
  3698. }
  3699. #u54816_div {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:29px;
  3705. height:30px;
  3706. background:inherit;
  3707. background-color:rgba(255, 255, 255, 0);
  3708. border-top:0px;
  3709. border-right:0px;
  3710. border-bottom:0px;
  3711. border-radius:0px;
  3712. border-top-left-radius:0px;
  3713. border-bottom-left-radius:0px;
  3714. filter:drop-shadow(none);
  3715. transition:none;
  3716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. font-size:14px;
  3720. }
  3721. #u54816 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:65px;
  3725. top:587px;
  3726. width:29px;
  3727. height:30px;
  3728. display:flex;
  3729. transition:none;
  3730. transform-origin:50% 50%;
  3731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3732. font-weight:400;
  3733. font-style:normal;
  3734. font-size:14px;
  3735. }
  3736. #u54816 .text {
  3737. position:absolute;
  3738. align-self:flex-start;
  3739. padding:5px 0px 5px 0px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u54816_text {
  3744. border-width:0px;
  3745. white-space:nowrap;
  3746. text-transform:none;
  3747. }
  3748. #u54817 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:0px;
  3754. height:0px;
  3755. }
  3756. #u54818 {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:84px;
  3760. top:665px;
  3761. width:1px;
  3762. height:31px;
  3763. display:flex;
  3764. transition:none;
  3765. }
  3766. #u54818 .text {
  3767. position:absolute;
  3768. align-self:center;
  3769. padding:2px 2px 2px 2px;
  3770. box-sizing:border-box;
  3771. width:100%;
  3772. }
  3773. #u54818_img {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:2px;
  3779. height:32px;
  3780. }
  3781. #u54818_text {
  3782. border-width:0px;
  3783. word-wrap:break-word;
  3784. text-transform:none;
  3785. visibility:hidden;
  3786. }
  3787. #u54819 {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:0px;
  3793. height:0px;
  3794. }
  3795. #u54820_div {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:30px;
  3801. height:30px;
  3802. background:inherit;
  3803. background-color:rgba(24, 144, 255, 1);
  3804. border-radius:4px;
  3805. filter:drop-shadow(none);
  3806. transition:none;
  3807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. font-size:10px;
  3811. color:#FFFFFF;
  3812. }
  3813. #u54820 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:69px;
  3817. top:701px;
  3818. width:30px;
  3819. height:30px;
  3820. display:flex;
  3821. transition:none;
  3822. transform-origin:50% 50%;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:10px;
  3827. color:#FFFFFF;
  3828. }
  3829. #u54820 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 2px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u54820_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. }
  3841. #u54821 {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:0px;
  3847. height:0px;
  3848. }
  3849. #u54822 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:91px;
  3853. top:723px;
  3854. width:9px;
  3855. height:9px;
  3856. display:flex;
  3857. transition:none;
  3858. }
  3859. #u54822 .text {
  3860. position:absolute;
  3861. align-self:center;
  3862. padding:2px 2px 2px 2px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u54822_img {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:9px;
  3872. height:9px;
  3873. }
  3874. #u54822_text {
  3875. border-width:0px;
  3876. word-wrap:break-word;
  3877. text-transform:none;
  3878. visibility:hidden;
  3879. }
  3880. #u54823 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:93px;
  3884. top:727px;
  3885. width:5px;
  3886. height:1px;
  3887. display:flex;
  3888. transition:none;
  3889. }
  3890. #u54823 .text {
  3891. position:absolute;
  3892. align-self:center;
  3893. padding:2px 2px 2px 2px;
  3894. box-sizing:border-box;
  3895. width:100%;
  3896. }
  3897. #u54823_img {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:0px;
  3901. top:0px;
  3902. width:5px;
  3903. height:1px;
  3904. }
  3905. #u54823_text {
  3906. border-width:0px;
  3907. word-wrap:break-word;
  3908. text-transform:none;
  3909. visibility:hidden;
  3910. }
  3911. #u54824 {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:0px;
  3917. height:0px;
  3918. }
  3919. #u54825_div {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:30px;
  3925. height:30px;
  3926. background:inherit;
  3927. background-color:rgba(24, 144, 255, 1);
  3928. border-radius:4px;
  3929. filter:drop-shadow(none);
  3930. transition:none;
  3931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3932. font-weight:400;
  3933. font-style:normal;
  3934. font-size:12px;
  3935. color:#FFFFFF;
  3936. }
  3937. #u54825 {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:69px;
  3941. top:631px;
  3942. width:30px;
  3943. height:30px;
  3944. display:flex;
  3945. transition:none;
  3946. transform-origin:50% 50%;
  3947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3948. font-weight:400;
  3949. font-style:normal;
  3950. font-size:12px;
  3951. color:#FFFFFF;
  3952. }
  3953. #u54825 .text {
  3954. position:absolute;
  3955. align-self:center;
  3956. padding:2px 2px 2px 2px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u54825_text {
  3961. border-width:0px;
  3962. word-wrap:break-word;
  3963. text-transform:none;
  3964. }
  3965. #u54826 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:0px;
  3971. height:0px;
  3972. }
  3973. #u54827 {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:91px;
  3977. top:653px;
  3978. width:9px;
  3979. height:9px;
  3980. display:flex;
  3981. transition:none;
  3982. }
  3983. #u54827 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 2px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u54827_img {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:0px;
  3994. top:0px;
  3995. width:9px;
  3996. height:9px;
  3997. }
  3998. #u54827_text {
  3999. border-width:0px;
  4000. word-wrap:break-word;
  4001. text-transform:none;
  4002. visibility:hidden;
  4003. }
  4004. #u54828 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:93px;
  4008. top:656px;
  4009. width:5px;
  4010. height:4px;
  4011. display:flex;
  4012. transition:none;
  4013. }
  4014. #u54828 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:2px 2px 2px 2px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u54828_img {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:5px;
  4027. height:4px;
  4028. }
  4029. #u54828_text {
  4030. border-width:0px;
  4031. word-wrap:break-word;
  4032. text-transform:none;
  4033. visibility:hidden;
  4034. }
  4035. #u54829_div {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:97px;
  4041. height:25px;
  4042. background:inherit;
  4043. background-color:rgba(255, 255, 255, 0);
  4044. border-radius:0px;
  4045. filter:drop-shadow(none);
  4046. transition:none;
  4047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. font-size:12px;
  4051. color:#B8741A;
  4052. line-height:25px;
  4053. }
  4054. #u54829 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:284px;
  4058. top:172px;
  4059. width:97px;
  4060. height:25px;
  4061. display:flex;
  4062. transition:none;
  4063. transform-origin:50% 50%;
  4064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:12px;
  4068. color:#B8741A;
  4069. line-height:25px;
  4070. }
  4071. #u54829 .text {
  4072. position:absolute;
  4073. align-self:flex-start;
  4074. padding:0px 0px 0px 0px;
  4075. box-sizing:border-box;
  4076. width:100%;
  4077. }
  4078. #u54829_text {
  4079. border-width:0px;
  4080. white-space:nowrap;
  4081. text-transform:none;
  4082. }
  4083. #u54830_div {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:348px;
  4089. height:34px;
  4090. background:inherit;
  4091. background-color:rgba(255, 255, 255, 0);
  4092. border-left:0px;
  4093. border-top:0px;
  4094. border-right:0px;
  4095. border-radius:0px;
  4096. border-bottom-right-radius:0px;
  4097. border-bottom-left-radius:0px;
  4098. filter:drop-shadow(none);
  4099. transition:none;
  4100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4101. font-weight:400;
  4102. font-style:normal;
  4103. font-size:12px;
  4104. color:#D9001B;
  4105. }
  4106. #u54830 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:46px;
  4110. top:300px;
  4111. width:348px;
  4112. height:34px;
  4113. display:flex;
  4114. transition:none;
  4115. transform-origin:50% 50%;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:12px;
  4120. color:#D9001B;
  4121. }
  4122. #u54830 .text {
  4123. position:absolute;
  4124. align-self:flex-start;
  4125. padding:0px 0px 0px 0px;
  4126. box-sizing:border-box;
  4127. width:100%;
  4128. }
  4129. #u54830_text {
  4130. border-width:0px;
  4131. word-wrap:break-word;
  4132. text-transform:none;
  4133. }
  4134. #u54831 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:188px;
  4138. top:801px;
  4139. width:0px;
  4140. height:0px;
  4141. transition:none;
  4142. }
  4143. #u54831_seg0 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:-5px;
  4147. top:-321px;
  4148. width:10px;
  4149. height:321px;
  4150. }
  4151. #u54831_seg1 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:-5px;
  4155. top:-321px;
  4156. width:290px;
  4157. height:10px;
  4158. }
  4159. #u54831_seg2 {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:266px;
  4163. top:-333px;
  4164. width:34px;
  4165. height:34px;
  4166. }
  4167. #u54831_text {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:-50px;
  4171. top:-308px;
  4172. width:100px;
  4173. word-wrap:break-word;
  4174. text-transform:none;
  4175. visibility:hidden;
  4176. }
  4177. #u54832 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:0px;
  4182. width:0px;
  4183. height:0px;
  4184. }
  4185. #u54833 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:888px;
  4189. top:0px;
  4190. width:433px;
  4191. height:865px;
  4192. }
  4193. #u54834 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:433px;
  4199. height:865px;
  4200. display:flex;
  4201. transition:none;
  4202. }
  4203. #u54834 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 2px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u54834_img {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:433px;
  4216. height:865px;
  4217. }
  4218. #u54834_text {
  4219. border-width:0px;
  4220. word-wrap:break-word;
  4221. text-transform:none;
  4222. visibility:hidden;
  4223. }
  4224. #u54835_div {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:375px;
  4230. height:40px;
  4231. background:inherit;
  4232. background-color:rgba(255, 255, 255, 1);
  4233. box-sizing:border-box;
  4234. border-width:1px;
  4235. border-style:solid;
  4236. border-color:rgba(215, 215, 215, 1);
  4237. border-left:0px;
  4238. border-top:0px;
  4239. border-right:0px;
  4240. border-radius:0px;
  4241. border-bottom-right-radius:0px;
  4242. border-bottom-left-radius:0px;
  4243. filter:drop-shadow(none);
  4244. transition:none;
  4245. }
  4246. #u54835 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:29px;
  4250. top:67px;
  4251. width:375px;
  4252. height:40px;
  4253. display:flex;
  4254. transition:none;
  4255. transform-origin:50% 50%;
  4256. }
  4257. #u54835 .text {
  4258. position:absolute;
  4259. align-self:center;
  4260. padding:2px 2px 2px 2px;
  4261. box-sizing:border-box;
  4262. width:100%;
  4263. }
  4264. #u54835_text {
  4265. border-width:0px;
  4266. word-wrap:break-word;
  4267. text-transform:none;
  4268. visibility:hidden;
  4269. }
  4270. #u54836 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:0px;
  4276. height:0px;
  4277. }
  4278. #u54837_div {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:88px;
  4284. height:32px;
  4285. background:inherit;
  4286. background-color:rgba(255, 255, 255, 1);
  4287. box-sizing:border-box;
  4288. border-width:1px;
  4289. border-style:solid;
  4290. border-color:rgba(242, 242, 242, 1);
  4291. border-radius:33px;
  4292. filter:drop-shadow(none);
  4293. transition:none;
  4294. }
  4295. #u54837 {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:309px;
  4299. top:71px;
  4300. width:88px;
  4301. height:32px;
  4302. display:flex;
  4303. transition:none;
  4304. transform-origin:50% 50%;
  4305. }
  4306. #u54837 .text {
  4307. position:absolute;
  4308. align-self:center;
  4309. padding:2px 2px 2px 2px;
  4310. box-sizing:border-box;
  4311. width:100%;
  4312. }
  4313. #u54837_text {
  4314. border-width:0px;
  4315. word-wrap:break-word;
  4316. text-transform:none;
  4317. visibility:hidden;
  4318. }
  4319. #u54838 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:0px;
  4325. height:0px;
  4326. }
  4327. #u54839 {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:372px;
  4331. top:78px;
  4332. width:18px;
  4333. height:18px;
  4334. display:flex;
  4335. transition:none;
  4336. }
  4337. #u54839 .text {
  4338. position:absolute;
  4339. align-self:center;
  4340. padding:2px 2px 2px 2px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u54839_img {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:0px;
  4348. top:0px;
  4349. width:18px;
  4350. height:18px;
  4351. }
  4352. #u54839_text {
  4353. border-width:0px;
  4354. word-wrap:break-word;
  4355. text-transform:none;
  4356. visibility:hidden;
  4357. }
  4358. #u54840 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:378px;
  4362. top:84px;
  4363. width:6px;
  4364. height:6px;
  4365. display:flex;
  4366. transition:none;
  4367. }
  4368. #u54840 .text {
  4369. position:absolute;
  4370. align-self:center;
  4371. padding:2px 2px 2px 2px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u54840_img {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:6px;
  4381. height:6px;
  4382. }
  4383. #u54840_text {
  4384. border-width:0px;
  4385. word-wrap:break-word;
  4386. text-transform:none;
  4387. visibility:hidden;
  4388. }
  4389. #u54841 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:0px;
  4395. height:0px;
  4396. }
  4397. #u54842 {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:323px;
  4401. top:85px;
  4402. width:5px;
  4403. height:5px;
  4404. display:flex;
  4405. transition:none;
  4406. }
  4407. #u54842 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:2px 2px 2px 2px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u54842_img {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:5px;
  4420. height:5px;
  4421. }
  4422. #u54842_text {
  4423. border-width:0px;
  4424. word-wrap:break-word;
  4425. text-transform:none;
  4426. visibility:hidden;
  4427. }
  4428. #u54843 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:339px;
  4432. top:85px;
  4433. width:5px;
  4434. height:5px;
  4435. display:flex;
  4436. transition:none;
  4437. }
  4438. #u54843 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 2px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u54843_img {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:5px;
  4451. height:5px;
  4452. }
  4453. #u54843_text {
  4454. border-width:0px;
  4455. word-wrap:break-word;
  4456. text-transform:none;
  4457. visibility:hidden;
  4458. }
  4459. #u54844 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:330px;
  4463. top:84px;
  4464. width:7px;
  4465. height:7px;
  4466. display:flex;
  4467. transition:none;
  4468. }
  4469. #u54844 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 2px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u54844_img {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:0px;
  4480. top:0px;
  4481. width:7px;
  4482. height:7px;
  4483. }
  4484. #u54844_text {
  4485. border-width:0px;
  4486. word-wrap:break-word;
  4487. text-transform:none;
  4488. visibility:hidden;
  4489. }
  4490. #u54845 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:347px;
  4494. top:87px;
  4495. width:18px;
  4496. height:1px;
  4497. display:flex;
  4498. -webkit-transform:rotate(90deg);
  4499. -moz-transform:rotate(90deg);
  4500. -ms-transform:rotate(90deg);
  4501. transform:rotate(90deg);
  4502. transition:none;
  4503. }
  4504. #u54845 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 2px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u54845_img {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:19px;
  4517. height:2px;
  4518. }
  4519. #u54845_text {
  4520. border-width:0px;
  4521. word-wrap:break-word;
  4522. text-transform:none;
  4523. visibility:hidden;
  4524. }
  4525. #u54846 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:29px;
  4529. top:24px;
  4530. width:375px;
  4531. height:44px;
  4532. display:flex;
  4533. transition:none;
  4534. }
  4535. #u54846 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:2px 2px 2px 2px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u54846_img {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:0px;
  4546. top:0px;
  4547. width:375px;
  4548. height:44px;
  4549. }
  4550. #u54846_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. visibility:hidden;
  4555. }
  4556. #u54847_div {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:375px;
  4562. height:50px;
  4563. background:inherit;
  4564. background-color:rgba(255, 255, 255, 1);
  4565. box-sizing:border-box;
  4566. border-width:1px;
  4567. border-style:solid;
  4568. border-color:rgba(242, 242, 242, 1);
  4569. border-radius:26px;
  4570. border-top-left-radius:0px;
  4571. border-top-right-radius:0px;
  4572. filter:drop-shadow(none);
  4573. transition:none;
  4574. }
  4575. #u54847 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:29px;
  4579. top:788px;
  4580. width:375px;
  4581. height:50px;
  4582. display:flex;
  4583. transition:none;
  4584. transform-origin:50% 50%;
  4585. }
  4586. #u54847 .text {
  4587. position:absolute;
  4588. align-self:center;
  4589. padding:2px 2px 2px 2px;
  4590. box-sizing:border-box;
  4591. width:100%;
  4592. }
  4593. #u54847_text {
  4594. border-width:0px;
  4595. word-wrap:break-word;
  4596. text-transform:none;
  4597. visibility:hidden;
  4598. }
  4599. #u54848 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:0px;
  4605. height:0px;
  4606. }
  4607. #u54849 {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:69px;
  4611. top:792px;
  4612. width:24px;
  4613. height:24px;
  4614. display:flex;
  4615. transition:none;
  4616. font-size:8px;
  4617. }
  4618. #u54849 .text {
  4619. position:absolute;
  4620. align-self:center;
  4621. padding:2px 2px 2px 2px;
  4622. box-sizing:border-box;
  4623. width:100%;
  4624. }
  4625. #u54849_img {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:24px;
  4631. height:24px;
  4632. }
  4633. #u54849_text {
  4634. border-width:0px;
  4635. word-wrap:break-word;
  4636. text-transform:none;
  4637. }
  4638. #u54850_div {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:25px;
  4644. height:17px;
  4645. background:inherit;
  4646. background-color:rgba(255, 255, 255, 0);
  4647. border-radius:0px;
  4648. filter:drop-shadow(none);
  4649. transition:none;
  4650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:12px;
  4654. }
  4655. #u54850 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:69px;
  4659. top:817px;
  4660. width:25px;
  4661. height:17px;
  4662. display:flex;
  4663. transition:none;
  4664. transform-origin:50% 50%;
  4665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4666. font-weight:400;
  4667. font-style:normal;
  4668. font-size:12px;
  4669. }
  4670. #u54850 .text {
  4671. position:absolute;
  4672. align-self:flex-start;
  4673. padding:0px 0px 0px 0px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u54850_text {
  4678. border-width:0px;
  4679. white-space:nowrap;
  4680. text-transform:none;
  4681. }
  4682. #u54851 {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:0px;
  4688. height:0px;
  4689. }
  4690. #u54852 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:339px;
  4694. top:794px;
  4695. width:24px;
  4696. height:24px;
  4697. display:flex;
  4698. transition:none;
  4699. font-size:8px;
  4700. }
  4701. #u54852 .text {
  4702. position:absolute;
  4703. align-self:center;
  4704. padding:2px 2px 2px 2px;
  4705. box-sizing:border-box;
  4706. width:100%;
  4707. }
  4708. #u54852_img {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:24px;
  4714. height:24px;
  4715. }
  4716. #u54852_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. }
  4721. #u54853_div {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:25px;
  4727. height:17px;
  4728. background:inherit;
  4729. background-color:rgba(255, 255, 255, 0);
  4730. border-radius:0px;
  4731. filter:drop-shadow(none);
  4732. transition:none;
  4733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:12px;
  4737. }
  4738. #u54853 {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:339px;
  4742. top:819px;
  4743. width:25px;
  4744. height:17px;
  4745. display:flex;
  4746. transition:none;
  4747. transform-origin:50% 50%;
  4748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4749. font-weight:400;
  4750. font-style:normal;
  4751. font-size:12px;
  4752. }
  4753. #u54853 .text {
  4754. position:absolute;
  4755. align-self:flex-start;
  4756. padding:0px 0px 0px 0px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u54853_text {
  4761. border-width:0px;
  4762. white-space:nowrap;
  4763. text-transform:none;
  4764. }
  4765. #u54854_div {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:375px;
  4771. height:681px;
  4772. background:inherit;
  4773. background-color:rgba(242, 242, 242, 0.4627450980392157);
  4774. border-radius:0px;
  4775. filter:drop-shadow(none);
  4776. transition:none;
  4777. }
  4778. #u54854 {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:29px;
  4782. top:107px;
  4783. width:375px;
  4784. height:681px;
  4785. display:flex;
  4786. transition:none;
  4787. transform-origin:50% 50%;
  4788. }
  4789. #u54854 .text {
  4790. position:absolute;
  4791. align-self:center;
  4792. padding:2px 2px 2px 2px;
  4793. box-sizing:border-box;
  4794. width:100%;
  4795. }
  4796. #u54854_text {
  4797. border-width:0px;
  4798. word-wrap:break-word;
  4799. text-transform:none;
  4800. visibility:hidden;
  4801. }
  4802. #u54855 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:0px;
  4808. height:0px;
  4809. }
  4810. #u54856 {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:251px;
  4814. top:792px;
  4815. width:24px;
  4816. height:24px;
  4817. display:flex;
  4818. transition:none;
  4819. font-size:8px;
  4820. }
  4821. #u54856 .text {
  4822. position:absolute;
  4823. align-self:center;
  4824. padding:2px 2px 2px 2px;
  4825. box-sizing:border-box;
  4826. width:100%;
  4827. }
  4828. #u54856_img {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:0px;
  4832. top:0px;
  4833. width:24px;
  4834. height:24px;
  4835. }
  4836. #u54856_text {
  4837. border-width:0px;
  4838. word-wrap:break-word;
  4839. text-transform:none;
  4840. }
  4841. #u54857_div {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:37px;
  4847. height:17px;
  4848. background:inherit;
  4849. background-color:rgba(255, 255, 255, 0);
  4850. border-radius:0px;
  4851. filter:drop-shadow(none);
  4852. transition:none;
  4853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4854. font-weight:400;
  4855. font-style:normal;
  4856. font-size:12px;
  4857. }
  4858. #u54857 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:245px;
  4862. top:817px;
  4863. width:37px;
  4864. height:17px;
  4865. display:flex;
  4866. transition:none;
  4867. transform-origin:50% 50%;
  4868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:12px;
  4872. }
  4873. #u54857 .text {
  4874. position:absolute;
  4875. align-self:flex-start;
  4876. padding:0px 0px 0px 0px;
  4877. box-sizing:border-box;
  4878. width:100%;
  4879. }
  4880. #u54857_text {
  4881. border-width:0px;
  4882. white-space:nowrap;
  4883. text-transform:none;
  4884. }
  4885. #u54858 {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:0px;
  4891. height:0px;
  4892. }
  4893. #u54859 {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:157px;
  4897. top:792px;
  4898. width:24px;
  4899. height:24px;
  4900. display:flex;
  4901. transition:none;
  4902. font-size:8px;
  4903. }
  4904. #u54859 .text {
  4905. position:absolute;
  4906. align-self:center;
  4907. padding:2px 2px 2px 2px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u54859_img {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:0px;
  4915. top:0px;
  4916. width:24px;
  4917. height:24px;
  4918. }
  4919. #u54859_text {
  4920. border-width:0px;
  4921. word-wrap:break-word;
  4922. text-transform:none;
  4923. }
  4924. #u54860_div {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:0px;
  4928. top:0px;
  4929. width:37px;
  4930. height:17px;
  4931. background:inherit;
  4932. background-color:rgba(255, 255, 255, 0);
  4933. border-radius:0px;
  4934. filter:drop-shadow(none);
  4935. transition:none;
  4936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:12px;
  4940. }
  4941. #u54860 {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:151px;
  4945. top:817px;
  4946. width:37px;
  4947. height:17px;
  4948. display:flex;
  4949. transition:none;
  4950. transform-origin:50% 50%;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:12px;
  4955. }
  4956. #u54860 .text {
  4957. position:absolute;
  4958. align-self:flex-start;
  4959. padding:0px 0px 0px 0px;
  4960. box-sizing:border-box;
  4961. width:100%;
  4962. }
  4963. #u54860_text {
  4964. border-width:0px;
  4965. white-space:nowrap;
  4966. text-transform:none;
  4967. }
  4968. #u54861_div {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:0px;
  4972. top:0px;
  4973. width:375px;
  4974. height:734px;
  4975. background:inherit;
  4976. background-color:rgba(242, 242, 242, 0.996078431372549);
  4977. border-top:0px;
  4978. border-radius:28px;
  4979. border-top-left-radius:0px;
  4980. border-top-right-radius:0px;
  4981. filter:drop-shadow(none);
  4982. transition:none;
  4983. }
  4984. #u54861 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:917px;
  4988. top:107px;
  4989. width:375px;
  4990. height:734px;
  4991. display:flex;
  4992. transition:none;
  4993. transform-origin:50% 50%;
  4994. }
  4995. #u54861 .text {
  4996. position:absolute;
  4997. align-self:center;
  4998. padding:2px 2px 2px 2px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u54861_text {
  5003. border-width:0px;
  5004. word-wrap:break-word;
  5005. text-transform:none;
  5006. visibility:hidden;
  5007. }
  5008. #u54862_div {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:375px;
  5014. height:40px;
  5015. background:inherit;
  5016. background-color:rgba(255, 255, 255, 1);
  5017. box-sizing:border-box;
  5018. border-width:1px;
  5019. border-style:solid;
  5020. border-color:rgba(215, 215, 215, 1);
  5021. border-left:0px;
  5022. border-top:0px;
  5023. border-right:0px;
  5024. border-radius:0px;
  5025. border-bottom-right-radius:0px;
  5026. border-bottom-left-radius:0px;
  5027. filter:drop-shadow(none);
  5028. transition:none;
  5029. }
  5030. #u54862 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:917px;
  5034. top:67px;
  5035. width:375px;
  5036. height:40px;
  5037. display:flex;
  5038. transition:none;
  5039. transform-origin:50% 50%;
  5040. }
  5041. #u54862 .text {
  5042. position:absolute;
  5043. align-self:center;
  5044. padding:2px 2px 2px 2px;
  5045. box-sizing:border-box;
  5046. width:100%;
  5047. }
  5048. #u54862_text {
  5049. border-width:0px;
  5050. word-wrap:break-word;
  5051. text-transform:none;
  5052. visibility:hidden;
  5053. }
  5054. #u54863 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:917px;
  5058. top:24px;
  5059. width:375px;
  5060. height:44px;
  5061. display:flex;
  5062. transition:none;
  5063. }
  5064. #u54863 .text {
  5065. position:absolute;
  5066. align-self:center;
  5067. padding:2px 2px 2px 2px;
  5068. box-sizing:border-box;
  5069. width:100%;
  5070. }
  5071. #u54863_img {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:0px;
  5075. top:0px;
  5076. width:375px;
  5077. height:44px;
  5078. }
  5079. #u54863_text {
  5080. border-width:0px;
  5081. word-wrap:break-word;
  5082. text-transform:none;
  5083. visibility:hidden;
  5084. }
  5085. #u54864 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:0px;
  5091. height:0px;
  5092. }
  5093. #u54865_div {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:88px;
  5099. height:32px;
  5100. background:inherit;
  5101. background-color:rgba(255, 255, 255, 1);
  5102. box-sizing:border-box;
  5103. border-width:1px;
  5104. border-style:solid;
  5105. border-color:rgba(242, 242, 242, 1);
  5106. border-radius:33px;
  5107. filter:drop-shadow(none);
  5108. transition:none;
  5109. }
  5110. #u54865 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:1197px;
  5114. top:71px;
  5115. width:88px;
  5116. height:32px;
  5117. display:flex;
  5118. transition:none;
  5119. transform-origin:50% 50%;
  5120. }
  5121. #u54865 .text {
  5122. position:absolute;
  5123. align-self:center;
  5124. padding:2px 2px 2px 2px;
  5125. box-sizing:border-box;
  5126. width:100%;
  5127. }
  5128. #u54865_text {
  5129. border-width:0px;
  5130. word-wrap:break-word;
  5131. text-transform:none;
  5132. visibility:hidden;
  5133. }
  5134. #u54866 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:0px;
  5140. height:0px;
  5141. }
  5142. #u54867 {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:1260px;
  5146. top:78px;
  5147. width:18px;
  5148. height:18px;
  5149. display:flex;
  5150. transition:none;
  5151. }
  5152. #u54867 .text {
  5153. position:absolute;
  5154. align-self:center;
  5155. padding:2px 2px 2px 2px;
  5156. box-sizing:border-box;
  5157. width:100%;
  5158. }
  5159. #u54867_img {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:0px;
  5163. top:0px;
  5164. width:18px;
  5165. height:18px;
  5166. }
  5167. #u54867_text {
  5168. border-width:0px;
  5169. word-wrap:break-word;
  5170. text-transform:none;
  5171. visibility:hidden;
  5172. }
  5173. #u54868 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:1266px;
  5177. top:84px;
  5178. width:6px;
  5179. height:6px;
  5180. display:flex;
  5181. transition:none;
  5182. }
  5183. #u54868 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:2px 2px 2px 2px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u54868_img {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:6px;
  5196. height:6px;
  5197. }
  5198. #u54868_text {
  5199. border-width:0px;
  5200. word-wrap:break-word;
  5201. text-transform:none;
  5202. visibility:hidden;
  5203. }
  5204. #u54869 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:0px;
  5210. height:0px;
  5211. }
  5212. #u54870 {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:1211px;
  5216. top:85px;
  5217. width:5px;
  5218. height:5px;
  5219. display:flex;
  5220. transition:none;
  5221. }
  5222. #u54870 .text {
  5223. position:absolute;
  5224. align-self:center;
  5225. padding:2px 2px 2px 2px;
  5226. box-sizing:border-box;
  5227. width:100%;
  5228. }
  5229. #u54870_img {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:5px;
  5235. height:5px;
  5236. }
  5237. #u54870_text {
  5238. border-width:0px;
  5239. word-wrap:break-word;
  5240. text-transform:none;
  5241. visibility:hidden;
  5242. }
  5243. #u54871 {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:1227px;
  5247. top:85px;
  5248. width:5px;
  5249. height:5px;
  5250. display:flex;
  5251. transition:none;
  5252. }
  5253. #u54871 .text {
  5254. position:absolute;
  5255. align-self:center;
  5256. padding:2px 2px 2px 2px;
  5257. box-sizing:border-box;
  5258. width:100%;
  5259. }
  5260. #u54871_img {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:5px;
  5266. height:5px;
  5267. }
  5268. #u54871_text {
  5269. border-width:0px;
  5270. word-wrap:break-word;
  5271. text-transform:none;
  5272. visibility:hidden;
  5273. }
  5274. #u54872 {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:1218px;
  5278. top:84px;
  5279. width:7px;
  5280. height:7px;
  5281. display:flex;
  5282. transition:none;
  5283. }
  5284. #u54872 .text {
  5285. position:absolute;
  5286. align-self:center;
  5287. padding:2px 2px 2px 2px;
  5288. box-sizing:border-box;
  5289. width:100%;
  5290. }
  5291. #u54872_img {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:7px;
  5297. height:7px;
  5298. }
  5299. #u54872_text {
  5300. border-width:0px;
  5301. word-wrap:break-word;
  5302. text-transform:none;
  5303. visibility:hidden;
  5304. }
  5305. #u54873 {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:1235px;
  5309. top:87px;
  5310. width:18px;
  5311. height:1px;
  5312. display:flex;
  5313. -webkit-transform:rotate(90deg);
  5314. -moz-transform:rotate(90deg);
  5315. -ms-transform:rotate(90deg);
  5316. transform:rotate(90deg);
  5317. transition:none;
  5318. }
  5319. #u54873 .text {
  5320. position:absolute;
  5321. align-self:center;
  5322. padding:2px 2px 2px 2px;
  5323. box-sizing:border-box;
  5324. width:100%;
  5325. }
  5326. #u54873_img {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:0px;
  5330. top:0px;
  5331. width:19px;
  5332. height:2px;
  5333. }
  5334. #u54873_text {
  5335. border-width:0px;
  5336. word-wrap:break-word;
  5337. text-transform:none;
  5338. visibility:hidden;
  5339. }
  5340. #u54874_div {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:0px;
  5344. top:0px;
  5345. width:65px;
  5346. height:22px;
  5347. background:inherit;
  5348. background-color:rgba(255, 255, 255, 0);
  5349. border-radius:0px;
  5350. filter:drop-shadow(none);
  5351. transition:none;
  5352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5353. font-weight:400;
  5354. font-style:normal;
  5355. font-size:16px;
  5356. color:#000000;
  5357. }
  5358. #u54874 {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:946px;
  5362. top:76px;
  5363. width:65px;
  5364. height:22px;
  5365. display:flex;
  5366. transition:none;
  5367. transform-origin:50% 50%;
  5368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5369. font-weight:400;
  5370. font-style:normal;
  5371. font-size:16px;
  5372. color:#000000;
  5373. }
  5374. #u54874 .text {
  5375. position:absolute;
  5376. align-self:flex-start;
  5377. padding:0px 0px 0px 0px;
  5378. box-sizing:border-box;
  5379. width:100%;
  5380. }
  5381. #u54874_text {
  5382. border-width:0px;
  5383. white-space:nowrap;
  5384. text-transform:none;
  5385. }
  5386. #u54875_div {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:0px;
  5390. top:0px;
  5391. width:12px;
  5392. height:12px;
  5393. background:inherit;
  5394. background-color:rgba(255, 255, 255, 0);
  5395. box-sizing:border-box;
  5396. border-width:2px;
  5397. border-style:solid;
  5398. border-color:rgba(51, 51, 51, 1);
  5399. border-right:0px;
  5400. border-bottom:0px;
  5401. border-radius:0px;
  5402. border-top-right-radius:0px;
  5403. border-bottom-left-radius:0px;
  5404. filter:drop-shadow(none);
  5405. transition:none;
  5406. }
  5407. #u54875 {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:932px;
  5411. top:81px;
  5412. width:12px;
  5413. height:12px;
  5414. display:flex;
  5415. -webkit-transform:rotate(315deg);
  5416. -moz-transform:rotate(315deg);
  5417. -ms-transform:rotate(315deg);
  5418. transform:rotate(315deg);
  5419. transition:none;
  5420. transform-origin:50% 50%;
  5421. }
  5422. #u54875 .text {
  5423. position:absolute;
  5424. align-self:center;
  5425. padding:2px 2px 2px 2px;
  5426. box-sizing:border-box;
  5427. width:100%;
  5428. }
  5429. #u54875_text {
  5430. border-width:0px;
  5431. word-wrap:break-word;
  5432. text-transform:none;
  5433. visibility:hidden;
  5434. }
  5435. #u54876_div {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:375px;
  5441. height:100px;
  5442. background:inherit;
  5443. background-color:rgba(255, 255, 255, 1);
  5444. border-left:0px;
  5445. border-top:0px;
  5446. border-right:0px;
  5447. border-radius:0px;
  5448. border-bottom-right-radius:0px;
  5449. border-bottom-left-radius:0px;
  5450. filter:drop-shadow(none);
  5451. transition:none;
  5452. }
  5453. #u54876 {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:917px;
  5457. top:107px;
  5458. width:375px;
  5459. height:100px;
  5460. display:flex;
  5461. transition:none;
  5462. transform-origin:50% 50%;
  5463. }
  5464. #u54876 .text {
  5465. position:absolute;
  5466. align-self:center;
  5467. padding:2px 2px 2px 2px;
  5468. box-sizing:border-box;
  5469. width:100%;
  5470. }
  5471. #u54876_text {
  5472. border-width:0px;
  5473. word-wrap:break-word;
  5474. text-transform:none;
  5475. visibility:hidden;
  5476. }
  5477. #u54877_div {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:0px;
  5481. top:0px;
  5482. width:197px;
  5483. height:30px;
  5484. background:inherit;
  5485. background-color:rgba(255, 255, 255, 0);
  5486. border-left:0px;
  5487. border-top:0px;
  5488. border-right:0px;
  5489. border-radius:0px;
  5490. border-bottom-right-radius:0px;
  5491. border-bottom-left-radius:0px;
  5492. filter:drop-shadow(none);
  5493. transition:none;
  5494. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5495. font-weight:500;
  5496. font-style:normal;
  5497. font-size:14px;
  5498. line-height:30px;
  5499. }
  5500. #u54877 {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:944px;
  5504. top:117px;
  5505. width:197px;
  5506. height:30px;
  5507. display:flex;
  5508. transition:none;
  5509. transform-origin:50% 50%;
  5510. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5511. font-weight:500;
  5512. font-style:normal;
  5513. font-size:14px;
  5514. line-height:30px;
  5515. }
  5516. #u54877 .text {
  5517. position:absolute;
  5518. align-self:flex-start;
  5519. padding:0px 0px 0px 0px;
  5520. box-sizing:border-box;
  5521. width:100%;
  5522. }
  5523. #u54877_text {
  5524. border-width:0px;
  5525. white-space:nowrap;
  5526. text-transform:none;
  5527. }
  5528. #u54878 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:0px;
  5534. height:0px;
  5535. }
  5536. #u54879_div {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:355px;
  5542. height:200px;
  5543. background:inherit;
  5544. background-color:rgba(255, 255, 255, 1);
  5545. border-radius:0px;
  5546. filter:drop-shadow(none);
  5547. transition:none;
  5548. }
  5549. #u54879 {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:927px;
  5553. top:625px;
  5554. width:355px;
  5555. height:200px;
  5556. display:flex;
  5557. transition:none;
  5558. transform-origin:50% 50%;
  5559. }
  5560. #u54879 .text {
  5561. position:absolute;
  5562. align-self:center;
  5563. padding:2px 2px 2px 2px;
  5564. box-sizing:border-box;
  5565. width:100%;
  5566. }
  5567. #u54879_text {
  5568. border-width:0px;
  5569. word-wrap:break-word;
  5570. text-transform:none;
  5571. visibility:hidden;
  5572. }
  5573. #u54880_div {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:103px;
  5579. height:24px;
  5580. background:inherit;
  5581. background-color:rgba(255, 255, 255, 0);
  5582. border-top:0px;
  5583. border-right:0px;
  5584. border-bottom:0px;
  5585. border-radius:0px;
  5586. border-top-left-radius:0px;
  5587. border-bottom-left-radius:0px;
  5588. filter:drop-shadow(none);
  5589. transition:none;
  5590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5591. font-weight:400;
  5592. font-style:normal;
  5593. font-size:10px;
  5594. color:#AAAAAA;
  5595. }
  5596. #u54880 {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:1162px;
  5600. top:675px;
  5601. width:103px;
  5602. height:24px;
  5603. display:flex;
  5604. transition:none;
  5605. transform-origin:50% 50%;
  5606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5607. font-weight:400;
  5608. font-style:normal;
  5609. font-size:10px;
  5610. color:#AAAAAA;
  5611. }
  5612. #u54880 .text {
  5613. position:absolute;
  5614. align-self:flex-start;
  5615. padding:5px 0px 5px 0px;
  5616. box-sizing:border-box;
  5617. width:100%;
  5618. }
  5619. #u54880_text {
  5620. border-width:0px;
  5621. white-space:nowrap;
  5622. text-transform:none;
  5623. }
  5624. #u54881 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:0px;
  5630. height:0px;
  5631. }
  5632. #u54882_div {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:43px;
  5638. height:30px;
  5639. background:inherit;
  5640. background-color:rgba(255, 255, 255, 0);
  5641. border-top:0px;
  5642. border-right:0px;
  5643. border-bottom:0px;
  5644. border-radius:0px;
  5645. border-top-left-radius:0px;
  5646. border-bottom-left-radius:0px;
  5647. filter:drop-shadow(none);
  5648. transition:none;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:14px;
  5653. }
  5654. #u54882 {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:995px;
  5658. top:677px;
  5659. width:43px;
  5660. height:30px;
  5661. display:flex;
  5662. transition:none;
  5663. transform-origin:50% 50%;
  5664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:14px;
  5668. }
  5669. #u54882 .text {
  5670. position:absolute;
  5671. align-self:flex-start;
  5672. padding:0px 0px 0px 0px;
  5673. box-sizing:border-box;
  5674. width:100%;
  5675. }
  5676. #u54882_text {
  5677. border-width:0px;
  5678. white-space:nowrap;
  5679. text-transform:none;
  5680. }
  5681. #u54883_div {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:0px;
  5685. top:0px;
  5686. width:63px;
  5687. height:16px;
  5688. background:inherit;
  5689. background-color:rgba(255, 255, 255, 0);
  5690. border-top:0px;
  5691. border-right:0px;
  5692. border-bottom:0px;
  5693. border-radius:0px;
  5694. border-top-left-radius:0px;
  5695. border-bottom-left-radius:0px;
  5696. filter:drop-shadow(none);
  5697. transition:none;
  5698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:11px;
  5702. color:#AAAAAA;
  5703. }
  5704. #u54883 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:995px;
  5708. top:705px;
  5709. width:63px;
  5710. height:16px;
  5711. display:flex;
  5712. transition:none;
  5713. transform-origin:50% 50%;
  5714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5715. font-weight:400;
  5716. font-style:normal;
  5717. font-size:11px;
  5718. color:#AAAAAA;
  5719. }
  5720. #u54883 .text {
  5721. position:absolute;
  5722. align-self:flex-start;
  5723. padding:0px 0px 0px 0px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u54883_text {
  5728. border-width:0px;
  5729. white-space:nowrap;
  5730. text-transform:none;
  5731. }
  5732. #u54884_div {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:0px;
  5736. top:0px;
  5737. width:43px;
  5738. height:20px;
  5739. background:inherit;
  5740. background-color:rgba(255, 255, 255, 0);
  5741. border-top:0px;
  5742. border-right:0px;
  5743. border-bottom:0px;
  5744. border-radius:0px;
  5745. border-top-left-radius:0px;
  5746. border-bottom-left-radius:0px;
  5747. filter:drop-shadow(none);
  5748. transition:none;
  5749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5750. font-weight:400;
  5751. font-style:normal;
  5752. font-size:14px;
  5753. }
  5754. #u54884 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:995px;
  5758. top:747px;
  5759. width:43px;
  5760. height:20px;
  5761. display:flex;
  5762. transition:none;
  5763. transform-origin:50% 50%;
  5764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5765. font-weight:400;
  5766. font-style:normal;
  5767. font-size:14px;
  5768. }
  5769. #u54884 .text {
  5770. position:absolute;
  5771. align-self:flex-start;
  5772. padding:0px 0px 0px 0px;
  5773. box-sizing:border-box;
  5774. width:100%;
  5775. }
  5776. #u54884_text {
  5777. border-width:0px;
  5778. white-space:nowrap;
  5779. text-transform:none;
  5780. }
  5781. #u54885_div {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:0px;
  5785. top:0px;
  5786. width:63px;
  5787. height:16px;
  5788. background:inherit;
  5789. background-color:rgba(255, 255, 255, 0);
  5790. border-top:0px;
  5791. border-right:0px;
  5792. border-bottom:0px;
  5793. border-radius:0px;
  5794. border-top-left-radius:0px;
  5795. border-bottom-left-radius:0px;
  5796. filter:drop-shadow(none);
  5797. transition:none;
  5798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:11px;
  5802. color:#AAAAAA;
  5803. }
  5804. #u54885 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:995px;
  5808. top:775px;
  5809. width:63px;
  5810. height:16px;
  5811. display:flex;
  5812. transition:none;
  5813. transform-origin:50% 50%;
  5814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5815. font-weight:400;
  5816. font-style:normal;
  5817. font-size:11px;
  5818. color:#AAAAAA;
  5819. }
  5820. #u54885 .text {
  5821. position:absolute;
  5822. align-self:flex-start;
  5823. padding:0px 0px 0px 0px;
  5824. box-sizing:border-box;
  5825. width:100%;
  5826. }
  5827. #u54885_text {
  5828. border-width:0px;
  5829. white-space:nowrap;
  5830. text-transform:none;
  5831. }
  5832. #u54886_div {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:0px;
  5836. top:0px;
  5837. width:29px;
  5838. height:30px;
  5839. background:inherit;
  5840. background-color:rgba(255, 255, 255, 0);
  5841. border-top:0px;
  5842. border-right:0px;
  5843. border-bottom:0px;
  5844. border-radius:0px;
  5845. border-top-left-radius:0px;
  5846. border-bottom-left-radius:0px;
  5847. filter:drop-shadow(none);
  5848. transition:none;
  5849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5850. font-weight:400;
  5851. font-style:normal;
  5852. font-size:14px;
  5853. }
  5854. #u54886 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:953px;
  5858. top:633px;
  5859. width:29px;
  5860. height:30px;
  5861. display:flex;
  5862. transition:none;
  5863. transform-origin:50% 50%;
  5864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:14px;
  5868. }
  5869. #u54886 .text {
  5870. position:absolute;
  5871. align-self:flex-start;
  5872. padding:5px 0px 5px 0px;
  5873. box-sizing:border-box;
  5874. width:100%;
  5875. }
  5876. #u54886_text {
  5877. border-width:0px;
  5878. white-space:nowrap;
  5879. text-transform:none;
  5880. }
  5881. #u54887 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:0px;
  5887. height:0px;
  5888. }
  5889. #u54888 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:972px;
  5893. top:711px;
  5894. width:1px;
  5895. height:31px;
  5896. display:flex;
  5897. transition:none;
  5898. }
  5899. #u54888 .text {
  5900. position:absolute;
  5901. align-self:center;
  5902. padding:2px 2px 2px 2px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u54888_img {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:2px;
  5912. height:32px;
  5913. }
  5914. #u54888_text {
  5915. border-width:0px;
  5916. word-wrap:break-word;
  5917. text-transform:none;
  5918. visibility:hidden;
  5919. }
  5920. #u54889 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:0px;
  5926. height:0px;
  5927. }
  5928. #u54890_div {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:30px;
  5934. height:30px;
  5935. background:inherit;
  5936. background-color:rgba(24, 144, 255, 1);
  5937. border-radius:4px;
  5938. filter:drop-shadow(none);
  5939. transition:none;
  5940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:10px;
  5944. color:#FFFFFF;
  5945. }
  5946. #u54890 {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:957px;
  5950. top:747px;
  5951. width:30px;
  5952. height:30px;
  5953. display:flex;
  5954. transition:none;
  5955. transform-origin:50% 50%;
  5956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5957. font-weight:400;
  5958. font-style:normal;
  5959. font-size:10px;
  5960. color:#FFFFFF;
  5961. }
  5962. #u54890 .text {
  5963. position:absolute;
  5964. align-self:center;
  5965. padding:2px 2px 2px 2px;
  5966. box-sizing:border-box;
  5967. width:100%;
  5968. }
  5969. #u54890_text {
  5970. border-width:0px;
  5971. word-wrap:break-word;
  5972. text-transform:none;
  5973. }
  5974. #u54891 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:0px;
  5978. top:0px;
  5979. width:0px;
  5980. height:0px;
  5981. }
  5982. #u54892 {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:979px;
  5986. top:769px;
  5987. width:9px;
  5988. height:9px;
  5989. display:flex;
  5990. transition:none;
  5991. }
  5992. #u54892 .text {
  5993. position:absolute;
  5994. align-self:center;
  5995. padding:2px 2px 2px 2px;
  5996. box-sizing:border-box;
  5997. width:100%;
  5998. }
  5999. #u54892_img {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:0px;
  6004. width:9px;
  6005. height:9px;
  6006. }
  6007. #u54892_text {
  6008. border-width:0px;
  6009. word-wrap:break-word;
  6010. text-transform:none;
  6011. visibility:hidden;
  6012. }
  6013. #u54893 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:981px;
  6017. top:772px;
  6018. width:5px;
  6019. height:4px;
  6020. display:flex;
  6021. transition:none;
  6022. }
  6023. #u54893 .text {
  6024. position:absolute;
  6025. align-self:center;
  6026. padding:2px 2px 2px 2px;
  6027. box-sizing:border-box;
  6028. width:100%;
  6029. }
  6030. #u54893_img {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:5px;
  6036. height:4px;
  6037. }
  6038. #u54893_text {
  6039. border-width:0px;
  6040. word-wrap:break-word;
  6041. text-transform:none;
  6042. visibility:hidden;
  6043. }
  6044. #u54894 {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:0px;
  6050. height:0px;
  6051. }
  6052. #u54895_div {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:30px;
  6058. height:30px;
  6059. background:inherit;
  6060. background-color:rgba(24, 144, 255, 1);
  6061. border-radius:4px;
  6062. filter:drop-shadow(none);
  6063. transition:none;
  6064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6065. font-weight:400;
  6066. font-style:normal;
  6067. font-size:12px;
  6068. color:#FFFFFF;
  6069. }
  6070. #u54895 {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:957px;
  6074. top:677px;
  6075. width:30px;
  6076. height:30px;
  6077. display:flex;
  6078. transition:none;
  6079. transform-origin:50% 50%;
  6080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6081. font-weight:400;
  6082. font-style:normal;
  6083. font-size:12px;
  6084. color:#FFFFFF;
  6085. }
  6086. #u54895 .text {
  6087. position:absolute;
  6088. align-self:center;
  6089. padding:2px 2px 2px 2px;
  6090. box-sizing:border-box;
  6091. width:100%;
  6092. }
  6093. #u54895_text {
  6094. border-width:0px;
  6095. word-wrap:break-word;
  6096. text-transform:none;
  6097. }
  6098. #u54896 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:0px;
  6104. height:0px;
  6105. }
  6106. #u54897 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:979px;
  6110. top:699px;
  6111. width:9px;
  6112. height:9px;
  6113. display:flex;
  6114. transition:none;
  6115. }
  6116. #u54897 .text {
  6117. position:absolute;
  6118. align-self:center;
  6119. padding:2px 2px 2px 2px;
  6120. box-sizing:border-box;
  6121. width:100%;
  6122. }
  6123. #u54897_img {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:0px;
  6127. top:0px;
  6128. width:9px;
  6129. height:9px;
  6130. }
  6131. #u54897_text {
  6132. border-width:0px;
  6133. word-wrap:break-word;
  6134. text-transform:none;
  6135. visibility:hidden;
  6136. }
  6137. #u54898 {
  6138. border-width:0px;
  6139. position:absolute;
  6140. left:981px;
  6141. top:702px;
  6142. width:5px;
  6143. height:4px;
  6144. display:flex;
  6145. transition:none;
  6146. }
  6147. #u54898 .text {
  6148. position:absolute;
  6149. align-self:center;
  6150. padding:2px 2px 2px 2px;
  6151. box-sizing:border-box;
  6152. width:100%;
  6153. }
  6154. #u54898_img {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:5px;
  6160. height:4px;
  6161. }
  6162. #u54898_text {
  6163. border-width:0px;
  6164. word-wrap:break-word;
  6165. text-transform:none;
  6166. visibility:hidden;
  6167. }
  6168. #u54899_div {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:81px;
  6174. height:16px;
  6175. background:inherit;
  6176. background-color:rgba(242, 242, 242, 1);
  6177. border-radius:2px;
  6178. filter:drop-shadow(none);
  6179. transition:none;
  6180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6181. font-weight:400;
  6182. font-style:normal;
  6183. font-size:11px;
  6184. color:#AAAAAA;
  6185. }
  6186. #u54899 {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:995px;
  6190. top:796px;
  6191. width:81px;
  6192. height:16px;
  6193. display:flex;
  6194. transition:none;
  6195. transform-origin:50% 50%;
  6196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:11px;
  6200. color:#AAAAAA;
  6201. }
  6202. #u54899 .text {
  6203. position:absolute;
  6204. align-self:flex-start;
  6205. padding:0px 0px 0px 10px;
  6206. box-sizing:border-box;
  6207. width:100%;
  6208. }
  6209. #u54899_text {
  6210. border-width:0px;
  6211. word-wrap:break-word;
  6212. text-transform:none;
  6213. }
  6214. #u54900_div {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:0px;
  6218. top:0px;
  6219. width:103px;
  6220. height:24px;
  6221. background:inherit;
  6222. background-color:rgba(255, 255, 255, 0);
  6223. border-top:0px;
  6224. border-right:0px;
  6225. border-bottom:0px;
  6226. border-radius:0px;
  6227. border-top-left-radius:0px;
  6228. border-bottom-left-radius:0px;
  6229. filter:drop-shadow(none);
  6230. transition:none;
  6231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6232. font-weight:400;
  6233. font-style:normal;
  6234. font-size:10px;
  6235. color:#AAAAAA;
  6236. }
  6237. #u54900 {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:1162px;
  6241. top:745px;
  6242. width:103px;
  6243. height:24px;
  6244. display:flex;
  6245. transition:none;
  6246. transform-origin:50% 50%;
  6247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:10px;
  6251. color:#AAAAAA;
  6252. }
  6253. #u54900 .text {
  6254. position:absolute;
  6255. align-self:flex-start;
  6256. padding:5px 0px 5px 0px;
  6257. box-sizing:border-box;
  6258. width:100%;
  6259. }
  6260. #u54900_text {
  6261. border-width:0px;
  6262. white-space:nowrap;
  6263. text-transform:none;
  6264. }
  6265. #u54901_div {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:325px;
  6271. height:50px;
  6272. background:inherit;
  6273. background-color:rgba(255, 255, 255, 0);
  6274. border-left:0px;
  6275. border-top:0px;
  6276. border-right:0px;
  6277. border-radius:0px;
  6278. border-bottom-right-radius:0px;
  6279. border-bottom-left-radius:0px;
  6280. filter:drop-shadow(none);
  6281. transition:none;
  6282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:12px;
  6286. line-height:25px;
  6287. }
  6288. #u54901 {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:944px;
  6292. top:147px;
  6293. width:325px;
  6294. height:50px;
  6295. display:flex;
  6296. transition:none;
  6297. transform-origin:50% 50%;
  6298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6299. font-weight:400;
  6300. font-style:normal;
  6301. font-size:12px;
  6302. line-height:25px;
  6303. }
  6304. #u54901 .text {
  6305. position:absolute;
  6306. align-self:flex-start;
  6307. padding:0px 0px 0px 0px;
  6308. box-sizing:border-box;
  6309. width:100%;
  6310. }
  6311. #u54901_text {
  6312. border-width:0px;
  6313. word-wrap:break-word;
  6314. text-transform:none;
  6315. }
  6316. #u54902_div {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:375px;
  6322. height:396px;
  6323. background:inherit;
  6324. background-color:rgba(255, 255, 255, 1);
  6325. border-left:0px;
  6326. border-top:0px;
  6327. border-right:0px;
  6328. border-radius:0px;
  6329. border-bottom-right-radius:0px;
  6330. border-bottom-left-radius:0px;
  6331. filter:drop-shadow(none);
  6332. transition:none;
  6333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6334. font-weight:400;
  6335. font-style:normal;
  6336. }
  6337. #u54902 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:917px;
  6341. top:217px;
  6342. width:375px;
  6343. height:396px;
  6344. display:flex;
  6345. transition:none;
  6346. transform-origin:50% 50%;
  6347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6348. font-weight:400;
  6349. font-style:normal;
  6350. }
  6351. #u54902 .text {
  6352. position:absolute;
  6353. align-self:center;
  6354. padding:2px 2px 2px 2px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u54902_text {
  6359. border-width:0px;
  6360. word-wrap:break-word;
  6361. text-transform:none;
  6362. }
  6363. #u54903 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:0px;
  6369. height:0px;
  6370. }
  6371. #u54904 {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:1346px;
  6375. top:0px;
  6376. width:433px;
  6377. height:865px;
  6378. }
  6379. #u54905 {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:0px;
  6383. top:0px;
  6384. width:433px;
  6385. height:865px;
  6386. display:flex;
  6387. transition:none;
  6388. }
  6389. #u54905 .text {
  6390. position:absolute;
  6391. align-self:center;
  6392. padding:2px 2px 2px 2px;
  6393. box-sizing:border-box;
  6394. width:100%;
  6395. }
  6396. #u54905_img {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:433px;
  6402. height:865px;
  6403. }
  6404. #u54905_text {
  6405. border-width:0px;
  6406. word-wrap:break-word;
  6407. text-transform:none;
  6408. visibility:hidden;
  6409. }
  6410. #u54906_div {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:0px;
  6414. top:0px;
  6415. width:375px;
  6416. height:40px;
  6417. background:inherit;
  6418. background-color:rgba(255, 255, 255, 1);
  6419. box-sizing:border-box;
  6420. border-width:1px;
  6421. border-style:solid;
  6422. border-color:rgba(215, 215, 215, 1);
  6423. border-left:0px;
  6424. border-top:0px;
  6425. border-right:0px;
  6426. border-radius:0px;
  6427. border-bottom-right-radius:0px;
  6428. border-bottom-left-radius:0px;
  6429. filter:drop-shadow(none);
  6430. transition:none;
  6431. }
  6432. #u54906 {
  6433. border-width:0px;
  6434. position:absolute;
  6435. left:29px;
  6436. top:67px;
  6437. width:375px;
  6438. height:40px;
  6439. display:flex;
  6440. transition:none;
  6441. transform-origin:50% 50%;
  6442. }
  6443. #u54906 .text {
  6444. position:absolute;
  6445. align-self:center;
  6446. padding:2px 2px 2px 2px;
  6447. box-sizing:border-box;
  6448. width:100%;
  6449. }
  6450. #u54906_text {
  6451. border-width:0px;
  6452. word-wrap:break-word;
  6453. text-transform:none;
  6454. visibility:hidden;
  6455. }
  6456. #u54907 {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:0px;
  6462. height:0px;
  6463. }
  6464. #u54908_div {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:0px;
  6468. top:0px;
  6469. width:88px;
  6470. height:32px;
  6471. background:inherit;
  6472. background-color:rgba(255, 255, 255, 1);
  6473. box-sizing:border-box;
  6474. border-width:1px;
  6475. border-style:solid;
  6476. border-color:rgba(242, 242, 242, 1);
  6477. border-radius:33px;
  6478. filter:drop-shadow(none);
  6479. transition:none;
  6480. }
  6481. #u54908 {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:309px;
  6485. top:71px;
  6486. width:88px;
  6487. height:32px;
  6488. display:flex;
  6489. transition:none;
  6490. transform-origin:50% 50%;
  6491. }
  6492. #u54908 .text {
  6493. position:absolute;
  6494. align-self:center;
  6495. padding:2px 2px 2px 2px;
  6496. box-sizing:border-box;
  6497. width:100%;
  6498. }
  6499. #u54908_text {
  6500. border-width:0px;
  6501. word-wrap:break-word;
  6502. text-transform:none;
  6503. visibility:hidden;
  6504. }
  6505. #u54909 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:0px;
  6511. height:0px;
  6512. }
  6513. #u54910 {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:372px;
  6517. top:78px;
  6518. width:18px;
  6519. height:18px;
  6520. display:flex;
  6521. transition:none;
  6522. }
  6523. #u54910 .text {
  6524. position:absolute;
  6525. align-self:center;
  6526. padding:2px 2px 2px 2px;
  6527. box-sizing:border-box;
  6528. width:100%;
  6529. }
  6530. #u54910_img {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:18px;
  6536. height:18px;
  6537. }
  6538. #u54910_text {
  6539. border-width:0px;
  6540. word-wrap:break-word;
  6541. text-transform:none;
  6542. visibility:hidden;
  6543. }
  6544. #u54911 {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:378px;
  6548. top:84px;
  6549. width:6px;
  6550. height:6px;
  6551. display:flex;
  6552. transition:none;
  6553. }
  6554. #u54911 .text {
  6555. position:absolute;
  6556. align-self:center;
  6557. padding:2px 2px 2px 2px;
  6558. box-sizing:border-box;
  6559. width:100%;
  6560. }
  6561. #u54911_img {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:6px;
  6567. height:6px;
  6568. }
  6569. #u54911_text {
  6570. border-width:0px;
  6571. word-wrap:break-word;
  6572. text-transform:none;
  6573. visibility:hidden;
  6574. }
  6575. #u54912 {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:0px;
  6581. height:0px;
  6582. }
  6583. #u54913 {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:323px;
  6587. top:85px;
  6588. width:5px;
  6589. height:5px;
  6590. display:flex;
  6591. transition:none;
  6592. }
  6593. #u54913 .text {
  6594. position:absolute;
  6595. align-self:center;
  6596. padding:2px 2px 2px 2px;
  6597. box-sizing:border-box;
  6598. width:100%;
  6599. }
  6600. #u54913_img {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:5px;
  6606. height:5px;
  6607. }
  6608. #u54913_text {
  6609. border-width:0px;
  6610. word-wrap:break-word;
  6611. text-transform:none;
  6612. visibility:hidden;
  6613. }
  6614. #u54914 {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:339px;
  6618. top:85px;
  6619. width:5px;
  6620. height:5px;
  6621. display:flex;
  6622. transition:none;
  6623. }
  6624. #u54914 .text {
  6625. position:absolute;
  6626. align-self:center;
  6627. padding:2px 2px 2px 2px;
  6628. box-sizing:border-box;
  6629. width:100%;
  6630. }
  6631. #u54914_img {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:5px;
  6637. height:5px;
  6638. }
  6639. #u54914_text {
  6640. border-width:0px;
  6641. word-wrap:break-word;
  6642. text-transform:none;
  6643. visibility:hidden;
  6644. }
  6645. #u54915 {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:330px;
  6649. top:84px;
  6650. width:7px;
  6651. height:7px;
  6652. display:flex;
  6653. transition:none;
  6654. }
  6655. #u54915 .text {
  6656. position:absolute;
  6657. align-self:center;
  6658. padding:2px 2px 2px 2px;
  6659. box-sizing:border-box;
  6660. width:100%;
  6661. }
  6662. #u54915_img {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:0px;
  6666. top:0px;
  6667. width:7px;
  6668. height:7px;
  6669. }
  6670. #u54915_text {
  6671. border-width:0px;
  6672. word-wrap:break-word;
  6673. text-transform:none;
  6674. visibility:hidden;
  6675. }
  6676. #u54916 {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:347px;
  6680. top:87px;
  6681. width:18px;
  6682. height:1px;
  6683. display:flex;
  6684. -webkit-transform:rotate(90deg);
  6685. -moz-transform:rotate(90deg);
  6686. -ms-transform:rotate(90deg);
  6687. transform:rotate(90deg);
  6688. transition:none;
  6689. }
  6690. #u54916 .text {
  6691. position:absolute;
  6692. align-self:center;
  6693. padding:2px 2px 2px 2px;
  6694. box-sizing:border-box;
  6695. width:100%;
  6696. }
  6697. #u54916_img {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:19px;
  6703. height:2px;
  6704. }
  6705. #u54916_text {
  6706. border-width:0px;
  6707. word-wrap:break-word;
  6708. text-transform:none;
  6709. visibility:hidden;
  6710. }
  6711. #u54917 {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:29px;
  6715. top:24px;
  6716. width:375px;
  6717. height:44px;
  6718. display:flex;
  6719. transition:none;
  6720. }
  6721. #u54917 .text {
  6722. position:absolute;
  6723. align-self:center;
  6724. padding:2px 2px 2px 2px;
  6725. box-sizing:border-box;
  6726. width:100%;
  6727. }
  6728. #u54917_img {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:0px;
  6732. top:0px;
  6733. width:375px;
  6734. height:44px;
  6735. }
  6736. #u54917_text {
  6737. border-width:0px;
  6738. word-wrap:break-word;
  6739. text-transform:none;
  6740. visibility:hidden;
  6741. }
  6742. #u54918_div {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:0px;
  6746. top:0px;
  6747. width:375px;
  6748. height:50px;
  6749. background:inherit;
  6750. background-color:rgba(255, 255, 255, 1);
  6751. box-sizing:border-box;
  6752. border-width:1px;
  6753. border-style:solid;
  6754. border-color:rgba(242, 242, 242, 1);
  6755. border-radius:26px;
  6756. border-top-left-radius:0px;
  6757. border-top-right-radius:0px;
  6758. filter:drop-shadow(none);
  6759. transition:none;
  6760. }
  6761. #u54918 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:29px;
  6765. top:788px;
  6766. width:375px;
  6767. height:50px;
  6768. display:flex;
  6769. transition:none;
  6770. transform-origin:50% 50%;
  6771. }
  6772. #u54918 .text {
  6773. position:absolute;
  6774. align-self:center;
  6775. padding:2px 2px 2px 2px;
  6776. box-sizing:border-box;
  6777. width:100%;
  6778. }
  6779. #u54918_text {
  6780. border-width:0px;
  6781. word-wrap:break-word;
  6782. text-transform:none;
  6783. visibility:hidden;
  6784. }
  6785. #u54919 {
  6786. border-width:0px;
  6787. position:absolute;
  6788. left:0px;
  6789. top:0px;
  6790. width:0px;
  6791. height:0px;
  6792. }
  6793. #u54920 {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:69px;
  6797. top:792px;
  6798. width:24px;
  6799. height:24px;
  6800. display:flex;
  6801. transition:none;
  6802. font-size:8px;
  6803. }
  6804. #u54920 .text {
  6805. position:absolute;
  6806. align-self:center;
  6807. padding:2px 2px 2px 2px;
  6808. box-sizing:border-box;
  6809. width:100%;
  6810. }
  6811. #u54920_img {
  6812. border-width:0px;
  6813. position:absolute;
  6814. left:0px;
  6815. top:0px;
  6816. width:24px;
  6817. height:24px;
  6818. }
  6819. #u54920_text {
  6820. border-width:0px;
  6821. word-wrap:break-word;
  6822. text-transform:none;
  6823. }
  6824. #u54921_div {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:0px;
  6828. top:0px;
  6829. width:25px;
  6830. height:17px;
  6831. background:inherit;
  6832. background-color:rgba(255, 255, 255, 0);
  6833. border-radius:0px;
  6834. filter:drop-shadow(none);
  6835. transition:none;
  6836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6837. font-weight:400;
  6838. font-style:normal;
  6839. font-size:12px;
  6840. }
  6841. #u54921 {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:69px;
  6845. top:817px;
  6846. width:25px;
  6847. height:17px;
  6848. display:flex;
  6849. transition:none;
  6850. transform-origin:50% 50%;
  6851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6852. font-weight:400;
  6853. font-style:normal;
  6854. font-size:12px;
  6855. }
  6856. #u54921 .text {
  6857. position:absolute;
  6858. align-self:flex-start;
  6859. padding:0px 0px 0px 0px;
  6860. box-sizing:border-box;
  6861. width:100%;
  6862. }
  6863. #u54921_text {
  6864. border-width:0px;
  6865. white-space:nowrap;
  6866. text-transform:none;
  6867. }
  6868. #u54922 {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:0px;
  6874. height:0px;
  6875. }
  6876. #u54923 {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:339px;
  6880. top:794px;
  6881. width:24px;
  6882. height:24px;
  6883. display:flex;
  6884. transition:none;
  6885. font-size:8px;
  6886. }
  6887. #u54923 .text {
  6888. position:absolute;
  6889. align-self:center;
  6890. padding:2px 2px 2px 2px;
  6891. box-sizing:border-box;
  6892. width:100%;
  6893. }
  6894. #u54923_img {
  6895. border-width:0px;
  6896. position:absolute;
  6897. left:0px;
  6898. top:0px;
  6899. width:24px;
  6900. height:24px;
  6901. }
  6902. #u54923_text {
  6903. border-width:0px;
  6904. word-wrap:break-word;
  6905. text-transform:none;
  6906. }
  6907. #u54924_div {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:25px;
  6913. height:17px;
  6914. background:inherit;
  6915. background-color:rgba(255, 255, 255, 0);
  6916. border-radius:0px;
  6917. filter:drop-shadow(none);
  6918. transition:none;
  6919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6920. font-weight:400;
  6921. font-style:normal;
  6922. font-size:12px;
  6923. }
  6924. #u54924 {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:339px;
  6928. top:819px;
  6929. width:25px;
  6930. height:17px;
  6931. display:flex;
  6932. transition:none;
  6933. transform-origin:50% 50%;
  6934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6935. font-weight:400;
  6936. font-style:normal;
  6937. font-size:12px;
  6938. }
  6939. #u54924 .text {
  6940. position:absolute;
  6941. align-self:flex-start;
  6942. padding:0px 0px 0px 0px;
  6943. box-sizing:border-box;
  6944. width:100%;
  6945. }
  6946. #u54924_text {
  6947. border-width:0px;
  6948. white-space:nowrap;
  6949. text-transform:none;
  6950. }
  6951. #u54925_div {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:0px;
  6955. top:0px;
  6956. width:375px;
  6957. height:681px;
  6958. background:inherit;
  6959. background-color:rgba(242, 242, 242, 0.4627450980392157);
  6960. border-radius:0px;
  6961. filter:drop-shadow(none);
  6962. transition:none;
  6963. }
  6964. #u54925 {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:29px;
  6968. top:107px;
  6969. width:375px;
  6970. height:681px;
  6971. display:flex;
  6972. transition:none;
  6973. transform-origin:50% 50%;
  6974. }
  6975. #u54925 .text {
  6976. position:absolute;
  6977. align-self:center;
  6978. padding:2px 2px 2px 2px;
  6979. box-sizing:border-box;
  6980. width:100%;
  6981. }
  6982. #u54925_text {
  6983. border-width:0px;
  6984. word-wrap:break-word;
  6985. text-transform:none;
  6986. visibility:hidden;
  6987. }
  6988. #u54926 {
  6989. border-width:0px;
  6990. position:absolute;
  6991. left:0px;
  6992. top:0px;
  6993. width:0px;
  6994. height:0px;
  6995. }
  6996. #u54927 {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:251px;
  7000. top:792px;
  7001. width:24px;
  7002. height:24px;
  7003. display:flex;
  7004. transition:none;
  7005. font-size:8px;
  7006. }
  7007. #u54927 .text {
  7008. position:absolute;
  7009. align-self:center;
  7010. padding:2px 2px 2px 2px;
  7011. box-sizing:border-box;
  7012. width:100%;
  7013. }
  7014. #u54927_img {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:24px;
  7020. height:24px;
  7021. }
  7022. #u54927_text {
  7023. border-width:0px;
  7024. word-wrap:break-word;
  7025. text-transform:none;
  7026. }
  7027. #u54928_div {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:0px;
  7031. top:0px;
  7032. width:37px;
  7033. height:17px;
  7034. background:inherit;
  7035. background-color:rgba(255, 255, 255, 0);
  7036. border-radius:0px;
  7037. filter:drop-shadow(none);
  7038. transition:none;
  7039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7040. font-weight:400;
  7041. font-style:normal;
  7042. font-size:12px;
  7043. }
  7044. #u54928 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:245px;
  7048. top:817px;
  7049. width:37px;
  7050. height:17px;
  7051. display:flex;
  7052. transition:none;
  7053. transform-origin:50% 50%;
  7054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7055. font-weight:400;
  7056. font-style:normal;
  7057. font-size:12px;
  7058. }
  7059. #u54928 .text {
  7060. position:absolute;
  7061. align-self:flex-start;
  7062. padding:0px 0px 0px 0px;
  7063. box-sizing:border-box;
  7064. width:100%;
  7065. }
  7066. #u54928_text {
  7067. border-width:0px;
  7068. white-space:nowrap;
  7069. text-transform:none;
  7070. }
  7071. #u54929 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:0px;
  7075. top:0px;
  7076. width:0px;
  7077. height:0px;
  7078. }
  7079. #u54930 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:157px;
  7083. top:792px;
  7084. width:24px;
  7085. height:24px;
  7086. display:flex;
  7087. transition:none;
  7088. font-size:8px;
  7089. }
  7090. #u54930 .text {
  7091. position:absolute;
  7092. align-self:center;
  7093. padding:2px 2px 2px 2px;
  7094. box-sizing:border-box;
  7095. width:100%;
  7096. }
  7097. #u54930_img {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:24px;
  7103. height:24px;
  7104. }
  7105. #u54930_text {
  7106. border-width:0px;
  7107. word-wrap:break-word;
  7108. text-transform:none;
  7109. }
  7110. #u54931_div {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:0px;
  7114. top:0px;
  7115. width:37px;
  7116. height:17px;
  7117. background:inherit;
  7118. background-color:rgba(255, 255, 255, 0);
  7119. border-radius:0px;
  7120. filter:drop-shadow(none);
  7121. transition:none;
  7122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7123. font-weight:400;
  7124. font-style:normal;
  7125. font-size:12px;
  7126. }
  7127. #u54931 {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:151px;
  7131. top:817px;
  7132. width:37px;
  7133. height:17px;
  7134. display:flex;
  7135. transition:none;
  7136. transform-origin:50% 50%;
  7137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7138. font-weight:400;
  7139. font-style:normal;
  7140. font-size:12px;
  7141. }
  7142. #u54931 .text {
  7143. position:absolute;
  7144. align-self:flex-start;
  7145. padding:0px 0px 0px 0px;
  7146. box-sizing:border-box;
  7147. width:100%;
  7148. }
  7149. #u54931_text {
  7150. border-width:0px;
  7151. white-space:nowrap;
  7152. text-transform:none;
  7153. }
  7154. #u54932_div {
  7155. border-width:0px;
  7156. position:absolute;
  7157. left:0px;
  7158. top:0px;
  7159. width:375px;
  7160. height:734px;
  7161. background:inherit;
  7162. background-color:rgba(242, 242, 242, 0.996078431372549);
  7163. border-top:0px;
  7164. border-radius:28px;
  7165. border-top-left-radius:0px;
  7166. border-top-right-radius:0px;
  7167. filter:drop-shadow(none);
  7168. transition:none;
  7169. }
  7170. #u54932 {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:1375px;
  7174. top:107px;
  7175. width:375px;
  7176. height:734px;
  7177. display:flex;
  7178. transition:none;
  7179. transform-origin:50% 50%;
  7180. }
  7181. #u54932 .text {
  7182. position:absolute;
  7183. align-self:center;
  7184. padding:2px 2px 2px 2px;
  7185. box-sizing:border-box;
  7186. width:100%;
  7187. }
  7188. #u54932_text {
  7189. border-width:0px;
  7190. word-wrap:break-word;
  7191. text-transform:none;
  7192. visibility:hidden;
  7193. }
  7194. #u54933_div {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:0px;
  7198. top:0px;
  7199. width:375px;
  7200. height:40px;
  7201. background:inherit;
  7202. background-color:rgba(255, 255, 255, 1);
  7203. box-sizing:border-box;
  7204. border-width:1px;
  7205. border-style:solid;
  7206. border-color:rgba(215, 215, 215, 1);
  7207. border-left:0px;
  7208. border-top:0px;
  7209. border-right:0px;
  7210. border-radius:0px;
  7211. border-bottom-right-radius:0px;
  7212. border-bottom-left-radius:0px;
  7213. filter:drop-shadow(none);
  7214. transition:none;
  7215. }
  7216. #u54933 {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:1375px;
  7220. top:67px;
  7221. width:375px;
  7222. height:40px;
  7223. display:flex;
  7224. transition:none;
  7225. transform-origin:50% 50%;
  7226. }
  7227. #u54933 .text {
  7228. position:absolute;
  7229. align-self:center;
  7230. padding:2px 2px 2px 2px;
  7231. box-sizing:border-box;
  7232. width:100%;
  7233. }
  7234. #u54933_text {
  7235. border-width:0px;
  7236. word-wrap:break-word;
  7237. text-transform:none;
  7238. visibility:hidden;
  7239. }
  7240. #u54934 {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:1375px;
  7244. top:24px;
  7245. width:375px;
  7246. height:44px;
  7247. display:flex;
  7248. transition:none;
  7249. }
  7250. #u54934 .text {
  7251. position:absolute;
  7252. align-self:center;
  7253. padding:2px 2px 2px 2px;
  7254. box-sizing:border-box;
  7255. width:100%;
  7256. }
  7257. #u54934_img {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:375px;
  7263. height:44px;
  7264. }
  7265. #u54934_text {
  7266. border-width:0px;
  7267. word-wrap:break-word;
  7268. text-transform:none;
  7269. visibility:hidden;
  7270. }
  7271. #u54935 {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:0px;
  7275. top:0px;
  7276. width:0px;
  7277. height:0px;
  7278. }
  7279. #u54936_div {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:0px;
  7283. top:0px;
  7284. width:88px;
  7285. height:32px;
  7286. background:inherit;
  7287. background-color:rgba(255, 255, 255, 1);
  7288. box-sizing:border-box;
  7289. border-width:1px;
  7290. border-style:solid;
  7291. border-color:rgba(242, 242, 242, 1);
  7292. border-radius:33px;
  7293. filter:drop-shadow(none);
  7294. transition:none;
  7295. }
  7296. #u54936 {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:1655px;
  7300. top:71px;
  7301. width:88px;
  7302. height:32px;
  7303. display:flex;
  7304. transition:none;
  7305. transform-origin:50% 50%;
  7306. }
  7307. #u54936 .text {
  7308. position:absolute;
  7309. align-self:center;
  7310. padding:2px 2px 2px 2px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u54936_text {
  7315. border-width:0px;
  7316. word-wrap:break-word;
  7317. text-transform:none;
  7318. visibility:hidden;
  7319. }
  7320. #u54937 {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:0px;
  7326. height:0px;
  7327. }
  7328. #u54938 {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:1718px;
  7332. top:78px;
  7333. width:18px;
  7334. height:18px;
  7335. display:flex;
  7336. transition:none;
  7337. }
  7338. #u54938 .text {
  7339. position:absolute;
  7340. align-self:center;
  7341. padding:2px 2px 2px 2px;
  7342. box-sizing:border-box;
  7343. width:100%;
  7344. }
  7345. #u54938_img {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:18px;
  7351. height:18px;
  7352. }
  7353. #u54938_text {
  7354. border-width:0px;
  7355. word-wrap:break-word;
  7356. text-transform:none;
  7357. visibility:hidden;
  7358. }
  7359. #u54939 {
  7360. border-width:0px;
  7361. position:absolute;
  7362. left:1724px;
  7363. top:84px;
  7364. width:6px;
  7365. height:6px;
  7366. display:flex;
  7367. transition:none;
  7368. }
  7369. #u54939 .text {
  7370. position:absolute;
  7371. align-self:center;
  7372. padding:2px 2px 2px 2px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u54939_img {
  7377. border-width:0px;
  7378. position:absolute;
  7379. left:0px;
  7380. top:0px;
  7381. width:6px;
  7382. height:6px;
  7383. }
  7384. #u54939_text {
  7385. border-width:0px;
  7386. word-wrap:break-word;
  7387. text-transform:none;
  7388. visibility:hidden;
  7389. }
  7390. #u54940 {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:0px;
  7394. top:0px;
  7395. width:0px;
  7396. height:0px;
  7397. }
  7398. #u54941 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:1669px;
  7402. top:85px;
  7403. width:5px;
  7404. height:5px;
  7405. display:flex;
  7406. transition:none;
  7407. }
  7408. #u54941 .text {
  7409. position:absolute;
  7410. align-self:center;
  7411. padding:2px 2px 2px 2px;
  7412. box-sizing:border-box;
  7413. width:100%;
  7414. }
  7415. #u54941_img {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:5px;
  7421. height:5px;
  7422. }
  7423. #u54941_text {
  7424. border-width:0px;
  7425. word-wrap:break-word;
  7426. text-transform:none;
  7427. visibility:hidden;
  7428. }
  7429. #u54942 {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:1685px;
  7433. top:85px;
  7434. width:5px;
  7435. height:5px;
  7436. display:flex;
  7437. transition:none;
  7438. }
  7439. #u54942 .text {
  7440. position:absolute;
  7441. align-self:center;
  7442. padding:2px 2px 2px 2px;
  7443. box-sizing:border-box;
  7444. width:100%;
  7445. }
  7446. #u54942_img {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:0px;
  7450. top:0px;
  7451. width:5px;
  7452. height:5px;
  7453. }
  7454. #u54942_text {
  7455. border-width:0px;
  7456. word-wrap:break-word;
  7457. text-transform:none;
  7458. visibility:hidden;
  7459. }
  7460. #u54943 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:1676px;
  7464. top:84px;
  7465. width:7px;
  7466. height:7px;
  7467. display:flex;
  7468. transition:none;
  7469. }
  7470. #u54943 .text {
  7471. position:absolute;
  7472. align-self:center;
  7473. padding:2px 2px 2px 2px;
  7474. box-sizing:border-box;
  7475. width:100%;
  7476. }
  7477. #u54943_img {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:7px;
  7483. height:7px;
  7484. }
  7485. #u54943_text {
  7486. border-width:0px;
  7487. word-wrap:break-word;
  7488. text-transform:none;
  7489. visibility:hidden;
  7490. }
  7491. #u54944 {
  7492. border-width:0px;
  7493. position:absolute;
  7494. left:1693px;
  7495. top:87px;
  7496. width:18px;
  7497. height:1px;
  7498. display:flex;
  7499. -webkit-transform:rotate(90deg);
  7500. -moz-transform:rotate(90deg);
  7501. -ms-transform:rotate(90deg);
  7502. transform:rotate(90deg);
  7503. transition:none;
  7504. }
  7505. #u54944 .text {
  7506. position:absolute;
  7507. align-self:center;
  7508. padding:2px 2px 2px 2px;
  7509. box-sizing:border-box;
  7510. width:100%;
  7511. }
  7512. #u54944_img {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:19px;
  7518. height:2px;
  7519. }
  7520. #u54944_text {
  7521. border-width:0px;
  7522. word-wrap:break-word;
  7523. text-transform:none;
  7524. visibility:hidden;
  7525. }
  7526. #u54945_div {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:65px;
  7532. height:22px;
  7533. background:inherit;
  7534. background-color:rgba(255, 255, 255, 0);
  7535. border-radius:0px;
  7536. filter:drop-shadow(none);
  7537. transition:none;
  7538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7539. font-weight:400;
  7540. font-style:normal;
  7541. font-size:16px;
  7542. color:#000000;
  7543. }
  7544. #u54945 {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:1404px;
  7548. top:76px;
  7549. width:65px;
  7550. height:22px;
  7551. display:flex;
  7552. transition:none;
  7553. transform-origin:50% 50%;
  7554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7555. font-weight:400;
  7556. font-style:normal;
  7557. font-size:16px;
  7558. color:#000000;
  7559. }
  7560. #u54945 .text {
  7561. position:absolute;
  7562. align-self:flex-start;
  7563. padding:0px 0px 0px 0px;
  7564. box-sizing:border-box;
  7565. width:100%;
  7566. }
  7567. #u54945_text {
  7568. border-width:0px;
  7569. white-space:nowrap;
  7570. text-transform:none;
  7571. }
  7572. #u54946_div {
  7573. border-width:0px;
  7574. position:absolute;
  7575. left:0px;
  7576. top:0px;
  7577. width:12px;
  7578. height:12px;
  7579. background:inherit;
  7580. background-color:rgba(255, 255, 255, 0);
  7581. box-sizing:border-box;
  7582. border-width:2px;
  7583. border-style:solid;
  7584. border-color:rgba(51, 51, 51, 1);
  7585. border-right:0px;
  7586. border-bottom:0px;
  7587. border-radius:0px;
  7588. border-top-right-radius:0px;
  7589. border-bottom-left-radius:0px;
  7590. filter:drop-shadow(none);
  7591. transition:none;
  7592. }
  7593. #u54946 {
  7594. border-width:0px;
  7595. position:absolute;
  7596. left:1390px;
  7597. top:81px;
  7598. width:12px;
  7599. height:12px;
  7600. display:flex;
  7601. -webkit-transform:rotate(315deg);
  7602. -moz-transform:rotate(315deg);
  7603. -ms-transform:rotate(315deg);
  7604. transform:rotate(315deg);
  7605. transition:none;
  7606. transform-origin:50% 50%;
  7607. }
  7608. #u54946 .text {
  7609. position:absolute;
  7610. align-self:center;
  7611. padding:2px 2px 2px 2px;
  7612. box-sizing:border-box;
  7613. width:100%;
  7614. }
  7615. #u54946_text {
  7616. border-width:0px;
  7617. word-wrap:break-word;
  7618. text-transform:none;
  7619. visibility:hidden;
  7620. }
  7621. #u54947_div {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:375px;
  7627. height:100px;
  7628. background:inherit;
  7629. background-color:rgba(255, 255, 255, 1);
  7630. border-left:0px;
  7631. border-top:0px;
  7632. border-right:0px;
  7633. border-radius:0px;
  7634. border-bottom-right-radius:0px;
  7635. border-bottom-left-radius:0px;
  7636. filter:drop-shadow(none);
  7637. transition:none;
  7638. }
  7639. #u54947 {
  7640. border-width:0px;
  7641. position:absolute;
  7642. left:1375px;
  7643. top:107px;
  7644. width:375px;
  7645. height:100px;
  7646. display:flex;
  7647. transition:none;
  7648. transform-origin:50% 50%;
  7649. }
  7650. #u54947 .text {
  7651. position:absolute;
  7652. align-self:center;
  7653. padding:2px 2px 2px 2px;
  7654. box-sizing:border-box;
  7655. width:100%;
  7656. }
  7657. #u54947_text {
  7658. border-width:0px;
  7659. word-wrap:break-word;
  7660. text-transform:none;
  7661. visibility:hidden;
  7662. }
  7663. #u54948_div {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:0px;
  7667. top:0px;
  7668. width:197px;
  7669. height:30px;
  7670. background:inherit;
  7671. background-color:rgba(255, 255, 255, 0);
  7672. border-left:0px;
  7673. border-top:0px;
  7674. border-right:0px;
  7675. border-radius:0px;
  7676. border-bottom-right-radius:0px;
  7677. border-bottom-left-radius:0px;
  7678. filter:drop-shadow(none);
  7679. transition:none;
  7680. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7681. font-weight:500;
  7682. font-style:normal;
  7683. font-size:14px;
  7684. line-height:30px;
  7685. }
  7686. #u54948 {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:1402px;
  7690. top:117px;
  7691. width:197px;
  7692. height:30px;
  7693. display:flex;
  7694. transition:none;
  7695. transform-origin:50% 50%;
  7696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7697. font-weight:500;
  7698. font-style:normal;
  7699. font-size:14px;
  7700. line-height:30px;
  7701. }
  7702. #u54948 .text {
  7703. position:absolute;
  7704. align-self:flex-start;
  7705. padding:0px 0px 0px 0px;
  7706. box-sizing:border-box;
  7707. width:100%;
  7708. }
  7709. #u54948_text {
  7710. border-width:0px;
  7711. white-space:nowrap;
  7712. text-transform:none;
  7713. }
  7714. #u54949 {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:0px;
  7718. top:0px;
  7719. width:0px;
  7720. height:0px;
  7721. }
  7722. #u54950_div {
  7723. border-width:0px;
  7724. position:absolute;
  7725. left:0px;
  7726. top:0px;
  7727. width:355px;
  7728. height:200px;
  7729. background:inherit;
  7730. background-color:rgba(255, 255, 255, 1);
  7731. border-radius:0px;
  7732. filter:drop-shadow(none);
  7733. transition:none;
  7734. }
  7735. #u54950 {
  7736. border-width:0px;
  7737. position:absolute;
  7738. left:1385px;
  7739. top:625px;
  7740. width:355px;
  7741. height:200px;
  7742. display:flex;
  7743. transition:none;
  7744. transform-origin:50% 50%;
  7745. }
  7746. #u54950 .text {
  7747. position:absolute;
  7748. align-self:center;
  7749. padding:2px 2px 2px 2px;
  7750. box-sizing:border-box;
  7751. width:100%;
  7752. }
  7753. #u54950_text {
  7754. border-width:0px;
  7755. word-wrap:break-word;
  7756. text-transform:none;
  7757. visibility:hidden;
  7758. }
  7759. #u54951_div {
  7760. border-width:0px;
  7761. position:absolute;
  7762. left:0px;
  7763. top:0px;
  7764. width:103px;
  7765. height:24px;
  7766. background:inherit;
  7767. background-color:rgba(255, 255, 255, 0);
  7768. border-top:0px;
  7769. border-right:0px;
  7770. border-bottom:0px;
  7771. border-radius:0px;
  7772. border-top-left-radius:0px;
  7773. border-bottom-left-radius:0px;
  7774. filter:drop-shadow(none);
  7775. transition:none;
  7776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7777. font-weight:400;
  7778. font-style:normal;
  7779. font-size:10px;
  7780. color:#AAAAAA;
  7781. }
  7782. #u54951 {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:1620px;
  7786. top:675px;
  7787. width:103px;
  7788. height:24px;
  7789. display:flex;
  7790. transition:none;
  7791. transform-origin:50% 50%;
  7792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7793. font-weight:400;
  7794. font-style:normal;
  7795. font-size:10px;
  7796. color:#AAAAAA;
  7797. }
  7798. #u54951 .text {
  7799. position:absolute;
  7800. align-self:flex-start;
  7801. padding:5px 0px 5px 0px;
  7802. box-sizing:border-box;
  7803. width:100%;
  7804. }
  7805. #u54951_text {
  7806. border-width:0px;
  7807. white-space:nowrap;
  7808. text-transform:none;
  7809. }
  7810. #u54952 {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:0px;
  7816. height:0px;
  7817. }
  7818. #u54953_div {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:0px;
  7822. top:0px;
  7823. width:43px;
  7824. height:30px;
  7825. background:inherit;
  7826. background-color:rgba(255, 255, 255, 0);
  7827. border-top:0px;
  7828. border-right:0px;
  7829. border-bottom:0px;
  7830. border-radius:0px;
  7831. border-top-left-radius:0px;
  7832. border-bottom-left-radius:0px;
  7833. filter:drop-shadow(none);
  7834. transition:none;
  7835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7836. font-weight:400;
  7837. font-style:normal;
  7838. font-size:14px;
  7839. }
  7840. #u54953 {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:1453px;
  7844. top:677px;
  7845. width:43px;
  7846. height:30px;
  7847. display:flex;
  7848. transition:none;
  7849. transform-origin:50% 50%;
  7850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7851. font-weight:400;
  7852. font-style:normal;
  7853. font-size:14px;
  7854. }
  7855. #u54953 .text {
  7856. position:absolute;
  7857. align-self:flex-start;
  7858. padding:0px 0px 0px 0px;
  7859. box-sizing:border-box;
  7860. width:100%;
  7861. }
  7862. #u54953_text {
  7863. border-width:0px;
  7864. white-space:nowrap;
  7865. text-transform:none;
  7866. }
  7867. #u54954_div {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:0px;
  7871. top:0px;
  7872. width:63px;
  7873. height:16px;
  7874. background:inherit;
  7875. background-color:rgba(255, 255, 255, 0);
  7876. border-top:0px;
  7877. border-right:0px;
  7878. border-bottom:0px;
  7879. border-radius:0px;
  7880. border-top-left-radius:0px;
  7881. border-bottom-left-radius:0px;
  7882. filter:drop-shadow(none);
  7883. transition:none;
  7884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7885. font-weight:400;
  7886. font-style:normal;
  7887. font-size:11px;
  7888. color:#AAAAAA;
  7889. }
  7890. #u54954 {
  7891. border-width:0px;
  7892. position:absolute;
  7893. left:1453px;
  7894. top:705px;
  7895. width:63px;
  7896. height:16px;
  7897. display:flex;
  7898. transition:none;
  7899. transform-origin:50% 50%;
  7900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7901. font-weight:400;
  7902. font-style:normal;
  7903. font-size:11px;
  7904. color:#AAAAAA;
  7905. }
  7906. #u54954 .text {
  7907. position:absolute;
  7908. align-self:flex-start;
  7909. padding:0px 0px 0px 0px;
  7910. box-sizing:border-box;
  7911. width:100%;
  7912. }
  7913. #u54954_text {
  7914. border-width:0px;
  7915. white-space:nowrap;
  7916. text-transform:none;
  7917. }
  7918. #u54955_div {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:0px;
  7922. top:0px;
  7923. width:43px;
  7924. height:20px;
  7925. background:inherit;
  7926. background-color:rgba(255, 255, 255, 0);
  7927. border-top:0px;
  7928. border-right:0px;
  7929. border-bottom:0px;
  7930. border-radius:0px;
  7931. border-top-left-radius:0px;
  7932. border-bottom-left-radius:0px;
  7933. filter:drop-shadow(none);
  7934. transition:none;
  7935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7936. font-weight:400;
  7937. font-style:normal;
  7938. font-size:14px;
  7939. }
  7940. #u54955 {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:1453px;
  7944. top:747px;
  7945. width:43px;
  7946. height:20px;
  7947. display:flex;
  7948. transition:none;
  7949. transform-origin:50% 50%;
  7950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7951. font-weight:400;
  7952. font-style:normal;
  7953. font-size:14px;
  7954. }
  7955. #u54955 .text {
  7956. position:absolute;
  7957. align-self:flex-start;
  7958. padding:0px 0px 0px 0px;
  7959. box-sizing:border-box;
  7960. width:100%;
  7961. }
  7962. #u54955_text {
  7963. border-width:0px;
  7964. white-space:nowrap;
  7965. text-transform:none;
  7966. }
  7967. #u54956_div {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:0px;
  7971. top:0px;
  7972. width:63px;
  7973. height:16px;
  7974. background:inherit;
  7975. background-color:rgba(255, 255, 255, 0);
  7976. border-top:0px;
  7977. border-right:0px;
  7978. border-bottom:0px;
  7979. border-radius:0px;
  7980. border-top-left-radius:0px;
  7981. border-bottom-left-radius:0px;
  7982. filter:drop-shadow(none);
  7983. transition:none;
  7984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7985. font-weight:400;
  7986. font-style:normal;
  7987. font-size:11px;
  7988. color:#AAAAAA;
  7989. }
  7990. #u54956 {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:1453px;
  7994. top:775px;
  7995. width:63px;
  7996. height:16px;
  7997. display:flex;
  7998. transition:none;
  7999. transform-origin:50% 50%;
  8000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8001. font-weight:400;
  8002. font-style:normal;
  8003. font-size:11px;
  8004. color:#AAAAAA;
  8005. }
  8006. #u54956 .text {
  8007. position:absolute;
  8008. align-self:flex-start;
  8009. padding:0px 0px 0px 0px;
  8010. box-sizing:border-box;
  8011. width:100%;
  8012. }
  8013. #u54956_text {
  8014. border-width:0px;
  8015. white-space:nowrap;
  8016. text-transform:none;
  8017. }
  8018. #u54957_div {
  8019. border-width:0px;
  8020. position:absolute;
  8021. left:0px;
  8022. top:0px;
  8023. width:29px;
  8024. height:30px;
  8025. background:inherit;
  8026. background-color:rgba(255, 255, 255, 0);
  8027. border-top:0px;
  8028. border-right:0px;
  8029. border-bottom:0px;
  8030. border-radius:0px;
  8031. border-top-left-radius:0px;
  8032. border-bottom-left-radius:0px;
  8033. filter:drop-shadow(none);
  8034. transition:none;
  8035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8036. font-weight:400;
  8037. font-style:normal;
  8038. font-size:14px;
  8039. }
  8040. #u54957 {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:1411px;
  8044. top:633px;
  8045. width:29px;
  8046. height:30px;
  8047. display:flex;
  8048. transition:none;
  8049. transform-origin:50% 50%;
  8050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8051. font-weight:400;
  8052. font-style:normal;
  8053. font-size:14px;
  8054. }
  8055. #u54957 .text {
  8056. position:absolute;
  8057. align-self:flex-start;
  8058. padding:5px 0px 5px 0px;
  8059. box-sizing:border-box;
  8060. width:100%;
  8061. }
  8062. #u54957_text {
  8063. border-width:0px;
  8064. white-space:nowrap;
  8065. text-transform:none;
  8066. }
  8067. #u54958 {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:0px;
  8071. top:0px;
  8072. width:0px;
  8073. height:0px;
  8074. }
  8075. #u54959 {
  8076. border-width:0px;
  8077. position:absolute;
  8078. left:1430px;
  8079. top:711px;
  8080. width:1px;
  8081. height:31px;
  8082. display:flex;
  8083. transition:none;
  8084. }
  8085. #u54959 .text {
  8086. position:absolute;
  8087. align-self:center;
  8088. padding:2px 2px 2px 2px;
  8089. box-sizing:border-box;
  8090. width:100%;
  8091. }
  8092. #u54959_img {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:0px;
  8096. top:0px;
  8097. width:2px;
  8098. height:32px;
  8099. }
  8100. #u54959_text {
  8101. border-width:0px;
  8102. word-wrap:break-word;
  8103. text-transform:none;
  8104. visibility:hidden;
  8105. }
  8106. #u54960 {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:0px;
  8110. top:0px;
  8111. width:0px;
  8112. height:0px;
  8113. }
  8114. #u54961_div {
  8115. border-width:0px;
  8116. position:absolute;
  8117. left:0px;
  8118. top:0px;
  8119. width:30px;
  8120. height:30px;
  8121. background:inherit;
  8122. background-color:rgba(24, 144, 255, 1);
  8123. border-radius:4px;
  8124. filter:drop-shadow(none);
  8125. transition:none;
  8126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8127. font-weight:400;
  8128. font-style:normal;
  8129. font-size:10px;
  8130. color:#FFFFFF;
  8131. }
  8132. #u54961 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:1415px;
  8136. top:747px;
  8137. width:30px;
  8138. height:30px;
  8139. display:flex;
  8140. transition:none;
  8141. transform-origin:50% 50%;
  8142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8143. font-weight:400;
  8144. font-style:normal;
  8145. font-size:10px;
  8146. color:#FFFFFF;
  8147. }
  8148. #u54961 .text {
  8149. position:absolute;
  8150. align-self:center;
  8151. padding:2px 2px 2px 2px;
  8152. box-sizing:border-box;
  8153. width:100%;
  8154. }
  8155. #u54961_text {
  8156. border-width:0px;
  8157. word-wrap:break-word;
  8158. text-transform:none;
  8159. }
  8160. #u54962 {
  8161. border-width:0px;
  8162. position:absolute;
  8163. left:0px;
  8164. top:0px;
  8165. width:0px;
  8166. height:0px;
  8167. }
  8168. #u54963 {
  8169. border-width:0px;
  8170. position:absolute;
  8171. left:1437px;
  8172. top:769px;
  8173. width:9px;
  8174. height:9px;
  8175. display:flex;
  8176. transition:none;
  8177. }
  8178. #u54963 .text {
  8179. position:absolute;
  8180. align-self:center;
  8181. padding:2px 2px 2px 2px;
  8182. box-sizing:border-box;
  8183. width:100%;
  8184. }
  8185. #u54963_img {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:0px;
  8189. top:0px;
  8190. width:9px;
  8191. height:9px;
  8192. }
  8193. #u54963_text {
  8194. border-width:0px;
  8195. word-wrap:break-word;
  8196. text-transform:none;
  8197. visibility:hidden;
  8198. }
  8199. #u54964 {
  8200. border-width:0px;
  8201. position:absolute;
  8202. left:1440px;
  8203. top:772px;
  8204. width:3px;
  8205. height:3px;
  8206. display:flex;
  8207. transition:none;
  8208. }
  8209. #u54964 .text {
  8210. position:absolute;
  8211. align-self:center;
  8212. padding:2px 2px 2px 2px;
  8213. box-sizing:border-box;
  8214. width:100%;
  8215. }
  8216. #u54964_img {
  8217. border-width:0px;
  8218. position:absolute;
  8219. left:0px;
  8220. top:0px;
  8221. width:3px;
  8222. height:3px;
  8223. }
  8224. #u54964_text {
  8225. border-width:0px;
  8226. word-wrap:break-word;
  8227. text-transform:none;
  8228. visibility:hidden;
  8229. }
  8230. #u54965 {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:0px;
  8234. top:0px;
  8235. width:0px;
  8236. height:0px;
  8237. }
  8238. #u54966_div {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:0px;
  8242. top:0px;
  8243. width:30px;
  8244. height:30px;
  8245. background:inherit;
  8246. background-color:rgba(24, 144, 255, 1);
  8247. border-radius:4px;
  8248. filter:drop-shadow(none);
  8249. transition:none;
  8250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8251. font-weight:400;
  8252. font-style:normal;
  8253. font-size:12px;
  8254. color:#FFFFFF;
  8255. }
  8256. #u54966 {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:1415px;
  8260. top:677px;
  8261. width:30px;
  8262. height:30px;
  8263. display:flex;
  8264. transition:none;
  8265. transform-origin:50% 50%;
  8266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8267. font-weight:400;
  8268. font-style:normal;
  8269. font-size:12px;
  8270. color:#FFFFFF;
  8271. }
  8272. #u54966 .text {
  8273. position:absolute;
  8274. align-self:center;
  8275. padding:2px 2px 2px 2px;
  8276. box-sizing:border-box;
  8277. width:100%;
  8278. }
  8279. #u54966_text {
  8280. border-width:0px;
  8281. word-wrap:break-word;
  8282. text-transform:none;
  8283. }
  8284. #u54967 {
  8285. border-width:0px;
  8286. position:absolute;
  8287. left:0px;
  8288. top:0px;
  8289. width:0px;
  8290. height:0px;
  8291. }
  8292. #u54968 {
  8293. border-width:0px;
  8294. position:absolute;
  8295. left:1437px;
  8296. top:699px;
  8297. width:9px;
  8298. height:9px;
  8299. display:flex;
  8300. transition:none;
  8301. }
  8302. #u54968 .text {
  8303. position:absolute;
  8304. align-self:center;
  8305. padding:2px 2px 2px 2px;
  8306. box-sizing:border-box;
  8307. width:100%;
  8308. }
  8309. #u54968_img {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:9px;
  8315. height:9px;
  8316. }
  8317. #u54968_text {
  8318. border-width:0px;
  8319. word-wrap:break-word;
  8320. text-transform:none;
  8321. visibility:hidden;
  8322. }
  8323. #u54969 {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:1439px;
  8327. top:702px;
  8328. width:5px;
  8329. height:4px;
  8330. display:flex;
  8331. transition:none;
  8332. }
  8333. #u54969 .text {
  8334. position:absolute;
  8335. align-self:center;
  8336. padding:2px 2px 2px 2px;
  8337. box-sizing:border-box;
  8338. width:100%;
  8339. }
  8340. #u54969_img {
  8341. border-width:0px;
  8342. position:absolute;
  8343. left:0px;
  8344. top:0px;
  8345. width:5px;
  8346. height:4px;
  8347. }
  8348. #u54969_text {
  8349. border-width:0px;
  8350. word-wrap:break-word;
  8351. text-transform:none;
  8352. visibility:hidden;
  8353. }
  8354. #u54970_div {
  8355. border-width:0px;
  8356. position:absolute;
  8357. left:0px;
  8358. top:0px;
  8359. width:109px;
  8360. height:16px;
  8361. background:inherit;
  8362. background-color:rgba(242, 242, 242, 1);
  8363. border-radius:2px;
  8364. filter:drop-shadow(none);
  8365. transition:none;
  8366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8367. font-weight:400;
  8368. font-style:normal;
  8369. font-size:11px;
  8370. color:#AAAAAA;
  8371. }
  8372. #u54970 {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:1453px;
  8376. top:796px;
  8377. width:109px;
  8378. height:16px;
  8379. display:flex;
  8380. transition:none;
  8381. transform-origin:50% 50%;
  8382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8383. font-weight:400;
  8384. font-style:normal;
  8385. font-size:11px;
  8386. color:#AAAAAA;
  8387. }
  8388. #u54970 .text {
  8389. position:absolute;
  8390. align-self:flex-start;
  8391. padding:0px 10px 0px 10px;
  8392. box-sizing:border-box;
  8393. width:100%;
  8394. }
  8395. #u54970_text {
  8396. border-width:0px;
  8397. white-space:nowrap;
  8398. text-transform:none;
  8399. }
  8400. #u54971_div {
  8401. border-width:0px;
  8402. position:absolute;
  8403. left:0px;
  8404. top:0px;
  8405. width:103px;
  8406. height:24px;
  8407. background:inherit;
  8408. background-color:rgba(255, 255, 255, 0);
  8409. border-top:0px;
  8410. border-right:0px;
  8411. border-bottom:0px;
  8412. border-radius:0px;
  8413. border-top-left-radius:0px;
  8414. border-bottom-left-radius:0px;
  8415. filter:drop-shadow(none);
  8416. transition:none;
  8417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8418. font-weight:400;
  8419. font-style:normal;
  8420. font-size:10px;
  8421. color:#AAAAAA;
  8422. }
  8423. #u54971 {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:1612px;
  8427. top:747px;
  8428. width:103px;
  8429. height:24px;
  8430. display:flex;
  8431. transition:none;
  8432. transform-origin:50% 50%;
  8433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8434. font-weight:400;
  8435. font-style:normal;
  8436. font-size:10px;
  8437. color:#AAAAAA;
  8438. }
  8439. #u54971 .text {
  8440. position:absolute;
  8441. align-self:flex-start;
  8442. padding:5px 0px 5px 0px;
  8443. box-sizing:border-box;
  8444. width:100%;
  8445. }
  8446. #u54971_text {
  8447. border-width:0px;
  8448. white-space:nowrap;
  8449. text-transform:none;
  8450. }
  8451. #u54972_div {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:0px;
  8455. top:0px;
  8456. width:325px;
  8457. height:50px;
  8458. background:inherit;
  8459. background-color:rgba(255, 255, 255, 0);
  8460. border-left:0px;
  8461. border-top:0px;
  8462. border-right:0px;
  8463. border-radius:0px;
  8464. border-bottom-right-radius:0px;
  8465. border-bottom-left-radius:0px;
  8466. filter:drop-shadow(none);
  8467. transition:none;
  8468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8469. font-weight:400;
  8470. font-style:normal;
  8471. font-size:12px;
  8472. line-height:25px;
  8473. }
  8474. #u54972 {
  8475. border-width:0px;
  8476. position:absolute;
  8477. left:1402px;
  8478. top:147px;
  8479. width:325px;
  8480. height:50px;
  8481. display:flex;
  8482. transition:none;
  8483. transform-origin:50% 50%;
  8484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8485. font-weight:400;
  8486. font-style:normal;
  8487. font-size:12px;
  8488. line-height:25px;
  8489. }
  8490. #u54972 .text {
  8491. position:absolute;
  8492. align-self:flex-start;
  8493. padding:0px 0px 0px 0px;
  8494. box-sizing:border-box;
  8495. width:100%;
  8496. }
  8497. #u54972_text {
  8498. border-width:0px;
  8499. word-wrap:break-word;
  8500. text-transform:none;
  8501. }
  8502. #u54973_div {
  8503. border-width:0px;
  8504. position:absolute;
  8505. left:0px;
  8506. top:0px;
  8507. width:375px;
  8508. height:396px;
  8509. background:inherit;
  8510. background-color:rgba(255, 255, 255, 1);
  8511. border-left:0px;
  8512. border-top:0px;
  8513. border-right:0px;
  8514. border-radius:0px;
  8515. border-bottom-right-radius:0px;
  8516. border-bottom-left-radius:0px;
  8517. filter:drop-shadow(none);
  8518. transition:none;
  8519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8520. font-weight:400;
  8521. font-style:normal;
  8522. }
  8523. #u54973 {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:1375px;
  8527. top:217px;
  8528. width:375px;
  8529. height:396px;
  8530. display:flex;
  8531. transition:none;
  8532. transform-origin:50% 50%;
  8533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8534. font-weight:400;
  8535. font-style:normal;
  8536. }
  8537. #u54973 .text {
  8538. position:absolute;
  8539. align-self:center;
  8540. padding:2px 2px 2px 2px;
  8541. box-sizing:border-box;
  8542. width:100%;
  8543. }
  8544. #u54973_text {
  8545. border-width:0px;
  8546. word-wrap:break-word;
  8547. text-transform:none;
  8548. }
  8549. #u54974_div {
  8550. border-width:0px;
  8551. position:absolute;
  8552. left:0px;
  8553. top:0px;
  8554. width:331px;
  8555. height:34px;
  8556. background:inherit;
  8557. background-color:rgba(255, 255, 255, 0);
  8558. border-left:0px;
  8559. border-top:0px;
  8560. border-right:0px;
  8561. border-radius:0px;
  8562. border-bottom-right-radius:0px;
  8563. border-bottom-left-radius:0px;
  8564. filter:drop-shadow(none);
  8565. transition:none;
  8566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8567. font-weight:400;
  8568. font-style:normal;
  8569. font-size:12px;
  8570. color:#D9001B;
  8571. }
  8572. #u54974 {
  8573. border-width:0px;
  8574. position:absolute;
  8575. left:63px;
  8576. top:197px;
  8577. width:331px;
  8578. height:34px;
  8579. display:flex;
  8580. transition:none;
  8581. transform-origin:50% 50%;
  8582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8583. font-weight:400;
  8584. font-style:normal;
  8585. font-size:12px;
  8586. color:#D9001B;
  8587. }
  8588. #u54974 .text {
  8589. position:absolute;
  8590. align-self:flex-start;
  8591. padding:0px 0px 0px 0px;
  8592. box-sizing:border-box;
  8593. width:100%;
  8594. }
  8595. #u54974_text {
  8596. border-width:0px;
  8597. word-wrap:break-word;
  8598. text-transform:none;
  8599. }