styles.css 184 KB

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