styles.css 187 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1804px;
  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. #u53545 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u53546 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. }
  35. #u53547 {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:433px;
  41. height:865px;
  42. display:flex;
  43. transition:none;
  44. }
  45. #u53547 .text {
  46. position:absolute;
  47. align-self:center;
  48. padding:2px 2px 2px 2px;
  49. box-sizing:border-box;
  50. width:100%;
  51. }
  52. #u53547_img {
  53. border-width:0px;
  54. position:absolute;
  55. left:0px;
  56. top:0px;
  57. width:433px;
  58. height:865px;
  59. }
  60. #u53547_text {
  61. border-width:0px;
  62. word-wrap:break-word;
  63. text-transform:none;
  64. visibility:hidden;
  65. }
  66. #u53548_div {
  67. border-width:0px;
  68. position:absolute;
  69. left:0px;
  70. top:0px;
  71. width:375px;
  72. height:40px;
  73. background:inherit;
  74. background-color:rgba(255, 255, 255, 1);
  75. box-sizing:border-box;
  76. border-width:1px;
  77. border-style:solid;
  78. border-color:rgba(215, 215, 215, 1);
  79. border-left:0px;
  80. border-top:0px;
  81. border-right:0px;
  82. border-radius:0px;
  83. border-bottom-right-radius:0px;
  84. border-bottom-left-radius:0px;
  85. filter:drop-shadow(none);
  86. transition:none;
  87. }
  88. #u53548 {
  89. border-width:0px;
  90. position:absolute;
  91. left:29px;
  92. top:67px;
  93. width:375px;
  94. height:40px;
  95. display:flex;
  96. transition:none;
  97. transform-origin:50% 50%;
  98. }
  99. #u53548 .text {
  100. position:absolute;
  101. align-self:center;
  102. padding:2px 2px 2px 2px;
  103. box-sizing:border-box;
  104. width:100%;
  105. }
  106. #u53548_text {
  107. border-width:0px;
  108. word-wrap:break-word;
  109. text-transform:none;
  110. visibility:hidden;
  111. }
  112. #u53549 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:0px;
  118. height:0px;
  119. }
  120. #u53550_div {
  121. border-width:0px;
  122. position:absolute;
  123. left:0px;
  124. top:0px;
  125. width:88px;
  126. height:32px;
  127. background:inherit;
  128. background-color:rgba(255, 255, 255, 1);
  129. box-sizing:border-box;
  130. border-width:1px;
  131. border-style:solid;
  132. border-color:rgba(242, 242, 242, 1);
  133. border-radius:33px;
  134. filter:drop-shadow(none);
  135. transition:none;
  136. }
  137. #u53550 {
  138. border-width:0px;
  139. position:absolute;
  140. left:309px;
  141. top:71px;
  142. width:88px;
  143. height:32px;
  144. display:flex;
  145. transition:none;
  146. transform-origin:50% 50%;
  147. }
  148. #u53550 .text {
  149. position:absolute;
  150. align-self:center;
  151. padding:2px 2px 2px 2px;
  152. box-sizing:border-box;
  153. width:100%;
  154. }
  155. #u53550_text {
  156. border-width:0px;
  157. word-wrap:break-word;
  158. text-transform:none;
  159. visibility:hidden;
  160. }
  161. #u53551 {
  162. border-width:0px;
  163. position:absolute;
  164. left:0px;
  165. top:0px;
  166. width:0px;
  167. height:0px;
  168. }
  169. #u53552 {
  170. border-width:0px;
  171. position:absolute;
  172. left:372px;
  173. top:78px;
  174. width:18px;
  175. height:18px;
  176. display:flex;
  177. transition:none;
  178. }
  179. #u53552 .text {
  180. position:absolute;
  181. align-self:center;
  182. padding:2px 2px 2px 2px;
  183. box-sizing:border-box;
  184. width:100%;
  185. }
  186. #u53552_img {
  187. border-width:0px;
  188. position:absolute;
  189. left:0px;
  190. top:0px;
  191. width:18px;
  192. height:18px;
  193. }
  194. #u53552_text {
  195. border-width:0px;
  196. word-wrap:break-word;
  197. text-transform:none;
  198. visibility:hidden;
  199. }
  200. #u53553 {
  201. border-width:0px;
  202. position:absolute;
  203. left:378px;
  204. top:84px;
  205. width:6px;
  206. height:6px;
  207. display:flex;
  208. transition:none;
  209. }
  210. #u53553 .text {
  211. position:absolute;
  212. align-self:center;
  213. padding:2px 2px 2px 2px;
  214. box-sizing:border-box;
  215. width:100%;
  216. }
  217. #u53553_img {
  218. border-width:0px;
  219. position:absolute;
  220. left:0px;
  221. top:0px;
  222. width:6px;
  223. height:6px;
  224. }
  225. #u53553_text {
  226. border-width:0px;
  227. word-wrap:break-word;
  228. text-transform:none;
  229. visibility:hidden;
  230. }
  231. #u53554 {
  232. border-width:0px;
  233. position:absolute;
  234. left:0px;
  235. top:0px;
  236. width:0px;
  237. height:0px;
  238. }
  239. #u53555 {
  240. border-width:0px;
  241. position:absolute;
  242. left:323px;
  243. top:85px;
  244. width:5px;
  245. height:5px;
  246. display:flex;
  247. transition:none;
  248. }
  249. #u53555 .text {
  250. position:absolute;
  251. align-self:center;
  252. padding:2px 2px 2px 2px;
  253. box-sizing:border-box;
  254. width:100%;
  255. }
  256. #u53555_img {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:5px;
  262. height:5px;
  263. }
  264. #u53555_text {
  265. border-width:0px;
  266. word-wrap:break-word;
  267. text-transform:none;
  268. visibility:hidden;
  269. }
  270. #u53556 {
  271. border-width:0px;
  272. position:absolute;
  273. left:339px;
  274. top:85px;
  275. width:5px;
  276. height:5px;
  277. display:flex;
  278. transition:none;
  279. }
  280. #u53556 .text {
  281. position:absolute;
  282. align-self:center;
  283. padding:2px 2px 2px 2px;
  284. box-sizing:border-box;
  285. width:100%;
  286. }
  287. #u53556_img {
  288. border-width:0px;
  289. position:absolute;
  290. left:0px;
  291. top:0px;
  292. width:5px;
  293. height:5px;
  294. }
  295. #u53556_text {
  296. border-width:0px;
  297. word-wrap:break-word;
  298. text-transform:none;
  299. visibility:hidden;
  300. }
  301. #u53557 {
  302. border-width:0px;
  303. position:absolute;
  304. left:330px;
  305. top:84px;
  306. width:7px;
  307. height:7px;
  308. display:flex;
  309. transition:none;
  310. }
  311. #u53557 .text {
  312. position:absolute;
  313. align-self:center;
  314. padding:2px 2px 2px 2px;
  315. box-sizing:border-box;
  316. width:100%;
  317. }
  318. #u53557_img {
  319. border-width:0px;
  320. position:absolute;
  321. left:0px;
  322. top:0px;
  323. width:7px;
  324. height:7px;
  325. }
  326. #u53557_text {
  327. border-width:0px;
  328. word-wrap:break-word;
  329. text-transform:none;
  330. visibility:hidden;
  331. }
  332. #u53558 {
  333. border-width:0px;
  334. position:absolute;
  335. left:347px;
  336. top:87px;
  337. width:18px;
  338. height:1px;
  339. display:flex;
  340. -webkit-transform:rotate(90deg);
  341. -moz-transform:rotate(90deg);
  342. -ms-transform:rotate(90deg);
  343. transform:rotate(90deg);
  344. transition:none;
  345. }
  346. #u53558 .text {
  347. position:absolute;
  348. align-self:center;
  349. padding:2px 2px 2px 2px;
  350. box-sizing:border-box;
  351. width:100%;
  352. }
  353. #u53558_img {
  354. border-width:0px;
  355. position:absolute;
  356. left:0px;
  357. top:0px;
  358. width:19px;
  359. height:2px;
  360. }
  361. #u53558_text {
  362. border-width:0px;
  363. word-wrap:break-word;
  364. text-transform:none;
  365. visibility:hidden;
  366. }
  367. #u53559 {
  368. border-width:0px;
  369. position:absolute;
  370. left:29px;
  371. top:24px;
  372. width:375px;
  373. height:44px;
  374. display:flex;
  375. transition:none;
  376. }
  377. #u53559 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u53559_img {
  385. border-width:0px;
  386. position:absolute;
  387. left:0px;
  388. top:0px;
  389. width:375px;
  390. height:44px;
  391. }
  392. #u53559_text {
  393. border-width:0px;
  394. word-wrap:break-word;
  395. text-transform:none;
  396. visibility:hidden;
  397. }
  398. #u53560_div {
  399. border-width:0px;
  400. position:absolute;
  401. left:0px;
  402. top:0px;
  403. width:375px;
  404. height:50px;
  405. background:inherit;
  406. background-color:rgba(255, 255, 255, 1);
  407. box-sizing:border-box;
  408. border-width:1px;
  409. border-style:solid;
  410. border-color:rgba(242, 242, 242, 1);
  411. border-radius:26px;
  412. border-top-left-radius:0px;
  413. border-top-right-radius:0px;
  414. filter:drop-shadow(none);
  415. transition:none;
  416. }
  417. #u53560 {
  418. border-width:0px;
  419. position:absolute;
  420. left:29px;
  421. top:788px;
  422. width:375px;
  423. height:50px;
  424. display:flex;
  425. transition:none;
  426. transform-origin:50% 50%;
  427. }
  428. #u53560 .text {
  429. position:absolute;
  430. align-self:center;
  431. padding:2px 2px 2px 2px;
  432. box-sizing:border-box;
  433. width:100%;
  434. }
  435. #u53560_text {
  436. border-width:0px;
  437. word-wrap:break-word;
  438. text-transform:none;
  439. visibility:hidden;
  440. }
  441. #u53561 {
  442. border-width:0px;
  443. position:absolute;
  444. left:0px;
  445. top:0px;
  446. width:0px;
  447. height:0px;
  448. }
  449. #u53562 {
  450. border-width:0px;
  451. position:absolute;
  452. left:69px;
  453. top:792px;
  454. width:24px;
  455. height:24px;
  456. display:flex;
  457. transition:none;
  458. font-size:8px;
  459. }
  460. #u53562 .text {
  461. position:absolute;
  462. align-self:center;
  463. padding:2px 2px 2px 2px;
  464. box-sizing:border-box;
  465. width:100%;
  466. }
  467. #u53562_img {
  468. border-width:0px;
  469. position:absolute;
  470. left:0px;
  471. top:0px;
  472. width:24px;
  473. height:24px;
  474. }
  475. #u53562_text {
  476. border-width:0px;
  477. word-wrap:break-word;
  478. text-transform:none;
  479. }
  480. #u53563_div {
  481. border-width:0px;
  482. position:absolute;
  483. left:0px;
  484. top:0px;
  485. width:25px;
  486. height:17px;
  487. background:inherit;
  488. background-color:rgba(255, 255, 255, 0);
  489. border-radius:0px;
  490. filter:drop-shadow(none);
  491. transition:none;
  492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  493. font-weight:400;
  494. font-style:normal;
  495. font-size:12px;
  496. }
  497. #u53563 {
  498. border-width:0px;
  499. position:absolute;
  500. left:69px;
  501. top:817px;
  502. width:25px;
  503. height:17px;
  504. display:flex;
  505. transition:none;
  506. transform-origin:50% 50%;
  507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  508. font-weight:400;
  509. font-style:normal;
  510. font-size:12px;
  511. }
  512. #u53563 .text {
  513. position:absolute;
  514. align-self:flex-start;
  515. padding:0px 0px 0px 0px;
  516. box-sizing:border-box;
  517. width:100%;
  518. }
  519. #u53563_text {
  520. border-width:0px;
  521. white-space:nowrap;
  522. text-transform:none;
  523. }
  524. #u53564 {
  525. border-width:0px;
  526. position:absolute;
  527. left:0px;
  528. top:0px;
  529. width:0px;
  530. height:0px;
  531. }
  532. #u53565 {
  533. border-width:0px;
  534. position:absolute;
  535. left:339px;
  536. top:794px;
  537. width:24px;
  538. height:24px;
  539. display:flex;
  540. transition:none;
  541. font-size:8px;
  542. }
  543. #u53565 .text {
  544. position:absolute;
  545. align-self:center;
  546. padding:2px 2px 2px 2px;
  547. box-sizing:border-box;
  548. width:100%;
  549. }
  550. #u53565_img {
  551. border-width:0px;
  552. position:absolute;
  553. left:0px;
  554. top:0px;
  555. width:24px;
  556. height:24px;
  557. }
  558. #u53565_text {
  559. border-width:0px;
  560. word-wrap:break-word;
  561. text-transform:none;
  562. }
  563. #u53566_div {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:25px;
  569. height:17px;
  570. background:inherit;
  571. background-color:rgba(255, 255, 255, 0);
  572. border-radius:0px;
  573. filter:drop-shadow(none);
  574. transition:none;
  575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  576. font-weight:400;
  577. font-style:normal;
  578. font-size:12px;
  579. }
  580. #u53566 {
  581. border-width:0px;
  582. position:absolute;
  583. left:339px;
  584. top:819px;
  585. width:25px;
  586. height:17px;
  587. display:flex;
  588. transition:none;
  589. transform-origin:50% 50%;
  590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  591. font-weight:400;
  592. font-style:normal;
  593. font-size:12px;
  594. }
  595. #u53566 .text {
  596. position:absolute;
  597. align-self:flex-start;
  598. padding:0px 0px 0px 0px;
  599. box-sizing:border-box;
  600. width:100%;
  601. }
  602. #u53566_text {
  603. border-width:0px;
  604. white-space:nowrap;
  605. text-transform:none;
  606. }
  607. #u53567_div {
  608. border-width:0px;
  609. position:absolute;
  610. left:0px;
  611. top:0px;
  612. width:375px;
  613. height:681px;
  614. background:inherit;
  615. background-color:rgba(242, 242, 242, 0.4627450980392157);
  616. border-radius:0px;
  617. filter:drop-shadow(none);
  618. transition:none;
  619. }
  620. #u53567 {
  621. border-width:0px;
  622. position:absolute;
  623. left:29px;
  624. top:107px;
  625. width:375px;
  626. height:681px;
  627. display:flex;
  628. transition:none;
  629. transform-origin:50% 50%;
  630. }
  631. #u53567 .text {
  632. position:absolute;
  633. align-self:center;
  634. padding:2px 2px 2px 2px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u53567_text {
  639. border-width:0px;
  640. word-wrap:break-word;
  641. text-transform:none;
  642. visibility:hidden;
  643. }
  644. #u53568 {
  645. border-width:0px;
  646. position:absolute;
  647. left:0px;
  648. top:0px;
  649. width:0px;
  650. height:0px;
  651. }
  652. #u53569 {
  653. border-width:0px;
  654. position:absolute;
  655. left:251px;
  656. top:792px;
  657. width:24px;
  658. height:24px;
  659. display:flex;
  660. transition:none;
  661. font-size:8px;
  662. }
  663. #u53569 .text {
  664. position:absolute;
  665. align-self:center;
  666. padding:2px 2px 2px 2px;
  667. box-sizing:border-box;
  668. width:100%;
  669. }
  670. #u53569_img {
  671. border-width:0px;
  672. position:absolute;
  673. left:0px;
  674. top:0px;
  675. width:24px;
  676. height:24px;
  677. }
  678. #u53569_text {
  679. border-width:0px;
  680. word-wrap:break-word;
  681. text-transform:none;
  682. }
  683. #u53570_div {
  684. border-width:0px;
  685. position:absolute;
  686. left:0px;
  687. top:0px;
  688. width:37px;
  689. height:17px;
  690. background:inherit;
  691. background-color:rgba(255, 255, 255, 0);
  692. border-radius:0px;
  693. filter:drop-shadow(none);
  694. transition:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:12px;
  699. }
  700. #u53570 {
  701. border-width:0px;
  702. position:absolute;
  703. left:245px;
  704. top:817px;
  705. width:37px;
  706. height:17px;
  707. display:flex;
  708. transition:none;
  709. transform-origin:50% 50%;
  710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  711. font-weight:400;
  712. font-style:normal;
  713. font-size:12px;
  714. }
  715. #u53570 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u53570_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u53571 {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:0px;
  733. height:0px;
  734. }
  735. #u53572 {
  736. border-width:0px;
  737. position:absolute;
  738. left:157px;
  739. top:792px;
  740. width:24px;
  741. height:24px;
  742. display:flex;
  743. transition:none;
  744. font-size:8px;
  745. }
  746. #u53572 .text {
  747. position:absolute;
  748. align-self:center;
  749. padding:2px 2px 2px 2px;
  750. box-sizing:border-box;
  751. width:100%;
  752. }
  753. #u53572_img {
  754. border-width:0px;
  755. position:absolute;
  756. left:0px;
  757. top:0px;
  758. width:24px;
  759. height:24px;
  760. }
  761. #u53572_text {
  762. border-width:0px;
  763. word-wrap:break-word;
  764. text-transform:none;
  765. }
  766. #u53573_div {
  767. border-width:0px;
  768. position:absolute;
  769. left:0px;
  770. top:0px;
  771. width:37px;
  772. height:17px;
  773. background:inherit;
  774. background-color:rgba(255, 255, 255, 0);
  775. border-radius:0px;
  776. filter:drop-shadow(none);
  777. transition:none;
  778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  779. font-weight:400;
  780. font-style:normal;
  781. font-size:12px;
  782. }
  783. #u53573 {
  784. border-width:0px;
  785. position:absolute;
  786. left:151px;
  787. top:817px;
  788. width:37px;
  789. height:17px;
  790. display:flex;
  791. transition:none;
  792. transform-origin:50% 50%;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:12px;
  797. }
  798. #u53573 .text {
  799. position:absolute;
  800. align-self:flex-start;
  801. padding:0px 0px 0px 0px;
  802. box-sizing:border-box;
  803. width:100%;
  804. }
  805. #u53573_text {
  806. border-width:0px;
  807. white-space:nowrap;
  808. text-transform:none;
  809. }
  810. #u53574_div {
  811. border-width:0px;
  812. position:absolute;
  813. left:0px;
  814. top:0px;
  815. width:375px;
  816. height:1137px;
  817. background:inherit;
  818. background-color:rgba(242, 242, 242, 0.996078431372549);
  819. border-top:0px;
  820. border-radius:28px;
  821. border-top-left-radius:0px;
  822. border-top-right-radius:0px;
  823. filter:drop-shadow(none);
  824. transition:none;
  825. }
  826. #u53574 {
  827. border-width:0px;
  828. position:absolute;
  829. left:29px;
  830. top:107px;
  831. width:375px;
  832. height:1137px;
  833. display:flex;
  834. transition:none;
  835. transform-origin:50% 50%;
  836. }
  837. #u53574 .text {
  838. position:absolute;
  839. align-self:center;
  840. padding:2px 2px 2px 2px;
  841. box-sizing:border-box;
  842. width:100%;
  843. }
  844. #u53574_text {
  845. border-width:0px;
  846. word-wrap:break-word;
  847. text-transform:none;
  848. visibility:hidden;
  849. }
  850. #u53575_div {
  851. border-width:0px;
  852. position:absolute;
  853. left:0px;
  854. top:0px;
  855. width:375px;
  856. height:40px;
  857. background:inherit;
  858. background-color:rgba(255, 255, 255, 1);
  859. box-sizing:border-box;
  860. border-width:1px;
  861. border-style:solid;
  862. border-color:rgba(215, 215, 215, 1);
  863. border-left:0px;
  864. border-top:0px;
  865. border-right:0px;
  866. border-radius:0px;
  867. border-bottom-right-radius:0px;
  868. border-bottom-left-radius:0px;
  869. filter:drop-shadow(none);
  870. transition:none;
  871. }
  872. #u53575 {
  873. border-width:0px;
  874. position:absolute;
  875. left:29px;
  876. top:67px;
  877. width:375px;
  878. height:40px;
  879. display:flex;
  880. transition:none;
  881. transform-origin:50% 50%;
  882. }
  883. #u53575 .text {
  884. position:absolute;
  885. align-self:center;
  886. padding:2px 2px 2px 2px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u53575_text {
  891. border-width:0px;
  892. word-wrap:break-word;
  893. text-transform:none;
  894. visibility:hidden;
  895. }
  896. #u53576 {
  897. border-width:0px;
  898. position:absolute;
  899. left:29px;
  900. top:24px;
  901. width:375px;
  902. height:44px;
  903. display:flex;
  904. transition:none;
  905. }
  906. #u53576 .text {
  907. position:absolute;
  908. align-self:center;
  909. padding:2px 2px 2px 2px;
  910. box-sizing:border-box;
  911. width:100%;
  912. }
  913. #u53576_img {
  914. border-width:0px;
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:375px;
  919. height:44px;
  920. }
  921. #u53576_text {
  922. border-width:0px;
  923. word-wrap:break-word;
  924. text-transform:none;
  925. visibility:hidden;
  926. }
  927. #u53577 {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. }
  935. #u53578_div {
  936. border-width:0px;
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:88px;
  941. height:32px;
  942. background:inherit;
  943. background-color:rgba(255, 255, 255, 1);
  944. box-sizing:border-box;
  945. border-width:1px;
  946. border-style:solid;
  947. border-color:rgba(242, 242, 242, 1);
  948. border-radius:33px;
  949. filter:drop-shadow(none);
  950. transition:none;
  951. }
  952. #u53578 {
  953. border-width:0px;
  954. position:absolute;
  955. left:309px;
  956. top:71px;
  957. width:88px;
  958. height:32px;
  959. display:flex;
  960. transition:none;
  961. transform-origin:50% 50%;
  962. }
  963. #u53578 .text {
  964. position:absolute;
  965. align-self:center;
  966. padding:2px 2px 2px 2px;
  967. box-sizing:border-box;
  968. width:100%;
  969. }
  970. #u53578_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. visibility:hidden;
  975. }
  976. #u53579 {
  977. border-width:0px;
  978. position:absolute;
  979. left:0px;
  980. top:0px;
  981. width:0px;
  982. height:0px;
  983. }
  984. #u53580 {
  985. border-width:0px;
  986. position:absolute;
  987. left:372px;
  988. top:78px;
  989. width:18px;
  990. height:18px;
  991. display:flex;
  992. transition:none;
  993. }
  994. #u53580 .text {
  995. position:absolute;
  996. align-self:center;
  997. padding:2px 2px 2px 2px;
  998. box-sizing:border-box;
  999. width:100%;
  1000. }
  1001. #u53580_img {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:0px;
  1005. top:0px;
  1006. width:18px;
  1007. height:18px;
  1008. }
  1009. #u53580_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. visibility:hidden;
  1014. }
  1015. #u53581 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:378px;
  1019. top:84px;
  1020. width:6px;
  1021. height:6px;
  1022. display:flex;
  1023. transition:none;
  1024. }
  1025. #u53581 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u53581_img {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:6px;
  1038. height:6px;
  1039. }
  1040. #u53581_text {
  1041. border-width:0px;
  1042. word-wrap:break-word;
  1043. text-transform:none;
  1044. visibility:hidden;
  1045. }
  1046. #u53582 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:0px;
  1050. top:0px;
  1051. width:0px;
  1052. height:0px;
  1053. }
  1054. #u53583 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:323px;
  1058. top:85px;
  1059. width:5px;
  1060. height:5px;
  1061. display:flex;
  1062. transition:none;
  1063. }
  1064. #u53583 .text {
  1065. position:absolute;
  1066. align-self:center;
  1067. padding:2px 2px 2px 2px;
  1068. box-sizing:border-box;
  1069. width:100%;
  1070. }
  1071. #u53583_img {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:0px;
  1075. top:0px;
  1076. width:5px;
  1077. height:5px;
  1078. }
  1079. #u53583_text {
  1080. border-width:0px;
  1081. word-wrap:break-word;
  1082. text-transform:none;
  1083. visibility:hidden;
  1084. }
  1085. #u53584 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:339px;
  1089. top:85px;
  1090. width:5px;
  1091. height:5px;
  1092. display:flex;
  1093. transition:none;
  1094. }
  1095. #u53584 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u53584_img {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:5px;
  1108. height:5px;
  1109. }
  1110. #u53584_text {
  1111. border-width:0px;
  1112. word-wrap:break-word;
  1113. text-transform:none;
  1114. visibility:hidden;
  1115. }
  1116. #u53585 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:330px;
  1120. top:84px;
  1121. width:7px;
  1122. height:7px;
  1123. display:flex;
  1124. transition:none;
  1125. }
  1126. #u53585 .text {
  1127. position:absolute;
  1128. align-self:center;
  1129. padding:2px 2px 2px 2px;
  1130. box-sizing:border-box;
  1131. width:100%;
  1132. }
  1133. #u53585_img {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:0px;
  1137. top:0px;
  1138. width:7px;
  1139. height:7px;
  1140. }
  1141. #u53585_text {
  1142. border-width:0px;
  1143. word-wrap:break-word;
  1144. text-transform:none;
  1145. visibility:hidden;
  1146. }
  1147. #u53586 {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:347px;
  1151. top:87px;
  1152. width:18px;
  1153. height:1px;
  1154. display:flex;
  1155. -webkit-transform:rotate(90deg);
  1156. -moz-transform:rotate(90deg);
  1157. -ms-transform:rotate(90deg);
  1158. transform:rotate(90deg);
  1159. transition:none;
  1160. }
  1161. #u53586 .text {
  1162. position:absolute;
  1163. align-self:center;
  1164. padding:2px 2px 2px 2px;
  1165. box-sizing:border-box;
  1166. width:100%;
  1167. }
  1168. #u53586_img {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:0px;
  1172. top:0px;
  1173. width:19px;
  1174. height:2px;
  1175. }
  1176. #u53586_text {
  1177. border-width:0px;
  1178. word-wrap:break-word;
  1179. text-transform:none;
  1180. visibility:hidden;
  1181. }
  1182. #u53587_div {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:0px;
  1186. top:0px;
  1187. width:65px;
  1188. height:22px;
  1189. background:inherit;
  1190. background-color:rgba(255, 255, 255, 0);
  1191. border-radius:0px;
  1192. filter:drop-shadow(none);
  1193. transition:none;
  1194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1195. font-weight:400;
  1196. font-style:normal;
  1197. font-size:16px;
  1198. color:#000000;
  1199. }
  1200. #u53587 {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:58px;
  1204. top:76px;
  1205. width:65px;
  1206. height:22px;
  1207. display:flex;
  1208. transition:none;
  1209. transform-origin:50% 50%;
  1210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1211. font-weight:400;
  1212. font-style:normal;
  1213. font-size:16px;
  1214. color:#000000;
  1215. }
  1216. #u53587 .text {
  1217. position:absolute;
  1218. align-self:flex-start;
  1219. padding:0px 0px 0px 0px;
  1220. box-sizing:border-box;
  1221. width:100%;
  1222. }
  1223. #u53587_text {
  1224. border-width:0px;
  1225. white-space:nowrap;
  1226. text-transform:none;
  1227. }
  1228. #u53588_div {
  1229. border-width:0px;
  1230. position:absolute;
  1231. left:0px;
  1232. top:0px;
  1233. width:12px;
  1234. height:12px;
  1235. background:inherit;
  1236. background-color:rgba(255, 255, 255, 0);
  1237. box-sizing:border-box;
  1238. border-width:2px;
  1239. border-style:solid;
  1240. border-color:rgba(51, 51, 51, 1);
  1241. border-right:0px;
  1242. border-bottom:0px;
  1243. border-radius:0px;
  1244. border-top-right-radius:0px;
  1245. border-bottom-left-radius:0px;
  1246. filter:drop-shadow(none);
  1247. transition:none;
  1248. }
  1249. #u53588 {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:44px;
  1253. top:81px;
  1254. width:12px;
  1255. height:12px;
  1256. display:flex;
  1257. -webkit-transform:rotate(315deg);
  1258. -moz-transform:rotate(315deg);
  1259. -ms-transform:rotate(315deg);
  1260. transform:rotate(315deg);
  1261. transition:none;
  1262. transform-origin:50% 50%;
  1263. }
  1264. #u53588 .text {
  1265. position:absolute;
  1266. align-self:center;
  1267. padding:2px 2px 2px 2px;
  1268. box-sizing:border-box;
  1269. width:100%;
  1270. }
  1271. #u53588_text {
  1272. border-width:0px;
  1273. word-wrap:break-word;
  1274. text-transform:none;
  1275. visibility:hidden;
  1276. }
  1277. #u53589_div {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:375px;
  1283. height:100px;
  1284. background:inherit;
  1285. background-color:rgba(255, 255, 255, 1);
  1286. border-left:0px;
  1287. border-top:0px;
  1288. border-right:0px;
  1289. border-radius:0px;
  1290. border-bottom-right-radius:0px;
  1291. border-bottom-left-radius:0px;
  1292. filter:drop-shadow(none);
  1293. transition:none;
  1294. }
  1295. #u53589 {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:29px;
  1299. top:107px;
  1300. width:375px;
  1301. height:100px;
  1302. display:flex;
  1303. transition:none;
  1304. transform-origin:50% 50%;
  1305. }
  1306. #u53589 .text {
  1307. position:absolute;
  1308. align-self:center;
  1309. padding:2px 2px 2px 2px;
  1310. box-sizing:border-box;
  1311. width:100%;
  1312. }
  1313. #u53589_text {
  1314. border-width:0px;
  1315. word-wrap:break-word;
  1316. text-transform:none;
  1317. visibility:hidden;
  1318. }
  1319. #u53590 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:0px;
  1325. height:0px;
  1326. }
  1327. #u53591 {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:39px;
  1331. top:237px;
  1332. width:355px;
  1333. height:240px;
  1334. display:flex;
  1335. transition:none;
  1336. }
  1337. #u53591 .text {
  1338. position:absolute;
  1339. align-self:center;
  1340. padding:2px 2px 2px 2px;
  1341. box-sizing:border-box;
  1342. width:100%;
  1343. }
  1344. #u53591_img {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:0px;
  1348. top:0px;
  1349. width:355px;
  1350. height:240px;
  1351. }
  1352. #u53591_text {
  1353. border-width:0px;
  1354. word-wrap:break-word;
  1355. text-transform:none;
  1356. visibility:hidden;
  1357. }
  1358. #u53592_div {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:0px;
  1362. top:0px;
  1363. width:325px;
  1364. height:30px;
  1365. background:inherit;
  1366. background-color:rgba(255, 255, 255, 0);
  1367. border-left:0px;
  1368. border-top:0px;
  1369. border-right:0px;
  1370. border-radius:0px;
  1371. border-bottom-right-radius:0px;
  1372. border-bottom-left-radius:0px;
  1373. filter:drop-shadow(none);
  1374. transition:none;
  1375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1376. font-weight:400;
  1377. font-style:normal;
  1378. font-size:14px;
  1379. line-height:30px;
  1380. }
  1381. #u53592 {
  1382. border-width:0px;
  1383. position:absolute;
  1384. left:55px;
  1385. top:248px;
  1386. width:325px;
  1387. height:30px;
  1388. display:flex;
  1389. transition:none;
  1390. transform-origin:50% 50%;
  1391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1392. font-weight:400;
  1393. font-style:normal;
  1394. font-size:14px;
  1395. line-height:30px;
  1396. }
  1397. #u53592 .text {
  1398. position:absolute;
  1399. align-self:flex-start;
  1400. padding:0px 0px 0px 0px;
  1401. box-sizing:border-box;
  1402. width:100%;
  1403. }
  1404. #u53592_text {
  1405. border-width:0px;
  1406. word-wrap:break-word;
  1407. text-transform:none;
  1408. }
  1409. #u53593_div {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:0px;
  1413. top:0px;
  1414. width:108px;
  1415. height:180px;
  1416. background:inherit;
  1417. background-color:rgba(255, 255, 255, 0);
  1418. border-left:0px;
  1419. border-top:0px;
  1420. border-right:0px;
  1421. border-radius:0px;
  1422. border-bottom-right-radius:0px;
  1423. border-bottom-left-radius:0px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. font-size:12px;
  1430. line-height:30px;
  1431. }
  1432. #u53593 {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:55px;
  1436. top:288px;
  1437. width:108px;
  1438. height:180px;
  1439. display:flex;
  1440. transition:none;
  1441. transform-origin:50% 50%;
  1442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1443. font-weight:400;
  1444. font-style:normal;
  1445. font-size:12px;
  1446. line-height:30px;
  1447. }
  1448. #u53593 .text {
  1449. position:absolute;
  1450. align-self:flex-start;
  1451. padding:0px 0px 0px 0px;
  1452. box-sizing:border-box;
  1453. width:100%;
  1454. }
  1455. #u53593_text {
  1456. border-width:0px;
  1457. word-wrap:break-word;
  1458. text-transform:none;
  1459. }
  1460. #u53594_div {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:0px;
  1464. top:0px;
  1465. width:108px;
  1466. height:180px;
  1467. background:inherit;
  1468. background-color:rgba(255, 255, 255, 0);
  1469. border-left:0px;
  1470. border-top:0px;
  1471. border-right:0px;
  1472. border-radius:0px;
  1473. border-bottom-right-radius:0px;
  1474. border-bottom-left-radius:0px;
  1475. filter:drop-shadow(none);
  1476. transition:none;
  1477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1478. font-weight:400;
  1479. font-style:normal;
  1480. font-size:12px;
  1481. line-height:30px;
  1482. }
  1483. #u53594 {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:163px;
  1487. top:288px;
  1488. width:108px;
  1489. height:180px;
  1490. display:flex;
  1491. transition:none;
  1492. transform-origin:50% 50%;
  1493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1494. font-weight:400;
  1495. font-style:normal;
  1496. font-size:12px;
  1497. line-height:30px;
  1498. }
  1499. #u53594 .text {
  1500. position:absolute;
  1501. align-self:flex-start;
  1502. padding:0px 0px 0px 0px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u53594_text {
  1507. border-width:0px;
  1508. word-wrap:break-word;
  1509. text-transform:none;
  1510. }
  1511. #u53595_div {
  1512. border-width:0px;
  1513. position:absolute;
  1514. left:0px;
  1515. top:0px;
  1516. width:108px;
  1517. height:180px;
  1518. background:inherit;
  1519. background-color:rgba(255, 255, 255, 0);
  1520. border-left:0px;
  1521. border-top:0px;
  1522. border-right:0px;
  1523. border-radius:0px;
  1524. border-bottom-right-radius:0px;
  1525. border-bottom-left-radius:0px;
  1526. filter:drop-shadow(none);
  1527. transition:none;
  1528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1529. font-weight:400;
  1530. font-style:normal;
  1531. font-size:12px;
  1532. line-height:30px;
  1533. }
  1534. #u53595 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:272px;
  1538. top:288px;
  1539. width:108px;
  1540. height:180px;
  1541. display:flex;
  1542. transition:none;
  1543. transform-origin:50% 50%;
  1544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1545. font-weight:400;
  1546. font-style:normal;
  1547. font-size:12px;
  1548. line-height:30px;
  1549. }
  1550. #u53595 .text {
  1551. position:absolute;
  1552. align-self:flex-start;
  1553. padding:0px 0px 0px 0px;
  1554. box-sizing:border-box;
  1555. width:100%;
  1556. }
  1557. #u53595_text {
  1558. border-width:0px;
  1559. word-wrap:break-word;
  1560. text-transform:none;
  1561. }
  1562. #u53596_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:155px;
  1568. height:30px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border-left:0px;
  1572. border-top:0px;
  1573. border-right:0px;
  1574. border-radius:0px;
  1575. border-bottom-right-radius:0px;
  1576. border-bottom-left-radius:0px;
  1577. filter:drop-shadow(none);
  1578. transition:none;
  1579. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1580. font-weight:500;
  1581. font-style:normal;
  1582. font-size:14px;
  1583. line-height:30px;
  1584. }
  1585. #u53596 {
  1586. border-width:0px;
  1587. position:absolute;
  1588. left:56px;
  1589. top:117px;
  1590. width:155px;
  1591. height:30px;
  1592. display:flex;
  1593. transition:none;
  1594. transform-origin:50% 50%;
  1595. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1596. font-weight:500;
  1597. font-style:normal;
  1598. font-size:14px;
  1599. line-height:30px;
  1600. }
  1601. #u53596 .text {
  1602. position:absolute;
  1603. align-self:flex-start;
  1604. padding:0px 0px 0px 0px;
  1605. box-sizing:border-box;
  1606. width:100%;
  1607. }
  1608. #u53596_text {
  1609. border-width:0px;
  1610. white-space:nowrap;
  1611. text-transform:none;
  1612. }
  1613. #u53597 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:0px;
  1617. top:0px;
  1618. width:0px;
  1619. height:0px;
  1620. }
  1621. #u53598_div {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:375px;
  1627. height:60px;
  1628. background:inherit;
  1629. background-color:rgba(255, 255, 255, 1);
  1630. border-top:0px;
  1631. border-radius:28px;
  1632. border-top-left-radius:0px;
  1633. border-top-right-radius:0px;
  1634. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  1635. transition:none;
  1636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1637. font-weight:400;
  1638. font-style:normal;
  1639. font-size:14px;
  1640. color:#FFFFFF;
  1641. }
  1642. #u53598 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:29px;
  1646. top:1184px;
  1647. width:375px;
  1648. height:60px;
  1649. display:flex;
  1650. transition:none;
  1651. transform-origin:50% 50%;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:14px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u53598 .text {
  1659. position:absolute;
  1660. align-self:center;
  1661. padding:2px 2px 2px 2px;
  1662. box-sizing:border-box;
  1663. width:100%;
  1664. }
  1665. #u53598_text {
  1666. border-width:0px;
  1667. word-wrap:break-word;
  1668. text-transform:none;
  1669. visibility:hidden;
  1670. }
  1671. #u53599_div {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:80px;
  1677. height:40px;
  1678. background:inherit;
  1679. background-color:rgba(24, 144, 255, 1);
  1680. border-radius:27px;
  1681. filter:drop-shadow(none);
  1682. transition:none;
  1683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1684. font-weight:400;
  1685. font-style:normal;
  1686. color:#FFFFFF;
  1687. text-align:center;
  1688. }
  1689. #u53599 {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:304px;
  1693. top:1194px;
  1694. width:80px;
  1695. height:40px;
  1696. display:flex;
  1697. transition:none;
  1698. transform-origin:50% 50%;
  1699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1700. font-weight:400;
  1701. font-style:normal;
  1702. color:#FFFFFF;
  1703. text-align:center;
  1704. }
  1705. #u53599 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 3px 2px 3px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u53599_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. }
  1717. #u53600_div {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:80px;
  1723. height:40px;
  1724. background:inherit;
  1725. background-color:rgba(215, 215, 215, 1);
  1726. border-radius:27px;
  1727. filter:drop-shadow(none);
  1728. transition:none;
  1729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1730. font-weight:400;
  1731. font-style:normal;
  1732. text-align:center;
  1733. }
  1734. #u53600 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:214px;
  1738. top:1194px;
  1739. width:80px;
  1740. height:40px;
  1741. display:flex;
  1742. transition:none;
  1743. transform-origin:50% 50%;
  1744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. text-align:center;
  1748. }
  1749. #u53600 .text {
  1750. position:absolute;
  1751. align-self:center;
  1752. padding:2px 3px 2px 3px;
  1753. box-sizing:border-box;
  1754. width:100%;
  1755. }
  1756. #u53600_text {
  1757. border-width:0px;
  1758. word-wrap:break-word;
  1759. text-transform:none;
  1760. }
  1761. #u53601_div {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:31px;
  1767. height:21px;
  1768. background:inherit;
  1769. background-color:rgba(215, 215, 215, 0);
  1770. border-radius:27px;
  1771. filter:drop-shadow(none);
  1772. transition:none;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:12px;
  1777. color:#7F7F7F;
  1778. text-align:center;
  1779. }
  1780. #u53601 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:172px;
  1784. top:1204px;
  1785. width:31px;
  1786. height:21px;
  1787. display:flex;
  1788. transition:none;
  1789. transform-origin:50% 50%;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:12px;
  1794. color:#7F7F7F;
  1795. text-align:center;
  1796. }
  1797. #u53601 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 3px 2px 3px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u53601_text {
  1805. border-width:0px;
  1806. white-space:nowrap;
  1807. text-transform:none;
  1808. }
  1809. #u53602_div {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:375px;
  1815. height:30px;
  1816. background:inherit;
  1817. background-color:rgba(255, 255, 128, 0.09803921568627451);
  1818. border-left:0px;
  1819. border-top:0px;
  1820. border-right:0px;
  1821. border-radius:0px;
  1822. border-bottom-right-radius:0px;
  1823. border-bottom-left-radius:0px;
  1824. filter:drop-shadow(none);
  1825. transition:none;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:12px;
  1830. color:#F59A23;
  1831. text-align:center;
  1832. }
  1833. #u53602 {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:29px;
  1837. top:207px;
  1838. width:375px;
  1839. height:30px;
  1840. display:flex;
  1841. transition:none;
  1842. transform-origin:50% 50%;
  1843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1844. font-weight:400;
  1845. font-style:normal;
  1846. font-size:12px;
  1847. color:#F59A23;
  1848. text-align:center;
  1849. }
  1850. #u53602 .text {
  1851. position:absolute;
  1852. align-self:center;
  1853. padding:0px 0px 0px 0px;
  1854. box-sizing:border-box;
  1855. width:100%;
  1856. }
  1857. #u53602_text {
  1858. border-width:0px;
  1859. word-wrap:break-word;
  1860. text-transform:none;
  1861. }
  1862. #u53603 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:0px;
  1866. top:0px;
  1867. width:0px;
  1868. height:0px;
  1869. }
  1870. #u53604 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:39px;
  1874. top:487px;
  1875. width:355px;
  1876. height:210px;
  1877. display:flex;
  1878. transition:none;
  1879. }
  1880. #u53604 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 2px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u53604_img {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:355px;
  1893. height:210px;
  1894. }
  1895. #u53604_text {
  1896. border-width:0px;
  1897. word-wrap:break-word;
  1898. text-transform:none;
  1899. visibility:hidden;
  1900. }
  1901. #u53605_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:325px;
  1907. height:30px;
  1908. background:inherit;
  1909. background-color:rgba(255, 255, 255, 0);
  1910. border-left:0px;
  1911. border-top:0px;
  1912. border-right:0px;
  1913. border-radius:0px;
  1914. border-bottom-right-radius:0px;
  1915. border-bottom-left-radius:0px;
  1916. filter:drop-shadow(none);
  1917. transition:none;
  1918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1919. font-weight:400;
  1920. font-style:normal;
  1921. font-size:14px;
  1922. line-height:30px;
  1923. }
  1924. #u53605 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:55px;
  1928. top:498px;
  1929. width:325px;
  1930. height:30px;
  1931. display:flex;
  1932. transition:none;
  1933. transform-origin:50% 50%;
  1934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1935. font-weight:400;
  1936. font-style:normal;
  1937. font-size:14px;
  1938. line-height:30px;
  1939. }
  1940. #u53605 .text {
  1941. position:absolute;
  1942. align-self:flex-start;
  1943. padding:0px 0px 0px 0px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u53605_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. }
  1952. #u53606_div {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:108px;
  1958. height:150px;
  1959. background:inherit;
  1960. background-color:rgba(255, 255, 255, 0);
  1961. border-left:0px;
  1962. border-top:0px;
  1963. border-right:0px;
  1964. border-radius:0px;
  1965. border-bottom-right-radius:0px;
  1966. border-bottom-left-radius:0px;
  1967. filter:drop-shadow(none);
  1968. transition:none;
  1969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1970. font-weight:400;
  1971. font-style:normal;
  1972. font-size:12px;
  1973. line-height:30px;
  1974. }
  1975. #u53606 {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:55px;
  1979. top:538px;
  1980. width:108px;
  1981. height:150px;
  1982. display:flex;
  1983. transition:none;
  1984. transform-origin:50% 50%;
  1985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1986. font-weight:400;
  1987. font-style:normal;
  1988. font-size:12px;
  1989. line-height:30px;
  1990. }
  1991. #u53606 .text {
  1992. position:absolute;
  1993. align-self:flex-start;
  1994. padding:0px 0px 0px 0px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u53606_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. }
  2003. #u53607_div {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:108px;
  2009. height:150px;
  2010. background:inherit;
  2011. background-color:rgba(255, 255, 255, 0);
  2012. border-left:0px;
  2013. border-top:0px;
  2014. border-right:0px;
  2015. border-radius:0px;
  2016. border-bottom-right-radius:0px;
  2017. border-bottom-left-radius:0px;
  2018. filter:drop-shadow(none);
  2019. transition:none;
  2020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:12px;
  2024. line-height:30px;
  2025. }
  2026. #u53607 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:163px;
  2030. top:538px;
  2031. width:108px;
  2032. height:150px;
  2033. display:flex;
  2034. transition:none;
  2035. transform-origin:50% 50%;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. line-height:30px;
  2041. }
  2042. #u53607 .text {
  2043. position:absolute;
  2044. align-self:flex-start;
  2045. padding:0px 0px 0px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u53607_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. }
  2054. #u53608_div {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:108px;
  2060. height:150px;
  2061. background:inherit;
  2062. background-color:rgba(255, 255, 255, 0);
  2063. border-left:0px;
  2064. border-top:0px;
  2065. border-right:0px;
  2066. border-radius:0px;
  2067. border-bottom-right-radius:0px;
  2068. border-bottom-left-radius:0px;
  2069. filter:drop-shadow(none);
  2070. transition:none;
  2071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:12px;
  2075. line-height:30px;
  2076. }
  2077. #u53608 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:272px;
  2081. top:538px;
  2082. width:108px;
  2083. height:150px;
  2084. display:flex;
  2085. transition:none;
  2086. transform-origin:50% 50%;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:12px;
  2091. line-height:30px;
  2092. }
  2093. #u53608 .text {
  2094. position:absolute;
  2095. align-self:flex-start;
  2096. padding:0px 0px 0px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u53608_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. }
  2105. #u53609_div {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:57px;
  2111. height:50px;
  2112. background:inherit;
  2113. background-color:rgba(255, 255, 255, 0);
  2114. box-sizing:border-box;
  2115. border-width:2px;
  2116. border-style:solid;
  2117. border-color:rgba(51, 51, 51, 1);
  2118. border-left:0px;
  2119. border-top:0px;
  2120. border-right:0px;
  2121. border-radius:0px;
  2122. border-bottom-right-radius:0px;
  2123. border-bottom-left-radius:0px;
  2124. filter:drop-shadow(none);
  2125. transition:none;
  2126. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2127. font-weight:500;
  2128. font-style:normal;
  2129. font-size:14px;
  2130. line-height:30px;
  2131. }
  2132. #u53609 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:69px;
  2136. top:697px;
  2137. width:57px;
  2138. height:50px;
  2139. display:flex;
  2140. transition:none;
  2141. transform-origin:50% 50%;
  2142. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2143. font-weight:500;
  2144. font-style:normal;
  2145. font-size:14px;
  2146. line-height:30px;
  2147. }
  2148. #u53609 .text {
  2149. position:absolute;
  2150. align-self:center;
  2151. padding:0px 0px 0px 0px;
  2152. box-sizing:border-box;
  2153. width:100%;
  2154. }
  2155. #u53609_text {
  2156. border-width:0px;
  2157. white-space:nowrap;
  2158. text-transform:none;
  2159. }
  2160. #u53610_div {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:57px;
  2166. height:50px;
  2167. background:inherit;
  2168. background-color:rgba(255, 255, 255, 0);
  2169. border-left:0px;
  2170. border-top:0px;
  2171. border-right:0px;
  2172. border-radius:0px;
  2173. border-bottom-right-radius:0px;
  2174. border-bottom-left-radius:0px;
  2175. filter:drop-shadow(none);
  2176. transition:none;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. line-height:30px;
  2182. }
  2183. #u53610 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:188px;
  2187. top:697px;
  2188. width:57px;
  2189. height:50px;
  2190. display:flex;
  2191. transition:none;
  2192. transform-origin:50% 50%;
  2193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:14px;
  2197. line-height:30px;
  2198. }
  2199. #u53610 .text {
  2200. position:absolute;
  2201. align-self:center;
  2202. padding:0px 0px 0px 0px;
  2203. box-sizing:border-box;
  2204. width:100%;
  2205. }
  2206. #u53610_text {
  2207. border-width:0px;
  2208. white-space:nowrap;
  2209. text-transform:none;
  2210. }
  2211. #u53611_div {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:57px;
  2217. height:50px;
  2218. background:inherit;
  2219. background-color:rgba(255, 255, 255, 0);
  2220. border-left:0px;
  2221. border-top:0px;
  2222. border-right:0px;
  2223. border-radius:0px;
  2224. border-bottom-right-radius:0px;
  2225. border-bottom-left-radius:0px;
  2226. filter:drop-shadow(none);
  2227. transition:none;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:14px;
  2232. line-height:30px;
  2233. }
  2234. #u53611 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:307px;
  2238. top:697px;
  2239. width:57px;
  2240. height:50px;
  2241. display:flex;
  2242. transition:none;
  2243. transform-origin:50% 50%;
  2244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2245. font-weight:400;
  2246. font-style:normal;
  2247. font-size:14px;
  2248. line-height:30px;
  2249. }
  2250. #u53611 .text {
  2251. position:absolute;
  2252. align-self:center;
  2253. padding:0px 0px 0px 0px;
  2254. box-sizing:border-box;
  2255. width:100%;
  2256. }
  2257. #u53611_text {
  2258. border-width:0px;
  2259. white-space:nowrap;
  2260. text-transform:none;
  2261. }
  2262. #u53612 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:0px;
  2266. top:0px;
  2267. width:0px;
  2268. height:0px;
  2269. }
  2270. #u53613 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:39px;
  2274. top:752px;
  2275. width:355px;
  2276. height:200px;
  2277. display:flex;
  2278. transition:none;
  2279. }
  2280. #u53613 .text {
  2281. position:absolute;
  2282. align-self:center;
  2283. padding:2px 2px 2px 2px;
  2284. box-sizing:border-box;
  2285. width:100%;
  2286. }
  2287. #u53613_img {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:355px;
  2293. height:200px;
  2294. }
  2295. #u53613_text {
  2296. border-width:0px;
  2297. word-wrap:break-word;
  2298. text-transform:none;
  2299. visibility:hidden;
  2300. }
  2301. #u53614_div {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:108px;
  2307. height:30px;
  2308. background:inherit;
  2309. background-color:rgba(255, 255, 255, 0);
  2310. border-left:0px;
  2311. border-top:0px;
  2312. border-right:0px;
  2313. border-radius:0px;
  2314. border-bottom-right-radius:0px;
  2315. border-bottom-left-radius:0px;
  2316. filter:drop-shadow(none);
  2317. transition:none;
  2318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. font-size:12px;
  2322. line-height:30px;
  2323. }
  2324. #u53614 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:55px;
  2328. top:763px;
  2329. width:108px;
  2330. height:30px;
  2331. display:flex;
  2332. transition:none;
  2333. transform-origin:50% 50%;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:12px;
  2338. line-height:30px;
  2339. }
  2340. #u53614 .text {
  2341. position:absolute;
  2342. align-self:flex-start;
  2343. padding:0px 0px 0px 0px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u53614_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. }
  2352. #u53615_div {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:60px;
  2358. height:30px;
  2359. background:inherit;
  2360. background-color:rgba(255, 255, 255, 0);
  2361. border-left:0px;
  2362. border-top:0px;
  2363. border-right:0px;
  2364. border-radius:0px;
  2365. border-bottom-right-radius:0px;
  2366. border-bottom-left-radius:0px;
  2367. filter:drop-shadow(none);
  2368. transition:none;
  2369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2370. font-weight:400;
  2371. font-style:normal;
  2372. font-size:12px;
  2373. line-height:30px;
  2374. }
  2375. #u53615 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:163px;
  2379. top:763px;
  2380. width:60px;
  2381. height:30px;
  2382. display:flex;
  2383. transition:none;
  2384. transform-origin:50% 50%;
  2385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2386. font-weight:400;
  2387. font-style:normal;
  2388. font-size:12px;
  2389. line-height:30px;
  2390. }
  2391. #u53615 .text {
  2392. position:absolute;
  2393. align-self:flex-start;
  2394. padding:0px 0px 0px 0px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u53615_text {
  2399. border-width:0px;
  2400. word-wrap:break-word;
  2401. text-transform:none;
  2402. }
  2403. #u53616_div {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:60px;
  2409. height:30px;
  2410. background:inherit;
  2411. background-color:rgba(255, 255, 255, 0);
  2412. border-left:0px;
  2413. border-top:0px;
  2414. border-right:0px;
  2415. border-radius:0px;
  2416. border-bottom-right-radius:0px;
  2417. border-bottom-left-radius:0px;
  2418. filter:drop-shadow(none);
  2419. transition:none;
  2420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:12px;
  2424. line-height:30px;
  2425. }
  2426. #u53616 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:223px;
  2430. top:763px;
  2431. width:60px;
  2432. height:30px;
  2433. display:flex;
  2434. transition:none;
  2435. transform-origin:50% 50%;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:12px;
  2440. line-height:30px;
  2441. }
  2442. #u53616 .text {
  2443. position:absolute;
  2444. align-self:flex-start;
  2445. padding:0px 0px 0px 0px;
  2446. box-sizing:border-box;
  2447. width:100%;
  2448. }
  2449. #u53616_text {
  2450. border-width:0px;
  2451. word-wrap:break-word;
  2452. text-transform:none;
  2453. }
  2454. #u53617_div {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:60px;
  2460. height:30px;
  2461. background:inherit;
  2462. background-color:rgba(255, 255, 255, 0);
  2463. border-left:0px;
  2464. border-top:0px;
  2465. border-right:0px;
  2466. border-radius:0px;
  2467. border-bottom-right-radius:0px;
  2468. border-bottom-left-radius:0px;
  2469. filter:drop-shadow(none);
  2470. transition:none;
  2471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2472. font-weight:400;
  2473. font-style:normal;
  2474. font-size:12px;
  2475. line-height:30px;
  2476. }
  2477. #u53617 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:283px;
  2481. top:763px;
  2482. width:60px;
  2483. height:30px;
  2484. display:flex;
  2485. transition:none;
  2486. transform-origin:50% 50%;
  2487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2488. font-weight:400;
  2489. font-style:normal;
  2490. font-size:12px;
  2491. line-height:30px;
  2492. }
  2493. #u53617 .text {
  2494. position:absolute;
  2495. align-self:flex-start;
  2496. padding:0px 0px 0px 0px;
  2497. box-sizing:border-box;
  2498. width:100%;
  2499. }
  2500. #u53617_text {
  2501. border-width:0px;
  2502. word-wrap:break-word;
  2503. text-transform:none;
  2504. }
  2505. #u53618_div {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:51px;
  2511. height:30px;
  2512. background:inherit;
  2513. background-color:rgba(255, 255, 255, 0);
  2514. border-left:0px;
  2515. border-top:0px;
  2516. border-right:0px;
  2517. border-radius:0px;
  2518. border-bottom-right-radius:0px;
  2519. border-bottom-left-radius:0px;
  2520. filter:drop-shadow(none);
  2521. transition:none;
  2522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2523. font-weight:400;
  2524. font-style:normal;
  2525. font-size:12px;
  2526. line-height:30px;
  2527. }
  2528. #u53618 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:343px;
  2532. top:763px;
  2533. width:51px;
  2534. height:30px;
  2535. display:flex;
  2536. transition:none;
  2537. transform-origin:50% 50%;
  2538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2539. font-weight:400;
  2540. font-style:normal;
  2541. font-size:12px;
  2542. line-height:30px;
  2543. }
  2544. #u53618 .text {
  2545. position:absolute;
  2546. align-self:flex-start;
  2547. padding:0px 0px 0px 0px;
  2548. box-sizing:border-box;
  2549. width:100%;
  2550. }
  2551. #u53618_text {
  2552. border-width:0px;
  2553. word-wrap:break-word;
  2554. text-transform:none;
  2555. }
  2556. #u53619_div {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:0px;
  2560. top:0px;
  2561. width:108px;
  2562. height:30px;
  2563. background:inherit;
  2564. background-color:rgba(255, 255, 255, 0);
  2565. border-left:0px;
  2566. border-top:0px;
  2567. border-right:0px;
  2568. border-radius:0px;
  2569. border-bottom-right-radius:0px;
  2570. border-bottom-left-radius:0px;
  2571. filter:drop-shadow(none);
  2572. transition:none;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. font-size:12px;
  2577. line-height:30px;
  2578. }
  2579. #u53619 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:55px;
  2583. top:793px;
  2584. width:108px;
  2585. height:30px;
  2586. display:flex;
  2587. transition:none;
  2588. transform-origin:50% 50%;
  2589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. font-size:12px;
  2593. line-height:30px;
  2594. }
  2595. #u53619 .text {
  2596. position:absolute;
  2597. align-self:flex-start;
  2598. padding:0px 0px 0px 10px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u53619_text {
  2603. border-width:0px;
  2604. word-wrap:break-word;
  2605. text-transform:none;
  2606. }
  2607. #u53620_div {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:60px;
  2613. height:30px;
  2614. background:inherit;
  2615. background-color:rgba(255, 255, 255, 0);
  2616. border-left:0px;
  2617. border-top:0px;
  2618. border-right:0px;
  2619. border-radius:0px;
  2620. border-bottom-right-radius:0px;
  2621. border-bottom-left-radius:0px;
  2622. filter:drop-shadow(none);
  2623. transition:none;
  2624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:12px;
  2628. line-height:30px;
  2629. }
  2630. #u53620 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:163px;
  2634. top:793px;
  2635. width:60px;
  2636. height:30px;
  2637. display:flex;
  2638. transition:none;
  2639. transform-origin:50% 50%;
  2640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2641. font-weight:400;
  2642. font-style:normal;
  2643. font-size:12px;
  2644. line-height:30px;
  2645. }
  2646. #u53620 .text {
  2647. position:absolute;
  2648. align-self:flex-start;
  2649. padding:0px 0px 0px 0px;
  2650. box-sizing:border-box;
  2651. width:100%;
  2652. }
  2653. #u53620_text {
  2654. border-width:0px;
  2655. word-wrap:break-word;
  2656. text-transform:none;
  2657. }
  2658. #u53621_div {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:60px;
  2664. height:30px;
  2665. background:inherit;
  2666. background-color:rgba(255, 255, 255, 0);
  2667. border-left:0px;
  2668. border-top:0px;
  2669. border-right:0px;
  2670. border-radius:0px;
  2671. border-bottom-right-radius:0px;
  2672. border-bottom-left-radius:0px;
  2673. filter:drop-shadow(none);
  2674. transition:none;
  2675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2676. font-weight:400;
  2677. font-style:normal;
  2678. font-size:12px;
  2679. line-height:30px;
  2680. }
  2681. #u53621 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:223px;
  2685. top:793px;
  2686. width:60px;
  2687. height:30px;
  2688. display:flex;
  2689. transition:none;
  2690. transform-origin:50% 50%;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:12px;
  2695. line-height:30px;
  2696. }
  2697. #u53621 .text {
  2698. position:absolute;
  2699. align-self:flex-start;
  2700. padding:0px 0px 0px 0px;
  2701. box-sizing:border-box;
  2702. width:100%;
  2703. }
  2704. #u53621_text {
  2705. border-width:0px;
  2706. word-wrap:break-word;
  2707. text-transform:none;
  2708. }
  2709. #u53622_div {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:60px;
  2715. height:30px;
  2716. background:inherit;
  2717. background-color:rgba(255, 255, 255, 0);
  2718. border-left:0px;
  2719. border-top:0px;
  2720. border-right:0px;
  2721. border-radius:0px;
  2722. border-bottom-right-radius:0px;
  2723. border-bottom-left-radius:0px;
  2724. filter:drop-shadow(none);
  2725. transition:none;
  2726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2727. font-weight:400;
  2728. font-style:normal;
  2729. font-size:12px;
  2730. line-height:30px;
  2731. }
  2732. #u53622 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:283px;
  2736. top:793px;
  2737. width:60px;
  2738. height:30px;
  2739. display:flex;
  2740. transition:none;
  2741. transform-origin:50% 50%;
  2742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2743. font-weight:400;
  2744. font-style:normal;
  2745. font-size:12px;
  2746. line-height:30px;
  2747. }
  2748. #u53622 .text {
  2749. position:absolute;
  2750. align-self:flex-start;
  2751. padding:0px 0px 0px 0px;
  2752. box-sizing:border-box;
  2753. width:100%;
  2754. }
  2755. #u53622_text {
  2756. border-width:0px;
  2757. word-wrap:break-word;
  2758. text-transform:none;
  2759. }
  2760. #u53623_div {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:51px;
  2766. height:30px;
  2767. background:inherit;
  2768. background-color:rgba(255, 255, 255, 0);
  2769. border-left:0px;
  2770. border-top:0px;
  2771. border-right:0px;
  2772. border-radius:0px;
  2773. border-bottom-right-radius:0px;
  2774. border-bottom-left-radius:0px;
  2775. filter:drop-shadow(none);
  2776. transition:none;
  2777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2778. font-weight:400;
  2779. font-style:normal;
  2780. font-size:12px;
  2781. line-height:30px;
  2782. }
  2783. #u53623 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:343px;
  2787. top:793px;
  2788. width:51px;
  2789. height:30px;
  2790. display:flex;
  2791. transition:none;
  2792. transform-origin:50% 50%;
  2793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2794. font-weight:400;
  2795. font-style:normal;
  2796. font-size:12px;
  2797. line-height:30px;
  2798. }
  2799. #u53623 .text {
  2800. position:absolute;
  2801. align-self:flex-start;
  2802. padding:0px 0px 0px 0px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u53623_text {
  2807. border-width:0px;
  2808. word-wrap:break-word;
  2809. text-transform:none;
  2810. }
  2811. #u53624_div {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:108px;
  2817. height:30px;
  2818. background:inherit;
  2819. background-color:rgba(255, 255, 255, 0);
  2820. border-left:0px;
  2821. border-top:0px;
  2822. border-right:0px;
  2823. border-radius:0px;
  2824. border-bottom-right-radius:0px;
  2825. border-bottom-left-radius:0px;
  2826. filter:drop-shadow(none);
  2827. transition:none;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:12px;
  2832. line-height:30px;
  2833. }
  2834. #u53624 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:55px;
  2838. top:823px;
  2839. width:108px;
  2840. height:30px;
  2841. display:flex;
  2842. transition:none;
  2843. transform-origin:50% 50%;
  2844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2845. font-weight:400;
  2846. font-style:normal;
  2847. font-size:12px;
  2848. line-height:30px;
  2849. }
  2850. #u53624 .text {
  2851. position:absolute;
  2852. align-self:flex-start;
  2853. padding:0px 0px 0px 10px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u53624_text {
  2858. border-width:0px;
  2859. word-wrap:break-word;
  2860. text-transform:none;
  2861. }
  2862. #u53625_div {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:0px;
  2866. top:0px;
  2867. width:60px;
  2868. height:30px;
  2869. background:inherit;
  2870. background-color:rgba(255, 255, 255, 0);
  2871. border-left:0px;
  2872. border-top:0px;
  2873. border-right:0px;
  2874. border-radius:0px;
  2875. border-bottom-right-radius:0px;
  2876. border-bottom-left-radius:0px;
  2877. filter:drop-shadow(none);
  2878. transition:none;
  2879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:12px;
  2883. line-height:30px;
  2884. }
  2885. #u53625 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:163px;
  2889. top:823px;
  2890. width:60px;
  2891. height:30px;
  2892. display:flex;
  2893. transition:none;
  2894. transform-origin:50% 50%;
  2895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2896. font-weight:400;
  2897. font-style:normal;
  2898. font-size:12px;
  2899. line-height:30px;
  2900. }
  2901. #u53625 .text {
  2902. position:absolute;
  2903. align-self:flex-start;
  2904. padding:0px 0px 0px 0px;
  2905. box-sizing:border-box;
  2906. width:100%;
  2907. }
  2908. #u53625_text {
  2909. border-width:0px;
  2910. word-wrap:break-word;
  2911. text-transform:none;
  2912. }
  2913. #u53626_div {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:60px;
  2919. height:30px;
  2920. background:inherit;
  2921. background-color:rgba(255, 255, 255, 0);
  2922. border-left:0px;
  2923. border-top:0px;
  2924. border-right:0px;
  2925. border-radius:0px;
  2926. border-bottom-right-radius:0px;
  2927. border-bottom-left-radius:0px;
  2928. filter:drop-shadow(none);
  2929. transition:none;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:12px;
  2934. line-height:30px;
  2935. }
  2936. #u53626 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:223px;
  2940. top:823px;
  2941. width:60px;
  2942. height:30px;
  2943. display:flex;
  2944. transition:none;
  2945. transform-origin:50% 50%;
  2946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:12px;
  2950. line-height:30px;
  2951. }
  2952. #u53626 .text {
  2953. position:absolute;
  2954. align-self:flex-start;
  2955. padding:0px 0px 0px 0px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u53626_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. }
  2964. #u53627_div {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:60px;
  2970. height:30px;
  2971. background:inherit;
  2972. background-color:rgba(255, 255, 255, 0);
  2973. border-left:0px;
  2974. border-top:0px;
  2975. border-right:0px;
  2976. border-radius:0px;
  2977. border-bottom-right-radius:0px;
  2978. border-bottom-left-radius:0px;
  2979. filter:drop-shadow(none);
  2980. transition:none;
  2981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:12px;
  2985. line-height:30px;
  2986. }
  2987. #u53627 {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:283px;
  2991. top:823px;
  2992. width:60px;
  2993. height:30px;
  2994. display:flex;
  2995. transition:none;
  2996. transform-origin:50% 50%;
  2997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:12px;
  3001. line-height:30px;
  3002. }
  3003. #u53627 .text {
  3004. position:absolute;
  3005. align-self:flex-start;
  3006. padding:0px 0px 0px 0px;
  3007. box-sizing:border-box;
  3008. width:100%;
  3009. }
  3010. #u53627_text {
  3011. border-width:0px;
  3012. word-wrap:break-word;
  3013. text-transform:none;
  3014. }
  3015. #u53628_div {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:51px;
  3021. height:30px;
  3022. background:inherit;
  3023. background-color:rgba(255, 255, 255, 0);
  3024. border-left:0px;
  3025. border-top:0px;
  3026. border-right:0px;
  3027. border-radius:0px;
  3028. border-bottom-right-radius:0px;
  3029. border-bottom-left-radius:0px;
  3030. filter:drop-shadow(none);
  3031. transition:none;
  3032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3033. font-weight:400;
  3034. font-style:normal;
  3035. font-size:12px;
  3036. line-height:30px;
  3037. }
  3038. #u53628 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:343px;
  3042. top:823px;
  3043. width:51px;
  3044. height:30px;
  3045. display:flex;
  3046. transition:none;
  3047. transform-origin:50% 50%;
  3048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3049. font-weight:400;
  3050. font-style:normal;
  3051. font-size:12px;
  3052. line-height:30px;
  3053. }
  3054. #u53628 .text {
  3055. position:absolute;
  3056. align-self:flex-start;
  3057. padding:0px 0px 0px 0px;
  3058. box-sizing:border-box;
  3059. width:100%;
  3060. }
  3061. #u53628_text {
  3062. border-width:0px;
  3063. word-wrap:break-word;
  3064. text-transform:none;
  3065. }
  3066. #u53629_div {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:108px;
  3072. height:30px;
  3073. background:inherit;
  3074. background-color:rgba(255, 255, 255, 0);
  3075. border-left:0px;
  3076. border-top:0px;
  3077. border-right:0px;
  3078. border-radius:0px;
  3079. border-bottom-right-radius:0px;
  3080. border-bottom-left-radius:0px;
  3081. filter:drop-shadow(none);
  3082. transition:none;
  3083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3084. font-weight:400;
  3085. font-style:normal;
  3086. font-size:12px;
  3087. line-height:30px;
  3088. }
  3089. #u53629 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:55px;
  3093. top:853px;
  3094. width:108px;
  3095. height:30px;
  3096. display:flex;
  3097. transition:none;
  3098. transform-origin:50% 50%;
  3099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3100. font-weight:400;
  3101. font-style:normal;
  3102. font-size:12px;
  3103. line-height:30px;
  3104. }
  3105. #u53629 .text {
  3106. position:absolute;
  3107. align-self:flex-start;
  3108. padding:0px 0px 0px 10px;
  3109. box-sizing:border-box;
  3110. width:100%;
  3111. }
  3112. #u53629_text {
  3113. border-width:0px;
  3114. word-wrap:break-word;
  3115. text-transform:none;
  3116. }
  3117. #u53630_div {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:60px;
  3123. height:30px;
  3124. background:inherit;
  3125. background-color:rgba(255, 255, 255, 0);
  3126. border-left:0px;
  3127. border-top:0px;
  3128. border-right:0px;
  3129. border-radius:0px;
  3130. border-bottom-right-radius:0px;
  3131. border-bottom-left-radius:0px;
  3132. filter:drop-shadow(none);
  3133. transition:none;
  3134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:12px;
  3138. line-height:30px;
  3139. }
  3140. #u53630 {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:163px;
  3144. top:853px;
  3145. width:60px;
  3146. height:30px;
  3147. display:flex;
  3148. transition:none;
  3149. transform-origin:50% 50%;
  3150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3151. font-weight:400;
  3152. font-style:normal;
  3153. font-size:12px;
  3154. line-height:30px;
  3155. }
  3156. #u53630 .text {
  3157. position:absolute;
  3158. align-self:flex-start;
  3159. padding:0px 0px 0px 0px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u53630_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. }
  3168. #u53631_div {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:60px;
  3174. height:30px;
  3175. background:inherit;
  3176. background-color:rgba(255, 255, 255, 0);
  3177. border-left:0px;
  3178. border-top:0px;
  3179. border-right:0px;
  3180. border-radius:0px;
  3181. border-bottom-right-radius:0px;
  3182. border-bottom-left-radius:0px;
  3183. filter:drop-shadow(none);
  3184. transition:none;
  3185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3186. font-weight:400;
  3187. font-style:normal;
  3188. font-size:12px;
  3189. line-height:30px;
  3190. }
  3191. #u53631 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:223px;
  3195. top:853px;
  3196. width:60px;
  3197. height:30px;
  3198. display:flex;
  3199. transition:none;
  3200. transform-origin:50% 50%;
  3201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. font-size:12px;
  3205. line-height:30px;
  3206. }
  3207. #u53631 .text {
  3208. position:absolute;
  3209. align-self:flex-start;
  3210. padding:0px 0px 0px 0px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u53631_text {
  3215. border-width:0px;
  3216. word-wrap:break-word;
  3217. text-transform:none;
  3218. }
  3219. #u53632_div {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:60px;
  3225. height:30px;
  3226. background:inherit;
  3227. background-color:rgba(255, 255, 255, 0);
  3228. border-left:0px;
  3229. border-top:0px;
  3230. border-right:0px;
  3231. border-radius:0px;
  3232. border-bottom-right-radius:0px;
  3233. border-bottom-left-radius:0px;
  3234. filter:drop-shadow(none);
  3235. transition:none;
  3236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:12px;
  3240. line-height:30px;
  3241. }
  3242. #u53632 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:283px;
  3246. top:853px;
  3247. width:60px;
  3248. height:30px;
  3249. display:flex;
  3250. transition:none;
  3251. transform-origin:50% 50%;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:12px;
  3256. line-height:30px;
  3257. }
  3258. #u53632 .text {
  3259. position:absolute;
  3260. align-self:flex-start;
  3261. padding:0px 0px 0px 0px;
  3262. box-sizing:border-box;
  3263. width:100%;
  3264. }
  3265. #u53632_text {
  3266. border-width:0px;
  3267. word-wrap:break-word;
  3268. text-transform:none;
  3269. }
  3270. #u53633_div {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:51px;
  3276. height:30px;
  3277. background:inherit;
  3278. background-color:rgba(255, 255, 255, 0);
  3279. border-left:0px;
  3280. border-top:0px;
  3281. border-right:0px;
  3282. border-radius:0px;
  3283. border-bottom-right-radius:0px;
  3284. border-bottom-left-radius:0px;
  3285. filter:drop-shadow(none);
  3286. transition:none;
  3287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:12px;
  3291. line-height:30px;
  3292. }
  3293. #u53633 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:343px;
  3297. top:853px;
  3298. width:51px;
  3299. height:30px;
  3300. display:flex;
  3301. transition:none;
  3302. transform-origin:50% 50%;
  3303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3304. font-weight:400;
  3305. font-style:normal;
  3306. font-size:12px;
  3307. line-height:30px;
  3308. }
  3309. #u53633 .text {
  3310. position:absolute;
  3311. align-self:flex-start;
  3312. padding:0px 0px 0px 0px;
  3313. box-sizing:border-box;
  3314. width:100%;
  3315. }
  3316. #u53633_text {
  3317. border-width:0px;
  3318. word-wrap:break-word;
  3319. text-transform:none;
  3320. }
  3321. #u53634_div {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:0px;
  3325. top:0px;
  3326. width:108px;
  3327. height:30px;
  3328. background:inherit;
  3329. background-color:rgba(255, 255, 255, 0);
  3330. border-left:0px;
  3331. border-top:0px;
  3332. border-right:0px;
  3333. border-radius:0px;
  3334. border-bottom-right-radius:0px;
  3335. border-bottom-left-radius:0px;
  3336. filter:drop-shadow(none);
  3337. transition:none;
  3338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:12px;
  3342. line-height:30px;
  3343. }
  3344. #u53634 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:55px;
  3348. top:883px;
  3349. width:108px;
  3350. height:30px;
  3351. display:flex;
  3352. transition:none;
  3353. transform-origin:50% 50%;
  3354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:12px;
  3358. line-height:30px;
  3359. }
  3360. #u53634 .text {
  3361. position:absolute;
  3362. align-self:flex-start;
  3363. padding:0px 0px 0px 0px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u53634_text {
  3368. border-width:0px;
  3369. word-wrap:break-word;
  3370. text-transform:none;
  3371. }
  3372. #u53635_div {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:60px;
  3378. height:30px;
  3379. background:inherit;
  3380. background-color:rgba(255, 255, 255, 0);
  3381. border-left:0px;
  3382. border-top:0px;
  3383. border-right:0px;
  3384. border-radius:0px;
  3385. border-bottom-right-radius:0px;
  3386. border-bottom-left-radius:0px;
  3387. filter:drop-shadow(none);
  3388. transition:none;
  3389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:12px;
  3393. line-height:30px;
  3394. }
  3395. #u53635 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:163px;
  3399. top:883px;
  3400. width:60px;
  3401. height:30px;
  3402. display:flex;
  3403. transition:none;
  3404. transform-origin:50% 50%;
  3405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. font-size:12px;
  3409. line-height:30px;
  3410. }
  3411. #u53635 .text {
  3412. position:absolute;
  3413. align-self:flex-start;
  3414. padding:0px 0px 0px 0px;
  3415. box-sizing:border-box;
  3416. width:100%;
  3417. }
  3418. #u53635_text {
  3419. border-width:0px;
  3420. word-wrap:break-word;
  3421. text-transform:none;
  3422. }
  3423. #u53636_div {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:60px;
  3429. height:30px;
  3430. background:inherit;
  3431. background-color:rgba(255, 255, 255, 0);
  3432. border-left:0px;
  3433. border-top:0px;
  3434. border-right:0px;
  3435. border-radius:0px;
  3436. border-bottom-right-radius:0px;
  3437. border-bottom-left-radius:0px;
  3438. filter:drop-shadow(none);
  3439. transition:none;
  3440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3441. font-weight:400;
  3442. font-style:normal;
  3443. font-size:12px;
  3444. line-height:30px;
  3445. }
  3446. #u53636 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:223px;
  3450. top:883px;
  3451. width:60px;
  3452. height:30px;
  3453. display:flex;
  3454. transition:none;
  3455. transform-origin:50% 50%;
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:12px;
  3460. line-height:30px;
  3461. }
  3462. #u53636 .text {
  3463. position:absolute;
  3464. align-self:flex-start;
  3465. padding:0px 0px 0px 0px;
  3466. box-sizing:border-box;
  3467. width:100%;
  3468. }
  3469. #u53636_text {
  3470. border-width:0px;
  3471. word-wrap:break-word;
  3472. text-transform:none;
  3473. }
  3474. #u53637_div {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:60px;
  3480. height:30px;
  3481. background:inherit;
  3482. background-color:rgba(255, 255, 255, 0);
  3483. border-left:0px;
  3484. border-top:0px;
  3485. border-right:0px;
  3486. border-radius:0px;
  3487. border-bottom-right-radius:0px;
  3488. border-bottom-left-radius:0px;
  3489. filter:drop-shadow(none);
  3490. transition:none;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:12px;
  3495. line-height:30px;
  3496. }
  3497. #u53637 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:283px;
  3501. top:883px;
  3502. width:60px;
  3503. height:30px;
  3504. display:flex;
  3505. transition:none;
  3506. transform-origin:50% 50%;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:12px;
  3511. line-height:30px;
  3512. }
  3513. #u53637 .text {
  3514. position:absolute;
  3515. align-self:flex-start;
  3516. padding:0px 0px 0px 0px;
  3517. box-sizing:border-box;
  3518. width:100%;
  3519. }
  3520. #u53637_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. }
  3525. #u53638_div {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:51px;
  3531. height:30px;
  3532. background:inherit;
  3533. background-color:rgba(255, 255, 255, 0);
  3534. border-left:0px;
  3535. border-top:0px;
  3536. border-right:0px;
  3537. border-radius:0px;
  3538. border-bottom-right-radius:0px;
  3539. border-bottom-left-radius:0px;
  3540. filter:drop-shadow(none);
  3541. transition:none;
  3542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3543. font-weight:400;
  3544. font-style:normal;
  3545. font-size:12px;
  3546. line-height:30px;
  3547. }
  3548. #u53638 {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:343px;
  3552. top:883px;
  3553. width:51px;
  3554. height:30px;
  3555. display:flex;
  3556. transition:none;
  3557. transform-origin:50% 50%;
  3558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3559. font-weight:400;
  3560. font-style:normal;
  3561. font-size:12px;
  3562. line-height:30px;
  3563. }
  3564. #u53638 .text {
  3565. position:absolute;
  3566. align-self:flex-start;
  3567. padding:0px 0px 0px 0px;
  3568. box-sizing:border-box;
  3569. width:100%;
  3570. }
  3571. #u53638_text {
  3572. border-width:0px;
  3573. word-wrap:break-word;
  3574. text-transform:none;
  3575. }
  3576. #u53639_div {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:108px;
  3582. height:30px;
  3583. background:inherit;
  3584. background-color:rgba(255, 255, 255, 0);
  3585. border-left:0px;
  3586. border-top:0px;
  3587. border-right:0px;
  3588. border-radius:0px;
  3589. border-bottom-right-radius:0px;
  3590. border-bottom-left-radius:0px;
  3591. filter:drop-shadow(none);
  3592. transition:none;
  3593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3594. font-weight:400;
  3595. font-style:normal;
  3596. font-size:12px;
  3597. line-height:30px;
  3598. }
  3599. #u53639 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:55px;
  3603. top:913px;
  3604. width:108px;
  3605. height:30px;
  3606. display:flex;
  3607. transition:none;
  3608. transform-origin:50% 50%;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. line-height:30px;
  3614. }
  3615. #u53639 .text {
  3616. position:absolute;
  3617. align-self:flex-start;
  3618. padding:0px 0px 0px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u53639_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. }
  3627. #u53640_div {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:60px;
  3633. height:30px;
  3634. background:inherit;
  3635. background-color:rgba(255, 255, 255, 0);
  3636. border-left:0px;
  3637. border-top:0px;
  3638. border-right:0px;
  3639. border-radius:0px;
  3640. border-bottom-right-radius:0px;
  3641. border-bottom-left-radius:0px;
  3642. filter:drop-shadow(none);
  3643. transition:none;
  3644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:12px;
  3648. line-height:30px;
  3649. }
  3650. #u53640 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:163px;
  3654. top:913px;
  3655. width:60px;
  3656. height:30px;
  3657. display:flex;
  3658. transition:none;
  3659. transform-origin:50% 50%;
  3660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3661. font-weight:400;
  3662. font-style:normal;
  3663. font-size:12px;
  3664. line-height:30px;
  3665. }
  3666. #u53640 .text {
  3667. position:absolute;
  3668. align-self:flex-start;
  3669. padding:0px 0px 0px 0px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u53640_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. }
  3678. #u53641_div {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:60px;
  3684. height:30px;
  3685. background:inherit;
  3686. background-color:rgba(255, 255, 255, 0);
  3687. border-left:0px;
  3688. border-top:0px;
  3689. border-right:0px;
  3690. border-radius:0px;
  3691. border-bottom-right-radius:0px;
  3692. border-bottom-left-radius:0px;
  3693. filter:drop-shadow(none);
  3694. transition:none;
  3695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3696. font-weight:400;
  3697. font-style:normal;
  3698. font-size:12px;
  3699. line-height:30px;
  3700. }
  3701. #u53641 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:223px;
  3705. top:913px;
  3706. width:60px;
  3707. height:30px;
  3708. display:flex;
  3709. transition:none;
  3710. transform-origin:50% 50%;
  3711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3712. font-weight:400;
  3713. font-style:normal;
  3714. font-size:12px;
  3715. line-height:30px;
  3716. }
  3717. #u53641 .text {
  3718. position:absolute;
  3719. align-self:flex-start;
  3720. padding:0px 0px 0px 0px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u53641_text {
  3725. border-width:0px;
  3726. word-wrap:break-word;
  3727. text-transform:none;
  3728. }
  3729. #u53642_div {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:60px;
  3735. height:30px;
  3736. background:inherit;
  3737. background-color:rgba(255, 255, 255, 0);
  3738. border-left:0px;
  3739. border-top:0px;
  3740. border-right:0px;
  3741. border-radius:0px;
  3742. border-bottom-right-radius:0px;
  3743. border-bottom-left-radius:0px;
  3744. filter:drop-shadow(none);
  3745. transition:none;
  3746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3747. font-weight:400;
  3748. font-style:normal;
  3749. font-size:12px;
  3750. line-height:30px;
  3751. }
  3752. #u53642 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:283px;
  3756. top:913px;
  3757. width:60px;
  3758. height:30px;
  3759. display:flex;
  3760. transition:none;
  3761. transform-origin:50% 50%;
  3762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3763. font-weight:400;
  3764. font-style:normal;
  3765. font-size:12px;
  3766. line-height:30px;
  3767. }
  3768. #u53642 .text {
  3769. position:absolute;
  3770. align-self:flex-start;
  3771. padding:0px 0px 0px 0px;
  3772. box-sizing:border-box;
  3773. width:100%;
  3774. }
  3775. #u53642_text {
  3776. border-width:0px;
  3777. word-wrap:break-word;
  3778. text-transform:none;
  3779. }
  3780. #u53643_div {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:0px;
  3784. top:0px;
  3785. width:51px;
  3786. height:30px;
  3787. background:inherit;
  3788. background-color:rgba(255, 255, 255, 0);
  3789. border-left:0px;
  3790. border-top:0px;
  3791. border-right:0px;
  3792. border-radius:0px;
  3793. border-bottom-right-radius:0px;
  3794. border-bottom-left-radius:0px;
  3795. filter:drop-shadow(none);
  3796. transition:none;
  3797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3798. font-weight:400;
  3799. font-style:normal;
  3800. font-size:12px;
  3801. line-height:30px;
  3802. }
  3803. #u53643 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:343px;
  3807. top:913px;
  3808. width:51px;
  3809. height:30px;
  3810. display:flex;
  3811. transition:none;
  3812. transform-origin:50% 50%;
  3813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3814. font-weight:400;
  3815. font-style:normal;
  3816. font-size:12px;
  3817. line-height:30px;
  3818. }
  3819. #u53643 .text {
  3820. position:absolute;
  3821. align-self:flex-start;
  3822. padding:0px 0px 0px 0px;
  3823. box-sizing:border-box;
  3824. width:100%;
  3825. }
  3826. #u53643_text {
  3827. border-width:0px;
  3828. word-wrap:break-word;
  3829. text-transform:none;
  3830. }
  3831. #u53644_div {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:7px;
  3837. height:7px;
  3838. background:inherit;
  3839. background-color:rgba(255, 255, 255, 0);
  3840. box-sizing:border-box;
  3841. border-width:1px;
  3842. border-style:solid;
  3843. border-color:rgba(51, 51, 51, 1);
  3844. border-right:0px;
  3845. border-bottom:0px;
  3846. border-radius:0px;
  3847. border-top-right-radius:0px;
  3848. border-bottom-left-radius:0px;
  3849. filter:drop-shadow(none);
  3850. transition:none;
  3851. }
  3852. #u53644 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:54px;
  3856. top:804px;
  3857. width:7px;
  3858. height:7px;
  3859. display:flex;
  3860. -webkit-transform:rotate(135deg);
  3861. -moz-transform:rotate(135deg);
  3862. -ms-transform:rotate(135deg);
  3863. transform:rotate(135deg);
  3864. transition:none;
  3865. transform-origin:50% 50%;
  3866. }
  3867. #u53644 .text {
  3868. position:absolute;
  3869. align-self:center;
  3870. padding:2px 2px 2px 2px;
  3871. box-sizing:border-box;
  3872. width:100%;
  3873. }
  3874. #u53644_text {
  3875. border-width:0px;
  3876. word-wrap:break-word;
  3877. text-transform:none;
  3878. visibility:hidden;
  3879. }
  3880. #u53645_div {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:0px;
  3884. top:0px;
  3885. width:7px;
  3886. height:7px;
  3887. background:inherit;
  3888. background-color:rgba(255, 255, 255, 0);
  3889. box-sizing:border-box;
  3890. border-width:1px;
  3891. border-style:solid;
  3892. border-color:rgba(51, 51, 51, 1);
  3893. border-right:0px;
  3894. border-bottom:0px;
  3895. border-radius:0px;
  3896. border-top-right-radius:0px;
  3897. border-bottom-left-radius:0px;
  3898. filter:drop-shadow(none);
  3899. transition:none;
  3900. }
  3901. #u53645 {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:54px;
  3905. top:835px;
  3906. width:7px;
  3907. height:7px;
  3908. display:flex;
  3909. -webkit-transform:rotate(135deg);
  3910. -moz-transform:rotate(135deg);
  3911. -ms-transform:rotate(135deg);
  3912. transform:rotate(135deg);
  3913. transition:none;
  3914. transform-origin:50% 50%;
  3915. }
  3916. #u53645 .text {
  3917. position:absolute;
  3918. align-self:center;
  3919. padding:2px 2px 2px 2px;
  3920. box-sizing:border-box;
  3921. width:100%;
  3922. }
  3923. #u53645_text {
  3924. border-width:0px;
  3925. word-wrap:break-word;
  3926. text-transform:none;
  3927. visibility:hidden;
  3928. }
  3929. #u53646_div {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:7px;
  3935. height:7px;
  3936. background:inherit;
  3937. background-color:rgba(255, 255, 255, 0);
  3938. box-sizing:border-box;
  3939. border-width:1px;
  3940. border-style:solid;
  3941. border-color:rgba(51, 51, 51, 1);
  3942. border-right:0px;
  3943. border-bottom:0px;
  3944. border-radius:0px;
  3945. border-top-right-radius:0px;
  3946. border-bottom-left-radius:0px;
  3947. filter:drop-shadow(none);
  3948. transition:none;
  3949. }
  3950. #u53646 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:54px;
  3954. top:864px;
  3955. width:7px;
  3956. height:7px;
  3957. display:flex;
  3958. -webkit-transform:rotate(135deg);
  3959. -moz-transform:rotate(135deg);
  3960. -ms-transform:rotate(135deg);
  3961. transform:rotate(135deg);
  3962. transition:none;
  3963. transform-origin:50% 50%;
  3964. }
  3965. #u53646 .text {
  3966. position:absolute;
  3967. align-self:center;
  3968. padding:2px 2px 2px 2px;
  3969. box-sizing:border-box;
  3970. width:100%;
  3971. }
  3972. #u53646_text {
  3973. border-width:0px;
  3974. word-wrap:break-word;
  3975. text-transform:none;
  3976. visibility:hidden;
  3977. }
  3978. #u53647 {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:0px;
  3984. height:0px;
  3985. }
  3986. #u53648_div {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:355px;
  3992. height:192px;
  3993. background:inherit;
  3994. background-color:rgba(255, 255, 255, 1);
  3995. border-radius:0px;
  3996. filter:drop-shadow(none);
  3997. transition:none;
  3998. }
  3999. #u53648 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:39px;
  4003. top:962px;
  4004. width:355px;
  4005. height:192px;
  4006. display:flex;
  4007. transition:none;
  4008. transform-origin:50% 50%;
  4009. }
  4010. #u53648 .text {
  4011. position:absolute;
  4012. align-self:center;
  4013. padding:2px 2px 2px 2px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u53648_text {
  4018. border-width:0px;
  4019. word-wrap:break-word;
  4020. text-transform:none;
  4021. visibility:hidden;
  4022. }
  4023. #u53649_div {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:0px;
  4027. top:0px;
  4028. width:103px;
  4029. height:24px;
  4030. background:inherit;
  4031. background-color:rgba(255, 255, 255, 0);
  4032. border-top:0px;
  4033. border-right:0px;
  4034. border-bottom:0px;
  4035. border-radius:0px;
  4036. border-top-left-radius:0px;
  4037. border-bottom-left-radius:0px;
  4038. filter:drop-shadow(none);
  4039. transition:none;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. font-size:10px;
  4044. color:#AAAAAA;
  4045. }
  4046. #u53649 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:274px;
  4050. top:1012px;
  4051. width:103px;
  4052. height:24px;
  4053. display:flex;
  4054. transition:none;
  4055. transform-origin:50% 50%;
  4056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4057. font-weight:400;
  4058. font-style:normal;
  4059. font-size:10px;
  4060. color:#AAAAAA;
  4061. }
  4062. #u53649 .text {
  4063. position:absolute;
  4064. align-self:flex-start;
  4065. padding:5px 0px 5px 0px;
  4066. box-sizing:border-box;
  4067. width:100%;
  4068. }
  4069. #u53649_text {
  4070. border-width:0px;
  4071. white-space:nowrap;
  4072. text-transform:none;
  4073. }
  4074. #u53650 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:0px;
  4080. height:0px;
  4081. }
  4082. #u53651_div {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:0px;
  4086. top:0px;
  4087. width:43px;
  4088. height:30px;
  4089. background:inherit;
  4090. background-color:rgba(255, 255, 255, 0);
  4091. border-top:0px;
  4092. border-right:0px;
  4093. border-bottom:0px;
  4094. border-radius:0px;
  4095. border-top-left-radius:0px;
  4096. border-bottom-left-radius:0px;
  4097. filter:drop-shadow(none);
  4098. transition:none;
  4099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:14px;
  4103. }
  4104. #u53651 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:107px;
  4108. top:1014px;
  4109. width:43px;
  4110. height:30px;
  4111. display:flex;
  4112. transition:none;
  4113. transform-origin:50% 50%;
  4114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4115. font-weight:400;
  4116. font-style:normal;
  4117. font-size:14px;
  4118. }
  4119. #u53651 .text {
  4120. position:absolute;
  4121. align-self:flex-start;
  4122. padding:0px 0px 0px 0px;
  4123. box-sizing:border-box;
  4124. width:100%;
  4125. }
  4126. #u53651_text {
  4127. border-width:0px;
  4128. white-space:nowrap;
  4129. text-transform:none;
  4130. }
  4131. #u53652_div {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:63px;
  4137. height:16px;
  4138. background:inherit;
  4139. background-color:rgba(255, 255, 255, 0);
  4140. border-top:0px;
  4141. border-right:0px;
  4142. border-bottom:0px;
  4143. border-radius:0px;
  4144. border-top-left-radius:0px;
  4145. border-bottom-left-radius:0px;
  4146. filter:drop-shadow(none);
  4147. transition:none;
  4148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4149. font-weight:400;
  4150. font-style:normal;
  4151. font-size:11px;
  4152. color:#AAAAAA;
  4153. }
  4154. #u53652 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:107px;
  4158. top:1042px;
  4159. width:63px;
  4160. height:16px;
  4161. display:flex;
  4162. transition:none;
  4163. transform-origin:50% 50%;
  4164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4165. font-weight:400;
  4166. font-style:normal;
  4167. font-size:11px;
  4168. color:#AAAAAA;
  4169. }
  4170. #u53652 .text {
  4171. position:absolute;
  4172. align-self:flex-start;
  4173. padding:0px 0px 0px 0px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u53652_text {
  4178. border-width:0px;
  4179. white-space:nowrap;
  4180. text-transform:none;
  4181. }
  4182. #u53653_div {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:43px;
  4188. height:20px;
  4189. background:inherit;
  4190. background-color:rgba(255, 255, 255, 0);
  4191. border-top:0px;
  4192. border-right:0px;
  4193. border-bottom:0px;
  4194. border-radius:0px;
  4195. border-top-left-radius:0px;
  4196. border-bottom-left-radius:0px;
  4197. filter:drop-shadow(none);
  4198. transition:none;
  4199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4200. font-weight:400;
  4201. font-style:normal;
  4202. font-size:14px;
  4203. }
  4204. #u53653 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:107px;
  4208. top:1084px;
  4209. width:43px;
  4210. height:20px;
  4211. display:flex;
  4212. transition:none;
  4213. transform-origin:50% 50%;
  4214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4215. font-weight:400;
  4216. font-style:normal;
  4217. font-size:14px;
  4218. }
  4219. #u53653 .text {
  4220. position:absolute;
  4221. align-self:flex-start;
  4222. padding:0px 0px 0px 0px;
  4223. box-sizing:border-box;
  4224. width:100%;
  4225. }
  4226. #u53653_text {
  4227. border-width:0px;
  4228. white-space:nowrap;
  4229. text-transform:none;
  4230. }
  4231. #u53654_div {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:80px;
  4237. height:26px;
  4238. background:inherit;
  4239. background-color:rgba(255, 255, 255, 0);
  4240. border-top:0px;
  4241. border-right:0px;
  4242. border-bottom:0px;
  4243. border-radius:0px;
  4244. border-top-left-radius:0px;
  4245. border-bottom-left-radius:0px;
  4246. filter:drop-shadow(none);
  4247. transition:none;
  4248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4249. font-weight:400;
  4250. font-style:normal;
  4251. font-size:11px;
  4252. color:#AAAAAA;
  4253. }
  4254. #u53654 {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:107px;
  4258. top:1112px;
  4259. width:80px;
  4260. height:26px;
  4261. display:flex;
  4262. transition:none;
  4263. transform-origin:50% 50%;
  4264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4265. font-weight:400;
  4266. font-style:normal;
  4267. font-size:11px;
  4268. color:#AAAAAA;
  4269. }
  4270. #u53654 .text {
  4271. position:absolute;
  4272. align-self:flex-start;
  4273. padding:0px 0px 0px 0px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u53654_text {
  4278. border-width:0px;
  4279. word-wrap:break-word;
  4280. text-transform:none;
  4281. }
  4282. #u53655_div {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:29px;
  4288. height:30px;
  4289. background:inherit;
  4290. background-color:rgba(255, 255, 255, 0);
  4291. border-top:0px;
  4292. border-right:0px;
  4293. border-bottom:0px;
  4294. border-radius:0px;
  4295. border-top-left-radius:0px;
  4296. border-bottom-left-radius:0px;
  4297. filter:drop-shadow(none);
  4298. transition:none;
  4299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:14px;
  4303. }
  4304. #u53655 {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:65px;
  4308. top:970px;
  4309. width:29px;
  4310. height:30px;
  4311. display:flex;
  4312. transition:none;
  4313. transform-origin:50% 50%;
  4314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4315. font-weight:400;
  4316. font-style:normal;
  4317. font-size:14px;
  4318. }
  4319. #u53655 .text {
  4320. position:absolute;
  4321. align-self:flex-start;
  4322. padding:5px 0px 5px 0px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u53655_text {
  4327. border-width:0px;
  4328. white-space:nowrap;
  4329. text-transform:none;
  4330. }
  4331. #u53656 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:0px;
  4335. top:0px;
  4336. width:0px;
  4337. height:0px;
  4338. }
  4339. #u53657 {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:84px;
  4343. top:1048px;
  4344. width:1px;
  4345. height:31px;
  4346. display:flex;
  4347. transition:none;
  4348. }
  4349. #u53657 .text {
  4350. position:absolute;
  4351. align-self:center;
  4352. padding:2px 2px 2px 2px;
  4353. box-sizing:border-box;
  4354. width:100%;
  4355. }
  4356. #u53657_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:2px;
  4362. height:32px;
  4363. }
  4364. #u53657_text {
  4365. border-width:0px;
  4366. word-wrap:break-word;
  4367. text-transform:none;
  4368. visibility:hidden;
  4369. }
  4370. #u53658 {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:0px;
  4376. height:0px;
  4377. }
  4378. #u53659_div {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:30px;
  4384. height:30px;
  4385. background:inherit;
  4386. background-color:rgba(24, 144, 255, 1);
  4387. border-radius:4px;
  4388. filter:drop-shadow(none);
  4389. transition:none;
  4390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4391. font-weight:400;
  4392. font-style:normal;
  4393. font-size:10px;
  4394. color:#FFFFFF;
  4395. }
  4396. #u53659 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:69px;
  4400. top:1084px;
  4401. width:30px;
  4402. height:30px;
  4403. display:flex;
  4404. transition:none;
  4405. transform-origin:50% 50%;
  4406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4407. font-weight:400;
  4408. font-style:normal;
  4409. font-size:10px;
  4410. color:#FFFFFF;
  4411. }
  4412. #u53659 .text {
  4413. position:absolute;
  4414. align-self:center;
  4415. padding:2px 2px 2px 2px;
  4416. box-sizing:border-box;
  4417. width:100%;
  4418. }
  4419. #u53659_text {
  4420. border-width:0px;
  4421. word-wrap:break-word;
  4422. text-transform:none;
  4423. }
  4424. #u53660 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:0px;
  4430. height:0px;
  4431. }
  4432. #u53661 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:91px;
  4436. top:1106px;
  4437. width:9px;
  4438. height:9px;
  4439. display:flex;
  4440. transition:none;
  4441. }
  4442. #u53661 .text {
  4443. position:absolute;
  4444. align-self:center;
  4445. padding:2px 2px 2px 2px;
  4446. box-sizing:border-box;
  4447. width:100%;
  4448. }
  4449. #u53661_img {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:0px;
  4453. top:0px;
  4454. width:9px;
  4455. height:9px;
  4456. }
  4457. #u53661_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. visibility:hidden;
  4462. }
  4463. #u53662 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:93px;
  4467. top:1110px;
  4468. width:5px;
  4469. height:1px;
  4470. display:flex;
  4471. transition:none;
  4472. }
  4473. #u53662 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 2px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u53662_img {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:5px;
  4486. height:1px;
  4487. }
  4488. #u53662_text {
  4489. border-width:0px;
  4490. word-wrap:break-word;
  4491. text-transform:none;
  4492. visibility:hidden;
  4493. }
  4494. #u53663 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:0px;
  4500. height:0px;
  4501. }
  4502. #u53664_div {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:0px;
  4506. top:0px;
  4507. width:30px;
  4508. height:30px;
  4509. background:inherit;
  4510. background-color:rgba(24, 144, 255, 1);
  4511. border-radius:4px;
  4512. filter:drop-shadow(none);
  4513. transition:none;
  4514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:12px;
  4518. color:#FFFFFF;
  4519. }
  4520. #u53664 {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:69px;
  4524. top:1014px;
  4525. width:30px;
  4526. height:30px;
  4527. display:flex;
  4528. transition:none;
  4529. transform-origin:50% 50%;
  4530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4531. font-weight:400;
  4532. font-style:normal;
  4533. font-size:12px;
  4534. color:#FFFFFF;
  4535. }
  4536. #u53664 .text {
  4537. position:absolute;
  4538. align-self:center;
  4539. padding:2px 2px 2px 2px;
  4540. box-sizing:border-box;
  4541. width:100%;
  4542. }
  4543. #u53664_text {
  4544. border-width:0px;
  4545. word-wrap:break-word;
  4546. text-transform:none;
  4547. }
  4548. #u53665 {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:0px;
  4554. height:0px;
  4555. }
  4556. #u53666 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:91px;
  4560. top:1036px;
  4561. width:9px;
  4562. height:9px;
  4563. display:flex;
  4564. transition:none;
  4565. }
  4566. #u53666 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 2px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u53666_img {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:9px;
  4579. height:9px;
  4580. }
  4581. #u53666_text {
  4582. border-width:0px;
  4583. word-wrap:break-word;
  4584. text-transform:none;
  4585. visibility:hidden;
  4586. }
  4587. #u53667 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:93px;
  4591. top:1039px;
  4592. width:5px;
  4593. height:4px;
  4594. display:flex;
  4595. transition:none;
  4596. }
  4597. #u53667 .text {
  4598. position:absolute;
  4599. align-self:center;
  4600. padding:2px 2px 2px 2px;
  4601. box-sizing:border-box;
  4602. width:100%;
  4603. }
  4604. #u53667_img {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:5px;
  4610. height:4px;
  4611. }
  4612. #u53667_text {
  4613. border-width:0px;
  4614. word-wrap:break-word;
  4615. text-transform:none;
  4616. visibility:hidden;
  4617. }
  4618. #u53668_div {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:0px;
  4622. top:0px;
  4623. width:325px;
  4624. height:50px;
  4625. background:inherit;
  4626. background-color:rgba(255, 255, 255, 0);
  4627. border-left:0px;
  4628. border-top:0px;
  4629. border-right:0px;
  4630. border-radius:0px;
  4631. border-bottom-right-radius:0px;
  4632. border-bottom-left-radius:0px;
  4633. filter:drop-shadow(none);
  4634. transition:none;
  4635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4636. font-weight:400;
  4637. font-style:normal;
  4638. font-size:12px;
  4639. line-height:25px;
  4640. }
  4641. #u53668 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:56px;
  4645. top:147px;
  4646. width:325px;
  4647. height:50px;
  4648. display:flex;
  4649. transition:none;
  4650. transform-origin:50% 50%;
  4651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4652. font-weight:400;
  4653. font-style:normal;
  4654. font-size:12px;
  4655. line-height:25px;
  4656. }
  4657. #u53668 .text {
  4658. position:absolute;
  4659. align-self:flex-start;
  4660. padding:0px 0px 0px 0px;
  4661. box-sizing:border-box;
  4662. width:100%;
  4663. }
  4664. #u53668_text {
  4665. border-width:0px;
  4666. word-wrap:break-word;
  4667. text-transform:none;
  4668. }
  4669. #u53669_div {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:0px;
  4673. top:0px;
  4674. width:97px;
  4675. height:25px;
  4676. background:inherit;
  4677. background-color:rgba(255, 255, 255, 0);
  4678. border-radius:0px;
  4679. filter:drop-shadow(none);
  4680. transition:none;
  4681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4682. font-weight:400;
  4683. font-style:normal;
  4684. font-size:12px;
  4685. color:#B8741A;
  4686. line-height:25px;
  4687. }
  4688. #u53669 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:284px;
  4692. top:172px;
  4693. width:97px;
  4694. height:25px;
  4695. display:flex;
  4696. transition:none;
  4697. transform-origin:50% 50%;
  4698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4699. font-weight:400;
  4700. font-style:normal;
  4701. font-size:12px;
  4702. color:#B8741A;
  4703. line-height:25px;
  4704. }
  4705. #u53669 .text {
  4706. position:absolute;
  4707. align-self:flex-start;
  4708. padding:0px 0px 0px 0px;
  4709. box-sizing:border-box;
  4710. width:100%;
  4711. }
  4712. #u53669_text {
  4713. border-width:0px;
  4714. white-space:nowrap;
  4715. text-transform:none;
  4716. }
  4717. #u53670 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:906px;
  4721. top:0px;
  4722. width:433px;
  4723. height:865px;
  4724. }
  4725. #u53671 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:433px;
  4731. height:865px;
  4732. display:flex;
  4733. transition:none;
  4734. }
  4735. #u53671 .text {
  4736. position:absolute;
  4737. align-self:center;
  4738. padding:2px 2px 2px 2px;
  4739. box-sizing:border-box;
  4740. width:100%;
  4741. }
  4742. #u53671_img {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:433px;
  4748. height:865px;
  4749. }
  4750. #u53671_text {
  4751. border-width:0px;
  4752. word-wrap:break-word;
  4753. text-transform:none;
  4754. visibility:hidden;
  4755. }
  4756. #u53672_div {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:375px;
  4762. height:40px;
  4763. background:inherit;
  4764. background-color:rgba(255, 255, 255, 1);
  4765. box-sizing:border-box;
  4766. border-width:1px;
  4767. border-style:solid;
  4768. border-color:rgba(215, 215, 215, 1);
  4769. border-left:0px;
  4770. border-top:0px;
  4771. border-right:0px;
  4772. border-radius:0px;
  4773. border-bottom-right-radius:0px;
  4774. border-bottom-left-radius:0px;
  4775. filter:drop-shadow(none);
  4776. transition:none;
  4777. }
  4778. #u53672 {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:29px;
  4782. top:67px;
  4783. width:375px;
  4784. height:40px;
  4785. display:flex;
  4786. transition:none;
  4787. transform-origin:50% 50%;
  4788. }
  4789. #u53672 .text {
  4790. position:absolute;
  4791. align-self:center;
  4792. padding:2px 2px 2px 2px;
  4793. box-sizing:border-box;
  4794. width:100%;
  4795. }
  4796. #u53672_text {
  4797. border-width:0px;
  4798. word-wrap:break-word;
  4799. text-transform:none;
  4800. visibility:hidden;
  4801. }
  4802. #u53673 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:0px;
  4808. height:0px;
  4809. }
  4810. #u53674_div {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:88px;
  4816. height:32px;
  4817. background:inherit;
  4818. background-color:rgba(255, 255, 255, 1);
  4819. box-sizing:border-box;
  4820. border-width:1px;
  4821. border-style:solid;
  4822. border-color:rgba(242, 242, 242, 1);
  4823. border-radius:33px;
  4824. filter:drop-shadow(none);
  4825. transition:none;
  4826. }
  4827. #u53674 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:309px;
  4831. top:71px;
  4832. width:88px;
  4833. height:32px;
  4834. display:flex;
  4835. transition:none;
  4836. transform-origin:50% 50%;
  4837. }
  4838. #u53674 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:2px 2px 2px 2px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u53674_text {
  4846. border-width:0px;
  4847. word-wrap:break-word;
  4848. text-transform:none;
  4849. visibility:hidden;
  4850. }
  4851. #u53675 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:0px;
  4857. height:0px;
  4858. }
  4859. #u53676 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:372px;
  4863. top:78px;
  4864. width:18px;
  4865. height:18px;
  4866. display:flex;
  4867. transition:none;
  4868. }
  4869. #u53676 .text {
  4870. position:absolute;
  4871. align-self:center;
  4872. padding:2px 2px 2px 2px;
  4873. box-sizing:border-box;
  4874. width:100%;
  4875. }
  4876. #u53676_img {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:18px;
  4882. height:18px;
  4883. }
  4884. #u53676_text {
  4885. border-width:0px;
  4886. word-wrap:break-word;
  4887. text-transform:none;
  4888. visibility:hidden;
  4889. }
  4890. #u53677 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:378px;
  4894. top:84px;
  4895. width:6px;
  4896. height:6px;
  4897. display:flex;
  4898. transition:none;
  4899. }
  4900. #u53677 .text {
  4901. position:absolute;
  4902. align-self:center;
  4903. padding:2px 2px 2px 2px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u53677_img {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:6px;
  4913. height:6px;
  4914. }
  4915. #u53677_text {
  4916. border-width:0px;
  4917. word-wrap:break-word;
  4918. text-transform:none;
  4919. visibility:hidden;
  4920. }
  4921. #u53678 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:0px;
  4927. height:0px;
  4928. }
  4929. #u53679 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:323px;
  4933. top:85px;
  4934. width:5px;
  4935. height:5px;
  4936. display:flex;
  4937. transition:none;
  4938. }
  4939. #u53679 .text {
  4940. position:absolute;
  4941. align-self:center;
  4942. padding:2px 2px 2px 2px;
  4943. box-sizing:border-box;
  4944. width:100%;
  4945. }
  4946. #u53679_img {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:5px;
  4952. height:5px;
  4953. }
  4954. #u53679_text {
  4955. border-width:0px;
  4956. word-wrap:break-word;
  4957. text-transform:none;
  4958. visibility:hidden;
  4959. }
  4960. #u53680 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:339px;
  4964. top:85px;
  4965. width:5px;
  4966. height:5px;
  4967. display:flex;
  4968. transition:none;
  4969. }
  4970. #u53680 .text {
  4971. position:absolute;
  4972. align-self:center;
  4973. padding:2px 2px 2px 2px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u53680_img {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:0px;
  4981. top:0px;
  4982. width:5px;
  4983. height:5px;
  4984. }
  4985. #u53680_text {
  4986. border-width:0px;
  4987. word-wrap:break-word;
  4988. text-transform:none;
  4989. visibility:hidden;
  4990. }
  4991. #u53681 {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:330px;
  4995. top:84px;
  4996. width:7px;
  4997. height:7px;
  4998. display:flex;
  4999. transition:none;
  5000. }
  5001. #u53681 .text {
  5002. position:absolute;
  5003. align-self:center;
  5004. padding:2px 2px 2px 2px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u53681_img {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:7px;
  5014. height:7px;
  5015. }
  5016. #u53681_text {
  5017. border-width:0px;
  5018. word-wrap:break-word;
  5019. text-transform:none;
  5020. visibility:hidden;
  5021. }
  5022. #u53682 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:347px;
  5026. top:87px;
  5027. width:18px;
  5028. height:1px;
  5029. display:flex;
  5030. -webkit-transform:rotate(90deg);
  5031. -moz-transform:rotate(90deg);
  5032. -ms-transform:rotate(90deg);
  5033. transform:rotate(90deg);
  5034. transition:none;
  5035. }
  5036. #u53682 .text {
  5037. position:absolute;
  5038. align-self:center;
  5039. padding:2px 2px 2px 2px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u53682_img {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:19px;
  5049. height:2px;
  5050. }
  5051. #u53682_text {
  5052. border-width:0px;
  5053. word-wrap:break-word;
  5054. text-transform:none;
  5055. visibility:hidden;
  5056. }
  5057. #u53683 {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:29px;
  5061. top:24px;
  5062. width:375px;
  5063. height:44px;
  5064. display:flex;
  5065. transition:none;
  5066. }
  5067. #u53683 .text {
  5068. position:absolute;
  5069. align-self:center;
  5070. padding:2px 2px 2px 2px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u53683_img {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:375px;
  5080. height:44px;
  5081. }
  5082. #u53683_text {
  5083. border-width:0px;
  5084. word-wrap:break-word;
  5085. text-transform:none;
  5086. visibility:hidden;
  5087. }
  5088. #u53684_div {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:0px;
  5092. top:0px;
  5093. width:375px;
  5094. height:50px;
  5095. background:inherit;
  5096. background-color:rgba(255, 255, 255, 1);
  5097. box-sizing:border-box;
  5098. border-width:1px;
  5099. border-style:solid;
  5100. border-color:rgba(242, 242, 242, 1);
  5101. border-radius:26px;
  5102. border-top-left-radius:0px;
  5103. border-top-right-radius:0px;
  5104. filter:drop-shadow(none);
  5105. transition:none;
  5106. }
  5107. #u53684 {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:29px;
  5111. top:788px;
  5112. width:375px;
  5113. height:50px;
  5114. display:flex;
  5115. transition:none;
  5116. transform-origin:50% 50%;
  5117. }
  5118. #u53684 .text {
  5119. position:absolute;
  5120. align-self:center;
  5121. padding:2px 2px 2px 2px;
  5122. box-sizing:border-box;
  5123. width:100%;
  5124. }
  5125. #u53684_text {
  5126. border-width:0px;
  5127. word-wrap:break-word;
  5128. text-transform:none;
  5129. visibility:hidden;
  5130. }
  5131. #u53685 {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:0px;
  5135. top:0px;
  5136. width:0px;
  5137. height:0px;
  5138. }
  5139. #u53686 {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:69px;
  5143. top:792px;
  5144. width:24px;
  5145. height:24px;
  5146. display:flex;
  5147. transition:none;
  5148. font-size:8px;
  5149. }
  5150. #u53686 .text {
  5151. position:absolute;
  5152. align-self:center;
  5153. padding:2px 2px 2px 2px;
  5154. box-sizing:border-box;
  5155. width:100%;
  5156. }
  5157. #u53686_img {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:24px;
  5163. height:24px;
  5164. }
  5165. #u53686_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. }
  5170. #u53687_div {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:25px;
  5176. height:17px;
  5177. background:inherit;
  5178. background-color:rgba(255, 255, 255, 0);
  5179. border-radius:0px;
  5180. filter:drop-shadow(none);
  5181. transition:none;
  5182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5183. font-weight:400;
  5184. font-style:normal;
  5185. font-size:12px;
  5186. }
  5187. #u53687 {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:69px;
  5191. top:817px;
  5192. width:25px;
  5193. height:17px;
  5194. display:flex;
  5195. transition:none;
  5196. transform-origin:50% 50%;
  5197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:12px;
  5201. }
  5202. #u53687 .text {
  5203. position:absolute;
  5204. align-self:flex-start;
  5205. padding:0px 0px 0px 0px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u53687_text {
  5210. border-width:0px;
  5211. white-space:nowrap;
  5212. text-transform:none;
  5213. }
  5214. #u53688 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:0px;
  5220. height:0px;
  5221. }
  5222. #u53689 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:339px;
  5226. top:794px;
  5227. width:24px;
  5228. height:24px;
  5229. display:flex;
  5230. transition:none;
  5231. font-size:8px;
  5232. }
  5233. #u53689 .text {
  5234. position:absolute;
  5235. align-self:center;
  5236. padding:2px 2px 2px 2px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u53689_img {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:24px;
  5246. height:24px;
  5247. }
  5248. #u53689_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. }
  5253. #u53690_div {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:25px;
  5259. height:17px;
  5260. background:inherit;
  5261. background-color:rgba(255, 255, 255, 0);
  5262. border-radius:0px;
  5263. filter:drop-shadow(none);
  5264. transition:none;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:12px;
  5269. }
  5270. #u53690 {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:339px;
  5274. top:819px;
  5275. width:25px;
  5276. height:17px;
  5277. display:flex;
  5278. transition:none;
  5279. transform-origin:50% 50%;
  5280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:12px;
  5284. }
  5285. #u53690 .text {
  5286. position:absolute;
  5287. align-self:flex-start;
  5288. padding:0px 0px 0px 0px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u53690_text {
  5293. border-width:0px;
  5294. white-space:nowrap;
  5295. text-transform:none;
  5296. }
  5297. #u53691_div {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:375px;
  5303. height:681px;
  5304. background:inherit;
  5305. background-color:rgba(242, 242, 242, 0.4627450980392157);
  5306. border-radius:0px;
  5307. filter:drop-shadow(none);
  5308. transition:none;
  5309. }
  5310. #u53691 {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:29px;
  5314. top:107px;
  5315. width:375px;
  5316. height:681px;
  5317. display:flex;
  5318. transition:none;
  5319. transform-origin:50% 50%;
  5320. }
  5321. #u53691 .text {
  5322. position:absolute;
  5323. align-self:center;
  5324. padding:2px 2px 2px 2px;
  5325. box-sizing:border-box;
  5326. width:100%;
  5327. }
  5328. #u53691_text {
  5329. border-width:0px;
  5330. word-wrap:break-word;
  5331. text-transform:none;
  5332. visibility:hidden;
  5333. }
  5334. #u53692 {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:0px;
  5340. height:0px;
  5341. }
  5342. #u53693 {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:251px;
  5346. top:792px;
  5347. width:24px;
  5348. height:24px;
  5349. display:flex;
  5350. transition:none;
  5351. font-size:8px;
  5352. }
  5353. #u53693 .text {
  5354. position:absolute;
  5355. align-self:center;
  5356. padding:2px 2px 2px 2px;
  5357. box-sizing:border-box;
  5358. width:100%;
  5359. }
  5360. #u53693_img {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:0px;
  5364. top:0px;
  5365. width:24px;
  5366. height:24px;
  5367. }
  5368. #u53693_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. }
  5373. #u53694_div {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:37px;
  5379. height:17px;
  5380. background:inherit;
  5381. background-color:rgba(255, 255, 255, 0);
  5382. border-radius:0px;
  5383. filter:drop-shadow(none);
  5384. transition:none;
  5385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5386. font-weight:400;
  5387. font-style:normal;
  5388. font-size:12px;
  5389. }
  5390. #u53694 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:245px;
  5394. top:817px;
  5395. width:37px;
  5396. height:17px;
  5397. display:flex;
  5398. transition:none;
  5399. transform-origin:50% 50%;
  5400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:12px;
  5404. }
  5405. #u53694 .text {
  5406. position:absolute;
  5407. align-self:flex-start;
  5408. padding:0px 0px 0px 0px;
  5409. box-sizing:border-box;
  5410. width:100%;
  5411. }
  5412. #u53694_text {
  5413. border-width:0px;
  5414. white-space:nowrap;
  5415. text-transform:none;
  5416. }
  5417. #u53695 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:0px;
  5423. height:0px;
  5424. }
  5425. #u53696 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:157px;
  5429. top:792px;
  5430. width:24px;
  5431. height:24px;
  5432. display:flex;
  5433. transition:none;
  5434. font-size:8px;
  5435. }
  5436. #u53696 .text {
  5437. position:absolute;
  5438. align-self:center;
  5439. padding:2px 2px 2px 2px;
  5440. box-sizing:border-box;
  5441. width:100%;
  5442. }
  5443. #u53696_img {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:0px;
  5447. top:0px;
  5448. width:24px;
  5449. height:24px;
  5450. }
  5451. #u53696_text {
  5452. border-width:0px;
  5453. word-wrap:break-word;
  5454. text-transform:none;
  5455. }
  5456. #u53697_div {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:37px;
  5462. height:17px;
  5463. background:inherit;
  5464. background-color:rgba(255, 255, 255, 0);
  5465. border-radius:0px;
  5466. filter:drop-shadow(none);
  5467. transition:none;
  5468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. font-size:12px;
  5472. }
  5473. #u53697 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:151px;
  5477. top:817px;
  5478. width:37px;
  5479. height:17px;
  5480. display:flex;
  5481. transition:none;
  5482. transform-origin:50% 50%;
  5483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5484. font-weight:400;
  5485. font-style:normal;
  5486. font-size:12px;
  5487. }
  5488. #u53697 .text {
  5489. position:absolute;
  5490. align-self:flex-start;
  5491. padding:0px 0px 0px 0px;
  5492. box-sizing:border-box;
  5493. width:100%;
  5494. }
  5495. #u53697_text {
  5496. border-width:0px;
  5497. white-space:nowrap;
  5498. text-transform:none;
  5499. }
  5500. #u53698_div {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:375px;
  5506. height:732px;
  5507. background:inherit;
  5508. background-color:rgba(242, 242, 242, 0.996078431372549);
  5509. border-top:0px;
  5510. border-radius:28px;
  5511. border-top-left-radius:0px;
  5512. border-top-right-radius:0px;
  5513. filter:drop-shadow(none);
  5514. transition:none;
  5515. }
  5516. #u53698 {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:935px;
  5520. top:107px;
  5521. width:375px;
  5522. height:732px;
  5523. display:flex;
  5524. transition:none;
  5525. transform-origin:50% 50%;
  5526. }
  5527. #u53698 .text {
  5528. position:absolute;
  5529. align-self:center;
  5530. padding:2px 2px 2px 2px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u53698_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. visibility:hidden;
  5539. }
  5540. #u53699_div {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:375px;
  5546. height:100px;
  5547. background:inherit;
  5548. background-color:rgba(255, 255, 255, 1);
  5549. border-left:0px;
  5550. border-top:0px;
  5551. border-right:0px;
  5552. border-radius:0px;
  5553. border-bottom-right-radius:0px;
  5554. border-bottom-left-radius:0px;
  5555. filter:drop-shadow(none);
  5556. transition:none;
  5557. }
  5558. #u53699 {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:935px;
  5562. top:107px;
  5563. width:375px;
  5564. height:100px;
  5565. display:flex;
  5566. transition:none;
  5567. transform-origin:50% 50%;
  5568. }
  5569. #u53699 .text {
  5570. position:absolute;
  5571. align-self:center;
  5572. padding:2px 2px 2px 2px;
  5573. box-sizing:border-box;
  5574. width:100%;
  5575. }
  5576. #u53699_text {
  5577. border-width:0px;
  5578. word-wrap:break-word;
  5579. text-transform:none;
  5580. visibility:hidden;
  5581. }
  5582. #u53700_div {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:0px;
  5587. width:375px;
  5588. height:40px;
  5589. background:inherit;
  5590. background-color:rgba(255, 255, 255, 1);
  5591. box-sizing:border-box;
  5592. border-width:1px;
  5593. border-style:solid;
  5594. border-color:rgba(215, 215, 215, 1);
  5595. border-left:0px;
  5596. border-top:0px;
  5597. border-right:0px;
  5598. border-radius:0px;
  5599. border-bottom-right-radius:0px;
  5600. border-bottom-left-radius:0px;
  5601. filter:drop-shadow(none);
  5602. transition:none;
  5603. }
  5604. #u53700 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:935px;
  5608. top:67px;
  5609. width:375px;
  5610. height:40px;
  5611. display:flex;
  5612. transition:none;
  5613. transform-origin:50% 50%;
  5614. }
  5615. #u53700 .text {
  5616. position:absolute;
  5617. align-self:center;
  5618. padding:2px 2px 2px 2px;
  5619. box-sizing:border-box;
  5620. width:100%;
  5621. }
  5622. #u53700_text {
  5623. border-width:0px;
  5624. word-wrap:break-word;
  5625. text-transform:none;
  5626. visibility:hidden;
  5627. }
  5628. #u53701 {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:935px;
  5632. top:24px;
  5633. width:375px;
  5634. height:44px;
  5635. display:flex;
  5636. transition:none;
  5637. }
  5638. #u53701 .text {
  5639. position:absolute;
  5640. align-self:center;
  5641. padding:2px 2px 2px 2px;
  5642. box-sizing:border-box;
  5643. width:100%;
  5644. }
  5645. #u53701_img {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:375px;
  5651. height:44px;
  5652. }
  5653. #u53701_text {
  5654. border-width:0px;
  5655. word-wrap:break-word;
  5656. text-transform:none;
  5657. visibility:hidden;
  5658. }
  5659. #u53702 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:0px;
  5665. height:0px;
  5666. }
  5667. #u53703_div {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:88px;
  5673. height:32px;
  5674. background:inherit;
  5675. background-color:rgba(255, 255, 255, 1);
  5676. box-sizing:border-box;
  5677. border-width:1px;
  5678. border-style:solid;
  5679. border-color:rgba(242, 242, 242, 1);
  5680. border-radius:33px;
  5681. filter:drop-shadow(none);
  5682. transition:none;
  5683. }
  5684. #u53703 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:1215px;
  5688. top:71px;
  5689. width:88px;
  5690. height:32px;
  5691. display:flex;
  5692. transition:none;
  5693. transform-origin:50% 50%;
  5694. }
  5695. #u53703 .text {
  5696. position:absolute;
  5697. align-self:center;
  5698. padding:2px 2px 2px 2px;
  5699. box-sizing:border-box;
  5700. width:100%;
  5701. }
  5702. #u53703_text {
  5703. border-width:0px;
  5704. word-wrap:break-word;
  5705. text-transform:none;
  5706. visibility:hidden;
  5707. }
  5708. #u53704 {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:0px;
  5714. height:0px;
  5715. }
  5716. #u53705 {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:1278px;
  5720. top:78px;
  5721. width:18px;
  5722. height:18px;
  5723. display:flex;
  5724. transition:none;
  5725. }
  5726. #u53705 .text {
  5727. position:absolute;
  5728. align-self:center;
  5729. padding:2px 2px 2px 2px;
  5730. box-sizing:border-box;
  5731. width:100%;
  5732. }
  5733. #u53705_img {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:18px;
  5739. height:18px;
  5740. }
  5741. #u53705_text {
  5742. border-width:0px;
  5743. word-wrap:break-word;
  5744. text-transform:none;
  5745. visibility:hidden;
  5746. }
  5747. #u53706 {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:1284px;
  5751. top:84px;
  5752. width:6px;
  5753. height:6px;
  5754. display:flex;
  5755. transition:none;
  5756. }
  5757. #u53706 .text {
  5758. position:absolute;
  5759. align-self:center;
  5760. padding:2px 2px 2px 2px;
  5761. box-sizing:border-box;
  5762. width:100%;
  5763. }
  5764. #u53706_img {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:0px;
  5768. top:0px;
  5769. width:6px;
  5770. height:6px;
  5771. }
  5772. #u53706_text {
  5773. border-width:0px;
  5774. word-wrap:break-word;
  5775. text-transform:none;
  5776. visibility:hidden;
  5777. }
  5778. #u53707 {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:0px;
  5784. height:0px;
  5785. }
  5786. #u53708 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:1229px;
  5790. top:85px;
  5791. width:5px;
  5792. height:5px;
  5793. display:flex;
  5794. transition:none;
  5795. }
  5796. #u53708 .text {
  5797. position:absolute;
  5798. align-self:center;
  5799. padding:2px 2px 2px 2px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u53708_img {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:5px;
  5809. height:5px;
  5810. }
  5811. #u53708_text {
  5812. border-width:0px;
  5813. word-wrap:break-word;
  5814. text-transform:none;
  5815. visibility:hidden;
  5816. }
  5817. #u53709 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:1245px;
  5821. top:85px;
  5822. width:5px;
  5823. height:5px;
  5824. display:flex;
  5825. transition:none;
  5826. }
  5827. #u53709 .text {
  5828. position:absolute;
  5829. align-self:center;
  5830. padding:2px 2px 2px 2px;
  5831. box-sizing:border-box;
  5832. width:100%;
  5833. }
  5834. #u53709_img {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:5px;
  5840. height:5px;
  5841. }
  5842. #u53709_text {
  5843. border-width:0px;
  5844. word-wrap:break-word;
  5845. text-transform:none;
  5846. visibility:hidden;
  5847. }
  5848. #u53710 {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:1236px;
  5852. top:84px;
  5853. width:7px;
  5854. height:7px;
  5855. display:flex;
  5856. transition:none;
  5857. }
  5858. #u53710 .text {
  5859. position:absolute;
  5860. align-self:center;
  5861. padding:2px 2px 2px 2px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u53710_img {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:7px;
  5871. height:7px;
  5872. }
  5873. #u53710_text {
  5874. border-width:0px;
  5875. word-wrap:break-word;
  5876. text-transform:none;
  5877. visibility:hidden;
  5878. }
  5879. #u53711 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:1253px;
  5883. top:87px;
  5884. width:18px;
  5885. height:1px;
  5886. display:flex;
  5887. -webkit-transform:rotate(90deg);
  5888. -moz-transform:rotate(90deg);
  5889. -ms-transform:rotate(90deg);
  5890. transform:rotate(90deg);
  5891. transition:none;
  5892. }
  5893. #u53711 .text {
  5894. position:absolute;
  5895. align-self:center;
  5896. padding:2px 2px 2px 2px;
  5897. box-sizing:border-box;
  5898. width:100%;
  5899. }
  5900. #u53711_img {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:0px;
  5904. top:0px;
  5905. width:19px;
  5906. height:2px;
  5907. }
  5908. #u53711_text {
  5909. border-width:0px;
  5910. word-wrap:break-word;
  5911. text-transform:none;
  5912. visibility:hidden;
  5913. }
  5914. #u53712_div {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:33px;
  5920. height:22px;
  5921. background:inherit;
  5922. background-color:rgba(255, 255, 255, 0);
  5923. border-radius:0px;
  5924. filter:drop-shadow(none);
  5925. transition:none;
  5926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:16px;
  5930. color:#000000;
  5931. }
  5932. #u53712 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:970px;
  5936. top:76px;
  5937. width:33px;
  5938. height:22px;
  5939. display:flex;
  5940. transition:none;
  5941. transform-origin:50% 50%;
  5942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:16px;
  5946. color:#000000;
  5947. }
  5948. #u53712 .text {
  5949. position:absolute;
  5950. align-self:flex-start;
  5951. padding:0px 0px 0px 0px;
  5952. box-sizing:border-box;
  5953. width:100%;
  5954. }
  5955. #u53712_text {
  5956. border-width:0px;
  5957. white-space:nowrap;
  5958. text-transform:none;
  5959. }
  5960. #u53713_div {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:12px;
  5966. height:12px;
  5967. background:inherit;
  5968. background-color:rgba(255, 255, 255, 0);
  5969. box-sizing:border-box;
  5970. border-width:2px;
  5971. border-style:solid;
  5972. border-color:rgba(51, 51, 51, 1);
  5973. border-right:0px;
  5974. border-bottom:0px;
  5975. border-radius:0px;
  5976. border-top-right-radius:0px;
  5977. border-bottom-left-radius:0px;
  5978. filter:drop-shadow(none);
  5979. transition:none;
  5980. }
  5981. #u53713 {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:950px;
  5985. top:81px;
  5986. width:12px;
  5987. height:12px;
  5988. display:flex;
  5989. -webkit-transform:rotate(315deg);
  5990. -moz-transform:rotate(315deg);
  5991. -ms-transform:rotate(315deg);
  5992. transform:rotate(315deg);
  5993. transition:none;
  5994. transform-origin:50% 50%;
  5995. }
  5996. #u53713 .text {
  5997. position:absolute;
  5998. align-self:center;
  5999. padding:2px 2px 2px 2px;
  6000. box-sizing:border-box;
  6001. width:100%;
  6002. }
  6003. #u53713_text {
  6004. border-width:0px;
  6005. word-wrap:break-word;
  6006. text-transform:none;
  6007. visibility:hidden;
  6008. }
  6009. #u53714 {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:0px;
  6013. top:0px;
  6014. width:0px;
  6015. height:0px;
  6016. }
  6017. #u53715 {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:945px;
  6021. top:217px;
  6022. width:355px;
  6023. height:232px;
  6024. display:flex;
  6025. transition:none;
  6026. }
  6027. #u53715 .text {
  6028. position:absolute;
  6029. align-self:center;
  6030. padding:2px 2px 2px 2px;
  6031. box-sizing:border-box;
  6032. width:100%;
  6033. }
  6034. #u53715_img {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:0px;
  6038. top:0px;
  6039. width:355px;
  6040. height:232px;
  6041. }
  6042. #u53715_text {
  6043. border-width:0px;
  6044. word-wrap:break-word;
  6045. text-transform:none;
  6046. visibility:hidden;
  6047. }
  6048. #u53716_div {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:0px;
  6052. top:0px;
  6053. width:325px;
  6054. height:210px;
  6055. background:inherit;
  6056. background-color:rgba(255, 255, 255, 0);
  6057. border-left:0px;
  6058. border-top:0px;
  6059. border-right:0px;
  6060. border-radius:0px;
  6061. border-bottom-right-radius:0px;
  6062. border-bottom-left-radius:0px;
  6063. filter:drop-shadow(none);
  6064. transition:none;
  6065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:12px;
  6069. line-height:30px;
  6070. }
  6071. #u53716 {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:961px;
  6075. top:228px;
  6076. width:325px;
  6077. height:210px;
  6078. display:flex;
  6079. transition:none;
  6080. transform-origin:50% 50%;
  6081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6082. font-weight:400;
  6083. font-style:normal;
  6084. font-size:12px;
  6085. line-height:30px;
  6086. }
  6087. #u53716 .text {
  6088. position:absolute;
  6089. align-self:flex-start;
  6090. padding:0px 0px 0px 0px;
  6091. box-sizing:border-box;
  6092. width:100%;
  6093. }
  6094. #u53716_text {
  6095. border-width:0px;
  6096. word-wrap:break-word;
  6097. text-transform:none;
  6098. }
  6099. #u53717_div {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:0px;
  6103. top:0px;
  6104. width:132px;
  6105. height:30px;
  6106. background:inherit;
  6107. background-color:rgba(255, 255, 255, 0);
  6108. border-left:0px;
  6109. border-top:0px;
  6110. border-right:0px;
  6111. border-radius:0px;
  6112. border-bottom-right-radius:0px;
  6113. border-bottom-left-radius:0px;
  6114. filter:drop-shadow(none);
  6115. transition:none;
  6116. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6117. font-weight:500;
  6118. font-style:normal;
  6119. font-size:14px;
  6120. line-height:30px;
  6121. }
  6122. #u53717 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:962px;
  6126. top:117px;
  6127. width:132px;
  6128. height:30px;
  6129. display:flex;
  6130. transition:none;
  6131. transform-origin:50% 50%;
  6132. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6133. font-weight:500;
  6134. font-style:normal;
  6135. font-size:14px;
  6136. line-height:30px;
  6137. }
  6138. #u53717 .text {
  6139. position:absolute;
  6140. align-self:flex-start;
  6141. padding:0px 0px 0px 0px;
  6142. box-sizing:border-box;
  6143. width:100%;
  6144. }
  6145. #u53717_text {
  6146. border-width:0px;
  6147. white-space:nowrap;
  6148. text-transform:none;
  6149. }
  6150. #u53718_div {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:325px;
  6156. height:50px;
  6157. background:inherit;
  6158. background-color:rgba(255, 255, 255, 0);
  6159. border-left:0px;
  6160. border-top:0px;
  6161. border-right:0px;
  6162. border-radius:0px;
  6163. border-bottom-right-radius:0px;
  6164. border-bottom-left-radius:0px;
  6165. filter:drop-shadow(none);
  6166. transition:none;
  6167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6168. font-weight:400;
  6169. font-style:normal;
  6170. font-size:12px;
  6171. line-height:25px;
  6172. }
  6173. #u53718 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:962px;
  6177. top:147px;
  6178. width:325px;
  6179. height:50px;
  6180. display:flex;
  6181. transition:none;
  6182. transform-origin:50% 50%;
  6183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:12px;
  6187. line-height:25px;
  6188. }
  6189. #u53718 .text {
  6190. position:absolute;
  6191. align-self:flex-start;
  6192. padding:0px 0px 0px 0px;
  6193. box-sizing:border-box;
  6194. width:100%;
  6195. }
  6196. #u53718_text {
  6197. border-width:0px;
  6198. word-wrap:break-word;
  6199. text-transform:none;
  6200. }
  6201. #u53719 {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:0px;
  6207. height:0px;
  6208. }
  6209. #u53720_div {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:355px;
  6215. height:192px;
  6216. background:inherit;
  6217. background-color:rgba(255, 255, 255, 1);
  6218. border-radius:0px;
  6219. filter:drop-shadow(none);
  6220. transition:none;
  6221. }
  6222. #u53720 {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:945px;
  6226. top:509px;
  6227. width:355px;
  6228. height:192px;
  6229. display:flex;
  6230. transition:none;
  6231. transform-origin:50% 50%;
  6232. }
  6233. #u53720 .text {
  6234. position:absolute;
  6235. align-self:center;
  6236. padding:2px 2px 2px 2px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u53720_text {
  6241. border-width:0px;
  6242. word-wrap:break-word;
  6243. text-transform:none;
  6244. visibility:hidden;
  6245. }
  6246. #u53721_div {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:103px;
  6252. height:24px;
  6253. background:inherit;
  6254. background-color:rgba(255, 255, 255, 0);
  6255. border-top:0px;
  6256. border-right:0px;
  6257. border-bottom:0px;
  6258. border-radius:0px;
  6259. border-top-left-radius:0px;
  6260. border-bottom-left-radius:0px;
  6261. filter:drop-shadow(none);
  6262. transition:none;
  6263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6264. font-weight:400;
  6265. font-style:normal;
  6266. font-size:10px;
  6267. color:#AAAAAA;
  6268. }
  6269. #u53721 {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:1180px;
  6273. top:559px;
  6274. width:103px;
  6275. height:24px;
  6276. display:flex;
  6277. transition:none;
  6278. transform-origin:50% 50%;
  6279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6280. font-weight:400;
  6281. font-style:normal;
  6282. font-size:10px;
  6283. color:#AAAAAA;
  6284. }
  6285. #u53721 .text {
  6286. position:absolute;
  6287. align-self:flex-start;
  6288. padding:5px 0px 5px 0px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u53721_text {
  6293. border-width:0px;
  6294. white-space:nowrap;
  6295. text-transform:none;
  6296. }
  6297. #u53722 {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:0px;
  6303. height:0px;
  6304. }
  6305. #u53723_div {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:43px;
  6311. height:30px;
  6312. background:inherit;
  6313. background-color:rgba(255, 255, 255, 0);
  6314. border-top:0px;
  6315. border-right:0px;
  6316. border-bottom:0px;
  6317. border-radius:0px;
  6318. border-top-left-radius:0px;
  6319. border-bottom-left-radius:0px;
  6320. filter:drop-shadow(none);
  6321. transition:none;
  6322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6323. font-weight:400;
  6324. font-style:normal;
  6325. font-size:14px;
  6326. }
  6327. #u53723 {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:1013px;
  6331. top:561px;
  6332. width:43px;
  6333. height:30px;
  6334. display:flex;
  6335. transition:none;
  6336. transform-origin:50% 50%;
  6337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6338. font-weight:400;
  6339. font-style:normal;
  6340. font-size:14px;
  6341. }
  6342. #u53723 .text {
  6343. position:absolute;
  6344. align-self:flex-start;
  6345. padding:0px 0px 0px 0px;
  6346. box-sizing:border-box;
  6347. width:100%;
  6348. }
  6349. #u53723_text {
  6350. border-width:0px;
  6351. white-space:nowrap;
  6352. text-transform:none;
  6353. }
  6354. #u53724_div {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:0px;
  6358. top:0px;
  6359. width:12px;
  6360. height:16px;
  6361. background:inherit;
  6362. background-color:rgba(255, 255, 255, 0);
  6363. border-top:0px;
  6364. border-right:0px;
  6365. border-bottom:0px;
  6366. border-radius:0px;
  6367. border-top-left-radius:0px;
  6368. border-bottom-left-radius:0px;
  6369. filter:drop-shadow(none);
  6370. transition:none;
  6371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6372. font-weight:400;
  6373. font-style:normal;
  6374. font-size:11px;
  6375. color:#AAAAAA;
  6376. }
  6377. #u53724 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:1013px;
  6381. top:589px;
  6382. width:12px;
  6383. height:16px;
  6384. display:flex;
  6385. transition:none;
  6386. transform-origin:50% 50%;
  6387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6388. font-weight:400;
  6389. font-style:normal;
  6390. font-size:11px;
  6391. color:#AAAAAA;
  6392. }
  6393. #u53724 .text {
  6394. position:absolute;
  6395. align-self:flex-start;
  6396. padding:0px 0px 0px 0px;
  6397. box-sizing:border-box;
  6398. width:100%;
  6399. }
  6400. #u53724_text {
  6401. border-width:0px;
  6402. white-space:nowrap;
  6403. text-transform:none;
  6404. }
  6405. #u53725_div {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:0px;
  6409. top:0px;
  6410. width:43px;
  6411. height:20px;
  6412. background:inherit;
  6413. background-color:rgba(255, 255, 255, 0);
  6414. border-top:0px;
  6415. border-right:0px;
  6416. border-bottom:0px;
  6417. border-radius:0px;
  6418. border-top-left-radius:0px;
  6419. border-bottom-left-radius:0px;
  6420. filter:drop-shadow(none);
  6421. transition:none;
  6422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6423. font-weight:400;
  6424. font-style:normal;
  6425. font-size:14px;
  6426. }
  6427. #u53725 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:1013px;
  6431. top:631px;
  6432. width:43px;
  6433. height:20px;
  6434. display:flex;
  6435. transition:none;
  6436. transform-origin:50% 50%;
  6437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. font-size:14px;
  6441. }
  6442. #u53725 .text {
  6443. position:absolute;
  6444. align-self:flex-start;
  6445. padding:0px 0px 0px 0px;
  6446. box-sizing:border-box;
  6447. width:100%;
  6448. }
  6449. #u53725_text {
  6450. border-width:0px;
  6451. white-space:nowrap;
  6452. text-transform:none;
  6453. }
  6454. #u53726_div {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:0px;
  6458. top:0px;
  6459. width:91px;
  6460. height:16px;
  6461. background:inherit;
  6462. background-color:rgba(255, 255, 255, 0);
  6463. border-top:0px;
  6464. border-right:0px;
  6465. border-bottom:0px;
  6466. border-radius:0px;
  6467. border-top-left-radius:0px;
  6468. border-bottom-left-radius:0px;
  6469. filter:drop-shadow(none);
  6470. transition:none;
  6471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6472. font-weight:400;
  6473. font-style:normal;
  6474. font-size:11px;
  6475. color:#AAAAAA;
  6476. }
  6477. #u53726 {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:1013px;
  6481. top:659px;
  6482. width:91px;
  6483. height:16px;
  6484. display:flex;
  6485. transition:none;
  6486. transform-origin:50% 50%;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:11px;
  6491. color:#AAAAAA;
  6492. }
  6493. #u53726 .text {
  6494. position:absolute;
  6495. align-self:flex-start;
  6496. padding:0px 0px 0px 0px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u53726_text {
  6501. border-width:0px;
  6502. white-space:nowrap;
  6503. text-transform:none;
  6504. }
  6505. #u53727_div {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:29px;
  6511. height:30px;
  6512. background:inherit;
  6513. background-color:rgba(255, 255, 255, 0);
  6514. border-top:0px;
  6515. border-right:0px;
  6516. border-bottom:0px;
  6517. border-radius:0px;
  6518. border-top-left-radius:0px;
  6519. border-bottom-left-radius:0px;
  6520. filter:drop-shadow(none);
  6521. transition:none;
  6522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:14px;
  6526. }
  6527. #u53727 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:971px;
  6531. top:517px;
  6532. width:29px;
  6533. height:30px;
  6534. display:flex;
  6535. transition:none;
  6536. transform-origin:50% 50%;
  6537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6538. font-weight:400;
  6539. font-style:normal;
  6540. font-size:14px;
  6541. }
  6542. #u53727 .text {
  6543. position:absolute;
  6544. align-self:flex-start;
  6545. padding:5px 0px 5px 0px;
  6546. box-sizing:border-box;
  6547. width:100%;
  6548. }
  6549. #u53727_text {
  6550. border-width:0px;
  6551. white-space:nowrap;
  6552. text-transform:none;
  6553. }
  6554. #u53728 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:0px;
  6558. top:0px;
  6559. width:0px;
  6560. height:0px;
  6561. }
  6562. #u53729 {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:990px;
  6566. top:595px;
  6567. width:1px;
  6568. height:31px;
  6569. display:flex;
  6570. transition:none;
  6571. }
  6572. #u53729 .text {
  6573. position:absolute;
  6574. align-self:center;
  6575. padding:2px 2px 2px 2px;
  6576. box-sizing:border-box;
  6577. width:100%;
  6578. }
  6579. #u53729_img {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:0px;
  6583. top:0px;
  6584. width:2px;
  6585. height:32px;
  6586. }
  6587. #u53729_text {
  6588. border-width:0px;
  6589. word-wrap:break-word;
  6590. text-transform:none;
  6591. visibility:hidden;
  6592. }
  6593. #u53730 {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:0px;
  6599. height:0px;
  6600. }
  6601. #u53731_div {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:0px;
  6605. top:0px;
  6606. width:30px;
  6607. height:30px;
  6608. background:inherit;
  6609. background-color:rgba(24, 144, 255, 1);
  6610. border-radius:4px;
  6611. filter:drop-shadow(none);
  6612. transition:none;
  6613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6614. font-weight:400;
  6615. font-style:normal;
  6616. font-size:10px;
  6617. color:#FFFFFF;
  6618. }
  6619. #u53731 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:975px;
  6623. top:631px;
  6624. width:30px;
  6625. height:30px;
  6626. display:flex;
  6627. transition:none;
  6628. transform-origin:50% 50%;
  6629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:10px;
  6633. color:#FFFFFF;
  6634. }
  6635. #u53731 .text {
  6636. position:absolute;
  6637. align-self:center;
  6638. padding:2px 2px 2px 2px;
  6639. box-sizing:border-box;
  6640. width:100%;
  6641. }
  6642. #u53731_text {
  6643. border-width:0px;
  6644. word-wrap:break-word;
  6645. text-transform:none;
  6646. }
  6647. #u53732 {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:0px;
  6653. height:0px;
  6654. }
  6655. #u53733 {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:997px;
  6659. top:653px;
  6660. width:9px;
  6661. height:9px;
  6662. display:flex;
  6663. transition:none;
  6664. }
  6665. #u53733 .text {
  6666. position:absolute;
  6667. align-self:center;
  6668. padding:2px 2px 2px 2px;
  6669. box-sizing:border-box;
  6670. width:100%;
  6671. }
  6672. #u53733_img {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:9px;
  6678. height:9px;
  6679. }
  6680. #u53733_text {
  6681. border-width:0px;
  6682. word-wrap:break-word;
  6683. text-transform:none;
  6684. visibility:hidden;
  6685. }
  6686. #u53734 {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:999px;
  6690. top:657px;
  6691. width:5px;
  6692. height:1px;
  6693. display:flex;
  6694. transition:none;
  6695. }
  6696. #u53734 .text {
  6697. position:absolute;
  6698. align-self:center;
  6699. padding:2px 2px 2px 2px;
  6700. box-sizing:border-box;
  6701. width:100%;
  6702. }
  6703. #u53734_img {
  6704. border-width:0px;
  6705. position:absolute;
  6706. left:0px;
  6707. top:0px;
  6708. width:5px;
  6709. height:1px;
  6710. }
  6711. #u53734_text {
  6712. border-width:0px;
  6713. word-wrap:break-word;
  6714. text-transform:none;
  6715. visibility:hidden;
  6716. }
  6717. #u53735 {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:0px;
  6721. top:0px;
  6722. width:0px;
  6723. height:0px;
  6724. }
  6725. #u53736_div {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:30px;
  6731. height:30px;
  6732. background:inherit;
  6733. background-color:rgba(24, 144, 255, 1);
  6734. border-radius:4px;
  6735. filter:drop-shadow(none);
  6736. transition:none;
  6737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. font-size:12px;
  6741. color:#FFFFFF;
  6742. }
  6743. #u53736 {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:975px;
  6747. top:561px;
  6748. width:30px;
  6749. height:30px;
  6750. display:flex;
  6751. transition:none;
  6752. transform-origin:50% 50%;
  6753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6754. font-weight:400;
  6755. font-style:normal;
  6756. font-size:12px;
  6757. color:#FFFFFF;
  6758. }
  6759. #u53736 .text {
  6760. position:absolute;
  6761. align-self:center;
  6762. padding:2px 2px 2px 2px;
  6763. box-sizing:border-box;
  6764. width:100%;
  6765. }
  6766. #u53736_text {
  6767. border-width:0px;
  6768. word-wrap:break-word;
  6769. text-transform:none;
  6770. }
  6771. #u53737 {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:0px;
  6775. top:0px;
  6776. width:0px;
  6777. height:0px;
  6778. }
  6779. #u53738 {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:997px;
  6783. top:583px;
  6784. width:9px;
  6785. height:9px;
  6786. display:flex;
  6787. transition:none;
  6788. }
  6789. #u53738 .text {
  6790. position:absolute;
  6791. align-self:center;
  6792. padding:2px 2px 2px 2px;
  6793. box-sizing:border-box;
  6794. width:100%;
  6795. }
  6796. #u53738_img {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:9px;
  6802. height:9px;
  6803. }
  6804. #u53738_text {
  6805. border-width:0px;
  6806. word-wrap:break-word;
  6807. text-transform:none;
  6808. visibility:hidden;
  6809. }
  6810. #u53739 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:999px;
  6814. top:586px;
  6815. width:5px;
  6816. height:4px;
  6817. display:flex;
  6818. transition:none;
  6819. }
  6820. #u53739 .text {
  6821. position:absolute;
  6822. align-self:center;
  6823. padding:2px 2px 2px 2px;
  6824. box-sizing:border-box;
  6825. width:100%;
  6826. }
  6827. #u53739_img {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:5px;
  6833. height:4px;
  6834. }
  6835. #u53739_text {
  6836. border-width:0px;
  6837. word-wrap:break-word;
  6838. text-transform:none;
  6839. visibility:hidden;
  6840. }
  6841. #u53740 {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:0px;
  6845. top:0px;
  6846. width:0px;
  6847. height:0px;
  6848. }
  6849. #u53741_div {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:0px;
  6853. top:0px;
  6854. width:375px;
  6855. height:60px;
  6856. background:inherit;
  6857. background-color:rgba(255, 255, 255, 1);
  6858. border-top:0px;
  6859. border-radius:28px;
  6860. border-top-left-radius:0px;
  6861. border-top-right-radius:0px;
  6862. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  6863. transition:none;
  6864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6865. font-weight:400;
  6866. font-style:normal;
  6867. font-size:14px;
  6868. color:#FFFFFF;
  6869. }
  6870. #u53741 {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:935px;
  6874. top:783px;
  6875. width:375px;
  6876. height:60px;
  6877. display:flex;
  6878. transition:none;
  6879. transform-origin:50% 50%;
  6880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6881. font-weight:400;
  6882. font-style:normal;
  6883. font-size:14px;
  6884. color:#FFFFFF;
  6885. }
  6886. #u53741 .text {
  6887. position:absolute;
  6888. align-self:center;
  6889. padding:2px 2px 2px 2px;
  6890. box-sizing:border-box;
  6891. width:100%;
  6892. }
  6893. #u53741_text {
  6894. border-width:0px;
  6895. word-wrap:break-word;
  6896. text-transform:none;
  6897. visibility:hidden;
  6898. }
  6899. #u53742_div {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:80px;
  6905. height:40px;
  6906. background:inherit;
  6907. background-color:rgba(24, 144, 255, 1);
  6908. border-radius:27px;
  6909. filter:drop-shadow(none);
  6910. transition:none;
  6911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6912. font-weight:400;
  6913. font-style:normal;
  6914. color:#FFFFFF;
  6915. text-align:center;
  6916. }
  6917. #u53742 {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:1215px;
  6921. top:793px;
  6922. width:80px;
  6923. height:40px;
  6924. display:flex;
  6925. transition:none;
  6926. transform-origin:50% 50%;
  6927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6928. font-weight:400;
  6929. font-style:normal;
  6930. color:#FFFFFF;
  6931. text-align:center;
  6932. }
  6933. #u53742 .text {
  6934. position:absolute;
  6935. align-self:center;
  6936. padding:2px 3px 2px 3px;
  6937. box-sizing:border-box;
  6938. width:100%;
  6939. }
  6940. #u53742_text {
  6941. border-width:0px;
  6942. word-wrap:break-word;
  6943. text-transform:none;
  6944. }
  6945. #u53743_div {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:0px;
  6949. top:0px;
  6950. width:80px;
  6951. height:40px;
  6952. background:inherit;
  6953. background-color:rgba(215, 215, 215, 1);
  6954. border-radius:27px;
  6955. filter:drop-shadow(none);
  6956. transition:none;
  6957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. text-align:center;
  6961. }
  6962. #u53743 {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:1125px;
  6966. top:793px;
  6967. width:80px;
  6968. height:40px;
  6969. display:flex;
  6970. transition:none;
  6971. transform-origin:50% 50%;
  6972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6973. font-weight:400;
  6974. font-style:normal;
  6975. text-align:center;
  6976. }
  6977. #u53743 .text {
  6978. position:absolute;
  6979. align-self:center;
  6980. padding:2px 3px 2px 3px;
  6981. box-sizing:border-box;
  6982. width:100%;
  6983. }
  6984. #u53743_text {
  6985. border-width:0px;
  6986. word-wrap:break-word;
  6987. text-transform:none;
  6988. }
  6989. #u53744_div {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:0px;
  6993. top:0px;
  6994. width:31px;
  6995. height:21px;
  6996. background:inherit;
  6997. background-color:rgba(215, 215, 215, 0);
  6998. border-radius:27px;
  6999. filter:drop-shadow(none);
  7000. transition:none;
  7001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7002. font-weight:400;
  7003. font-style:normal;
  7004. font-size:12px;
  7005. color:#7F7F7F;
  7006. text-align:center;
  7007. }
  7008. #u53744 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:1084px;
  7012. top:803px;
  7013. width:31px;
  7014. height:21px;
  7015. display:flex;
  7016. transition:none;
  7017. transform-origin:50% 50%;
  7018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:12px;
  7022. color:#7F7F7F;
  7023. text-align:center;
  7024. }
  7025. #u53744 .text {
  7026. position:absolute;
  7027. align-self:center;
  7028. padding:2px 3px 2px 3px;
  7029. box-sizing:border-box;
  7030. width:100%;
  7031. }
  7032. #u53744_text {
  7033. border-width:0px;
  7034. white-space:nowrap;
  7035. text-transform:none;
  7036. }
  7037. #u53745_div {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:0px;
  7041. top:0px;
  7042. width:97px;
  7043. height:25px;
  7044. background:inherit;
  7045. background-color:rgba(255, 255, 255, 0);
  7046. border-radius:0px;
  7047. filter:drop-shadow(none);
  7048. transition:none;
  7049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7050. font-weight:400;
  7051. font-style:normal;
  7052. font-size:12px;
  7053. color:#B8741A;
  7054. line-height:25px;
  7055. }
  7056. #u53745 {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:1190px;
  7060. top:172px;
  7061. width:97px;
  7062. height:25px;
  7063. display:flex;
  7064. transition:none;
  7065. transform-origin:50% 50%;
  7066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7067. font-weight:400;
  7068. font-style:normal;
  7069. font-size:12px;
  7070. color:#B8741A;
  7071. line-height:25px;
  7072. }
  7073. #u53745 .text {
  7074. position:absolute;
  7075. align-self:flex-start;
  7076. padding:0px 0px 0px 0px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u53745_text {
  7081. border-width:0px;
  7082. white-space:nowrap;
  7083. text-transform:none;
  7084. }
  7085. #u53746 {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:1371px;
  7089. top:0px;
  7090. width:433px;
  7091. height:865px;
  7092. }
  7093. #u53747 {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:433px;
  7099. height:865px;
  7100. display:flex;
  7101. transition:none;
  7102. }
  7103. #u53747 .text {
  7104. position:absolute;
  7105. align-self:center;
  7106. padding:2px 2px 2px 2px;
  7107. box-sizing:border-box;
  7108. width:100%;
  7109. }
  7110. #u53747_img {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:0px;
  7114. top:0px;
  7115. width:433px;
  7116. height:865px;
  7117. }
  7118. #u53747_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. visibility:hidden;
  7123. }
  7124. #u53748_div {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:375px;
  7130. height:40px;
  7131. background:inherit;
  7132. background-color:rgba(255, 255, 255, 1);
  7133. box-sizing:border-box;
  7134. border-width:1px;
  7135. border-style:solid;
  7136. border-color:rgba(215, 215, 215, 1);
  7137. border-left:0px;
  7138. border-top:0px;
  7139. border-right:0px;
  7140. border-radius:0px;
  7141. border-bottom-right-radius:0px;
  7142. border-bottom-left-radius:0px;
  7143. filter:drop-shadow(none);
  7144. transition:none;
  7145. }
  7146. #u53748 {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:29px;
  7150. top:67px;
  7151. width:375px;
  7152. height:40px;
  7153. display:flex;
  7154. transition:none;
  7155. transform-origin:50% 50%;
  7156. }
  7157. #u53748 .text {
  7158. position:absolute;
  7159. align-self:center;
  7160. padding:2px 2px 2px 2px;
  7161. box-sizing:border-box;
  7162. width:100%;
  7163. }
  7164. #u53748_text {
  7165. border-width:0px;
  7166. word-wrap:break-word;
  7167. text-transform:none;
  7168. visibility:hidden;
  7169. }
  7170. #u53749 {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:0px;
  7174. top:0px;
  7175. width:0px;
  7176. height:0px;
  7177. }
  7178. #u53750_div {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:88px;
  7184. height:32px;
  7185. background:inherit;
  7186. background-color:rgba(255, 255, 255, 1);
  7187. box-sizing:border-box;
  7188. border-width:1px;
  7189. border-style:solid;
  7190. border-color:rgba(242, 242, 242, 1);
  7191. border-radius:33px;
  7192. filter:drop-shadow(none);
  7193. transition:none;
  7194. }
  7195. #u53750 {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:309px;
  7199. top:71px;
  7200. width:88px;
  7201. height:32px;
  7202. display:flex;
  7203. transition:none;
  7204. transform-origin:50% 50%;
  7205. }
  7206. #u53750 .text {
  7207. position:absolute;
  7208. align-self:center;
  7209. padding:2px 2px 2px 2px;
  7210. box-sizing:border-box;
  7211. width:100%;
  7212. }
  7213. #u53750_text {
  7214. border-width:0px;
  7215. word-wrap:break-word;
  7216. text-transform:none;
  7217. visibility:hidden;
  7218. }
  7219. #u53751 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:0px;
  7225. height:0px;
  7226. }
  7227. #u53752 {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:372px;
  7231. top:78px;
  7232. width:18px;
  7233. height:18px;
  7234. display:flex;
  7235. transition:none;
  7236. }
  7237. #u53752 .text {
  7238. position:absolute;
  7239. align-self:center;
  7240. padding:2px 2px 2px 2px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u53752_img {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:0px;
  7248. top:0px;
  7249. width:18px;
  7250. height:18px;
  7251. }
  7252. #u53752_text {
  7253. border-width:0px;
  7254. word-wrap:break-word;
  7255. text-transform:none;
  7256. visibility:hidden;
  7257. }
  7258. #u53753 {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:378px;
  7262. top:84px;
  7263. width:6px;
  7264. height:6px;
  7265. display:flex;
  7266. transition:none;
  7267. }
  7268. #u53753 .text {
  7269. position:absolute;
  7270. align-self:center;
  7271. padding:2px 2px 2px 2px;
  7272. box-sizing:border-box;
  7273. width:100%;
  7274. }
  7275. #u53753_img {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:6px;
  7281. height:6px;
  7282. }
  7283. #u53753_text {
  7284. border-width:0px;
  7285. word-wrap:break-word;
  7286. text-transform:none;
  7287. visibility:hidden;
  7288. }
  7289. #u53754 {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:0px;
  7293. top:0px;
  7294. width:0px;
  7295. height:0px;
  7296. }
  7297. #u53755 {
  7298. border-width:0px;
  7299. position:absolute;
  7300. left:323px;
  7301. top:85px;
  7302. width:5px;
  7303. height:5px;
  7304. display:flex;
  7305. transition:none;
  7306. }
  7307. #u53755 .text {
  7308. position:absolute;
  7309. align-self:center;
  7310. padding:2px 2px 2px 2px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u53755_img {
  7315. border-width:0px;
  7316. position:absolute;
  7317. left:0px;
  7318. top:0px;
  7319. width:5px;
  7320. height:5px;
  7321. }
  7322. #u53755_text {
  7323. border-width:0px;
  7324. word-wrap:break-word;
  7325. text-transform:none;
  7326. visibility:hidden;
  7327. }
  7328. #u53756 {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:339px;
  7332. top:85px;
  7333. width:5px;
  7334. height:5px;
  7335. display:flex;
  7336. transition:none;
  7337. }
  7338. #u53756 .text {
  7339. position:absolute;
  7340. align-self:center;
  7341. padding:2px 2px 2px 2px;
  7342. box-sizing:border-box;
  7343. width:100%;
  7344. }
  7345. #u53756_img {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:5px;
  7351. height:5px;
  7352. }
  7353. #u53756_text {
  7354. border-width:0px;
  7355. word-wrap:break-word;
  7356. text-transform:none;
  7357. visibility:hidden;
  7358. }
  7359. #u53757 {
  7360. border-width:0px;
  7361. position:absolute;
  7362. left:330px;
  7363. top:84px;
  7364. width:7px;
  7365. height:7px;
  7366. display:flex;
  7367. transition:none;
  7368. }
  7369. #u53757 .text {
  7370. position:absolute;
  7371. align-self:center;
  7372. padding:2px 2px 2px 2px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u53757_img {
  7377. border-width:0px;
  7378. position:absolute;
  7379. left:0px;
  7380. top:0px;
  7381. width:7px;
  7382. height:7px;
  7383. }
  7384. #u53757_text {
  7385. border-width:0px;
  7386. word-wrap:break-word;
  7387. text-transform:none;
  7388. visibility:hidden;
  7389. }
  7390. #u53758 {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:347px;
  7394. top:87px;
  7395. width:18px;
  7396. height:1px;
  7397. display:flex;
  7398. -webkit-transform:rotate(90deg);
  7399. -moz-transform:rotate(90deg);
  7400. -ms-transform:rotate(90deg);
  7401. transform:rotate(90deg);
  7402. transition:none;
  7403. }
  7404. #u53758 .text {
  7405. position:absolute;
  7406. align-self:center;
  7407. padding:2px 2px 2px 2px;
  7408. box-sizing:border-box;
  7409. width:100%;
  7410. }
  7411. #u53758_img {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:0px;
  7415. top:0px;
  7416. width:19px;
  7417. height:2px;
  7418. }
  7419. #u53758_text {
  7420. border-width:0px;
  7421. word-wrap:break-word;
  7422. text-transform:none;
  7423. visibility:hidden;
  7424. }
  7425. #u53759 {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:29px;
  7429. top:24px;
  7430. width:375px;
  7431. height:44px;
  7432. display:flex;
  7433. transition:none;
  7434. }
  7435. #u53759 .text {
  7436. position:absolute;
  7437. align-self:center;
  7438. padding:2px 2px 2px 2px;
  7439. box-sizing:border-box;
  7440. width:100%;
  7441. }
  7442. #u53759_img {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:0px;
  7446. top:0px;
  7447. width:375px;
  7448. height:44px;
  7449. }
  7450. #u53759_text {
  7451. border-width:0px;
  7452. word-wrap:break-word;
  7453. text-transform:none;
  7454. visibility:hidden;
  7455. }
  7456. #u53760_div {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:375px;
  7462. height:50px;
  7463. background:inherit;
  7464. background-color:rgba(255, 255, 255, 1);
  7465. box-sizing:border-box;
  7466. border-width:1px;
  7467. border-style:solid;
  7468. border-color:rgba(242, 242, 242, 1);
  7469. border-radius:26px;
  7470. border-top-left-radius:0px;
  7471. border-top-right-radius:0px;
  7472. filter:drop-shadow(none);
  7473. transition:none;
  7474. }
  7475. #u53760 {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:29px;
  7479. top:788px;
  7480. width:375px;
  7481. height:50px;
  7482. display:flex;
  7483. transition:none;
  7484. transform-origin:50% 50%;
  7485. }
  7486. #u53760 .text {
  7487. position:absolute;
  7488. align-self:center;
  7489. padding:2px 2px 2px 2px;
  7490. box-sizing:border-box;
  7491. width:100%;
  7492. }
  7493. #u53760_text {
  7494. border-width:0px;
  7495. word-wrap:break-word;
  7496. text-transform:none;
  7497. visibility:hidden;
  7498. }
  7499. #u53761 {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:0px;
  7503. top:0px;
  7504. width:0px;
  7505. height:0px;
  7506. }
  7507. #u53762 {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:69px;
  7511. top:792px;
  7512. width:24px;
  7513. height:24px;
  7514. display:flex;
  7515. transition:none;
  7516. font-size:8px;
  7517. }
  7518. #u53762 .text {
  7519. position:absolute;
  7520. align-self:center;
  7521. padding:2px 2px 2px 2px;
  7522. box-sizing:border-box;
  7523. width:100%;
  7524. }
  7525. #u53762_img {
  7526. border-width:0px;
  7527. position:absolute;
  7528. left:0px;
  7529. top:0px;
  7530. width:24px;
  7531. height:24px;
  7532. }
  7533. #u53762_text {
  7534. border-width:0px;
  7535. word-wrap:break-word;
  7536. text-transform:none;
  7537. }
  7538. #u53763_div {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:0px;
  7542. top:0px;
  7543. width:25px;
  7544. height:17px;
  7545. background:inherit;
  7546. background-color:rgba(255, 255, 255, 0);
  7547. border-radius:0px;
  7548. filter:drop-shadow(none);
  7549. transition:none;
  7550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7551. font-weight:400;
  7552. font-style:normal;
  7553. font-size:12px;
  7554. }
  7555. #u53763 {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:69px;
  7559. top:817px;
  7560. width:25px;
  7561. height:17px;
  7562. display:flex;
  7563. transition:none;
  7564. transform-origin:50% 50%;
  7565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7566. font-weight:400;
  7567. font-style:normal;
  7568. font-size:12px;
  7569. }
  7570. #u53763 .text {
  7571. position:absolute;
  7572. align-self:flex-start;
  7573. padding:0px 0px 0px 0px;
  7574. box-sizing:border-box;
  7575. width:100%;
  7576. }
  7577. #u53763_text {
  7578. border-width:0px;
  7579. white-space:nowrap;
  7580. text-transform:none;
  7581. }
  7582. #u53764 {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:0px;
  7586. top:0px;
  7587. width:0px;
  7588. height:0px;
  7589. }
  7590. #u53765 {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:339px;
  7594. top:794px;
  7595. width:24px;
  7596. height:24px;
  7597. display:flex;
  7598. transition:none;
  7599. font-size:8px;
  7600. }
  7601. #u53765 .text {
  7602. position:absolute;
  7603. align-self:center;
  7604. padding:2px 2px 2px 2px;
  7605. box-sizing:border-box;
  7606. width:100%;
  7607. }
  7608. #u53765_img {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:0px;
  7612. top:0px;
  7613. width:24px;
  7614. height:24px;
  7615. }
  7616. #u53765_text {
  7617. border-width:0px;
  7618. word-wrap:break-word;
  7619. text-transform:none;
  7620. }
  7621. #u53766_div {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:25px;
  7627. height:17px;
  7628. background:inherit;
  7629. background-color:rgba(255, 255, 255, 0);
  7630. border-radius:0px;
  7631. filter:drop-shadow(none);
  7632. transition:none;
  7633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7634. font-weight:400;
  7635. font-style:normal;
  7636. font-size:12px;
  7637. }
  7638. #u53766 {
  7639. border-width:0px;
  7640. position:absolute;
  7641. left:339px;
  7642. top:819px;
  7643. width:25px;
  7644. height:17px;
  7645. display:flex;
  7646. transition:none;
  7647. transform-origin:50% 50%;
  7648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7649. font-weight:400;
  7650. font-style:normal;
  7651. font-size:12px;
  7652. }
  7653. #u53766 .text {
  7654. position:absolute;
  7655. align-self:flex-start;
  7656. padding:0px 0px 0px 0px;
  7657. box-sizing:border-box;
  7658. width:100%;
  7659. }
  7660. #u53766_text {
  7661. border-width:0px;
  7662. white-space:nowrap;
  7663. text-transform:none;
  7664. }
  7665. #u53767_div {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:375px;
  7671. height:681px;
  7672. background:inherit;
  7673. background-color:rgba(242, 242, 242, 0.4627450980392157);
  7674. border-radius:0px;
  7675. filter:drop-shadow(none);
  7676. transition:none;
  7677. }
  7678. #u53767 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:29px;
  7682. top:107px;
  7683. width:375px;
  7684. height:681px;
  7685. display:flex;
  7686. transition:none;
  7687. transform-origin:50% 50%;
  7688. }
  7689. #u53767 .text {
  7690. position:absolute;
  7691. align-self:center;
  7692. padding:2px 2px 2px 2px;
  7693. box-sizing:border-box;
  7694. width:100%;
  7695. }
  7696. #u53767_text {
  7697. border-width:0px;
  7698. word-wrap:break-word;
  7699. text-transform:none;
  7700. visibility:hidden;
  7701. }
  7702. #u53768 {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:0px;
  7708. height:0px;
  7709. }
  7710. #u53769 {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:251px;
  7714. top:792px;
  7715. width:24px;
  7716. height:24px;
  7717. display:flex;
  7718. transition:none;
  7719. font-size:8px;
  7720. }
  7721. #u53769 .text {
  7722. position:absolute;
  7723. align-self:center;
  7724. padding:2px 2px 2px 2px;
  7725. box-sizing:border-box;
  7726. width:100%;
  7727. }
  7728. #u53769_img {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:0px;
  7732. top:0px;
  7733. width:24px;
  7734. height:24px;
  7735. }
  7736. #u53769_text {
  7737. border-width:0px;
  7738. word-wrap:break-word;
  7739. text-transform:none;
  7740. }
  7741. #u53770_div {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:0px;
  7745. top:0px;
  7746. width:37px;
  7747. height:17px;
  7748. background:inherit;
  7749. background-color:rgba(255, 255, 255, 0);
  7750. border-radius:0px;
  7751. filter:drop-shadow(none);
  7752. transition:none;
  7753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7754. font-weight:400;
  7755. font-style:normal;
  7756. font-size:12px;
  7757. }
  7758. #u53770 {
  7759. border-width:0px;
  7760. position:absolute;
  7761. left:245px;
  7762. top:817px;
  7763. width:37px;
  7764. height:17px;
  7765. display:flex;
  7766. transition:none;
  7767. transform-origin:50% 50%;
  7768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7769. font-weight:400;
  7770. font-style:normal;
  7771. font-size:12px;
  7772. }
  7773. #u53770 .text {
  7774. position:absolute;
  7775. align-self:flex-start;
  7776. padding:0px 0px 0px 0px;
  7777. box-sizing:border-box;
  7778. width:100%;
  7779. }
  7780. #u53770_text {
  7781. border-width:0px;
  7782. white-space:nowrap;
  7783. text-transform:none;
  7784. }
  7785. #u53771 {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:0px;
  7789. top:0px;
  7790. width:0px;
  7791. height:0px;
  7792. }
  7793. #u53772 {
  7794. border-width:0px;
  7795. position:absolute;
  7796. left:157px;
  7797. top:792px;
  7798. width:24px;
  7799. height:24px;
  7800. display:flex;
  7801. transition:none;
  7802. font-size:8px;
  7803. }
  7804. #u53772 .text {
  7805. position:absolute;
  7806. align-self:center;
  7807. padding:2px 2px 2px 2px;
  7808. box-sizing:border-box;
  7809. width:100%;
  7810. }
  7811. #u53772_img {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:24px;
  7817. height:24px;
  7818. }
  7819. #u53772_text {
  7820. border-width:0px;
  7821. word-wrap:break-word;
  7822. text-transform:none;
  7823. }
  7824. #u53773_div {
  7825. border-width:0px;
  7826. position:absolute;
  7827. left:0px;
  7828. top:0px;
  7829. width:37px;
  7830. height:17px;
  7831. background:inherit;
  7832. background-color:rgba(255, 255, 255, 0);
  7833. border-radius:0px;
  7834. filter:drop-shadow(none);
  7835. transition:none;
  7836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7837. font-weight:400;
  7838. font-style:normal;
  7839. font-size:12px;
  7840. }
  7841. #u53773 {
  7842. border-width:0px;
  7843. position:absolute;
  7844. left:151px;
  7845. top:817px;
  7846. width:37px;
  7847. height:17px;
  7848. display:flex;
  7849. transition:none;
  7850. transform-origin:50% 50%;
  7851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7852. font-weight:400;
  7853. font-style:normal;
  7854. font-size:12px;
  7855. }
  7856. #u53773 .text {
  7857. position:absolute;
  7858. align-self:flex-start;
  7859. padding:0px 0px 0px 0px;
  7860. box-sizing:border-box;
  7861. width:100%;
  7862. }
  7863. #u53773_text {
  7864. border-width:0px;
  7865. white-space:nowrap;
  7866. text-transform:none;
  7867. }
  7868. #u53774_div {
  7869. border-width:0px;
  7870. position:absolute;
  7871. left:0px;
  7872. top:0px;
  7873. width:375px;
  7874. height:732px;
  7875. background:inherit;
  7876. background-color:rgba(242, 242, 242, 0.996078431372549);
  7877. border-top:0px;
  7878. border-radius:28px;
  7879. border-top-left-radius:0px;
  7880. border-top-right-radius:0px;
  7881. filter:drop-shadow(none);
  7882. transition:none;
  7883. }
  7884. #u53774 {
  7885. border-width:0px;
  7886. position:absolute;
  7887. left:1400px;
  7888. top:107px;
  7889. width:375px;
  7890. height:732px;
  7891. display:flex;
  7892. transition:none;
  7893. transform-origin:50% 50%;
  7894. }
  7895. #u53774 .text {
  7896. position:absolute;
  7897. align-self:center;
  7898. padding:2px 2px 2px 2px;
  7899. box-sizing:border-box;
  7900. width:100%;
  7901. }
  7902. #u53774_text {
  7903. border-width:0px;
  7904. word-wrap:break-word;
  7905. text-transform:none;
  7906. visibility:hidden;
  7907. }
  7908. #u53775_div {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:0px;
  7912. top:0px;
  7913. width:375px;
  7914. height:100px;
  7915. background:inherit;
  7916. background-color:rgba(255, 255, 255, 1);
  7917. border-left:0px;
  7918. border-top:0px;
  7919. border-right:0px;
  7920. border-radius:0px;
  7921. border-bottom-right-radius:0px;
  7922. border-bottom-left-radius:0px;
  7923. filter:drop-shadow(none);
  7924. transition:none;
  7925. }
  7926. #u53775 {
  7927. border-width:0px;
  7928. position:absolute;
  7929. left:1400px;
  7930. top:107px;
  7931. width:375px;
  7932. height:100px;
  7933. display:flex;
  7934. transition:none;
  7935. transform-origin:50% 50%;
  7936. }
  7937. #u53775 .text {
  7938. position:absolute;
  7939. align-self:center;
  7940. padding:2px 2px 2px 2px;
  7941. box-sizing:border-box;
  7942. width:100%;
  7943. }
  7944. #u53775_text {
  7945. border-width:0px;
  7946. word-wrap:break-word;
  7947. text-transform:none;
  7948. visibility:hidden;
  7949. }
  7950. #u53776_div {
  7951. border-width:0px;
  7952. position:absolute;
  7953. left:0px;
  7954. top:0px;
  7955. width:375px;
  7956. height:40px;
  7957. background:inherit;
  7958. background-color:rgba(255, 255, 255, 1);
  7959. box-sizing:border-box;
  7960. border-width:1px;
  7961. border-style:solid;
  7962. border-color:rgba(215, 215, 215, 1);
  7963. border-left:0px;
  7964. border-top:0px;
  7965. border-right:0px;
  7966. border-radius:0px;
  7967. border-bottom-right-radius:0px;
  7968. border-bottom-left-radius:0px;
  7969. filter:drop-shadow(none);
  7970. transition:none;
  7971. }
  7972. #u53776 {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:1400px;
  7976. top:67px;
  7977. width:375px;
  7978. height:40px;
  7979. display:flex;
  7980. transition:none;
  7981. transform-origin:50% 50%;
  7982. }
  7983. #u53776 .text {
  7984. position:absolute;
  7985. align-self:center;
  7986. padding:2px 2px 2px 2px;
  7987. box-sizing:border-box;
  7988. width:100%;
  7989. }
  7990. #u53776_text {
  7991. border-width:0px;
  7992. word-wrap:break-word;
  7993. text-transform:none;
  7994. visibility:hidden;
  7995. }
  7996. #u53777 {
  7997. border-width:0px;
  7998. position:absolute;
  7999. left:1400px;
  8000. top:24px;
  8001. width:375px;
  8002. height:44px;
  8003. display:flex;
  8004. transition:none;
  8005. }
  8006. #u53777 .text {
  8007. position:absolute;
  8008. align-self:center;
  8009. padding:2px 2px 2px 2px;
  8010. box-sizing:border-box;
  8011. width:100%;
  8012. }
  8013. #u53777_img {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:0px;
  8017. top:0px;
  8018. width:375px;
  8019. height:44px;
  8020. }
  8021. #u53777_text {
  8022. border-width:0px;
  8023. word-wrap:break-word;
  8024. text-transform:none;
  8025. visibility:hidden;
  8026. }
  8027. #u53778 {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:0px;
  8033. height:0px;
  8034. }
  8035. #u53779_div {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:0px;
  8039. top:0px;
  8040. width:88px;
  8041. height:32px;
  8042. background:inherit;
  8043. background-color:rgba(255, 255, 255, 1);
  8044. box-sizing:border-box;
  8045. border-width:1px;
  8046. border-style:solid;
  8047. border-color:rgba(242, 242, 242, 1);
  8048. border-radius:33px;
  8049. filter:drop-shadow(none);
  8050. transition:none;
  8051. }
  8052. #u53779 {
  8053. border-width:0px;
  8054. position:absolute;
  8055. left:1680px;
  8056. top:71px;
  8057. width:88px;
  8058. height:32px;
  8059. display:flex;
  8060. transition:none;
  8061. transform-origin:50% 50%;
  8062. }
  8063. #u53779 .text {
  8064. position:absolute;
  8065. align-self:center;
  8066. padding:2px 2px 2px 2px;
  8067. box-sizing:border-box;
  8068. width:100%;
  8069. }
  8070. #u53779_text {
  8071. border-width:0px;
  8072. word-wrap:break-word;
  8073. text-transform:none;
  8074. visibility:hidden;
  8075. }
  8076. #u53780 {
  8077. border-width:0px;
  8078. position:absolute;
  8079. left:0px;
  8080. top:0px;
  8081. width:0px;
  8082. height:0px;
  8083. }
  8084. #u53781 {
  8085. border-width:0px;
  8086. position:absolute;
  8087. left:1743px;
  8088. top:78px;
  8089. width:18px;
  8090. height:18px;
  8091. display:flex;
  8092. transition:none;
  8093. }
  8094. #u53781 .text {
  8095. position:absolute;
  8096. align-self:center;
  8097. padding:2px 2px 2px 2px;
  8098. box-sizing:border-box;
  8099. width:100%;
  8100. }
  8101. #u53781_img {
  8102. border-width:0px;
  8103. position:absolute;
  8104. left:0px;
  8105. top:0px;
  8106. width:18px;
  8107. height:18px;
  8108. }
  8109. #u53781_text {
  8110. border-width:0px;
  8111. word-wrap:break-word;
  8112. text-transform:none;
  8113. visibility:hidden;
  8114. }
  8115. #u53782 {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:1749px;
  8119. top:84px;
  8120. width:6px;
  8121. height:6px;
  8122. display:flex;
  8123. transition:none;
  8124. }
  8125. #u53782 .text {
  8126. position:absolute;
  8127. align-self:center;
  8128. padding:2px 2px 2px 2px;
  8129. box-sizing:border-box;
  8130. width:100%;
  8131. }
  8132. #u53782_img {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:6px;
  8138. height:6px;
  8139. }
  8140. #u53782_text {
  8141. border-width:0px;
  8142. word-wrap:break-word;
  8143. text-transform:none;
  8144. visibility:hidden;
  8145. }
  8146. #u53783 {
  8147. border-width:0px;
  8148. position:absolute;
  8149. left:0px;
  8150. top:0px;
  8151. width:0px;
  8152. height:0px;
  8153. }
  8154. #u53784 {
  8155. border-width:0px;
  8156. position:absolute;
  8157. left:1694px;
  8158. top:85px;
  8159. width:5px;
  8160. height:5px;
  8161. display:flex;
  8162. transition:none;
  8163. }
  8164. #u53784 .text {
  8165. position:absolute;
  8166. align-self:center;
  8167. padding:2px 2px 2px 2px;
  8168. box-sizing:border-box;
  8169. width:100%;
  8170. }
  8171. #u53784_img {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:5px;
  8177. height:5px;
  8178. }
  8179. #u53784_text {
  8180. border-width:0px;
  8181. word-wrap:break-word;
  8182. text-transform:none;
  8183. visibility:hidden;
  8184. }
  8185. #u53785 {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:1710px;
  8189. top:85px;
  8190. width:5px;
  8191. height:5px;
  8192. display:flex;
  8193. transition:none;
  8194. }
  8195. #u53785 .text {
  8196. position:absolute;
  8197. align-self:center;
  8198. padding:2px 2px 2px 2px;
  8199. box-sizing:border-box;
  8200. width:100%;
  8201. }
  8202. #u53785_img {
  8203. border-width:0px;
  8204. position:absolute;
  8205. left:0px;
  8206. top:0px;
  8207. width:5px;
  8208. height:5px;
  8209. }
  8210. #u53785_text {
  8211. border-width:0px;
  8212. word-wrap:break-word;
  8213. text-transform:none;
  8214. visibility:hidden;
  8215. }
  8216. #u53786 {
  8217. border-width:0px;
  8218. position:absolute;
  8219. left:1701px;
  8220. top:84px;
  8221. width:7px;
  8222. height:7px;
  8223. display:flex;
  8224. transition:none;
  8225. }
  8226. #u53786 .text {
  8227. position:absolute;
  8228. align-self:center;
  8229. padding:2px 2px 2px 2px;
  8230. box-sizing:border-box;
  8231. width:100%;
  8232. }
  8233. #u53786_img {
  8234. border-width:0px;
  8235. position:absolute;
  8236. left:0px;
  8237. top:0px;
  8238. width:7px;
  8239. height:7px;
  8240. }
  8241. #u53786_text {
  8242. border-width:0px;
  8243. word-wrap:break-word;
  8244. text-transform:none;
  8245. visibility:hidden;
  8246. }
  8247. #u53787 {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:1718px;
  8251. top:87px;
  8252. width:18px;
  8253. height:1px;
  8254. display:flex;
  8255. -webkit-transform:rotate(90deg);
  8256. -moz-transform:rotate(90deg);
  8257. -ms-transform:rotate(90deg);
  8258. transform:rotate(90deg);
  8259. transition:none;
  8260. }
  8261. #u53787 .text {
  8262. position:absolute;
  8263. align-self:center;
  8264. padding:2px 2px 2px 2px;
  8265. box-sizing:border-box;
  8266. width:100%;
  8267. }
  8268. #u53787_img {
  8269. border-width:0px;
  8270. position:absolute;
  8271. left:0px;
  8272. top:0px;
  8273. width:19px;
  8274. height:2px;
  8275. }
  8276. #u53787_text {
  8277. border-width:0px;
  8278. word-wrap:break-word;
  8279. text-transform:none;
  8280. visibility:hidden;
  8281. }
  8282. #u53788_div {
  8283. border-width:0px;
  8284. position:absolute;
  8285. left:0px;
  8286. top:0px;
  8287. width:33px;
  8288. height:22px;
  8289. background:inherit;
  8290. background-color:rgba(255, 255, 255, 0);
  8291. border-radius:0px;
  8292. filter:drop-shadow(none);
  8293. transition:none;
  8294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8295. font-weight:400;
  8296. font-style:normal;
  8297. font-size:16px;
  8298. color:#000000;
  8299. }
  8300. #u53788 {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:1435px;
  8304. top:76px;
  8305. width:33px;
  8306. height:22px;
  8307. display:flex;
  8308. transition:none;
  8309. transform-origin:50% 50%;
  8310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8311. font-weight:400;
  8312. font-style:normal;
  8313. font-size:16px;
  8314. color:#000000;
  8315. }
  8316. #u53788 .text {
  8317. position:absolute;
  8318. align-self:flex-start;
  8319. padding:0px 0px 0px 0px;
  8320. box-sizing:border-box;
  8321. width:100%;
  8322. }
  8323. #u53788_text {
  8324. border-width:0px;
  8325. white-space:nowrap;
  8326. text-transform:none;
  8327. }
  8328. #u53789_div {
  8329. border-width:0px;
  8330. position:absolute;
  8331. left:0px;
  8332. top:0px;
  8333. width:12px;
  8334. height:12px;
  8335. background:inherit;
  8336. background-color:rgba(255, 255, 255, 0);
  8337. box-sizing:border-box;
  8338. border-width:2px;
  8339. border-style:solid;
  8340. border-color:rgba(51, 51, 51, 1);
  8341. border-right:0px;
  8342. border-bottom:0px;
  8343. border-radius:0px;
  8344. border-top-right-radius:0px;
  8345. border-bottom-left-radius:0px;
  8346. filter:drop-shadow(none);
  8347. transition:none;
  8348. }
  8349. #u53789 {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:1415px;
  8353. top:81px;
  8354. width:12px;
  8355. height:12px;
  8356. display:flex;
  8357. -webkit-transform:rotate(315deg);
  8358. -moz-transform:rotate(315deg);
  8359. -ms-transform:rotate(315deg);
  8360. transform:rotate(315deg);
  8361. transition:none;
  8362. transform-origin:50% 50%;
  8363. }
  8364. #u53789 .text {
  8365. position:absolute;
  8366. align-self:center;
  8367. padding:2px 2px 2px 2px;
  8368. box-sizing:border-box;
  8369. width:100%;
  8370. }
  8371. #u53789_text {
  8372. border-width:0px;
  8373. word-wrap:break-word;
  8374. text-transform:none;
  8375. visibility:hidden;
  8376. }
  8377. #u53790 {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:0px;
  8381. top:0px;
  8382. width:0px;
  8383. height:0px;
  8384. }
  8385. #u53791 {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:1410px;
  8389. top:217px;
  8390. width:355px;
  8391. height:232px;
  8392. display:flex;
  8393. transition:none;
  8394. }
  8395. #u53791 .text {
  8396. position:absolute;
  8397. align-self:center;
  8398. padding:2px 2px 2px 2px;
  8399. box-sizing:border-box;
  8400. width:100%;
  8401. }
  8402. #u53791_img {
  8403. border-width:0px;
  8404. position:absolute;
  8405. left:0px;
  8406. top:0px;
  8407. width:355px;
  8408. height:232px;
  8409. }
  8410. #u53791_text {
  8411. border-width:0px;
  8412. word-wrap:break-word;
  8413. text-transform:none;
  8414. visibility:hidden;
  8415. }
  8416. #u53792_div {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:0px;
  8420. top:0px;
  8421. width:325px;
  8422. height:210px;
  8423. background:inherit;
  8424. background-color:rgba(255, 255, 255, 0);
  8425. border-left:0px;
  8426. border-top:0px;
  8427. border-right:0px;
  8428. border-radius:0px;
  8429. border-bottom-right-radius:0px;
  8430. border-bottom-left-radius:0px;
  8431. filter:drop-shadow(none);
  8432. transition:none;
  8433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8434. font-weight:400;
  8435. font-style:normal;
  8436. font-size:12px;
  8437. line-height:30px;
  8438. }
  8439. #u53792 {
  8440. border-width:0px;
  8441. position:absolute;
  8442. left:1426px;
  8443. top:228px;
  8444. width:325px;
  8445. height:210px;
  8446. display:flex;
  8447. transition:none;
  8448. transform-origin:50% 50%;
  8449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8450. font-weight:400;
  8451. font-style:normal;
  8452. font-size:12px;
  8453. line-height:30px;
  8454. }
  8455. #u53792 .text {
  8456. position:absolute;
  8457. align-self:flex-start;
  8458. padding:0px 0px 0px 0px;
  8459. box-sizing:border-box;
  8460. width:100%;
  8461. }
  8462. #u53792_text {
  8463. border-width:0px;
  8464. word-wrap:break-word;
  8465. text-transform:none;
  8466. }
  8467. #u53793_div {
  8468. border-width:0px;
  8469. position:absolute;
  8470. left:0px;
  8471. top:0px;
  8472. width:132px;
  8473. height:30px;
  8474. background:inherit;
  8475. background-color:rgba(255, 255, 255, 0);
  8476. border-left:0px;
  8477. border-top:0px;
  8478. border-right:0px;
  8479. border-radius:0px;
  8480. border-bottom-right-radius:0px;
  8481. border-bottom-left-radius:0px;
  8482. filter:drop-shadow(none);
  8483. transition:none;
  8484. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8485. font-weight:500;
  8486. font-style:normal;
  8487. font-size:14px;
  8488. line-height:30px;
  8489. }
  8490. #u53793 {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:1427px;
  8494. top:117px;
  8495. width:132px;
  8496. height:30px;
  8497. display:flex;
  8498. transition:none;
  8499. transform-origin:50% 50%;
  8500. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8501. font-weight:500;
  8502. font-style:normal;
  8503. font-size:14px;
  8504. line-height:30px;
  8505. }
  8506. #u53793 .text {
  8507. position:absolute;
  8508. align-self:flex-start;
  8509. padding:0px 0px 0px 0px;
  8510. box-sizing:border-box;
  8511. width:100%;
  8512. }
  8513. #u53793_text {
  8514. border-width:0px;
  8515. white-space:nowrap;
  8516. text-transform:none;
  8517. }
  8518. #u53794_div {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:0px;
  8522. top:0px;
  8523. width:325px;
  8524. height:50px;
  8525. background:inherit;
  8526. background-color:rgba(255, 255, 255, 0);
  8527. border-left:0px;
  8528. border-top:0px;
  8529. border-right:0px;
  8530. border-radius:0px;
  8531. border-bottom-right-radius:0px;
  8532. border-bottom-left-radius:0px;
  8533. filter:drop-shadow(none);
  8534. transition:none;
  8535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8536. font-weight:400;
  8537. font-style:normal;
  8538. font-size:12px;
  8539. line-height:25px;
  8540. }
  8541. #u53794 {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:1427px;
  8545. top:147px;
  8546. width:325px;
  8547. height:50px;
  8548. display:flex;
  8549. transition:none;
  8550. transform-origin:50% 50%;
  8551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8552. font-weight:400;
  8553. font-style:normal;
  8554. font-size:12px;
  8555. line-height:25px;
  8556. }
  8557. #u53794 .text {
  8558. position:absolute;
  8559. align-self:flex-start;
  8560. padding:0px 0px 0px 0px;
  8561. box-sizing:border-box;
  8562. width:100%;
  8563. }
  8564. #u53794_text {
  8565. border-width:0px;
  8566. word-wrap:break-word;
  8567. text-transform:none;
  8568. }
  8569. #u53795 {
  8570. border-width:0px;
  8571. position:absolute;
  8572. left:0px;
  8573. top:0px;
  8574. width:0px;
  8575. height:0px;
  8576. }
  8577. #u53796_div {
  8578. border-width:0px;
  8579. position:absolute;
  8580. left:0px;
  8581. top:0px;
  8582. width:355px;
  8583. height:192px;
  8584. background:inherit;
  8585. background-color:rgba(255, 255, 255, 1);
  8586. border-radius:0px;
  8587. filter:drop-shadow(none);
  8588. transition:none;
  8589. }
  8590. #u53796 {
  8591. border-width:0px;
  8592. position:absolute;
  8593. left:1410px;
  8594. top:509px;
  8595. width:355px;
  8596. height:192px;
  8597. display:flex;
  8598. transition:none;
  8599. transform-origin:50% 50%;
  8600. }
  8601. #u53796 .text {
  8602. position:absolute;
  8603. align-self:center;
  8604. padding:2px 2px 2px 2px;
  8605. box-sizing:border-box;
  8606. width:100%;
  8607. }
  8608. #u53796_text {
  8609. border-width:0px;
  8610. word-wrap:break-word;
  8611. text-transform:none;
  8612. visibility:hidden;
  8613. }
  8614. #u53797_div {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:0px;
  8618. top:0px;
  8619. width:103px;
  8620. height:24px;
  8621. background:inherit;
  8622. background-color:rgba(255, 255, 255, 0);
  8623. border-top:0px;
  8624. border-right:0px;
  8625. border-bottom:0px;
  8626. border-radius:0px;
  8627. border-top-left-radius:0px;
  8628. border-bottom-left-radius:0px;
  8629. filter:drop-shadow(none);
  8630. transition:none;
  8631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8632. font-weight:400;
  8633. font-style:normal;
  8634. font-size:10px;
  8635. color:#AAAAAA;
  8636. }
  8637. #u53797 {
  8638. border-width:0px;
  8639. position:absolute;
  8640. left:1645px;
  8641. top:559px;
  8642. width:103px;
  8643. height:24px;
  8644. display:flex;
  8645. transition:none;
  8646. transform-origin:50% 50%;
  8647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8648. font-weight:400;
  8649. font-style:normal;
  8650. font-size:10px;
  8651. color:#AAAAAA;
  8652. }
  8653. #u53797 .text {
  8654. position:absolute;
  8655. align-self:flex-start;
  8656. padding:5px 0px 5px 0px;
  8657. box-sizing:border-box;
  8658. width:100%;
  8659. }
  8660. #u53797_text {
  8661. border-width:0px;
  8662. white-space:nowrap;
  8663. text-transform:none;
  8664. }
  8665. #u53798 {
  8666. border-width:0px;
  8667. position:absolute;
  8668. left:0px;
  8669. top:0px;
  8670. width:0px;
  8671. height:0px;
  8672. }
  8673. #u53799_div {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:0px;
  8677. top:0px;
  8678. width:43px;
  8679. height:30px;
  8680. background:inherit;
  8681. background-color:rgba(255, 255, 255, 0);
  8682. border-top:0px;
  8683. border-right:0px;
  8684. border-bottom:0px;
  8685. border-radius:0px;
  8686. border-top-left-radius:0px;
  8687. border-bottom-left-radius:0px;
  8688. filter:drop-shadow(none);
  8689. transition:none;
  8690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8691. font-weight:400;
  8692. font-style:normal;
  8693. font-size:14px;
  8694. }
  8695. #u53799 {
  8696. border-width:0px;
  8697. position:absolute;
  8698. left:1478px;
  8699. top:561px;
  8700. width:43px;
  8701. height:30px;
  8702. display:flex;
  8703. transition:none;
  8704. transform-origin:50% 50%;
  8705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8706. font-weight:400;
  8707. font-style:normal;
  8708. font-size:14px;
  8709. }
  8710. #u53799 .text {
  8711. position:absolute;
  8712. align-self:flex-start;
  8713. padding:0px 0px 0px 0px;
  8714. box-sizing:border-box;
  8715. width:100%;
  8716. }
  8717. #u53799_text {
  8718. border-width:0px;
  8719. white-space:nowrap;
  8720. text-transform:none;
  8721. }
  8722. #u53800_div {
  8723. border-width:0px;
  8724. position:absolute;
  8725. left:0px;
  8726. top:0px;
  8727. width:12px;
  8728. height:16px;
  8729. background:inherit;
  8730. background-color:rgba(255, 255, 255, 0);
  8731. border-top:0px;
  8732. border-right:0px;
  8733. border-bottom:0px;
  8734. border-radius:0px;
  8735. border-top-left-radius:0px;
  8736. border-bottom-left-radius:0px;
  8737. filter:drop-shadow(none);
  8738. transition:none;
  8739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8740. font-weight:400;
  8741. font-style:normal;
  8742. font-size:11px;
  8743. color:#AAAAAA;
  8744. }
  8745. #u53800 {
  8746. border-width:0px;
  8747. position:absolute;
  8748. left:1478px;
  8749. top:589px;
  8750. width:12px;
  8751. height:16px;
  8752. display:flex;
  8753. transition:none;
  8754. transform-origin:50% 50%;
  8755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8756. font-weight:400;
  8757. font-style:normal;
  8758. font-size:11px;
  8759. color:#AAAAAA;
  8760. }
  8761. #u53800 .text {
  8762. position:absolute;
  8763. align-self:flex-start;
  8764. padding:0px 0px 0px 0px;
  8765. box-sizing:border-box;
  8766. width:100%;
  8767. }
  8768. #u53800_text {
  8769. border-width:0px;
  8770. white-space:nowrap;
  8771. text-transform:none;
  8772. }
  8773. #u53801_div {
  8774. border-width:0px;
  8775. position:absolute;
  8776. left:0px;
  8777. top:0px;
  8778. width:43px;
  8779. height:20px;
  8780. background:inherit;
  8781. background-color:rgba(255, 255, 255, 0);
  8782. border-top:0px;
  8783. border-right:0px;
  8784. border-bottom:0px;
  8785. border-radius:0px;
  8786. border-top-left-radius:0px;
  8787. border-bottom-left-radius:0px;
  8788. filter:drop-shadow(none);
  8789. transition:none;
  8790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8791. font-weight:400;
  8792. font-style:normal;
  8793. font-size:14px;
  8794. }
  8795. #u53801 {
  8796. border-width:0px;
  8797. position:absolute;
  8798. left:1478px;
  8799. top:631px;
  8800. width:43px;
  8801. height:20px;
  8802. display:flex;
  8803. transition:none;
  8804. transform-origin:50% 50%;
  8805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8806. font-weight:400;
  8807. font-style:normal;
  8808. font-size:14px;
  8809. }
  8810. #u53801 .text {
  8811. position:absolute;
  8812. align-self:flex-start;
  8813. padding:0px 0px 0px 0px;
  8814. box-sizing:border-box;
  8815. width:100%;
  8816. }
  8817. #u53801_text {
  8818. border-width:0px;
  8819. white-space:nowrap;
  8820. text-transform:none;
  8821. }
  8822. #u53802_div {
  8823. border-width:0px;
  8824. position:absolute;
  8825. left:0px;
  8826. top:0px;
  8827. width:91px;
  8828. height:16px;
  8829. background:inherit;
  8830. background-color:rgba(255, 255, 255, 0);
  8831. border-top:0px;
  8832. border-right:0px;
  8833. border-bottom:0px;
  8834. border-radius:0px;
  8835. border-top-left-radius:0px;
  8836. border-bottom-left-radius:0px;
  8837. filter:drop-shadow(none);
  8838. transition:none;
  8839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8840. font-weight:400;
  8841. font-style:normal;
  8842. font-size:11px;
  8843. color:#AAAAAA;
  8844. }
  8845. #u53802 {
  8846. border-width:0px;
  8847. position:absolute;
  8848. left:1478px;
  8849. top:659px;
  8850. width:91px;
  8851. height:16px;
  8852. display:flex;
  8853. transition:none;
  8854. transform-origin:50% 50%;
  8855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8856. font-weight:400;
  8857. font-style:normal;
  8858. font-size:11px;
  8859. color:#AAAAAA;
  8860. }
  8861. #u53802 .text {
  8862. position:absolute;
  8863. align-self:flex-start;
  8864. padding:0px 0px 0px 0px;
  8865. box-sizing:border-box;
  8866. width:100%;
  8867. }
  8868. #u53802_text {
  8869. border-width:0px;
  8870. white-space:nowrap;
  8871. text-transform:none;
  8872. }
  8873. #u53803_div {
  8874. border-width:0px;
  8875. position:absolute;
  8876. left:0px;
  8877. top:0px;
  8878. width:29px;
  8879. height:30px;
  8880. background:inherit;
  8881. background-color:rgba(255, 255, 255, 0);
  8882. border-top:0px;
  8883. border-right:0px;
  8884. border-bottom:0px;
  8885. border-radius:0px;
  8886. border-top-left-radius:0px;
  8887. border-bottom-left-radius:0px;
  8888. filter:drop-shadow(none);
  8889. transition:none;
  8890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8891. font-weight:400;
  8892. font-style:normal;
  8893. font-size:14px;
  8894. }
  8895. #u53803 {
  8896. border-width:0px;
  8897. position:absolute;
  8898. left:1436px;
  8899. top:517px;
  8900. width:29px;
  8901. height:30px;
  8902. display:flex;
  8903. transition:none;
  8904. transform-origin:50% 50%;
  8905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8906. font-weight:400;
  8907. font-style:normal;
  8908. font-size:14px;
  8909. }
  8910. #u53803 .text {
  8911. position:absolute;
  8912. align-self:flex-start;
  8913. padding:5px 0px 5px 0px;
  8914. box-sizing:border-box;
  8915. width:100%;
  8916. }
  8917. #u53803_text {
  8918. border-width:0px;
  8919. white-space:nowrap;
  8920. text-transform:none;
  8921. }
  8922. #u53804 {
  8923. border-width:0px;
  8924. position:absolute;
  8925. left:0px;
  8926. top:0px;
  8927. width:0px;
  8928. height:0px;
  8929. }
  8930. #u53805 {
  8931. border-width:0px;
  8932. position:absolute;
  8933. left:1455px;
  8934. top:595px;
  8935. width:1px;
  8936. height:31px;
  8937. display:flex;
  8938. transition:none;
  8939. }
  8940. #u53805 .text {
  8941. position:absolute;
  8942. align-self:center;
  8943. padding:2px 2px 2px 2px;
  8944. box-sizing:border-box;
  8945. width:100%;
  8946. }
  8947. #u53805_img {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:0px;
  8951. top:0px;
  8952. width:2px;
  8953. height:32px;
  8954. }
  8955. #u53805_text {
  8956. border-width:0px;
  8957. word-wrap:break-word;
  8958. text-transform:none;
  8959. visibility:hidden;
  8960. }
  8961. #u53806 {
  8962. border-width:0px;
  8963. position:absolute;
  8964. left:0px;
  8965. top:0px;
  8966. width:0px;
  8967. height:0px;
  8968. }
  8969. #u53807_div {
  8970. border-width:0px;
  8971. position:absolute;
  8972. left:0px;
  8973. top:0px;
  8974. width:30px;
  8975. height:30px;
  8976. background:inherit;
  8977. background-color:rgba(24, 144, 255, 1);
  8978. border-radius:4px;
  8979. filter:drop-shadow(none);
  8980. transition:none;
  8981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8982. font-weight:400;
  8983. font-style:normal;
  8984. font-size:10px;
  8985. color:#FFFFFF;
  8986. }
  8987. #u53807 {
  8988. border-width:0px;
  8989. position:absolute;
  8990. left:1440px;
  8991. top:631px;
  8992. width:30px;
  8993. height:30px;
  8994. display:flex;
  8995. transition:none;
  8996. transform-origin:50% 50%;
  8997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8998. font-weight:400;
  8999. font-style:normal;
  9000. font-size:10px;
  9001. color:#FFFFFF;
  9002. }
  9003. #u53807 .text {
  9004. position:absolute;
  9005. align-self:center;
  9006. padding:2px 2px 2px 2px;
  9007. box-sizing:border-box;
  9008. width:100%;
  9009. }
  9010. #u53807_text {
  9011. border-width:0px;
  9012. word-wrap:break-word;
  9013. text-transform:none;
  9014. }
  9015. #u53808 {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:0px;
  9019. top:0px;
  9020. width:0px;
  9021. height:0px;
  9022. }
  9023. #u53809 {
  9024. border-width:0px;
  9025. position:absolute;
  9026. left:1462px;
  9027. top:653px;
  9028. width:9px;
  9029. height:9px;
  9030. display:flex;
  9031. transition:none;
  9032. }
  9033. #u53809 .text {
  9034. position:absolute;
  9035. align-self:center;
  9036. padding:2px 2px 2px 2px;
  9037. box-sizing:border-box;
  9038. width:100%;
  9039. }
  9040. #u53809_img {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:0px;
  9044. top:0px;
  9045. width:9px;
  9046. height:9px;
  9047. }
  9048. #u53809_text {
  9049. border-width:0px;
  9050. word-wrap:break-word;
  9051. text-transform:none;
  9052. visibility:hidden;
  9053. }
  9054. #u53810 {
  9055. border-width:0px;
  9056. position:absolute;
  9057. left:1464px;
  9058. top:657px;
  9059. width:5px;
  9060. height:1px;
  9061. display:flex;
  9062. transition:none;
  9063. }
  9064. #u53810 .text {
  9065. position:absolute;
  9066. align-self:center;
  9067. padding:2px 2px 2px 2px;
  9068. box-sizing:border-box;
  9069. width:100%;
  9070. }
  9071. #u53810_img {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:0px;
  9075. top:0px;
  9076. width:5px;
  9077. height:1px;
  9078. }
  9079. #u53810_text {
  9080. border-width:0px;
  9081. word-wrap:break-word;
  9082. text-transform:none;
  9083. visibility:hidden;
  9084. }
  9085. #u53811 {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:0px;
  9091. height:0px;
  9092. }
  9093. #u53812_div {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:0px;
  9097. top:0px;
  9098. width:30px;
  9099. height:30px;
  9100. background:inherit;
  9101. background-color:rgba(24, 144, 255, 1);
  9102. border-radius:4px;
  9103. filter:drop-shadow(none);
  9104. transition:none;
  9105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9106. font-weight:400;
  9107. font-style:normal;
  9108. font-size:12px;
  9109. color:#FFFFFF;
  9110. }
  9111. #u53812 {
  9112. border-width:0px;
  9113. position:absolute;
  9114. left:1440px;
  9115. top:561px;
  9116. width:30px;
  9117. height:30px;
  9118. display:flex;
  9119. transition:none;
  9120. transform-origin:50% 50%;
  9121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9122. font-weight:400;
  9123. font-style:normal;
  9124. font-size:12px;
  9125. color:#FFFFFF;
  9126. }
  9127. #u53812 .text {
  9128. position:absolute;
  9129. align-self:center;
  9130. padding:2px 2px 2px 2px;
  9131. box-sizing:border-box;
  9132. width:100%;
  9133. }
  9134. #u53812_text {
  9135. border-width:0px;
  9136. word-wrap:break-word;
  9137. text-transform:none;
  9138. }
  9139. #u53813 {
  9140. border-width:0px;
  9141. position:absolute;
  9142. left:0px;
  9143. top:0px;
  9144. width:0px;
  9145. height:0px;
  9146. }
  9147. #u53814 {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:1462px;
  9151. top:583px;
  9152. width:9px;
  9153. height:9px;
  9154. display:flex;
  9155. transition:none;
  9156. }
  9157. #u53814 .text {
  9158. position:absolute;
  9159. align-self:center;
  9160. padding:2px 2px 2px 2px;
  9161. box-sizing:border-box;
  9162. width:100%;
  9163. }
  9164. #u53814_img {
  9165. border-width:0px;
  9166. position:absolute;
  9167. left:0px;
  9168. top:0px;
  9169. width:9px;
  9170. height:9px;
  9171. }
  9172. #u53814_text {
  9173. border-width:0px;
  9174. word-wrap:break-word;
  9175. text-transform:none;
  9176. visibility:hidden;
  9177. }
  9178. #u53815 {
  9179. border-width:0px;
  9180. position:absolute;
  9181. left:1464px;
  9182. top:586px;
  9183. width:5px;
  9184. height:4px;
  9185. display:flex;
  9186. transition:none;
  9187. }
  9188. #u53815 .text {
  9189. position:absolute;
  9190. align-self:center;
  9191. padding:2px 2px 2px 2px;
  9192. box-sizing:border-box;
  9193. width:100%;
  9194. }
  9195. #u53815_img {
  9196. border-width:0px;
  9197. position:absolute;
  9198. left:0px;
  9199. top:0px;
  9200. width:5px;
  9201. height:4px;
  9202. }
  9203. #u53815_text {
  9204. border-width:0px;
  9205. word-wrap:break-word;
  9206. text-transform:none;
  9207. visibility:hidden;
  9208. }
  9209. #u53816 {
  9210. border-width:0px;
  9211. position:absolute;
  9212. left:0px;
  9213. top:0px;
  9214. width:0px;
  9215. height:0px;
  9216. }
  9217. #u53817_div {
  9218. border-width:0px;
  9219. position:absolute;
  9220. left:0px;
  9221. top:0px;
  9222. width:375px;
  9223. height:60px;
  9224. background:inherit;
  9225. background-color:rgba(255, 255, 255, 1);
  9226. border-top:0px;
  9227. border-radius:28px;
  9228. border-top-left-radius:0px;
  9229. border-top-right-radius:0px;
  9230. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  9231. transition:none;
  9232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9233. font-weight:400;
  9234. font-style:normal;
  9235. font-size:14px;
  9236. color:#FFFFFF;
  9237. }
  9238. #u53817 {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:1400px;
  9242. top:783px;
  9243. width:375px;
  9244. height:60px;
  9245. display:flex;
  9246. transition:none;
  9247. transform-origin:50% 50%;
  9248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9249. font-weight:400;
  9250. font-style:normal;
  9251. font-size:14px;
  9252. color:#FFFFFF;
  9253. }
  9254. #u53817 .text {
  9255. position:absolute;
  9256. align-self:center;
  9257. padding:2px 2px 2px 2px;
  9258. box-sizing:border-box;
  9259. width:100%;
  9260. }
  9261. #u53817_text {
  9262. border-width:0px;
  9263. word-wrap:break-word;
  9264. text-transform:none;
  9265. visibility:hidden;
  9266. }
  9267. #u53818_div {
  9268. border-width:0px;
  9269. position:absolute;
  9270. left:0px;
  9271. top:0px;
  9272. width:80px;
  9273. height:40px;
  9274. background:inherit;
  9275. background-color:rgba(24, 144, 255, 1);
  9276. border-radius:27px;
  9277. filter:drop-shadow(none);
  9278. transition:none;
  9279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9280. font-weight:400;
  9281. font-style:normal;
  9282. color:#FFFFFF;
  9283. text-align:center;
  9284. }
  9285. #u53818 {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:1680px;
  9289. top:793px;
  9290. width:80px;
  9291. height:40px;
  9292. display:flex;
  9293. transition:none;
  9294. transform-origin:50% 50%;
  9295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9296. font-weight:400;
  9297. font-style:normal;
  9298. color:#FFFFFF;
  9299. text-align:center;
  9300. }
  9301. #u53818 .text {
  9302. position:absolute;
  9303. align-self:center;
  9304. padding:2px 3px 2px 3px;
  9305. box-sizing:border-box;
  9306. width:100%;
  9307. }
  9308. #u53818_text {
  9309. border-width:0px;
  9310. word-wrap:break-word;
  9311. text-transform:none;
  9312. }
  9313. #u53819_div {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:0px;
  9317. top:0px;
  9318. width:80px;
  9319. height:40px;
  9320. background:inherit;
  9321. background-color:rgba(215, 215, 215, 1);
  9322. border-radius:27px;
  9323. filter:drop-shadow(none);
  9324. transition:none;
  9325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9326. font-weight:400;
  9327. font-style:normal;
  9328. text-align:center;
  9329. }
  9330. #u53819 {
  9331. border-width:0px;
  9332. position:absolute;
  9333. left:1590px;
  9334. top:793px;
  9335. width:80px;
  9336. height:40px;
  9337. display:flex;
  9338. transition:none;
  9339. transform-origin:50% 50%;
  9340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9341. font-weight:400;
  9342. font-style:normal;
  9343. text-align:center;
  9344. }
  9345. #u53819 .text {
  9346. position:absolute;
  9347. align-self:center;
  9348. padding:2px 3px 2px 3px;
  9349. box-sizing:border-box;
  9350. width:100%;
  9351. }
  9352. #u53819_text {
  9353. border-width:0px;
  9354. word-wrap:break-word;
  9355. text-transform:none;
  9356. }
  9357. #u53820_div {
  9358. border-width:0px;
  9359. position:absolute;
  9360. left:0px;
  9361. top:0px;
  9362. width:31px;
  9363. height:21px;
  9364. background:inherit;
  9365. background-color:rgba(215, 215, 215, 0);
  9366. border-radius:27px;
  9367. filter:drop-shadow(none);
  9368. transition:none;
  9369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9370. font-weight:400;
  9371. font-style:normal;
  9372. font-size:12px;
  9373. color:#7F7F7F;
  9374. text-align:center;
  9375. }
  9376. #u53820 {
  9377. border-width:0px;
  9378. position:absolute;
  9379. left:1549px;
  9380. top:803px;
  9381. width:31px;
  9382. height:21px;
  9383. display:flex;
  9384. transition:none;
  9385. transform-origin:50% 50%;
  9386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9387. font-weight:400;
  9388. font-style:normal;
  9389. font-size:12px;
  9390. color:#7F7F7F;
  9391. text-align:center;
  9392. }
  9393. #u53820 .text {
  9394. position:absolute;
  9395. align-self:center;
  9396. padding:2px 3px 2px 3px;
  9397. box-sizing:border-box;
  9398. width:100%;
  9399. }
  9400. #u53820_text {
  9401. border-width:0px;
  9402. white-space:nowrap;
  9403. text-transform:none;
  9404. }
  9405. #u53821_div {
  9406. border-width:0px;
  9407. position:absolute;
  9408. left:0px;
  9409. top:0px;
  9410. width:97px;
  9411. height:25px;
  9412. background:inherit;
  9413. background-color:rgba(255, 255, 255, 0);
  9414. border-radius:0px;
  9415. filter:drop-shadow(none);
  9416. transition:none;
  9417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9418. font-weight:400;
  9419. font-style:normal;
  9420. font-size:12px;
  9421. color:#B8741A;
  9422. line-height:25px;
  9423. }
  9424. #u53821 {
  9425. border-width:0px;
  9426. position:absolute;
  9427. left:1655px;
  9428. top:172px;
  9429. width:97px;
  9430. height:25px;
  9431. display:flex;
  9432. transition:none;
  9433. transform-origin:50% 50%;
  9434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9435. font-weight:400;
  9436. font-style:normal;
  9437. font-size:12px;
  9438. color:#B8741A;
  9439. line-height:25px;
  9440. }
  9441. #u53821 .text {
  9442. position:absolute;
  9443. align-self:flex-start;
  9444. padding:0px 0px 0px 0px;
  9445. box-sizing:border-box;
  9446. width:100%;
  9447. }
  9448. #u53821_text {
  9449. border-width:0px;
  9450. white-space:nowrap;
  9451. text-transform:none;
  9452. }
  9453. #u53822 {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:0px;
  9457. top:0px;
  9458. width:0px;
  9459. height:0px;
  9460. }
  9461. #u53823 {
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:945px;
  9465. top:459px;
  9466. width:355px;
  9467. height:40px;
  9468. display:flex;
  9469. transition:none;
  9470. }
  9471. #u53823 .text {
  9472. position:absolute;
  9473. align-self:center;
  9474. padding:2px 2px 2px 2px;
  9475. box-sizing:border-box;
  9476. width:100%;
  9477. }
  9478. #u53823_img {
  9479. border-width:0px;
  9480. position:absolute;
  9481. left:0px;
  9482. top:0px;
  9483. width:355px;
  9484. height:40px;
  9485. }
  9486. #u53823_text {
  9487. border-width:0px;
  9488. word-wrap:break-word;
  9489. text-transform:none;
  9490. visibility:hidden;
  9491. }
  9492. #u53824_div {
  9493. border-width:0px;
  9494. position:absolute;
  9495. left:0px;
  9496. top:0px;
  9497. width:71px;
  9498. height:20px;
  9499. background:inherit;
  9500. background-color:rgba(255, 255, 255, 0);
  9501. border-left:0px;
  9502. border-top:0px;
  9503. border-right:0px;
  9504. border-radius:0px;
  9505. border-bottom-right-radius:0px;
  9506. border-bottom-left-radius:0px;
  9507. filter:drop-shadow(none);
  9508. transition:none;
  9509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9510. font-weight:400;
  9511. font-style:normal;
  9512. font-size:14px;
  9513. }
  9514. #u53824 {
  9515. border-width:0px;
  9516. position:absolute;
  9517. left:961px;
  9518. top:469px;
  9519. width:71px;
  9520. height:20px;
  9521. display:flex;
  9522. transition:none;
  9523. transform-origin:50% 50%;
  9524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9525. font-weight:400;
  9526. font-style:normal;
  9527. font-size:14px;
  9528. }
  9529. #u53824 .text {
  9530. position:absolute;
  9531. align-self:flex-start;
  9532. padding:0px 0px 0px 0px;
  9533. box-sizing:border-box;
  9534. width:100%;
  9535. }
  9536. #u53824_text {
  9537. border-width:0px;
  9538. white-space:nowrap;
  9539. text-transform:none;
  9540. }
  9541. #u53825 {
  9542. border-width:0px;
  9543. position:absolute;
  9544. left:0px;
  9545. top:0px;
  9546. width:0px;
  9547. height:0px;
  9548. }
  9549. #u53826 {
  9550. border-width:0px;
  9551. position:absolute;
  9552. left:0px;
  9553. top:0px;
  9554. width:0px;
  9555. height:0px;
  9556. }
  9557. #u53827_div {
  9558. border-width:0px;
  9559. position:absolute;
  9560. left:0px;
  9561. top:0px;
  9562. width:23px;
  9563. height:20px;
  9564. background:inherit;
  9565. background-color:rgba(255, 255, 255, 0);
  9566. border-left:0px;
  9567. border-top:0px;
  9568. border-right:0px;
  9569. border-radius:0px;
  9570. border-bottom-right-radius:0px;
  9571. border-bottom-left-radius:0px;
  9572. filter:drop-shadow(none);
  9573. transition:none;
  9574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9575. font-weight:400;
  9576. font-style:normal;
  9577. font-size:14px;
  9578. color:#00BFBF;
  9579. }
  9580. #u53827 {
  9581. border-width:0px;
  9582. position:absolute;
  9583. left:1251px;
  9584. top:469px;
  9585. width:23px;
  9586. height:20px;
  9587. display:flex;
  9588. transition:none;
  9589. transform-origin:50% 50%;
  9590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9591. font-weight:400;
  9592. font-style:normal;
  9593. font-size:14px;
  9594. color:#00BFBF;
  9595. }
  9596. #u53827 .text {
  9597. position:absolute;
  9598. align-self:center;
  9599. padding:0px 0px 0px 0px;
  9600. box-sizing:border-box;
  9601. width:100%;
  9602. }
  9603. #u53827_text {
  9604. border-width:0px;
  9605. white-space:nowrap;
  9606. text-transform:none;
  9607. }
  9608. #u53828_div {
  9609. border-width:0px;
  9610. position:absolute;
  9611. left:0px;
  9612. top:0px;
  9613. width:6px;
  9614. height:6px;
  9615. background:inherit;
  9616. background-color:rgba(255, 255, 255, 0);
  9617. box-sizing:border-box;
  9618. border-width:1px;
  9619. border-style:solid;
  9620. border-color:rgba(0, 191, 191, 1);
  9621. border-right:0px;
  9622. border-bottom:0px;
  9623. border-radius:0px;
  9624. border-top-right-radius:0px;
  9625. border-bottom-left-radius:0px;
  9626. filter:drop-shadow(none);
  9627. transition:none;
  9628. }
  9629. #u53828 {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:1285px;
  9633. top:478px;
  9634. width:6px;
  9635. height:6px;
  9636. display:flex;
  9637. -webkit-transform:rotate(45deg);
  9638. -moz-transform:rotate(45deg);
  9639. -ms-transform:rotate(45deg);
  9640. transform:rotate(45deg);
  9641. transition:none;
  9642. transform-origin:50% 50%;
  9643. }
  9644. #u53828 .text {
  9645. position:absolute;
  9646. align-self:center;
  9647. padding:2px 2px 2px 2px;
  9648. box-sizing:border-box;
  9649. width:100%;
  9650. }
  9651. #u53828_text {
  9652. border-width:0px;
  9653. word-wrap:break-word;
  9654. text-transform:none;
  9655. visibility:hidden;
  9656. }
  9657. #u53829 {
  9658. border-width:0px;
  9659. position:absolute;
  9660. left:0px;
  9661. top:0px;
  9662. width:0px;
  9663. height:0px;
  9664. }
  9665. #u53830 {
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:1410px;
  9669. top:459px;
  9670. width:355px;
  9671. height:40px;
  9672. display:flex;
  9673. transition:none;
  9674. }
  9675. #u53830 .text {
  9676. position:absolute;
  9677. align-self:center;
  9678. padding:2px 2px 2px 2px;
  9679. box-sizing:border-box;
  9680. width:100%;
  9681. }
  9682. #u53830_img {
  9683. border-width:0px;
  9684. position:absolute;
  9685. left:0px;
  9686. top:0px;
  9687. width:355px;
  9688. height:40px;
  9689. }
  9690. #u53830_text {
  9691. border-width:0px;
  9692. word-wrap:break-word;
  9693. text-transform:none;
  9694. visibility:hidden;
  9695. }
  9696. #u53831_div {
  9697. border-width:0px;
  9698. position:absolute;
  9699. left:0px;
  9700. top:0px;
  9701. width:71px;
  9702. height:20px;
  9703. background:inherit;
  9704. background-color:rgba(255, 255, 255, 0);
  9705. border-left:0px;
  9706. border-top:0px;
  9707. border-right:0px;
  9708. border-radius:0px;
  9709. border-bottom-right-radius:0px;
  9710. border-bottom-left-radius:0px;
  9711. filter:drop-shadow(none);
  9712. transition:none;
  9713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9714. font-weight:400;
  9715. font-style:normal;
  9716. font-size:14px;
  9717. }
  9718. #u53831 {
  9719. border-width:0px;
  9720. position:absolute;
  9721. left:1426px;
  9722. top:469px;
  9723. width:71px;
  9724. height:20px;
  9725. display:flex;
  9726. transition:none;
  9727. transform-origin:50% 50%;
  9728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9729. font-weight:400;
  9730. font-style:normal;
  9731. font-size:14px;
  9732. }
  9733. #u53831 .text {
  9734. position:absolute;
  9735. align-self:flex-start;
  9736. padding:0px 0px 0px 0px;
  9737. box-sizing:border-box;
  9738. width:100%;
  9739. }
  9740. #u53831_text {
  9741. border-width:0px;
  9742. white-space:nowrap;
  9743. text-transform:none;
  9744. }
  9745. #u53832 {
  9746. border-width:0px;
  9747. position:absolute;
  9748. left:0px;
  9749. top:0px;
  9750. width:0px;
  9751. height:0px;
  9752. }
  9753. #u53833 {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:0px;
  9759. height:0px;
  9760. }
  9761. #u53834_div {
  9762. border-width:0px;
  9763. position:absolute;
  9764. left:0px;
  9765. top:0px;
  9766. width:23px;
  9767. height:20px;
  9768. background:inherit;
  9769. background-color:rgba(255, 255, 255, 0);
  9770. border-left:0px;
  9771. border-top:0px;
  9772. border-right:0px;
  9773. border-radius:0px;
  9774. border-bottom-right-radius:0px;
  9775. border-bottom-left-radius:0px;
  9776. filter:drop-shadow(none);
  9777. transition:none;
  9778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9779. font-weight:400;
  9780. font-style:normal;
  9781. font-size:14px;
  9782. color:#00BFBF;
  9783. }
  9784. #u53834 {
  9785. border-width:0px;
  9786. position:absolute;
  9787. left:1716px;
  9788. top:469px;
  9789. width:23px;
  9790. height:20px;
  9791. display:flex;
  9792. transition:none;
  9793. transform-origin:50% 50%;
  9794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9795. font-weight:400;
  9796. font-style:normal;
  9797. font-size:14px;
  9798. color:#00BFBF;
  9799. }
  9800. #u53834 .text {
  9801. position:absolute;
  9802. align-self:center;
  9803. padding:0px 0px 0px 0px;
  9804. box-sizing:border-box;
  9805. width:100%;
  9806. }
  9807. #u53834_text {
  9808. border-width:0px;
  9809. white-space:nowrap;
  9810. text-transform:none;
  9811. }
  9812. #u53835_div {
  9813. border-width:0px;
  9814. position:absolute;
  9815. left:0px;
  9816. top:0px;
  9817. width:6px;
  9818. height:6px;
  9819. background:inherit;
  9820. background-color:rgba(255, 255, 255, 0);
  9821. box-sizing:border-box;
  9822. border-width:1px;
  9823. border-style:solid;
  9824. border-color:rgba(0, 191, 191, 1);
  9825. border-right:0px;
  9826. border-bottom:0px;
  9827. border-radius:0px;
  9828. border-top-right-radius:0px;
  9829. border-bottom-left-radius:0px;
  9830. filter:drop-shadow(none);
  9831. transition:none;
  9832. }
  9833. #u53835 {
  9834. border-width:0px;
  9835. position:absolute;
  9836. left:1750px;
  9837. top:478px;
  9838. width:6px;
  9839. height:6px;
  9840. display:flex;
  9841. -webkit-transform:rotate(45deg);
  9842. -moz-transform:rotate(45deg);
  9843. -ms-transform:rotate(45deg);
  9844. transform:rotate(45deg);
  9845. transition:none;
  9846. transform-origin:50% 50%;
  9847. }
  9848. #u53835 .text {
  9849. position:absolute;
  9850. align-self:center;
  9851. padding:2px 2px 2px 2px;
  9852. box-sizing:border-box;
  9853. width:100%;
  9854. }
  9855. #u53835_text {
  9856. border-width:0px;
  9857. word-wrap:break-word;
  9858. text-transform:none;
  9859. visibility:hidden;
  9860. }
  9861. #u53836 {
  9862. border-width:0px;
  9863. position:absolute;
  9864. left:453px;
  9865. top:0px;
  9866. width:433px;
  9867. height:865px;
  9868. display:flex;
  9869. transition:none;
  9870. }
  9871. #u53836 .text {
  9872. position:absolute;
  9873. align-self:center;
  9874. padding:2px 2px 2px 2px;
  9875. box-sizing:border-box;
  9876. width:100%;
  9877. }
  9878. #u53836_img {
  9879. border-width:0px;
  9880. position:absolute;
  9881. left:0px;
  9882. top:0px;
  9883. width:433px;
  9884. height:865px;
  9885. }
  9886. #u53836_text {
  9887. border-width:0px;
  9888. word-wrap:break-word;
  9889. text-transform:none;
  9890. visibility:hidden;
  9891. }
  9892. #u53837 {
  9893. border-width:0px;
  9894. position:absolute;
  9895. left:0px;
  9896. top:0px;
  9897. width:0px;
  9898. height:0px;
  9899. }
  9900. #u53838_div {
  9901. border-width:0px;
  9902. position:absolute;
  9903. left:0px;
  9904. top:0px;
  9905. width:375px;
  9906. height:736px;
  9907. background:inherit;
  9908. background-color:rgba(51, 51, 51, 0.5333333333333333);
  9909. border-top:0px;
  9910. border-radius:25px;
  9911. border-top-left-radius:0px;
  9912. border-top-right-radius:0px;
  9913. filter:drop-shadow(none);
  9914. transition:none;
  9915. }
  9916. #u53838 {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:482px;
  9920. top:107px;
  9921. width:375px;
  9922. height:736px;
  9923. display:flex;
  9924. transition:none;
  9925. transform-origin:50% 50%;
  9926. }
  9927. #u53838 .text {
  9928. position:absolute;
  9929. align-self:center;
  9930. padding:2px 2px 2px 2px;
  9931. box-sizing:border-box;
  9932. width:100%;
  9933. }
  9934. #u53838_text {
  9935. border-width:0px;
  9936. word-wrap:break-word;
  9937. text-transform:none;
  9938. visibility:hidden;
  9939. }
  9940. #u53839_div {
  9941. border-width:0px;
  9942. position:absolute;
  9943. left:0px;
  9944. top:0px;
  9945. width:375px;
  9946. height:248px;
  9947. background:inherit;
  9948. background-color:rgba(242, 242, 242, 1);
  9949. border-top:0px;
  9950. border-radius:25px;
  9951. border-top-left-radius:0px;
  9952. border-top-right-radius:0px;
  9953. filter:drop-shadow(none);
  9954. transition:none;
  9955. }
  9956. #u53839 {
  9957. border-width:0px;
  9958. position:absolute;
  9959. left:482px;
  9960. top:595px;
  9961. width:375px;
  9962. height:248px;
  9963. display:flex;
  9964. transition:none;
  9965. transform-origin:50% 50%;
  9966. }
  9967. #u53839 .text {
  9968. position:absolute;
  9969. align-self:center;
  9970. padding:2px 2px 2px 2px;
  9971. box-sizing:border-box;
  9972. width:100%;
  9973. }
  9974. #u53839_text {
  9975. border-width:0px;
  9976. word-wrap:break-word;
  9977. text-transform:none;
  9978. visibility:hidden;
  9979. }
  9980. #u53840 {
  9981. border-width:0px;
  9982. position:absolute;
  9983. left:0px;
  9984. top:0px;
  9985. width:0px;
  9986. height:0px;
  9987. }
  9988. #u53841_div {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:0px;
  9992. top:0px;
  9993. width:375px;
  9994. height:60px;
  9995. background:inherit;
  9996. background-color:rgba(255, 255, 255, 1);
  9997. box-sizing:border-box;
  9998. border-width:1px;
  9999. border-style:solid;
  10000. border-color:rgba(242, 242, 242, 1);
  10001. border-left:0px;
  10002. border-right:0px;
  10003. border-radius:0px;
  10004. border-top-left-radius:0px;
  10005. border-top-right-radius:0px;
  10006. border-bottom-right-radius:0px;
  10007. border-bottom-left-radius:0px;
  10008. filter:drop-shadow(none);
  10009. transition:none;
  10010. }
  10011. #u53841 {
  10012. border-width:0px;
  10013. position:absolute;
  10014. left:482px;
  10015. top:655px;
  10016. width:375px;
  10017. height:60px;
  10018. display:flex;
  10019. transition:none;
  10020. transform-origin:50% 50%;
  10021. }
  10022. #u53841 .text {
  10023. position:absolute;
  10024. align-self:center;
  10025. padding:2px 2px 2px 2px;
  10026. box-sizing:border-box;
  10027. width:100%;
  10028. }
  10029. #u53841_text {
  10030. border-width:0px;
  10031. word-wrap:break-word;
  10032. text-transform:none;
  10033. visibility:hidden;
  10034. }
  10035. #u53842_div {
  10036. border-width:0px;
  10037. position:absolute;
  10038. left:0px;
  10039. top:0px;
  10040. width:29px;
  10041. height:30px;
  10042. background:inherit;
  10043. background-color:rgba(255, 255, 255, 0);
  10044. border-left:0px;
  10045. border-top:0px;
  10046. border-right:0px;
  10047. border-radius:0px;
  10048. border-bottom-right-radius:0px;
  10049. border-bottom-left-radius:0px;
  10050. filter:drop-shadow(none);
  10051. transition:none;
  10052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10053. font-weight:400;
  10054. font-style:normal;
  10055. font-size:14px;
  10056. line-height:30px;
  10057. }
  10058. #u53842 {
  10059. border-width:0px;
  10060. position:absolute;
  10061. left:655px;
  10062. top:670px;
  10063. width:29px;
  10064. height:30px;
  10065. display:flex;
  10066. transition:none;
  10067. transform-origin:50% 50%;
  10068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10069. font-weight:400;
  10070. font-style:normal;
  10071. font-size:14px;
  10072. line-height:30px;
  10073. }
  10074. #u53842 .text {
  10075. position:absolute;
  10076. align-self:flex-start;
  10077. padding:0px 0px 0px 0px;
  10078. box-sizing:border-box;
  10079. width:100%;
  10080. }
  10081. #u53842_text {
  10082. border-width:0px;
  10083. white-space:nowrap;
  10084. text-transform:none;
  10085. }
  10086. #u53843 {
  10087. border-width:0px;
  10088. position:absolute;
  10089. left:0px;
  10090. top:0px;
  10091. width:0px;
  10092. height:0px;
  10093. }
  10094. #u53844_div {
  10095. border-width:0px;
  10096. position:absolute;
  10097. left:0px;
  10098. top:0px;
  10099. width:375px;
  10100. height:60px;
  10101. background:inherit;
  10102. background-color:rgba(255, 255, 255, 1);
  10103. box-sizing:border-box;
  10104. border-width:1px;
  10105. border-style:solid;
  10106. border-color:rgba(242, 242, 242, 1);
  10107. border-left:0px;
  10108. border-right:0px;
  10109. border-radius:0px;
  10110. border-top-left-radius:0px;
  10111. border-top-right-radius:0px;
  10112. border-bottom-right-radius:0px;
  10113. border-bottom-left-radius:0px;
  10114. filter:drop-shadow(none);
  10115. transition:none;
  10116. }
  10117. #u53844 {
  10118. border-width:0px;
  10119. position:absolute;
  10120. left:482px;
  10121. top:714px;
  10122. width:375px;
  10123. height:60px;
  10124. display:flex;
  10125. transition:none;
  10126. transform-origin:50% 50%;
  10127. }
  10128. #u53844 .text {
  10129. position:absolute;
  10130. align-self:center;
  10131. padding:2px 2px 2px 2px;
  10132. box-sizing:border-box;
  10133. width:100%;
  10134. }
  10135. #u53844_text {
  10136. border-width:0px;
  10137. word-wrap:break-word;
  10138. text-transform:none;
  10139. visibility:hidden;
  10140. }
  10141. #u53845_div {
  10142. border-width:0px;
  10143. position:absolute;
  10144. left:0px;
  10145. top:0px;
  10146. width:29px;
  10147. height:30px;
  10148. background:inherit;
  10149. background-color:rgba(255, 255, 255, 0);
  10150. border-left:0px;
  10151. border-top:0px;
  10152. border-right:0px;
  10153. border-radius:0px;
  10154. border-bottom-right-radius:0px;
  10155. border-bottom-left-radius:0px;
  10156. filter:drop-shadow(none);
  10157. transition:none;
  10158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10159. font-weight:400;
  10160. font-style:normal;
  10161. font-size:14px;
  10162. line-height:30px;
  10163. }
  10164. #u53845 {
  10165. border-width:0px;
  10166. position:absolute;
  10167. left:655px;
  10168. top:729px;
  10169. width:29px;
  10170. height:30px;
  10171. display:flex;
  10172. transition:none;
  10173. transform-origin:50% 50%;
  10174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10175. font-weight:400;
  10176. font-style:normal;
  10177. font-size:14px;
  10178. line-height:30px;
  10179. }
  10180. #u53845 .text {
  10181. position:absolute;
  10182. align-self:flex-start;
  10183. padding:0px 0px 0px 0px;
  10184. box-sizing:border-box;
  10185. width:100%;
  10186. }
  10187. #u53845_text {
  10188. border-width:0px;
  10189. white-space:nowrap;
  10190. text-transform:none;
  10191. }
  10192. #u53846 {
  10193. border-width:0px;
  10194. position:absolute;
  10195. left:0px;
  10196. top:0px;
  10197. width:0px;
  10198. height:0px;
  10199. }
  10200. #u53847_div {
  10201. border-width:0px;
  10202. position:absolute;
  10203. left:0px;
  10204. top:0px;
  10205. width:375px;
  10206. height:60px;
  10207. background:inherit;
  10208. background-color:rgba(255, 255, 255, 1);
  10209. box-sizing:border-box;
  10210. border-width:1px;
  10211. border-style:solid;
  10212. border-color:rgba(242, 242, 242, 1);
  10213. border-top:0px;
  10214. border-radius:20px;
  10215. border-top-left-radius:0px;
  10216. border-top-right-radius:0px;
  10217. filter:drop-shadow(none);
  10218. transition:none;
  10219. }
  10220. #u53847 {
  10221. border-width:0px;
  10222. position:absolute;
  10223. left:482px;
  10224. top:783px;
  10225. width:375px;
  10226. height:60px;
  10227. display:flex;
  10228. transition:none;
  10229. transform-origin:50% 50%;
  10230. }
  10231. #u53847 .text {
  10232. position:absolute;
  10233. align-self:center;
  10234. padding:2px 2px 2px 2px;
  10235. box-sizing:border-box;
  10236. width:100%;
  10237. }
  10238. #u53847_text {
  10239. border-width:0px;
  10240. word-wrap:break-word;
  10241. text-transform:none;
  10242. visibility:hidden;
  10243. }
  10244. #u53848_div {
  10245. border-width:0px;
  10246. position:absolute;
  10247. left:0px;
  10248. top:0px;
  10249. width:29px;
  10250. height:30px;
  10251. background:inherit;
  10252. background-color:rgba(255, 255, 255, 0);
  10253. border-left:0px;
  10254. border-top:0px;
  10255. border-right:0px;
  10256. border-radius:0px;
  10257. border-bottom-right-radius:0px;
  10258. border-bottom-left-radius:0px;
  10259. filter:drop-shadow(none);
  10260. transition:none;
  10261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10262. font-weight:400;
  10263. font-style:normal;
  10264. font-size:14px;
  10265. line-height:30px;
  10266. }
  10267. #u53848 {
  10268. border-width:0px;
  10269. position:absolute;
  10270. left:655px;
  10271. top:798px;
  10272. width:29px;
  10273. height:30px;
  10274. display:flex;
  10275. transition:none;
  10276. transform-origin:50% 50%;
  10277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10278. font-weight:400;
  10279. font-style:normal;
  10280. font-size:14px;
  10281. line-height:30px;
  10282. }
  10283. #u53848 .text {
  10284. position:absolute;
  10285. align-self:flex-start;
  10286. padding:0px 0px 0px 0px;
  10287. box-sizing:border-box;
  10288. width:100%;
  10289. }
  10290. #u53848_text {
  10291. border-width:0px;
  10292. white-space:nowrap;
  10293. text-transform:none;
  10294. }
  10295. #u53849 {
  10296. border-width:0px;
  10297. position:absolute;
  10298. left:0px;
  10299. top:0px;
  10300. width:0px;
  10301. height:0px;
  10302. }
  10303. #u53850_div {
  10304. border-width:0px;
  10305. position:absolute;
  10306. left:0px;
  10307. top:0px;
  10308. width:375px;
  10309. height:60px;
  10310. background:inherit;
  10311. background-color:rgba(255, 255, 255, 1);
  10312. box-sizing:border-box;
  10313. border-width:1px;
  10314. border-style:solid;
  10315. border-color:rgba(242, 242, 242, 1);
  10316. border-left:0px;
  10317. border-right:0px;
  10318. border-radius:0px;
  10319. border-top-left-radius:0px;
  10320. border-top-right-radius:0px;
  10321. border-bottom-right-radius:0px;
  10322. border-bottom-left-radius:0px;
  10323. filter:drop-shadow(none);
  10324. transition:none;
  10325. }
  10326. #u53850 {
  10327. border-width:0px;
  10328. position:absolute;
  10329. left:482px;
  10330. top:595px;
  10331. width:375px;
  10332. height:60px;
  10333. display:flex;
  10334. transition:none;
  10335. transform-origin:50% 50%;
  10336. }
  10337. #u53850 .text {
  10338. position:absolute;
  10339. align-self:center;
  10340. padding:2px 2px 2px 2px;
  10341. box-sizing:border-box;
  10342. width:100%;
  10343. }
  10344. #u53850_text {
  10345. border-width:0px;
  10346. word-wrap:break-word;
  10347. text-transform:none;
  10348. visibility:hidden;
  10349. }
  10350. #u53851_div {
  10351. border-width:0px;
  10352. position:absolute;
  10353. left:0px;
  10354. top:0px;
  10355. width:29px;
  10356. height:30px;
  10357. background:inherit;
  10358. background-color:rgba(255, 255, 255, 0);
  10359. border-left:0px;
  10360. border-top:0px;
  10361. border-right:0px;
  10362. border-radius:0px;
  10363. border-bottom-right-radius:0px;
  10364. border-bottom-left-radius:0px;
  10365. filter:drop-shadow(none);
  10366. transition:none;
  10367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10368. font-weight:400;
  10369. font-style:normal;
  10370. font-size:14px;
  10371. line-height:30px;
  10372. }
  10373. #u53851 {
  10374. border-width:0px;
  10375. position:absolute;
  10376. left:655px;
  10377. top:610px;
  10378. width:29px;
  10379. height:30px;
  10380. display:flex;
  10381. transition:none;
  10382. transform-origin:50% 50%;
  10383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10384. font-weight:400;
  10385. font-style:normal;
  10386. font-size:14px;
  10387. line-height:30px;
  10388. }
  10389. #u53851 .text {
  10390. position:absolute;
  10391. align-self:flex-start;
  10392. padding:0px 0px 0px 0px;
  10393. box-sizing:border-box;
  10394. width:100%;
  10395. }
  10396. #u53851_text {
  10397. border-width:0px;
  10398. white-space:nowrap;
  10399. text-transform:none;
  10400. }