styles.css 162 KB

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