styles.css 125 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1747px;
  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. #u51325 {
  20. border-width:0px;
  21. position:absolute;
  22. left:927px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u51326 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u51326 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u51326_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u51326_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u51327_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u51327 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u51327 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u51327_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u51328 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u51329_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u51329 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u51329 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u51329_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u51330 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u51331 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u51331 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u51331_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u51331_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u51332 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u51332 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u51332_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u51332_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u51333 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u51334 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u51334 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u51334_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u51334_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u51335 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u51335 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u51335_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u51335_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u51336 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u51336 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u51336_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u51336_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u51337 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u51337 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u51337_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u51337_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u51338 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u51338 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u51338_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u51338_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u51339_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u51339 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u51339 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u51339_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u51340 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u51341 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u51341 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u51341_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u51341_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u51342_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u51342 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u51342 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u51342_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u51343 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u51344 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u51344 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u51344_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u51344_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u51345_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u51345 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u51345 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u51345_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u51346_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u51346 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u51346 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u51346_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u51347 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u51348 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u51348 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u51348_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u51348_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u51349_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u51349 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u51349 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u51349_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u51350 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u51351 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u51351 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u51351_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u51351_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u51352_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u51352 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u51352 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u51352_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u51353_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:736px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 1);
  811. box-sizing:border-box;
  812. border-width:1px;
  813. border-style:solid;
  814. border-color:rgba(242, 242, 242, 1);
  815. border-radius:26px;
  816. border-top-left-radius:0px;
  817. border-top-right-radius:0px;
  818. filter:drop-shadow(none);
  819. transition:none;
  820. }
  821. #u51353 {
  822. border-width:0px;
  823. position:absolute;
  824. left:956px;
  825. top:105px;
  826. width:375px;
  827. height:736px;
  828. display:flex;
  829. transition:none;
  830. transform-origin:50% 50%;
  831. }
  832. #u51353 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u51353_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u51354 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u51355_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:361px;
  859. height:90px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 1);
  862. box-sizing:border-box;
  863. border-width:1px;
  864. border-style:solid;
  865. border-color:rgba(242, 242, 242, 1);
  866. border-radius:4px;
  867. filter:drop-shadow(none);
  868. transition:none;
  869. }
  870. #u51355 {
  871. border-width:0px;
  872. position:absolute;
  873. left:963px;
  874. top:145px;
  875. width:361px;
  876. height:90px;
  877. display:flex;
  878. transition:none;
  879. transform-origin:50% 50%;
  880. }
  881. #u51355 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u51355_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u51356_div {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:37px;
  900. height:50px;
  901. background:inherit;
  902. background-color:rgba(255, 255, 255, 0);
  903. border-radius:0px;
  904. filter:drop-shadow(none);
  905. transition:none;
  906. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  907. font-weight:650;
  908. font-style:normal;
  909. font-size:18px;
  910. color:#298FFF;
  911. }
  912. #u51356 {
  913. border-width:0px;
  914. position:absolute;
  915. left:982px;
  916. top:159px;
  917. width:37px;
  918. height:50px;
  919. display:flex;
  920. transition:none;
  921. transform-origin:50% 50%;
  922. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  923. font-weight:650;
  924. font-style:normal;
  925. font-size:18px;
  926. color:#298FFF;
  927. }
  928. #u51356 .text {
  929. position:absolute;
  930. align-self:flex-start;
  931. padding:0px 0px 0px 0px;
  932. box-sizing:border-box;
  933. width:100%;
  934. }
  935. #u51356_text {
  936. border-width:0px;
  937. white-space:nowrap;
  938. text-transform:none;
  939. }
  940. #u51357_div {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:149px;
  946. height:18px;
  947. background:inherit;
  948. background-color:rgba(255, 255, 255, 0);
  949. border-radius:0px;
  950. filter:drop-shadow(none);
  951. transition:none;
  952. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  953. font-weight:500;
  954. font-style:normal;
  955. }
  956. #u51357 {
  957. border-width:0px;
  958. position:absolute;
  959. left:1034px;
  960. top:155px;
  961. width:149px;
  962. height:18px;
  963. display:flex;
  964. transition:none;
  965. transform-origin:50% 50%;
  966. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  967. font-weight:500;
  968. font-style:normal;
  969. }
  970. #u51357 .text {
  971. position:absolute;
  972. align-self:flex-start;
  973. padding:0px 0px 0px 0px;
  974. box-sizing:border-box;
  975. width:100%;
  976. }
  977. #u51357_text {
  978. border-width:0px;
  979. white-space:nowrap;
  980. text-transform:none;
  981. }
  982. #u51358_div {
  983. border-width:0px;
  984. position:absolute;
  985. left:0px;
  986. top:0px;
  987. width:261px;
  988. height:36px;
  989. background:inherit;
  990. background-color:rgba(255, 255, 255, 0);
  991. border-radius:0px;
  992. filter:drop-shadow(none);
  993. transition:none;
  994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  995. font-weight:400;
  996. font-style:normal;
  997. font-size:10px;
  998. color:#7F7F7F;
  999. line-height:18px;
  1000. }
  1001. #u51358 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:1034px;
  1005. top:178px;
  1006. width:261px;
  1007. height:36px;
  1008. display:flex;
  1009. transition:none;
  1010. transform-origin:50% 50%;
  1011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1012. font-weight:400;
  1013. font-style:normal;
  1014. font-size:10px;
  1015. color:#7F7F7F;
  1016. line-height:18px;
  1017. }
  1018. #u51358 .text {
  1019. position:absolute;
  1020. align-self:flex-start;
  1021. padding:0px 0px 0px 0px;
  1022. box-sizing:border-box;
  1023. width:100%;
  1024. }
  1025. #u51358_text {
  1026. border-width:0px;
  1027. word-wrap:break-word;
  1028. text-transform:none;
  1029. }
  1030. #u51359 {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:1088px;
  1034. top:222px;
  1035. width:7px;
  1036. height:7px;
  1037. display:flex;
  1038. transition:none;
  1039. }
  1040. #u51359 .text {
  1041. position:absolute;
  1042. align-self:center;
  1043. padding:2px 2px 2px 2px;
  1044. box-sizing:border-box;
  1045. width:100%;
  1046. }
  1047. #u51359_img {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:7px;
  1053. height:7px;
  1054. }
  1055. #u51359_text {
  1056. border-width:0px;
  1057. word-wrap:break-word;
  1058. text-transform:none;
  1059. visibility:hidden;
  1060. }
  1061. #u51360 {
  1062. border-width:0px;
  1063. position:absolute;
  1064. left:1107px;
  1065. top:222px;
  1066. width:7px;
  1067. height:7px;
  1068. display:flex;
  1069. transition:none;
  1070. }
  1071. #u51360 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 2px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u51360_img {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:7px;
  1084. height:7px;
  1085. }
  1086. #u51360_text {
  1087. border-width:0px;
  1088. word-wrap:break-word;
  1089. text-transform:none;
  1090. visibility:hidden;
  1091. }
  1092. #u51361 {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:1126px;
  1096. top:222px;
  1097. width:7px;
  1098. height:7px;
  1099. display:flex;
  1100. transition:none;
  1101. }
  1102. #u51361 .text {
  1103. position:absolute;
  1104. align-self:center;
  1105. padding:2px 2px 2px 2px;
  1106. box-sizing:border-box;
  1107. width:100%;
  1108. }
  1109. #u51361_img {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:7px;
  1115. height:7px;
  1116. }
  1117. #u51361_text {
  1118. border-width:0px;
  1119. word-wrap:break-word;
  1120. text-transform:none;
  1121. visibility:hidden;
  1122. }
  1123. #u51362 {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:1145px;
  1127. top:222px;
  1128. width:7px;
  1129. height:7px;
  1130. display:flex;
  1131. transition:none;
  1132. }
  1133. #u51362 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:2px 2px 2px 2px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u51362_img {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:7px;
  1146. height:7px;
  1147. }
  1148. #u51362_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u51363 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1306px;
  1158. top:153px;
  1159. width:11px;
  1160. height:11px;
  1161. display:flex;
  1162. transition:none;
  1163. }
  1164. #u51363 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u51363_img {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:0px;
  1175. top:0px;
  1176. width:11px;
  1177. height:11px;
  1178. }
  1179. #u51363_text {
  1180. border-width:0px;
  1181. word-wrap:break-word;
  1182. text-transform:none;
  1183. visibility:hidden;
  1184. }
  1185. #u51364 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:0px;
  1191. height:0px;
  1192. }
  1193. #u51365_div {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:375px;
  1199. height:30px;
  1200. background:inherit;
  1201. background-color:rgba(255, 255, 255, 1);
  1202. border-bottom:0px;
  1203. border-radius:0px;
  1204. border-bottom-right-radius:0px;
  1205. border-bottom-left-radius:0px;
  1206. filter:drop-shadow(none);
  1207. transition:none;
  1208. }
  1209. #u51365 {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:956px;
  1213. top:105px;
  1214. width:375px;
  1215. height:30px;
  1216. display:flex;
  1217. transition:none;
  1218. transform-origin:50% 50%;
  1219. }
  1220. #u51365 .text {
  1221. position:absolute;
  1222. align-self:center;
  1223. padding:2px 2px 2px 2px;
  1224. box-sizing:border-box;
  1225. width:100%;
  1226. }
  1227. #u51365_text {
  1228. border-width:0px;
  1229. word-wrap:break-word;
  1230. text-transform:none;
  1231. }
  1232. #u51366 {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:1140px;
  1236. top:117px;
  1237. width:15px;
  1238. height:7px;
  1239. display:flex;
  1240. -webkit-transform:rotate(180deg);
  1241. -moz-transform:rotate(180deg);
  1242. -ms-transform:rotate(180deg);
  1243. transform:rotate(180deg);
  1244. transition:none;
  1245. }
  1246. #u51366 .text {
  1247. position:absolute;
  1248. align-self:center;
  1249. padding:2px 2px 2px 2px;
  1250. box-sizing:border-box;
  1251. width:100%;
  1252. }
  1253. #u51366_img {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:15px;
  1259. height:7px;
  1260. }
  1261. #u51366_text {
  1262. border-width:0px;
  1263. word-wrap:break-word;
  1264. text-transform:none;
  1265. visibility:hidden;
  1266. }
  1267. #u51367_div {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:81px;
  1273. height:30px;
  1274. background:inherit;
  1275. background-color:rgba(51, 51, 51, 0.5450980392156862);
  1276. border-right:0px;
  1277. border-radius:23px;
  1278. border-top-right-radius:0px;
  1279. border-bottom-right-radius:0px;
  1280. filter:drop-shadow(none);
  1281. transition:none;
  1282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1283. font-weight:400;
  1284. font-style:normal;
  1285. color:#FFFFFF;
  1286. }
  1287. #u51367 {
  1288. border-width:0px;
  1289. position:absolute;
  1290. left:1250px;
  1291. top:115px;
  1292. width:81px;
  1293. height:30px;
  1294. display:flex;
  1295. transition:none;
  1296. transform-origin:50% 50%;
  1297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1298. font-weight:400;
  1299. font-style:normal;
  1300. color:#FFFFFF;
  1301. }
  1302. #u51367 .text {
  1303. position:absolute;
  1304. align-self:center;
  1305. padding:0px 5px 0px 5px;
  1306. box-sizing:border-box;
  1307. width:100%;
  1308. }
  1309. #u51367_text {
  1310. border-width:0px;
  1311. white-space:nowrap;
  1312. text-transform:none;
  1313. }
  1314. #u51368 {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:463px;
  1318. top:0px;
  1319. width:433px;
  1320. height:865px;
  1321. }
  1322. #u51369 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:433px;
  1328. height:865px;
  1329. display:flex;
  1330. transition:none;
  1331. }
  1332. #u51369 .text {
  1333. position:absolute;
  1334. align-self:center;
  1335. padding:2px 2px 2px 2px;
  1336. box-sizing:border-box;
  1337. width:100%;
  1338. }
  1339. #u51369_img {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:0px;
  1343. top:0px;
  1344. width:433px;
  1345. height:865px;
  1346. }
  1347. #u51369_text {
  1348. border-width:0px;
  1349. word-wrap:break-word;
  1350. text-transform:none;
  1351. visibility:hidden;
  1352. }
  1353. #u51370_div {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:375px;
  1359. height:40px;
  1360. background:inherit;
  1361. background-color:rgba(255, 255, 255, 1);
  1362. box-sizing:border-box;
  1363. border-width:1px;
  1364. border-style:solid;
  1365. border-color:rgba(215, 215, 215, 1);
  1366. border-left:0px;
  1367. border-top:0px;
  1368. border-right:0px;
  1369. border-radius:0px;
  1370. border-bottom-right-radius:0px;
  1371. border-bottom-left-radius:0px;
  1372. filter:drop-shadow(none);
  1373. transition:none;
  1374. }
  1375. #u51370 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:29px;
  1379. top:67px;
  1380. width:375px;
  1381. height:40px;
  1382. display:flex;
  1383. transition:none;
  1384. transform-origin:50% 50%;
  1385. }
  1386. #u51370 .text {
  1387. position:absolute;
  1388. align-self:center;
  1389. padding:2px 2px 2px 2px;
  1390. box-sizing:border-box;
  1391. width:100%;
  1392. }
  1393. #u51370_text {
  1394. border-width:0px;
  1395. word-wrap:break-word;
  1396. text-transform:none;
  1397. visibility:hidden;
  1398. }
  1399. #u51371 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:0px;
  1403. top:0px;
  1404. width:0px;
  1405. height:0px;
  1406. }
  1407. #u51372_div {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:0px;
  1411. top:0px;
  1412. width:88px;
  1413. height:32px;
  1414. background:inherit;
  1415. background-color:rgba(255, 255, 255, 1);
  1416. box-sizing:border-box;
  1417. border-width:1px;
  1418. border-style:solid;
  1419. border-color:rgba(242, 242, 242, 1);
  1420. border-radius:33px;
  1421. filter:drop-shadow(none);
  1422. transition:none;
  1423. }
  1424. #u51372 {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:309px;
  1428. top:71px;
  1429. width:88px;
  1430. height:32px;
  1431. display:flex;
  1432. transition:none;
  1433. transform-origin:50% 50%;
  1434. }
  1435. #u51372 .text {
  1436. position:absolute;
  1437. align-self:center;
  1438. padding:2px 2px 2px 2px;
  1439. box-sizing:border-box;
  1440. width:100%;
  1441. }
  1442. #u51372_text {
  1443. border-width:0px;
  1444. word-wrap:break-word;
  1445. text-transform:none;
  1446. visibility:hidden;
  1447. }
  1448. #u51373 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:0px;
  1454. height:0px;
  1455. }
  1456. #u51374 {
  1457. border-width:0px;
  1458. position:absolute;
  1459. left:372px;
  1460. top:78px;
  1461. width:18px;
  1462. height:18px;
  1463. display:flex;
  1464. transition:none;
  1465. }
  1466. #u51374 .text {
  1467. position:absolute;
  1468. align-self:center;
  1469. padding:2px 2px 2px 2px;
  1470. box-sizing:border-box;
  1471. width:100%;
  1472. }
  1473. #u51374_img {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:18px;
  1479. height:18px;
  1480. }
  1481. #u51374_text {
  1482. border-width:0px;
  1483. word-wrap:break-word;
  1484. text-transform:none;
  1485. visibility:hidden;
  1486. }
  1487. #u51375 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:378px;
  1491. top:84px;
  1492. width:6px;
  1493. height:6px;
  1494. display:flex;
  1495. transition:none;
  1496. }
  1497. #u51375 .text {
  1498. position:absolute;
  1499. align-self:center;
  1500. padding:2px 2px 2px 2px;
  1501. box-sizing:border-box;
  1502. width:100%;
  1503. }
  1504. #u51375_img {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:6px;
  1510. height:6px;
  1511. }
  1512. #u51375_text {
  1513. border-width:0px;
  1514. word-wrap:break-word;
  1515. text-transform:none;
  1516. visibility:hidden;
  1517. }
  1518. #u51376 {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:0px;
  1522. top:0px;
  1523. width:0px;
  1524. height:0px;
  1525. }
  1526. #u51377 {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:323px;
  1530. top:85px;
  1531. width:5px;
  1532. height:5px;
  1533. display:flex;
  1534. transition:none;
  1535. }
  1536. #u51377 .text {
  1537. position:absolute;
  1538. align-self:center;
  1539. padding:2px 2px 2px 2px;
  1540. box-sizing:border-box;
  1541. width:100%;
  1542. }
  1543. #u51377_img {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:5px;
  1549. height:5px;
  1550. }
  1551. #u51377_text {
  1552. border-width:0px;
  1553. word-wrap:break-word;
  1554. text-transform:none;
  1555. visibility:hidden;
  1556. }
  1557. #u51378 {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:339px;
  1561. top:85px;
  1562. width:5px;
  1563. height:5px;
  1564. display:flex;
  1565. transition:none;
  1566. }
  1567. #u51378 .text {
  1568. position:absolute;
  1569. align-self:center;
  1570. padding:2px 2px 2px 2px;
  1571. box-sizing:border-box;
  1572. width:100%;
  1573. }
  1574. #u51378_img {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:5px;
  1580. height:5px;
  1581. }
  1582. #u51378_text {
  1583. border-width:0px;
  1584. word-wrap:break-word;
  1585. text-transform:none;
  1586. visibility:hidden;
  1587. }
  1588. #u51379 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:330px;
  1592. top:84px;
  1593. width:7px;
  1594. height:7px;
  1595. display:flex;
  1596. transition:none;
  1597. }
  1598. #u51379 .text {
  1599. position:absolute;
  1600. align-self:center;
  1601. padding:2px 2px 2px 2px;
  1602. box-sizing:border-box;
  1603. width:100%;
  1604. }
  1605. #u51379_img {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:7px;
  1611. height:7px;
  1612. }
  1613. #u51379_text {
  1614. border-width:0px;
  1615. word-wrap:break-word;
  1616. text-transform:none;
  1617. visibility:hidden;
  1618. }
  1619. #u51380 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:347px;
  1623. top:87px;
  1624. width:18px;
  1625. height:1px;
  1626. display:flex;
  1627. -webkit-transform:rotate(90deg);
  1628. -moz-transform:rotate(90deg);
  1629. -ms-transform:rotate(90deg);
  1630. transform:rotate(90deg);
  1631. transition:none;
  1632. }
  1633. #u51380 .text {
  1634. position:absolute;
  1635. align-self:center;
  1636. padding:2px 2px 2px 2px;
  1637. box-sizing:border-box;
  1638. width:100%;
  1639. }
  1640. #u51380_img {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:19px;
  1646. height:2px;
  1647. }
  1648. #u51380_text {
  1649. border-width:0px;
  1650. word-wrap:break-word;
  1651. text-transform:none;
  1652. visibility:hidden;
  1653. }
  1654. #u51381 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:29px;
  1658. top:24px;
  1659. width:375px;
  1660. height:44px;
  1661. display:flex;
  1662. transition:none;
  1663. }
  1664. #u51381 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u51381_img {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:375px;
  1677. height:44px;
  1678. }
  1679. #u51381_text {
  1680. border-width:0px;
  1681. word-wrap:break-word;
  1682. text-transform:none;
  1683. visibility:hidden;
  1684. }
  1685. #u51382_div {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:375px;
  1691. height:50px;
  1692. background:inherit;
  1693. background-color:rgba(255, 255, 255, 1);
  1694. box-sizing:border-box;
  1695. border-width:1px;
  1696. border-style:solid;
  1697. border-color:rgba(242, 242, 242, 1);
  1698. border-radius:26px;
  1699. border-top-left-radius:0px;
  1700. border-top-right-radius:0px;
  1701. filter:drop-shadow(none);
  1702. transition:none;
  1703. }
  1704. #u51382 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:29px;
  1708. top:788px;
  1709. width:375px;
  1710. height:50px;
  1711. display:flex;
  1712. transition:none;
  1713. transform-origin:50% 50%;
  1714. }
  1715. #u51382 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:2px 2px 2px 2px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u51382_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. visibility:hidden;
  1727. }
  1728. #u51383 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:0px;
  1734. height:0px;
  1735. }
  1736. #u51384 {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:69px;
  1740. top:792px;
  1741. width:24px;
  1742. height:24px;
  1743. display:flex;
  1744. transition:none;
  1745. font-size:8px;
  1746. }
  1747. #u51384 .text {
  1748. position:absolute;
  1749. align-self:center;
  1750. padding:2px 2px 2px 2px;
  1751. box-sizing:border-box;
  1752. width:100%;
  1753. }
  1754. #u51384_img {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:24px;
  1760. height:24px;
  1761. }
  1762. #u51384_text {
  1763. border-width:0px;
  1764. word-wrap:break-word;
  1765. text-transform:none;
  1766. }
  1767. #u51385_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:25px;
  1773. height:17px;
  1774. background:inherit;
  1775. background-color:rgba(255, 255, 255, 0);
  1776. border-radius:0px;
  1777. filter:drop-shadow(none);
  1778. transition:none;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:12px;
  1783. }
  1784. #u51385 {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:69px;
  1788. top:817px;
  1789. width:25px;
  1790. height:17px;
  1791. display:flex;
  1792. transition:none;
  1793. transform-origin:50% 50%;
  1794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:12px;
  1798. }
  1799. #u51385 .text {
  1800. position:absolute;
  1801. align-self:flex-start;
  1802. padding:0px 0px 0px 0px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u51385_text {
  1807. border-width:0px;
  1808. white-space:nowrap;
  1809. text-transform:none;
  1810. }
  1811. #u51386 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:0px;
  1817. height:0px;
  1818. }
  1819. #u51387 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:339px;
  1823. top:794px;
  1824. width:24px;
  1825. height:24px;
  1826. display:flex;
  1827. transition:none;
  1828. font-size:8px;
  1829. }
  1830. #u51387 .text {
  1831. position:absolute;
  1832. align-self:center;
  1833. padding:2px 2px 2px 2px;
  1834. box-sizing:border-box;
  1835. width:100%;
  1836. }
  1837. #u51387_img {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:24px;
  1843. height:24px;
  1844. }
  1845. #u51387_text {
  1846. border-width:0px;
  1847. word-wrap:break-word;
  1848. text-transform:none;
  1849. }
  1850. #u51388_div {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:25px;
  1856. height:17px;
  1857. background:inherit;
  1858. background-color:rgba(255, 255, 255, 0);
  1859. border-radius:0px;
  1860. filter:drop-shadow(none);
  1861. transition:none;
  1862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1863. font-weight:400;
  1864. font-style:normal;
  1865. font-size:12px;
  1866. }
  1867. #u51388 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:339px;
  1871. top:819px;
  1872. width:25px;
  1873. height:17px;
  1874. display:flex;
  1875. transition:none;
  1876. transform-origin:50% 50%;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1878. font-weight:400;
  1879. font-style:normal;
  1880. font-size:12px;
  1881. }
  1882. #u51388 .text {
  1883. position:absolute;
  1884. align-self:flex-start;
  1885. padding:0px 0px 0px 0px;
  1886. box-sizing:border-box;
  1887. width:100%;
  1888. }
  1889. #u51388_text {
  1890. border-width:0px;
  1891. white-space:nowrap;
  1892. text-transform:none;
  1893. }
  1894. #u51389_div {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:375px;
  1900. height:681px;
  1901. background:inherit;
  1902. background-color:rgba(242, 242, 242, 0.4627450980392157);
  1903. border-radius:0px;
  1904. filter:drop-shadow(none);
  1905. transition:none;
  1906. }
  1907. #u51389 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:29px;
  1911. top:107px;
  1912. width:375px;
  1913. height:681px;
  1914. display:flex;
  1915. transition:none;
  1916. transform-origin:50% 50%;
  1917. }
  1918. #u51389 .text {
  1919. position:absolute;
  1920. align-self:center;
  1921. padding:2px 2px 2px 2px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u51389_text {
  1926. border-width:0px;
  1927. word-wrap:break-word;
  1928. text-transform:none;
  1929. visibility:hidden;
  1930. }
  1931. #u51390 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:0px;
  1937. height:0px;
  1938. }
  1939. #u51391 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:251px;
  1943. top:792px;
  1944. width:24px;
  1945. height:24px;
  1946. display:flex;
  1947. transition:none;
  1948. font-size:8px;
  1949. }
  1950. #u51391 .text {
  1951. position:absolute;
  1952. align-self:center;
  1953. padding:2px 2px 2px 2px;
  1954. box-sizing:border-box;
  1955. width:100%;
  1956. }
  1957. #u51391_img {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:24px;
  1963. height:24px;
  1964. }
  1965. #u51391_text {
  1966. border-width:0px;
  1967. word-wrap:break-word;
  1968. text-transform:none;
  1969. }
  1970. #u51392_div {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:37px;
  1976. height:17px;
  1977. background:inherit;
  1978. background-color:rgba(255, 255, 255, 0);
  1979. border-radius:0px;
  1980. filter:drop-shadow(none);
  1981. transition:none;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:12px;
  1986. }
  1987. #u51392 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:245px;
  1991. top:817px;
  1992. width:37px;
  1993. height:17px;
  1994. display:flex;
  1995. transition:none;
  1996. transform-origin:50% 50%;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:12px;
  2001. }
  2002. #u51392 .text {
  2003. position:absolute;
  2004. align-self:flex-start;
  2005. padding:0px 0px 0px 0px;
  2006. box-sizing:border-box;
  2007. width:100%;
  2008. }
  2009. #u51392_text {
  2010. border-width:0px;
  2011. white-space:nowrap;
  2012. text-transform:none;
  2013. }
  2014. #u51393 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:0px;
  2020. height:0px;
  2021. }
  2022. #u51394 {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:157px;
  2026. top:792px;
  2027. width:24px;
  2028. height:24px;
  2029. display:flex;
  2030. transition:none;
  2031. font-size:8px;
  2032. }
  2033. #u51394 .text {
  2034. position:absolute;
  2035. align-self:center;
  2036. padding:2px 2px 2px 2px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u51394_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:24px;
  2046. height:24px;
  2047. }
  2048. #u51394_text {
  2049. border-width:0px;
  2050. word-wrap:break-word;
  2051. text-transform:none;
  2052. }
  2053. #u51395_div {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:37px;
  2059. height:17px;
  2060. background:inherit;
  2061. background-color:rgba(255, 255, 255, 0);
  2062. border-radius:0px;
  2063. filter:drop-shadow(none);
  2064. transition:none;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:12px;
  2069. }
  2070. #u51395 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:151px;
  2074. top:817px;
  2075. width:37px;
  2076. height:17px;
  2077. display:flex;
  2078. transition:none;
  2079. transform-origin:50% 50%;
  2080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2081. font-weight:400;
  2082. font-style:normal;
  2083. font-size:12px;
  2084. }
  2085. #u51395 .text {
  2086. position:absolute;
  2087. align-self:flex-start;
  2088. padding:0px 0px 0px 0px;
  2089. box-sizing:border-box;
  2090. width:100%;
  2091. }
  2092. #u51395_text {
  2093. border-width:0px;
  2094. white-space:nowrap;
  2095. text-transform:none;
  2096. }
  2097. #u51396_div {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:375px;
  2103. height:736px;
  2104. background:inherit;
  2105. background-color:rgba(242, 242, 242, 1);
  2106. box-sizing:border-box;
  2107. border-width:1px;
  2108. border-style:solid;
  2109. border-color:rgba(242, 242, 242, 1);
  2110. border-radius:26px;
  2111. border-top-left-radius:0px;
  2112. border-top-right-radius:0px;
  2113. filter:drop-shadow(none);
  2114. transition:none;
  2115. }
  2116. #u51396 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:492px;
  2120. top:105px;
  2121. width:375px;
  2122. height:736px;
  2123. display:flex;
  2124. transition:none;
  2125. transform-origin:50% 50%;
  2126. }
  2127. #u51396 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 2px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u51396_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. visibility:hidden;
  2139. }
  2140. #u51397_div {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:345px;
  2146. height:240px;
  2147. background:inherit;
  2148. background-color:rgba(255, 255, 255, 0);
  2149. border-left:0px;
  2150. border-top:0px;
  2151. border-right:0px;
  2152. border-radius:0px;
  2153. border-bottom-right-radius:0px;
  2154. border-bottom-left-radius:0px;
  2155. filter:drop-shadow(none);
  2156. transition:none;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. color:#D9001B;
  2161. line-height:30px;
  2162. }
  2163. #u51397 {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:1402px;
  2167. top:70px;
  2168. width:345px;
  2169. height:240px;
  2170. display:flex;
  2171. transition:none;
  2172. transform-origin:50% 50%;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. color:#D9001B;
  2177. line-height:30px;
  2178. }
  2179. #u51397 .text {
  2180. position:absolute;
  2181. align-self:center;
  2182. padding:0px 0px 0px 0px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u51397_text {
  2187. border-width:0px;
  2188. word-wrap:break-word;
  2189. text-transform:none;
  2190. }
  2191. #u51398 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:433px;
  2197. height:865px;
  2198. }
  2199. #u51399 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:0px;
  2203. top:0px;
  2204. width:433px;
  2205. height:865px;
  2206. display:flex;
  2207. transition:none;
  2208. }
  2209. #u51399 .text {
  2210. position:absolute;
  2211. align-self:center;
  2212. padding:2px 2px 2px 2px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u51399_img {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:433px;
  2222. height:865px;
  2223. }
  2224. #u51399_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. visibility:hidden;
  2229. }
  2230. #u51400_div {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:375px;
  2236. height:40px;
  2237. background:inherit;
  2238. background-color:rgba(255, 255, 255, 1);
  2239. box-sizing:border-box;
  2240. border-width:1px;
  2241. border-style:solid;
  2242. border-color:rgba(215, 215, 215, 1);
  2243. border-left:0px;
  2244. border-top:0px;
  2245. border-right:0px;
  2246. border-radius:0px;
  2247. border-bottom-right-radius:0px;
  2248. border-bottom-left-radius:0px;
  2249. filter:drop-shadow(none);
  2250. transition:none;
  2251. }
  2252. #u51400 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:29px;
  2256. top:67px;
  2257. width:375px;
  2258. height:40px;
  2259. display:flex;
  2260. transition:none;
  2261. transform-origin:50% 50%;
  2262. }
  2263. #u51400 .text {
  2264. position:absolute;
  2265. align-self:center;
  2266. padding:2px 2px 2px 2px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u51400_text {
  2271. border-width:0px;
  2272. word-wrap:break-word;
  2273. text-transform:none;
  2274. visibility:hidden;
  2275. }
  2276. #u51401 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:0px;
  2282. height:0px;
  2283. }
  2284. #u51402_div {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:88px;
  2290. height:32px;
  2291. background:inherit;
  2292. background-color:rgba(255, 255, 255, 1);
  2293. box-sizing:border-box;
  2294. border-width:1px;
  2295. border-style:solid;
  2296. border-color:rgba(242, 242, 242, 1);
  2297. border-radius:33px;
  2298. filter:drop-shadow(none);
  2299. transition:none;
  2300. }
  2301. #u51402 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:309px;
  2305. top:71px;
  2306. width:88px;
  2307. height:32px;
  2308. display:flex;
  2309. transition:none;
  2310. transform-origin:50% 50%;
  2311. }
  2312. #u51402 .text {
  2313. position:absolute;
  2314. align-self:center;
  2315. padding:2px 2px 2px 2px;
  2316. box-sizing:border-box;
  2317. width:100%;
  2318. }
  2319. #u51402_text {
  2320. border-width:0px;
  2321. word-wrap:break-word;
  2322. text-transform:none;
  2323. visibility:hidden;
  2324. }
  2325. #u51403 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:0px;
  2331. height:0px;
  2332. }
  2333. #u51404 {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:372px;
  2337. top:78px;
  2338. width:18px;
  2339. height:18px;
  2340. display:flex;
  2341. transition:none;
  2342. }
  2343. #u51404 .text {
  2344. position:absolute;
  2345. align-self:center;
  2346. padding:2px 2px 2px 2px;
  2347. box-sizing:border-box;
  2348. width:100%;
  2349. }
  2350. #u51404_img {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:18px;
  2356. height:18px;
  2357. }
  2358. #u51404_text {
  2359. border-width:0px;
  2360. word-wrap:break-word;
  2361. text-transform:none;
  2362. visibility:hidden;
  2363. }
  2364. #u51405 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:378px;
  2368. top:84px;
  2369. width:6px;
  2370. height:6px;
  2371. display:flex;
  2372. transition:none;
  2373. }
  2374. #u51405 .text {
  2375. position:absolute;
  2376. align-self:center;
  2377. padding:2px 2px 2px 2px;
  2378. box-sizing:border-box;
  2379. width:100%;
  2380. }
  2381. #u51405_img {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:6px;
  2387. height:6px;
  2388. }
  2389. #u51405_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. visibility:hidden;
  2394. }
  2395. #u51406 {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:0px;
  2401. height:0px;
  2402. }
  2403. #u51407 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:323px;
  2407. top:85px;
  2408. width:5px;
  2409. height:5px;
  2410. display:flex;
  2411. transition:none;
  2412. }
  2413. #u51407 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 2px 2px 2px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u51407_img {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:5px;
  2426. height:5px;
  2427. }
  2428. #u51407_text {
  2429. border-width:0px;
  2430. word-wrap:break-word;
  2431. text-transform:none;
  2432. visibility:hidden;
  2433. }
  2434. #u51408 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:339px;
  2438. top:85px;
  2439. width:5px;
  2440. height:5px;
  2441. display:flex;
  2442. transition:none;
  2443. }
  2444. #u51408 .text {
  2445. position:absolute;
  2446. align-self:center;
  2447. padding:2px 2px 2px 2px;
  2448. box-sizing:border-box;
  2449. width:100%;
  2450. }
  2451. #u51408_img {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:5px;
  2457. height:5px;
  2458. }
  2459. #u51408_text {
  2460. border-width:0px;
  2461. word-wrap:break-word;
  2462. text-transform:none;
  2463. visibility:hidden;
  2464. }
  2465. #u51409 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:330px;
  2469. top:84px;
  2470. width:7px;
  2471. height:7px;
  2472. display:flex;
  2473. transition:none;
  2474. }
  2475. #u51409 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 2px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u51409_img {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:7px;
  2488. height:7px;
  2489. }
  2490. #u51409_text {
  2491. border-width:0px;
  2492. word-wrap:break-word;
  2493. text-transform:none;
  2494. visibility:hidden;
  2495. }
  2496. #u51410 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:347px;
  2500. top:87px;
  2501. width:18px;
  2502. height:1px;
  2503. display:flex;
  2504. -webkit-transform:rotate(90deg);
  2505. -moz-transform:rotate(90deg);
  2506. -ms-transform:rotate(90deg);
  2507. transform:rotate(90deg);
  2508. transition:none;
  2509. }
  2510. #u51410 .text {
  2511. position:absolute;
  2512. align-self:center;
  2513. padding:2px 2px 2px 2px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u51410_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:19px;
  2523. height:2px;
  2524. }
  2525. #u51410_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. visibility:hidden;
  2530. }
  2531. #u51411 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:29px;
  2535. top:24px;
  2536. width:375px;
  2537. height:44px;
  2538. display:flex;
  2539. transition:none;
  2540. }
  2541. #u51411 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:2px 2px 2px 2px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u51411_img {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:375px;
  2554. height:44px;
  2555. }
  2556. #u51411_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. visibility:hidden;
  2561. }
  2562. #u51412_div {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:375px;
  2568. height:50px;
  2569. background:inherit;
  2570. background-color:rgba(255, 255, 255, 1);
  2571. box-sizing:border-box;
  2572. border-width:1px;
  2573. border-style:solid;
  2574. border-color:rgba(242, 242, 242, 1);
  2575. border-radius:26px;
  2576. border-top-left-radius:0px;
  2577. border-top-right-radius:0px;
  2578. filter:drop-shadow(none);
  2579. transition:none;
  2580. }
  2581. #u51412 {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:29px;
  2585. top:788px;
  2586. width:375px;
  2587. height:50px;
  2588. display:flex;
  2589. transition:none;
  2590. transform-origin:50% 50%;
  2591. }
  2592. #u51412 .text {
  2593. position:absolute;
  2594. align-self:center;
  2595. padding:2px 2px 2px 2px;
  2596. box-sizing:border-box;
  2597. width:100%;
  2598. }
  2599. #u51412_text {
  2600. border-width:0px;
  2601. word-wrap:break-word;
  2602. text-transform:none;
  2603. visibility:hidden;
  2604. }
  2605. #u51413 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:0px;
  2611. height:0px;
  2612. }
  2613. #u51414 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:69px;
  2617. top:792px;
  2618. width:24px;
  2619. height:24px;
  2620. display:flex;
  2621. transition:none;
  2622. font-size:8px;
  2623. }
  2624. #u51414 .text {
  2625. position:absolute;
  2626. align-self:center;
  2627. padding:2px 2px 2px 2px;
  2628. box-sizing:border-box;
  2629. width:100%;
  2630. }
  2631. #u51414_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:24px;
  2637. height:24px;
  2638. }
  2639. #u51414_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. }
  2644. #u51415_div {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:0px;
  2648. top:0px;
  2649. width:25px;
  2650. height:17px;
  2651. background:inherit;
  2652. background-color:rgba(255, 255, 255, 0);
  2653. border-radius:0px;
  2654. filter:drop-shadow(none);
  2655. transition:none;
  2656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2657. font-weight:400;
  2658. font-style:normal;
  2659. font-size:12px;
  2660. }
  2661. #u51415 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:69px;
  2665. top:817px;
  2666. width:25px;
  2667. height:17px;
  2668. display:flex;
  2669. transition:none;
  2670. transform-origin:50% 50%;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:12px;
  2675. }
  2676. #u51415 .text {
  2677. position:absolute;
  2678. align-self:flex-start;
  2679. padding:0px 0px 0px 0px;
  2680. box-sizing:border-box;
  2681. width:100%;
  2682. }
  2683. #u51415_text {
  2684. border-width:0px;
  2685. white-space:nowrap;
  2686. text-transform:none;
  2687. }
  2688. #u51416 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:0px;
  2694. height:0px;
  2695. }
  2696. #u51417 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:339px;
  2700. top:794px;
  2701. width:24px;
  2702. height:24px;
  2703. display:flex;
  2704. transition:none;
  2705. font-size:8px;
  2706. }
  2707. #u51417 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 2px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u51417_img {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:24px;
  2720. height:24px;
  2721. }
  2722. #u51417_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. }
  2727. #u51418_div {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:25px;
  2733. height:17px;
  2734. background:inherit;
  2735. background-color:rgba(255, 255, 255, 0);
  2736. border-radius:0px;
  2737. filter:drop-shadow(none);
  2738. transition:none;
  2739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2740. font-weight:400;
  2741. font-style:normal;
  2742. font-size:12px;
  2743. }
  2744. #u51418 {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:339px;
  2748. top:819px;
  2749. width:25px;
  2750. height:17px;
  2751. display:flex;
  2752. transition:none;
  2753. transform-origin:50% 50%;
  2754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:12px;
  2758. }
  2759. #u51418 .text {
  2760. position:absolute;
  2761. align-self:flex-start;
  2762. padding:0px 0px 0px 0px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u51418_text {
  2767. border-width:0px;
  2768. white-space:nowrap;
  2769. text-transform:none;
  2770. }
  2771. #u51419_div {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:375px;
  2777. height:681px;
  2778. background:inherit;
  2779. background-color:rgba(242, 242, 242, 0.4627450980392157);
  2780. border-radius:0px;
  2781. filter:drop-shadow(none);
  2782. transition:none;
  2783. }
  2784. #u51419 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:29px;
  2788. top:107px;
  2789. width:375px;
  2790. height:681px;
  2791. display:flex;
  2792. transition:none;
  2793. transform-origin:50% 50%;
  2794. }
  2795. #u51419 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:2px 2px 2px 2px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u51419_text {
  2803. border-width:0px;
  2804. word-wrap:break-word;
  2805. text-transform:none;
  2806. visibility:hidden;
  2807. }
  2808. #u51420 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:0px;
  2814. height:0px;
  2815. }
  2816. #u51421 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:251px;
  2820. top:792px;
  2821. width:24px;
  2822. height:24px;
  2823. display:flex;
  2824. transition:none;
  2825. font-size:8px;
  2826. }
  2827. #u51421 .text {
  2828. position:absolute;
  2829. align-self:center;
  2830. padding:2px 2px 2px 2px;
  2831. box-sizing:border-box;
  2832. width:100%;
  2833. }
  2834. #u51421_img {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:24px;
  2840. height:24px;
  2841. }
  2842. #u51421_text {
  2843. border-width:0px;
  2844. word-wrap:break-word;
  2845. text-transform:none;
  2846. }
  2847. #u51422_div {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:37px;
  2853. height:17px;
  2854. background:inherit;
  2855. background-color:rgba(255, 255, 255, 0);
  2856. border-radius:0px;
  2857. filter:drop-shadow(none);
  2858. transition:none;
  2859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2860. font-weight:400;
  2861. font-style:normal;
  2862. font-size:12px;
  2863. }
  2864. #u51422 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:245px;
  2868. top:817px;
  2869. width:37px;
  2870. height:17px;
  2871. display:flex;
  2872. transition:none;
  2873. transform-origin:50% 50%;
  2874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. font-size:12px;
  2878. }
  2879. #u51422 .text {
  2880. position:absolute;
  2881. align-self:flex-start;
  2882. padding:0px 0px 0px 0px;
  2883. box-sizing:border-box;
  2884. width:100%;
  2885. }
  2886. #u51422_text {
  2887. border-width:0px;
  2888. white-space:nowrap;
  2889. text-transform:none;
  2890. }
  2891. #u51423 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:0px;
  2897. height:0px;
  2898. }
  2899. #u51424 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:157px;
  2903. top:792px;
  2904. width:24px;
  2905. height:24px;
  2906. display:flex;
  2907. transition:none;
  2908. font-size:8px;
  2909. }
  2910. #u51424 .text {
  2911. position:absolute;
  2912. align-self:center;
  2913. padding:2px 2px 2px 2px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u51424_img {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:24px;
  2923. height:24px;
  2924. }
  2925. #u51424_text {
  2926. border-width:0px;
  2927. word-wrap:break-word;
  2928. text-transform:none;
  2929. }
  2930. #u51425_div {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:37px;
  2936. height:17px;
  2937. background:inherit;
  2938. background-color:rgba(255, 255, 255, 0);
  2939. border-radius:0px;
  2940. filter:drop-shadow(none);
  2941. transition:none;
  2942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2943. font-weight:400;
  2944. font-style:normal;
  2945. font-size:12px;
  2946. }
  2947. #u51425 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:151px;
  2951. top:817px;
  2952. width:37px;
  2953. height:17px;
  2954. display:flex;
  2955. transition:none;
  2956. transform-origin:50% 50%;
  2957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:12px;
  2961. }
  2962. #u51425 .text {
  2963. position:absolute;
  2964. align-self:flex-start;
  2965. padding:0px 0px 0px 0px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u51425_text {
  2970. border-width:0px;
  2971. white-space:nowrap;
  2972. text-transform:none;
  2973. }
  2974. #u51426_div {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:375px;
  2980. height:736px;
  2981. background:inherit;
  2982. background-color:rgba(242, 242, 242, 1);
  2983. box-sizing:border-box;
  2984. border-width:1px;
  2985. border-style:solid;
  2986. border-color:rgba(242, 242, 242, 1);
  2987. border-radius:26px;
  2988. border-top-left-radius:0px;
  2989. border-top-right-radius:0px;
  2990. filter:drop-shadow(none);
  2991. transition:none;
  2992. }
  2993. #u51426 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:29px;
  2997. top:105px;
  2998. width:375px;
  2999. height:736px;
  3000. display:flex;
  3001. transition:none;
  3002. transform-origin:50% 50%;
  3003. }
  3004. #u51426 .text {
  3005. position:absolute;
  3006. align-self:center;
  3007. padding:2px 2px 2px 2px;
  3008. box-sizing:border-box;
  3009. width:100%;
  3010. }
  3011. #u51426_text {
  3012. border-width:0px;
  3013. word-wrap:break-word;
  3014. text-transform:none;
  3015. visibility:hidden;
  3016. }
  3017. #u51427 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:0px;
  3021. top:0px;
  3022. width:0px;
  3023. height:0px;
  3024. }
  3025. #u51428_div {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:0px;
  3029. top:0px;
  3030. width:197px;
  3031. height:20px;
  3032. background:inherit;
  3033. background-color:rgba(255, 255, 255, 0);
  3034. border-radius:0px;
  3035. filter:drop-shadow(none);
  3036. transition:none;
  3037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. }
  3041. #u51428 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:45px;
  3045. top:74px;
  3046. width:197px;
  3047. height:20px;
  3048. display:flex;
  3049. transition:none;
  3050. transform-origin:50% 50%;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. }
  3055. #u51428 .text {
  3056. position:absolute;
  3057. align-self:flex-start;
  3058. padding:0px 0px 0px 0px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u51428_text {
  3063. border-width:0px;
  3064. white-space:nowrap;
  3065. text-transform:none;
  3066. }
  3067. #u51429 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:264px;
  3071. top:78px;
  3072. width:18px;
  3073. height:14px;
  3074. display:flex;
  3075. transition:none;
  3076. }
  3077. #u51429 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 2px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u51429_img {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:18px;
  3090. height:14px;
  3091. }
  3092. #u51429_text {
  3093. border-width:0px;
  3094. word-wrap:break-word;
  3095. text-transform:none;
  3096. visibility:hidden;
  3097. }
  3098. #u51430_div {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:375px;
  3104. height:180px;
  3105. background:inherit;
  3106. background-color:rgba(255, 255, 255, 1);
  3107. border-bottom:0px;
  3108. border-radius:0px;
  3109. border-bottom-right-radius:0px;
  3110. border-bottom-left-radius:0px;
  3111. filter:drop-shadow(none);
  3112. transition:none;
  3113. }
  3114. #u51430 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:29px;
  3118. top:105px;
  3119. width:375px;
  3120. height:180px;
  3121. display:flex;
  3122. transition:none;
  3123. transform-origin:50% 50%;
  3124. }
  3125. #u51430 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 2px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u51430_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. }
  3137. #u51431 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:0px;
  3143. height:0px;
  3144. }
  3145. #u51432_div {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:0px;
  3149. top:0px;
  3150. width:51px;
  3151. height:14px;
  3152. background:inherit;
  3153. background-color:rgba(255, 255, 255, 0);
  3154. border-left:0px;
  3155. border-top:0px;
  3156. border-right:0px;
  3157. border-radius:0px;
  3158. border-bottom-right-radius:0px;
  3159. border-bottom-left-radius:0px;
  3160. filter:drop-shadow(none);
  3161. transition:none;
  3162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3163. font-weight:400;
  3164. font-style:normal;
  3165. font-size:10px;
  3166. text-align:center;
  3167. }
  3168. #u51432 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:51px;
  3172. top:161px;
  3173. width:51px;
  3174. height:14px;
  3175. display:flex;
  3176. transition:none;
  3177. transform-origin:50% 50%;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:10px;
  3182. text-align:center;
  3183. }
  3184. #u51432 .text {
  3185. position:absolute;
  3186. align-self:flex-start;
  3187. padding:0px 0px 0px 0px;
  3188. box-sizing:border-box;
  3189. width:100%;
  3190. }
  3191. #u51432_text {
  3192. border-width:0px;
  3193. word-wrap:break-word;
  3194. text-transform:none;
  3195. }
  3196. #u51433 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:61px;
  3200. top:121px;
  3201. width:30px;
  3202. height:30px;
  3203. display:flex;
  3204. transition:none;
  3205. }
  3206. #u51433 .text {
  3207. position:absolute;
  3208. align-self:center;
  3209. padding:2px 2px 2px 2px;
  3210. box-sizing:border-box;
  3211. width:100%;
  3212. }
  3213. #u51433_img {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:30px;
  3219. height:30px;
  3220. }
  3221. #u51433_text {
  3222. border-width:0px;
  3223. word-wrap:break-word;
  3224. text-transform:none;
  3225. visibility:hidden;
  3226. }
  3227. #u51434_div {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:9px;
  3233. height:11px;
  3234. background:inherit;
  3235. background-color:rgba(217, 0, 27, 1);
  3236. border-radius:4px;
  3237. filter:drop-shadow(none);
  3238. transition:none;
  3239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3240. font-weight:400;
  3241. font-style:normal;
  3242. font-size:8px;
  3243. color:#FFFFFF;
  3244. text-align:center;
  3245. }
  3246. #u51434 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:85px;
  3250. top:116px;
  3251. width:9px;
  3252. height:11px;
  3253. display:flex;
  3254. transition:none;
  3255. transform-origin:50% 50%;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:8px;
  3260. color:#FFFFFF;
  3261. text-align:center;
  3262. }
  3263. #u51434 .text {
  3264. position:absolute;
  3265. align-self:flex-start;
  3266. padding:0px 0px 0px 0px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u51434_text {
  3271. border-width:0px;
  3272. white-space:nowrap;
  3273. text-transform:none;
  3274. }
  3275. #u51435 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:209px;
  3279. top:265px;
  3280. width:15px;
  3281. height:7px;
  3282. display:flex;
  3283. transition:none;
  3284. }
  3285. #u51435 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 2px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u51435_img {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:15px;
  3298. height:7px;
  3299. }
  3300. #u51435_text {
  3301. border-width:0px;
  3302. word-wrap:break-word;
  3303. text-transform:none;
  3304. visibility:hidden;
  3305. }
  3306. #u51436 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:0px;
  3312. height:0px;
  3313. }
  3314. #u51437_div {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:51px;
  3320. height:14px;
  3321. background:inherit;
  3322. background-color:rgba(255, 255, 255, 0);
  3323. border-left:0px;
  3324. border-top:0px;
  3325. border-right:0px;
  3326. border-radius:0px;
  3327. border-bottom-right-radius:0px;
  3328. border-bottom-left-radius:0px;
  3329. filter:drop-shadow(none);
  3330. transition:none;
  3331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:10px;
  3335. text-align:center;
  3336. }
  3337. #u51437 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:142px;
  3341. top:161px;
  3342. width:51px;
  3343. height:14px;
  3344. display:flex;
  3345. transition:none;
  3346. transform-origin:50% 50%;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:10px;
  3351. text-align:center;
  3352. }
  3353. #u51437 .text {
  3354. position:absolute;
  3355. align-self:flex-start;
  3356. padding:0px 0px 0px 0px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u51437_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. }
  3365. #u51438 {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:152px;
  3369. top:121px;
  3370. width:30px;
  3371. height:30px;
  3372. display:flex;
  3373. transition:none;
  3374. }
  3375. #u51438 .text {
  3376. position:absolute;
  3377. align-self:center;
  3378. padding:2px 2px 2px 2px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u51438_img {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:30px;
  3388. height:30px;
  3389. }
  3390. #u51438_text {
  3391. border-width:0px;
  3392. word-wrap:break-word;
  3393. text-transform:none;
  3394. visibility:hidden;
  3395. }
  3396. #u51439_div {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:11px;
  3402. height:11px;
  3403. background:inherit;
  3404. background-color:rgba(217, 0, 27, 1);
  3405. border-radius:4px;
  3406. filter:drop-shadow(none);
  3407. transition:none;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:8px;
  3412. color:#FFFFFF;
  3413. text-align:center;
  3414. }
  3415. #u51439 {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:175px;
  3419. top:116px;
  3420. width:11px;
  3421. height:11px;
  3422. display:flex;
  3423. transition:none;
  3424. transform-origin:50% 50%;
  3425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:8px;
  3429. color:#FFFFFF;
  3430. text-align:center;
  3431. }
  3432. #u51439 .text {
  3433. position:absolute;
  3434. align-self:flex-start;
  3435. padding:0px 0px 0px 0px;
  3436. box-sizing:border-box;
  3437. width:100%;
  3438. }
  3439. #u51439_text {
  3440. border-width:0px;
  3441. white-space:nowrap;
  3442. text-transform:none;
  3443. }
  3444. #u51440 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:0px;
  3448. top:0px;
  3449. width:0px;
  3450. height:0px;
  3451. }
  3452. #u51441_div {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:51px;
  3458. height:14px;
  3459. background:inherit;
  3460. background-color:rgba(255, 255, 255, 0);
  3461. border-left:0px;
  3462. border-top:0px;
  3463. border-right:0px;
  3464. border-radius:0px;
  3465. border-bottom-right-radius:0px;
  3466. border-bottom-left-radius:0px;
  3467. filter:drop-shadow(none);
  3468. transition:none;
  3469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:10px;
  3473. text-align:center;
  3474. }
  3475. #u51441 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:232px;
  3479. top:161px;
  3480. width:51px;
  3481. height:14px;
  3482. display:flex;
  3483. transition:none;
  3484. transform-origin:50% 50%;
  3485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. font-size:10px;
  3489. text-align:center;
  3490. }
  3491. #u51441 .text {
  3492. position:absolute;
  3493. align-self:flex-start;
  3494. padding:0px 0px 0px 0px;
  3495. box-sizing:border-box;
  3496. width:100%;
  3497. }
  3498. #u51441_text {
  3499. border-width:0px;
  3500. word-wrap:break-word;
  3501. text-transform:none;
  3502. }
  3503. #u51442 {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:242px;
  3507. top:121px;
  3508. width:30px;
  3509. height:30px;
  3510. display:flex;
  3511. transition:none;
  3512. }
  3513. #u51442 .text {
  3514. position:absolute;
  3515. align-self:center;
  3516. padding:2px 2px 2px 2px;
  3517. box-sizing:border-box;
  3518. width:100%;
  3519. }
  3520. #u51442_img {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:30px;
  3526. height:30px;
  3527. }
  3528. #u51442_text {
  3529. border-width:0px;
  3530. word-wrap:break-word;
  3531. text-transform:none;
  3532. visibility:hidden;
  3533. }
  3534. #u51443_div {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:8px;
  3540. height:11px;
  3541. background:inherit;
  3542. background-color:rgba(217, 0, 27, 1);
  3543. border-radius:4px;
  3544. filter:drop-shadow(none);
  3545. transition:none;
  3546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3547. font-weight:400;
  3548. font-style:normal;
  3549. font-size:8px;
  3550. color:#FFFFFF;
  3551. text-align:center;
  3552. }
  3553. #u51443 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:267px;
  3557. top:116px;
  3558. width:8px;
  3559. height:11px;
  3560. display:flex;
  3561. transition:none;
  3562. transform-origin:50% 50%;
  3563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3564. font-weight:400;
  3565. font-style:normal;
  3566. font-size:8px;
  3567. color:#FFFFFF;
  3568. text-align:center;
  3569. }
  3570. #u51443 .text {
  3571. position:absolute;
  3572. align-self:flex-start;
  3573. padding:0px 0px 0px 0px;
  3574. box-sizing:border-box;
  3575. width:100%;
  3576. }
  3577. #u51443_text {
  3578. border-width:0px;
  3579. word-wrap:break-word;
  3580. text-transform:none;
  3581. }
  3582. #u51444 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:0px;
  3586. top:0px;
  3587. width:0px;
  3588. height:0px;
  3589. }
  3590. #u51445_div {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:51px;
  3596. height:14px;
  3597. background:inherit;
  3598. background-color:rgba(255, 255, 255, 0);
  3599. border-left:0px;
  3600. border-top:0px;
  3601. border-right:0px;
  3602. border-radius:0px;
  3603. border-bottom-right-radius:0px;
  3604. border-bottom-left-radius:0px;
  3605. filter:drop-shadow(none);
  3606. transition:none;
  3607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:10px;
  3611. text-align:center;
  3612. }
  3613. #u51445 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:323px;
  3617. top:161px;
  3618. width:51px;
  3619. height:14px;
  3620. display:flex;
  3621. transition:none;
  3622. transform-origin:50% 50%;
  3623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3624. font-weight:400;
  3625. font-style:normal;
  3626. font-size:10px;
  3627. text-align:center;
  3628. }
  3629. #u51445 .text {
  3630. position:absolute;
  3631. align-self:flex-start;
  3632. padding:0px 0px 0px 0px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u51445_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. }
  3641. #u51446 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:333px;
  3645. top:121px;
  3646. width:30px;
  3647. height:30px;
  3648. display:flex;
  3649. transition:none;
  3650. }
  3651. #u51446 .text {
  3652. position:absolute;
  3653. align-self:center;
  3654. padding:2px 2px 2px 2px;
  3655. box-sizing:border-box;
  3656. width:100%;
  3657. }
  3658. #u51446_img {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:30px;
  3664. height:30px;
  3665. }
  3666. #u51446_text {
  3667. border-width:0px;
  3668. word-wrap:break-word;
  3669. text-transform:none;
  3670. visibility:hidden;
  3671. }
  3672. #u51447_div {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:11px;
  3678. height:11px;
  3679. background:inherit;
  3680. background-color:rgba(217, 0, 27, 1);
  3681. border-radius:4px;
  3682. filter:drop-shadow(none);
  3683. transition:none;
  3684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3685. font-weight:400;
  3686. font-style:normal;
  3687. font-size:8px;
  3688. color:#FFFFFF;
  3689. text-align:center;
  3690. }
  3691. #u51447 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:356px;
  3695. top:116px;
  3696. width:11px;
  3697. height:11px;
  3698. display:flex;
  3699. transition:none;
  3700. transform-origin:50% 50%;
  3701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:8px;
  3705. color:#FFFFFF;
  3706. text-align:center;
  3707. }
  3708. #u51447 .text {
  3709. position:absolute;
  3710. align-self:flex-start;
  3711. padding:0px 0px 0px 0px;
  3712. box-sizing:border-box;
  3713. width:100%;
  3714. }
  3715. #u51447_text {
  3716. border-width:0px;
  3717. white-space:nowrap;
  3718. text-transform:none;
  3719. }
  3720. #u51448 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:0px;
  3726. height:0px;
  3727. }
  3728. #u51449_div {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:197px;
  3734. height:20px;
  3735. background:inherit;
  3736. background-color:rgba(255, 255, 255, 0);
  3737. border-radius:0px;
  3738. filter:drop-shadow(none);
  3739. transition:none;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. }
  3744. #u51449 {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:508px;
  3748. top:74px;
  3749. width:197px;
  3750. height:20px;
  3751. display:flex;
  3752. transition:none;
  3753. transform-origin:50% 50%;
  3754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. }
  3758. #u51449 .text {
  3759. position:absolute;
  3760. align-self:flex-start;
  3761. padding:0px 0px 0px 0px;
  3762. box-sizing:border-box;
  3763. width:100%;
  3764. }
  3765. #u51449_text {
  3766. border-width:0px;
  3767. white-space:nowrap;
  3768. text-transform:none;
  3769. }
  3770. #u51450 {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:727px;
  3774. top:78px;
  3775. width:18px;
  3776. height:14px;
  3777. display:flex;
  3778. transition:none;
  3779. }
  3780. #u51450 .text {
  3781. position:absolute;
  3782. align-self:center;
  3783. padding:2px 2px 2px 2px;
  3784. box-sizing:border-box;
  3785. width:100%;
  3786. }
  3787. #u51450_img {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:18px;
  3793. height:14px;
  3794. }
  3795. #u51450_text {
  3796. border-width:0px;
  3797. word-wrap:break-word;
  3798. text-transform:none;
  3799. visibility:hidden;
  3800. }
  3801. #u51451 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:0px;
  3807. height:0px;
  3808. }
  3809. #u51452_div {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:375px;
  3815. height:30px;
  3816. background:inherit;
  3817. background-color:rgba(255, 255, 255, 1);
  3818. border-bottom:0px;
  3819. border-radius:0px;
  3820. border-bottom-right-radius:0px;
  3821. border-bottom-left-radius:0px;
  3822. filter:drop-shadow(0px 0px 1.5px rgba(0, 0, 0, 0.34901960784313724));
  3823. transition:none;
  3824. }
  3825. #u51452 {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:492px;
  3829. top:105px;
  3830. width:375px;
  3831. height:30px;
  3832. display:flex;
  3833. transition:none;
  3834. transform-origin:50% 50%;
  3835. }
  3836. #u51452 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 2px 2px 2px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u51452_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. }
  3848. #u51453 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:676px;
  3852. top:117px;
  3853. width:15px;
  3854. height:7px;
  3855. display:flex;
  3856. -webkit-transform:rotate(180deg);
  3857. -moz-transform:rotate(180deg);
  3858. -ms-transform:rotate(180deg);
  3859. transform:rotate(180deg);
  3860. transition:none;
  3861. }
  3862. #u51453 .text {
  3863. position:absolute;
  3864. align-self:center;
  3865. padding:2px 2px 2px 2px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u51453_img {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:15px;
  3875. height:7px;
  3876. }
  3877. #u51453_text {
  3878. border-width:0px;
  3879. word-wrap:break-word;
  3880. text-transform:none;
  3881. visibility:hidden;
  3882. }
  3883. #u51454_div {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:0px;
  3888. width:49px;
  3889. height:40px;
  3890. background:inherit;
  3891. background-color:rgba(255, 255, 255, 0);
  3892. border-radius:0px;
  3893. filter:drop-shadow(none);
  3894. transition:none;
  3895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3896. font-weight:400;
  3897. font-style:normal;
  3898. font-size:12px;
  3899. color:#7F7F7F;
  3900. line-height:40px;
  3901. }
  3902. #u51454 {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:509px;
  3906. top:235px;
  3907. width:49px;
  3908. height:40px;
  3909. display:flex;
  3910. transition:none;
  3911. transform-origin:50% 50%;
  3912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3913. font-weight:400;
  3914. font-style:normal;
  3915. font-size:12px;
  3916. color:#7F7F7F;
  3917. line-height:40px;
  3918. }
  3919. #u51454 .text {
  3920. position:absolute;
  3921. align-self:center;
  3922. padding:0px 0px 0px 0px;
  3923. box-sizing:border-box;
  3924. width:100%;
  3925. }
  3926. #u51454_text {
  3927. border-width:0px;
  3928. white-space:nowrap;
  3929. text-transform:none;
  3930. }
  3931. #u51455 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:0px;
  3937. height:0px;
  3938. }
  3939. #u51456_div {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:355px;
  3945. height:100px;
  3946. background:inherit;
  3947. background-color:rgba(255, 255, 255, 1);
  3948. border-radius:10px;
  3949. filter:drop-shadow(none);
  3950. transition:none;
  3951. }
  3952. #u51456 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:502px;
  3956. top:275px;
  3957. width:355px;
  3958. height:100px;
  3959. display:flex;
  3960. transition:none;
  3961. transform-origin:50% 50%;
  3962. }
  3963. #u51456 .text {
  3964. position:absolute;
  3965. align-self:center;
  3966. padding:2px 2px 2px 2px;
  3967. box-sizing:border-box;
  3968. width:100%;
  3969. }
  3970. #u51456_text {
  3971. border-width:0px;
  3972. word-wrap:break-word;
  3973. text-transform:none;
  3974. }
  3975. #u51457_div {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:19px;
  3981. height:13px;
  3982. background:inherit;
  3983. background-color:rgba(0, 0, 0, 1);
  3984. border-radius:0px;
  3985. filter:drop-shadow(none);
  3986. transition:none;
  3987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3988. font-weight:400;
  3989. font-style:normal;
  3990. font-size:9px;
  3991. color:#FFFFFF;
  3992. }
  3993. #u51457 {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:838px;
  3997. top:275px;
  3998. width:19px;
  3999. height:13px;
  4000. display:flex;
  4001. transition:none;
  4002. transform-origin:50% 50%;
  4003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4004. font-weight:400;
  4005. font-style:normal;
  4006. font-size:9px;
  4007. color:#FFFFFF;
  4008. }
  4009. #u51457 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:0px 0px 0px 0px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u51457_text {
  4017. border-width:0px;
  4018. white-space:nowrap;
  4019. text-transform:none;
  4020. }
  4021. #u51458_div {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:85px;
  4027. height:30px;
  4028. background:inherit;
  4029. background-color:rgba(255, 255, 255, 0);
  4030. border-left:0px;
  4031. border-top:0px;
  4032. border-right:0px;
  4033. border-radius:0px;
  4034. border-bottom-right-radius:0px;
  4035. border-bottom-left-radius:0px;
  4036. filter:drop-shadow(none);
  4037. transition:none;
  4038. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4039. font-weight:500;
  4040. font-style:normal;
  4041. font-size:14px;
  4042. line-height:30px;
  4043. }
  4044. #u51458 {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:523px;
  4048. top:285px;
  4049. width:85px;
  4050. height:30px;
  4051. display:flex;
  4052. transition:none;
  4053. transform-origin:50% 50%;
  4054. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4055. font-weight:500;
  4056. font-style:normal;
  4057. font-size:14px;
  4058. line-height:30px;
  4059. }
  4060. #u51458 .text {
  4061. position:absolute;
  4062. align-self:flex-start;
  4063. padding:0px 0px 0px 0px;
  4064. box-sizing:border-box;
  4065. width:100%;
  4066. }
  4067. #u51458_text {
  4068. border-width:0px;
  4069. white-space:nowrap;
  4070. text-transform:none;
  4071. }
  4072. #u51459_div {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:0px;
  4076. top:0px;
  4077. width:325px;
  4078. height:50px;
  4079. background:inherit;
  4080. background-color:rgba(255, 255, 255, 0);
  4081. border-left:0px;
  4082. border-top:0px;
  4083. border-right:0px;
  4084. border-radius:0px;
  4085. border-bottom-right-radius:0px;
  4086. border-bottom-left-radius:0px;
  4087. filter:drop-shadow(none);
  4088. transition:none;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. line-height:25px;
  4093. }
  4094. #u51459 {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:522px;
  4098. top:314px;
  4099. width:325px;
  4100. height:50px;
  4101. display:flex;
  4102. transition:none;
  4103. transform-origin:50% 50%;
  4104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. line-height:25px;
  4108. }
  4109. #u51459 .text {
  4110. position:absolute;
  4111. align-self:flex-start;
  4112. padding:0px 0px 0px 0px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u51459_text {
  4117. border-width:0px;
  4118. word-wrap:break-word;
  4119. text-transform:none;
  4120. }
  4121. #u51460 {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:0px;
  4127. height:0px;
  4128. }
  4129. #u51461_div {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:355px;
  4135. height:128px;
  4136. background:inherit;
  4137. background-color:rgba(255, 255, 255, 1);
  4138. border-radius:10px;
  4139. filter:drop-shadow(none);
  4140. transition:none;
  4141. }
  4142. #u51461 {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:502px;
  4146. top:385px;
  4147. width:355px;
  4148. height:128px;
  4149. display:flex;
  4150. transition:none;
  4151. transform-origin:50% 50%;
  4152. }
  4153. #u51461 .text {
  4154. position:absolute;
  4155. align-self:center;
  4156. padding:2px 2px 2px 2px;
  4157. box-sizing:border-box;
  4158. width:100%;
  4159. }
  4160. #u51461_text {
  4161. border-width:0px;
  4162. word-wrap:break-word;
  4163. text-transform:none;
  4164. }
  4165. #u51462_div {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:19px;
  4171. height:13px;
  4172. background:inherit;
  4173. background-color:rgba(0, 0, 0, 1);
  4174. border-radius:0px;
  4175. filter:drop-shadow(none);
  4176. transition:none;
  4177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4178. font-weight:400;
  4179. font-style:normal;
  4180. font-size:9px;
  4181. color:#FFFFFF;
  4182. }
  4183. #u51462 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:838px;
  4187. top:385px;
  4188. width:19px;
  4189. height:13px;
  4190. display:flex;
  4191. transition:none;
  4192. transform-origin:50% 50%;
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:9px;
  4197. color:#FFFFFF;
  4198. }
  4199. #u51462 .text {
  4200. position:absolute;
  4201. align-self:center;
  4202. padding:0px 0px 0px 0px;
  4203. box-sizing:border-box;
  4204. width:100%;
  4205. }
  4206. #u51462_text {
  4207. border-width:0px;
  4208. white-space:nowrap;
  4209. text-transform:none;
  4210. }
  4211. #u51463_div {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:150px;
  4217. height:30px;
  4218. background:inherit;
  4219. background-color:rgba(255, 255, 255, 0);
  4220. border-left:0px;
  4221. border-top:0px;
  4222. border-right:0px;
  4223. border-radius:0px;
  4224. border-bottom-right-radius:0px;
  4225. border-bottom-left-radius:0px;
  4226. filter:drop-shadow(none);
  4227. transition:none;
  4228. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4229. font-weight:500;
  4230. font-style:normal;
  4231. font-size:14px;
  4232. line-height:30px;
  4233. }
  4234. #u51463 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:523px;
  4238. top:395px;
  4239. width:150px;
  4240. height:30px;
  4241. display:flex;
  4242. transition:none;
  4243. transform-origin:50% 50%;
  4244. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4245. font-weight:500;
  4246. font-style:normal;
  4247. font-size:14px;
  4248. line-height:30px;
  4249. }
  4250. #u51463 .text {
  4251. position:absolute;
  4252. align-self:flex-start;
  4253. padding:0px 0px 0px 0px;
  4254. box-sizing:border-box;
  4255. width:100%;
  4256. }
  4257. #u51463_text {
  4258. border-width:0px;
  4259. white-space:nowrap;
  4260. text-transform:none;
  4261. }
  4262. #u51464_div {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:325px;
  4268. height:80px;
  4269. background:inherit;
  4270. background-color:rgba(255, 255, 255, 0);
  4271. border-left:0px;
  4272. border-top:0px;
  4273. border-right:0px;
  4274. border-radius:0px;
  4275. border-bottom-right-radius:0px;
  4276. border-bottom-left-radius:0px;
  4277. filter:drop-shadow(none);
  4278. transition:none;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:12px;
  4283. line-height:20px;
  4284. }
  4285. #u51464 {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:522px;
  4289. top:424px;
  4290. width:325px;
  4291. height:80px;
  4292. display:flex;
  4293. transition:none;
  4294. transform-origin:50% 50%;
  4295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:12px;
  4299. line-height:20px;
  4300. }
  4301. #u51464 .text {
  4302. position:absolute;
  4303. align-self:flex-start;
  4304. padding:0px 0px 0px 0px;
  4305. box-sizing:border-box;
  4306. width:100%;
  4307. }
  4308. #u51464_text {
  4309. border-width:0px;
  4310. word-wrap:break-word;
  4311. text-transform:none;
  4312. }
  4313. #u51465_div {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:0px;
  4317. top:0px;
  4318. width:35px;
  4319. height:14px;
  4320. background:inherit;
  4321. background-color:rgba(245, 109, 35, 1);
  4322. border-radius:2px;
  4323. filter:drop-shadow(none);
  4324. transition:none;
  4325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4326. font-weight:400;
  4327. font-style:normal;
  4328. font-size:10px;
  4329. color:#FFFFFF;
  4330. text-align:center;
  4331. }
  4332. #u51465 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:810px;
  4336. top:493px;
  4337. width:35px;
  4338. height:14px;
  4339. display:flex;
  4340. transition:none;
  4341. transform-origin:50% 50%;
  4342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4343. font-weight:400;
  4344. font-style:normal;
  4345. font-size:10px;
  4346. color:#FFFFFF;
  4347. text-align:center;
  4348. }
  4349. #u51465 .text {
  4350. position:absolute;
  4351. align-self:flex-start;
  4352. padding:0px 2px 0px 2px;
  4353. box-sizing:border-box;
  4354. width:100%;
  4355. }
  4356. #u51465_text {
  4357. border-width:0px;
  4358. white-space:nowrap;
  4359. text-transform:none;
  4360. }
  4361. #u51466 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:0px;
  4367. height:0px;
  4368. }
  4369. #u51467_div {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:355px;
  4375. height:128px;
  4376. background:inherit;
  4377. background-color:rgba(255, 255, 255, 1);
  4378. border-radius:10px;
  4379. filter:drop-shadow(none);
  4380. transition:none;
  4381. }
  4382. #u51467 {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:502px;
  4386. top:523px;
  4387. width:355px;
  4388. height:128px;
  4389. display:flex;
  4390. transition:none;
  4391. transform-origin:50% 50%;
  4392. }
  4393. #u51467 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:2px 2px 2px 2px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u51467_text {
  4401. border-width:0px;
  4402. word-wrap:break-word;
  4403. text-transform:none;
  4404. }
  4405. #u51468_div {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:19px;
  4411. height:13px;
  4412. background:inherit;
  4413. background-color:rgba(0, 0, 0, 1);
  4414. border-radius:0px;
  4415. filter:drop-shadow(none);
  4416. transition:none;
  4417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4418. font-weight:400;
  4419. font-style:normal;
  4420. font-size:9px;
  4421. color:#FFFFFF;
  4422. }
  4423. #u51468 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:838px;
  4427. top:523px;
  4428. width:19px;
  4429. height:13px;
  4430. display:flex;
  4431. transition:none;
  4432. transform-origin:50% 50%;
  4433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4434. font-weight:400;
  4435. font-style:normal;
  4436. font-size:9px;
  4437. color:#FFFFFF;
  4438. }
  4439. #u51468 .text {
  4440. position:absolute;
  4441. align-self:center;
  4442. padding:0px 0px 0px 0px;
  4443. box-sizing:border-box;
  4444. width:100%;
  4445. }
  4446. #u51468_text {
  4447. border-width:0px;
  4448. white-space:nowrap;
  4449. text-transform:none;
  4450. }
  4451. #u51469_div {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:169px;
  4457. height:30px;
  4458. background:inherit;
  4459. background-color:rgba(255, 255, 255, 0);
  4460. border-left:0px;
  4461. border-top:0px;
  4462. border-right:0px;
  4463. border-radius:0px;
  4464. border-bottom-right-radius:0px;
  4465. border-bottom-left-radius:0px;
  4466. filter:drop-shadow(none);
  4467. transition:none;
  4468. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4469. font-weight:500;
  4470. font-style:normal;
  4471. font-size:14px;
  4472. line-height:30px;
  4473. }
  4474. #u51469 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:523px;
  4478. top:533px;
  4479. width:169px;
  4480. height:30px;
  4481. display:flex;
  4482. transition:none;
  4483. transform-origin:50% 50%;
  4484. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4485. font-weight:500;
  4486. font-style:normal;
  4487. font-size:14px;
  4488. line-height:30px;
  4489. }
  4490. #u51469 .text {
  4491. position:absolute;
  4492. align-self:flex-start;
  4493. padding:0px 0px 0px 0px;
  4494. box-sizing:border-box;
  4495. width:100%;
  4496. }
  4497. #u51469_text {
  4498. border-width:0px;
  4499. white-space:nowrap;
  4500. text-transform:none;
  4501. }
  4502. #u51470_div {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:0px;
  4506. top:0px;
  4507. width:325px;
  4508. height:80px;
  4509. background:inherit;
  4510. background-color:rgba(255, 255, 255, 0);
  4511. border-left:0px;
  4512. border-top:0px;
  4513. border-right:0px;
  4514. border-radius:0px;
  4515. border-bottom-right-radius:0px;
  4516. border-bottom-left-radius:0px;
  4517. filter:drop-shadow(none);
  4518. transition:none;
  4519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4520. font-weight:400;
  4521. font-style:normal;
  4522. font-size:12px;
  4523. line-height:20px;
  4524. }
  4525. #u51470 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:522px;
  4529. top:562px;
  4530. width:325px;
  4531. height:80px;
  4532. display:flex;
  4533. transition:none;
  4534. transform-origin:50% 50%;
  4535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4536. font-weight:400;
  4537. font-style:normal;
  4538. font-size:12px;
  4539. line-height:20px;
  4540. }
  4541. #u51470 .text {
  4542. position:absolute;
  4543. align-self:flex-start;
  4544. padding:0px 0px 0px 0px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u51470_text {
  4549. border-width:0px;
  4550. word-wrap:break-word;
  4551. text-transform:none;
  4552. }
  4553. #u51471 {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:0px;
  4559. height:0px;
  4560. }
  4561. #u51472_div {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:0px;
  4565. top:0px;
  4566. width:197px;
  4567. height:20px;
  4568. background:inherit;
  4569. background-color:rgba(255, 255, 255, 0);
  4570. border-radius:0px;
  4571. filter:drop-shadow(none);
  4572. transition:none;
  4573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. }
  4577. #u51472 {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:972px;
  4581. top:74px;
  4582. width:197px;
  4583. height:20px;
  4584. display:flex;
  4585. transition:none;
  4586. transform-origin:50% 50%;
  4587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. }
  4591. #u51472 .text {
  4592. position:absolute;
  4593. align-self:flex-start;
  4594. padding:0px 0px 0px 0px;
  4595. box-sizing:border-box;
  4596. width:100%;
  4597. }
  4598. #u51472_text {
  4599. border-width:0px;
  4600. white-space:nowrap;
  4601. text-transform:none;
  4602. }
  4603. #u51473 {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:1191px;
  4607. top:78px;
  4608. width:18px;
  4609. height:14px;
  4610. display:flex;
  4611. transition:none;
  4612. }
  4613. #u51473 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:2px 2px 2px 2px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u51473_img {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:18px;
  4626. height:14px;
  4627. }
  4628. #u51473_text {
  4629. border-width:0px;
  4630. word-wrap:break-word;
  4631. text-transform:none;
  4632. visibility:hidden;
  4633. }
  4634. #u51474_div {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:169px;
  4640. height:30px;
  4641. background:inherit;
  4642. background-color:rgba(255, 255, 255, 0);
  4643. border-radius:0px;
  4644. filter:drop-shadow(none);
  4645. transition:none;
  4646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:12px;
  4650. color:#D9001B;
  4651. }
  4652. #u51474 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:1000px;
  4656. top:115px;
  4657. width:169px;
  4658. height:30px;
  4659. display:flex;
  4660. transition:none;
  4661. transform-origin:50% 50%;
  4662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:12px;
  4666. color:#D9001B;
  4667. }
  4668. #u51474 .text {
  4669. position:absolute;
  4670. align-self:center;
  4671. padding:0px 0px 0px 0px;
  4672. box-sizing:border-box;
  4673. width:100%;
  4674. }
  4675. #u51474_text {
  4676. border-width:0px;
  4677. white-space:nowrap;
  4678. text-transform:none;
  4679. }
  4680. #u51475 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:1250px;
  4684. top:130px;
  4685. width:0px;
  4686. height:0px;
  4687. transition:none;
  4688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:12px;
  4692. color:#333333;
  4693. }
  4694. #u51475_seg0 {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:-81px;
  4698. top:-5px;
  4699. width:86px;
  4700. height:10px;
  4701. }
  4702. #u51475_seg1 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:-89px;
  4706. top:-9px;
  4707. width:18px;
  4708. height:18px;
  4709. }
  4710. #u51475_text {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:-90px;
  4714. top:-8px;
  4715. width:100px;
  4716. word-wrap:break-word;
  4717. text-transform:none;
  4718. visibility:hidden;
  4719. }
  4720. #u51476 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:0px;
  4726. height:0px;
  4727. }
  4728. #u51477_div {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:51px;
  4734. height:14px;
  4735. background:inherit;
  4736. background-color:rgba(255, 255, 255, 0);
  4737. border-left:0px;
  4738. border-top:0px;
  4739. border-right:0px;
  4740. border-radius:0px;
  4741. border-bottom-right-radius:0px;
  4742. border-bottom-left-radius:0px;
  4743. filter:drop-shadow(none);
  4744. transition:none;
  4745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4746. font-weight:400;
  4747. font-style:normal;
  4748. font-size:10px;
  4749. text-align:center;
  4750. }
  4751. #u51477 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:142px;
  4755. top:235px;
  4756. width:51px;
  4757. height:14px;
  4758. display:flex;
  4759. transition:none;
  4760. transform-origin:50% 50%;
  4761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4762. font-weight:400;
  4763. font-style:normal;
  4764. font-size:10px;
  4765. text-align:center;
  4766. }
  4767. #u51477 .text {
  4768. position:absolute;
  4769. align-self:flex-start;
  4770. padding:0px 0px 0px 0px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u51477_text {
  4775. border-width:0px;
  4776. word-wrap:break-word;
  4777. text-transform:none;
  4778. }
  4779. #u51478 {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:152px;
  4783. top:195px;
  4784. width:30px;
  4785. height:30px;
  4786. display:flex;
  4787. transition:none;
  4788. }
  4789. #u51478 .text {
  4790. position:absolute;
  4791. align-self:center;
  4792. padding:2px 2px 2px 2px;
  4793. box-sizing:border-box;
  4794. width:100%;
  4795. }
  4796. #u51478_img {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:30px;
  4802. height:30px;
  4803. }
  4804. #u51478_text {
  4805. border-width:0px;
  4806. word-wrap:break-word;
  4807. text-transform:none;
  4808. visibility:hidden;
  4809. }
  4810. #u51479_div {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:9px;
  4816. height:11px;
  4817. background:inherit;
  4818. background-color:rgba(217, 0, 27, 1);
  4819. border-radius:4px;
  4820. filter:drop-shadow(none);
  4821. transition:none;
  4822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. font-size:8px;
  4826. color:#FFFFFF;
  4827. text-align:center;
  4828. }
  4829. #u51479 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:176px;
  4833. top:190px;
  4834. width:9px;
  4835. height:11px;
  4836. display:flex;
  4837. transition:none;
  4838. transform-origin:50% 50%;
  4839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. font-size:8px;
  4843. color:#FFFFFF;
  4844. text-align:center;
  4845. }
  4846. #u51479 .text {
  4847. position:absolute;
  4848. align-self:flex-start;
  4849. padding:0px 0px 0px 0px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u51479_text {
  4854. border-width:0px;
  4855. white-space:nowrap;
  4856. text-transform:none;
  4857. }
  4858. #u51480 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:0px;
  4864. height:0px;
  4865. }
  4866. #u51481_div {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:0px;
  4870. top:0px;
  4871. width:361px;
  4872. height:90px;
  4873. background:inherit;
  4874. background-color:rgba(255, 255, 255, 1);
  4875. box-sizing:border-box;
  4876. border-width:1px;
  4877. border-style:solid;
  4878. border-color:rgba(242, 242, 242, 1);
  4879. border-radius:4px;
  4880. filter:drop-shadow(none);
  4881. transition:none;
  4882. }
  4883. #u51481 {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:36px;
  4887. top:295px;
  4888. width:361px;
  4889. height:90px;
  4890. display:flex;
  4891. transition:none;
  4892. transform-origin:50% 50%;
  4893. }
  4894. #u51481 .text {
  4895. position:absolute;
  4896. align-self:center;
  4897. padding:2px 2px 2px 2px;
  4898. box-sizing:border-box;
  4899. width:100%;
  4900. }
  4901. #u51481_text {
  4902. border-width:0px;
  4903. word-wrap:break-word;
  4904. text-transform:none;
  4905. visibility:hidden;
  4906. }
  4907. #u51482_div {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:37px;
  4913. height:50px;
  4914. background:inherit;
  4915. background-color:rgba(255, 255, 255, 0);
  4916. border-radius:0px;
  4917. filter:drop-shadow(none);
  4918. transition:none;
  4919. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4920. font-weight:650;
  4921. font-style:normal;
  4922. font-size:18px;
  4923. color:#298FFF;
  4924. }
  4925. #u51482 {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:55px;
  4929. top:309px;
  4930. width:37px;
  4931. height:50px;
  4932. display:flex;
  4933. transition:none;
  4934. transform-origin:50% 50%;
  4935. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4936. font-weight:650;
  4937. font-style:normal;
  4938. font-size:18px;
  4939. color:#298FFF;
  4940. }
  4941. #u51482 .text {
  4942. position:absolute;
  4943. align-self:flex-start;
  4944. padding:0px 0px 0px 0px;
  4945. box-sizing:border-box;
  4946. width:100%;
  4947. }
  4948. #u51482_text {
  4949. border-width:0px;
  4950. white-space:nowrap;
  4951. text-transform:none;
  4952. }
  4953. #u51483_div {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:149px;
  4959. height:18px;
  4960. background:inherit;
  4961. background-color:rgba(255, 255, 255, 0);
  4962. border-radius:0px;
  4963. filter:drop-shadow(none);
  4964. transition:none;
  4965. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4966. font-weight:500;
  4967. font-style:normal;
  4968. }
  4969. #u51483 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:107px;
  4973. top:305px;
  4974. width:149px;
  4975. height:18px;
  4976. display:flex;
  4977. transition:none;
  4978. transform-origin:50% 50%;
  4979. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4980. font-weight:500;
  4981. font-style:normal;
  4982. }
  4983. #u51483 .text {
  4984. position:absolute;
  4985. align-self:flex-start;
  4986. padding:0px 0px 0px 0px;
  4987. box-sizing:border-box;
  4988. width:100%;
  4989. }
  4990. #u51483_text {
  4991. border-width:0px;
  4992. white-space:nowrap;
  4993. text-transform:none;
  4994. }
  4995. #u51484_div {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:261px;
  5001. height:36px;
  5002. background:inherit;
  5003. background-color:rgba(255, 255, 255, 0);
  5004. border-radius:0px;
  5005. filter:drop-shadow(none);
  5006. transition:none;
  5007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5008. font-weight:400;
  5009. font-style:normal;
  5010. font-size:10px;
  5011. color:#7F7F7F;
  5012. line-height:18px;
  5013. }
  5014. #u51484 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:107px;
  5018. top:328px;
  5019. width:261px;
  5020. height:36px;
  5021. display:flex;
  5022. transition:none;
  5023. transform-origin:50% 50%;
  5024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:10px;
  5028. color:#7F7F7F;
  5029. line-height:18px;
  5030. }
  5031. #u51484 .text {
  5032. position:absolute;
  5033. align-self:flex-start;
  5034. padding:0px 0px 0px 0px;
  5035. box-sizing:border-box;
  5036. width:100%;
  5037. }
  5038. #u51484_text {
  5039. border-width:0px;
  5040. word-wrap:break-word;
  5041. text-transform:none;
  5042. }
  5043. #u51485 {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:161px;
  5047. top:372px;
  5048. width:7px;
  5049. height:7px;
  5050. display:flex;
  5051. transition:none;
  5052. }
  5053. #u51485 .text {
  5054. position:absolute;
  5055. align-self:center;
  5056. padding:2px 2px 2px 2px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u51485_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:7px;
  5066. height:7px;
  5067. }
  5068. #u51485_text {
  5069. border-width:0px;
  5070. word-wrap:break-word;
  5071. text-transform:none;
  5072. visibility:hidden;
  5073. }
  5074. #u51486 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:180px;
  5078. top:372px;
  5079. width:7px;
  5080. height:7px;
  5081. display:flex;
  5082. transition:none;
  5083. }
  5084. #u51486 .text {
  5085. position:absolute;
  5086. align-self:center;
  5087. padding:2px 2px 2px 2px;
  5088. box-sizing:border-box;
  5089. width:100%;
  5090. }
  5091. #u51486_img {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:7px;
  5097. height:7px;
  5098. }
  5099. #u51486_text {
  5100. border-width:0px;
  5101. word-wrap:break-word;
  5102. text-transform:none;
  5103. visibility:hidden;
  5104. }
  5105. #u51487 {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:199px;
  5109. top:372px;
  5110. width:7px;
  5111. height:7px;
  5112. display:flex;
  5113. transition:none;
  5114. }
  5115. #u51487 .text {
  5116. position:absolute;
  5117. align-self:center;
  5118. padding:2px 2px 2px 2px;
  5119. box-sizing:border-box;
  5120. width:100%;
  5121. }
  5122. #u51487_img {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:7px;
  5128. height:7px;
  5129. }
  5130. #u51487_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. visibility:hidden;
  5135. }
  5136. #u51488 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:218px;
  5140. top:372px;
  5141. width:7px;
  5142. height:7px;
  5143. display:flex;
  5144. transition:none;
  5145. }
  5146. #u51488 .text {
  5147. position:absolute;
  5148. align-self:center;
  5149. padding:2px 2px 2px 2px;
  5150. box-sizing:border-box;
  5151. width:100%;
  5152. }
  5153. #u51488_img {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:7px;
  5159. height:7px;
  5160. }
  5161. #u51488_text {
  5162. border-width:0px;
  5163. word-wrap:break-word;
  5164. text-transform:none;
  5165. visibility:hidden;
  5166. }
  5167. #u51489 {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:379px;
  5171. top:303px;
  5172. width:11px;
  5173. height:11px;
  5174. display:flex;
  5175. transition:none;
  5176. }
  5177. #u51489 .text {
  5178. position:absolute;
  5179. align-self:center;
  5180. padding:2px 2px 2px 2px;
  5181. box-sizing:border-box;
  5182. width:100%;
  5183. }
  5184. #u51489_img {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:0px;
  5188. top:0px;
  5189. width:11px;
  5190. height:11px;
  5191. }
  5192. #u51489_text {
  5193. border-width:0px;
  5194. word-wrap:break-word;
  5195. text-transform:none;
  5196. visibility:hidden;
  5197. }
  5198. #u51490 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:0px;
  5204. height:0px;
  5205. }
  5206. #u51491_div {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:51px;
  5212. height:14px;
  5213. background:inherit;
  5214. background-color:rgba(255, 255, 255, 0);
  5215. border-left:0px;
  5216. border-top:0px;
  5217. border-right:0px;
  5218. border-radius:0px;
  5219. border-bottom-right-radius:0px;
  5220. border-bottom-left-radius:0px;
  5221. filter:drop-shadow(none);
  5222. transition:none;
  5223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:10px;
  5227. text-align:center;
  5228. }
  5229. #u51491 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:232px;
  5233. top:235px;
  5234. width:51px;
  5235. height:14px;
  5236. display:flex;
  5237. transition:none;
  5238. transform-origin:50% 50%;
  5239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5240. font-weight:400;
  5241. font-style:normal;
  5242. font-size:10px;
  5243. text-align:center;
  5244. }
  5245. #u51491 .text {
  5246. position:absolute;
  5247. align-self:flex-start;
  5248. padding:0px 0px 0px 0px;
  5249. box-sizing:border-box;
  5250. width:100%;
  5251. }
  5252. #u51491_text {
  5253. border-width:0px;
  5254. word-wrap:break-word;
  5255. text-transform:none;
  5256. }
  5257. #u51492 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:242px;
  5261. top:195px;
  5262. width:30px;
  5263. height:30px;
  5264. display:flex;
  5265. transition:none;
  5266. }
  5267. #u51492 .text {
  5268. position:absolute;
  5269. align-self:center;
  5270. padding:2px 2px 2px 2px;
  5271. box-sizing:border-box;
  5272. width:100%;
  5273. }
  5274. #u51492_img {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:30px;
  5280. height:30px;
  5281. }
  5282. #u51492_text {
  5283. border-width:0px;
  5284. word-wrap:break-word;
  5285. text-transform:none;
  5286. visibility:hidden;
  5287. }
  5288. #u51493_div {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:9px;
  5294. height:11px;
  5295. background:inherit;
  5296. background-color:rgba(217, 0, 27, 1);
  5297. border-radius:4px;
  5298. filter:drop-shadow(none);
  5299. transition:none;
  5300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:8px;
  5304. color:#FFFFFF;
  5305. text-align:center;
  5306. }
  5307. #u51493 {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:266px;
  5311. top:190px;
  5312. width:9px;
  5313. height:11px;
  5314. display:flex;
  5315. transition:none;
  5316. transform-origin:50% 50%;
  5317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5318. font-weight:400;
  5319. font-style:normal;
  5320. font-size:8px;
  5321. color:#FFFFFF;
  5322. text-align:center;
  5323. }
  5324. #u51493 .text {
  5325. position:absolute;
  5326. align-self:flex-start;
  5327. padding:0px 0px 0px 0px;
  5328. box-sizing:border-box;
  5329. width:100%;
  5330. }
  5331. #u51493_text {
  5332. border-width:0px;
  5333. white-space:nowrap;
  5334. text-transform:none;
  5335. }
  5336. #u51494 {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:0px;
  5342. height:0px;
  5343. }
  5344. #u51495_div {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:0px;
  5348. top:0px;
  5349. width:57px;
  5350. height:30px;
  5351. background:inherit;
  5352. background-color:rgba(255, 255, 255, 0);
  5353. border-radius:0px;
  5354. filter:drop-shadow(none);
  5355. transition:none;
  5356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5357. font-weight:400;
  5358. font-style:normal;
  5359. color:#7F7F7F;
  5360. }
  5361. #u51495 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:199px;
  5365. top:462px;
  5366. width:57px;
  5367. height:30px;
  5368. display:flex;
  5369. transition:none;
  5370. transform-origin:50% 50%;
  5371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. color:#7F7F7F;
  5375. }
  5376. #u51495 .text {
  5377. position:absolute;
  5378. align-self:center;
  5379. padding:0px 0px 0px 0px;
  5380. box-sizing:border-box;
  5381. width:100%;
  5382. }
  5383. #u51495_text {
  5384. border-width:0px;
  5385. white-space:nowrap;
  5386. text-transform:none;
  5387. }
  5388. #u51496 {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:165px;
  5392. top:465px;
  5393. width:25px;
  5394. height:25px;
  5395. display:flex;
  5396. transition:none;
  5397. color:#7F7F7F;
  5398. }
  5399. #u51496 .text {
  5400. position:absolute;
  5401. align-self:center;
  5402. padding:2px 2px 2px 2px;
  5403. box-sizing:border-box;
  5404. width:100%;
  5405. }
  5406. #u51496_img {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:25px;
  5412. height:25px;
  5413. }
  5414. #u51496_text {
  5415. border-width:0px;
  5416. word-wrap:break-word;
  5417. text-transform:none;
  5418. }
  5419. #u51497_div {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:386px;
  5425. height:102px;
  5426. background:inherit;
  5427. background-color:rgba(224, 231, 247, 0);
  5428. border-radius:0px;
  5429. filter:drop-shadow(none);
  5430. transition:none;
  5431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:12px;
  5435. color:#D9001B;
  5436. }
  5437. #u51497 {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:18px;
  5441. top:505px;
  5442. width:386px;
  5443. height:102px;
  5444. display:flex;
  5445. transition:none;
  5446. transform-origin:50% 50%;
  5447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5448. font-weight:400;
  5449. font-style:normal;
  5450. font-size:12px;
  5451. color:#D9001B;
  5452. }
  5453. #u51497 .text {
  5454. position:absolute;
  5455. align-self:center;
  5456. padding:0px 0px 0px 20px;
  5457. box-sizing:border-box;
  5458. width:100%;
  5459. }
  5460. #u51497_text {
  5461. border-width:0px;
  5462. white-space:nowrap;
  5463. text-transform:none;
  5464. }
  5465. #u51498 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:0px;
  5471. height:0px;
  5472. }
  5473. #u51499_div {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:0px;
  5477. top:0px;
  5478. width:51px;
  5479. height:14px;
  5480. background:inherit;
  5481. background-color:rgba(255, 255, 255, 0);
  5482. border-left:0px;
  5483. border-top:0px;
  5484. border-right:0px;
  5485. border-radius:0px;
  5486. border-bottom-right-radius:0px;
  5487. border-bottom-left-radius:0px;
  5488. filter:drop-shadow(none);
  5489. transition:none;
  5490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:10px;
  5494. text-align:center;
  5495. }
  5496. #u51499 {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:51px;
  5500. top:235px;
  5501. width:51px;
  5502. height:14px;
  5503. display:flex;
  5504. transition:none;
  5505. transform-origin:50% 50%;
  5506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5507. font-weight:400;
  5508. font-style:normal;
  5509. font-size:10px;
  5510. text-align:center;
  5511. }
  5512. #u51499 .text {
  5513. position:absolute;
  5514. align-self:flex-start;
  5515. padding:0px 0px 0px 0px;
  5516. box-sizing:border-box;
  5517. width:100%;
  5518. }
  5519. #u51499_text {
  5520. border-width:0px;
  5521. word-wrap:break-word;
  5522. text-transform:none;
  5523. }
  5524. #u51500 {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:61px;
  5528. top:195px;
  5529. width:30px;
  5530. height:30px;
  5531. display:flex;
  5532. transition:none;
  5533. }
  5534. #u51500 .text {
  5535. position:absolute;
  5536. align-self:center;
  5537. padding:2px 2px 2px 2px;
  5538. box-sizing:border-box;
  5539. width:100%;
  5540. }
  5541. #u51500_img {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:30px;
  5547. height:30px;
  5548. }
  5549. #u51500_text {
  5550. border-width:0px;
  5551. word-wrap:break-word;
  5552. text-transform:none;
  5553. visibility:hidden;
  5554. }
  5555. #u51501_div {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:0px;
  5559. top:0px;
  5560. width:9px;
  5561. height:11px;
  5562. background:inherit;
  5563. background-color:rgba(217, 0, 27, 1);
  5564. border-radius:4px;
  5565. filter:drop-shadow(none);
  5566. transition:none;
  5567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:8px;
  5571. color:#FFFFFF;
  5572. text-align:center;
  5573. }
  5574. #u51501 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:85px;
  5578. top:190px;
  5579. width:9px;
  5580. height:11px;
  5581. display:flex;
  5582. transition:none;
  5583. transform-origin:50% 50%;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:8px;
  5588. color:#FFFFFF;
  5589. text-align:center;
  5590. }
  5591. #u51501 .text {
  5592. position:absolute;
  5593. align-self:flex-start;
  5594. padding:0px 0px 0px 0px;
  5595. box-sizing:border-box;
  5596. width:100%;
  5597. }
  5598. #u51501_text {
  5599. border-width:0px;
  5600. white-space:nowrap;
  5601. text-transform:none;
  5602. }
  5603. #u51502 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:0px;
  5609. height:0px;
  5610. }
  5611. #u51503_div {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:0px;
  5615. top:0px;
  5616. width:355px;
  5617. height:100px;
  5618. background:inherit;
  5619. background-color:rgba(255, 255, 255, 1);
  5620. border-radius:10px;
  5621. filter:drop-shadow(none);
  5622. transition:none;
  5623. }
  5624. #u51503 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:966px;
  5628. top:275px;
  5629. width:355px;
  5630. height:100px;
  5631. display:flex;
  5632. transition:none;
  5633. transform-origin:50% 50%;
  5634. }
  5635. #u51503 .text {
  5636. position:absolute;
  5637. align-self:center;
  5638. padding:2px 2px 2px 2px;
  5639. box-sizing:border-box;
  5640. width:100%;
  5641. }
  5642. #u51503_text {
  5643. border-width:0px;
  5644. word-wrap:break-word;
  5645. text-transform:none;
  5646. }
  5647. #u51504_div {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:19px;
  5653. height:13px;
  5654. background:inherit;
  5655. background-color:rgba(0, 0, 0, 1);
  5656. border-radius:0px;
  5657. filter:drop-shadow(none);
  5658. transition:none;
  5659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:9px;
  5663. color:#FFFFFF;
  5664. }
  5665. #u51504 {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:1302px;
  5669. top:275px;
  5670. width:19px;
  5671. height:13px;
  5672. display:flex;
  5673. transition:none;
  5674. transform-origin:50% 50%;
  5675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5676. font-weight:400;
  5677. font-style:normal;
  5678. font-size:9px;
  5679. color:#FFFFFF;
  5680. }
  5681. #u51504 .text {
  5682. position:absolute;
  5683. align-self:center;
  5684. padding:0px 0px 0px 0px;
  5685. box-sizing:border-box;
  5686. width:100%;
  5687. }
  5688. #u51504_text {
  5689. border-width:0px;
  5690. white-space:nowrap;
  5691. text-transform:none;
  5692. }
  5693. #u51505_div {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:0px;
  5697. top:0px;
  5698. width:85px;
  5699. height:30px;
  5700. background:inherit;
  5701. background-color:rgba(255, 255, 255, 0);
  5702. border-left:0px;
  5703. border-top:0px;
  5704. border-right:0px;
  5705. border-radius:0px;
  5706. border-bottom-right-radius:0px;
  5707. border-bottom-left-radius:0px;
  5708. filter:drop-shadow(none);
  5709. transition:none;
  5710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5711. font-weight:500;
  5712. font-style:normal;
  5713. font-size:14px;
  5714. line-height:30px;
  5715. }
  5716. #u51505 {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:987px;
  5720. top:285px;
  5721. width:85px;
  5722. height:30px;
  5723. display:flex;
  5724. transition:none;
  5725. transform-origin:50% 50%;
  5726. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5727. font-weight:500;
  5728. font-style:normal;
  5729. font-size:14px;
  5730. line-height:30px;
  5731. }
  5732. #u51505 .text {
  5733. position:absolute;
  5734. align-self:flex-start;
  5735. padding:0px 0px 0px 0px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u51505_text {
  5740. border-width:0px;
  5741. white-space:nowrap;
  5742. text-transform:none;
  5743. }
  5744. #u51506_div {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:325px;
  5750. height:50px;
  5751. background:inherit;
  5752. background-color:rgba(255, 255, 255, 0);
  5753. border-left:0px;
  5754. border-top:0px;
  5755. border-right:0px;
  5756. border-radius:0px;
  5757. border-bottom-right-radius:0px;
  5758. border-bottom-left-radius:0px;
  5759. filter:drop-shadow(none);
  5760. transition:none;
  5761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5762. font-weight:400;
  5763. font-style:normal;
  5764. line-height:25px;
  5765. }
  5766. #u51506 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:986px;
  5770. top:314px;
  5771. width:325px;
  5772. height:50px;
  5773. display:flex;
  5774. transition:none;
  5775. transform-origin:50% 50%;
  5776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. line-height:25px;
  5780. }
  5781. #u51506 .text {
  5782. position:absolute;
  5783. align-self:flex-start;
  5784. padding:0px 0px 0px 0px;
  5785. box-sizing:border-box;
  5786. width:100%;
  5787. }
  5788. #u51506_text {
  5789. border-width:0px;
  5790. word-wrap:break-word;
  5791. text-transform:none;
  5792. }
  5793. #u51507 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:0px;
  5799. height:0px;
  5800. }
  5801. #u51508_div {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:355px;
  5807. height:128px;
  5808. background:inherit;
  5809. background-color:rgba(255, 255, 255, 1);
  5810. border-radius:10px;
  5811. filter:drop-shadow(none);
  5812. transition:none;
  5813. }
  5814. #u51508 {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:966px;
  5818. top:385px;
  5819. width:355px;
  5820. height:128px;
  5821. display:flex;
  5822. transition:none;
  5823. transform-origin:50% 50%;
  5824. }
  5825. #u51508 .text {
  5826. position:absolute;
  5827. align-self:center;
  5828. padding:2px 2px 2px 2px;
  5829. box-sizing:border-box;
  5830. width:100%;
  5831. }
  5832. #u51508_text {
  5833. border-width:0px;
  5834. word-wrap:break-word;
  5835. text-transform:none;
  5836. }
  5837. #u51509_div {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:19px;
  5843. height:13px;
  5844. background:inherit;
  5845. background-color:rgba(0, 0, 0, 1);
  5846. border-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:9px;
  5853. color:#FFFFFF;
  5854. }
  5855. #u51509 {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:1302px;
  5859. top:385px;
  5860. width:19px;
  5861. height:13px;
  5862. display:flex;
  5863. transition:none;
  5864. transform-origin:50% 50%;
  5865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5866. font-weight:400;
  5867. font-style:normal;
  5868. font-size:9px;
  5869. color:#FFFFFF;
  5870. }
  5871. #u51509 .text {
  5872. position:absolute;
  5873. align-self:center;
  5874. padding:0px 0px 0px 0px;
  5875. box-sizing:border-box;
  5876. width:100%;
  5877. }
  5878. #u51509_text {
  5879. border-width:0px;
  5880. white-space:nowrap;
  5881. text-transform:none;
  5882. }
  5883. #u51510_div {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:150px;
  5889. height:30px;
  5890. background:inherit;
  5891. background-color:rgba(255, 255, 255, 0);
  5892. border-left:0px;
  5893. border-top:0px;
  5894. border-right:0px;
  5895. border-radius:0px;
  5896. border-bottom-right-radius:0px;
  5897. border-bottom-left-radius:0px;
  5898. filter:drop-shadow(none);
  5899. transition:none;
  5900. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5901. font-weight:500;
  5902. font-style:normal;
  5903. font-size:14px;
  5904. line-height:30px;
  5905. }
  5906. #u51510 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:987px;
  5910. top:395px;
  5911. width:150px;
  5912. height:30px;
  5913. display:flex;
  5914. transition:none;
  5915. transform-origin:50% 50%;
  5916. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5917. font-weight:500;
  5918. font-style:normal;
  5919. font-size:14px;
  5920. line-height:30px;
  5921. }
  5922. #u51510 .text {
  5923. position:absolute;
  5924. align-self:flex-start;
  5925. padding:0px 0px 0px 0px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u51510_text {
  5930. border-width:0px;
  5931. white-space:nowrap;
  5932. text-transform:none;
  5933. }
  5934. #u51511_div {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:325px;
  5940. height:80px;
  5941. background:inherit;
  5942. background-color:rgba(255, 255, 255, 0);
  5943. border-left:0px;
  5944. border-top:0px;
  5945. border-right:0px;
  5946. border-radius:0px;
  5947. border-bottom-right-radius:0px;
  5948. border-bottom-left-radius:0px;
  5949. filter:drop-shadow(none);
  5950. transition:none;
  5951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5952. font-weight:400;
  5953. font-style:normal;
  5954. font-size:12px;
  5955. line-height:20px;
  5956. }
  5957. #u51511 {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:986px;
  5961. top:424px;
  5962. width:325px;
  5963. height:80px;
  5964. display:flex;
  5965. transition:none;
  5966. transform-origin:50% 50%;
  5967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5968. font-weight:400;
  5969. font-style:normal;
  5970. font-size:12px;
  5971. line-height:20px;
  5972. }
  5973. #u51511 .text {
  5974. position:absolute;
  5975. align-self:flex-start;
  5976. padding:0px 0px 0px 0px;
  5977. box-sizing:border-box;
  5978. width:100%;
  5979. }
  5980. #u51511_text {
  5981. border-width:0px;
  5982. word-wrap:break-word;
  5983. text-transform:none;
  5984. }
  5985. #u51512_div {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:0px;
  5989. top:0px;
  5990. width:35px;
  5991. height:14px;
  5992. background:inherit;
  5993. background-color:rgba(245, 109, 35, 1);
  5994. border-radius:2px;
  5995. filter:drop-shadow(none);
  5996. transition:none;
  5997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5998. font-weight:400;
  5999. font-style:normal;
  6000. font-size:10px;
  6001. color:#FFFFFF;
  6002. text-align:center;
  6003. }
  6004. #u51512 {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:1274px;
  6008. top:493px;
  6009. width:35px;
  6010. height:14px;
  6011. display:flex;
  6012. transition:none;
  6013. transform-origin:50% 50%;
  6014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6015. font-weight:400;
  6016. font-style:normal;
  6017. font-size:10px;
  6018. color:#FFFFFF;
  6019. text-align:center;
  6020. }
  6021. #u51512 .text {
  6022. position:absolute;
  6023. align-self:flex-start;
  6024. padding:0px 2px 0px 2px;
  6025. box-sizing:border-box;
  6026. width:100%;
  6027. }
  6028. #u51512_text {
  6029. border-width:0px;
  6030. white-space:nowrap;
  6031. text-transform:none;
  6032. }
  6033. #u51513 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:0px;
  6037. top:0px;
  6038. width:0px;
  6039. height:0px;
  6040. }
  6041. #u51514_div {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:355px;
  6047. height:128px;
  6048. background:inherit;
  6049. background-color:rgba(255, 255, 255, 1);
  6050. border-radius:10px;
  6051. filter:drop-shadow(none);
  6052. transition:none;
  6053. }
  6054. #u51514 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:966px;
  6058. top:523px;
  6059. width:355px;
  6060. height:128px;
  6061. display:flex;
  6062. transition:none;
  6063. transform-origin:50% 50%;
  6064. }
  6065. #u51514 .text {
  6066. position:absolute;
  6067. align-self:center;
  6068. padding:2px 2px 2px 2px;
  6069. box-sizing:border-box;
  6070. width:100%;
  6071. }
  6072. #u51514_text {
  6073. border-width:0px;
  6074. word-wrap:break-word;
  6075. text-transform:none;
  6076. }
  6077. #u51515_div {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:0px;
  6081. top:0px;
  6082. width:19px;
  6083. height:13px;
  6084. background:inherit;
  6085. background-color:rgba(0, 0, 0, 1);
  6086. border-radius:0px;
  6087. filter:drop-shadow(none);
  6088. transition:none;
  6089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6090. font-weight:400;
  6091. font-style:normal;
  6092. font-size:9px;
  6093. color:#FFFFFF;
  6094. }
  6095. #u51515 {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:1302px;
  6099. top:523px;
  6100. width:19px;
  6101. height:13px;
  6102. display:flex;
  6103. transition:none;
  6104. transform-origin:50% 50%;
  6105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6106. font-weight:400;
  6107. font-style:normal;
  6108. font-size:9px;
  6109. color:#FFFFFF;
  6110. }
  6111. #u51515 .text {
  6112. position:absolute;
  6113. align-self:center;
  6114. padding:0px 0px 0px 0px;
  6115. box-sizing:border-box;
  6116. width:100%;
  6117. }
  6118. #u51515_text {
  6119. border-width:0px;
  6120. white-space:nowrap;
  6121. text-transform:none;
  6122. }
  6123. #u51516_div {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:0px;
  6127. top:0px;
  6128. width:169px;
  6129. height:30px;
  6130. background:inherit;
  6131. background-color:rgba(255, 255, 255, 0);
  6132. border-left:0px;
  6133. border-top:0px;
  6134. border-right:0px;
  6135. border-radius:0px;
  6136. border-bottom-right-radius:0px;
  6137. border-bottom-left-radius:0px;
  6138. filter:drop-shadow(none);
  6139. transition:none;
  6140. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6141. font-weight:500;
  6142. font-style:normal;
  6143. font-size:14px;
  6144. line-height:30px;
  6145. }
  6146. #u51516 {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:987px;
  6150. top:533px;
  6151. width:169px;
  6152. height:30px;
  6153. display:flex;
  6154. transition:none;
  6155. transform-origin:50% 50%;
  6156. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6157. font-weight:500;
  6158. font-style:normal;
  6159. font-size:14px;
  6160. line-height:30px;
  6161. }
  6162. #u51516 .text {
  6163. position:absolute;
  6164. align-self:flex-start;
  6165. padding:0px 0px 0px 0px;
  6166. box-sizing:border-box;
  6167. width:100%;
  6168. }
  6169. #u51516_text {
  6170. border-width:0px;
  6171. white-space:nowrap;
  6172. text-transform:none;
  6173. }
  6174. #u51517_div {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:325px;
  6180. height:80px;
  6181. background:inherit;
  6182. background-color:rgba(255, 255, 255, 0);
  6183. border-left:0px;
  6184. border-top:0px;
  6185. border-right:0px;
  6186. border-radius:0px;
  6187. border-bottom-right-radius:0px;
  6188. border-bottom-left-radius:0px;
  6189. filter:drop-shadow(none);
  6190. transition:none;
  6191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6192. font-weight:400;
  6193. font-style:normal;
  6194. font-size:12px;
  6195. line-height:20px;
  6196. }
  6197. #u51517 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:986px;
  6201. top:562px;
  6202. width:325px;
  6203. height:80px;
  6204. display:flex;
  6205. transition:none;
  6206. transform-origin:50% 50%;
  6207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6208. font-weight:400;
  6209. font-style:normal;
  6210. font-size:12px;
  6211. line-height:20px;
  6212. }
  6213. #u51517 .text {
  6214. position:absolute;
  6215. align-self:flex-start;
  6216. padding:0px 0px 0px 0px;
  6217. box-sizing:border-box;
  6218. width:100%;
  6219. }
  6220. #u51517_text {
  6221. border-width:0px;
  6222. word-wrap:break-word;
  6223. text-transform:none;
  6224. }
  6225. #u51518 {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:0px;
  6229. top:0px;
  6230. width:0px;
  6231. height:0px;
  6232. }
  6233. #u51519_div {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:361px;
  6239. height:90px;
  6240. background:inherit;
  6241. background-color:rgba(255, 255, 255, 1);
  6242. box-sizing:border-box;
  6243. border-width:1px;
  6244. border-style:solid;
  6245. border-color:rgba(242, 242, 242, 1);
  6246. border-radius:4px;
  6247. filter:drop-shadow(none);
  6248. transition:none;
  6249. }
  6250. #u51519 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:499px;
  6254. top:145px;
  6255. width:361px;
  6256. height:90px;
  6257. display:flex;
  6258. transition:none;
  6259. transform-origin:50% 50%;
  6260. }
  6261. #u51519 .text {
  6262. position:absolute;
  6263. align-self:center;
  6264. padding:2px 2px 2px 2px;
  6265. box-sizing:border-box;
  6266. width:100%;
  6267. }
  6268. #u51519_text {
  6269. border-width:0px;
  6270. word-wrap:break-word;
  6271. text-transform:none;
  6272. visibility:hidden;
  6273. }
  6274. #u51520_div {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:0px;
  6278. top:0px;
  6279. width:37px;
  6280. height:50px;
  6281. background:inherit;
  6282. background-color:rgba(255, 255, 255, 0);
  6283. border-radius:0px;
  6284. filter:drop-shadow(none);
  6285. transition:none;
  6286. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6287. font-weight:650;
  6288. font-style:normal;
  6289. font-size:18px;
  6290. color:#298FFF;
  6291. }
  6292. #u51520 {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:518px;
  6296. top:159px;
  6297. width:37px;
  6298. height:50px;
  6299. display:flex;
  6300. transition:none;
  6301. transform-origin:50% 50%;
  6302. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6303. font-weight:650;
  6304. font-style:normal;
  6305. font-size:18px;
  6306. color:#298FFF;
  6307. }
  6308. #u51520 .text {
  6309. position:absolute;
  6310. align-self:flex-start;
  6311. padding:0px 0px 0px 0px;
  6312. box-sizing:border-box;
  6313. width:100%;
  6314. }
  6315. #u51520_text {
  6316. border-width:0px;
  6317. white-space:nowrap;
  6318. text-transform:none;
  6319. }
  6320. #u51521_div {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:0px;
  6324. top:0px;
  6325. width:149px;
  6326. height:18px;
  6327. background:inherit;
  6328. background-color:rgba(255, 255, 255, 0);
  6329. border-radius:0px;
  6330. filter:drop-shadow(none);
  6331. transition:none;
  6332. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6333. font-weight:500;
  6334. font-style:normal;
  6335. }
  6336. #u51521 {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:570px;
  6340. top:155px;
  6341. width:149px;
  6342. height:18px;
  6343. display:flex;
  6344. transition:none;
  6345. transform-origin:50% 50%;
  6346. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6347. font-weight:500;
  6348. font-style:normal;
  6349. }
  6350. #u51521 .text {
  6351. position:absolute;
  6352. align-self:flex-start;
  6353. padding:0px 0px 0px 0px;
  6354. box-sizing:border-box;
  6355. width:100%;
  6356. }
  6357. #u51521_text {
  6358. border-width:0px;
  6359. white-space:nowrap;
  6360. text-transform:none;
  6361. }
  6362. #u51522_div {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:0px;
  6366. top:0px;
  6367. width:261px;
  6368. height:36px;
  6369. background:inherit;
  6370. background-color:rgba(255, 255, 255, 0);
  6371. border-radius:0px;
  6372. filter:drop-shadow(none);
  6373. transition:none;
  6374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6375. font-weight:400;
  6376. font-style:normal;
  6377. font-size:10px;
  6378. color:#7F7F7F;
  6379. line-height:18px;
  6380. }
  6381. #u51522 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:570px;
  6385. top:178px;
  6386. width:261px;
  6387. height:36px;
  6388. display:flex;
  6389. transition:none;
  6390. transform-origin:50% 50%;
  6391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. font-size:10px;
  6395. color:#7F7F7F;
  6396. line-height:18px;
  6397. }
  6398. #u51522 .text {
  6399. position:absolute;
  6400. align-self:flex-start;
  6401. padding:0px 0px 0px 0px;
  6402. box-sizing:border-box;
  6403. width:100%;
  6404. }
  6405. #u51522_text {
  6406. border-width:0px;
  6407. word-wrap:break-word;
  6408. text-transform:none;
  6409. }
  6410. #u51523 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:624px;
  6414. top:222px;
  6415. width:7px;
  6416. height:7px;
  6417. display:flex;
  6418. transition:none;
  6419. }
  6420. #u51523 .text {
  6421. position:absolute;
  6422. align-self:center;
  6423. padding:2px 2px 2px 2px;
  6424. box-sizing:border-box;
  6425. width:100%;
  6426. }
  6427. #u51523_img {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:7px;
  6433. height:7px;
  6434. }
  6435. #u51523_text {
  6436. border-width:0px;
  6437. word-wrap:break-word;
  6438. text-transform:none;
  6439. visibility:hidden;
  6440. }
  6441. #u51524 {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:643px;
  6445. top:222px;
  6446. width:7px;
  6447. height:7px;
  6448. display:flex;
  6449. transition:none;
  6450. }
  6451. #u51524 .text {
  6452. position:absolute;
  6453. align-self:center;
  6454. padding:2px 2px 2px 2px;
  6455. box-sizing:border-box;
  6456. width:100%;
  6457. }
  6458. #u51524_img {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:7px;
  6464. height:7px;
  6465. }
  6466. #u51524_text {
  6467. border-width:0px;
  6468. word-wrap:break-word;
  6469. text-transform:none;
  6470. visibility:hidden;
  6471. }
  6472. #u51525 {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:662px;
  6476. top:222px;
  6477. width:7px;
  6478. height:7px;
  6479. display:flex;
  6480. transition:none;
  6481. }
  6482. #u51525 .text {
  6483. position:absolute;
  6484. align-self:center;
  6485. padding:2px 2px 2px 2px;
  6486. box-sizing:border-box;
  6487. width:100%;
  6488. }
  6489. #u51525_img {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:0px;
  6493. top:0px;
  6494. width:7px;
  6495. height:7px;
  6496. }
  6497. #u51525_text {
  6498. border-width:0px;
  6499. word-wrap:break-word;
  6500. text-transform:none;
  6501. visibility:hidden;
  6502. }
  6503. #u51526 {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:681px;
  6507. top:222px;
  6508. width:7px;
  6509. height:7px;
  6510. display:flex;
  6511. transition:none;
  6512. }
  6513. #u51526 .text {
  6514. position:absolute;
  6515. align-self:center;
  6516. padding:2px 2px 2px 2px;
  6517. box-sizing:border-box;
  6518. width:100%;
  6519. }
  6520. #u51526_img {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:0px;
  6524. top:0px;
  6525. width:7px;
  6526. height:7px;
  6527. }
  6528. #u51526_text {
  6529. border-width:0px;
  6530. word-wrap:break-word;
  6531. text-transform:none;
  6532. visibility:hidden;
  6533. }
  6534. #u51527 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:842px;
  6538. top:153px;
  6539. width:11px;
  6540. height:11px;
  6541. display:flex;
  6542. transition:none;
  6543. }
  6544. #u51527 .text {
  6545. position:absolute;
  6546. align-self:center;
  6547. padding:2px 2px 2px 2px;
  6548. box-sizing:border-box;
  6549. width:100%;
  6550. }
  6551. #u51527_img {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:11px;
  6557. height:11px;
  6558. }
  6559. #u51527_text {
  6560. border-width:0px;
  6561. word-wrap:break-word;
  6562. text-transform:none;
  6563. visibility:hidden;
  6564. }
  6565. #u51528_div {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:0px;
  6569. top:0px;
  6570. width:266px;
  6571. height:34px;
  6572. background:inherit;
  6573. background-color:rgba(224, 231, 247, 0);
  6574. border-radius:0px;
  6575. filter:drop-shadow(none);
  6576. transition:none;
  6577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:12px;
  6581. color:#D9001B;
  6582. }
  6583. #u51528 {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:562px;
  6587. top:249px;
  6588. width:266px;
  6589. height:34px;
  6590. display:flex;
  6591. transition:none;
  6592. transform-origin:50% 50%;
  6593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6594. font-weight:400;
  6595. font-style:normal;
  6596. font-size:12px;
  6597. color:#D9001B;
  6598. }
  6599. #u51528 .text {
  6600. position:absolute;
  6601. align-self:center;
  6602. padding:0px 0px 0px 20px;
  6603. box-sizing:border-box;
  6604. width:100%;
  6605. }
  6606. #u51528_text {
  6607. border-width:0px;
  6608. white-space:nowrap;
  6609. text-transform:none;
  6610. }
  6611. #u51529 {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:0px;
  6615. top:0px;
  6616. width:0px;
  6617. height:0px;
  6618. }
  6619. #u51530_div {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:355px;
  6625. height:128px;
  6626. background:inherit;
  6627. background-color:rgba(255, 255, 255, 1);
  6628. border-radius:10px;
  6629. filter:drop-shadow(none);
  6630. transition:none;
  6631. }
  6632. #u51530 {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:502px;
  6636. top:661px;
  6637. width:355px;
  6638. height:128px;
  6639. display:flex;
  6640. transition:none;
  6641. transform-origin:50% 50%;
  6642. }
  6643. #u51530 .text {
  6644. position:absolute;
  6645. align-self:center;
  6646. padding:2px 2px 2px 2px;
  6647. box-sizing:border-box;
  6648. width:100%;
  6649. }
  6650. #u51530_text {
  6651. border-width:0px;
  6652. word-wrap:break-word;
  6653. text-transform:none;
  6654. }
  6655. #u51531_div {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:0px;
  6659. top:0px;
  6660. width:19px;
  6661. height:13px;
  6662. background:inherit;
  6663. background-color:rgba(0, 0, 0, 1);
  6664. border-radius:0px;
  6665. filter:drop-shadow(none);
  6666. transition:none;
  6667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6668. font-weight:400;
  6669. font-style:normal;
  6670. font-size:9px;
  6671. color:#FFFFFF;
  6672. }
  6673. #u51531 {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:838px;
  6677. top:661px;
  6678. width:19px;
  6679. height:13px;
  6680. display:flex;
  6681. transition:none;
  6682. transform-origin:50% 50%;
  6683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6684. font-weight:400;
  6685. font-style:normal;
  6686. font-size:9px;
  6687. color:#FFFFFF;
  6688. }
  6689. #u51531 .text {
  6690. position:absolute;
  6691. align-self:center;
  6692. padding:0px 0px 0px 0px;
  6693. box-sizing:border-box;
  6694. width:100%;
  6695. }
  6696. #u51531_text {
  6697. border-width:0px;
  6698. white-space:nowrap;
  6699. text-transform:none;
  6700. }
  6701. #u51532_div {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:211px;
  6707. height:30px;
  6708. background:inherit;
  6709. background-color:rgba(255, 255, 255, 0);
  6710. border-left:0px;
  6711. border-top:0px;
  6712. border-right:0px;
  6713. border-radius:0px;
  6714. border-bottom-right-radius:0px;
  6715. border-bottom-left-radius:0px;
  6716. filter:drop-shadow(none);
  6717. transition:none;
  6718. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6719. font-weight:500;
  6720. font-style:normal;
  6721. font-size:14px;
  6722. line-height:30px;
  6723. }
  6724. #u51532 {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:523px;
  6728. top:671px;
  6729. width:211px;
  6730. height:30px;
  6731. display:flex;
  6732. transition:none;
  6733. transform-origin:50% 50%;
  6734. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6735. font-weight:500;
  6736. font-style:normal;
  6737. font-size:14px;
  6738. line-height:30px;
  6739. }
  6740. #u51532 .text {
  6741. position:absolute;
  6742. align-self:flex-start;
  6743. padding:0px 0px 0px 0px;
  6744. box-sizing:border-box;
  6745. width:100%;
  6746. }
  6747. #u51532_text {
  6748. border-width:0px;
  6749. white-space:nowrap;
  6750. text-transform:none;
  6751. }
  6752. #u51533_div {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:0px;
  6756. top:0px;
  6757. width:325px;
  6758. height:80px;
  6759. background:inherit;
  6760. background-color:rgba(255, 255, 255, 0);
  6761. border-left:0px;
  6762. border-top:0px;
  6763. border-right:0px;
  6764. border-radius:0px;
  6765. border-bottom-right-radius:0px;
  6766. border-bottom-left-radius:0px;
  6767. filter:drop-shadow(none);
  6768. transition:none;
  6769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. font-size:12px;
  6773. line-height:20px;
  6774. }
  6775. #u51533 {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:522px;
  6779. top:700px;
  6780. width:325px;
  6781. height:80px;
  6782. display:flex;
  6783. transition:none;
  6784. transform-origin:50% 50%;
  6785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:12px;
  6789. line-height:20px;
  6790. }
  6791. #u51533 .text {
  6792. position:absolute;
  6793. align-self:flex-start;
  6794. padding:0px 0px 0px 0px;
  6795. box-sizing:border-box;
  6796. width:100%;
  6797. }
  6798. #u51533_text {
  6799. border-width:0px;
  6800. word-wrap:break-word;
  6801. text-transform:none;
  6802. }
  6803. #u51534 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:0px;
  6807. top:0px;
  6808. width:0px;
  6809. height:0px;
  6810. }
  6811. #u51535_div {
  6812. border-width:0px;
  6813. position:absolute;
  6814. left:0px;
  6815. top:0px;
  6816. width:355px;
  6817. height:128px;
  6818. background:inherit;
  6819. background-color:rgba(255, 255, 255, 1);
  6820. border-radius:10px;
  6821. filter:drop-shadow(none);
  6822. transition:none;
  6823. }
  6824. #u51535 {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:966px;
  6828. top:661px;
  6829. width:355px;
  6830. height:128px;
  6831. display:flex;
  6832. transition:none;
  6833. transform-origin:50% 50%;
  6834. }
  6835. #u51535 .text {
  6836. position:absolute;
  6837. align-self:center;
  6838. padding:2px 2px 2px 2px;
  6839. box-sizing:border-box;
  6840. width:100%;
  6841. }
  6842. #u51535_text {
  6843. border-width:0px;
  6844. word-wrap:break-word;
  6845. text-transform:none;
  6846. }
  6847. #u51536_div {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:19px;
  6853. height:13px;
  6854. background:inherit;
  6855. background-color:rgba(0, 0, 0, 1);
  6856. border-radius:0px;
  6857. filter:drop-shadow(none);
  6858. transition:none;
  6859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6860. font-weight:400;
  6861. font-style:normal;
  6862. font-size:9px;
  6863. color:#FFFFFF;
  6864. }
  6865. #u51536 {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:1302px;
  6869. top:661px;
  6870. width:19px;
  6871. height:13px;
  6872. display:flex;
  6873. transition:none;
  6874. transform-origin:50% 50%;
  6875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. font-size:9px;
  6879. color:#FFFFFF;
  6880. }
  6881. #u51536 .text {
  6882. position:absolute;
  6883. align-self:center;
  6884. padding:0px 0px 0px 0px;
  6885. box-sizing:border-box;
  6886. width:100%;
  6887. }
  6888. #u51536_text {
  6889. border-width:0px;
  6890. white-space:nowrap;
  6891. text-transform:none;
  6892. }
  6893. #u51537_div {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:211px;
  6899. height:30px;
  6900. background:inherit;
  6901. background-color:rgba(255, 255, 255, 0);
  6902. border-left:0px;
  6903. border-top:0px;
  6904. border-right:0px;
  6905. border-radius:0px;
  6906. border-bottom-right-radius:0px;
  6907. border-bottom-left-radius:0px;
  6908. filter:drop-shadow(none);
  6909. transition:none;
  6910. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6911. font-weight:500;
  6912. font-style:normal;
  6913. font-size:14px;
  6914. line-height:30px;
  6915. }
  6916. #u51537 {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:987px;
  6920. top:671px;
  6921. width:211px;
  6922. height:30px;
  6923. display:flex;
  6924. transition:none;
  6925. transform-origin:50% 50%;
  6926. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6927. font-weight:500;
  6928. font-style:normal;
  6929. font-size:14px;
  6930. line-height:30px;
  6931. }
  6932. #u51537 .text {
  6933. position:absolute;
  6934. align-self:flex-start;
  6935. padding:0px 0px 0px 0px;
  6936. box-sizing:border-box;
  6937. width:100%;
  6938. }
  6939. #u51537_text {
  6940. border-width:0px;
  6941. white-space:nowrap;
  6942. text-transform:none;
  6943. }
  6944. #u51538_div {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:0px;
  6948. top:0px;
  6949. width:325px;
  6950. height:80px;
  6951. background:inherit;
  6952. background-color:rgba(255, 255, 255, 0);
  6953. border-left:0px;
  6954. border-top:0px;
  6955. border-right:0px;
  6956. border-radius:0px;
  6957. border-bottom-right-radius:0px;
  6958. border-bottom-left-radius:0px;
  6959. filter:drop-shadow(none);
  6960. transition:none;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:12px;
  6965. line-height:20px;
  6966. }
  6967. #u51538 {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:986px;
  6971. top:700px;
  6972. width:325px;
  6973. height:80px;
  6974. display:flex;
  6975. transition:none;
  6976. transform-origin:50% 50%;
  6977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. font-size:12px;
  6981. line-height:20px;
  6982. }
  6983. #u51538 .text {
  6984. position:absolute;
  6985. align-self:flex-start;
  6986. padding:0px 0px 0px 0px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u51538_text {
  6991. border-width:0px;
  6992. word-wrap:break-word;
  6993. text-transform:none;
  6994. }
  6995. #u51539_div {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:49px;
  7001. height:40px;
  7002. background:inherit;
  7003. background-color:rgba(255, 255, 255, 0);
  7004. border-radius:0px;
  7005. filter:drop-shadow(none);
  7006. transition:none;
  7007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7008. font-weight:400;
  7009. font-style:normal;
  7010. font-size:12px;
  7011. color:#7F7F7F;
  7012. line-height:40px;
  7013. }
  7014. #u51539 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:46px;
  7018. top:385px;
  7019. width:49px;
  7020. height:40px;
  7021. display:flex;
  7022. transition:none;
  7023. transform-origin:50% 50%;
  7024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7025. font-weight:400;
  7026. font-style:normal;
  7027. font-size:12px;
  7028. color:#7F7F7F;
  7029. line-height:40px;
  7030. }
  7031. #u51539 .text {
  7032. position:absolute;
  7033. align-self:center;
  7034. padding:0px 0px 0px 0px;
  7035. box-sizing:border-box;
  7036. width:100%;
  7037. }
  7038. #u51539_text {
  7039. border-width:0px;
  7040. white-space:nowrap;
  7041. text-transform:none;
  7042. }
  7043. #u51540_div {
  7044. border-width:0px;
  7045. position:absolute;
  7046. left:0px;
  7047. top:0px;
  7048. width:49px;
  7049. height:40px;
  7050. background:inherit;
  7051. background-color:rgba(255, 255, 255, 0);
  7052. border-radius:0px;
  7053. filter:drop-shadow(none);
  7054. transition:none;
  7055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7056. font-weight:400;
  7057. font-style:normal;
  7058. font-size:12px;
  7059. color:#7F7F7F;
  7060. line-height:40px;
  7061. }
  7062. #u51540 {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:976px;
  7066. top:235px;
  7067. width:49px;
  7068. height:40px;
  7069. display:flex;
  7070. transition:none;
  7071. transform-origin:50% 50%;
  7072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7073. font-weight:400;
  7074. font-style:normal;
  7075. font-size:12px;
  7076. color:#7F7F7F;
  7077. line-height:40px;
  7078. }
  7079. #u51540 .text {
  7080. position:absolute;
  7081. align-self:center;
  7082. padding:0px 0px 0px 0px;
  7083. box-sizing:border-box;
  7084. width:100%;
  7085. }
  7086. #u51540_text {
  7087. border-width:0px;
  7088. white-space:nowrap;
  7089. text-transform:none;
  7090. }